/* ============================================================
   Adla brand system (B2a) — ported from the first-home funnel.
   Warm cream paper, mango/amber/rust, Capriola + Roboto + Caveat,
   chunky ink-outlined components, hand-drawn kiwi character.
   Presentation only — copy, fields, flow, and logic unchanged.
   ============================================================ */

:root {
  --cream: #fffdf6;      /* page canvas */
  --cream2: #fdf8ea;     /* soft cream band */
  --tan: #efe6cf;
  --tan2: #e4dabe;       /* warm tan */
  --sand: #f6ecd2;
  --ink: #191919;        /* text + outlines */
  --text: #3a3328;
  --soft: #6a6353;
  --mango: #fbc45c;      /* PRIMARY accent / CTA */
  --amber: #e09a4a;
  --rust: #c47b35;
  --amberlite: #fcd58c;
  --green: #75993f;      /* sparingly: ticks / yes-states */
  --green-d: #5d7a32;
  --green-l: #e3ead8;
  --green-ll: #f1f4eb;
  --white: #fff;
  --line: #cdbf9c;                        /* warm hairline outline */
  --line-ink: rgba(25,25,25,.16);         /* faint ink edge */
  --lift: 0 1px 2px rgba(43,36,26,.06), 0 8px 22px rgba(43,36,26,.10);
  --lift-key: 0 2px 0 rgba(25,25,25,.10), 0 10px 26px rgba(43,36,26,.12);
  --press: 0 1px 1px rgba(25,25,25,.10);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--text);
  font-family: 'Roboto', system-ui, sans-serif;
  line-height: 1.6;
  background: var(--cream);
  /* warm layered atmosphere — not a flat one-note cream */
  background-image:
    radial-gradient(120% 90% at 100% -8%, rgba(251,196,92,.30) 0%, rgba(251,196,92,0) 46%),
    radial-gradient(110% 80% at -10% 4%, rgba(224,154,74,.16) 0%, rgba(224,154,74,0) 42%),
    radial-gradient(130% 70% at 50% 108%, rgba(117,153,63,.11) 0%, rgba(117,153,63,0) 50%);
  background-attachment: fixed;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
/* fine grain overlay for texture (no external asset) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: 'Capriola', sans-serif; font-weight: 400; color: var(--ink); line-height: 1.16; }
a { color: inherit; }

/* the hand-drawn mango underline accent (animated draw-on) */
.draw { position: relative; display: inline-block; white-space: nowrap; }
.draw svg { position: absolute; left: -3%; width: 106%; bottom: -.22em; height: .46em; overflow: visible; }
.draw svg path {
  fill: none; stroke: var(--mango); stroke-width: 11; stroke-linecap: round;
  stroke-dasharray: 600; stroke-dashoffset: 600;
  transition: stroke-dashoffset 1.1s cubic-bezier(.6,.1,.2,1) .35s;
}
.draw.in svg path { stroke-dashoffset: 0; }

/* ============ Shared bits ============ */

.badge-pill {
  display: inline-block;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--mango);
  color: var(--ink);
  border: 1.5px solid rgba(25,25,25,.14);
  font: 400 12px 'Capriola', sans-serif;
  letter-spacing: .01em;
}

.badge-muted {
  display: inline-block;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--rust);
  border: 1.5px solid var(--line);
  font: 400 11px 'Capriola', sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* primary button — refined mango pill with a soft key-lift (not toy/sticker) */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  min-height: 52px;
  padding: 15px 30px;
  background: var(--mango);
  color: var(--ink);
  border: 1.5px solid rgba(25,25,25,.14);
  border-radius: 999px;
  font: 400 16px 'Capriola', sans-serif;
  cursor: pointer;
  box-shadow: var(--lift-key);
  transition: transform .12s, box-shadow .12s, filter .12s;
}
.btn-pill:hover { transform: translateY(-2px); box-shadow: 0 4px 0 rgba(25,25,25,.10), 0 14px 30px rgba(43,36,26,.16); filter: brightness(1.02); }
.btn-pill:active { transform: translateY(1px); box-shadow: var(--press); }
.btn-pill:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: var(--lift); }
.btn-pill:disabled:hover { filter: none; }
.btn-pill.full { width: 100%; }

.link-btn {
  background: none;
  border: none;
  font: 500 14px 'Roboto', sans-serif;
  color: var(--rust);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 8px 0;
}
.link-btn:hover { color: var(--ink); }

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font: 500 14px 'Roboto', sans-serif;
  color: var(--ink);
  opacity: .6;
  cursor: pointer;
  padding: 6px 0;
  text-decoration: none;
  transition: opacity .14s;
}
.back-btn:hover { opacity: 1; }

