/* Marketing page styles — extends styles.css design tokens */

.site {
  display: block;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);

  --navy: oklch(0.28 0.04 220);
  --navy-soft: oklch(0.94 0.018 220);
  --hairline: var(--line);
}

/* ── Container ──────────────────────────────────────────────────── */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.wrap-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Top bar ────────────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 0;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 15px;
}
.nav-brand .sb-logo {
  width: 26px;
  height: 26px;
  border-radius: 7px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13.5px;
  color: var(--ink-2);
}
.nav-links a { transition: color 0.12s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Hero ───────────────────────────────────────────────────────── */
.hero { padding-top: 80px; padding-bottom: 56px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 26px;
  padding: 0 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-soft);
  letter-spacing: 0.005em;
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 62px;
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0 0 24px;
  max-width: 920px;
  color: var(--ink);
  text-wrap: balance;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 18.5px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 0 36px;
  text-wrap: pretty;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.hero-cta .btn {
  height: 42px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 14.5px;
}
.hero-reassure {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  font-size: 13px;
  color: var(--ink-3);
}
.hero-reassure span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-reassure svg {
  width: 13px;
  height: 13px;
  color: var(--accent);
}

/* ── Hero visual: dashboard mockup frame ────────────────────────── */
.hero-visual {
  margin-top: 56px;
  position: relative;
}
.mock-frame {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow:
    0 1px 2px rgba(21, 20, 15, 0.04),
    0 28px 60px -28px rgba(21, 20, 15, 0.18),
    0 0 0 0.5px rgba(21, 20, 15, 0.06);
  overflow: hidden;
}
.mock-chrome {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line-2);
}
.mock-url {
  margin-left: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-4);
  letter-spacing: -0.01em;
}
.mock-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 520px;
}
.mock-sb {
  border-right: 1px solid var(--line);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg);
}
.mock-sb-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 6px 12px;
}
.mock-sb-brand .sb-logo {
  width: 24px;
  height: 24px;
  font-size: 11px;
  border-radius: 6px;
}
.mock-sb-brand strong {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.mock-sb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 12.5px;
  color: var(--ink-3);
}
.mock-sb-item.active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-1);
}
.mock-sb-item .ico {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: currentColor;
  opacity: 0.4;
  flex-shrink: 0;
}
.mock-sb-item.active .ico { opacity: 0.85; }
.mock-sb-item .ct {
  margin-left: auto;
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  opacity: 0.7;
}

.mock-main {
  padding: 22px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}
.mock-h {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.mock-greet {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.02em;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.mock-h p {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--ink-3);
}
.mock-h-actions {
  display: flex;
  gap: 6px;
}
.mock-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 26px;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--line-2);
  color: var(--ink);
}
.mock-btn.dark {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.mock-stat {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
}
.mock-stat-lbl {
  font-size: 11px;
  color: var(--ink-3);
  font-weight: 500;
}
.mock-stat-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin-top: 4px;
  line-height: 1.05;
}
.mock-stat-val .cur { color: var(--ink-3); font-weight: 400; margin-right: 2px; }
.mock-stat-sub {
  font-size: 10.5px;
  color: var(--ink-3);
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
}
.mock-stat-sub.up { color: var(--ok); }
.mock-stat-sub.warn { color: var(--warn); }

.mock-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
}
.mock-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px;
}
.mock-card-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.mock-card-h strong {
  font-size: 12.5px;
  font-weight: 600;
}
.mock-card-h .muted {
  font-size: 11px;
  color: var(--ink-3);
}

.mock-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.mock-row:last-child { border-bottom: 0; }
.mock-row .av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
}
.mock-row .info { flex: 1; min-width: 0; }
.mock-row .nm { font-size: 12.5px; font-weight: 500; }
.mock-row .sub { font-size: 11px; color: var(--ink-3); }
.mock-row .amt {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.mock-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 18px;
  padding: 0 7px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 500;
}
.mock-pill.ok { color: var(--ok); background: var(--ok-soft); }
.mock-pill.warn { color: var(--warn); background: var(--warn-soft); }
.mock-pill.danger { color: var(--danger); background: var(--danger-soft); }
.mock-pill.neutral { color: var(--ink-2); background: var(--surface-2); border: 1px solid var(--line); }

