/* CourtSound storefront */
:root {
  --canvas: #0b1220;
  --canvas-2: #0e1628;
  --panel: #121b2e;
  --panel-2: #18233a;
  --maple: #c8925a;
  --accent: #ff5b1f;
  --accent-hover: #ff7440;
  --accent-muted: rgba(255, 91, 31, 0.18);
  --text: #eef1f6;
  --text-2: #a3aec2;
  --text-3: #7d889c;
  --line: #2a3650;
  --line-strong: #56627c;
  --ok: #3ecf8e;

  --f-display: 'Big Shoulders Display', 'Arial Narrow', Impact, sans-serif;
  --f-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Consolas, monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --radius: 14px;
  --nav-h: 68px;
  --tshadow: 0 1px 2px rgba(5, 5, 10, 0.95), 0 3px 12px rgba(5, 5, 10, 0.78), 0 10px 44px rgba(5, 5, 10, 0.8);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--canvas);
  color: var(--text);
  font: 400 16px/1.6 var(--f-body);
  -webkit-font-smoothing: antialiased;
  animation: page-in 0.6s var(--ease-out) both;
}
@keyframes page-in {
  from {
    opacity: 0;
  }
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.skip {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--accent);
  color: var(--canvas);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s var(--ease-out);
}
.skip:focus {
  top: 12px;
}
.mono {
  font-family: var(--f-mono);
  letter-spacing: 0.02em;
}
.muted {
  color: var(--text-2);
}
.wrap {
  width: min(1240px, 100% - 48px);
  margin-inline: auto;
}
main {
  outline: none;
}

/* ---------- Environment layer (one world behind everything) ---------- */
.env {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.env-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(40% 35% at 30% 30%, rgba(62, 92, 160, 0.16), transparent 70%),
    radial-gradient(35% 30% at 75% 70%, rgba(200, 146, 90, 0.08), transparent 70%);
  animation: env-drift 90s var(--ease-io) infinite alternate;
  animation-delay: -20s;
}
.env-grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  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='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@keyframes env-drift {
  to {
    transform: translate3d(6%, -4%, 0) rotate(8deg);
  }
}