.field-label {
  display: block;
  font: 400 14px 'Capriola', sans-serif;
  margin-bottom: 7px;
  color: var(--ink);
}
.field-label .optional { font-family: 'Roboto', sans-serif; font-weight: 500; color: var(--soft); font-size: 13px; }

.field-input {
  width: 100%;
  box-sizing: border-box;
  height: 52px;
  padding: 0 16px;
  border: 1.5px solid var(--line-ink);
  background: #fff;
  border-radius: 13px;
  font: 400 15px 'Roboto', sans-serif;
  color: var(--ink);
  outline: none;
  margin-bottom: 20px;
  box-shadow: 0 1px 2px rgba(43,36,26,.05);
  transition: box-shadow .14s, border-color .14s;
}
.field-input::placeholder { color: #b5ac9e; }
.field-input:focus { border-color: var(--mango); box-shadow: 0 0 0 3px rgba(251,196,92,.30); }

/* address finder dropdown — field-input sibling family; mango border pairs it with the focused input above */
.address-wrap { position: relative; }
.address-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  z-index: 30;
  background: #fff;
  border: 1.5px solid var(--mango);
  border-radius: 13px;
  box-shadow: 0 10px 24px rgba(43,36,26,.14);
  max-height: 260px;
  overflow-y: auto;
}
.address-suggestions[hidden] { display: none; }
.address-suggestion {
  padding: 12px 16px;
  font: 400 14.5px 'Roboto', sans-serif;
  color: var(--ink);
  cursor: pointer;
}
.address-suggestion + .address-suggestion { border-top: 1px solid var(--cream2); }
.address-suggestion:hover, .address-suggestion:active { background: var(--cream2); }

/* quiz answer — bold chunky button, the main-site signature form */
.option-btn {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 15px 18px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 15px;
  font: 400 15.5px 'Capriola', sans-serif;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 4px 0 var(--ink);
  transition: transform .1s, box-shadow .1s, background .14s;
  margin-bottom: 11px;
}
.option-btn:last-child { margin-bottom: 0; }
.option-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--ink); background: var(--cream2); }
.option-btn:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--ink); }
.option-btn.sel { background: var(--mango); }

/* provider chip — smaller chunky pill */
.chip-btn {
  min-height: 44px;
  padding: 10px 18px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 13px;
  font: 400 14px 'Capriola', sans-serif;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 3px 0 var(--ink);
  transition: transform .1s, box-shadow .1s, background .14s;
}
.chip-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 0 var(--ink); background: var(--cream2); }
.chip-btn:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--ink); }
.chip-btn.sel { background: var(--mango); }

.lock-icon { display: inline-flex; flex-direction: column; align-items: center; }
.lock-icon .shackle { width: 8px; height: 6px; border: 1.5px solid var(--rust); border-bottom: none; border-radius: 4px 4px 0 0; display: block; }
.lock-icon .body { width: 13px; height: 9px; background: var(--rust); border-radius: 2.5px; display: block; }

.trust-note {
  margin: 16px 0 0;
  font-size: 12.5px;
  color: var(--soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

.error-text { color: var(--rust); font-size: 13px; margin-top: 12px; }

/* decorative abstract shapes retired — replaced by the warm background + kiwi */
.decor, .rail-decor { display: none !important; }

/* ============ Landing / quiz ============ */

.landing {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: transparent;
  overflow: hidden;
}

.landing-header, .done-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 clamp(20px, 4.5vw, 56px);
  flex: none;
}
.landing-header img, .done-header img { height: 34px; display: block; }

.hero-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(24px, 3.5vw, 44px) clamp(20px, 4.5vw, 56px) 44px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}
.hero-copy { flex: 1 1 420px; max-width: 560px; }
.hero-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.15;
  text-wrap: pretty;
}
.hero-kiwi { width: clamp(150px, 20vw, 210px); margin: 0 0 20px; filter: drop-shadow(0 8px 14px rgba(43,36,26,.14)); }
/* Title first as the focal point; steps + kiwi share a row beneath it
   (kiwi to the RIGHT of the steps — Jacob feedback 2026-07-09) */
