/* Genie marketing site — Direction B (warm & playful, editorial)
   Translated from the React/JSX prototype to plain CSS.
   Tokens mirror the `B` constants in direction-b.jsx. */

:root {
  --cream:  #f5efe4;
  --cream2: #ebe3d3;
  --ink:    #1a1714;
  --ink2:   #4a423a;
  --ink3:   #8a7f6f;
  --line:   #d9cfbd;
  --accent: #e8593b;

  --green:  #4ab363;
  --red:    #e8593b;
  --purple: #9b6bc9;
  --yellow: #f2c14e;
  --blue:   #4a8fc9;

  --display: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video, svg { display: block; max-width: 100%; }

button {
  font: inherit;
  cursor: pointer;
}

a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── Top strip ──────────────────────────────────────────────── */
.top-strip {
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  text-align: center;
  padding: 10px 20px;
  letter-spacing: 0.5px;
}

/* ── Nav ────────────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid var(--line);
  gap: 28px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__brand-name {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.5px;
}
.nav__spacer { flex: 1; }
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--ink2);
}
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .15s ease, filter .15s ease;
}
.nav__cta:hover { transform: translateY(-1px); filter: brightness(1.05); }

@media (max-width: 820px) {
  .nav__links { display: none; }
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero { padding: 60px 40px 80px; position: relative; }
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero__tags {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #fff;
}
.tag--ink   { background: var(--ink); }
.tag--accent{ background: var(--accent); }
.tag-meta {
  font-size: 12px;
  color: var(--ink3);
  letter-spacing: 0.4px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: -2.5px;
  font-weight: 400;
  margin: 0;
  text-wrap: balance;
}
.hero h1 .em { font-style: italic; color: var(--accent); }
.hero p.lede {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink2);
  max-width: 520px;
  margin-top: 32px;
  text-wrap: pretty;
}
.hero__cta-row {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  padding: 16px 28px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  transition: transform .15s ease, background .15s ease;
}
.btn-primary:hover { transform: translateY(-1px); background: #000; }
.btn-accent {
  padding: 18px 40px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 600;
  transition: transform .15s ease, filter .15s ease;
}
.btn-accent:hover { transform: translateY(-1px); filter: brightness(1.05); }
.hero__cta-meta { font-size: 13px; color: var(--ink3); line-height: 1.4; }

.hero__media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__halo {
  position: absolute;
  inset: -20px;
  border-radius: 32px;
  background: conic-gradient(from 220deg, #4ab363, #f2c14e, #e8593b, #9b6bc9, #4a8fc9, #4ab363);
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
}
.hero__video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
}
.hero__video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__film-label {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 10px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 100px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero__film-label .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

@media (max-width: 900px) {
  .hero { padding: 40px 24px 60px; }
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero h1 { letter-spacing: -1.5px; }
  .hero p.lede { font-size: 18px; }
}

/* ── Running strip ──────────────────────────────────────────── */
.running-strip {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  display: flex;
  gap: 60px;
  font-size: 13px;
  color: var(--ink2);
  justify-content: center;
  letter-spacing: 0.3px;
  flex-wrap: wrap;
  row-gap: 8px;
}
@media (max-width: 900px) {
  .running-strip { gap: 24px; row-gap: 6px; padding: 16px 20px; font-size: 12px; }
}
@media (max-width: 520px) {
  .running-strip { gap: 14px; padding: 14px 16px; font-size: 11.5px; }
}
.running-strip span::before {
  content: "● ";
  color: var(--ink2);
}

/* ── Section header (kicker + h2) ───────────────────────────── */
.section-head { padding: 100px 40px 60px; }
.section-head__inner { max-width: 1200px; margin: 0 auto; }
.kicker {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 16px;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -1.8px;
  font-weight: 400;
  margin: 0;
  white-space: nowrap;
  overflow-wrap: anywhere;
}
@media (max-width: 720px) {
  .section-head h2 { white-space: normal; letter-spacing: -1px; }
}
.section-head h2 em { color: var(--accent); font-style: italic; }
.section-head p {
  font-size: 18px;
  color: var(--ink2);
  margin-top: 24px;
  line-height: 1.55;
  max-width: 760px;
}

/* ── Colour language strip ──────────────────────────────────── */
.color-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.color-cell {
  padding: 80px 24px 32px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  position: relative;
}
.color-cell--yellow { color: var(--ink); }
.color-cell .num {
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 11px;
  letter-spacing: 1.4px;
  opacity: 0.7;
}
.color-cell .name {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1;
}
.color-cell .meaning {
  font-size: 15px;
  margin-top: 6px;
  opacity: 0.9;
}
@media (max-width: 900px) {
  .color-strip { grid-template-columns: repeat(2, 1fr); }
  .color-cell { min-height: 220px; padding: 60px 20px 24px; }
  .color-cell .name { font-size: 36px; }
}

/* ── Gestures section ───────────────────────────────────────── */
.gestures { padding: 120px 40px; background: var(--cream2); }
.gestures__inner { max-width: 1200px; margin: 0 auto; }
.gestures__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}
.gestures__head h2 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -1.8px;
  font-weight: 400;
  margin: 0;
  max-width: 720px;
}
.gestures__head h2 em { color: var(--accent); font-style: italic; }
.gestures__head p {
  font-size: 17px;
  color: var(--ink2);
  max-width: 380px;
  line-height: 1.55;
  margin: 0;
}
.gesture-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.gesture-card {
  background: var(--cream);
  padding: 36px;
  border-radius: 24px;
  border: 1px solid var(--line);
  display: flex;
  gap: 28px;
  align-items: center;
}
.gesture-card__visual {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gesture-card__copy { flex: 1; }
.gesture-card__ctx {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 6px;
}
.gesture-card__title {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.gesture-card__sub {
  font-size: 15px;
  color: var(--ink2);
  margin-top: 6px;
  line-height: 1.5;
}
@media (max-width: 820px) {
  .gesture-grid { grid-template-columns: 1fr; }
  .gestures { padding: 80px 24px; }
  .gesture-card { padding: 24px; gap: 18px; }
  .gesture-card__visual { width: 88px; height: 88px; }
}

/* ── Use cases panels ───────────────────────────────────────── */
.use-cases { padding: 120px 40px; }
.use-cases__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) {
  .use-cases__inner { grid-template-columns: 1fr; }
  .use-cases { padding: 80px 24px; }
}

.panel {
  padding: 48px 40px;
  border-radius: 28px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}
.panel--for-you { background: var(--yellow); color: var(--ink); }
.panel--for-others { background: var(--purple); color: #fff; }
.panel__kicker {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 14px;
}
.panel__headline {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -1.1px;
  font-weight: 400;
  margin: 0;
  text-wrap: balance;
}
.panel__stage {
  margin-top: 28px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.panel--for-you .panel__stage { background: rgba(0,0,0,0.04); }
.panel--for-others .panel__stage { background: rgba(255,255,255,0.06); }

.panel__stage > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .35s ease;
}
.panel__stage > svg.is-active { opacity: 1; }

.panel__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
}
.panel__item {
  cursor: pointer;
  padding: 14px 0;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  opacity: 0.55;
  transition: opacity .35s ease;
}
.panel--for-you .panel__item { border-top: 1px solid rgba(0,0,0,0.15); }
.panel--for-others .panel__item { border-top: 1px solid rgba(255,255,255,0.2); }
.panel__item.is-active { opacity: 1; }
.panel__num {
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  margin-top: 4px;
}
.panel--for-you .panel__num { color: rgba(0,0,0,0.55); }
.panel--for-others .panel__num { color: rgba(255,255,255,0.65); }
.panel__title { font-size: 16px; font-weight: 600; line-height: 1.3; }
.panel__caption { font-size: 13.5px; line-height: 1.45; margin-top: 3px; }
.panel--for-you .panel__caption { color: rgba(0,0,0,0.55); }
.panel--for-others .panel__caption { color: rgba(255,255,255,0.65); }

/* ── Pricing ────────────────────────────────────────────────── */
.pricing {
  padding: 120px 40px;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.pricing__halo {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #4ab363, #f2c14e, #e8593b, #9b6bc9, #4a8fc9, #4ab363);
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}
.pricing__inner { max-width: 1200px; margin: 0 auto; position: relative; }
.pricing__kicker {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 20px;
}
.pricing__split {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pricing__col { padding: 0 32px; }
.pricing__col--lamp {
  text-align: right;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.pricing__col--service { text-align: left; }
.pricing__col-label {
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 8px;
}
.pricing__amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pricing__col--lamp .pricing__amount { justify-content: flex-end; }
.pricing__big {
  font-family: var(--display);
  font-size: 110px;
  line-height: 1;
  letter-spacing: -3px;
  font-weight: 400;
}
.pricing__small {
  font-family: var(--display);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -1px;
  font-weight: 400;
  opacity: 0.7;
}
.pricing__suffix {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.6px;
  font-weight: 400;
  opacity: 0.7;
}
.pricing__sub {
  font-size: 13px;
  opacity: 0.55;
  margin-top: 6px;
}
.pricing__copy {
  font-size: 17px;
  opacity: 0.75;
  max-width: 620px;
  margin: 40px auto 0;
  line-height: 1.55;
  text-align: center;
  text-wrap: pretty;
}
.pricing__copy em { font-style: italic; opacity: 1; }
.pricing__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
  text-align: left;
}
.fact-card {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
}
.fact-card__k {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 10px;
}
.fact-card__v { font-size: 15px; line-height: 1.5; opacity: 0.9; }

.pricing__cta-row {
  text-align: center;
  margin-top: 56px;
}
.pricing__cta-row .meta {
  font-size: 13px;
  opacity: 0.5;
  margin-top: 16px;
}

@media (max-width: 820px) {
  .pricing { padding: 80px 24px; }
  .pricing__split { grid-template-columns: 1fr; gap: 32px; }
  .pricing__col { padding: 0; text-align: center !important; border: none !important; }
  /* Both columns lay their amount out as a flex row, so text-align doesn't
     do anything on the inner row — recentre via justify-content for both. */
  .pricing__col--lamp .pricing__amount,
  .pricing__col--service .pricing__amount { justify-content: center; }
  .pricing__big { font-size: 80px; }
  .pricing__facts { grid-template-columns: 1fr; }
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq { padding: 120px 40px; }
.faq__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.faq__head { margin-bottom: 48px; }
.faq__list { max-width: 760px; }
.faq__title {
  font-family: var(--display);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -1.2px;
  font-weight: 400;
  margin: 0;
}
.faq__item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq__row {
  display: flex;
  gap: 16px;
  align-items: start;
}
.faq__q-mark {
  font-family: var(--display);
  font-size: 14px;
  color: var(--accent);
  font-style: italic;
  margin-top: 4px;
}
.faq__q { font-size: 18px; font-weight: 600; letter-spacing: -0.2px; }
.faq__a {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.55;
  margin-top: 10px;
}
@media (max-width: 720px) {
  .faq { padding: 80px 24px; }
  .faq__head { margin-bottom: 32px; }
}

/* ── Waitlist form (replaces "Join the waitlist →" buttons) ── */
.waitlist {
  display: flex;
  gap: 8px;
  /* When the row wraps (narrow screens), 8px between input and button
     looks too tight against the chunky pill button — give wrapped rows
     more breathing room. */
  row-gap: 12px;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 460px;
  width: 100%;
}
.waitlist--centered { margin: 0 auto; }
.waitlist input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: inherit;
  border-radius: 100px;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.waitlist input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }
.waitlist input[type="email"]:focus {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.1);
}
/* Light-background variant (hero on cream) */
.waitlist--light input[type="email"] {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}
.waitlist--light input[type="email"]::placeholder { color: var(--ink3); }
.waitlist--light input[type="email"]:focus { border-color: var(--ink2); }

.waitlist button[type="submit"] {
  flex: 0 0 auto;
  padding: 14px 24px;
  border: none;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
}
.waitlist--dark button[type="submit"] {
  background: var(--accent);
  color: #fff;
}
.waitlist--light button[type="submit"] {
  background: var(--ink);
  color: var(--cream);
}
.waitlist button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: progress;
}

.waitlist__status {
  width: 100%;
  font-size: 13px;
  margin-top: 4px;
  min-height: 1em;
}
.waitlist__status--ok { color: var(--green); }
.waitlist__status--err { color: var(--accent); }
.waitlist--dark .waitlist__status--ok { color: #6cd28a; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  padding: 48px 40px 36px;
  background: var(--cream2);
  border-top: 1px solid var(--line);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__brand { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer__name {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.3px;
}
.footer__sub {
  font-size: 13px;
  color: var(--ink3);
  margin-left: 14px;
}
.footer__sub a {
  color: var(--ink2);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(74, 66, 58, 0.35);
  transition: text-decoration-color .15s ease, color .15s ease;
}
.footer__sub a:hover {
  color: var(--ink);
  text-decoration-color: var(--ink2);
}
.footer__links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--ink2);
  flex-wrap: wrap;
}
.footer__links a:hover { color: var(--ink); }

/* ── Legal pages (Privacy, Terms) ───────────────────────────── */
/* Container width matches the marketing page (1200px / 40px padding).
   Prose itself sits in a narrower reading column inside that frame so
   line lengths stay comfortable. */
.legal {
  padding: 80px 40px 120px;
  max-width: 1200px;
  margin: 0 auto;
}
.legal__inner {
  max-width: 780px;
  margin: 0;
}
.legal__back {
  display: inline-block;
  font-size: 13px;
  color: var(--ink3);
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}
.legal__back:hover { color: var(--ink); }
.legal h1 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -1.6px;
  font-weight: 500;
  margin: 0 0 12px;
  text-wrap: balance;
}
.legal__meta {
  font-size: 13px;
  color: var(--ink3);
  letter-spacing: 0.3px;
  margin-bottom: 48px;
}
.legal h2 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin: 48px 0 12px;
  line-height: 1.2;
}
.legal h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin: 24px 0 8px;
  text-transform: uppercase;
  color: var(--ink2);
}
.legal p,
.legal li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink2);
  text-wrap: pretty;
}
.legal p { margin: 0 0 16px; }
.legal ul, .legal ol {
  padding-left: 22px;
  margin: 0 0 16px;
}
.legal li { margin-bottom: 8px; }
.legal a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1px;
}
.legal a:hover { text-decoration-thickness: 2px; }
.legal__contact {
  margin-top: 56px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream2);
}
.legal__contact p { margin: 0; font-size: 15px; }
.legal__contact strong { color: var(--ink); }

