@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400..900&display=swap');

/* The hidden attribute must always win, even over elements that set their own
   display (e.g. buttons/flex). Without this, hiding the input/button on submit
   silently fails and the button stays stuck on "Sending…". */
[hidden] { display: none !important; }

:root {
  /* Brand */
  --blue: #2f5bff;
  --blue-600: #1f49ec;
  --blue-700: #1839c2;
  --violet: #7b5bff;
  --blue-bg: #eef3ff;
  --blue-border: #d2def8;

  /* Gradients */
  --grad: linear-gradient(135deg, #2f5bff 0%, #7b5bff 100%);
  --grad-soft: linear-gradient(135deg, #eef3ff 0%, #f1edff 100%);

  /* Ink / neutrals */
  --ink: #0a0f1f;
  --ink-2: #1a2237;
  --text: #19213a;
  --text-secondary: #5a6480;
  --text-muted: #98a1b8;

  /* Surfaces */
  --bg: #ffffff;
  --bg-soft: #f5f7fc;
  --bg-softer: #fafbff;
  --border: #e7eaf2;
  --border-soft: #eef1f7;

  /* Status */
  --green: #12b76a;
  --green-bg: #e9faf1;
  --green-border: #bdeed3;
  --red: #f04438;
  --red-bg: #fef1f0;
  --red-border: #fbd4d0;
  --gold: #f5a623;

  --shadow-sm: 0 1px 2px rgba(16,24,40,.06);
  --shadow: 0 8px 24px -8px rgba(16,24,40,.12);
  --shadow-lg: 0 24px 48px -16px rgba(16,24,40,.16);
  --shadow-blue: 0 16px 40px -12px rgba(47,91,255,.45);

  --radius: 22px;
  --radius-sm: 16px;
  --radius-xs: 12px;
  --display: 'Inter', -apple-system, sans-serif;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: var(--font);
  font-optical-sizing: auto;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display:block; max-width:100%; }

.container { max-width:1180px; margin:0 auto; padding:0 28px; }
.section { padding:120px 0; position:relative; }
.text-center { text-align:center; }
.text-red { color:var(--red); }
.text-green { color:var(--green); }
.text-grad { background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }

/* ═══ REVEAL ═══ */
.reveal { opacity:0; transform:translateY(28px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1; transform:none; transition:none; } }

/* ═══ PLACEHOLDER IMAGES ═══ */
.placeholder-img {
  position:relative;
  background:
    repeating-linear-gradient(45deg, rgba(47,91,255,.05) 0 10px, rgba(123,91,255,.03) 10px 20px),
    var(--bg-soft);
  border:1px dashed var(--blue-border);
  display:flex; align-items:center; justify-content:center;
  color:var(--text-muted); overflow:hidden;
}
.placeholder-img::after {
  content: attr(data-label);
  font-size:.62rem; font-weight:600; letter-spacing:.5px;
  text-transform:uppercase; color:var(--blue);
  opacity:.6; text-align:center; padding:6px;
}

/* ═══════════ NAV ═══════════ */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  padding:18px 0; transition:padding .3s, background .3s, box-shadow .3s;
}
.nav.scrolled {
  padding:10px 0;
  background:rgba(255,255,255,.82);
  backdrop-filter:saturate(160%) blur(18px);
  -webkit-backdrop-filter:saturate(160%) blur(18px);
  box-shadow:0 1px 0 var(--border), var(--shadow-sm);
}
.nav-inner { display:flex; align-items:center; justify-content:space-between; max-width:1180px; margin:0 auto; padding:0 28px; gap:18px; }

.nav-logo { display:inline-flex; align-items:center; text-decoration:none; }
.nav-logo img { height:30px; width:auto; display:block; }
.nav-logo .logo-dark { display:none; }
.nav.scrolled .logo-light { display:none; }
.nav.scrolled .logo-dark { display:block; }
.footer-logo img { height:26px; width:auto; display:block; }

.nav-pill {
  display:flex; align-items:center; gap:6px;
  background:rgba(255,255,255,.65);
  border:1px solid rgba(255,255,255,.9);
  backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  padding:6px; border-radius:999px;
  box-shadow:var(--shadow-sm);
}
.nav.scrolled .nav-pill { background:var(--bg-soft); border-color:var(--border); }
.nav-pill a {
  color:var(--ink-2); text-decoration:none;
  font-size:.92rem; font-weight:600;
  padding:8px 18px; border-radius:999px; transition:background .2s, color .2s;
}
.nav-pill a:hover { background:#fff; color:var(--blue); }

.nav-cta {
  background:var(--ink); color:#fff; text-decoration:none;
  padding:11px 24px; border-radius:999px;
  font-weight:700; font-size:.92rem;
  transition:transform .2s, box-shadow .2s, background .2s;
}
.nav-cta:hover { background:#1b2436; transform:translateY(-1px); box-shadow:0 12px 26px -10px rgba(8,18,55,.55); }


/* ═══════════ HERO ═══════════ */
.hero {
  position:relative; isolation:isolate; overflow:hidden;
  padding:150px 0 0;
  background:
    radial-gradient(105% 70% at 80% -5%, #6e8bff 0%, rgba(110,139,255,0) 55%),
    radial-gradient(80% 70% at -5% 105%, #6a4bff 0%, rgba(106,75,255,0) 60%),
    linear-gradient(165deg, #2f5bff 0%, #2747e6 52%, #3b5bff 100%);
}
.hero-grid-bg {
  position:absolute; inset:0; z-index:-1;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size:64px 64px;
  -webkit-mask-image:radial-gradient(110% 90% at 50% 10%, #000 35%, transparent 80%);
  mask-image:radial-gradient(110% 90% at 50% 10%, #000 35%, transparent 80%);
}
.hero-glow {
  position:absolute; top:-20%; right:-10%; width:60%; height:80%; z-index:-1;
  background:radial-gradient(circle, rgba(255,255,255,.35), transparent 60%);
  filter:blur(40px); opacity:.5;
}
.hero-fade {
  position:absolute; inset:0; z-index:0; pointer-events:none;
  background:linear-gradient(180deg,
    rgba(255,255,255,0) 22%,
    rgba(255,255,255,0.10) 40%,
    rgba(255,255,255,0.24) 53%,
    rgba(255,255,255,0.42) 64%,
    rgba(255,255,255,0.62) 75%,
    rgba(255,255,255,0.82) 86%,
    rgba(255,255,255,0.94) 94%,
    #ffffff 100%);
}
/* desktop: lowest copy sits on the lightened area, so switch it to dark (like the template) */
@media (min-width:981px) {
  .hero .hero-sub { color:var(--ink-2); }
  .hero .hero-form-note { color:var(--ink-2); }
}
.hero-inner {
  position:relative; z-index:1;
  display:grid; grid-template-columns:1.22fr .78fr; gap:24px; align-items:start;
}

.hero-copy { padding:4px 0 72px; }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.15);
  color:#fff; font-weight:600; font-size:.85rem;
  padding:7px 16px; border-radius:999px; margin-bottom:22px;
  backdrop-filter:blur(6px);
}
.hero-badge.light { background:rgba(255,255,255,.18); margin-bottom:20px; }
.hero-title {
  font-family:var(--display);
  font-size:clamp(2.3rem, 4.2vw, 3.55rem);
  font-weight:800; line-height:1.05; letter-spacing:-.03em;
  text-transform:uppercase; color:#fff; margin-bottom:22px;
}
.hero-sub {
  font-size:1.1rem; line-height:1.65; color:rgba(255,255,255,.86);
  max-width:560px; margin-bottom:28px;
}

/* ═══ BUTTONS ═══ */
.btn-primary {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  background:var(--ink); color:#fff; text-decoration:none;
  padding:15px 28px; border-radius:999px;
  font-weight:700; font-size:1rem; border:0; cursor:pointer;
  transition:transform .2s, box-shadow .2s, background .2s;
}
.btn-primary:hover { transform:translateY(-2px); background:#1b2436; box-shadow:0 16px 34px -12px rgba(8,18,55,.55); }
.btn-light {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  background:#fff; color:var(--blue-700); text-decoration:none;
  padding:15px 30px; border-radius:999px; font-weight:700; font-size:1rem;
  border:0; cursor:pointer; transition:transform .2s, box-shadow .2s, color .2s;
}
.btn-light:hover { transform:translateY(-2px); box-shadow:0 18px 40px -12px rgba(0,0,0,.35); }
.btn-light.full, .btn-primary.full { width:100%; }

/* ═══ WAITLIST FORM ═══ */
.waitlist-form { display:flex; gap:10px; flex-wrap:wrap; max-width:520px; }
.waitlist-form input {
  flex:1; min-width:220px;
  padding:15px 20px; border-radius:999px;
  border:1px solid rgba(255,255,255,.5); background:rgba(255,255,255,.92);
  font-family:var(--font); font-size:1rem; color:var(--ink);
  outline:none; transition:box-shadow .2s, border-color .2s;
}
.waitlist-form input::placeholder { color:var(--text-muted); }
.waitlist-form input:focus { border-color:#fff; box-shadow:0 0 0 4px rgba(255,255,255,.25); }
.waitlist-form button { white-space:nowrap; }
.form-success {
  width:100%; margin-top:8px;
  display:flex; align-items:center; gap:13px; text-align:left;
  padding:14px 26px; border-radius:999px;
  background:var(--grad);
  box-shadow:0 12px 30px -14px rgba(47,91,255,.5);
  animation:successIn .5s cubic-bezier(.2,.8,.2,1) both;
}
.form-success .fs-icon {
  flex-shrink:0; width:34px; height:34px; border-radius:50%;
  background:#fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f5bff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 18px no-repeat;
  box-shadow:0 8px 20px -6px rgba(8,18,55,.4);
  animation:checkPop .55s .12s cubic-bezier(.2,1.5,.4,1) both;
}
.form-success .fs-copy { display:flex; flex-direction:column; gap:2px; }
.form-success .fs-copy strong { color:#fff; font-size:1.02rem; font-weight:800; line-height:1.2; letter-spacing:-.01em; }
.form-success .fs-copy .fs-sub { color:rgba(255,255,255,.82); font-size:.85rem; line-height:1.3; }
@keyframes successIn { from { opacity:0; transform:translateY(10px) scale(.97); } to { opacity:1; transform:none; } }
@keyframes checkPop { from { transform:scale(0) rotate(-25deg); } to { transform:scale(1) rotate(0); } }
.form-error { width:100%; margin-top:4px; color:#ffd7d3; font-weight:600; font-size:.9rem; }
.cta-form .form-error { text-align:center; }
.hero-form { margin-bottom:12px; }
.hero-form-note { color:rgba(255,255,255,.7); font-size:.85rem; margin-bottom:40px; }

/* Trusted */
.trusted { display:flex; align-items:center; gap:14px; }
.avatars { display:flex; }
.avatar {
  width:44px; height:44px; border-radius:50%;
  border:2px solid #fff; margin-left:-12px;
  box-shadow:var(--shadow-sm); overflow:hidden;
  display:flex; align-items:flex-end; justify-content:center;
  background:linear-gradient(150deg,#dfe7ff,#ece1ff);
}
.avatar svg { width:30px; height:30px; color:rgba(47,91,255,.5); }
.avatar:nth-child(2) { background:linear-gradient(150deg,#ffe6ec,#ffe9dd); }
.avatar:nth-child(2) svg { color:rgba(240,68,56,.45); }
.avatar:nth-child(3) { background:linear-gradient(150deg,#dcf5ea,#e2ecff); }
.avatar:nth-child(3) svg { color:rgba(18,183,106,.5); }
.avatar:first-child { margin-left:0; }
.trusted-text { display:flex; flex-direction:column; line-height:1.3; }
.trusted-text strong { color:#fff; font-weight:700; font-size:.95rem; }
.trusted-text span { color:rgba(255,255,255,.72); font-size:.85rem; }

/* Hero visual — large, top-reaching, fading into the page at the bottom */
.hero-visual {
  position:relative; align-self:start; justify-self:end; width:100%;
  filter:drop-shadow(0 30px 50px rgba(8,18,55,.32));
}
.hand-img {
  position:relative; z-index:1; display:block; max-width:none;
  width:clamp(460px, 48vw, 720px);
  margin:-30px -56px -120px auto;
  -webkit-mask-image:linear-gradient(to bottom, #000 58%, transparent 92%);
  mask-image:linear-gradient(to bottom, #000 58%, transparent 92%);
}

/* ═══════════ STATS BAR ═══════════ */
.stats-bar { background:#fff; padding:30px 0 84px; }
.stats-inner { display:flex; align-items:flex-end; justify-content:space-between; gap:48px; flex-wrap:wrap; }
.stats-copy h2 { font-family:var(--display); font-size:2rem; font-weight:800; letter-spacing:-.02em; line-height:1.1; color:var(--ink); }
.stats-copy p { color:var(--text-secondary); margin-top:10px; max-width:420px; }
.stats-row { display:flex; gap:52px; }
.stat-value { font-family:var(--display); font-size:3.3rem; font-weight:800; letter-spacing:-.03em; line-height:1; background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
.stat-label { color:var(--text-secondary); font-size:.92rem; margin-top:8px; }

/* ═══════════ WHO IT'S FOR — BUBBLE CLOUD ═══════════ */
.cloud-section {
  background:
    radial-gradient(55% 55% at 0% 100%, rgba(47,91,255,.06), transparent 60%),
    radial-gradient(55% 55% at 100% 0%, rgba(123,91,255,.06), transparent 60%),
    #fff;
}
.cloud-grid { display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; }
.cloud-stage {
  position:relative; container-type:inline-size;
  width:100%; max-width:560px; aspect-ratio:1 / .94; margin:0 auto;
  background:linear-gradient(160deg,#f6f8fc,#eef1fb);
  border:1px solid var(--border); border-radius:28px; overflow:hidden;
  box-shadow:inset 0 1px 0 #fff, var(--shadow);
}
.grid-dots { position:absolute; inset:0; background-image:radial-gradient(rgba(47,91,255,.14) 1px, transparent 1px); background-size:26px 26px; opacity:.55; -webkit-mask-image:radial-gradient(120% 120% at 50% 50%, #000 55%, transparent 100%); mask-image:radial-gradient(120% 120% at 50% 50%, #000 55%, transparent 100%); }
.bubble {
  position:absolute; top:0; left:0; border-radius:50%;
  display:flex; align-items:center; justify-content:center; text-align:center;
  font-weight:700; font-size:3.1cqw; line-height:1.12; padding:9%;
  background:#fff; color:var(--ink); border:1px solid var(--border);
  box-shadow:0 16px 32px -14px rgba(16,24,40,.3), inset 0 1px 0 rgba(255,255,255,.6);
  will-change:transform; cursor:grab; transition:box-shadow .3s;
  z-index:1; -webkit-user-select:none; user-select:none;
}
.bubble:active { cursor:grabbing; }
.bubble.lg { font-size:3.9cqw; }
.bubble.b-blue { background:var(--grad); color:#fff; border:0; box-shadow:0 20px 40px -12px rgba(47,91,255,.6); z-index:2; }
.bubble.b-violet { background:linear-gradient(135deg,#7b5bff,#a07dff); color:#fff; border:0; box-shadow:0 20px 38px -12px rgba(123,91,255,.6); }
.bubble.b-red { background:linear-gradient(135deg,#f04438,#ff8a3d); color:#fff; border:0; box-shadow:0 20px 38px -12px rgba(240,68,56,.55); }
.bubble:hover { box-shadow:0 26px 50px -12px rgba(16,24,40,.4); z-index:6; }
.bubble-tag {
  position:absolute; z-index:7; white-space:nowrap;
  background:var(--ink); color:#fff; font-weight:700; font-style:italic; font-size:2.5cqw;
  padding:2.4% 4.6%; border-radius:999px;
  box-shadow:0 14px 30px -8px rgba(10,15,31,.55), 0 0 0 4px rgba(255,255,255,.55);
  -webkit-user-select:none; user-select:none;
}
.bubble-tag.t1 { left:-2%; top:5%; animation:tagFloatA 6s ease-in-out infinite; }
.bubble-tag.t2 { right:-1%; bottom:6%; animation:tagFloatB 6.6s ease-in-out infinite; }
@keyframes tagFloatA { 0%,100%{ transform:translateY(0) rotate(-7deg); } 50%{ transform:translateY(-9px) rotate(-7deg); } }
@keyframes tagFloatB { 0%,100%{ transform:translateY(0) rotate(6deg); } 50%{ transform:translateY(-9px) rotate(6deg); } }
@media (max-width:980px) {
  .cloud-grid { grid-template-columns:1fr; gap:8px; }
  .cloud-stage { order:2; max-width:440px; }
  .cloud-copy { order:1; text-align:center; }
  .cloud-copy .section-label { justify-content:flex-start; }
  .cloud-copy .section-sub { margin-left:auto; margin-right:auto; }
}

/* ═══════════ SECTION HEADINGS ═══════════ */
.section-head { margin-bottom:56px; }
.section-head.text-center { margin-left:auto; margin-right:auto; max-width:760px; }
.section-label {
  display:inline-flex; align-items:center; gap:10px;
  font-size:.74rem; font-weight:700; text-transform:uppercase;
  letter-spacing:1.2px; color:var(--blue-700); margin-bottom:18px;
  background:var(--grad-soft);
  padding:7px 16px; border-radius:999px;
}
.section-label.center { justify-content:center; }
.section-label .bar { width:18px; height:3px; background:var(--grad); border-radius:2px; }
.section-title {
  font-family:var(--display);
  font-size:clamp(2rem, 4vw, 3rem); font-weight:800;
  line-height:1.08; letter-spacing:-.025em; color:var(--ink);
}
.section-sub { font-size:1.08rem; color:var(--text-secondary); line-height:1.7; margin-top:18px; max-width:600px; }
.section-sub.center { margin-left:auto; margin-right:auto; }

/* ═══════════ PROBLEM ═══════════ */
.problem-section {
  background:
    radial-gradient(60% 50% at 12% 0%, rgba(47,91,255,.06), transparent 60%),
    radial-gradient(55% 55% at 100% 100%, rgba(123,91,255,.07), transparent 60%),
    var(--bg-softer);
}
.leak-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.leak-card {
  position:relative; overflow:hidden;
  background:#fff;
  border:1px solid var(--border); border-radius:var(--radius);
  padding:32px 28px;
  box-shadow:0 1px 2px rgba(16,24,40,.05);
  transition:transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s, border-color .4s;
}
.leak-card:hover { transform:translateY(-8px); box-shadow:0 26px 50px -24px rgba(239,68,56,.26); border-color:#f6cec9; }
.leak-icon {
  position:relative; z-index:1;
  width:52px; height:52px; border-radius:15px; margin-bottom:20px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(140deg,#ff5b51,#ec4034); color:#fff;
  box-shadow:0 14px 24px -10px rgba(236,64,52,.5);
}
.leak-icon svg { width:26px; height:26px; }
.leak-kicker { position:relative; z-index:1; font-size:.7rem; font-weight:700; letter-spacing:1.2px; text-transform:uppercase; color:#df4539; margin-bottom:8px; }
.leak-value { position:relative; z-index:1; font-family:var(--display); font-size:2.9rem; font-weight:800; letter-spacing:-.02em; line-height:1; margin-bottom:10px; color:#ec4034; }
.leak-value span { font-size:1.7rem; }
.leak-title { position:relative; z-index:1; font-weight:700; font-size:1.1rem; margin-bottom:8px; color:var(--ink); }
.leak-desc { position:relative; z-index:1; font-size:.95rem; color:var(--text-secondary); line-height:1.6; max-width:34ch; }
.leak-watermark { position:absolute; right:-22px; bottom:-26px; color:#f04438; opacity:.06; z-index:0; pointer-events:none; }
.leak-watermark svg { width:150px; height:150px; }

/* ═══════════ AI DIFFERENCE ═══════════ */
.ai-section { background:#fff; }
.cmp2 { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-bottom:30px; align-items:stretch; }
.cmp2-card {
  position:relative; overflow:hidden; display:flex; flex-direction:column;
  border-radius:26px; padding:30px;
  background:linear-gradient(180deg,#f5f7fc,#edf0f8); border:1px solid var(--border);
  transition:transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s;
}
.cmp2-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.cmp2-card::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image:linear-gradient(rgba(47,91,255,.07) 1px,transparent 1px),linear-gradient(90deg,rgba(47,91,255,.07) 1px,transparent 1px);
  background-size:32px 32px;
  -webkit-mask-image:radial-gradient(110% 95% at 50% 0%, #000 45%, transparent 100%);
  mask-image:radial-gradient(110% 95% at 50% 0%, #000 45%, transparent 100%);
}
.cmp2-head { position:relative; margin-bottom:22px; }
.cmp2-tag { display:inline-block; font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.8px; padding:6px 13px; border-radius:999px; background:#fff; margin-bottom:14px; }
.cmp2-tag.bad { color:var(--red); border:1px solid var(--red-border); }
.cmp2-tag.good { color:var(--blue-700); border:1px solid var(--blue-border); }
.cmp2-head h4 { font-family:var(--display); font-size:1.5rem; font-weight:800; letter-spacing:-.015em; color:var(--ink); line-height:1.12; }
.cmp2-head p { font-size:.95rem; color:var(--text-secondary); margin-top:8px; line-height:1.5; }
.cmp2-panel {
  position:relative; flex:1; display:flex; flex-direction:column; gap:9px;
  background:#fff; border:1px solid var(--border); border-radius:18px; padding:20px; box-shadow:var(--shadow);
}
.panel-top { display:flex; align-items:center; gap:8px; font-size:.78rem; font-weight:600; color:var(--text-muted); margin-bottom:2px; }
.dot-grey { width:8px; height:8px; border-radius:50%; background:#c2c8d6; }

.row { display:flex; }
.row.sent { justify-content:flex-end; }
.row.recv { justify-content:flex-start; }
.cbubble { max-width:90%; padding:13px 16px; font-size:.92rem; line-height:1.5; border-radius:20px; }
.cbubble.cold { background:#9aa3b8; color:#fff; border-bottom-right-radius:6px; }
.cbubble.warm { background:var(--grad); color:#fff; border-bottom-right-radius:6px; box-shadow:var(--shadow-blue); }
.cbubble.recv { background:var(--bg-soft); color:var(--ink-2); border:1px solid var(--border); border-bottom-left-radius:6px; }
.cmp-status { font-size:.74rem; color:var(--text-muted); text-align:right; }
.cmp-status.warm { color:var(--green); font-weight:600; }
.panel-ghost { flex:1; display:flex; align-items:center; justify-content:center; min-height:34px; font-size:.8rem; font-style:italic; color:var(--text-muted); opacity:.7; }

.panel-rate { display:flex; align-items:center; gap:14px; margin-top:auto; padding-top:16px; border-top:1px solid var(--border-soft); }
.panel-rate-num { font-family:var(--display); font-size:2rem; font-weight:800; line-height:1; letter-spacing:-.02em; }
.panel-rate-num.bad { color:var(--red); }
.panel-rate-num.good { background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
.panel-rate-info { flex:1; }
.panel-rate-info span { display:block; font-size:.7rem; text-transform:uppercase; letter-spacing:.5px; color:var(--text-muted); font-weight:700; margin-bottom:6px; }
.cmp-bar { height:7px; border-radius:999px; background:rgba(16,24,40,.08); overflow:hidden; }
.cmp-bar span { display:block; height:100%; border-radius:999px; min-width:7px; }
.cmp-bar .fill-bad { width:2%; background:var(--red); }
.cmp-bar .fill-good { width:34%; background:var(--grad); }

/* shared rich gradient card — deep ink with blue/violet glows (like the waitlist card) */
.glow-card {
  position:relative; overflow:hidden; color:#fff;
  background:
    radial-gradient(95% 130% at 92% -10%, rgba(123,91,255,.6), transparent 62%),
    radial-gradient(95% 130% at 8% 110%, rgba(47,91,255,.58), transparent 62%),
    #080d1c;
}
.glow-card > * { position:relative; z-index:1; }

.compare-result {
  display:flex; align-items:center; gap:28px; justify-content:center;
  padding:36px 48px; border-radius:var(--radius); box-shadow:var(--shadow-lg);
}
.compare-result-number { font-family:var(--display); font-size:3.4rem; font-weight:900; color:#fff; letter-spacing:-.02em; line-height:1; }
.compare-result-text { font-size:1.05rem; color:rgba(255,255,255,.86); max-width:520px; }
.compare-result-text strong { color:#fff; }

.features-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:72px; }
.feature-card {
  background:var(--bg-softer); border:1px solid var(--border);
  border-radius:var(--radius-sm); padding:28px 24px;
  transition:transform .3s, box-shadow .3s, border-color .3s;
}
.feature-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); border-color:var(--blue-border); }
.feature-icon { width:50px; height:50px; border-radius:14px; margin-bottom:18px; display:flex; align-items:center; justify-content:center; background:var(--grad); color:#fff; box-shadow:0 12px 22px -10px rgba(47,91,255,.6); }
.feature-icon svg { width:25px; height:25px; }
.feature-card h4 { font-weight:700; font-size:1.02rem; margin-bottom:8px; color:var(--ink); }
.feature-card p { font-size:.92rem; color:var(--text-secondary); line-height:1.6; }

/* ═══════════ GAP ═══════════ */
.gap-section {
  background:
    radial-gradient(55% 50% at 100% 0%, rgba(47,91,255,.06), transparent 60%),
    radial-gradient(55% 55% at 0% 100%, rgba(123,91,255,.06), transparent 60%),
    var(--bg-softer);
}
/* new-vs-existing comparison matrix */
.vs-table { max-width:940px; margin:0 auto; background:#fff; border:1px solid var(--border); border-radius:22px; overflow:hidden; box-shadow:var(--shadow-lg); }
.vs-head, .vs-row { display:grid; grid-template-columns:0.82fr 1fr 1fr; }
.vs-row { border-top:1px solid var(--border-soft); }
.vs-head .vs-corner { background:var(--bg-softer); }
.vs-colhead { padding:22px 26px; font-size:.82rem; font-weight:800; text-transform:uppercase; letter-spacing:.7px; display:flex; align-items:center; gap:9px; }
.vs-colhead.new { color:var(--text-muted); background:var(--bg-softer); }
.vs-colhead.own { color:#fff; background:var(--grad); box-shadow:0 10px 26px -10px rgba(47,91,255,.55); }
.vs-colhead.own::before { content:'★'; font-size:.78rem; opacity:.9; }
.vs-attr { padding:22px 26px; font-weight:700; font-size:.98rem; color:var(--ink); display:flex; align-items:center; background:var(--bg-softer); }
.vs-cell { padding:22px 24px; display:flex; align-items:center; gap:12px; font-size:.98rem; line-height:1.4; }
.vs-cell.new { color:var(--text-muted); }
.vs-cell.own { color:var(--ink); font-weight:600; background:linear-gradient(180deg, rgba(47,91,255,.07), rgba(123,91,255,.07)); box-shadow:inset 1px 0 0 rgba(47,91,255,.14), inset -1px 0 0 rgba(47,91,255,.14); }
.vs-ico { flex-shrink:0; width:24px; height:24px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.72rem; font-weight:800; }
.vs-ico.x { background:#fdeceb; color:var(--red); }
.vs-ico.c { background:var(--grad); color:#fff; box-shadow:var(--shadow-blue); }
.vs-num { font-family:var(--display); font-size:2.6rem; font-weight:900; letter-spacing:-.02em; line-height:1; }
.vs-num.bad { color:#aab2c6; }
.vs-num.good { background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
.vs-row.highlight .vs-attr, .vs-row.highlight .vs-cell { padding-top:26px; padding-bottom:26px; }
.vs-row.highlight .vs-cell.own { background:linear-gradient(180deg, rgba(47,91,255,.11), rgba(123,91,255,.11)); }
.calc-note { text-align:center; max-width:620px; margin:26px auto 0; font-size:.88rem; color:var(--text-muted); }

/* ═══════════ HOW IT WORKS — BENTO ═══════════ */
.how-section {
  background:
    radial-gradient(55% 50% at 100% 0%, rgba(47,91,255,.05), transparent 60%),
    radial-gradient(55% 55% at 0% 100%, rgba(123,91,255,.06), transparent 60%),
    var(--bg-softer);
}
.bento { display:grid; grid-template-columns:repeat(6,1fr); gap:20px; }
.bento-tile {
  position:relative; overflow:hidden;
  background:#fff; border:1px solid var(--border); border-radius:var(--radius);
  padding:30px; display:flex; flex-direction:column; gap:20px;
  box-shadow:0 1px 2px rgba(16,24,40,.05);
  transition:transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s, border-color .35s;
}
.bento-tile:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); border-color:var(--blue-border); }
.tile-chart { grid-column:span 3; }
.tile-composer { grid-column:span 3; }
.tile-seg { grid-column:span 2; }
.tile-send { grid-column:span 2; }
.tile-seq { grid-column:span 2; }
.bento-kicker { font-size:.7rem; font-weight:700; letter-spacing:1.2px; text-transform:uppercase; color:var(--blue-700); }
.bento-text h4 { font-family:var(--display); font-size:1.3rem; font-weight:800; letter-spacing:-.01em; color:var(--ink); margin:9px 0 0; line-height:1.15; }
.bento-text p { font-size:.92rem; color:var(--text-secondary); line-height:1.55; margin-top:8px; }

/* Chart */
.chart { position:relative; margin-top:auto; }
.chart-flag { position:absolute; top:-4px; right:0; z-index:2; background:var(--ink); color:#fff; font-family:var(--display); font-weight:800; font-size:1.15rem; padding:9px 14px; border-radius:13px; display:flex; flex-direction:column; line-height:1; box-shadow:var(--shadow-lg); }
.chart-flag small { font-size:.58rem; font-weight:600; color:rgba(255,255,255,.6); margin-top:4px; letter-spacing:.6px; text-transform:uppercase; }
.chart-bars { height:148px; display:flex; align-items:flex-end; gap:12px; }
.chart-bars .bar { flex:1; height:0; background:linear-gradient(180deg,#7b5bff,#2f5bff); border-radius:8px 8px 4px 4px; transition:height 1.1s cubic-bezier(.16,1,.3,1); }
.chart-bars .bar:nth-child(2){ transition-delay:.07s } .chart-bars .bar:nth-child(3){ transition-delay:.14s } .chart-bars .bar:nth-child(4){ transition-delay:.21s } .chart-bars .bar:nth-child(5){ transition-delay:.28s } .chart-bars .bar:nth-child(6){ transition-delay:.35s }
.tile-chart.visible .chart-bars .bar { height:var(--h); }
.chart-bars .bar.hot { background:linear-gradient(180deg,#2f5bff,#1f49ec); box-shadow:0 10px 22px -8px rgba(47,91,255,.6); }
.chart-labels { display:flex; gap:12px; margin-top:10px; }
.chart-labels i { flex:1; text-align:center; font-size:.72rem; color:var(--text-muted); font-style:normal; }

/* Composer */
.composer { margin-top:auto; background:var(--bg-softer); border:1px solid var(--border); border-radius:16px; padding:16px; }
.composer-bar { display:flex; align-items:center; gap:8px; font-size:.8rem; font-weight:600; color:var(--text-secondary); margin-bottom:12px; }
.dot-live { width:8px; height:8px; border-radius:50%; background:var(--blue); animation:pulse 1.6s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(47,91,255,.5)} 70%{box-shadow:0 0 0 8px rgba(47,91,255,0)} 100%{box-shadow:0 0 0 0 rgba(47,91,255,0)} }
.composer-chips { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:12px; }
.composer-chips span { font-size:.72rem; font-weight:600; color:var(--blue-700); background:var(--blue-bg); border:1px solid var(--blue-border); padding:4px 10px; border-radius:999px; }
.composer-msg { background:var(--grad); color:#fff; padding:12px 15px; border-radius:15px; border-bottom-left-radius:5px; font-size:.92rem; line-height:1.45; box-shadow:var(--shadow-blue); }

/* Segments */
.seg-stack { margin-top:auto; position:relative; height:158px; }
.seg-card { position:absolute; display:flex; justify-content:space-between; align-items:center; padding:14px 16px; background:#fff; border:1px solid var(--border); border-radius:14px; box-shadow:var(--shadow); font-size:.9rem; font-weight:600; color:var(--ink-2); transition:transform .3s; }
.seg-card b { font-family:var(--display); font-size:1.05rem; }
.seg-card.s1 { left:0; right:10%; top:0; transform:rotate(-4deg); border-left:4px solid var(--blue); z-index:3; }
.seg-card.s2 { left:9%; right:1%; top:50px; transform:rotate(3deg); border-left:4px solid var(--violet); z-index:2; }
.seg-card.s3 { left:2%; right:8%; top:100px; transform:rotate(-2deg); border-left:4px solid var(--green); z-index:1; }
.tile-seg:hover .seg-card.s1 { transform:rotate(-5deg) translateY(-3px); }
.tile-seg:hover .seg-card.s2 { transform:rotate(4deg) translateY(-3px); }

/* Send window */
.send-viz { margin-top:auto; }
.send-track { position:relative; height:8px; border-radius:999px; background:linear-gradient(90deg,#e7eaf2,#d4ddfb); }
.send-pulse { position:absolute; top:50%; left:66%; width:18px; height:18px; border-radius:50%; background:var(--grad); transform:translate(-50%,-50%); box-shadow:0 0 0 0 rgba(47,91,255,.5); animation:pulse 1.8s infinite; }
.send-hours { display:flex; justify-content:space-between; margin-top:12px; }
.send-hours i { font-size:.7rem; color:var(--text-muted); font-style:normal; }
.send-flag { display:inline-block; margin-top:16px; font-size:.78rem; font-weight:700; color:var(--blue-700); background:var(--blue-bg); border:1px solid var(--blue-border); padding:6px 13px; border-radius:999px; }

/* Sequence */
.seq { list-style:none; margin-top:auto; display:flex; flex-direction:column; }
.seq li { position:relative; display:flex; align-items:center; gap:13px; padding:9px 0; font-size:.92rem; font-weight:600; color:var(--ink-2); }
.seq-dot { position:relative; width:17px; height:17px; border-radius:50%; border:2px solid var(--blue-border); background:#fff; flex-shrink:0; }
.seq li:not(:last-child) .seq-dot::after { content:''; position:absolute; left:50%; top:15px; transform:translateX(-50%); width:2px; height:24px; background:var(--blue-border); }
.seq-dot.done { background:var(--grad); border-color:transparent; color:#fff; font-size:.7rem; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-blue); }
.seq-chip { display:inline-flex; align-items:center; gap:6px; align-self:flex-start; margin-top:16px; font-size:.74rem; font-weight:700; color:var(--green); background:var(--green-bg); border:1px solid var(--green-border); padding:6px 12px; border-radius:999px; }
.seq-chip svg { width:14px; height:14px; }

@media (max-width:900px) {
  .bento { grid-template-columns:repeat(2,1fr); }
  .tile-chart, .tile-composer, .tile-seq { grid-column:span 2; }
  .tile-seg, .tile-send { grid-column:span 1; }
}
@media (max-width:620px) {
  .bento { grid-template-columns:1fr; }
  .tile-chart, .tile-composer, .tile-seg, .tile-send, .tile-seq { grid-column:span 1; }
}

/* ═══════════ DASHBOARD PREVIEW ═══════════ */
.dash-section {
  background:
    radial-gradient(60% 55% at 100% 0%, rgba(47,91,255,.07), transparent 58%),
    radial-gradient(60% 55% at 0% 100%, rgba(123,91,255,.07), transparent 58%),
    #fff;
}
.dash-frame { width:100%; padding:10px 0 24px; }
.dash { width:1040px; max-width:none; margin:0 auto; border:1px solid var(--border); border-radius:20px; overflow:hidden; background:#fff; box-shadow:0 40px 80px -30px rgba(16,24,40,.32), 0 12px 24px -12px rgba(16,24,40,.12); }
/* Narrow: no horizontal scroll — anchor the dashboard to the left and let it
   bleed off the right edge of the screen. The section clips the overflow so the
   page never scrolls sideways, while leaving room for the soft shadow. */
@media (max-width:1080px) {
  .dash-section { overflow:hidden; }
  .dash-frame { overflow:visible; padding:10px 0 40px; }
  .dash { width:1040px; margin:0; }
}
.dash-bar { display:flex; align-items:center; gap:8px; padding:13px 18px; background:var(--bg-soft); border-bottom:1px solid var(--border); }
.dash-dot { width:11px; height:11px; border-radius:50%; background:var(--border); }
.dash-dot:nth-child(1){ background:#ff5f57; } .dash-dot:nth-child(2){ background:#febc2e; } .dash-dot:nth-child(3){ background:#28c840; }
.dash-url { margin:0 auto; font-size:.8rem; color:var(--text-muted); background:#fff; border:1px solid var(--border); padding:4px 16px; border-radius:999px; }
.dash-body { display:grid; grid-template-columns:212px 1fr; }

.dash-side { border-right:1px solid var(--border); padding:20px 16px; display:flex; flex-direction:column; gap:6px; background:#fcfdff; }
.dash-brand { display:flex; align-items:center; gap:8px; font-family:var(--display); font-weight:800; font-size:1.15rem; color:var(--ink); padding:4px 8px 16px; }
.dash-logo { width:26px; height:26px; border-radius:8px; background:var(--grad); color:#fff; display:flex; align-items:center; justify-content:center; }
.dash-logo svg { width:16px; height:16px; }
.dash-nav { display:flex; flex-direction:column; gap:3px; }
.dash-nav a { display:flex; align-items:center; gap:11px; padding:10px 12px; border-radius:10px; font-size:.88rem; font-weight:600; color:var(--text-secondary); text-decoration:none; }
.dash-nav a svg { width:17px; height:17px; }
.dash-nav a.active { background:var(--blue-bg); color:var(--blue-700); }
.dash-navbadge { margin-left:auto; background:var(--grad); color:#fff; font-size:.66rem; font-weight:800; padding:1px 7px; border-radius:999px; }
.dash-user { margin-top:auto; display:flex; align-items:center; gap:10px; padding:10px 8px 2px; border-top:1px solid var(--border); }
.dash-avatar { width:34px; height:34px; border-radius:50%; background:linear-gradient(135deg,#dfe7ff,#ece1ff); flex-shrink:0; }
.dash-user b { display:block; font-size:.84rem; color:var(--ink); }
.dash-user span { font-size:.72rem; color:var(--blue-700); }

.dash-main { padding:26px 28px; min-width:0; }
.dash-head { display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:22px; }
.dash-greet { font-family:var(--display); font-size:1.35rem; font-weight:800; color:var(--ink); letter-spacing:-.01em; }
.dash-greetsub { font-size:.82rem; color:var(--text-muted); margin-top:2px; }
.dash-live { display:inline-flex; align-items:center; gap:7px; font-size:.76rem; font-weight:700; color:var(--green); background:var(--green-bg); border:1px solid var(--green-border); padding:5px 12px; border-radius:999px; }
.dash-livedot { width:7px; height:7px; border-radius:50%; background:var(--green); animation:pulse 1.8s infinite; }
.dash-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-bottom:22px; }
.dash-stat { background:var(--bg-softer); border:1px solid var(--border); border-radius:14px; padding:16px; display:flex; flex-direction:column; gap:4px; }
.dash-stat-label { font-size:.72rem; color:var(--text-muted); font-weight:600; }
.dash-stat-val { font-family:var(--display); font-size:1.6rem; font-weight:800; color:var(--ink); letter-spacing:-.02em; line-height:1.1; }
.dash-trend { font-size:.72rem; font-weight:700; }
.dash-trend.up { color:var(--green); }
.dash-grid { display:grid; grid-template-columns:1.6fr 1fr; gap:16px; }
.dash-chart { background:var(--bg-softer); border:1px solid var(--border); border-radius:14px; padding:18px 18px 12px; }
.dash-chart-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; }
.dash-chart-title { font-size:.85rem; font-weight:700; color:var(--ink); }
.dash-chart-amt { font-family:var(--display); font-weight:800; font-size:.95rem; background:var(--grad); -webkit-background-clip:text; background-clip:text; color:transparent; }
.dash-chart-svg { width:100%; height:150px; display:block; }
.dash-chart-x { display:flex; justify-content:space-between; margin-top:6px; }
.dash-chart-x i { font-size:.68rem; color:var(--text-muted); font-style:normal; }
.dash-feed { background:var(--bg-softer); border:1px solid var(--border); border-radius:14px; padding:18px; }
.dash-feed-head { font-size:.85rem; font-weight:700; color:var(--ink); margin-bottom:14px; }
.dash-feed-row { display:flex; align-items:center; gap:11px; padding:9px 0; border-top:1px solid var(--border-soft); }
.dash-feed-row:first-of-type { border-top:0; }
.dash-av { width:32px; height:32px; border-radius:50%; flex-shrink:0; }
.dash-av.a1 { background:linear-gradient(135deg,#dfe7ff,#c9d6ff); } .dash-av.a2 { background:linear-gradient(135deg,#ffe1e8,#ffd0c4); } .dash-av.a3 { background:linear-gradient(135deg,#d8f3e6,#dcecff); }
.dash-feed-txt { flex:1; min-width:0; font-size:.82rem; color:var(--ink-2); line-height:1.35; }
.dash-feed-txt b { font-weight:700; color:var(--ink); }
.dash-feed-txt span { display:block; font-size:.7rem; color:var(--text-muted); margin-top:1px; }
.dash-pill { font-size:.68rem; font-weight:700; padding:4px 9px; border-radius:999px; white-space:nowrap; }
.dash-pill.reply { color:var(--blue-700); background:var(--blue-bg); }
.dash-pill.book { color:#7b5bff; background:#f1edff; }
.dash-pill.won { color:var(--green); background:var(--green-bg); }

/* ═══════════ FOUNDING ACCESS ═══════════ */
.offer-section {
  background:
    radial-gradient(60% 55% at 0% 0%, rgba(47,91,255,.07), transparent 55%),
    radial-gradient(60% 55% at 100% 100%, rgba(123,91,255,.07), transparent 55%),
    var(--bg-softer);
}
.offer-grid { display:grid; grid-template-columns:1.15fr .85fr; gap:28px; align-items:stretch; }
.perks { background:#fff; border:1px solid var(--border); border-radius:var(--radius); padding:36px 34px; }
.perks-head { font-size:.78rem; text-transform:uppercase; letter-spacing:1px; font-weight:700; color:var(--text-muted); margin-bottom:22px; }
.perks-list { list-style:none; display:flex; flex-direction:column; gap:18px; }
.perks-list li { display:flex; align-items:flex-start; gap:14px; font-size:1.02rem; color:var(--ink-2); line-height:1.5; }
.perks-list strong { color:var(--ink); font-weight:700; }
.perk-check { flex-shrink:0; width:26px; height:26px; border-radius:50%; background:var(--grad); color:#fff; font-size:.8rem; font-weight:800; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-blue); }
.perk-tag { display:inline-block; font-size:.72rem; font-weight:700; color:var(--blue-700); background:var(--blue-bg); border:1px solid var(--blue-border); padding:2px 8px; border-radius:999px; margin-left:4px; white-space:nowrap; }

.join-card { position:relative; background:var(--ink); color:#fff; border-radius:var(--radius); padding:40px 34px; overflow:hidden; box-shadow:var(--shadow-lg); }
.join-card::before { content:''; position:absolute; top:-35%; right:-25%; width:80%; height:80%; background:radial-gradient(circle, rgba(123,91,255,.55), transparent 65%); }
.join-card::after { content:''; position:absolute; bottom:-40%; left:-25%; width:75%; height:75%; background:radial-gradient(circle, rgba(47,91,255,.5), transparent 65%); }
.join-card > * { position:relative; z-index:1; }
.join-card-label { font-size:.78rem; text-transform:uppercase; letter-spacing:1.4px; color:rgba(255,255,255,.65); font-weight:700; margin-bottom:10px; }
.join-card-title { font-family:var(--display); font-size:2rem; font-weight:800; letter-spacing:-.02em; line-height:1.1; margin-bottom:10px; }
.join-card-sub { color:rgba(255,255,255,.78); font-size:.98rem; line-height:1.6; margin-bottom:24px; }
.join-form { max-width:none; flex-direction:column; }
.join-form input { width:100%; min-width:0; border-color:rgba(255,255,255,.2); background:rgba(255,255,255,.1); color:#fff; }
.join-form input::placeholder { color:rgba(255,255,255,.55); }
.join-form input:focus { border-color:rgba(255,255,255,.6); box-shadow:0 0 0 4px rgba(255,255,255,.12); }
.join-card-note { font-size:.82rem; color:rgba(255,255,255,.6); margin-top:18px; text-align:center; }

.promise { display:flex; align-items:center; gap:24px; max-width:880px; margin:40px auto 0; padding:32px 36px; background:var(--grad-soft); border:1px solid var(--blue-border); border-radius:var(--radius); }
.promise-badge { width:60px; height:60px; border-radius:16px; flex-shrink:0; display:flex; align-items:center; justify-content:center; background:var(--grad); color:#fff; box-shadow:var(--shadow-blue); }
.promise-badge svg { width:30px; height:30px; }
.promise-title { font-family:var(--display); font-size:1.3rem; font-weight:800; color:var(--ink); margin-bottom:8px; }
.promise-text { font-size:.98rem; color:var(--text-secondary); line-height:1.65; }

/* ═══════════ FAQ ═══════════ */
.faq-section { background:#fff; }
.faq-container { max-width:820px; }
.faq-list { display:flex; flex-direction:column; gap:14px; }
.faq-item { background:var(--bg-softer); border:1px solid var(--border); border-radius:var(--radius-sm); overflow:hidden; transition:border-color .25s, box-shadow .25s; }
.faq-item.open { border-color:var(--blue-border); box-shadow:var(--shadow); }
.faq-q {
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:18px;
  background:none; border:0; cursor:pointer; text-align:left;
  font-family:var(--font); font-weight:700; font-size:1.08rem; color:var(--ink);
  padding:24px 26px;
}
.faq-icon { position:relative; flex-shrink:0; width:22px; height:22px; }
.faq-icon::before, .faq-icon::after { content:''; position:absolute; background:var(--blue); border-radius:2px; transition:transform .3s; }
.faq-icon::before { top:10px; left:0; width:22px; height:2.5px; }
.faq-icon::after { top:0; left:10px; width:2.5px; height:22px; }
.faq-item.open .faq-icon::after { transform:scaleY(0); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-a p { padding:0 26px 24px; color:var(--text-secondary); font-size:1rem; line-height:1.7; margin:0; }

/* ═══════════ FINAL CTA ═══════════ */
.final-cta {
  position:relative; isolation:isolate; overflow:hidden;
  text-align:center; padding:120px 0;
  background:
    radial-gradient(105% 80% at 50% -10%, #6e8bff 0%, rgba(110,139,255,0) 55%),
    radial-gradient(70% 70% at 100% 100%, #6a4bff 0%, rgba(106,75,255,0) 60%),
    linear-gradient(165deg, #2f5bff, #1f49ec);
}
.cta-glow { position:absolute; inset:0; z-index:-1; }
.cta-inner { position:relative; z-index:1; }
.cta-inner .hero-badge { margin-bottom:20px; }
.final-cta h2 { font-family:var(--display); font-size:clamp(2.2rem,4.5vw,3.4rem); font-weight:800; letter-spacing:-.025em; line-height:1.08; color:#fff; text-transform:uppercase; margin-bottom:18px; }
.final-cta p { font-size:1.1rem; color:rgba(255,255,255,.85); max-width:560px; margin:0 auto 30px; line-height:1.65; }
.cta-form { margin:0 auto; justify-content:center; }
.cta-form .form-success { text-align:center; }
.urgency-note { margin-top:22px; font-size:.9rem; color:rgba(255,255,255,.72); }

/* ═══════════ FOOTER ═══════════ */
.footer { position:relative; overflow:hidden; padding:48px 0 36px; border-top:1px solid var(--border); background:#fff; }
.footer-bar { display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.footer-logo { display:inline-block; }
.footer-logo img { height:28px; width:auto; display:block; }
.footer-bar p { font-size:.85rem; color:var(--text-muted); }
.footer-giant { position:relative; margin-top:24px; pointer-events:none; }
.footer-giant img { width:100%; display:block; opacity:.09;
  -webkit-mask-image:linear-gradient(to bottom, #000 0%, #000 46%, transparent 94%);
  mask-image:linear-gradient(to bottom, #000 0%, #000 46%, transparent 94%); }
@media (max-width:600px) {
  .footer-bar { flex-direction:column; align-items:flex-start; gap:10px; }
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width:980px) {
  .nav-pill { display:none; }
  .hero { padding-top:130px; }
  .hero-inner { grid-template-columns:1fr; text-align:center; gap:0; min-height:0; }
  .hero-copy { padding-bottom:24px; }
  .hero-sub { margin-left:auto; margin-right:auto; }
  .waitlist-form { margin-left:auto; margin-right:auto; }
  .hero-form-note, .trusted { justify-content:center; }
  .hero-visual { max-width:520px; margin:0 auto; justify-self:center; }
  .hand-img { position:static; right:auto; bottom:auto; width:clamp(320px, 80vw, 480px); margin:0 auto -28px; }
  .stats-inner { flex-direction:column; align-items:flex-start; }
  .stats-row { gap:36px; flex-wrap:wrap; }
  .features-grid { grid-template-columns:repeat(2,1fr); }
  .offer-grid { grid-template-columns:1fr; }
  .promise { flex-direction:column; text-align:center; }
}
@media (max-width:760px) {
  .section { padding:80px 0; }
  .leak-cards { grid-template-columns:1fr; }
  .cmp2 { grid-template-columns:1fr; }
  .compare-result { flex-direction:column; text-align:center; }
  .features-grid { grid-template-columns:1fr; }
  /* Two continuous columns: the whole "your list" side is one soft band from
     the gradient header to the bottom, so nothing breaks at each divider. */
  .vs-head, .vs-row { grid-template-columns:1fr 1fr; }
  .vs-head .vs-corner { display:none; }
  .vs-colhead { padding:14px 14px; font-size:.68rem; letter-spacing:.4px; align-items:flex-start; }
  .vs-colhead.new { background:transparent; }
  .vs-colhead.own::before { font-size:.66rem; }
  .vs-attr { grid-column:1 / -1; background:linear-gradient(90deg, transparent 0 50%, rgba(47,91,255,.06) 50% 100%); border-top:1px solid var(--border-soft); padding:13px 16px 9px; font-size:.7rem; font-weight:800; text-transform:uppercase; letter-spacing:.6px; color:var(--text-muted); }
  .vs-cell { padding:6px 14px 16px; align-items:flex-start; gap:9px; font-size:.9rem; line-height:1.35; }
  .vs-cell.new { background:transparent; }
  .vs-cell.own { background:rgba(47,91,255,.06); box-shadow:none; }
  .vs-row.highlight .vs-cell.own { background:rgba(47,91,255,.09); }
  .vs-ico { width:20px; height:20px; font-size:.6rem; }
  .vs-num { font-size:1.9rem; }
  .vs-row.highlight .vs-attr { padding-top:13px; }
  .vs-row.highlight .vs-cell { padding-top:6px; padding-bottom:18px; }
  .stats-row { gap:28px; }
  .stat-value { font-size:2.6rem; }
  .hero-title { font-size:clamp(2.3rem,8vw,3rem); }
  .waitlist-form button { width:100%; }
}

/* ═══════════ TEXT REVEAL — letter-by-letter blur ═══════════ */
.split-text .r-word { display:inline-block; }
.split-text .r-ch {
  display:inline-block;
  opacity:0;
  filter:blur(12px);
  transform:translateY(0.18em);
  transition:opacity .5s ease, filter .55s ease, transform .55s cubic-bezier(.2,.7,.2,1);
  will-change:opacity, filter, transform;
}
.split-text.in .r-ch { opacity:1; filter:blur(0); transform:none; }
