/* ============================================================
   Adhonk landing page
   Recreated from the Claude Design "Adhonk.dc.html" prototype.
   Playful goose brand: Baloo 2 / Fredoka, cream on dark green-black,
   chunky borders + hard drop shadows.
   ============================================================ */

:root {
  --ink: #1f1c14;
  --cream: #fff1ce;
  --bg: #0c1410;
  --orange: #ff7a1a;
  --orange-lt: #ff9a3c;
  --teal: #18b6a6;
  --yellow: #ffd84d;
  --pink: #ffc0d6;
  --mint: #9ddacd;
  --display: 'Baloo 2', 'Fredoka', system-ui, sans-serif;
  --body: 'Fredoka', system-ui, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; } /* beat explicit display rules on .btn/.step/etc. */
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--bg); }
body { font-family: var(--body); color: var(--cream); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; }
::selection { background: var(--orange); color: #fff; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 100;
  background: var(--orange); color: #fff; padding: 10px 18px; border-radius: 999px;
  font-family: var(--display); font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 16px; }

.wrap { max-width: 1100px; margin: 0 auto; }
.center { text-align: center; }
.muted { color: #9a8f6a; font-weight: 500; }
.accent { color: var(--orange-lt); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--display); font-weight: 700; text-decoration: none;
  border-radius: 999px; cursor: pointer; border: none; line-height: 1;
  transition: transform .12s ease, background .15s ease, box-shadow .12s ease;
}
.btn--primary {
  background: var(--orange); color: #fff; font-size: 17px; padding: 15px 28px;
  border: 3px solid var(--cream); box-shadow: 0 5px 0 rgba(0,0,0,.35);
}
.btn--primary:hover { transform: translateY(2px); box-shadow: 0 3px 0 rgba(0,0,0,.35); }
.btn--lg { font-size: 17px; }
.btn--teal { background: var(--teal); color: #fff; font-size: 16px; padding: 13px 26px; border: 3px solid var(--ink); box-shadow: 0 4px 0 var(--ink); }
.btn--teal:hover { transform: translateY(2px); box-shadow: 0 2px 0 var(--ink); }
.btn--ghost { background: var(--cream); color: var(--ink); font-size: 16px; padding: 13px 22px; border: 2.5px solid var(--ink); }
.btn--ghost:hover { background: #ffe7a8; }
.btn[disabled] { opacity: .6; cursor: progress; }
.link-underline {
  font-family: var(--display); font-weight: 600; font-size: 16px; color: var(--cream);
  text-decoration: none; border-bottom: 3px solid var(--teal); padding-bottom: 1px;
}
.link-underline:hover { color: var(--orange-lt); border-color: var(--orange-lt); }

/* ---------- shared section type ---------- */
.section-title { font-family: var(--display); font-weight: 800; font-size: clamp(30px,4.6vw,58px); letter-spacing: -.02em; margin: 0 0 12px; color: var(--cream); }
.section-sub { font-size: clamp(15px,1.3vw,19px); line-height: 1.55; color: rgba(255,241,206,.78); max-width: 58ch; margin: 0 auto 0; }
.center > .section-sub { margin-left: auto; margin-right: auto; }
.eyebrow { font-family: var(--display); font-weight: 700; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color: var(--orange-lt); margin: 0 0 12px; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; flex-direction: column;
  padding: 26px clamp(22px,5vw,68px) 0; color: var(--cream); background: var(--bg);
}
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 0; background: var(--bg) url('../media/hero-poster.jpg') center/cover no-repeat; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(95deg, rgba(18,13,7,.88) 0%, rgba(18,13,7,.55) 40%, rgba(18,13,7,.1) 66%, rgba(18,13,7,0) 100%),
    linear-gradient(0deg, rgba(18,13,7,.65) 0%, rgba(18,13,7,0) 26%);
}

/* nav */
.nav { position: relative; z-index: 5; display: flex; align-items: center; justify-content: space-between; }
.nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--cream); }
.nav__brand img { display: block; }
.nav__brand span { font-family: var(--display); font-weight: 800; font-size: 27px; letter-spacing: -.01em; }
.nav__links { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 15px; }
.nav__links a { color: var(--cream); text-decoration: none; padding: 8px 14px; border-radius: 999px; }
.nav__links a:not(.nav__cta):hover { background: rgba(255,241,206,.15); }
.nav__links a.nav__cta { margin-left: 8px; font-size: 15px; padding: 11px 22px; border-width: 2.5px; box-shadow: none; color: #fff; }
.nav__links a.nav__cta:hover { background: var(--teal); transform: none; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: rgba(255,241,206,.12); border: 2px solid rgba(255,241,206,.3); border-radius: 12px; padding: 10px; cursor: pointer; }
.nav__toggle span { display: block; width: 22px; height: 2.5px; background: var(--cream); border-radius: 2px; }

/* hero body */
.hero__body {
  position: relative; z-index: 3; flex: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(20px,3vw,48px);
  align-items: center; padding: clamp(16px,3vh,40px) 0 clamp(30px,5vh,60px);
}
.pill-tag {
  display: inline-block; transform: rotate(-2deg); white-space: nowrap;
  background: var(--teal); color: #fff; font-family: var(--display); font-weight: 700; font-size: 14px;
  padding: 7px 15px; border-radius: 999px; border: 2.5px solid var(--ink);
  box-shadow: 0 3px 0 var(--ink); margin-bottom: 24px;
}
.hero h1 { font-family: var(--display); font-weight: 800; font-size: clamp(42px,6vw,86px); line-height: .98; letter-spacing: -.02em; margin: 0 0 20px; }
.hero__lede { font-size: clamp(17px,1.5vw,21px); line-height: 1.5; color: rgba(255,241,206,.92); max-width: 44ch; margin: 0 0 28px; font-weight: 400; }
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }

