/* ============================================================
   Mr. Peach — landing styles
   Palette derived from the app icon: warm apricot-peach,
   white shield, caramel dog, glowing green all-good dot.
   ============================================================ */

:root {
  /* Core warmth */
  --peach:        #FF8A4C;   /* primary apricot-orange */
  --peach-bright: #FF9E63;
  --peach-deep:   #F26B3A;   /* gradient bottom */
  --apricot:      #FFC9A3;   /* soft fill */
  --cream:        #FFF6EF;   /* warm paper */
  --cream-2:      #FFEFE3;

  /* Status system */
  --green:        #3FB86A;   /* all good */
  --green-soft:   #E4F6EA;
  --amber:        #F5A623;   /* something slipped */
  --amber-soft:   #FCEED2;
  --red:          #E8543E;   /* escalation */
  --red-soft:     #FBE1DB;

  /* Night navy (warm-shifted secondary) */
  --night:        #241A2E;
  --night-2:      #322340;

  /* Ink */
  --ink:          #3B2E38;
  --ink-soft:     #6C5C68;
  --line:         #F0DECF;

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* Shape */
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 34px;
  --r-pill: 999px;

  /* Shadows — warm, soft */
  --shadow-sm: 0 4px 14px rgba(210, 105, 55, .10);
  --shadow-md: 0 16px 40px rgba(210, 105, 55, .16);
  --shadow-lg: 0 34px 80px rgba(190, 85, 40, .22);

  --maxw: 1120px;
}

/* ---------- reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { line-height: 1.05; letter-spacing: -0.01em; }
::selection { background: var(--peach); color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- shared type ---------- */
.display {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.9rem, 7.5vw, 5.4rem);
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}
.display--sm { font-size: clamp(2.1rem, 4.6vw, 3.3rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono);
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--peach-deep);
  background: #fff;
  border: 1px solid var(--line);
  padding: .42rem .8rem;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}
.eyebrow--ink { color: var(--ink-soft); }

.lede {
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
  color: var(--ink-soft);
  max-width: 34ch;
  margin-top: 1.4rem;
}
.section-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 1rem auto 0;
}

/* ---------- status dots / pins ---------- */
.dot { width: .62em; height: .62em; border-radius: 50%; display: inline-block; flex: none; }
.dot--green { background: var(--green); box-shadow: 0 0 0 .18em rgba(63,184,106,.22); }
.pin {
  width: .7em; height: .7em; border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg); background: var(--peach-deep); display: inline-block; flex: none;
}

/* ---------- buttons ---------- */
.btn {
  font-family: var(--body);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(180deg, var(--peach-bright), var(--peach-deep));
  border: none;
  padding: .95rem 1.5rem;
  border-radius: var(--r-pill);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(242,107,58,.34), inset 0 1px 0 rgba(255,255,255,.4);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(242,107,58,.42), inset 0 1px 0 rgba(255,255,255,.5); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: .6rem 1.05rem; font-size: .9rem; }
