/* =========================================================================
   Delivra — Waitlist Landing Page
   Design tokens: paper background, deep-teal + coral + amber accents,
   Fraunces (display) / Inter (body) / JetBrains Mono (utility, ticket data)
   ========================================================================= */

:root {
  /* Color */
  --paper: #F6F4EF;
  --paper-raised: #FFFFFF;
  --ink: #12211D;
  --ink-soft: #3C4642;
  --ink-faint: #6B7570;
  --line: #DDD7C8;
  --line-strong: #C7C0AD;

  --teal: #0E6B5C;
  --teal-dark: #0A5247;
  --teal-tint: #E4EFEC;

  --coral: #E14F3D;
  --coral-dark: #B93B2C;
  --coral-tint: #FBE8E4;

  --amber: #E7A93D;
  --amber-dark: #B9822A;
  --amber-tint: #FBF0DC;

  --wa-bubble-out: #DFF3EC;
  --wa-bubble-in: #FFFFFF;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;

  /* Rhythm */
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 26px;
  --shadow-card: 0 1px 2px rgba(18,33,29,0.04), 0 12px 28px -14px rgba(18,33,29,0.18);
  --shadow-pop: 0 20px 50px -18px rgba(18,33,29,0.30);

  --maxw: 1180px;
  --edge: clamp(16px, 4.5vw, 56px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 2.5px solid var(--teal-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--edge);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--coral);
  border-radius: 50%;
  display: inline-block;
}

.section {
  padding: clamp(56px, 9vw, 108px) 0;
}
.section--divider {
  border-top: 1px dashed var(--line-strong);
}
.section-head {
  max-width: 640px;
  margin-bottom: clamp(32px, 5vw, 52px);
}
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.12;
  margin-top: 12px;
}
.section-head p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}
.section-head.center { text-align: center; margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 15.5px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--coral);
  color: #FFF9F6;
  box-shadow: 0 10px 24px -10px rgba(225,79,61,0.55);
}
.btn-primary:hover { background: var(--coral-dark); box-shadow: 0 14px 28px -10px rgba(185,59,44,0.55); }
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(18,33,29,0.03); }
.btn-dark {
  background: var(--ink);
  color: var(--paper);
}
.btn-dark:hover { background: var(--teal-dark); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: progress; }

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246,244,239,0.86);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  overflow: hidden;
  flex: none;
}
.brand-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.brand-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border-left: 1px solid var(--line-strong);
  padding-left: 10px;
  margin-left: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 8px 10px;
}

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(48px, 7vw, 84px);
  padding-bottom: clamp(40px, 6vw, 72px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero h1 {
  font-size: clamp(36px, 5.1vw, 60px);
  line-height: 1.06;
  margin-top: 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
  position: relative;
  white-space: nowrap;
}
.hero-sub {
  margin-top: 20px;
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-actions {
  margin-top: 32px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 26px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--ink-faint);
  font-family: var(--font-mono);
}
.trust-item svg { width: 15px; height: 15px; color: var(--teal); flex: none; }

/* ---------- Phone / chat mockup (signature element) ---------- */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone {
  width: min(320px, 84vw);
  background: var(--ink);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-pop);
  position: relative;
}
.phone::before {
  content: "";
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 84px; height: 20px;
  background: var(--ink);
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.phone-screen {
  background: #ECEAE3;
  border-radius: 30px;
  overflow: hidden;
  height: 560px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.phone-bar {
  background: var(--teal-dark);
  color: #F2FBF8;
  padding: 34px 16px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  flex: none;
}
.phone-bar .avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #402A05;
  font-size: 13px;
  flex: none;
}
.phone-bar .who b { display: block; font-size: 14px; }
.phone-bar .who span { display: block; font-size: 11px; opacity: 0.75; }
.phone-msgs {
  flex: 1;
  padding: 16px 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.bubble {
  max-width: 82%;
  padding: 9px 12px 8px;
  border-radius: 14px;
  font-size: 13.2px;
  line-height: 1.42;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  opacity: 0;
  transform: translateY(8px);
  animation: bubbleIn 0.5s ease forwards;
}
.bubble.out {
  align-self: flex-start;
  background: var(--wa-bubble-in);
  border-bottom-left-radius: 4px;
}
.bubble.in {
  align-self: flex-end;
  background: var(--wa-bubble-out);
  border-bottom-right-radius: 4px;
}
.bubble .meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 10px;
  color: var(--ink-faint);
}
.bubble .meta svg { width: 13px; height: 13px; color: #4FA8E8; }
.ticket-stub {
  margin: 4px auto 0;
  width: 88%;
  background: var(--paper-raised);
  border: 1.5px dashed var(--line-strong);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal-dark);
  opacity: 0;
  transform: translateY(8px);
  animation: bubbleIn 0.5s ease forwards;
}
.ticket-stub b { color: var(--ink); font-family: var(--font-body); font-size: 12px; }
@keyframes bubbleIn {
  to { opacity: 1; transform: translateY(0); }
}
.typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 4px;
  padding: 11px 14px;
  background: var(--wa-bubble-in);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  opacity: 0;
}
.typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink-faint);
  animation: typingDot 1s infinite ease-in-out;
}
.typing span:nth-child(2) { animation-delay: .15s; }
.typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typingDot { 0%, 60%, 100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-4px); opacity: 1; } }

