:root {
  --navy-950: #07090e;
  --navy-900: #0b1018;
  --navy-800: #121925;
  --navy-700: #1a2433;
  --gold-100: #f8eed0;
  --gold-200: #f0d78c;
  --gold-400: #d4af37;
  --gold-500: #c9a227;
  --gold-700: #8a6b1a;
  --ivory: #f3eee0;
  --ink: #c8bea6;
  --muted: #8d846f;
  --crimson: #b21e34;
  --flag-blue: #16325c;
  --display: "Bodoni Moda", "Times New Roman", serif;
  --label: "Cinzel", "Times New Roman", serif;
  --body: "Libre Baskerville", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--navy-950);
  color: var(--ivory);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

code {
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
}

.stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 500px at 80% 8%, rgba(212, 175, 55, 0.1), transparent 55%),
    radial-gradient(700px 420px at 8% 70%, rgba(22, 50, 92, 0.28), transparent 60%),
    linear-gradient(180deg, #0a0e14 0%, #07090e 45%, #0b1018 100%);
}

#bokeh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.stage-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.22;
  animation: drift 18s var(--ease) infinite alternate;
}

.stage-glow-a {
  width: 420px;
  height: 420px;
  background: #d4af37;
  top: -80px;
  right: 8%;
}

.stage-glow-b {
  width: 360px;
  height: 360px;
  background: #1a3a6b;
  bottom: 8%;
  left: -40px;
  animation-delay: -7s;
}

.stage-grain {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.stage-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(7, 9, 14, 0.78) 100%);
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-30px, 24px, 0) scale(1.08); }
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 80;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.15s ease;
  mix-blend-mode: screen;
}

.cursor-ring.on {
  opacity: 1;
}