/* ---------- Announcement + nav ---------- */
.announce {
  position: relative;
  z-index: 60;
  background: #070c16;
  border-bottom: 1px solid rgba(86, 98, 124, 0.25);
  text-align: center;
  font-size: 13px;
  color: var(--text-2);
}
.announce p {
  margin: 0;
  padding: 8px 16px;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  margin-bottom: calc(var(--nav-h) * -1);
  transition: background-color 0.4s var(--ease-out), border-color 0.4s var(--ease-out), backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-solid,
body:not(.home) .nav {
  background: rgba(11, 18, 32, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(86, 98, 124, 0.25);
}
.nav-inner {
  width: min(1240px, 100% - 48px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.logo-mark {
  width: 32px;
  height: 32px;
  flex: none;
}
.wordmark {
  font: 800 24px/1 var(--f-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
}
.nav-links a {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-2);
  transition: color 0.25s var(--ease-out);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:hover {
  color: var(--text);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.bag-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(18, 27, 46, 0.6);
  cursor: pointer;
  transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.bag-btn:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}
.bag-btn svg {
  width: 22px;
  height: 22px;
}
.bag-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--canvas);
  font: 700 12px/20px var(--f-body);
  text-align: center;
}
.bag-count.bump {
  animation: bump 0.5s var(--ease-out);
}
@keyframes bump {
  40% {
    transform: scale(1.35);
  }
}
@media (max-width: 720px) {
  .nav-links {
    display: none;
  }
  .bag-btn {
    margin-left: auto;
  }
  .wordmark {
    font-size: 21px;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: 700 15px/1.2 var(--f-body);
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out),
    transform 0.25s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.btn:active {
  transform: translateY(1px) scale(0.99);
}
.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}
.btn-accent {
  background: var(--accent);
  color: #0b1220;
  box-shadow: 0 6px 24px rgba(255, 91, 31, 0.22);
}
.btn-accent:hover:not([disabled]) {
  background: var(--accent-hover);
  box-shadow: 0 10px 34px rgba(255, 91, 31, 0.34);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(11, 18, 32, 0.35);
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover:not([disabled]) {
  border-color: var(--text);
  transform: translateY(-2px);
}
.btn-small {
  padding: 9px 16px;
  font-size: 14px;
}
.btn-large {
  padding: 16px 30px;
  font-size: 16px;
}
.btn-block {
  width: 100%;
}
.btn.is-loading {
  pointer-events: none;
  opacity: 0.8;
}
@media (pointer: coarse) {
  .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ---------- Type ---------- */
.display {
  font: 800 clamp(40px, 6vw, 84px) / 0.95 var(--f-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.display-sm {
  font: 800 clamp(28px, 3.4vw, 44px) / 1 var(--f-display);
  text-transform: uppercase;
  margin: 0 0 10px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-2);
}
.kicker::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--accent);
}
.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--text-2);
  margin: 0;
  max-width: 52ch;
}
.lede a,
.prose a,
.faq-a a,
.empty a,
.muted a {
  color: var(--text);
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}
.h-small {
  font: 700 13px/1.4 var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-2);
  margin: 0 0 12px;
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: clamp(80px, 11vw, 150px) 0;
}
.section-top {
  padding: calc(var(--nav-h) + clamp(40px, 6vw, 80px)) 0 clamp(70px, 9vw, 120px);
}
.section-head {
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section-head-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.section-head-split .display {
  margin: 0;
}

/* Entrances */
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
html.js .reveal.in {
  opacity: 1;
  transform: none;
}
html.js .reveal-stagger > * {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out), border-color 0.3s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
}
html.js .reveal-stagger.in > * {
  opacity: 1;
  transform: none;
}
.reveal-stagger.in > :nth-child(2) {
  transition-delay: 0.1s;
}
.reveal-stagger.in > :nth-child(3) {
  transition-delay: 0.2s;
}
.reveal-stagger.in > :nth-child(4) {
  transition-delay: 0.3s;
}
.reveal-stagger.in > :nth-child(5) {
  transition-delay: 0.4s;
}
.reveal-stagger.in > :nth-child(6) {
  transition-delay: 0.5s;
}
.reveal-stagger.in.done > :nth-child(n) {
  transition-delay: 0s;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 420vh;
}
.stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #070b14;
}
.poster,
#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.poster {
  background: #070b14 center / cover no-repeat;
}
#hero-video {
  object-fit: cover;
  opacity: 0;
  transform: translateZ(0);
  will-change: transform;
  transition: opacity 0.8s var(--ease-out);
}
.stage.video-ready #hero-video {
  opacity: 1;
}
.stage.video-failed #hero-video {
  display: none;
}
.scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 120% 90% at 50% 45%, rgba(7, 11, 20, 0) 35%, rgba(7, 11, 20, 0.62) 100%),
    linear-gradient(to bottom, rgba(7, 11, 20, 0.55), rgba(7, 11, 20, 0) 22%);
}
.band {
  position: absolute;
  z-index: 2;
  opacity: 0;
  text-shadow: var(--tshadow);
  will-change: opacity;
}
.band::before {
  content: '';
  position: absolute;
  inset: -40% -30%;
  z-index: -1;
  pointer-events: none;
  opacity: calc(0.25 + 0.75 * var(--k, 1));
  background: radial-gradient(ellipse 60% 56% at 50% 50%, rgba(5, 5, 10, 0.66) 0%, rgba(5, 5, 10, 0.44) 46%, rgba(5, 5, 10, 0) 76%);
}
.band .btn {
  text-shadow: none;
}
.band-head {
  font: 800 clamp(48px, 7.2vw, 118px) / 0.92 var(--f-display);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin: 0;
}
.band-sub {
  margin: 18px 0 0;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 500;
  color: #dfe4ec;
}
.band-1 {
  left: max(24px, 6vw);
  top: 26%;
  max-width: 34vw;
}
.band-1 .band-head {
  max-width: 9ch;
}
.band-2 {
  right: max(24px, 6vw);
  top: 38%;
  max-width: 36vw;
  text-align: right;
}
.band-2 .band-head {
  max-width: 10ch;
  margin-left: auto;
}
.band-3 {
  left: max(24px, 6vw);
  top: 50%;
  transform: translateY(-50%);
  max-width: 36vw;
}
.band-3 {
  max-width: 30vw;
}
.band-3 .band-head {
  max-width: 8ch;
  font-size: clamp(44px, 5.6vw, 100px);
}
.band-3 .band-sub {
  max-width: 24ch;
}
.band-3::before {
  opacity: calc(0.35 + 0.65 * var(--k, 1));
  background: radial-gradient(ellipse 62% 58% at 45% 50%, rgba(5, 5, 10, 0.72) 0%, rgba(5, 5, 10, 0.5) 46%, rgba(5, 5, 10, 0) 76%);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

/* split text */
.w {
  display: inline-block;
  white-space: nowrap;
}
.c {
  display: inline-block;
}
/* (f) drift-down: words fall into place like the camera sinking */
.fx-drift .w {
  --kc: clamp(0, (var(--k, 0) - var(--th, 0)) * 2.8, 1);
  opacity: var(--kc);
  transform: translateY(calc((1 - var(--kc)) * -28px));
}
.fx-drift-sub {
  --ks: clamp(0, (var(--k, 0) - 0.5) * 3, 1);
  opacity: var(--ks);
  transform: translateY(calc((1 - var(--ks)) * -12px));
}
/* (c) blur to sharp: the haze clearing */
.fx-blur {
  display: grid;
}
.fx-blur > span {
  grid-area: 1 / 1;
}
.fx-blur .soft {
  filter: blur(12px);
  opacity: calc(1 - var(--k, 0));
}
.fx-blur .sharp {
  opacity: var(--k, 0);
  transform: scale(calc(1.04 - 0.04 * var(--k, 0)));
}
/* (e) rise into a staged settle: arriving on the center circle */
.fx-rise .w {
  --kc: clamp(0, (var(--k, 0) - var(--th, 0)) * 3, 1);
  opacity: var(--kc);
  transform: translateY(calc((1 - var(--kc)) * 0.55em));
}
.fx-rise-sub {
  --ks: clamp(0, (var(--k, 0) - 0.6) * 4, 1);
  opacity: var(--ks);
  transform: translateY(calc((1 - var(--ks)) * 14px));
}
.fx-rise-cta {
  --kb: clamp(0, (var(--k, 0) - 0.74) * 4.5, 1);
  opacity: var(--kb);
  transform: translateY(calc((1 - var(--kb)) * 14px));
  pointer-events: none;
}
.band-3.cta-live .fx-rise-cta {
  pointer-events: auto;
}

.loader {
  position: absolute;
  right: max(24px, 3vw);
  bottom: max(24px, 4vh);
  z-index: 3;
  color: var(--text);
  transition: opacity 0.6s var(--ease-out);
}
.loader .ring {
  width: 40px;
  height: 40px;
  transform: rotate(-90deg);
}
.stage.video-ready .loader,
.stage.video-failed .loader {
  opacity: 0;
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: opacity 0.5s var(--ease-out);
}
.scroll-cue i {
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--text), transparent);
  transform-origin: top;
  animation: cue 2.4s var(--ease-io) infinite;
  animation-delay: -0.6s;
}
@keyframes cue {
  0% {
    transform: scaleY(0);
    opacity: 1;
  }
  60% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 0;
  }
}
.stage.scrolled .scroll-cue {
  opacity: 0;
}
@media (max-height: 560px) {
  .scroll-cue,
  .loader {
    display: none;
  }
}

