/* GigClick — gigclickapp.com
   Amber on black, stage-gear minimalism. The site is the app's fourth screen. */

@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/space-grotesk-var.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
}

/* The app renders its counter in Android's Roboto (FontWeight.Black) —
   the site's counter and app mockups must match it exactly. */
@font-face {
  font-family: "Roboto";
  src: url("/fonts/roboto-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg: #060606;
  --panel: #0d0d0c;
  --line: rgba(237, 237, 237, 0.1);
  --text: #ededed;
  --dim: #9b9b95;
  --faint: #7f7f78;
  --amber: #ffb74d;
  --amber-ink: #131313;
  --font-d: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-b: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-app: "Roboto", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* clip (where supported) forbids horizontal panning outright; hidden is the
   fallback for older engines. Both html and body, or mobile browsers wiggle. */
html, body { overflow-x: hidden; overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--amber); color: var(--amber-ink); }

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

a { color: var(--amber); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap { max-width: 1120px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 40px); }

/* ── Type ─────────────────────────────────────────── */

h1, h2, h3, .wordmark, .big-price, .pillar-glyph {
  font-family: var(--font-d);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 6.2vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); margin-bottom: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-d);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 1.1rem;
}
.eyebrow.center { justify-content: center; }
.ticks { width: 40px; height: 14px; flex: none; }

/* ── Header ───────────────────────────────────────── */

header.site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.4rem;
}
.brand { display: flex; align-items: center; gap: 0.65rem; color: var(--text); flex: none; }
.brand:hover { text-decoration: none; }
.mark { width: 34px; height: 34px; flex: none; }

/* The amber needle in the mark ticks over on hover, like the app's dial.
   Origin 350px,440px = the hub (470,560) minus the 120,120 view-box offset. */
@media (prefers-reduced-motion: no-preference) {
  .mark .needle {
    transform-box: view-box;
    transform-origin: 350px 440px;
    transition: rotate 300ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .brand:hover .mark .needle { rotate: 16deg; }
}
.wordmark { font-size: 1.3rem; letter-spacing: -0.01em; }

/* ── Buttons ──────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  padding: 0.9rem 1.7rem;
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn:hover { text-decoration: none; }

.btn-primary { background: var(--amber); color: var(--amber-ink); }
.btn-primary:hover { background: #ffc670; }

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  padding: 0.55rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

.btn-coming {
  cursor: default;
  user-select: none;
}

.btn-primary.btn-coming {
  border: 1px solid rgba(255, 183, 77, 0.45);
  background: transparent;
  color: var(--amber);
}

.btn-primary.btn-coming:hover {
  background: transparent;
}

.btn-ghost.btn-coming:hover {
  border-color: var(--line);
  color: var(--text);
}

.coming-short {
  display: none;
}

/* ── Hero ─────────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(3rem, 8vw, 6.5rem);
  min-height: 72vh;
}

.hero h1 {
  font-size: clamp(2.75rem, 6.4vw, 4.625rem);
}

.lede {
  color: var(--dim);
  font-size: clamp(1.1rem, 1.7vw, 1.25rem);
  max-width: 34em;
  margin-top: 1.4rem;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}
.price-note { color: var(--dim); font-size: 0.95rem; }
.price-note strong { color: var(--text); font-family: var(--font-d); }
.fine {
  margin-top: 1.1rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--faint);
}

/* The live counter */

.counter {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  padding-block: 1rem;
  user-select: none;
}
/* With JS the counter is tappable (tap tempo); manipulation kills the
   double-tap zoom delay so quick taps register cleanly on touch screens. */
.js .counter { cursor: pointer; touch-action: manipulation; }

.glow {
  position: absolute;
  inset: -12% -18%;
  background: radial-gradient(closest-side, rgba(255, 183, 77, 0.16), transparent 72%);
  opacity: 0.45;
  transition: opacity 140ms ease-out;
  pointer-events: none;
}
.counter.down .glow { opacity: 1; }

.num {
  font-family: var(--font-app);
  font-weight: 900;
  font-size: clamp(11rem, 26vw, 19rem);
  line-height: 0.95;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  position: relative;
}
.num.down { color: var(--amber); }
.num.pop { animation: pop 180ms ease-out; }
@keyframes pop {
  from { transform: scale(1.045); }
  to   { transform: scale(1); }
}

.syls {
  display: flex;
  gap: 2.1rem;
  margin-top: 1rem;
  font-family: var(--font-app);
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--faint);
  position: relative;
}
.syl { transition: color 90ms linear; min-width: 1.2em; text-align: center; }
.syl.on { color: var(--text); }
.counter.down .syl.on:first-child { color: var(--amber); }