.foil {
  background: linear-gradient(115deg, #8a6b1a 0%, #f6e7b2 22%, #d4af37 40%, #fff4c8 50%, #c9a227 62%, #8a6b1a 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: foil-shift 8s linear infinite;
}

@keyframes foil-shift {
  0% { background-position: 0% 50%; }
  100% { background-position: 220% 50%; }
}

.kicker {
  margin: 0 0 12px;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.kicker.light {
  color: var(--gold-200);
}

.flag-rule {
  width: 180px;
  height: 9px;
  margin: 22px auto 0;
  background:
    linear-gradient(var(--crimson), var(--crimson)) 0 0 / 100% 3px no-repeat,
    linear-gradient(#f3eee0, #f3eee0) 0 50% / 100% 3px no-repeat,
    linear-gradient(#1e5aa8, #1e5aa8) 0 100% / 100% 3px no-repeat;
}

.star-arch {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.star-arch svg {
  width: 14px;
  height: 14px;
  fill: var(--gold-400);
  animation: twinkle 2.8s ease-in-out infinite;
}

.star-arch svg:nth-child(1),
.star-arch svg:nth-child(5) {
  width: 10px;
  height: 10px;
  transform: translateY(8px);
  animation-delay: 0.2s;
}

.star-arch svg:nth-child(2),
.star-arch svg:nth-child(4) {
  width: 12px;
  height: 12px;
  transform: translateY(3px);
  animation-delay: 0.45s;
}

.star-arch svg:nth-child(3) {
  width: 16px;
  height: 16px;
}

.star-arch.light svg {
  fill: var(--gold-200);
  filter: drop-shadow(0 0 8px rgba(240, 215, 140, 0.45));
}

@keyframes twinkle {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s var(--ease) forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--label);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s ease;
}

.btn-mark {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.btn-gold {
  background: linear-gradient(180deg, #f0d78c 0%, #d4af37 46%, #8a6b1a 100%);
  color: #1a1406;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.22), inset 0 1px 0 rgba(255, 244, 200, 0.5);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(212, 175, 55, 0.34);
}

.btn-ghost {
  border: 1px solid rgba(212, 175, 55, 0.38);
  background: rgba(12, 16, 24, 0.55);
  color: var(--gold-200);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--gold-400);
  background: rgba(212, 175, 55, 0.08);
}

.btn-ghost .btn-mark[src*="x.svg"] {
  filter: invert(86%) sepia(28%) saturate(500%) hue-rotate(6deg);
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  align-content: center;
  background: #07090e;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.splash.is-out {
  opacity: 0;
  visibility: hidden;
}

.splash-word {
  margin: 8px 0 10px;
  font-family: var(--display);
  font-size: clamp(42px, 8vw, 86px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.splash-sub {
  margin: 0;
  font-family: var(--label);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--gold-400);
}

.splash-rule {
  width: min(320px, 70vw);
  height: 6px;
  margin: 18px 0;
  background:
    linear-gradient(var(--crimson), var(--crimson)) 0 0 / 100% 2px no-repeat,
    linear-gradient(#f3eee0, #f3eee0) 0 50% / 100% 2px no-repeat,
    linear-gradient(var(--flag-blue), var(--flag-blue)) 0 100% / 100% 2px no-repeat;
}

.splash-stars {
  margin-bottom: 4px;
}

.ticker {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(7, 9, 14, 0.72);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 48px;
  padding: 10px 0;
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-400);
  animation: ticker 28s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.mast {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(7, 9, 14, 0.62);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.mast.is-tight {
  background: rgba(7, 9, 14, 0.88);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.mast-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mast-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mast-seal {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold-400);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.mast-seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}

.mast-name {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
}

.mast-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.mast-nav a {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
}

.mast-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.mast-nav a:not(.btn):hover {
  color: var(--gold-200);
}

.mast-nav a:not(.btn):hover::after {
  transform: scaleX(1);
}

.mast-x {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 50%;
}

.mast-x img {
  width: 14px;
  height: 14px;
  filter: invert(86%) sepia(28%) saturate(500%) hue-rotate(6deg);
}

.mast-buy {
  min-height: 42px;
  padding: 0 16px;
}

.mast-burger {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
}

.mast-burger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--gold-200);
  transition: 0.3s ease;
}

.mast-burger span:nth-child(1) { top: 14px; }
.mast-burger span:nth-child(2) { top: 20px; }
.mast-burger span:nth-child(3) { top: 26px; }

.mast-burger.is-open span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.mast-burger.is-open span:nth-child(2) { opacity: 0; }

.mast-burger.is-open span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.hero-symbol {
  margin: 16px 0 10px;
  font-family: var(--label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--ink);
}

.hero-symbol span {
  color: var(--gold-200);
}

.hero-line {
  margin: 0 0 28px;
  max-width: 28ch;
  font-style: italic;
  color: var(--ink);
}

.ca-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 14px;
  margin-bottom: 24px;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(18, 25, 37, 0.7);
}

.ca-label {
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.ca-value {
  font-size: 13px;
  color: var(--ivory);
  word-break: break-all;
}

.ca-copy {
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a1406;
  background: var(--gold-400);
  padding: 6px 10px;
}

.ca-copy.is-done {
  background: var(--ivory);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-marks span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-marks img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.hero-fone {
  display: grid;
  justify-items: center;
}

.bezel {
  position: relative;
  width: min(340px, 86vw);
  aspect-ratio: 9 / 16.4;
  padding: 12px;
  border-radius: 42px;
  background:
    linear-gradient(160deg, #f6e7b2 0%, #d4af37 28%, #6d5312 52%, #e8cc74 78%, #8a6b1a 100%);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(246, 231, 178, 0.25),
    0 0 80px rgba(212, 175, 55, 0.16);
  transform: rotate(-4deg);
  animation: fone-float 7s ease-in-out infinite;
}

.bezel-shine {
  position: absolute;
  inset: 8px;
  border-radius: 36px;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 244, 200, 0.28), transparent 32%, transparent 68%, rgba(255, 255, 255, 0.08));
  z-index: 3;
}

.bezel-ear {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 92px;
  height: 18px;
  transform: translateX(-50%);
  background: #0b0d11;
  border-radius: 12px;
  z-index: 4;
}

.bezel-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #111;
}

.bezel-still,
.bezel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 38%;
}

.bezel-video {
  opacity: 0;
  pointer-events: none;
}

.bezel.has-video .bezel-video {
  opacity: 1;
}

.bezel.has-video .bezel-still {
  opacity: 0;
}

.bezel-still {
  animation: ken 18s ease-in-out infinite alternate;
}

.bezel-glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 26%, transparent 70%, rgba(7, 9, 14, 0.28));
}

.bezel-home {
  position: absolute;
  bottom: 16px;
  left: 50%;
  width: 72px;
  height: 4px;
  transform: translateX(-50%);
  background: rgba(243, 238, 224, 0.35);
  border-radius: 99px;
  z-index: 4;
}

.bezel-caption {
  margin: 28px 0 0;
  font-family: var(--label);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--gold-400);
}

@keyframes fone-float {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-2.5deg) translateY(-12px); }
}