/* Static hero: phones, portrait tablets, touch portrait, landscape phones, reduced motion.
   These five queries must match hero.js exactly. */
@media (max-width: 720px), (orientation: portrait) and (max-width: 1024px), (hover: none) and (pointer: coarse),
  (orientation: landscape) and (pointer: coarse) and (max-height: 560px), (prefers-reduced-motion: reduce) {
  .hero {
    height: auto;
  }
  .stage {
    position: relative;
    height: auto;
    min-height: 92svh;
    display: flex;
    align-items: flex-end;
  }
  .poster {
    background-image: linear-gradient(to top, rgba(7, 11, 20, 0.92) 8%, rgba(7, 11, 20, 0.2) 60%, rgba(7, 11, 20, 0.55)),
      url('/assets/media/hero-ending.jpg') !important;
    background-position: 58% center;
  }
  #hero-video,
  .loader,
  .scroll-cue,
  .band-1,
  .band-2 {
    display: none;
  }
  .band-3 {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    max-width: none;
    width: 100%;
    padding: calc(var(--nav-h) + 40px) max(24px, 6vw) 56px;
    opacity: 1 !important;
    --k: 1 !important;
  }
  .band-3::before {
    display: none;
  }
  .band-3 .fx-rise-cta {
    pointer-events: auto;
  }
  .band-3 .band-head {
    font-size: clamp(56px, 16vw, 96px);
  }
}

