@import url('./tokens.css');

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  font-family: var(--ve-font-sans);
  background: #fff;
  color: var(--ve-fg);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

.container {
  max-width: var(--ve-container-max);
  margin: 0 auto;
  padding: 0 var(--ve-container-pad);
}

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--ve-border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.nav-logo img { height: 28px; }
.nav-links {
  display: flex; gap: 36px;
  font-size: 14px; font-weight: 500;
  color: var(--ve-fg-body);
}
.nav-links a:hover { color: var(--ve-gold-700); }
.nav-cta {
  display: flex; gap: 12px; align-items: center;
}
@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ============ BUTTONS ============ */
.btn-p {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #facc15; color: #171717;
  font-weight: 700; font-size: 15px;
  padding: 16px 30px; border-radius: 100px; border: 0; cursor: pointer;
  letter-spacing: -0.01em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 -1px 0 rgba(0,0,0,.06),
    0 2px 6px rgba(202,138,4,.28),
    0 10px 32px rgba(250,204,21,.35);
  transition: all 200ms cubic-bezier(.33,1,.68,1);
}
.btn-p:hover {
  background: #fde047;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 4px 10px rgba(202,138,4,.35),
    0 14px 44px rgba(250,204,21,.55),
    0 0 0 4px rgba(250,204,21,.18);
  transform: translateY(-1px);
}
.btn-p:active { transform: scale(.98) translateY(0); }

.btn-p.lg { padding: 22px 44px; font-size: 18px; }
.btn-p.xl { padding: 28px 56px; font-size: 22px; border-radius: 100px; }

.btn-o {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--ve-fg);
  font-weight: 600; font-size: 14px;
  padding: 13px 26px; border-radius: 100px;
  border: 1.5px solid var(--ve-border-input);
  cursor: pointer;
  transition: all 200ms cubic-bezier(.33,1,.68,1);
}
.btn-o:hover { border-color: #facc15; color: #a16207; background: rgba(250,204,21,.06); }
.btn-o.lg { padding: 16px 30px; font-size: 15px; }

.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7);
  font-weight: 500; font-size: 14px;
  background: transparent; border: 0; cursor: pointer;
  transition: color 200ms ease;
}
.btn-ghost-light:hover { color: #fff; }

/* ============ TYPE ============ */
.eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ve-gold-700);
}
.eyebrow-dark { color: #fde047; }
.h1 {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 0.98;
  color: var(--ve-fg);
}
.h2 {
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.05;
  color: var(--ve-fg);
}
.h3 {
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.01em; line-height: 1.25;
}
.lead {
  font-size: clamp(16px, 1.4vw, 19px); line-height: 1.55;
  color: var(--ve-fg-body);
}
.body { font-size: 15px; line-height: 1.6; color: var(--ve-fg-body); }
.muted { color: var(--ve-fg-muted); }

/* ============ SECTION ============ */
section { padding: var(--ve-section-y) 0; }
@media (max-width: 820px) { section { padding: 72px 0; } }

.section-head { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.section-head .eyebrow { margin-bottom: 14px; display: inline-block; }
.section-head .lead { margin-top: 18px; }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #fffef5 0%, #ffffff 60%, #fafafa 100%);
  padding-top: 72px; padding-bottom: 96px;
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(30,58,138,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,58,138,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 40%, #000 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 30% 40%, #000 40%, transparent 85%);
}
.hero-glow-gold {
  position: absolute; top: -30%; right: -15%;
  width: 60%; height: 140%;
  background: radial-gradient(ellipse, rgba(250,204,21,0.22) 0%, transparent 60%);
  filter: blur(60px); pointer-events: none;
}
.hero-glow-navy {
  position: absolute; bottom: -30%; left: -12%;
  width: 50%; height: 110%;
  background: radial-gradient(ellipse, rgba(30,58,138,0.12) 0%, transparent 60%);
  filter: blur(60px); pointer-events: none;
}
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 64px; align-items: center;
}
@media (max-width: 960px) { .hero-inner { grid-template-columns: 1fr; gap: 40px; } }

.hero-copy .eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.hero-copy .eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #facc15; box-shadow: 0 0 0 4px rgba(250,204,21,0.2);
}
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy .lead { max-width: 540px; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 28px; }
.hero-ctas .btn-o { padding: 16px 30px; font-size: 15px; }

.trust-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: 100px;
  background: rgba(250,204,21,0.08);
  border: 1px solid rgba(250,204,21,0.25);
  color: var(--ve-gold-800);
  font-size: 12px; font-weight: 600;
}
.trust-chip svg { flex: none; }

/* hero image area */
.hero-visual {
  position: relative;
  aspect-ratio: 4/3.2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--ve-shadow-image);
}