.phone-float {
  position: absolute;
  background: var(--paper-raised);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-float.float-a { top: 6%; left: -8%; }
.phone-float.float-b { bottom: 8%; right: -10%; }
.phone-float b { font-family: var(--font-display); font-size: 20px; color: var(--teal-dark); display:block; line-height:1; }
.phone-float .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--amber); flex: none; }

/* ---------- Problem / stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.stat {
  background: var(--paper-raised);
  padding: 26px 24px;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 42px);
  color: var(--coral);
  line-height: 1;
}
.stat .label {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.problem-copy {
  max-width: 720px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.problem-copy strong { color: var(--ink); }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 24px 22px 26px;
  position: relative;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
}
.step h3 {
  font-size: 19px;
  margin-top: 14px;
  line-height: 1.25;
}
.step p {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}
.step-arrow {
  display: none;
}
@media (min-width: 900px) {
  .steps { position: relative; }
  .step:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 24px; right: -22px;
    color: var(--line-strong);
    font-size: 18px;
  }
}

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.feature-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--teal-tint);
  color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 21px; height: 21px; }
.feature-card h3 {
  font-size: 17.5px;
  margin-top: 16px;
}
.feature-card p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--ink-soft);
}

/* ---------- Why WhatsApp callout ---------- */
.callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--teal-dark);
  color: #EAF6F2;
  border-radius: var(--radius-l);
  padding: clamp(30px, 5vw, 56px);
}
.callout h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  color: #fff;
  line-height: 1.15;
}
.callout p {
  margin-top: 16px;
  color: #C9E6DD;
  font-size: 1.02rem;
}
.callout-figures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.callout-figure {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-s);
  padding: 18px;
}
.callout-figure .num {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--amber);
}
.callout-figure .label {
  margin-top: 6px;
  font-size: 13px;
  color: #C9E6DD;
}

/* ---------- Pricing ---------- */
.pricing-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.price-card {
  border-radius: var(--radius-l);
  padding: clamp(26px, 4vw, 40px);
  position: relative;
}
.price-card.featured {
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-pop);
}
.price-badge {
  position: absolute;
  top: -13px; left: 28px;
  background: var(--coral);
  color: #FFF9F6;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.price-card.featured .plan-name { color: var(--amber); }
.plan-name {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 14px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1;
}
.price-period { color: var(--ink-faint); font-size: 15px; }
.price-card.featured .price-period { color: #A9B6B0; }
.price-note {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--ink-faint);
}
.price-card.featured .price-note { color: #A9B6B0; }
.price-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.price-list li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  align-items: flex-start;
}
.price-list svg { width: 17px; height: 17px; color: var(--amber); flex: none; margin-top: 2px; }
.price-card:not(.featured) .price-list svg { color: var(--teal); }
.price-card .btn { margin-top: 26px; }

.plan-table {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.plan-table .plan-table-title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.plan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-top: 1px dashed var(--line);
  font-size: 14.5px;
}
.plan-row:first-of-type { border-top: none; }
.plan-row .name { font-weight: 600; }
.plan-row .desc { color: var(--ink-faint); font-size: 12.5px; margin-top: 2px; }
.plan-row .price { font-family: var(--font-mono); color: var(--ink-soft); white-space: nowrap; }
.plan-table-foot {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--ink-faint);
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}