.mock-bar {
  display: flex;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.mock-bar i { display: block; height: 100%; }
.mock-bar i.ok { background: var(--ok); }
.mock-bar i.warn { background: var(--warn); }
.mock-bar i.danger { background: var(--danger); }
.mock-legend {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  font-size: 11px;
  color: var(--ink-3);
}
.mock-legend span { display: inline-flex; align-items: center; gap: 5px; }
.mock-legend i {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  display: inline-block;
}
.mock-legend i.ok { background: var(--ok); }
.mock-legend i.warn { background: var(--warn); }
.mock-legend i.danger { background: var(--danger); }

.mock-floating {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-pop);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.mock-floating .icon-tile {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}
.mock-floating .text { font-size: 12.5px; line-height: 1.4; }
.mock-floating .text strong { font-weight: 600; color: var(--ink); display: block; }
.mock-floating .text span { color: var(--ink-3); }
.mock-floating.tr { top: -22px; right: -12px; }
.mock-floating.bl { bottom: -22px; left: -12px; }

/* ── Section block ──────────────────────────────────────────────── */
.section {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}
.section-h {
  margin-bottom: 56px;
  max-width: 720px;
}
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -0.028em;
  font-weight: 500;
  margin: 0 0 16px;
  text-wrap: balance;
}
.section-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
}

/* ── Pain section ───────────────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.pain {
  padding: 32px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pain-q {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.018em;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.pain-q .strike {
  position: relative;
  color: var(--ink-3);
}
.pain-q .strike::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px;
  top: 52%;
  height: 1.5px;
  background: var(--danger);
  opacity: 0.55;
  transform: rotate(-1.5deg);
}
.pain-a {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}

/* ── Feature blocks ─────────────────────────────────────────────── */
.features {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature.flip .feature-text { order: 2; }
.feature-eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.022em;
  font-weight: 500;
  margin: 0 0 16px;
  text-wrap: balance;
}
.feature-body {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 22px;
  text-wrap: pretty;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.feature-list svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

/* feature visuals — small artboards */
.fv {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow-2);
  min-height: 280px;
}
.fv-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.fv-h strong {
  font-size: 13px;
  font-weight: 600;
}
.fv-h .muted {
  font-size: 11.5px;
  color: var(--ink-3);
}

/* Recurring payments visual */
.fv-recurring {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fv-recurring .pay-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.fv-recurring .pay-card .av {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px;
  font-weight: 600;
}
.fv-recurring .pay-card .info { flex: 1; }
.fv-recurring .pay-card .nm { font-size: 13px; font-weight: 500; }
.fv-recurring .pay-card .sub { font-size: 11.5px; color: var(--ink-3); }
.fv-recurring .pay-card .amt {
  font-family: var(--font-mono);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}
.fv-recurring .pay-card.received {
  border-color: color-mix(in oklch, var(--ok), transparent 60%);
  background: var(--ok-soft);
}

/* Member management visual */
.fv-table {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.fv-table-h {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 80px;
  gap: 14px;
  padding: 8px 12px;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ink-4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--surface-2);
  border-radius: 6px;
  margin-bottom: 6px;
}
.fv-trow {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 80px;
  gap: 14px;
  padding: 10px 12px;
  align-items: center;
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}
.fv-trow:last-child { border-bottom: 0; }
.fv-trow .who {
  display: flex; align-items: center; gap: 10px;
  min-width: 0;
}
.fv-trow .who .av {
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 600;
}
.fv-trow .who .nm { font-size: 12.5px; font-weight: 500; }
.fv-trow .who .em { font-size: 10.5px; color: var(--ink-3); }
.fv-trow .pln { font-size: 12px; color: var(--ink-2); }
.fv-trow .amt {
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Reminders visual: message thread */
.fv-thread {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fv-msg {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 88%;
  color: var(--ink-2);
}
.fv-msg .meta {
  font-size: 10.5px;
  color: var(--ink-3);
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.fv-msg.out {
  margin-left: auto;
  background: var(--accent-soft);
  border-color: transparent;
  color: var(--ink);
}
.fv-msg .pay-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 7px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink);
}
.fv-msg .pay-link::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--ink);
}