.hero-bottom { display: flex; align-items: flex-end; gap: clamp(14px, 3vw, 48px); }
/* Kiwi +15% (Jacob 2026-07-09); min-width lets it give way before the steps wrap */
.hero-bottom .hero-kiwi { margin: 0; width: clamp(150px, 15vw, 200px); flex-shrink: 1; min-width: 0; height: auto; }
.hero-steps { display: flex; flex-direction: column; gap: 14px; font-size: 15.5px; font-weight: 500; color: var(--text); }
.hero-steps span.row { display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.step-badge {
  width: 27px; height: 27px; border-radius: 50%; background: var(--mango); border: 2px solid var(--ink);
  color: var(--ink); display: grid; place-items: center; font: 400 13px 'Capriola', sans-serif; flex: none;
}

.quiz-card, .quiz-card-standalone {
  flex: 1 1 360px;
  max-width: 480px;
  background: #fff;
  border: 1.5px solid var(--line-ink);
  border-radius: 22px;
  box-shadow: 0 3px 0 rgba(25,25,25,.07), 0 18px 40px rgba(43,36,26,.16);
  padding: 0 0 28px;
  overflow: hidden;
}
.quiz-card-standalone {
  width: 100%;
  max-width: 560px;
  padding: 0 0 32px;
  margin: 0 auto;
}
.quiz-progress-track { height: 6px; background: var(--sand); }
.quiz-progress-fill { height: 100%; background: var(--mango); border-radius: 0 3px 3px 0; transition: width .45s cubic-bezier(.6,.1,.2,1); }
.quiz-body { padding: 24px clamp(20px, 3vw, 28px) 0; }
.quiz-body h2 { margin: 14px 0 18px; font-size: 22px; }
.quiz-body p.hint { margin: 0 0 18px; font-size: 14.5px; line-height: 1.6; color: var(--soft); }

.q-page { position: relative; padding: clamp(20px, 4vw, 48px) 20px 72px; display: flex; justify-content: center; }

.chip-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 22px; }

.q-actions { display: flex; align-items: center; gap: 18px; margin-top: 26px; flex-wrap: wrap; }

.how-it-works {
  position: relative;
  z-index: 1;
  background: var(--cream2);
  border-top: 1.5px solid var(--line);
  border-radius: 32px 32px 0 0;
  padding: 46px clamp(20px, 4.5vw, 56px) 60px;
}
.how-it-works h2 { margin: 0 auto 40px; max-width: 1200px; font-size: clamp(26px, 2.8vw, 34px); }
.how-grid { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(20px, 2.5vw, 32px); max-width: 1200px; margin: 0 auto; }
.how-card {
  position: relative;
  flex: 1 1 240px;
  max-width: 360px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 16px;
  box-shadow: 0 4px 0 var(--ink);
  padding: 30px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .12s, box-shadow .12s;
}
.how-card:hover { transform: translateY(-3px); box-shadow: 0 7px 0 var(--ink); }
.how-card .num {
  position: absolute; top: -16px; left: -10px; width: 40px; height: 40px; border-radius: 50%;
  background: var(--mango); color: var(--ink); display: grid; place-items: center;
  font: 400 16px 'Capriola', sans-serif; border: 2px solid var(--ink); box-shadow: 0 3px 0 var(--ink);
}
.how-card p.title { margin: 4px 0 0; font: 400 17px 'Capriola', sans-serif; }
.how-card p.desc { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--soft); }

/* ============ Rail layout (account / details / disclosure / sign) ============ */

.rail-layout { position: relative; z-index: 1; display: flex; flex-wrap: wrap; min-height: 100vh; background: transparent; }

.rail-side {
  flex: 1 1 300px;
  max-width: 100%;
  background: #fff;
  border-right: 1.5px solid var(--line);
  border-bottom: 1.5px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 32px 36px 28px;
  box-sizing: border-box;
}
.rail-side img.rail-logo { position: relative; height: 32px; width: auto; display: block; margin-bottom: 40px; align-self: flex-start; }
.rail-side .badge-pill { position: relative; align-self: flex-start; }
.rail-side .rail-title { position: relative; font: 400 25px 'Capriola', sans-serif; color: var(--ink); line-height: 1.25; margin-top: 14px; }
.rail-progress-track { position: relative; height: 9px; background: var(--sand); border: 1.5px solid var(--line); border-radius: 999px; margin-top: 24px; overflow: hidden; }
.rail-progress-fill { height: 100%; background: var(--mango); border-radius: 999px; transition: width .45s cubic-bezier(.6,.1,.2,1); }
.rail-footer { position: relative; margin-top: auto; padding-top: 40px; }
.fc-question { margin: 14px 0 18px; font: 400 21px 'Capriola', sans-serif; color: var(--ink); line-height: 1.3; }
/* Kiwi stands ON the footer pill (feet on its top edge), in front of it —
   bottom offset = rail padding-bottom (28) + pill height (~44) − a small
   feet-overlap; z-index keeps it in front. (Jacob feedback 2026-07-09) */
