/* ─── Self-hosted fonts (first-party, no Google CDN) ─── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter-latin-wght-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter-latin-wght-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('/fonts/material-icons.woff2') format('woff2');
}
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/* The component relied on a global body font from styles.scss; set it locally. */
body {
  margin: 0;
  background: #03050f;
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* { box-sizing: border-box; }
a { text-decoration: none; color: inherit; }

/* ── Shell ── */
.shell {
  height: auto;
  min-height: 100vh;
  position: relative;
  overflow: clip;
  background:
    radial-gradient(ellipse 90% 60% at 84% 6%,  rgba(99,102,241,.55) 0%, transparent 52%),
    radial-gradient(ellipse 65% 52% at 10% 90%, rgba(168,85,247,.48) 0%, transparent 52%),
    radial-gradient(ellipse 72% 62% at 50% 50%, rgba(59,130,246,.12) 0%, transparent 64%),
    radial-gradient(ellipse 46% 38% at 3%  18%, rgba(236,72,153,.18) 0%, transparent 52%),
    #03050f;
  color: #fff;
  font-family: inherit;
}

.shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: 0;
}

/* ── Orbs ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.orb-a { width: 600px; height: 600px; background: rgba(99,102,241,.32); top: -14%; right: -10%; animation: drift-a 18s ease-in-out infinite alternate; }
.orb-b { width: 480px; height: 480px; background: rgba(168,85,247,.26); bottom: -12%; left: -10%; animation: drift-b 22s ease-in-out infinite alternate; }
.orb-c { width: 360px; height: 360px; background: rgba(59,130,246,.16); top: 42%; left: 32%; animation: drift-c 26s ease-in-out infinite alternate; }

/* ── Top bar ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 52px;
  background: rgba(3,5,15,.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.tb-brand { display: flex; align-items: center; gap: 10px; }
.tb-logo  { width: 30px; height: 30px; filter: drop-shadow(0 0 8px rgba(99,102,241,.6)); }
.tb-name  { font-size: 16px; font-weight: 700; color: rgba(255,255,255,.9); letter-spacing: -.25px; }

.tb-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 32px;
}
.tb-nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  transition: color .15s;
}
.tb-nav a:hover { color: rgba(255,255,255,.95); }

.btn-signin {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 20px;
  height: 38px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.8);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: background .15s, color .15s, border-color .15s;
}
.btn-signin .material-icons { font-size: 16px; width: 16px; height: 16px; }
.btn-signin:hover { background: rgba(255,255,255,.13); color: #fff; border-color: rgba(255,255,255,.28); }

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 88px 52px 80px;
}

.hero-inner {
  max-width: 820px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #c4b5fd;
  background: rgba(99,102,241,.15);
  border: 1px solid rgba(99,102,241,.3);
  border-radius: 40px;
  padding: 14px 34px 14px 28px;
  margin-bottom: 40px;
}

.hero-badge-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #86efac;
  box-shadow: 0 0 0 0 rgba(134,239,172,.5);
  animation: pulse-dot 2.2s ease-out infinite;
}

@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(134,239,172,.55); }
  70%  { box-shadow: 0 0 0 16px rgba(134,239,172,0); }
  100% { box-shadow: 0 0 0 0 rgba(134,239,172,0); }
}

.hero-headline {
  font-size: clamp(44px, 7.4vw, 84px);
  font-weight: 800;
  letter-spacing: -2.6px;
  line-height: 1.04;
  margin: 0 0 28px;
  color: rgba(255,255,255,.96);
}

.hero-headline em {
  font-style: italic;
  font-weight: 700;
  letter-spacing: -2px;
  white-space: nowrap;
  background: linear-gradient(90deg,
    #c4b5fd 0%,
    #f0abfc 50%,
    #93c5fd 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,.55);
  margin: 0 0 40px;
  max-width: 580px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 72px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 32px;
  height: 52px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  box-shadow:
    0 0 0 1px rgba(168,85,247,.4),
    0 6px 28px rgba(99,102,241,.65),
    inset 0 1px 0 rgba(255,255,255,.18);
  transition: box-shadow .22s ease, transform .18s ease;
}
.btn-primary .material-icons { font-size: 19px; width: 19px; height: 19px; transition: transform .2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(168,85,247,.6), 0 12px 48px rgba(99,102,241,.8), 0 0 100px rgba(99,102,241,.24), inset 0 1px 0 rgba(255,255,255,.18); }
.btn-primary:hover .material-icons { transform: translateX(3px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  height: 52px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.78);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); color: #fff; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  height: 44px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}
.btn-secondary:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); color: #fff; }

/* ── Preview card (hero) ── */
.preview-card {
  width: 100%;
  max-width: 640px;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,.09),
    0 32px 80px rgba(0,0,0,.55);
  overflow: hidden;
  text-align: left;
}