@media (max-width: 720px) {
  .legal { padding: 56px 24px 80px; }
}

/* ── Reduced motion ─────────────────────────────────────────── */
/* ── Very-narrow-phone polish (<480px) ──────────────────────── */
/* Catches the 360px-wide phones (older Android, small iPhones in
   one-handed reachability mode). Most rules above target 720/820/900px
   breakpoints and were generous; this block tightens type, spacing, and
   line-breaks where the 900px shrink doesn't go far enough. */
@media (max-width: 480px) {
  /* Side padding on the hero matches the body content above */
  .hero { padding: 32px 20px 48px; }
  .hero h1 { letter-spacing: -1px; }
  .hero p.lede { font-size: 17px; max-width: none; }
  .hero__cta-meta { font-size: 12px; }

  .nav { padding: 16px 20px; gap: 12px; }
  .nav__cta { padding: 9px 14px; font-size: 13px; }
  .nav__brand-name { font-size: 20px; }

  .top-strip { font-size: 11px; padding: 9px 14px; }

  /* Section heads — let big editorial headlines wrap naturally */
  .section-head { padding: 64px 20px 36px; }
  .section-head h2 { letter-spacing: -0.8px; line-height: 1.05; }
  .section-head p { font-size: 16px; }

  .gestures { padding: 64px 20px; }
  .gestures__head { gap: 24px; margin-bottom: 32px; }
  .gestures__head h2 { letter-spacing: -0.8px; }

  .use-cases { padding: 64px 20px; }
  .panel { padding: 32px 24px; min-height: auto; }
  .panel__headline { font-size: 36px; letter-spacing: -0.8px; }

  .pricing { padding: 64px 20px; }
  .pricing__big { font-size: 64px; letter-spacing: -1.6px; }
  .pricing__small { font-size: 28px; }
  .pricing__suffix { font-size: 22px; }
  .pricing__copy { font-size: 16px; }

  .faq { padding: 64px 20px; }
  .faq__title { font-size: 36px; letter-spacing: -0.8px; }
  .faq__q { font-size: 16px; }
  .faq__a { font-size: 15px; }

  .footer { padding: 32px 20px 24px; }

  /* Waitlist form: when the button wraps below the email input, let it
     fill the row instead of left-aligning. Big tap target, no awkward
     "should this be centred?" moment. */
  .waitlist button[type="submit"] { flex: 1 1 100%; text-align: center; }

  /* Legal pages — drop balance below very-narrow widths so titles
     don't break in awkward places, and shrink padding to match the
     marketing-page rhythm at this size. */
  .legal { padding: 40px 20px 64px; }
  .legal h1 { letter-spacing: -1px; text-wrap: pretty; }
  .legal h2 { font-size: 20px; }
  .legal p, .legal li { font-size: 15.5px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero__video-frame video { animation: none; }
}