:focus-visible { outline: 3px solid var(--peach-deep); outline-offset: 3px; border-radius: 6px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 1rem;
  padding: .8rem clamp(1rem, 4vw, 2.4rem);
  background: rgba(255,246,239,.78);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid rgba(240,222,207,.6);
}
.nav__brand { display: flex; align-items: center; gap: .6rem; margin-right: auto; }
.nav__logo { border-radius: 10px; box-shadow: var(--shadow-sm); }
.nav__name { font-family: var(--display); font-weight: 600; font-size: 1.35rem; letter-spacing: -.02em; }
.nav__links { display: flex; gap: 1.6rem; margin-right: .6rem; }
.nav__links a { font-weight: 600; color: var(--ink-soft); font-size: .95rem; transition: color .15s; }
.nav__links a:hover { color: var(--peach-deep); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 2.4rem) 3rem; overflow: hidden; }
.hero__glow {
  position: absolute; inset: -30% 0 auto 0; height: 130%;
  background:
    radial-gradient(60% 55% at 78% 20%, rgba(255,158,99,.55), transparent 60%),
    radial-gradient(55% 50% at 12% 8%, rgba(255,201,163,.55), transparent 62%);
  pointer-events: none; z-index: 0;
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__copy { padding-top: 1rem; }
.hero__copy .display { margin-top: 1.2rem; color: var(--ink); }

/* hero art */
.hero__art { position: relative; display: grid; place-items: center; }
.hero__icon {
  width: min(80%, 380px); aspect-ratio: 1; border-radius: 28%;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
.collar-glow {
  position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(63,184,106,.35), transparent 70%);
  filter: blur(6px); animation: breathe 3.4s ease-in-out infinite;
}
.hero__chip {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border: 1px solid var(--line);
  padding: .55rem .85rem; border-radius: var(--r-pill);
  font-size: .82rem; font-weight: 700; color: var(--ink);
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}
.hero__chip--top { top: 6%; right: -2%; animation-delay: .4s; }
.hero__chip--bottom { bottom: 4%; left: -4%; animation-delay: .9s; max-width: 15rem; }

/* status pills stacked directly beneath the icon */
.hero__pills { display: flex; flex-direction: column; align-items: center; gap: .6rem; margin-top: 1.4rem; width: 100%; }
.hero__pills .hero__chip { position: static; animation: none; }

@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-12px) } }
@keyframes breathe { 0%,100% { transform: scale(.9); opacity: .55 } 50% { transform: scale(1.08); opacity: 1 } }