/* Communication visual */
.fv-comm {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fv-comm-templates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.fv-tpl {
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
}
.fv-tpl .nm { font-weight: 500; }
.fv-tpl .mt { font-size: 10.5px; color: var(--ink-3); margin-top: 2px; }
.fv-tpl.active {
  background: var(--surface);
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}
.fv-comm-preview {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.fv-comm-preview strong { color: var(--ink); font-weight: 500; }

/* ── Trust strip ────────────────────────────────────────────────── */
.trust {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.trust-lbl {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
  max-width: 280px;
}
.trust-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-logo .swatch {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--ink-2);
  display: grid;
  place-items: center;
  color: var(--surface);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

/* ── Voor wie ───────────────────────────────────────────────────── */
.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.audience-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.audience-tile:hover {
  border-color: var(--line-2);
  box-shadow: var(--shadow-2);
  transform: translateY(-1px);
}
.audience-tile h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
}
.audience-tile p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ── Pricing ────────────────────────────────────────────────────── */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.price-card.featured {
  border-color: var(--ink);
  box-shadow: var(--shadow-2);
  position: relative;
}
.price-tag {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
}
.price-card h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.price-card .price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-card .price small {
  font-size: 14px;
  color: var(--ink-3);
  font-weight: 400;
  margin-left: 2px;
}
.price-card .blurb {
  font-size: 13px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.5;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.45;
}
.price-card li svg {
  width: 13px;
  height: 13px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.012em;
  margin: 0 0 8px;
}
.faq-a {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-3);
  margin: 0;
  max-width: 720px;
}

/* ── Final CTA ──────────────────────────────────────────────────── */
.finale {
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%,
      color-mix(in oklch, var(--accent-soft), transparent 40%),
      transparent 60%),
    var(--bg);
}
.finale h2 {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 0 auto 20px;
  text-wrap: balance;
  max-width: 820px;
}
.finale p {
  font-size: 17px;
  color: var(--ink-2);
  margin: 0 auto 32px;
  max-width: 560px;
  line-height: 1.55;
}
.finale .hero-cta {
  justify-content: center;
  margin-bottom: 18px;
}

/* ── Waitlist form ──────────────────────────────────────────────── */
.waitlist-form {
  max-width: 520px;
  margin: 0 auto 22px;
  text-align: left;
}
.waitlist-input {
  display: flex;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 6px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.waitlist-input:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--accent-soft), transparent 40%);
}
.waitlist-input input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.waitlist-input input::placeholder { color: var(--ink-4); }
.waitlist-input .btn {
  height: 42px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 14.5px;
  flex-shrink: 0;
}
.cf-turnstile {
  display: flex;
  justify-content: center;
  margin: 14px 0 0;
  min-height: 0; /* widget self-sizes; 0 keeps layout calm before mount */
}
.cf-turnstile:empty { min-height: 0; }
.waitlist-error {
  margin: 14px 0 0;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--danger-soft);
  color: var(--danger);
  font-size: 13px;
  text-align: center;
  line-height: 1.4;
}
.waitlist-note {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: var(--ink-3);
  text-align: center;
  line-height: 1.5;
}
.waitlist-note a {
  color: var(--ink-2);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--line-2);
}
.waitlist-note a:hover { color: var(--ink); text-decoration-color: var(--ink-3); }
.waitlist-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
}
.waitlist-success svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Footer ─────────────────────────────────────────────────────── */
.foot {
  border-top: 1px solid var(--line);
  padding: 40px 0 48px;
  background: var(--bg);
}
.foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 12.5px;
  color: var(--ink-3);
  flex-wrap: wrap;
}
.foot-links {
  display: flex;
  gap: 22px;
}
.foot-links a:hover { color: var(--ink); }
.foot-credit {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--line-2);
  transition: color 0.12s, text-decoration-color 0.12s;
}
.foot-credit:hover {
  color: var(--ink);
  text-decoration-color: var(--ink-3);
}