.badges { list-style: none; display: flex; gap: 10px; flex-wrap: wrap; margin: 0; padding: 0; }
.badge { display: inline-flex; align-items: center; gap: 6px; color: var(--ink); font-family: var(--display); font-weight: 700; font-size: 13px; padding: 7px 14px; border-radius: 999px; border: 2.5px solid var(--ink); }
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ink); }
.badge--yellow { background: var(--yellow); }
.badge--mint { background: var(--mint); }
.badge--pink { background: var(--pink); }

/* goose + honk bubble */
.hero__goose { position: relative; justify-self: center; width: 100%; max-width: 460px; }
.hero__goose img { width: 100%; height: auto; display: block; transform: scaleX(-1); filter: drop-shadow(0 20px 34px rgba(0,0,0,.5)); }
.honk-bubble {
  position: absolute; top: 0; left: 34%; transform: rotate(4deg);
  background: var(--yellow); border: 4px solid var(--ink); border-radius: 18px;
  padding: 8px 18px; font-family: var(--display); font-weight: 800;
  font-size: clamp(22px,2.6vw,34px); line-height: 1; color: var(--ink);
  box-shadow: 0 5px 0 rgba(0,0,0,.25);
}
.honk-bubble::before, .honk-bubble::after { content: ""; position: absolute; width: 0; height: 0; }
.honk-bubble::before { bottom: -15px; left: 20px; border-left: 13px solid transparent; border-right: 13px solid transparent; border-top: 17px solid var(--ink); }
.honk-bubble::after { bottom: -9px; left: 23px; border-left: 9px solid transparent; border-right: 9px solid transparent; border-top: 12px solid var(--yellow); }