.dots { display: flex; gap: 1.1rem; margin-top: 1.6rem; position: relative; }
.dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: #262622;
  transition: background 90ms linear;
}
.dot.on { background: var(--text); }
.dot.on.one { background: var(--amber); }

.counter-bpm {
  margin-top: 1.3rem;
  font-family: var(--font-d);
  font-size: 0.85rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--faint);
  position: relative;
}

/* ── Sections ─────────────────────────────────────── */

.section { padding-block: clamp(4rem, 9vw, 7rem); border-top: 1px solid var(--line); }

/* Pillars */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
}
.pillar {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.9rem 1.7rem 1.7rem;
  overflow: hidden;
  transition: border-color 240ms ease;
}
.pillar:hover { border-color: rgba(255, 183, 77, 0.4); }
.pillar-glyph {
  font-weight: 700;
  font-size: 4.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 183, 77, 0.55);
  margin-bottom: 1.4rem;
  letter-spacing: -0.03em;
  white-space: nowrap;
  transition: -webkit-text-stroke-color 240ms ease;
}
.pillar:hover .pillar-glyph { -webkit-text-stroke-color: rgba(255, 183, 77, 0.95); }
.pillar h3 + p { color: var(--dim); font-size: 0.98rem; margin-top: 0.4rem; }

/* Screenshot gallery */

#screens h2 { margin-bottom: 0; }
/* Wide screens: all five frames fit — a plain centered grid, nothing to scroll. */
.gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.5vw, 1.8rem);
  max-width: 1120px;
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(20px, 4vw, 40px) 1.5rem;
}
/* Narrower: a swipeable strip with snap points. */
@media (max-width: 1080px) {
  .gallery {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 218px;
    max-width: none;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: var(--faint) transparent;
  }
  .shot { scroll-snap-align: start; }
}
.phone {
  aspect-ratio: 9 / 19;
  border: 1px solid #2c2c28;
  border-radius: 30px;
  background: #0b0b0a;
  padding: 9px;
  box-shadow: 0 24px 60px -32px rgba(0, 0, 0, 0.9);
  transition: border-color 240ms ease;
}
.shot:hover .phone { border-color: #45453e; }
.shot figcaption { transition: color 240ms ease; }
.shot:hover figcaption { color: var(--text); }
.screen {
  height: 100%;
  border-radius: 22px;
  background: #010101;
  overflow: hidden;
}
.screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shot figcaption {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--dim);
  line-height: 1.45;
  max-width: 24ch;
}

/* Bluetooth sync */

.sync-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.sync-copy { color: var(--dim); max-width: 36em; }
.sync-copy em { color: var(--text); font-style: normal; font-weight: 600; }

.sync-diagram { display: grid; gap: 1.7rem; }
.srow { display: grid; gap: 0.55rem; }
.slabel {
  font-family: var(--font-d);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}
.strip { display: flex; gap: clamp(1.4rem, 3.5vw, 2.6rem); }
.strip i { width: 3px; height: 26px; background: var(--text); border-radius: 2px; }
.srow.late .strip { transform: translateX(clamp(0.8rem, 2vw, 1.5rem)); }
.srow.late .strip i { background: var(--faint); }
.srow.fixed .strip { transform: translateX(clamp(0.8rem, 2vw, 1.5rem)); }
.srow.fixed .strip i { background: var(--amber); box-shadow: 0 0 14px rgba(255, 183, 77, 0.5); }
.srow.fixed .slabel { color: var(--amber); }

/* The diagram plays itself: a pulse sweeps each row left to right on a loop.
   The in-ears row flashes late; GigClick's row lands back in step with the
   phone's. Static (current styling) under reduced motion. */
@media (prefers-reduced-motion: no-preference) {
  .strip i:nth-child(1) { --i: 0; }
  .strip i:nth-child(2) { --i: 1; }
  .strip i:nth-child(3) { --i: 2; }
  .strip i:nth-child(4) { --i: 3; }
  .strip i:nth-child(5) { --i: 4; }
  .strip i:nth-child(6) { --i: 5; }
  .strip i {
    animation: tick-sweep 2.4s linear infinite;
    /* negative delay: every tick is already mid-cycle at load, no initial jump */
    animation-delay: calc(var(--i) * 0.4s + var(--late, 0s) - 2.4s);
  }
  .srow.late .strip { --late: 0.22s; }
}
@keyframes tick-sweep {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  4%       { opacity: 1;   transform: scaleY(1.35); }
  14%      { opacity: 0.4; transform: scaleY(1); }
}

/* Practice tools */