/* ── Responsive: tablet ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .wrap, .wrap-narrow { padding: 0 24px; }
  .section { padding: 72px 0; }
  .section-h { margin-bottom: 40px; }
  .hero { padding-top: 56px; padding-bottom: 40px; }
  .hero-visual { margin-top: 40px; }
  .hero-title { font-size: 44px; }
  .section-title { font-size: 32px; }
  .finale { padding: 88px 0; }
  .finale h2 { font-size: 38px; }
  .feature { grid-template-columns: 1fr; gap: 32px; }
  .feature.flip .feature-text { order: 0; }
  .features { gap: 64px; }
  .mock-body { grid-template-columns: 1fr; min-height: 0; }
  .mock-sb { display: none; }
  .mock-stats { grid-template-columns: repeat(2, 1fr); }
  .mock-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain { padding: 28px 28px; }
  .audience { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .trust-lbl { grid-column: 1 / -1; max-width: none; }
  .nav-links { display: none; }
  .mock-floating { display: none; }
}

/* ── Responsive: phone ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .wrap, .wrap-narrow { padding: 0 28px; }
  .nav { padding: 18px 0 0; }
  .nav-brand span:last-child { display: none; }
  .nav-brand .sb-logo { width: 30px; height: 30px; font-size: 14px; }

  .section { padding: 56px 0; }
  .section-h { margin-bottom: 32px; }
  .section-title { font-size: 26px; }
  .section-sub { font-size: 15px; }

  .hero { padding-top: 40px; padding-bottom: 32px; }
  .hero-eyebrow { font-size: 11px; margin-bottom: 20px; }
  .hero-title { font-size: 34px; letter-spacing: -0.03em; }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-reassure { gap: 12px 18px; font-size: 12.5px; }
  .hero-visual { margin-top: 32px; }

  .mock-main { padding: 16px 16px 18px; gap: 14px; }
  .mock-h { flex-direction: column; align-items: flex-start; gap: 10px; }
  .mock-greet { font-size: 17px; }
  .mock-stats { gap: 8px; }
  .mock-stat { padding: 10px 12px; }
  .mock-stat-val { font-size: 18px; }
  .mock-card { padding: 12px; }
  .mock-row .sub { display: none; }

  .pain { padding: 24px 22px; }
  .pain-q { font-size: 19px; }

  .feature-title { font-size: 24px; }
  .feature-body { font-size: 14.5px; }
  .fv { padding: 16px; }
  .fv-table-h,
  .fv-trow { grid-template-columns: 1.6fr 1fr 70px; gap: 10px; }
  .fv-table-h span:nth-child(3),
  .fv-trow > div:nth-child(3) { display: none; }

  .trust { padding: 36px 0; }
  .trust-grid { grid-template-columns: 1fr; gap: 14px; }
  .trust-logo { justify-content: flex-start; }

  .audience-tile { padding: 22px 22px 20px; }


  .faq-q { font-size: 15.5px; }
  .faq-a { font-size: 13.5px; }

  .finale { padding: 64px 0; }
  .finale h2 { font-size: 30px; }
  .finale p { font-size: 15.5px; }

  .waitlist-input { flex-direction: column; padding: 8px; border-radius: 14px; }
  .waitlist-input input { height: 44px; padding: 0 8px; font-size: 16px; }
  .waitlist-input .btn { width: 100%; height: 44px; }

  .foot-row { flex-direction: column; align-items: flex-start; gap: 14px; }
}