.hero__footnote { position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 0 0 18px; }
.yc { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: rgba(255,241,206,.85); }
.yc__mark { width: 24px; height: 24px; border-radius: 5px; background: #fb651e; color: #fff; font-family: var(--display); font-weight: 800; font-size: 16px; display: inline-flex; align-items: center; justify-content: center; }
.yc strong { color: var(--cream); font-weight: 600; }
.hero__joke { font-size: 13px; color: rgba(255,241,206,.55); font-style: italic; }

/* ---------- STEPS ---------- */
.steps { background: #17120b; padding: clamp(54px,8vh,100px) clamp(22px,5vw,68px); }
.steps .section-sub { max-width: 46ch; margin-bottom: 46px; font-size: 16px; color: rgba(255,241,206,.72); }
.steps__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.card { background: var(--cream); color: var(--ink); border: 3px solid var(--ink); border-radius: 20px; padding: 24px; box-shadow: 0 8px 0 rgba(0,0,0,.45); }
.card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.card__num { font-family: var(--display); font-weight: 800; font-size: 30px; color: var(--ink); opacity: .25; }
.card h3 { font-family: var(--display); font-weight: 700; font-size: 23px; margin: 0 0 8px; }
.card p { font-size: 15px; line-height: 1.5; color: #6a6244; margin: 0; }

.icon { width: 56px; height: 56px; border-radius: 14px; border: 3px solid var(--ink); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.icon svg { width: 28px; height: 28px; }
.icon--yellow { background: var(--yellow); }
.icon--orange { background: var(--orange); }
.icon--pink { background: var(--pink); }
.icon--teal { background: var(--teal); }

/* ---------- PIPELINE ---------- */
.pipeline { background: #1a1308; padding: clamp(54px,8vh,100px) clamp(22px,5vw,68px); }
.pipeline__intro { margin-bottom: 42px; }
.flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 12px; }
.flow__card { background: var(--cream); color: var(--ink); border: 3px solid var(--ink); border-radius: 18px; padding: 22px; box-shadow: 0 7px 0 rgba(0,0,0,.4); display: flex; flex-direction: column; gap: 10px; }
.flow__card .icon { width: 52px; height: 52px; border-radius: 13px; }
.flow__card .icon svg { width: 26px; height: 26px; }
.flow__card h3 { font-family: var(--display); font-weight: 700; font-size: 21px; margin: 0; }
.flow__card p { font-size: 14px; line-height: 1.5; color: #6a6244; margin: 0; }
.flow__arrow { display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 30px; font-weight: 800; color: var(--orange); }
.ribbon { display: inline-flex; align-items: center; gap: 10px; background: var(--orange); color: #fff; font-family: var(--display); font-weight: 800; font-size: clamp(16px,1.8vw,20px); padding: 13px 26px; border-radius: 999px; border: 3px solid var(--cream); box-shadow: 0 5px 0 rgba(0,0,0,.3); margin-top: 26px; }
.benefits { list-style: none; display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin: 44px 0 0; padding: 0; }
.benefits li { display: flex; gap: 11px; align-items: flex-start; }
.benefits__check { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: var(--teal); color: #fff; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; }
.benefits strong { font-family: var(--display); font-weight: 700; font-size: 16px; display: block; }
.benefits p { font-size: 14px; line-height: 1.5; color: rgba(255,241,206,.7); margin: 3px 0 0; }

/* ---------- TIME-SYNCED ANNOTATION ---------- */
.annotation { background: #11201d; padding: clamp(54px,8vh,100px) clamp(22px,5vw,68px); }
.annotation__head { margin-bottom: 40px; }
.annotation__head .section-sub { max-width: 56ch; }
.annotation__grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 18px; align-items: start; }

.anno-player { position: relative; border: 2px solid rgba(255,241,206,.2); border-radius: 18px; overflow: hidden; aspect-ratio: 16/9; background: #0c1014; }
.anno-player video, .anno-player canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; background: #0c1014 url('../media/hero-poster.jpg') center/cover no-repeat; }
.anno-player__tc { position: absolute; top: 12px; left: 14px; font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: .06em; color: rgba(255,241,206,.9); }
.anno-player__tc .dim { opacity: .55; }
.anno-player__rec { position: absolute; top: 12px; right: 14px; display: flex; align-items: center; gap: 7px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .06em; color: rgba(255,241,206,.9); }
.rec-dot { width: 8px; height: 8px; border-radius: 50%; background: #ff4438; animation: recDot 1.4s infinite; }
@keyframes recDot { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.anno-player__caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 16px 14px; background: linear-gradient(0deg, rgba(8,10,14,.94), rgba(8,10,14,0) 100%); font-size: 14px; line-height: 1.4; color: var(--cream); }

.anno-list-wrap { display: flex; flex-direction: column; border: 2px solid rgba(255,241,206,.2); border-radius: 18px; overflow: hidden; background: #0c1612; }
.anno-list__head { display: flex; align-items: center; justify-content: space-between; padding: 13px 16px; border-bottom: 1px solid rgba(255,241,206,.12); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .1em; color: rgba(255,241,206,.55); }
.anno-list__live { display: flex; align-items: center; gap: 6px; color: var(--teal); }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.anno-list { position: relative; overflow-y: auto; max-height: 430px; padding: 8px; scrollbar-width: thin; scrollbar-color: rgba(255,241,206,.25) transparent; }
.anno-list::-webkit-scrollbar { width: 8px; }
.anno-list::-webkit-scrollbar-thumb { background: rgba(255,241,206,.22); border-radius: 8px; }
.anno-item { display: flex; gap: 13px; padding: 13px 14px; border-radius: 11px; color: rgba(255,241,206,.5); background: transparent; transition: background .2s, color .2s; }
.anno-item.is-active { background: var(--orange); color: #fff; }
.anno-item__t { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 13px; flex: 0 0 auto; width: 42px; }
.anno-item__d { font-size: 14px; line-height: 1.45; }

@media (max-width: 820px) {
  .annotation__grid { grid-template-columns: 1fr; }
  .anno-list { max-height: 320px; }
}

/* ---------- FLOCK / MARQUEE ---------- */
.flock { background: #11201d; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: clamp(48px,8vh,90px) 0; overflow: hidden; }
.flock__head { padding: 0 clamp(22px,5vw,68px); margin-bottom: clamp(32px,5vh,52px); }
.flock__head .eyebrow { margin-bottom: 14px; }
.flock__title { font-family: var(--display); font-weight: 800; font-size: clamp(40px,7vw,96px); line-height: .95; letter-spacing: -.02em; margin: 0 0 16px; }
.flock__sub { font-size: clamp(16px,1.4vw,20px); color: rgba(255,241,206,.75); max-width: 52ch; margin: 0; }
.marquee { overflow: hidden; width: 100%; padding: 4px 0; }
.marquee__track { display: flex; gap: 14px; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tile { position: relative; flex: 0 0 auto; width: clamp(240px,24vw,340px); aspect-ratio: 16/10; overflow: hidden; border-radius: 16px; border: 2px solid rgba(255,241,206,.22); background: #141a20; }
.tile video, .tile img.tile__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tile__tint { position: absolute; inset: 0; mix-blend-mode: color; opacity: .35; }
.tile__grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,8,11,.05), rgba(6,8,11,.72)); }
.tile__label { position: absolute; bottom: 12px; left: 14px; font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--cream); }

/* ---------- REQUEST FORM ---------- */
.request { background: #17120b; padding: clamp(56px,9vh,110px) clamp(22px,5vw,68px); }
.request__inner { max-width: 740px; margin: 0 auto; }
.request__head { margin-bottom: 30px; }
.geese-row { display: flex; align-items: flex-end; justify-content: center; gap: 4px; margin-bottom: 18px; }
.geese-row .g { height: auto; transform: scaleX(-1); }
.geese-row .g1 { width: 62px; opacity: .5; transform: scaleX(-1) rotate(5deg); }
.geese-row .g2 { width: 90px; opacity: .78; }
.geese-row .g3 { width: 120px; }
.geese-row .g4 { width: 78px; opacity: .66; transform: scaleX(-1) rotate(-5deg); }

.form-card { background: var(--cream); color: var(--ink); border: 3px solid var(--ink); border-radius: 24px; padding: clamp(22px,3.2vw,40px); box-shadow: 0 10px 0 rgba(0,0,0,.45); }
.form__top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 24px; }
.form__step-title { font-family: var(--display); font-weight: 700; font-size: clamp(18px,2.2vw,24px); }
.dots { display: flex; gap: 6px; flex: 0 0 auto; }
.dots span { width: 26px; height: 8px; border-radius: 999px; display: inline-block; background: #e6dcc0; transition: background .2s ease; }
.dots span.on { background: var(--orange); }

.step { border: 0; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.step[data-step="1"], .step[data-step="2"] { gap: 22px; }
.field { display: flex; flex-direction: column; }
.field label { font-family: var(--display); font-weight: 700; font-size: 14px; margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; padding: 13px 16px; border: 2.5px solid var(--ink); border-radius: 12px;
  font-family: var(--body); font-size: 16px; background: #fffaf0; color: var(--ink); outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,122,26,.25); }
.field textarea { min-height: 84px; resize: vertical; }
.field input.invalid { border-color: #e0432f; }
.field__error { margin: 7px 0 0; font-size: 13px; font-weight: 500; color: #e0432f; }

.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px; border-radius: 999px;
  border: 2.5px solid var(--ink); font-family: var(--display); font-weight: 700; font-size: 14px;
  cursor: pointer; user-select: none; background: #fff; color: var(--ink);
  transition: background .12s ease, color .12s ease;
}
.chip[aria-pressed="true"] { background: var(--orange); color: #fff; }
.chip:hover { background: #ffe7a8; }
.chip[aria-pressed="true"]:hover { background: #ff8c33; }

.form__nav { display: flex; align-items: center; gap: 12px; margin-top: 26px; }
.form__nav .spacer { flex: 1; }
.form__error { color: #e0432f; font-weight: 500; font-size: 14px; margin: 16px 0 0; }

.form-success { text-align: center; padding: 14px 6px; }
.form-success img { margin: 0 auto 14px; display: block; }
.form-success h3 { font-family: var(--display); font-weight: 800; font-size: clamp(28px,3.4vw,38px); margin: 0 0 10px; }
.form-success p { font-size: 16px; line-height: 1.5; color: #6a6244; max-width: 42ch; margin: 0 auto 22px; }

/* honeypot — visually hidden but not display:none (bots skip display:none) */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- FOOTER ---------- */
.footer { background: var(--bg); padding: clamp(48px,7vh,80px) clamp(22px,5vw,68px) 28px; border-top: 1px solid rgba(255,241,206,.12); }
.footer__grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 32px; }
.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__brand span { font-family: var(--display); font-weight: 800; font-size: 24px; letter-spacing: -.01em; }
.footer__blurb { font-size: 14px; line-height: 1.55; color: rgba(255,241,206,.6); max-width: 32ch; margin: 0 0 16px; }
.footer__h { font-family: var(--display); font-weight: 700; font-size: 14px; margin-bottom: 12px; }
.footer a { display: block; font-size: 14px; color: rgba(255,241,206,.7); text-decoration: none; padding: 5px 0; }
.footer a:hover { color: var(--orange-lt); }
/* higher specificity than `.footer a` so the button isn't forced to display:block / link color */
.footer a.footer__cta { display: inline-flex; width: auto; margin-top: 8px; color: #fff; font-size: 14px; padding: 11px 20px; border-width: 2.5px; box-shadow: 0 4px 0 rgba(0,0,0,.35); }
.footer a.footer__cta:hover { background: var(--teal); color: #fff; transform: translateY(2px); box-shadow: 0 2px 0 rgba(0,0,0,.35); }
.footer__bar { max-width: 1100px; margin: 34px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,241,206,.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,241,206,.5); }
.footer__bar span { color: inherit; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 920px) {
  .hero__body { grid-template-columns: 1fr; gap: 24px; padding-top: 24px; }
  .hero__goose { grid-row: 1; max-width: 300px; }
  .hero h1 { font-size: clamp(38px,9vw,64px); }
  .steps__grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .flow__arrow { transform: rotate(90deg); padding: 4px 0; }
  .benefits { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: calc(100% + 10px); right: 0; left: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #12100a; border: 2px solid rgba(255,241,206,.18); border-radius: 16px;
    padding: 12px; display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 12px 14px; }
  .nav__cta { margin-left: 0; text-align: center; }
  .hero__joke { display: none; }
  .form__top { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions { gap: 12px; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  .btn, .chip { transition: none; }
}