/* ---------- Trust marquee ---------- */
.trust {
  border-block: 1px solid var(--line);
  background: rgba(14, 22, 40, 0.7);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 28px;
  padding: 18px 0;
  animation: marquee 60s linear infinite;
  animation-delay: -12s;
}
.marquee-track span {
  font: 700 clamp(16px, 1.4vw, 20px) / 1 var(--f-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.marquee-track b {
  color: var(--accent);
  font-size: 8px;
  align-self: center;
}
.trust:not(.on) .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Shop ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(16px, 2vw, 28px);
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--panel), rgba(18, 27, 46, 0.6));
  border: 1px solid var(--line);
  overflow: hidden;
}
.card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.card-media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 60%, #1b2740, #0d1424 70%);
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8%;
  transition: transform 0.8s var(--ease-out);
}
.card:hover .card-media img {
  transform: scale(1.05);
}
.card-ph {
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  border: 2px solid var(--line);
}
.card-ph::after {
  content: '';
  position: absolute;
  left: -40%;
  right: -40%;
  top: 50%;
  height: 2px;
  background: var(--line);
}
.tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--canvas);
  font: 700 12px/1 var(--f-body);
}
.tag-sealed {
  background: rgba(11, 18, 32, 0.8);
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.tag-muted {
  background: var(--panel-2);
  color: var(--text-2);
}
.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 22px;
}
.card-brand {
  margin: 0 0 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-3);
}
.card-title {
  margin: 0 0 6px;
  font: 800 28px/1 var(--f-display);
  text-transform: uppercase;
}
.card-title a {
  text-decoration: none;
}
.card-tagline {
  margin: 0 0 16px;
  color: var(--text-2);
  font-size: 15px;
}
.card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
}
.price {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}
.price s,
.pdp-price s {
  color: var(--text-3);
  font-size: 0.8em;
  margin-left: 6px;
}
.empty {
  padding: 56px;
  border: 1px dashed var(--line-strong);
  border-radius: 20px;
  text-align: center;
  color: var(--text-2);
}

/* ---------- Court line divider (signature) ---------- */
.court-divider {
  width: min(1240px, 100% - 48px);
  margin: 0 auto;
  height: clamp(60px, 9vw, 120px);
}
.court-divider svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.court-divider .draw {
  fill: none;
  stroke: var(--line-strong);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--draw, 0));
}
.court-divider .draw-dot {
  fill: var(--accent);
  opacity: clamp(0, (var(--draw, 0) - 0.45) * 8, 1);
}