/* ---------- Waitlist form ---------- */
.waitlist-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(22px, 3vw, 28px);
  box-shadow: var(--shadow-card);
  max-width: 460px;
}
.waitlist-card .ticket-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding-bottom: 14px;
  border-bottom: 1.5px dashed var(--line-strong);
  margin-bottom: 18px;
}
.field {
  margin-bottom: 14px;
}
.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field input,
.field select {
  width: 100%;
  padding: 12px 13px;
  border-radius: var(--radius-s);
  border: 1.5px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-tint);
  outline: none;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.5;
}
.form-status {
  margin-top: 14px;
  font-size: 13.5px;
  border-radius: var(--radius-s);
  padding: 11px 13px;
  display: none;
}
.form-status.show { display: block; }
.form-status.ok { background: var(--teal-tint); color: var(--teal-dark); }
.form-status.err { background: var(--coral-tint); color: var(--coral-dark); }

.cta-band {
  background: var(--ink);
  border-radius: var(--radius-l);
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-band h2 {
  color: var(--paper);
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.15;
}
.cta-band p {
  margin-top: 12px;
  color: #B7C2BC;
  max-width: 46ch;
}
.cta-band .waitlist-card { margin: 0; }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 780px;
  border-top: 1px dashed var(--line-strong);
}
.faq-item {
  border-bottom: 1px dashed var(--line-strong);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 17.5px;
  color: var(--ink);
}
.faq-q .plus {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
}
.faq-q .plus::before { width: 10px; height: 1.6px; }
.faq-q .plus::after { width: 1.6px; height: 10px; transition: opacity .2s ease; }
.faq-item[open] .plus { background: var(--teal); border-color: var(--teal); transform: rotate(45deg); }
.faq-item[open] .plus::before, .faq-item[open] .plus::after { background: #fff; }
.faq-a {
  padding: 0 4px 22px;
  color: var(--ink-soft);
  font-size: 14.5px;
  max-width: 64ch;
  line-height: 1.6;
}
.faq-item summary { list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}
.footer-brand p {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--ink-faint);
  max-width: 32ch;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}
.footer-col ul { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { text-decoration: none; font-size: 14px; color: var(--ink-soft); }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px dashed var(--line-strong);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: var(--ink-faint);
  font-family: var(--font-mono);
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: var(--radius-s);
  z-index: 100;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .phone-wrap { order: -1; margin-bottom: 8px; }
  .phone { width: min(280px, 70vw); }
  .phone-screen { height: 460px; }
  .stat-strip { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .callout { grid-template-columns: 1fr; }
  .pricing-wrap { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .phone-float { display: none; }
}

@media (max-width: 680px) {
  .hero h1 em { white-space: normal; }
  .brand-tag { display: none; }
  .steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }

  /* Mobile Navigation Drawer */
  .site-header { position: sticky; top: 0; z-index: 50; }
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px var(--edge) 24px;
    border-bottom: 1px solid var(--line-strong);
    box-shadow: 0 16px 32px -8px rgba(18, 33, 29, 0.15);
    gap: 16px;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }
  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, border-color 0.15s ease;
  }
  .nav-toggle.is-open {
    background: rgba(18, 33, 29, 0.06);
    border-color: var(--ink);
  }

  .hero-actions .btn { width: 100%; }
  .hero-trust { justify-content: flex-start; }
  .cta-band { padding: clamp(24px, 5vw, 40px); }
  .cta-band .waitlist-card { max-width: 100%; width: 100%; }
}

@media (max-width: 540px) {
  .callout-figures {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .nav { padding-block: 12px; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn { padding: 9px 15px; font-size: 13.5px; }
  .brand-word { font-size: 18px; }
  .phone { width: min(280px, 86vw); }
}

@media (max-width: 420px) {
  .plan-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .plan-row .price {
    font-weight: 600;
  }
  .price-amount {
    font-size: 44px;
  }
}