@keyframes ken {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-2%, 2%, 0); }
}

.letter,
.taps,
.tape {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 110px;
}

.letter-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.letter-copy {
  padding: 36px 40px;
  background: rgba(12, 16, 24, 0.72);
  border: 1px solid rgba(212, 175, 55, 0.16);
  box-shadow: inset 0 1px 0 rgba(246, 231, 178, 0.06);
}

.letter-copy p {
  margin: 0 0 18px;
  color: var(--ink);
}

.letter-copy .lead {
  color: var(--ivory);
  font-size: 20px;
}

.letter-copy .close {
  margin-bottom: 0;
  font-style: italic;
  color: var(--gold-200);
}

.notes {
  display: grid;
  gap: 14px;
}

.note {
  padding: 18px 20px 20px;
  background: linear-gradient(180deg, rgba(26, 36, 51, 0.92), rgba(12, 16, 24, 0.92));
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-left: 3px solid var(--gold-400);
  transform-origin: top right;
  animation: note-in 0.8s var(--ease) both;
}

.note:nth-child(2) { animation-delay: 0.15s; }
.note:nth-child(3) { animation-delay: 0.3s; }

.note-time {
  display: block;
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 6px;
}

.note strong {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.note p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
}

@keyframes note-in {
  from {
    opacity: 0;
    transform: translateY(16px) rotate(1.2deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.tap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tap {
  position: relative;
  padding: 28px 22px 26px;
  background: rgba(12, 16, 24, 0.74);
  border: 1px solid rgba(212, 175, 55, 0.14);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
}

.tap::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), #f3eee0, var(--flag-blue));
}

.tap-num {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  color: var(--gold-400);
  margin-bottom: 16px;
}

.tap-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.tap-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.tap h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
}

.tap p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
}

.tap:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.taps-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.tape-frame {
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(8, 10, 14, 0.86);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.tape-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.tape-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 12px var(--gold-400);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

.tape-out {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-200);
}

.tape-out img {
  width: 16px;
  height: 16px;
}

.tape-screen {
  height: min(640px, 72vw);
  background: #0b0d11;
}

.tape-screen iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.tape-wait {
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px 20px;
  color: var(--ink);
}

.tape-wait strong {
  display: block;
  font-family: var(--display);
  font-size: 32px;
  color: var(--gold-200);
  margin-bottom: 8px;
}

.signal {
  padding: 0 0 0;
}

.signal-still {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  justify-items: center;
  overflow: hidden;
}

.signal-still > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: ken 22s ease-in-out infinite alternate;
}

.signal-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 14, 0.08) 0%, rgba(7, 9, 14, 0.18) 42%, rgba(7, 9, 14, 0.82) 100%);
}

.signal-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 24px 72px;
  max-width: 720px;
}

.signal-copy h2 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 800;
}

.signal-copy p {
  margin: 0 0 28px;
  color: var(--ivory);
  font-style: italic;
}

.colophon {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  background: rgba(7, 9, 14, 0.86);
}

.colophon-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.colophon .foil {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.02em;
  text-transform: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .letter-grid,
  .tap-list {
    grid-template-columns: 1fr;
  }

  .mast-burger {
    display: block;
  }

  .mast-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 16px 20px 22px;
    background: rgba(7, 9, 14, 0.96);
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .mast-nav.is-open {
    display: flex;
  }

  .mast-buy {
    width: 100%;
  }

  .hero {
    padding-top: 36px;
  }

  .bezel {
    width: min(280px, 78vw);
  }

  .letter-copy {
    padding: 28px 22px;
  }

  .signal-still {
    min-height: 620px;
  }

  .colophon-inner {
    flex-direction: column;
    text-align: center;
    padding: 24px 0;
  }

  .cursor-ring {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .foil,
  .ticker-track,
  .bezel,
  .bezel-still,
  .signal-still > img,
  .stage-glow,
  .star-arch svg,
  .tape-live {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .cursor-ring {
    display: none;
  }
}