.rail-kiwi { position: absolute; bottom: 64px; left: 24px; width: 130px; opacity: .95; pointer-events: none; z-index: 1; }

/* Mobile-only mirror of the rail's kiwi-on-pill footer, rendered below the
   form card so the form keeps focus on stacked layouts. Hidden on desktop. */
.content-footer { display: none; flex-direction: column; align-items: center; max-width: 590px; margin-top: 36px; }
.content-footer img { width: 112px; margin-bottom: -10px; position: relative; z-index: 1; filter: drop-shadow(0 8px 14px rgba(43,36,26,.14)); pointer-events: none; }

.rail-content { flex: 999 1 420px; padding: 36px clamp(20px, 5vw, 72px) 64px; box-sizing: border-box; }

.form-card {
  max-width: 590px;
  margin-top: 24px;
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid var(--line-ink);
  box-shadow: 0 3px 0 rgba(25,25,25,.06), 0 14px 34px rgba(43,36,26,.12);
  padding: 32px clamp(20px, 4vw, 36px) 36px;
}
.form-card.wide { max-width: 620px; }
.form-card p.hint { margin: 0 0 26px; font-size: 14.5px; line-height: 1.6; color: var(--soft); }

.callout {
  background: var(--cream2);
  border: 1.5px solid var(--line);
  border-radius: 13px;
  padding: 16px 18px;
  margin-bottom: 20px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--soft);
}
.callout a { color: var(--rust); }

/* reassurance / privacy note — soft green tint */
.microcopy {
  display: flex; gap: 9px; align-items: flex-start;
  background: var(--green-ll); border: 1px solid var(--green-l);
  border-radius: 13px; padding: 12px 14px; margin: 6px 0 18px;
  font-size: 13px; color: var(--green-d); line-height: 1.5;
}
.microcopy svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--green); margin-top: 1px; }

/* Disclosure */
.disclosure-list { border-top: 1.5px solid var(--tan2); }
.disclosure-item { padding: 20px 2px; border-bottom: 1.5px solid var(--tan2); }
.disclosure-item h2 { margin: 0 0 8px; font-size: 16.5px; }
.disclosure-item p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--soft); }
.disclosure-item a { color: var(--rust); text-decoration: underline; text-underline-offset: 3px; }

/* Sign */
.review-list { border-top: 1.5px solid var(--tan2); margin-bottom: 26px; }
.review-row { display: flex; justify-content: space-between; gap: 20px; padding: 13px 2px; border-bottom: 1.5px solid var(--tan2); font-size: 13.5px; }
.review-row .label { color: var(--soft); font-weight: 500; flex: none; }
.review-row .value { font-family: 'Capriola', sans-serif; text-align: right; overflow-wrap: anywhere; }

.auth-box { background: var(--cream2); border: 1.5px solid var(--line); border-radius: 13px; padding: 18px 20px; margin-bottom: 26px; }
.auth-box .badge-muted { margin-bottom: 10px; }
.auth-box p { margin: 0; font-size: 14px; line-height: 1.7; }

.sig-label-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.sig-label-row label { font: 400 14px 'Capriola', sans-serif; }