.tools {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
.tool {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem 1.4rem 1.3rem;
  transition: border-color 240ms ease;
}
.tool:hover { border-color: rgba(255, 183, 77, 0.35); }
.tool h3 { font-size: 1.05rem; }
.tool p { color: var(--dim); font-size: 0.93rem; }

.section-link {
  margin-top: 2rem;
  font-family: var(--font-d);
  font-weight: 600;
}

.section-link a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 0.55rem;
}

.section-link span {
  transition: transform 160ms ease-out;
}

.section-link a:hover span {
  transform: translateX(4px);
}

/* Full feature list — one compact disclosure, laid out like a stage manual. */

.feature-list {
  margin-top: clamp(2.25rem, 5vw, 4rem);
  border-block: 1px solid var(--line);
}

.feature-list > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 92px;
  padding: 1.25rem 0;
  cursor: pointer;
  list-style: none;
}

.feature-list > summary::-webkit-details-marker { display: none; }

.feature-summary-copy {
  display: grid;
  gap: 0.2rem;
}

.feature-summary-kicker {
  color: var(--faint);
  font-family: var(--font-d);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.feature-summary-title {
  font-family: var(--font-d);
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.feature-summary-action {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--amber);
  flex: none;
  font-family: var(--font-d);
  font-size: 0.9rem;
  font-weight: 600;
}

.feature-summary-action::after {
  content: "+";
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 183, 77, 0.45);
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  transition: rotate 160ms ease;
}

.feature-list[open] .feature-summary-action::after { rotate: 45deg; }

.feature-groups {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  padding: 0 0 clamp(2.5rem, 5vw, 4rem);
}

.feature-group {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.feature-group-head {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.feature-group-head span {
  color: var(--amber);
  font-family: var(--font-d);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.feature-group h3 {
  font-size: 1.05rem;
  margin: 0;
}

.feature-group ul {
  display: grid;
  gap: 0.65rem;
  list-style: none;
}

.feature-group li {
  position: relative;
  padding-left: 0.9rem;
  color: var(--dim);
  font-size: 0.9rem;
  line-height: 1.5;
}

.feature-group li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--amber);
}

/* Price — the amber-lit stage sits behind the one number that matters.
   Decorative background only; a heavy scrim keeps text contrast intact. */

.price {
  position: relative;
  background: url("/img/stage.jpg") center 35% / cover no-repeat var(--bg);
}
.price::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    rgba(6, 6, 6, 0.78) 30%,
    rgba(6, 6, 6, 0.86) 62%,
    var(--bg) 100%
  );
}
.price .wrap { position: relative; text-align: center; }
.big-price {
  font-weight: 300;
  font-size: clamp(4.5rem, 13vw, 9rem);
  color: var(--amber);
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-line {
  font-family: var(--font-d);
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  font-weight: 600;
  margin-top: 0.6rem;
}
.no-list {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem 0;
  margin-top: 1.6rem;
  font-family: var(--font-d);
  font-size: 0.92rem;
  color: var(--dim);
}
.no-list li { padding-inline: 1.1rem; }
.no-list li + li { border-left: 1px solid var(--line); }
.price-sub { color: var(--faint); font-size: 0.95rem; margin-top: 1rem; }
.price .btn { margin-top: 2.2rem; }

/* FAQ */

#faq { max-width: 780px; }
#faq details {
  border-bottom: 1px solid var(--line);
}
#faq details:first-of-type { border-top: 1px solid var(--line); }
#faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 1.06rem;
  padding: 1.15rem 2.2rem 1.15rem 0;
  position: relative;
}
#faq summary::-webkit-details-marker { display: none; }
#faq summary::after {
  content: "+";
  position: absolute;
  right: 0.2rem;
  top: 50%;
  translate: 0 -50%;
  color: var(--amber);
  font-weight: 400;
  font-size: 1.5rem;
  transition: rotate 160ms ease;
}
#faq details[open] summary::after { rotate: 45deg; }
#faq details p { color: var(--dim); padding-bottom: 1.3rem; max-width: 60ch; }

/* Disclosure contents ease in rather than snapping open. */
@media (prefers-reduced-motion: no-preference) {
  #faq details[open] p,
  .feature-list[open] .feature-groups { animation: rise-in 280ms cubic-bezier(0.22, 1, 0.36, 1); }
}
@keyframes rise-in {
  from { opacity: 0; translate: 0 6px; }
}

/* Footer */