/* ---------- Silence (interactive moment) ---------- */
.silence-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.features {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.features li {
  display: flex;
  gap: 18px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(18, 27, 46, 0.4);
  opacity: 0.38;
  transform: translateX(-6px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), border-color 0.7s var(--ease-out),
    background-color 0.7s var(--ease-out);
}
.features.lit li {
  opacity: 1;
  transform: none;
  border-color: rgba(255, 91, 31, 0.45);
  background: rgba(255, 91, 31, 0.06);
}
.features.lit li:nth-child(2) {
  transition-delay: 0.18s;
}
.features.lit li:nth-child(3) {
  transition-delay: 0.36s;
}
.feat-num {
  color: var(--accent);
  font-size: 13px;
  padding-top: 4px;
}
.features h3 {
  margin: 0 0 2px;
  font: 800 22px/1.1 var(--f-display);
  text-transform: uppercase;
}
.features p {
  margin: 0;
  color: var(--text-2);
  font-size: 15px;
}
.silence-stage {
  position: relative;
  aspect-ratio: 1;
  max-width: 560px;
  width: 100%;
  margin-inline: auto;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(200, 146, 90, 0.16), rgba(11, 18, 32, 0) 62%);
  display: grid;
  place-items: center;
}
.silence-stage::before {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 2px solid var(--line);
}
.silence-stage::after {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  box-shadow: 0 0 80px 10px rgba(255, 91, 31, 0.25);
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
}
.silence-stage.done::after {
  opacity: 1;
}
.crowd {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.hold {
  position: relative;
  z-index: 2;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  border: 0;
  background: rgba(11, 18, 32, 0.85);
  color: var(--accent);
  cursor: pointer;
  display: grid;
  place-items: center;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  box-shadow: 0 0 0 1px var(--line-strong), 0 20px 50px rgba(0, 0, 0, 0.4);
}
.hold:hover {
  transform: scale(1.03);
}
.hold.is-holding {
  transform: scale(0.96);
}
.hold-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.hold-label {
  font: 800 22px/1 var(--f-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}
.hold-help {
  position: absolute;
  bottom: 4%;
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* ---------- Genuine ---------- */
.genuine {
  padding-top: 0;
}
.genuine-media {
  position: relative;
  height: clamp(280px, 42vw, 560px);
  overflow: hidden;
}
.genuine-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.genuine-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--canvas) 0%, rgba(11, 18, 32, 0) 30%, rgba(11, 18, 32, 0) 55%, var(--canvas) 100%),
    linear-gradient(to right, rgba(11, 18, 32, 0.7), rgba(11, 18, 32, 0) 60%);
}
.genuine-inner {
  position: relative;
  margin-top: calc(clamp(280px, 42vw, 560px) * -0.42);
}
.proofs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.proof {
  padding: 30px 28px;
  border-radius: 20px;
  background: rgba(14, 22, 40, 0.86);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.proof svg {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
}
.proof h3 {
  margin: 0 0 8px;
  font: 800 26px/1.05 var(--f-display);
  text-transform: uppercase;
}
.proof p {
  margin: 0;
  color: var(--text-2);
}

/* ---------- Steps ---------- */
.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 32px);
  counter-reset: none;
}
.step-media {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid var(--line);
}
.step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.step:hover .step-media img {
  transform: scale(1.04);
}
.step-num {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.step h3 {
  margin: 0 0 8px;
  font: 800 30px/1 var(--f-display);
  text-transform: uppercase;
}
.step p:last-child {
  margin: 0;
  color: var(--text-2);
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.faq-grid .section-head {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary i {
  position: relative;
  width: 16px;
  height: 16px;
  flex: none;
}
.faq-item summary i::before,
.faq-item summary i::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 7px;
  height: 2px;
  background: var(--accent);
  transition: transform 0.35s var(--ease-out);
}
.faq-item summary i::after {
  transform: rotate(90deg);
}
.faq-item[open] summary i::after {
  transform: rotate(0deg);
}
.faq-a {
  padding: 0 0 22px;
  color: var(--text-2);
  animation: faq-open 0.45s var(--ease-out);
}
.faq-a p {
  margin: 0;
  max-width: 62ch;
}
@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
}

/* ---------- Final CTA ---------- */
.final {
  overflow: hidden;
  text-align: center;
  padding: clamp(110px, 16vw, 220px) 0;
}
.final-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.final-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.final-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(11, 18, 32, 0.45), var(--canvas) 85%);
}
.final-inner .display {
  font-size: clamp(52px, 9vw, 140px);
  margin-bottom: 36px;
  text-shadow: var(--tshadow);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: #080d18;
  padding: 64px 0 28px;
  color: var(--text-2);
}
.footer-inner {
  width: min(1240px, 100% - 48px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
}
.footer-brand p {
  margin: 14px 0 18px;
  max-width: 34ch;
}
.footer h2 {
  margin: 4px 0 14px;
  font: 700 12px/1 var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text);
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li + li {
  margin-top: 10px;
}
.footer-col a {
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}
.footer-col a:hover {
  color: var(--text);
}
.pay-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pay-badges li {
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font: 500 12px/1 var(--f-mono);
  color: var(--text-2);
}
.footer-base {
  width: min(1240px, 100% - 48px);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer-base p {
  margin: 0;
}
.disclaimer {
  max-width: 70ch;
  color: var(--text-3);
}

/* ---------- Cart drawer ---------- */
.cart {
  position: fixed;
  inset: 0;
  z-index: 80;
}
.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 12, 0.6);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100%);
  display: flex;
  flex-direction: column;
  background: var(--canvas-2);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}