.sig-wrap { position: relative; background: #fffdf9; border: 2px dashed var(--tan2); border-radius: 13px; overflow: hidden; }
.sig-wrap canvas { display: block; width: 100%; height: 180px; cursor: crosshair; touch-action: none; }
.sig-guideline { position: absolute; left: 22px; right: 22px; bottom: 36px; border-bottom: 1.5px solid var(--tan2); pointer-events: none; }
.sig-hint { position: absolute; left: 22px; bottom: 13px; font-size: 12px; color: var(--soft); pointer-events: none; }

.sig-toggle { display: inline-flex; gap: 4px; background: var(--sand); border: 2px solid var(--ink); border-radius: 999px; padding: 3px; margin-bottom: 12px; box-shadow: 0 3px 0 var(--ink); }
.sig-toggle-btn { border: none; background: none; padding: 7px 20px; border-radius: 999px; font: 400 13px 'Capriola', sans-serif; color: var(--ink); cursor: pointer; }
.sig-toggle-btn.active { background: var(--mango); color: var(--ink); }
.sig-type-input { display: block; width: 100%; height: 180px; box-sizing: border-box; border: none; background: transparent; text-align: center; font: 700 48px 'Caveat', cursive; color: var(--ink); outline: none; padding: 0 20px 40px; }
.sig-type-input::placeholder { font: 500 18px 'Roboto', sans-serif; color: var(--soft); }

/* Prominent card treatment so the required tick can't be missed
   (Jacob feedback 2026-07-09) — same ink-outline language as option buttons. */
.disclosure-check { display: flex; align-items: flex-start; gap: 12px; margin-top: 22px; padding: 14px 16px; background: var(--cream2, #fdf7ea); border: 2px solid var(--ink); border-radius: 14px; box-shadow: 0 3px 0 var(--ink); font-size: 14px; line-height: 1.6; color: var(--text); cursor: pointer; }
.disclosure-check input { margin: 3px 0 0; width: 20px; height: 20px; flex: none; accent-color: var(--mango); cursor: pointer; }
.disclosure-check a { color: var(--rust); text-decoration: underline; text-underline-offset: 2px; }

/* ============ Done ============ */

.done-page-content { position: relative; z-index: 1; padding: clamp(20px, 4vw, 48px) 20px 80px; display: flex; justify-content: center; }
.done-card {
  width: 100%; max-width: 640px; background: #fff; border: 1.5px solid var(--line-ink);
  border-radius: 20px; box-shadow: 0 3px 0 rgba(25,25,25,.06), 0 16px 38px rgba(43,36,26,.14); padding: 36px clamp(20px, 4vw, 40px) 38px;
  box-sizing: border-box;
}
.done-check {
  width: 52px; height: 52px; border-radius: 50%; background: var(--green); border: 2px solid var(--ink); color: #fff;
  display: grid; place-items: center; font-size: 24px; margin-bottom: 20px; box-shadow: 0 3px 0 var(--ink);
}
.done-card h1 { margin: 0 0 12px; font-size: clamp(26px, 3.2vw, 32px); line-height: 1.22; text-wrap: pretty; }
.done-card p.lead { margin: 0; font-size: 14.5px; line-height: 1.7; color: var(--soft); text-wrap: pretty; }

/* Stacked rail (the flex wraps once rail-side 300px + rail-content 420px no
   longer fit side by side): the rail becomes a short header block, so the
   absolutely-positioned kiwi (which lands on the heading there) + footer
   pill move out of it and re-render below the form card via .content-footer
   — form first, reassurance after (Jacob 2026-07-09). */
@media (max-width: 720px) {
  .rail-side { border-right: none; padding: 24px 20px 24px; }
  .rail-side img.rail-logo { margin-bottom: 22px; height: 30px; }
  .rail-side .rail-kiwi, .rail-side .rail-footer { display: none; }
  .content-footer { display: flex; }
  .rail-content { padding-top: 26px; }
}

/* ---- mobile pass: stack the hero, keep everything inside the viewport ---- */
@media (max-width: 620px) {
  .hero-row {
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
    padding: 22px 18px 36px;
  }
  .hero-copy, .quiz-card, .quiz-card-standalone {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hero-copy { text-align: left; }
  .hero-copy h1 { font-size: clamp(28px, 8vw, 34px); }
  /* Steps + kiwi share one row: steps 1–2 hold a single line (Jacob
     2026-07-09) — type steps down a notch and the kiwi flexes into the
     width left over (capped at +15% = 150px), bleeding a little into the
     right padding. Step 3 may still wrap. */
  .hero-bottom { gap: 12px; justify-content: space-between; }
  .hero-steps { font-size: 14px; gap: 12px; min-width: 0; }
  .hero-steps span.row { gap: 10px; }
  .hero-steps span.row:last-child { white-space: normal; }
  .step-badge { width: 24px; height: 24px; font-size: 12px; }
  .hero-bottom .hero-kiwi { flex: 0 1 150px; width: 150px; margin-right: -12px; }
  .how-it-works { padding: 40px 18px 52px; }
  .how-grid { flex-direction: column; align-items: stretch; }
  .how-card { flex: 1 1 auto; max-width: 100%; min-width: 0; margin-left: 12px; }
  .how-card .num { left: -12px; }
  .q-page { padding: 24px 16px 60px; }
  .rail-content { padding: 28px 18px 56px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001s !important; transition-duration: .001s !important; }
}