.site-foot { border-top: 1px solid var(--line); padding-block: 2.2rem; }
.foot-grid {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.foot-brand { font-family: var(--font-d); font-weight: 600; }
.foot-brand span { font-weight: 400; color: var(--faint); font-size: 0.9rem; }
.foot-links { display: flex; align-items: center; gap: 0.5rem 1.6rem; flex-wrap: wrap; font-size: 0.9rem; }
.foot-links a { display: inline-flex; align-items: center; min-height: 44px; }
.foot-links span { color: var(--faint); }

/* 404 — a bar with a beat missing. */

.nf {
  min-height: calc(100vh - 180px);
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 2rem 20px 4rem;
}
.nf-num {
  font-family: var(--font-app);
  font-weight: 900;
  font-size: clamp(7rem, 24vw, 13rem);
  line-height: 1;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
}
.nf-dots { display: flex; gap: 1.1rem; margin-top: 1.5rem; }
.nf-dots span { width: 13px; height: 13px; border-radius: 50%; background: var(--text); }
.nf-dots .off { background: transparent; border: 1px solid var(--faint); }
.nf-msg { color: var(--dim); margin-top: 1.7rem; }
.nf .btn { margin-top: 2.1rem; }

/* Prose pages (privacy) */

.prose { max-width: 720px; padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.prose h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.6rem; }
.prose h2 { font-size: 1.3rem; margin: 2.2rem 0 0.6rem; }
.prose p, .prose li { color: var(--dim); }
.prose ul { padding-left: 1.2rem; margin-top: 0.6rem; }
.prose li { margin-top: 0.55rem; }
.prose li strong, .prose p strong { color: var(--text); }
.prose .effective { font-size: 0.9rem; color: var(--faint); margin-bottom: 2rem; }
.prose blockquote {
  border-left: 3px solid var(--amber);
  padding: 0.4rem 0 0.4rem 1.2rem;
  margin: 1.4rem 0;
  font-family: var(--font-d);
  font-size: 1.15rem;
  color: var(--text);
}

/* Scroll reveal — progressive enhancement only: .js is set by main.js,
   so without JavaScript every section stays fully visible. */

.js .reveal { opacity: 0; translate: 0 16px; transition: opacity 600ms ease, translate 600ms ease; }
.js .reveal.in { opacity: 1; translate: 0 0; }

/* Cards inside a revealed section cascade in, one small beat apart.
   border-color rides along (delay pinned to 0s) so hover warmth still eases. */
.js .reveal :is(.pillar, .tool, .shot) {
  opacity: 0;
  translate: 0 14px;
  transition: opacity 550ms ease, translate 550ms ease, border-color 240ms ease;
}
.js .reveal.in :is(.pillar, .tool, .shot) { opacity: 1; translate: 0 0; }
.js .reveal.in :is(.pillar, .tool, .shot):nth-child(2) { transition-delay: 80ms, 80ms, 0s; }
.js .reveal.in :is(.pillar, .tool, .shot):nth-child(3) { transition-delay: 160ms, 160ms, 0s; }
.js .reveal.in :is(.pillar, .tool, .shot):nth-child(4) { transition-delay: 240ms, 240ms, 0s; }
.js .reveal.in :is(.pillar, .tool, .shot):nth-child(5) { transition-delay: 320ms, 320ms, 0s; }
.js .reveal.in :is(.pillar, .tool, .shot):nth-child(6) { transition-delay: 400ms, 400ms, 0s; }

/* ── Responsive ───────────────────────────────────── */

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: 0; text-align: center; padding-block: 2rem 3rem; }
  .hero-copy { display: grid; justify-items: center; }
  .counter { padding-block: 2rem 0; }
  .num { font-size: clamp(9rem, 44vw, 15rem); }
  .syls { font-size: 1.5rem; gap: 1.7rem; }
  /* keep the glow inside the viewport — full-width column, no side margin */
  .glow { inset: -10% -4%; }
  .pillars, .tools { grid-template-columns: 1fr; }
  .sync-grid { grid-template-columns: 1fr; }
  .gallery { grid-auto-columns: 200px; }
  .feature-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .coming-long { display: none; }
  .coming-short { display: inline; }
  .cta-row { flex-direction: column; gap: 0.9rem; }
  .no-list { flex-direction: column; gap: 0.35rem; }
  .no-list li + li { border-left: none; }
  .feature-summary-action { font-size: 0; gap: 0; }
  .feature-list > summary { min-height: 84px; }
  .feature-groups { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  header.site { gap: 0.75rem; }
  header.site .btn-ghost { min-height: 44px; padding-inline: 0.8rem; font-size: 0.85rem; }
  .play-prefix { display: none; }
}

/* ── Reduced motion ───────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; translate: none; transition: none; }
  .num.pop { animation: none; }
  .glow, .syl, .dot { transition: none; }
}