/* ============ METRICS STRIP ============ */
.metrics-strip {
  background: var(--ve-navy-950);
  padding: 64px 0;
  position: relative; overflow: hidden;
}
.metrics-strip::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(250,204,21,0.08), transparent 70%);
  pointer-events: none;
}
.metrics-inner {
  display: flex; max-width: 900px; margin: 0 auto;
  position: relative;
}
.metric {
  flex: 1; text-align: center; padding: 12px 20px; position: relative;
}
.metric + .metric::before {
  content: ""; position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px;
  background: linear-gradient(180deg, transparent, #1e3a8a 40%, #1e3a8a 60%, transparent);
}
@keyframes pulseGlow {
  0%,100% { text-shadow: 0 0 18px rgba(253,224,71,0.5), 0 0 42px rgba(250,204,21,0.3); }
  50%     { text-shadow: 0 0 28px rgba(253,224,71,0.8), 0 0 60px rgba(250,204,21,0.5); }
}
.metric-num {
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(180deg, #fffbe6 0%, #fde047 45%, #eab308 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 14px rgba(253,224,71,0.5))
          drop-shadow(0 0 36px rgba(250,204,21,0.3));
  animation: pulseGlow 3.2s ease-in-out infinite;
}
.metric-label {
  font-size: 14px; color: #A3A3A3; margin-top: 14px;
  letter-spacing: 0.02em;
}

/* ============ PAIN SECTION ============ */
.pain { background: var(--ve-bg-subtle); }
.pain-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 960px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pain-grid { grid-template-columns: 1fr; } }

.pain-card {
  background: #fff;
  border: 1px solid var(--ve-border);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--ve-shadow-card);
  transition: transform 400ms var(--ve-ease-out-expo), box-shadow 400ms ease, border-color 300ms ease;
}
.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250,204,21,0.35);
  box-shadow: var(--ve-shadow-card-hover);
}
.pain-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: #fef3c7; color: var(--ve-amber-700);
  display: grid; place-items: center; margin-bottom: 18px;
}
.pain-card h3 { margin-bottom: 8px; }
.pain-card p { font-size: 14px; color: var(--ve-fg-body); line-height: 1.55; }