.cart.open .cart-backdrop {
  opacity: 1;
}
.cart.open .cart-panel {
  transform: none;
}
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.cart-head h2 {
  margin: 0;
  font: 800 28px/1 var(--f-display);
  text-transform: uppercase;
}
.icon-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: none;
  cursor: pointer;
}
.icon-btn svg {
  width: 20px;
  height: 20px;
}
.cart-items {
  flex: 1;
  overflow: auto;
  padding: 8px 24px;
}
.cart-empty {
  padding: 48px 0;
  text-align: center;
  color: var(--text-2);
}
.line {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.line-img {
  width: 76px;
  height: 76px;
  border-radius: 12px;
  background: var(--panel);
  object-fit: contain;
  padding: 6px;
}
.line-name {
  margin: 0 0 8px;
  font-weight: 700;
  line-height: 1.3;
}
.line-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}
.line-qty button {
  width: 32px;
  height: 32px;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 16px;
}
.line-qty span {
  min-width: 22px;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 14px;
}
.line-right {
  text-align: right;
}
.line-remove {
  display: block;
  margin-top: 8px;
  margin-left: auto;
  border: 0;
  background: none;
  color: var(--text-3);
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}
.cart-foot {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
}
.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
  font-weight: 700;
}
.cart-row.muted {
  font-weight: 400;
}
.cart-note {
  margin: 4px 0 16px;
  font-size: 13px;
  color: var(--text-3);
}
.cart-secure {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--text-2);
}
.cart-secure svg {
  width: 15px;
  height: 15px;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 90;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--text);
  color: var(--canvas);
  font-weight: 700;
  font-size: 14px;
  opacity: 0;
  transform: translate(-50%, 16px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ---------- Product page ---------- */
.pdp-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.gallery {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.gallery-main {
  position: relative;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 60%, #1b2740, #0d1424 70%);
  border: 1px solid var(--line);
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6%;
  transition: opacity 0.35s var(--ease-out);
}
.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
}
.thumb {
  flex: none;
  width: 76px;
  height: 76px;
  padding: 4px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--panel);
  cursor: pointer;
  transition: border-color 0.25s var(--ease-out);
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.thumb.is-active {
  border-color: var(--accent);
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 12px;
  color: var(--text-3);
}
.crumbs a {
  text-decoration: none;
  color: var(--text-2);
}
.pdp-title {
  font-size: clamp(44px, 5vw, 76px);
  margin-bottom: 12px;
}
.pdp-price {
  margin: 22px 0 6px;
  font-size: 28px;
}
.stock {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--ok);
}
.stock-low {
  color: var(--maple);
}
.stock-out {
  color: var(--text-3);
}
.buy {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.buy .btn {
  flex: 1;
  min-width: 200px;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  height: 54px;
}
.qty button {
  width: 44px;
  height: 100%;
  border: 0;
  background: none;
  font-size: 20px;
  cursor: pointer;
}
.qty input {
  width: 40px;
  border: 0;
  background: none;
  text-align: center;
  font-family: var(--f-mono);
  -moz-appearance: textfield;
}
.qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.pdp-trust {
  list-style: none;
  margin: 0 0 32px;
  padding: 20px 22px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  display: grid;
  gap: 8px;
  color: var(--text-2);
  font-size: 15px;
}
.pdp-trust b {
  color: var(--text);
}
.pdp-desc {
  margin-bottom: 28px;
  color: var(--text-2);
}
.pdp-desc p {
  margin: 0 0 12px;
}
.ticks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.ticks li {
  position: relative;
  padding-left: 26px;
}
.ticks li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 8px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ---------- Docs / contact / success ---------- */
.doc-wrap {
  max-width: 820px;
}
.doc-wrap.center {
  text-align: center;
}
.doc-wrap.center .lede {
  margin: 0 auto 28px;
}
.doc-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 44px;
  font-size: 13px;
}
.doc-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text-2);
  transition: border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.doc-nav a:hover {
  border-color: var(--line-strong);
  color: var(--text);
}
.prose {
  color: var(--text-2);
  font-size: 17px;
}
.prose h2 {
  margin: 44px 0 12px;
  font: 800 30px/1.05 var(--f-display);
  text-transform: uppercase;
  color: var(--text);
}
.prose h3 {
  color: var(--text);
  margin: 28px 0 8px;
}
.prose strong {
  color: var(--text);
}
.prose ul,
.prose ol {
  padding-left: 22px;
}
.prose li {
  margin-bottom: 6px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 36px 0;
  display: grid;
  gap: 16px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: baseline;
  gap: 12px;
}
.contact-list .mono {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-3);
}
.form {
  padding: clamp(24px, 3vw, 40px);
  border-radius: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
}
.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field label {
  font-weight: 700;
  font-size: 14px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--canvas);
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-muted);
}
.field .invalid {
  border-color: #ff6b6b;
}
.hp {
  position: absolute;
  left: -9999px;
}
.form-status {
  margin: 14px 0 0;
  min-height: 1.6em;
  font-weight: 500;
}
.form-status.ok {
  color: var(--ok);
}
.form-status.err {
  color: #ff8a8a;
}
.receipt {
  margin: 32px 0;
  padding: 24px;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
}
.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 8px 0;
}
.receipt-row.total {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-weight: 700;
  font-size: 18px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .silence-grid,
  .faq-grid,
  .pdp-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid .section-head,
  .gallery {
    position: static;
  }
  .proofs,
  .step-list {
    grid-template-columns: 1fr;
    max-width: 640px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 720px) {
  .wrap,
  .nav-inner,
  .court-divider,
  .footer-inner,
  .footer-base {
    width: calc(100% - 36px);
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .genuine-inner {
    margin-top: -60px;
  }
  .card-title {
    font-size: 24px;
  }
}

/* ---------- Pause off-screen / hidden tabs ---------- */
body.paused *,
body.paused *::before,
body.paused *::after {
  animation-play-state: paused !important;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }
  html.js .reveal,
  html.js .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
  .court-divider .draw {
    stroke-dashoffset: 0;
  }
  .court-divider .draw-dot {
    opacity: 1;
  }
  .features li {
    opacity: 1;
    transform: none;
  }
  .toast {
    transform: translate(-50%, 0);
  }
}

/* ================= Phones, tablets, and every screen in between ================= */

html {
  -webkit-tap-highlight-color: transparent;
}
a,
button,
summary,
label {
  touch-action: manipulation;
}
section[id] {
  scroll-margin-top: calc(var(--nav-h) + 8px);
}

/* Mobile menu */
.menu-btn {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(18, 27, 46, 0.6);
  cursor: pointer;
}
.menu-btn span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.35s var(--ease-out);
}
.menu-btn span:first-child {
  transform: translateY(-4px);
}
.menu-btn span:last-child {
  transform: translateY(4px);
}
.menu-btn[aria-expanded='true'] span:first-child {
  transform: rotate(45deg);
}
.menu-btn[aria-expanded='true'] span:last-child {
  transform: rotate(-45deg);
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--nav-h) + 56px + env(safe-area-inset-top)) 24px calc(28px + env(safe-area-inset-bottom));
  overflow-y: auto;
  background: rgba(8, 13, 24, 0.97);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