.preview-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.03);
}

.preview-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red   { background: #ff5f57; }
.dot-amber { background: #ffbd2e; }
.dot-green { background: #28c840; }

.preview-title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  color: rgba(255,255,255,.4);
  margin-right: 32px;
}

.preview-body { padding: 12px; display: flex; flex-direction: column; gap: 10px; }

.preview-group {
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
  overflow: hidden;
}

.pg-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
}

.pf-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pf-icon .material-icons { font-size: 16px; width: 16px; height: 16px; }
.pf-pdf  { background: rgba(248,113,113,.18); color: #fca5a5; }
.pf-img  { background: rgba(244,114,182,.18); color: #f9a8d4; }
.pf-doc  { background: rgba(129,140,248,.18); color: #c4b5fd; }

.pg-name {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.86);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pg-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(99,102,241,.18);
  color: #a5b4fc;
  border: 1px solid rgba(99,102,241,.28);
  flex-shrink: 0;
}

.pg-versions {
  border-top: 1px solid rgba(255,255,255,.05);
  background: rgba(0,0,0,.18);
  padding: 4px 0;
}

.pg-ver {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  font-size: 12.5px;
}
.pg-ver.dim { opacity: .55; }

.ver-tag {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  color: #c4b5fd;
  background: rgba(99,102,241,.12);
  padding: 2px 8px;
  border-radius: 6px;
  text-align: center;
}

.ver-desc {
  color: rgba(255,255,255,.78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ver-meta {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  white-space: nowrap;
}

/* ── Shared section pattern ── */
.section-inner {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #a5b4fc;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.12;
  margin: 0 0 18px;
  color: rgba(255,255,255,.95);
  max-width: 720px;
}

.section-lede {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,.5);
  max-width: 640px;
  margin: 0 0 48px;
}

/* ── Problem ── */
.problem { padding: 96px 52px; position: relative; z-index: 1; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.problem-item {
  padding: 28px;
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
}
.problem-item .material-icons { color: rgba(244,114,182,.7); font-size: 24px; width: 24px; height: 24px; margin-bottom: 14px; }
.problem-item h4 { font-size: 16px; font-weight: 700; color: rgba(255,255,255,.92); margin: 0 0 8px; letter-spacing: -.2px; }
.problem-item p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.5); margin: 0; }
.problem-item code {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: rgba(252,165,165,.85);
  background: rgba(248,113,113,.08);
  padding: 1px 6px;
  border-radius: 4px;
  word-break: break-all;
}

/* ── How it works ── */
.how { padding: 96px 52px; position: relative; z-index: 1; }

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 28px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}
.step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(99,102,241,.05) 0%, transparent 60%);
  pointer-events: none;
}

.step-num {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  background: linear-gradient(135deg, #a5b4fc 0%, #f0abfc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-body h4 { font-size: 17px; font-weight: 700; color: rgba(255,255,255,.95); margin: 0 0 8px; letter-spacing: -.3px; }
.step-body p  { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.5); margin: 0; }

/* ── Features ── */
.features { position: relative; z-index: 1; padding: 96px 52px; }
.features-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feat-card {
  padding: 32px;
  border-radius: 20px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: inset 0 1.5px 0 rgba(255,255,255,.07), 0 8px 32px rgba(0,0,0,.35);
  transition: background .2s, border-color .2s, transform .25s cubic-bezier(.34,1.56,.64,1);
}
.feat-card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); transform: translateY(-4px); }
.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(99,102,241,.35), rgba(168,85,247,.35));
  border: 1px solid rgba(99,102,241,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(99,102,241,.25);
}
.feat-icon .material-icons { font-size: 22px; width: 22px; height: 22px; color: #a5b4fc; }
.feat-card h3 { font-size: 19px; font-weight: 700; color: rgba(255,255,255,.95); margin: 0 0 12px; letter-spacing: -.3px; }
.feat-card p  { font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,.5); margin: 0; }
.feat-card em { font-style: italic; font-weight: 600; color: rgba(196,181,253,.9); }

/* ── Trust strip ── */
.trust-strip {
  position: relative;
  z-index: 1;
  padding: 22px 52px;
  background: rgba(59,130,246,.04);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.72);
  white-space: nowrap;
}
.eu-flag { width: 24px; height: 16px; border-radius: 2px; flex-shrink: 0; }
.trust-icon { font-size: 16px; width: 16px; height: 16px; color: #a5b4fc; }
.trust-icon-green { color: #34d399; }
.trust-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* ── Comparison ── */
.compare { padding: 96px 52px; position: relative; z-index: 1; }

.compare-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.035);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}