/* ============ BEFORE/AFTER ============ */
.ba-wrap { max-width: 1080px; margin: 0 auto; }
.ba {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(17,24,39,0.06);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 2px 4px rgba(17,24,39,0.04),
    0 18px 40px -18px rgba(17,24,39,0.18),
    0 40px 70px -30px rgba(17,24,39,0.12);
  position: relative;
}
@media (max-width: 720px) { .ba { grid-template-columns: 1fr; } }
.ba-col {
  padding: 48px 44px 40px;
  display: flex; flex-direction: column; gap: 24px;
  min-height: 420px;
}
.ba-col.before { background: #fafafa; }
.ba-col.after { background: #fff; border-left: 1px solid rgba(17,24,39,0.06); }
@media (max-width: 720px) { .ba-col.after { border-left: 0; border-top: 1px solid rgba(17,24,39,0.06); } }

.ba-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: #71717a;
}
.ba-dot { width: 8px; height: 8px; border-radius: 50%; background: #d4d4d8; }
.ba-col.before .ba-dot { background: #ef4444; }
.ba-col.before .ba-eyebrow { color: #b91c1c; }
.ba-col.after  .ba-dot { background: #22c55e; }
.ba-col.after  .ba-eyebrow { color: #15803d; }

.ba-head {
  font-size: 36px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.1;
}
.ba-col.before .ba-head { color: #71717a; }
.ba-col.after .ba-head { color: var(--ve-fg); }

.ba-list { list-style: none; display: grid; gap: 14px; }
.ba-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px; line-height: 1.55;
}
.ba-col.before .ba-list li { color: #71717a; }
.ba-col.after .ba-list li { color: #18181b; }
.ba-mark {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; margin-top: 1px;
  font-size: 12px; font-weight: 700;
}
.ba-mark.minus { background: #fee2e2; color: #b91c1c; }
.ba-mark.check { background: #171717; color: #fde047; }

.ba-stat {
  margin-top: auto; padding-top: 22px;
  border-top: 1px solid rgba(17,24,39,0.06);
  display: flex; align-items: baseline; gap: 14px;
}
.ba-stat .n { font-size: 48px; font-weight: 700; letter-spacing: -0.035em; line-height: 1; }
.ba-col.before .ba-stat .n { color: #a1a1aa; text-decoration: line-through; text-decoration-thickness: 2px; text-decoration-color: #d4d4d8; }
.ba-col.after .ba-stat .n { color: var(--ve-fg); }
.ba-stat .u { font-size: 13px; color: #71717a; line-height: 1.35; }

.ba-rail {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(17,24,39,0.06), 0 4px 10px rgba(17,24,39,0.08), 0 14px 30px -10px rgba(17,24,39,0.18);
  display: grid; place-items: center; z-index: 2;
}
@media (max-width: 720px) { .ba-rail { top: 50%; transform: translate(-50%, -50%) rotate(90deg); } }

/* ============ 48H TIMELINE ============ */
.setup-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: center;
}
@media (max-width: 960px) { .setup-grid { grid-template-columns: 1fr; gap: 48px; } }

.setup-visual {
  aspect-ratio: 5/4; border-radius: 24px; overflow: hidden;
  box-shadow: var(--ve-shadow-image);
  position: relative;
}
.setup-steps { display: grid; grid-template-columns: auto 1fr; gap: 20px 28px; }
.setup-col-dots { display: flex; flex-direction: column; align-items: center; gap: 0; }
.setup-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: #E5E5E5;
  color: #A3A3A3; font-weight: 800; font-size: 15px;
  display: grid; place-items: center;
  box-shadow: none;
  flex: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.setup-line {
  width: 3px; flex: 1; min-height: 48px;
  background: #E5E5E5;
  margin: 4px 0;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.setup-step h3 { font-size: 20px; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.setup-step h3 .day {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  background: #fef9c3; color: var(--ve-gold-900);
  padding: 4px 10px; border-radius: 100px;
}
.setup-step p { font-size: 15px; color: var(--ve-fg-body); line-height: 1.55; }
.setup-step { padding-bottom: 8px; }

/* ============ FEATURE SHOWCASE ============ */
.showcase { background: var(--ve-bg-subtle); }
.showcase-tabs {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 40px;
}
.showcase-tab {
  padding: 12px 22px; border-radius: 100px; border: 1px solid transparent;
  background: #fff; color: var(--ve-fg-body);
  font-weight: 600; font-size: 14px; cursor: pointer;
  transition: all 200ms;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  display: inline-flex; align-items: center; gap: 8px;
}
.showcase-tab:hover { border-color: rgba(250,204,21,0.3); color: var(--ve-gold-800); }
.showcase-tab.active {
  background: #171717; color: #fff; border-color: #171717;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.showcase-tab.active svg { color: #fde047; }

.showcase-stage {
  background: #fff; border-radius: 28px; overflow: hidden;
  box-shadow: var(--ve-shadow-image);
  display: grid; grid-template-columns: 1fr 1.1fr;
  min-height: 480px;
}
@media (max-width: 860px) { .showcase-stage { grid-template-columns: 1fr; } }
.showcase-copy { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.showcase-copy .eyebrow { margin-bottom: 12px; }
.showcase-copy h3 { font-size: 32px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; }
.showcase-copy p { font-size: 16px; line-height: 1.6; color: var(--ve-fg-body); margin-bottom: 22px; }
.showcase-facts { display: grid; gap: 10px; }
.showcase-fact { display: flex; gap: 10px; font-size: 14px; color: var(--ve-fg-body); align-items: center; }
.showcase-fact-dot { width: 22px; height: 22px; border-radius: 50%; background: #fef3c7; color: var(--ve-gold-800); display: grid; place-items: center; flex: none; }
.showcase-img {
  background: #0b1d5c;
  position: relative; overflow: hidden;
  min-height: 400px;
}

/* ============ BÜRO AUTOPILOT ============ */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 20px;
}
@media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } }

.bento-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--ve-border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--ve-shadow-card);
  transition: transform 400ms var(--ve-ease-out-expo), box-shadow 400ms ease, border-color 300ms ease;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 16px;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250,204,21,0.35);
  box-shadow: var(--ve-shadow-card-hover);
}
.bento-card.hero-card {
  grid-column: span 2; grid-row: span 2;
  background: linear-gradient(135deg, #171717 0%, #0b1d5c 100%);
  color: #fff;
  padding: 40px;
}
@media (max-width: 900px) { .bento-card.hero-card { grid-column: span 2; grid-row: span 1; min-height: 320px; } }
@media (max-width: 560px) { .bento-card.hero-card { grid-column: span 1; } }

.bento-card.wide { grid-column: span 3; }
@media (max-width: 900px) { .bento-card.wide { grid-column: span 2; } }
@media (max-width: 560px) { .bento-card.wide { grid-column: span 1; } }

.bento-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: #fef3c7; color: var(--ve-gold-800);
  display: grid; place-items: center; flex: none;
}
.bento-card.hero-card .bento-icon { background: rgba(253,224,71,0.15); color: #fde047; }
.bento-card h3 { font-size: 18px; margin-bottom: 4px; }
.bento-card.hero-card h3 { font-size: 28px; letter-spacing: -0.03em; line-height: 1.15; color: #fff; font-weight: 700; }
.bento-card p { font-size: 14px; line-height: 1.55; color: var(--ve-fg-body); }
.bento-card.hero-card p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.55; }
.bento-badge {
  position: absolute; top: 20px; right: 20px;
  background: #facc15; color: #171717;
  padding: 5px 12px; border-radius: 100px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(250,204,21,0.4);
}
.bento-visual {
  margin-top: auto;
  border-radius: 14px;
  overflow: hidden;
  min-height: 140px;
  background: #fffbe6;
  border: 1px solid rgba(250,204,21,0.25);
  position: relative;
}

/* ============ MOAT ============ */
.moat-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: start;
}
@media (max-width: 960px) { .moat-grid { grid-template-columns: 1fr; gap: 40px; } }

.moat-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 560px) { .moat-cards { grid-template-columns: 1fr; } }

.moat-card {
  background: #fff;
  border: 1px solid var(--ve-border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  display: flex; gap: 14px; align-items: flex-start;
  transition: all 300ms var(--ve-ease-out);
}
.moat-card:hover {
  border-color: rgba(250,204,21,0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.moat-card-icon {
  flex: none; width: 36px; height: 36px; border-radius: 10px;
  background: #fef9c3; color: var(--ve-gold-800);
  display: grid; place-items: center;
}
.moat-card h4 { font-size: 14px; font-weight: 700; color: var(--ve-fg); letter-spacing: -0.005em; margin-bottom: 3px; }
.moat-card p { font-size: 13px; color: var(--ve-fg-muted); line-height: 1.5; }

.moat-upcoming {
  margin-top: 20px;
  background: linear-gradient(135deg, #fffef5 0%, #fefce8 100%);
  border: 1.5px dashed rgba(250,204,21,0.45);
  border-radius: 18px; padding: 22px 24px;
}
.moat-upcoming .eyebrow { margin-bottom: 10px; display: block; }
.moat-upcoming h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.moat-upcoming ul {
  list-style: none; display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px;
}
.moat-upcoming li {
  font-size: 12px; font-weight: 500; padding: 5px 11px; border-radius: 100px;
  background: rgba(255,255,255,0.7); color: var(--ve-gold-900);
  border: 1px solid rgba(250,204,21,0.3);
}

.moat-visual {
  position: sticky; top: 100px;
  aspect-ratio: 4/5; border-radius: 24px; overflow: hidden;
  box-shadow: var(--ve-shadow-image);
}

/* ============ COMPARISON TABLE ============ */
.compare { background: var(--ve-bg-subtle); }
.compare-table {
  width: 100%;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--ve-shadow-image);
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table thead th {
  padding: 24px 20px;
  text-align: left; vertical-align: bottom;
  background: #fafafa;
  border-bottom: 1px solid var(--ve-border-solid);
}
.compare-table thead th.vision {
  background: #171717; color: #fff;
  position: relative;
}
.compare-table thead th.vision::after {
  content: ""; position: absolute; inset: 0 0 auto 0;
  height: 3px; background: #facc15;
}
.compare-table thead th .col-title {
  font-size: 15px; font-weight: 700; color: var(--ve-fg); margin-bottom: 4px;
}
.compare-table thead th.vision .col-title { color: #fff; font-size: 16px; }
.compare-table thead th .col-sub { font-size: 12px; color: var(--ve-fg-muted); font-weight: 500; }
.compare-table thead th.vision .col-sub { color: #fde047; }
.compare-table thead th.row-head { background: #fff; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ve-fg-subtle); }

.compare-table tbody td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--ve-border-solid);
  vertical-align: middle;
}
.compare-table tbody td:first-child { font-weight: 600; color: var(--ve-fg); background: #fafafa; }
.compare-table tbody td.vision-col {
  background: #1a1a1a;
  color: #fff;
  padding: 20px 24px;
  line-height: 1.5;
}
.compare-table tbody tr:last-child td { border-bottom: 0; }

.cmp-check { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; min-width: 26px; border-radius: 50%; background: #dcfce7; color: #15803d; font-size: 13px; }
.cmp-check-gold { background: #facc15; color: #171717; }
.cmp-x { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; min-width: 26px; border-radius: 50%; background: #fee2e2; color: #b91c1c; font-size: 13px; }
.cmp-partial { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; min-width: 26px; border-radius: 50%; background: #fef3c7; color: #a16207; font-weight: 700; font-size: 12px; }
.vision-col .cmp-check { background: #facc15; color: #171717; margin-right: 10px; }

@media (max-width: 820px) {
  .compare-table { font-size: 12px; }
  .compare-table thead th, .compare-table tbody td { padding: 12px 10px; }
}

/* ============ COST COMPARE ============ */
.cost-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 24px; align-items: stretch;
  max-width: 1000px; margin: 0 auto;
}
@media (max-width: 780px) { .cost-grid { grid-template-columns: 1fr; } }

.cost-card {
  background: #fff; border-radius: 22px; padding: 36px 34px;
  border: 1px solid var(--ve-border);
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: var(--ve-shadow-card);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.45s ease,
              border-color 0.3s ease,
              opacity 0.3s ease;
  cursor: default;
}
.cost-card:hover {
  transform: translateY(-6px);
}
.cost-card.dim { opacity: 0.75; }
.cost-card.dim:hover {
  opacity: 0.9;
  border-color: #ef4444;
  box-shadow: 0 0 0 1px rgba(239,68,68,0.1), 0 8px 24px rgba(239,68,68,0.08), 0 20px 48px rgba(0,0,0,0.06);
}
.cost-card.dim:hover .cost-amount {
  text-decoration-color: #ef4444 !important;
}
.cost-card .cost-label { font-size: 14px; font-weight: 600; color: var(--ve-fg-muted); }
.cost-card .cost-head { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
.cost-card .cost-amount { font-size: clamp(40px, 5vw, 64px); font-weight: 800; letter-spacing: -0.04em; line-height: 0.95; color: var(--ve-fg); }
.cost-card .cost-per { font-size: 14px; color: var(--ve-fg-muted); }
.cost-card ul { list-style: none; display: grid; gap: 8px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--ve-border-solid); }
.cost-card ul li { font-size: 13px; color: var(--ve-fg-body); display: flex; gap: 10px; align-items: flex-start; }
.cost-card.dim ul li { color: var(--ve-fg-muted); }

.cost-card.highlight {
  background: linear-gradient(140deg, #171717 0%, #0b1d5c 100%);
  color: #fff;
  border: 2px solid transparent;
  padding: 48px 44px;
  position: relative; overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(11,29,92,0.5);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.6s ease,
              border-color 0.4s ease;
}
.cost-card.highlight:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: #facc15;
  box-shadow:
    0 0 0 1px #facc15,
    0 0 15px rgba(250,204,21,0.25),
    0 0 45px rgba(250,204,21,0.15),
    0 0 80px rgba(250,204,21,0.08),
    0 32px 64px -20px rgba(11,29,92,0.5);
}
.cost-card.highlight::before {
  content: ""; position: absolute; top: -40%; right: -20%;
  width: 60%; height: 140%;
  background: radial-gradient(ellipse, rgba(250,204,21,0.18), transparent 60%);
  filter: blur(60px); pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.cost-card.highlight:hover::before {
  opacity: 1.8;
  transform: scale(1.3);
  background: radial-gradient(ellipse, rgba(250,204,21,0.35), transparent 60%);
}
.cost-card.highlight .cost-label { color: #fde047; }
.cost-card.highlight .cost-head { color: #fff; font-size: 26px; }
.cost-card.highlight .cost-amount {
  background: linear-gradient(180deg, #fffbe6, #fde047 50%, #eab308);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 14px rgba(253,224,71,0.4));
  transition: filter 0.4s ease;
}
.cost-card.highlight:hover .cost-amount {
  filter: drop-shadow(0 0 24px rgba(253,224,71,0.7)) drop-shadow(0 0 48px rgba(250,204,21,0.4));
}
.cost-card.highlight:hover .cost-head {
  text-shadow: 0 0 30px rgba(255,255,255,0.15);
}
.cost-card.highlight .cost-per { color: rgba(255,255,255,0.7); }
.cost-card.highlight ul { border-top-color: rgba(255,255,255,0.12); }
.cost-card.highlight ul li { color: rgba(255,255,255,0.88); }
.cost-card.highlight .cmp-check { background: #facc15; color: #171717; }
.cost-savings {
  display: inline-flex; align-items: center; gap: 8px;
  background: #facc15; color: #171717;
  padding: 8px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.02em;
  align-self: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cost-card.highlight:hover .cost-savings {
  transform: scale(1.05);
  box-shadow: 0 0 0 4px rgba(250,204,21,0.2), 0 4px 16px rgba(250,204,21,0.3);
}

/* Spotlight glow following cursor on cost cards */
.cost-card.highlight::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    400px circle at var(--mx, 50%) var(--my, 50%),
    rgba(250, 204, 21, 0.1), transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.cost-card.highlight:hover::after {
  opacity: 1;
}

/* ============ FOUNDER ============ */
.founder-wrap {
  display: grid; grid-template-columns: 380px 1fr; gap: 64px; align-items: center;
  max-width: 1080px; margin: 0 auto;
}
@media (max-width: 820px) { .founder-wrap { grid-template-columns: 1fr; gap: 40px; text-align: center; } }

.founder-photo {
  aspect-ratio: 1/1.1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--ve-shadow-image);
  position: relative;
}
.founder-copy .eyebrow { margin-bottom: 14px; display: inline-block; }
.founder-copy h2 { margin-bottom: 24px; }
.founder-copy p { font-size: 17px; line-height: 1.65; color: var(--ve-fg-body); margin-bottom: 16px; }
.founder-sig {
  display: flex; align-items: center; gap: 16px; margin-top: 24px;
  padding-top: 20px; border-top: 1px solid var(--ve-border-solid);
}
.founder-sig-name { font-weight: 700; font-size: 16px; }
.founder-sig-title { font-size: 13px; color: var(--ve-fg-muted); margin-top: 2px; }
.founder-script {
  font-family: 'Brush Script MT', cursive;
  font-size: 36px; color: #1e3a8a;
  transform: rotate(-3deg);
  letter-spacing: -0.02em;
}

/* ============ PRICING ============ */
.pricing-wrap { max-width: 1100px; margin: 0 auto; }
/* ── PIONEER OFFER BOX ── */
.pioneer-box {
  max-width: 720px; margin: 0 auto 48px;
  background: linear-gradient(140deg, #171717 0%, #0b1d5c 100%);
  border: 2px solid rgba(250,204,21,0.4);
  border-radius: 24px;
  padding: 40px 44px;
  position: relative; overflow: hidden;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(250,204,21,0.1),
    0 8px 32px rgba(250,204,21,0.1),
    0 24px 64px -20px rgba(11,29,92,0.5);
  transition: border-color 0.4s ease, box-shadow 0.5s ease;
}
.pioneer-box:hover {
  border-color: #facc15;
  box-shadow:
    0 0 0 1px #facc15,
    0 0 30px rgba(250,204,21,0.2),
    0 0 60px rgba(250,204,21,0.1),
    0 24px 64px -20px rgba(11,29,92,0.5);
}
.pioneer-glow {
  position: absolute; top: -50%; left: -20%; width: 140%; height: 200%;
  background: radial-gradient(ellipse at 50% 30%, rgba(250,204,21,0.15), transparent 60%);
  filter: blur(40px); pointer-events: none;
  animation: pioneerPulse 4s ease-in-out infinite;
}
@keyframes pioneerPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.pioneer-content { position: relative; z-index: 1; }
.pioneer-top {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.pioneer-pill {
  background: #facc15; color: #171717;
  padding: 8px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 800; letter-spacing: 0.04em;
  box-shadow: 0 0 20px rgba(250,204,21,0.4);
}
.pioneer-slots {
  font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500;
}
.pioneer-headline {
  font-size: clamp(26px, 3.5vw, 36px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1;
  color: #fff; margin-bottom: 28px;
}
.pioneer-price-row {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.pioneer-old-price { text-align: center; }
.pioneer-strike {
  font-size: 36px; font-weight: 700; color: #ef4444;
  text-decoration: line-through; text-decoration-thickness: 3px;
  opacity: 0.7;
}
.pioneer-label {
  display: block; font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px;
}
.pioneer-arrow {
  font-size: 28px; color: #facc15; font-weight: 300;
}
.pioneer-new-price { text-align: center; }
.pioneer-amount {
  font-size: 52px; font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(180deg, #fffbe6 0%, #fde047 50%, #eab308 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(253,224,71,0.5));
}
.pioneer-savings {
  font-size: 14px; color: rgba(255,255,255,0.7); font-weight: 500;
  margin-bottom: 8px;
}
@media (max-width: 560px) {
  .pioneer-box { padding: 28px 24px; }
  .pioneer-price-row { gap: 16px; }
  .pioneer-strike { font-size: 28px; }
  .pioneer-amount { font-size: 40px; }
}

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

.price-card {
  position: relative;
  background: #fff; border: 1px solid var(--ve-border);
  border-radius: 24px;
  padding: 36px 32px 32px;
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: var(--ve-shadow-card);
  transition: all 300ms var(--ve-ease-out);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--ve-shadow-card-hover); }
.price-card.featured {
  background: #171717; color: #fff;
  border: 2px solid transparent;
  box-shadow: 0 24px 60px -20px rgba(23,23,23,0.55);
  transform: translateY(-8px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.price-card.featured:hover {
  transform: translateY(-14px) scale(1.02);
  border-color: #facc15;
  box-shadow:
    0 0 0 1px #facc15,
    0 0 20px rgba(250,204,21,0.2),
    0 0 50px rgba(250,204,21,0.1),
    0 32px 64px -20px rgba(23,23,23,0.5);
}

.price-tier-row { display: flex; align-items: center; justify-content: space-between; }
.price-tier { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ve-fg-muted); }
.price-card.featured .price-tier { color: #a1a1aa; }
.price-ribbon {
  background: #fde047; color: #171717;
  padding: 6px 12px; border-radius: 100px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
}
.price-card.featured .price-ribbon { background: #facc15; }
.price-head { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
.price-sub { font-size: 14px; color: var(--ve-fg-muted); line-height: 1.5; margin-top: 4px; }
.price-card.featured .price-sub { color: #a1a1aa; }
.price-block {
  display: flex; align-items: baseline; gap: 4px;
  padding: 4px 0 18px; border-bottom: 1px solid var(--ve-border-solid);
}
.price-card.featured .price-block { border-bottom-color: rgba(255,255,255,0.1); }
.price-currency { font-size: 22px; font-weight: 500; color: var(--ve-fg-muted); transform: translateY(-18px); }
.price-card.featured .price-currency { color: #a1a1aa; }
.price-number { font-size: 72px; font-weight: 700; letter-spacing: -0.05em; line-height: 0.9; font-variant-numeric: tabular-nums; }
.price-card.featured .price-number {
  background: linear-gradient(180deg, #fffbe6 0%, #fde047 50%, #eab308 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 14px rgba(253,224,71,0.4));
  transition: filter 0.4s ease;
}
.price-card.featured:hover .price-number {
  filter: drop-shadow(0 0 28px rgba(253,224,71,0.7)) drop-shadow(0 0 56px rgba(250,204,21,0.3));
}
.price-per { font-size: 14px; color: var(--ve-fg-muted); margin-left: 6px; }
.price-card.featured .price-per { color: #a1a1aa; }

.price-feat { list-style: none; display: grid; gap: 12px; }
.price-feat li { display: flex; gap: 12px; font-size: 14px; line-height: 1.5; color: #27272a; align-items: flex-start; }
.price-card.featured .price-feat li { color: #e5e7eb; }
.price-feat .check-svg { flex: none; width: 18px; height: 18px; margin-top: 2px; color: var(--ve-fg); }
.price-card.featured .price-feat .check-svg { color: #fde047; }
.price-feat li b { font-weight: 700; color: var(--ve-fg); }
.price-card.featured .price-feat li b { color: #fff; }

.price-cta {
  margin-top: auto;
  width: 100%; padding: 14px 18px; border-radius: 12px;
  font-weight: 700; font-size: 14px; letter-spacing: -0.005em;
  border: 1px solid var(--ve-border-solid); background: #fff; color: var(--ve-fg);
  cursor: pointer; transition: all 150ms ease;
}
.price-cta:hover { background: #fafafa; border-color: #facc15; }
.price-cta.primary {
  background: #facc15; color: #171717; border-color: transparent;
  box-shadow: 0 4px 14px rgba(250,204,21,0.35);
}
.price-cta.primary:hover { background: #fde047; }
.price-cta.ghost {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,0.18);
}
.price-cta.ghost:hover { background: rgba(255,255,255,0.06); }
.price-foot { font-size: 12px; color: var(--ve-fg-muted); text-align: center; margin-top: -6px; }
.price-card.featured .price-foot { color: #a1a1aa; }

.guarantee-box {
  max-width: 780px; margin: 48px auto 0;
  background: #fff;
  border: 1px solid rgba(250,204,21,0.4);
  border-radius: 20px; padding: 28px 32px;
  display: flex; align-items: center; gap: 20px;
  box-shadow: 0 8px 28px rgba(250,204,21,0.12);
}
@media (max-width: 560px) { .guarantee-box { flex-direction: column; text-align: center; } }
.guarantee-seal {
  flex: none; width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #facc15, #eab308);
  display: grid; place-items: center;
  color: #171717;
  box-shadow: 0 6px 18px rgba(250,204,21,0.4), inset 0 1px 0 rgba(255,255,255,0.5);
}
.guarantee-box h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.guarantee-box p { font-size: 14px; color: var(--ve-fg-body); line-height: 1.5; }

/* ============ FAQ ============ */
.faq { background: var(--ve-bg-subtle); }
.faq-list { display: grid; gap: 14px; max-width: 760px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(17,24,39,0.06);
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 1px 2px rgba(17,24,39,0.04),
    0 8px 22px -10px rgba(17,24,39,0.12);
  transition: all 200ms ease;
  cursor: pointer;
}
.faq-item:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 12px 30px -10px rgba(17,24,39,0.18); }
.faq-item.open {
  border-color: rgba(250,204,21,0.55);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 0 0 3px rgba(250,204,21,0.14),
    0 10px 28px -10px rgba(234,179,8,0.3);
}
.faq-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q { font-size: 15px; font-weight: 700; color: var(--ve-fg); letter-spacing: -0.005em; }
.faq-chev {
  flex: none; width: 30px; height: 30px; border-radius: 999px;
  background: #f4f4f5; color: #525252;
  display: grid; place-items: center; font-size: 12px;
  transition: all 200ms ease;
}
.faq-item.open .faq-chev {
  background: #fde047; color: #171717;
  transform: rotate(180deg);
  box-shadow: 0 2px 6px rgba(234,179,8,0.35);
}
.faq-ans {
  max-height: 0; overflow: hidden;
  transition: max-height 350ms ease, margin-top 350ms ease, padding-top 350ms ease;
  font-size: 14px; line-height: 1.65; color: #404040;
}
.faq-item.open .faq-ans {
  max-height: 400px;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid #f1f1f4;
}

/* ============ PROMISE ============ */
.promise-top {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; margin-bottom: 48px;
}
.promise-seal {
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, #facc15, #eab308);
  display: grid; place-items: center;
  color: #171717; margin-bottom: 28px;
  box-shadow: 0 12px 36px rgba(250,204,21,0.4), inset 0 2px 0 rgba(255,255,255,0.5);
  position: relative;
}
.promise-seal::before {
  content: ""; position: absolute; inset: -8px;
  border: 2px dashed rgba(250,204,21,0.4);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .promise-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .promise-grid { grid-template-columns: 1fr; } }

.promise-card {
  background: #fff; border: 1px solid var(--ve-border);
  border-radius: 18px; padding: 24px;
  text-align: center;
  box-shadow: var(--ve-shadow-card);
}
.promise-card .ic {
  width: 48px; height: 48px; margin: 0 auto 14px;
  border-radius: 14px;
  background: #fef9c3; color: var(--ve-gold-800);
  display: grid; place-items: center;
}
.promise-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.promise-card p { font-size: 13px; color: var(--ve-fg-body); line-height: 1.5; }

/* ============ FINAL CTA ============ */
.final-cta {
  background: radial-gradient(ellipse at 50% 0%, #0b1d5c 0%, #060f34 60%, #020617 100%);
  color: #fff;
  padding: 140px 0 160px;
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(250,204,21,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250,204,21,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}
.final-cta::after {
  content: ""; position: absolute; left: 0; right: 0;
  top: var(--line-top, 62%);
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(250,204,21,0.25) 20%, rgba(250,204,21,0.5) 35%, #facc15 50%, rgba(250,204,21,0.5) 65%, rgba(250,204,21,0.25) 80%, transparent 100%);
  box-shadow: 0 0 30px rgba(250,204,21,0.4), 0 0 60px rgba(250,204,21,0.15);
  opacity: 0.8;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta .eyebrow { color: #fde047; display: inline-block; margin-bottom: 22px; }
.final-cta h2 {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1;
  color: #fff; margin-bottom: 28px;
  max-width: 14ch; margin-left: auto; margin-right: auto;
}
.final-cta .final-sub {
  font-size: 18px; color: rgba(255,255,255,0.7);
  max-width: 540px; margin: 0 auto 48px; line-height: 1.55;
}
.final-cta-buttons { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; margin-bottom: 36px; }
.final-cta-trust {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,0.55);
  align-items: center;
}
.final-cta-trust span { display: inline-flex; align-items: center; gap: 8px; }
.final-cta-trust svg { color: #fde047; }

/* ============ FOOTER ============ */
.footer {
  background: #060f34; color: rgba(255,255,255,0.55);
  padding: 48px 0 40px;
  font-size: 13px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: #fde047; }
.footer img { height: 22px; opacity: 0.8; }

/* ============ PLACEHOLDER IMAGE STYLES ============ */
.ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  background: #0b1d5c;
}

/* ============ DEVICE FRAMES (Phone + Desktop) ============ */
.frame-phone {
  position: relative;
  width: min(280px, 80%);
  aspect-ratio: 1206 / 2622;
  background: #0a0a0a;
  border-radius: 38px;
  padding: 5px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04) inset;
  border: 2px solid #1a1a1a;
}
.frame-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 32px;
  display: block;
}

.frame-desktop {
  position: relative;
  width: 100%;
  background: #1a1a1c;
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04) inset;
  overflow: hidden;
}
.frame-desktop-bar {
  height: 28px;
  background: linear-gradient(180deg, #2a2a2e 0%, #1f1f23 100%);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 7px;
  border-bottom: 1px solid #0a0a0a;
}
.frame-desktop-bar span {
  width: 11px; height: 11px; border-radius: 50%;
}
.frame-desktop-bar span:nth-child(1) { background: #ff5f57; }
.frame-desktop-bar span:nth-child(2) { background: #febc2e; }
.frame-desktop-bar span:nth-child(3) { background: #28c840; }
.frame-desktop-bar .url {
  margin-left: 16px;
  flex: 1;
  height: 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.frame-desktop img {
  width: 100%;
  display: block;
}

/* Hero layout: visual sits behind copy, copy stays in foreground */
.hero-inner {
  position: relative;
  display: block !important;
  min-height: 720px;
}
.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 620px;
  padding: 36px 40px 36px 40px;
  background: rgba(255, 255, 250, 0.45);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 -1px 0 rgba(255, 255, 255, 0.3) inset,
    0 24px 60px -20px rgba(11, 29, 92, 0.18),
    0 8px 28px -8px rgba(11, 29, 92, 0.08);
}
@media (max-width: 960px) {
  .hero-copy { padding: 28px 24px; }
}
.hero-visual {
  position: absolute;
  inset: 0 -6% 0 30%;
  z-index: 1;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  aspect-ratio: auto;
}
.hero-visual::after { display: none; }

.hero-desktop {
  position: absolute;
  top: 4%; right: 4%;
  width: 100%;
  max-width: 1040px;
  z-index: 2;
}
.hero-phone {
  position: absolute;
  right: -3%; bottom: -4%;
  width: 38%;
  max-width: 340px;
  z-index: 3;
  transform: rotate(-5deg);
}

@media (max-width: 1100px) {
  .hero-inner { min-height: 640px; }
  .hero-desktop { max-width: 720px; right: 4%; }
  .hero-phone { max-width: 240px; }
}
@media (max-width: 960px) {
  .hero-inner { min-height: 520px; padding-bottom: 360px; }
  .hero-copy { max-width: 100%; }
  .hero-visual { inset: auto 0 0 0; height: 360px; }
  .hero-desktop { top: 0; right: 6%; left: 6%; width: auto; max-width: none; }
  .hero-phone { right: 4%; bottom: -8%; max-width: 180px; }
}
@media (max-width: 560px) {
  .hero-inner { padding-bottom: 280px; }
  .hero-visual { height: 280px; }
  .hero-phone { max-width: 140px; }
}

/* Showcase tab content */
.showcase-img {
  display: grid;
  place-items: center;
  padding: 36px 28px;
  background: linear-gradient(135deg, #0b1d5c 0%, #060f34 100%);
}
.showcase-img.is-phone .frame-phone { width: min(380px, 86%); }
.showcase-img.is-desktop .frame-desktop { width: min(820px, 100%); }

/* Bento hero card phone overlay */
.bento-card.hero-card .phone-overlay {
  position: absolute;
  right: -10px;
  bottom: -32px;
  width: 320px;
  aspect-ratio: 1206 / 2622;
  background: #0a0a0a;
  border-radius: 36px;
  padding: 5px;
  box-shadow: 0 28px 60px rgba(0,0,0,0.5);
  transform: rotate(-4deg);
  border: 2px solid #1a1a1a;
}
.bento-card.hero-card .phone-overlay img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  border-radius: 30px;
  display: block;
}
@media (max-width: 900px) {
  .bento-card.hero-card .phone-overlay { width: 200px; right: -10px; bottom: -16px; }
}

/* Moat visual: phone frame */
.moat-visual {
  display: grid;
  place-items: center;
  padding: 24px;
}
.moat-visual .frame-phone {
  width: min(400px, 100%);
}