/* capture form */
.capture { display: flex; gap: .6rem; margin-top: 1.8rem; max-width: 30rem; flex-wrap: wrap; }
.capture input {
  flex: 1 1 12rem; min-width: 0;
  font-family: var(--body); font-size: 1rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line);
  padding: .95rem 1.1rem; border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  transition: border-color .15s, box-shadow .15s;
}
.capture input::placeholder { color: #b6a4ac; }
.capture input:focus { outline: none; border-color: var(--peach); box-shadow: 0 0 0 4px rgba(255,138,76,.18); }
.capture input.is-invalid { border-color: var(--red); box-shadow: 0 0 0 4px rgba(232,84,62,.16); }
.capture--center { justify-content: center; margin-inline: auto; }
.capture__note { font-size: .85rem; color: var(--ink-soft); margin-top: .8rem; max-width: 34rem; }
.capture__note--center { text-align: center; display: inline-flex; align-items: center; gap: .45rem; margin-inline: auto; font-weight: 700; }

/* trustbar */
.trustbar {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: clamp(2.5rem,5vw,4rem) auto 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 1.2rem;
  font-family: var(--display); font-style: italic; font-weight: 500;
  color: var(--ink-soft); font-size: clamp(1rem,1.6vw,1.25rem);
  padding-top: 1.6rem; border-top: 1px dashed var(--line);
}
.trustbar__sep { color: var(--peach); font-style: normal; }

/* ============================================================
   Section scaffolding
   ============================================================ */
section { position: relative; }
.how, .status, .privacy, .messages, .cta {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1rem, 4vw, 2.4rem);
  max-width: var(--maxw); margin-inline: auto;
}
.section-head { text-align: center; max-width: 46rem; margin: 0 auto clamp(2.2rem,4vw,3.4rem); display: grid; justify-items: center; gap: .5rem; }
.section-head--left { text-align: left; justify-items: start; margin: 0; }
.section-head .display { margin-top: .4rem; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2rem 1.6rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step--mid { background: linear-gradient(180deg, #fff, var(--cream-2)); }
.step__num {
  font-family: var(--mono); font-weight: 600; font-size: .8rem;
  color: var(--peach-deep); letter-spacing: .1em;
}
.step__icon {
  width: 3.6rem; height: 3.6rem; margin: 1rem 0 1.1rem;
  display: grid; place-items: center; font-size: 1.7rem;
  border-radius: 20px; position: relative;
}
.step__icon--plan  { background: var(--apricot); }
.step__icon--watch { background: var(--green-soft); }
.step__icon--alert { background: var(--red-soft); }
.pulse-ring {
  position: absolute; inset: 0; border-radius: 20px;
  border: 2px solid var(--green);
  animation: pulseRing 2.4s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: .7 }
  100% { transform: scale(1.5); opacity: 0 }
}
.step h3 { font-size: 1.28rem; margin-bottom: .5rem; }
.step p { color: var(--ink-soft); font-size: .98rem; }

.how__flow {
  margin-top: 2.6rem; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .7rem;
}
.flow__node {
  font-family: var(--mono); font-weight: 600; font-size: .82rem; letter-spacing: .04em;
  padding: .6rem 1.05rem; border-radius: var(--r-pill); background: #fff; border: 1.5px solid var(--line);
}
.flow__node--green { color: #2c8f50; border-color: rgba(63,184,106,.4); background: var(--green-soft); }
.flow__node--red   { color: #b93b28; border-color: rgba(232,84,62,.4); background: var(--red-soft); }
.flow__arrow { color: var(--peach-deep); font-weight: 800; }

/* ============================================================
   STATUS SYSTEM — the signature console
   ============================================================ */
.status { }
.console {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.6rem; align-items: stretch;
}

/* interactive collar */
.collar {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg); padding: 2rem;
  background: var(--night);
  color: #fff; box-shadow: var(--shadow-lg);
  transition: background .5s ease;
  display: flex; flex-direction: column; gap: 1.2rem;
  --accent: var(--green);
}
.collar::before {
  content: ""; position: absolute; inset: 0; opacity: .9; pointer-events: none;
  background: radial-gradient(80% 60% at 15% 0%, color-mix(in srgb, var(--accent) 32%, transparent), transparent 65%);
  transition: background .5s ease;
}
.collar[data-state="green"] { --accent: var(--green); }
.collar[data-state="amber"] { --accent: var(--amber); }
.collar[data-state="red"]   { --accent: var(--red); }

.collar__tag { position: relative; display: flex; align-items: center; gap: 1rem; }
.collar__lamp {
  width: 2.6rem; height: 2.6rem; border-radius: 50%; flex: none;
  background: var(--accent);
  box-shadow: 0 0 0 .5rem color-mix(in srgb, var(--accent) 25%, transparent),
              0 0 30px color-mix(in srgb, var(--accent) 70%, transparent);
  animation: lampPulse 2.2s ease-in-out infinite;
  transition: background .5s ease;
}
@keyframes lampPulse { 0%,100% { transform: scale(1); filter: brightness(1) } 50% { transform: scale(1.06); filter: brightness(1.18) } }
.collar__readout { display: flex; flex-direction: column; }
.collar__state {
  font-family: var(--mono); font-weight: 600; letter-spacing: .22em; font-size: 1.5rem;
  color: var(--accent); transition: color .5s ease;
}
.collar__word { font-size: .95rem; opacity: .8; }
.collar__line { position: relative; font-size: 1.05rem; opacity: .92; min-height: 4.5rem; }

.collar__controls { position: relative; display: flex; gap: .5rem; margin-top: auto; }
.seg {
  flex: 1; font-family: var(--body); font-weight: 700; font-size: .9rem; cursor: pointer;
  color: #fff; background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.14); border-radius: var(--r-pill);
  padding: .6rem .4rem; transition: background .2s, border-color .2s, transform .12s;
}
.seg:hover { background: rgba(255,255,255,.16); }
.seg.is-active { background: rgba(255,255,255,.94); color: var(--night); border-color: transparent; }
.seg:active { transform: scale(.97); }

/* static ladder cards */
.status-cards { display: grid; gap: 1rem; }
.scard {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-left: 5px solid var(--c);
  border-radius: var(--r-md); padding: 1.2rem 1.3rem 1.2rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.scard--green { --c: var(--green); }
.scard--amber { --c: var(--amber); }
.scard--red   { --c: var(--red); }
.scard__lamp {
  position: absolute; top: 1.35rem; right: 1.2rem;
  width: .9rem; height: .9rem; border-radius: 50%; background: var(--c);
  box-shadow: 0 0 0 .28rem color-mix(in srgb, var(--c) 22%, transparent);
}
.scard h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.scard p { color: var(--ink-soft); font-size: .94rem; padding-right: 1rem; }

/* ============================================================
   PRIVACY
   ============================================================ */
.privacy {
  background: linear-gradient(180deg, var(--cream), var(--cream-2));
  border-radius: var(--r-lg);
  max-width: calc(var(--maxw) + 3rem);
}
.privacy__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.privacy__mantra {
  font-family: var(--display); font-weight: 600; font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  color: var(--peach-deep); margin-top: 1.4rem; line-height: 1.2;
}
.trust-list { list-style: none; display: grid; gap: 1rem; }
.trust {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.3rem 1.4rem; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.trust:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.trust__badge {
  font-size: 1.4rem; width: 3rem; height: 3rem; flex: none;
  display: grid; place-items: center; border-radius: 16px;
  background: var(--cream-2);
}
.trust h3 { font-size: 1.12rem; margin-bottom: .2rem; }
.trust p { color: var(--ink-soft); font-size: .96rem; }

/* ============================================================
   MESSAGES — phone mockup
   ============================================================ */
.phone {
  position: relative; max-width: 25rem; margin: 0 auto;
  background: var(--night); border-radius: 44px;
  padding: .7rem; box-shadow: var(--shadow-lg), 0 0 0 2px rgba(0,0,0,.15);
}
.phone__notch {
  position: absolute; top: 1rem; left: 50%; transform: translateX(-50%);
  width: 34%; height: 1.5rem; background: var(--night); border-radius: 999px; z-index: 3;
}
.phone__screen {
  background: linear-gradient(180deg, #fff, var(--cream));
  border-radius: 36px; overflow: hidden;
  padding: 2.6rem 0 1.2rem;
}
.phone__topbar {
  display: flex; align-items: center; gap: .7rem;
  padding: .3rem 1.1rem 1rem; border-bottom: 1px solid var(--line); margin-bottom: 1rem;
}
.phone__avatar { border-radius: 10px; }
.phone__topbar strong { display: block; font-size: 1rem; }
.phone__status { font-size: .74rem; color: var(--ink-soft); display: inline-flex; align-items: center; gap: .35rem; }

.thread { display: flex; flex-direction: column; gap: .7rem; padding: 0 1rem; }
.bubble {
  position: relative; max-width: 84%; padding: .75rem 1rem .95rem;
  border-radius: 20px; font-size: .92rem; line-height: 1.45;
  box-shadow: 0 3px 10px rgba(0,0,0,.05);
}
.bubble time { display: block; font-size: .64rem; opacity: .55; margin-top: .35rem; font-family: var(--mono); }
.bubble--in { align-self: flex-start; border-bottom-left-radius: 6px; background: #fff; border: 1px solid var(--line); }
.bubble--out { align-self: flex-end; border-bottom-right-radius: 6px; background: linear-gradient(180deg, var(--peach-bright), var(--peach-deep)); color: #fff; }
.bubble--out time { opacity: .8; }
.bubble--green { background: var(--green-soft); border-color: rgba(63,184,106,.35); }
.bubble--amber { background: var(--amber-soft); border-color: rgba(245,166,35,.4); }
.bubble--red   { background: var(--red-soft);   border-color: rgba(232,84,62,.4); }
.bubble__map {
  display: block; margin-top: .6rem; font-family: var(--mono); font-size: .72rem; font-weight: 600;
  color: #b93b28; background: #fff; border: 1px dashed rgba(232,84,62,.5);
  padding: .5rem .7rem; border-radius: 12px;
}
.thread__label {
  align-self: center; font-family: var(--mono); font-size: .66rem; letter-spacing: .04em;
  color: var(--ink-soft); text-transform: uppercase; margin: .3rem 0;
}
.thread__label--amber { color: #a9750f; }
.thread__label--red   { color: #b93b28; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta {
  text-align: center;
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(255,158,99,.4), transparent 60%),
    linear-gradient(180deg, var(--peach), var(--peach-deep));
  border-radius: var(--r-lg);
  color: #fff; max-width: calc(var(--maxw) + 3rem);
  overflow: hidden;
}
.cta__inner { max-width: 40rem; margin-inline: auto; display: grid; justify-items: center; gap: .3rem; }
.cta__icon { border-radius: 22px; box-shadow: var(--shadow-md); margin-bottom: 1rem; animation: float 6s ease-in-out infinite; }
.cta .display { color: #fff; }
.cta .section-sub { color: rgba(255,255,255,.9); }
.cta .capture { margin-top: 2rem; }
.cta .capture input { border-color: transparent; }
.cta .btn { background: #fff; color: var(--peach-deep); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.cta .btn:hover { box-shadow: 0 16px 32px rgba(0,0,0,.24); }
.cta .capture__note { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  max-width: var(--maxw); margin: 3rem auto 0; padding: 3rem clamp(1rem,4vw,2.4rem);
  display: grid; justify-items: center; gap: .8rem; text-align: center;
  border-top: 1px solid var(--line);
}
.footer__brand { display: flex; align-items: center; gap: .55rem; font-family: var(--display); font-weight: 600; font-size: 1.2rem; }
.footer__brand img { border-radius: 8px; }
.footer__line { font-family: var(--display); font-style: italic; color: var(--peach-deep); }
.footer__links { display: flex; gap: 1.4rem; }
.footer__links a { font-weight: 600; color: var(--ink-soft); font-size: .92rem; }
.footer__links a:hover { color: var(--peach-deep); }
.footer__legal { font-size: .78rem; color: var(--ink-soft); max-width: 40rem; }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed; left: 50%; bottom: 1.5rem; transform: translate(-50%, 140%);
  z-index: 100; display: flex; align-items: center; gap: .85rem;
  background: #fff; border: 1px solid var(--line);
  padding: .85rem 1.2rem .85rem .85rem; border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg);
  transition: transform .45s cubic-bezier(.2,.9,.3,1.2);
  max-width: calc(100vw - 2rem);
}
.toast.is-visible { transform: translate(-50%, 0); }
.toast img { border-radius: 10px; flex: none; }
.toast strong { display: block; font-size: .96rem; }
.toast span { font-size: .84rem; color: var(--ink-soft); }

/* ============================================================
   Paw trail (ambient scroll decoration)
   ============================================================ */
.paw-field {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image:
    radial-gradient(circle at 8% 30%, rgba(255,138,76,.06) 0 8px, transparent 9px),
    radial-gradient(circle at 92% 68%, rgba(63,184,106,.06) 0 10px, transparent 11px);
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .nav__links { display: none; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { padding-top: 0; }
  .hero__copy .lede, .capture, .capture__note { margin-inline: auto; }
  .hero__copy .lede { max-width: 40ch; }
  .hero__copy .eyebrow { margin-inline: auto; }
  .hero__art { grid-row: 1; margin-bottom: 1rem; }
  .steps { grid-template-columns: 1fr; }
  .console { grid-template-columns: 1fr; }
  .privacy__grid { grid-template-columns: 1fr; }
  .section-head--left { text-align: center; justify-items: center; }
}
@media (max-width: 560px) {
  .display { font-size: clamp(2.6rem, 12vw, 3.4rem); }
  .capture { flex-direction: column; }
  .capture input, .capture .btn { width: 100%; }
  .hero__chip--bottom { left: 0; max-width: 12rem; }
  .hero__chip--top { right: 0; }
  .trustbar { font-size: 1rem; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .step:hover, .trust:hover { transform: none; }
}