.mobile-menu.open {
  opacity: 1;
}
.mobile-menu nav {
  display: grid;
}
.mobile-menu nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font: 800 40px/1 var(--f-display);
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}
.mobile-menu.open nav a {
  opacity: 1;
  transform: none;
}
.mobile-menu.open nav a:nth-child(2) {
  transition-delay: 0.05s;
}
.mobile-menu.open nav a:nth-child(3) {
  transition-delay: 0.1s;
}
.mobile-menu.open nav a:nth-child(4) {
  transition-delay: 0.15s;
}
.mobile-menu-foot p {
  margin: 12px 0 0;
  text-align: center;
  color: var(--text-2);
  font-size: 14px;
}
body.menu-open .nav {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
@media (max-width: 720px) {
  .menu-btn {
    display: inline-block;
  }
  .bag-btn {
    margin-left: 0;
  }
  .nav-inner {
    gap: 10px;
  }
}
@media (min-width: 721px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Sticky add to bag on phones */
.buy-bar {
  display: none;
}
@media (max-width: 1024px) {
  .buy-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px max(16px, env(safe-area-inset-left)) calc(12px + env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-right));
    background: rgba(11, 18, 32, 0.96);
    border-top: 1px solid var(--line);
    transform: translateY(110%);
    transition: transform 0.4s var(--ease-out);
  }
  .buy-bar.show {
    transform: none;
  }
  .buy-bar-info {
    flex: 1;
    min-width: 0;
  }
  .buy-bar-info p {
    margin: 0;
  }
  .buy-bar-name {
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .page-product .footer {
    padding-bottom: 96px;
  }
}

/* Safe areas on notched phones */
.cart-foot {
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
}
.toast {
  bottom: calc(24px + env(safe-area-inset-bottom));
}
.cart-items {
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

/* Touch screens: no sticky hover states, lighter effects that stay smooth on any phone */
@media (hover: none) {
  .btn-accent:hover:not([disabled]),
  .btn-ghost:hover:not([disabled]),
  .bag-btn:hover,
  .hold:hover {
    transform: none;
  }
  .card:hover {
    box-shadow: none;
    border-color: var(--line);
  }
  .card:hover .card-media img,
  .step:hover .step-media img {
    transform: none;
  }
}
@media (hover: none) and (pointer: coarse), (max-width: 720px) {
  .env-glow {
    animation: none;
    inset: 0;
  }
  .env-grain {
    display: none;
  }
  .proof {
    backdrop-filter: none;
    background: rgba(14, 22, 40, 0.96);
  }
  .nav.is-solid,
  body:not(.home) .nav {
    background: rgba(11, 18, 32, 0.95);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .btn-accent {
    box-shadow: 0 4px 14px rgba(255, 91, 31, 0.2);
  }
}

/* Phone type and spacing */
@media (max-width: 720px) {
  .announce {
    font-size: 12px;
  }
  .announce p {
    padding: 7px 12px;
  }
  .display {
    font-size: clamp(38px, 11vw, 56px);
  }
  .section {
    padding: 72px 0;
  }
  .section-head {
    margin-bottom: 28px;
  }
  .grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .card {
    border-radius: 16px;
  }
  .card-media img {
    padding: 6%;
  }
  .card-body {
    padding: 12px 12px 14px;
  }
  .card-title {
    font-size: 20px;
  }
  .card-tagline {
    display: none;
  }
  .card-foot {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .card-foot .btn {
    width: 100%;
  }
  .tag {
    top: 8px;
    left: 8px;
    font-size: 11px;
    padding: 5px 8px;
  }
  .features li {
    padding: 14px 16px;
  }
  .silence-stage {
    max-width: 340px;
  }
  .hold {
    width: 112px;
    height: 112px;
  }
  .proof {
    padding: 22px 20px;
  }
  .final {
    padding: 96px 0;
  }
  .final-inner .display {
    font-size: clamp(44px, 13vw, 72px);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .pdp-title {
    font-size: clamp(36px, 10vw, 52px);
  }
  .buy .btn {
    min-width: 0;
  }
  .contact-list li {
    grid-template-columns: 70px 1fr;
  }
  .receipt-row {
    font-size: 15px;
  }
  .mobile-menu nav a {
    font-size: 36px;
  }
}
/* Very small phones */
@media (max-width: 360px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .wordmark {
    font-size: 18px;
  }
  .logo-mark {
    width: 28px;
    height: 28px;
  }
}
/* Tablets */
@media (min-width: 721px) and (max-width: 1024px) {
  .proofs,
  .step-list {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }
  .step h3,
  .proof h3 {
    font-size: 24px;
  }
  .nav-links {
    gap: 20px;
  }
}
/* Landscape phones: keep the static hero compact */
@media (orientation: landscape) and (max-height: 560px) {
  .stage {
    min-height: 100svh;
  }
  .band-3 {
    padding-top: calc(var(--nav-h) + 16px);
    padding-bottom: 28px;
  }
  .band-3 .band-head {
    font-size: clamp(40px, 9vh, 64px);
  }
}
/* Big screens */
@media (min-width: 1800px) {
  .wrap,
  .nav-inner,
  .court-divider,
  .footer-inner,
  .footer-base {
    width: min(1480px, 100% - 96px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu nav a {
    opacity: 1;
    transform: none;
  }
  .buy-bar {
    transition: none;
  }
}
/* Phones scroll fast: entrances arrive sooner and quicker */
@media (max-width: 720px), (hover: none) and (pointer: coarse) {
  html.js .reveal,
  html.js .reveal-stagger > * {
    transform: translateY(16px);
    transition-duration: 0.55s;
  }
  .reveal-stagger.in > :nth-child(n) {
    transition-delay: 0s;
  }
}
.footer-brand .footer-email {
  margin: -8px 0 18px;
}
.footer-email a {
  color: var(--text);
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}