.compare-table thead th {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  padding: 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.compare-table thead th:first-child { text-align: left; padding-left: 24px; color: transparent; }
.compare-table thead th.t-us { color: #c4b5fd; background: rgba(99,102,241,.08); }

.compare-table tbody td {
  padding: 16px 14px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.04);
  color: rgba(255,255,255,.5);
}

.compare-table tbody td:first-child {
  text-align: left;
  padding-left: 24px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}

.compare-table tbody tr:last-child td { border-bottom: none; }

.compare-table .t-us { background: rgba(99,102,241,.06); color: #c4b5fd; }
.compare-table .t-us .material-icons { color: #86efac; font-size: 18px; width: 18px; height: 18px; vertical-align: middle; }
.compare-table .t-no { color: rgba(255,255,255,.22); }
.compare-table .t-partial { color: rgba(253,224,71,.7); font-size: 12px; font-style: italic; }

/* ── Pricing ── */
.pricing { padding: 96px 52px; position: relative; z-index: 1; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.price-card {
  position: relative;
  padding: 36px 32px;
  border-radius: 20px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  transition: background .2s, border-color .2s, transform .2s;
}
.price-card:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); transform: translateY(-3px); }

.price-card-featured {
  background: rgba(99,102,241,.08);
  border-color: rgba(99,102,241,.4);
  box-shadow: 0 0 0 1px rgba(168,85,247,.2), 0 12px 48px rgba(99,102,241,.18);
}
.price-card-featured:hover { background: rgba(99,102,241,.12); border-color: rgba(99,102,241,.55); }

.price-flag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(99,102,241,.4);
}

.price-tier {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.7);
  margin-bottom: 14px;
}

.price-main {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
}

.price-main-custom {
  line-height: 1.25;
}
.price-main-custom em {
  font-style: italic;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: -1px;
  background: linear-gradient(90deg, #c4b5fd 0%, #f0abfc 50%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-period {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.4);
  margin-left: 4px;
}

.price-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.5);
  margin: 0 0 24px;
}

.price-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.price-feats li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.78);
}
.price-feats .material-icons {
  font-size: 16px;
  width: 16px;
  height: 16px;
  color: #86efac;
  flex-shrink: 0;
}

/* ── Every-plan-includes block ── */
.pricing-all {
  margin-top: 48px;
  padding: 32px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
}
.pricing-all-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}
.pricing-all-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px 24px;
}
.pricing-all-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.78);
}
.pricing-all-list .material-icons {
  font-size: 16px;
  width: 16px;
  height: 16px;
  color: #86efac;
  flex-shrink: 0;
}

/* ── Bottom CTA ── */
.bottom-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding: 96px 52px 112px;
  text-align: center;
  animation: fade-up .9s .25s cubic-bezier(.16,1,.3,1) both;
}
.bottom-headline {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.1;
  color: rgba(255,255,255,.92);
  margin: 0;
}
.bottom-headline em {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(90deg, #c4b5fd 0%, #f0abfc 50%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 52px 40px;
  font-size: 12px;
  color: rgba(255,255,255,.22);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}
.footer-links a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: #fff; }
.footer-sep { color: rgba(255,255,255,.2); }

/* ── Animations ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer-text {
  to { background-position: -200% center; }
}
@keyframes drift-a {
  to { transform: translate(-40px, 30px) scale(1.05); }
}
@keyframes drift-b {
  to { transform: translate(50px, -40px) scale(.95); }
}
@keyframes drift-c {
  to { transform: translate(-30px, -30px) scale(1.08); }
}

/* ── Responsive ── */
@media (max-width: 720px) {
  .topbar { padding: 12px 20px; gap: 12px; }
  .tb-nav { display: none; }
  .hero { padding: 56px 20px 56px; }
  .problem, .how, .features, .compare, .pricing { padding: 64px 20px; }
  .bottom-cta { padding: 64px 20px 80px; }
  .footer { padding: 0 20px 32px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn-primary, .hero-cta .btn-ghost { width: 100%; justify-content: center; }
  .hero-headline em { white-space: normal; }
}

/* ── Waitlist form ── */
.waitlist { padding: 72px 24px; }
.wl-form { max-width: 480px; margin: 28px auto 0; text-align: left; }
.wl-row { margin-bottom: 16px; }
.wl-label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; color: rgba(255,255,255,.82); }
.wl-opt { font-weight: 400; color: rgba(255,255,255,.45); }
.wl-input {
  width: 100%;
  padding: 11px 13px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  color: #fff;
  font: inherit;
}
.wl-input::placeholder { color: rgba(255,255,255,.38); }
.wl-input:focus { outline: none; border-color: #818cf8; background: rgba(255,255,255,.07); }
.wl-textarea { resize: vertical; min-height: 76px; }
.wl-submit { margin-top: 8px; width: 100%; justify-content: center; }
