:root {
  --ink: #0b0908;
  --ink-2: #141110;
  --paper: #f2ece2;
  --paper-2: #e6dfd2;
  --red: #b22222;
  --red-bright: #d93838;
  --red-dark: #7a1616;
  --muted: #8a827a;
  --rule: rgba(242, 236, 226, 0.14);
  --serif: "Instrument Serif", "GT Sectra", Georgia, serif;
  --sans: "Inter Tight", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
a {
  color: inherit;
  text-decoration: none;
}
.mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.serif {
  font-family: var(--serif);
  font-weight: 400;
}
.italic {
  font-style: italic;
}
.wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 720px) {
  .wrap {
    padding: 0 20px;
  }
}

/* ===== TOP NAV ===== */
nav.top {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 9, 8, 0.75);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--rule);
}
nav.top .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand .dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    var(--red) 0 26%,
    #0a0807 27% 32%,
    #1c1b1a 33% 100%
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  animation: spin 4s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.brand .name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.01em;
}
.brand .name em {
  color: var(--red-bright);
  font-style: italic;
}
nav.top ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.top ul a {
  font-size: 13.5px;
  color: #c9c1b6;
  transition: color 0.2s;
}
nav.top ul a:hover {
  color: var(--paper);
}
nav.top .cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform 0.15s,
    background 0.2s;
}
nav.top .cta:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
}
@media (max-width: 820px) {
  nav.top ul {
    display: none;
  }
}

/* ===== TICKER ===== */
.ticker {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  background: #0e0b0a;
}
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  padding: 10px 0;
  animation: tick 40s linear infinite;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b8afa3;
  will-change: transform;
}
.ticker-track span.acc {
  color: var(--red-bright);
}
@keyframes tick {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
}
.hero .wrap {
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.eyebrow .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: #d7cfc3;
}
.eyebrow .tag.red {
  border-color: rgba(217, 56, 56, 0.35);
  background: rgba(178, 34, 34, 0.08);
  color: #f2b3b3;
}
h1.head {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.93;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
h1.head em {
  color: var(--red-bright);
  font-style: italic;
}
h1.head .small {
  display: block;
  font-size: 0.42em;
  line-height: 1.15;
  color: #c9c1b6;
  margin-top: 18px;
  letter-spacing: 0;
  font-family: var(--serif);
  font-style: normal;
}
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Official store badges */
.store-badge {
  display: inline-flex;
  align-items: center;
  transition:
    transform 0.15s,
    opacity 0.2s;
  line-height: 0;
}
.store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}
.store-badge img {
  display: block;
  height: 52px;
  width: auto;
}
.store-badge.apple img {
  background: #000;
  border-radius: 8px;
  padding: 0;
}
.store-badge.google img {
  height: 76px;
  margin: -12px -10px;
}

.price-pill {
  margin-left: 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #e8dfb6;
  border: 1px dashed rgba(232, 223, 182, 0.35);
  padding: 7px 12px;
  border-radius: 999px;
}

/* vinyl composition */
.vinyl-box {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 580px;
  margin: 0 auto;
}
.vinyl {
  position: absolute;
  inset: 0;
  background: url("assets/vinyl.png") center/contain no-repeat;
  animation: spin 12s linear infinite;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.6));
  cursor: pointer;
}
.vinyl.paused {
  animation-play-state: paused;
}
.sleeve {
  position: absolute;
  width: 58%;
  aspect-ratio: 1/1;
  top: 7%;
  left: -14%;
  background: linear-gradient(135deg, #1a1716 0%, #0d0a09 100%);
  border: 1px solid rgba(242, 236, 226, 0.1);
  border-radius: 2px;
  transform: rotate(-6deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.sleeve::after {
  content: "";
  position: absolute;
  inset: 8%;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0 22px,
      rgba(242, 236, 226, 0.04) 22px 23px
    ),
    radial-gradient(circle at 50% 50%, var(--red-dark) 0 14%, transparent 15%);
}
.sleeve .label {
  position: absolute;
  bottom: 10%;
  left: 10%;
  right: 10%;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  color: var(--paper);
}
.sleeve .label small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a827a;
  margin-top: 8px;
  font-style: normal;
}
.hero-meta {
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a827a;
  text-align: right;
}
.hero-meta strong {
  color: var(--red-bright);
  font-weight: 500;
}

.giant-no {
  position: absolute;
  right: -30px;
  top: -40px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(200px, 26vw, 420px);
  color: var(--red-dark);
  opacity: 0.18;
  line-height: 0.85;
  pointer-events: none;
  z-index: 0;
}

/* ===== STATS STRIP ===== */
.stats {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: #0e0b0a;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 32px 28px;
  border-right: 1px solid var(--rule);
}
.stat:last-child {
  border-right: none;
}
.stat .n {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--paper);
}
.stat .n em {
  color: var(--red-bright);
  font-style: italic;
}
.stat .l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a827a;
  margin-top: 10px;
}
@media (max-width: 820px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  .stat:nth-child(odd) {
    border-right: 1px solid var(--rule);
  }
  .stat:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

/* ===== FEATURES ===== */
.section {
  padding: 140px 0;
  position: relative;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}
.section-label .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-bright);
}
.section-label .line {
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.section-label .kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a827a;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 160px;
}
.feature-row.flip {
  direction: rtl;
}
.feature-row.flip > * {
  direction: ltr;
}
@media (max-width: 980px) {
  .feature-row,
  .feature-row.flip {
    grid-template-columns: 1fr;
    gap: 48px;
    direction: ltr;
    margin-bottom: 100px;
  }
}
.feature-copy h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
}
.feature-copy h2 em {
  color: var(--red-bright);
  font-style: italic;
}
.feature-copy p {
  font-size: 17px;
  line-height: 1.55;
  color: #c9c1b6;
  max-width: 480px;
  margin: 0 0 24px;
}
.feature-copy ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-copy li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  font-size: 15px;
}
.feature-copy li:last-child {
  border-bottom: 1px solid var(--rule);
}
.feature-copy li .mono {
  color: var(--red-bright);
  min-width: 40px;
}
.feature-copy li b {
  color: var(--paper);
  font-weight: 600;
}
.feature-copy li span.d {
  color: #9a9287;
}

/* phone shells */
.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 620px;
}
.phone {
  position: relative;
  width: 320px;
  aspect-ratio: 9/19.5;
  background: #000;
  border-radius: 44px;
  padding: 10px;
  border: 1.5px solid #2a2623;
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.6),
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(242, 236, 226, 0.05);
}
.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
  display: block;
}
.phone.tilt-l {
  transform: rotate(-4deg);
}
.phone.tilt-r {
  transform: rotate(4deg);
}
.phone-deco {
  position: absolute;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a827a;
}
.phone-deco .arrow {
  color: var(--red-bright);
  display: inline-block;
  margin-right: 8px;
}

/* ===== DAY OF SHOWCASE ===== */
.dayof {
  background:
    radial-gradient(
      ellipse at 20% 0%,
      rgba(178, 34, 34, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 100% 100%,
      rgba(178, 34, 34, 0.1) 0%,
      transparent 50%
    ),
    #0a0807;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.dayof::before {
  content: "RSD DAY · RSD DAY · RSD DAY · RSD DAY · RSD DAY · RSD DAY · ";
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14vw;
  line-height: 1;
  color: rgba(178, 34, 34, 0.06);
  pointer-events: none;
  animation: tick 60s linear infinite;
}
.dayof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
@media (max-width: 980px) {
  .dayof-grid {
    grid-template-columns: 1fr;
  }
}
.dayof-head {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  font-weight: 400;
}
.dayof-head em {
  color: var(--red-bright);
  font-style: italic;
}
.dayof-lede {
  font-size: 18px;
  color: #c9c1b6;
  line-height: 1.55;
  max-width: 480px;
  margin-bottom: 32px;
}
.dayof-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.dayof-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}
.dayof-list li .mono {
  color: var(--red-bright);
  min-width: 24px;
}
.dayof-list li b {
  color: var(--paper);
}
.dayof-list li span.d {
  color: #9a9287;
}

.progress-card {
  background: linear-gradient(180deg, #1a1615 0%, #0e0b0a 100%);
  border: 1px solid rgba(242, 236, 226, 0.1);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.progress-card .hdr {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.progress-card .hdr .big {
  font-family: var(--serif);
  font-size: 72px;
  color: var(--red-bright);
  line-height: 1;
}
.progress-card .hdr .big .total {
  font-size: 24px;
  color: #8a827a;
  font-style: italic;
  margin-left: 6px;
}
.progress-card .hdr .pct {
  font-family: var(--mono);
  font-size: 14px;
  color: #c9c1b6;
  letter-spacing: 0.1em;
}
.progress-bar {
  height: 3px;
  background: rgba(242, 236, 226, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 28px;
}
.progress-bar .fill {
  height: 100%;
  background: var(--red);
  width: 81%;
  border-radius: 2px;
  position: relative;
}
.progress-bar .fill::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -2px;
  width: 9px;
  height: 9px;
  background: var(--red-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--red-bright);
}
.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(242, 236, 226, 0.04);
  border: 1px solid rgba(242, 236, 226, 0.08);
  border-radius: 12px;
  transition: background 0.3s;
}
.check-item.found {
  background: rgba(42, 120, 60, 0.12);
  border-color: rgba(80, 200, 100, 0.35);
}
.check-item.missed {
  background: rgba(120, 120, 120, 0.06);
  border-color: rgba(242, 236, 226, 0.06);
  opacity: 0.55;
}
.check-item .art {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  flex-shrink: 0;
  background: var(--red-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--paper);
  font-size: 14px;
}
.check-item .art.bw {
  background: #1a1615;
  color: #8a827a;
}
.check-item .art.blue {
  background: #1e3a5f;
}
.check-item .art.pink {
  background: #d94a7c;
  color: #1a1615;
}
.check-item .art.orange {
  background: #c26a2a;
}
.check-item .info {
  flex: 1;
  min-width: 0;
}
.check-item .artist {
  font-size: 11px;
  color: #8a827a;
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.check-item .title {
  font-size: 14px;
  color: var(--paper);
  font-weight: 500;
  line-height: 1.25;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.check-item .title.miss {
  text-decoration: line-through;
  color: #8a827a;
}
.check-item .circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
}
.circle.x {
  background: transparent;
  border: 1.5px solid rgba(242, 236, 226, 0.2);
  color: #8a827a;
}
.circle.c {
  background: #2ea043;
  color: white;
}
.circle.xm {
  background: transparent;
  border: 1.5px solid rgba(242, 236, 226, 0.15);
  color: #5a534c;
}

/* ===== SEASONS cards ===== */
.season-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 480px;
  margin-top: 28px;
}
.season-card {
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 18px;
}
.season-card.past {
  opacity: 0.75;
}
.season-card .red {
  color: var(--red-bright);
}
.season-card .sub {
  color: #8a827a;
}
.season-card .title {
  font-size: 28px;
  margin-top: 8px;
}
.season-card .title em {
  color: var(--red-bright);
  font-style: italic;
}
.season-card .sub + .sub {
  margin-top: 8px;
}

/* ===== CRATE BREAK ===== */
.crate {
  position: relative;
  height: min(80vh, 720px);
  background: url("assets/crate.jpg") center/cover no-repeat fixed;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.crate::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(11, 9, 8, 0.65) 0%,
      rgba(11, 9, 8, 0.2) 30%,
      rgba(11, 9, 8, 0.2) 70%,
      rgba(11, 9, 8, 0.85) 100%
    ),
    linear-gradient(
      90deg,
      rgba(11, 9, 8, 0.55) 0%,
      rgba(11, 9, 8, 0) 50%,
      rgba(11, 9, 8, 0.55) 100%
    );
}
.crate::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(178, 34, 34, 0.08);
  mix-blend-mode: multiply;
}
.crate .inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 0;
}
.crate .quote {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--paper);
  max-width: 900px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
  hanging-punctuation: first last;
}
.crate .quote em {
  color: var(--red-bright);
  font-style: italic;
}
.crate .quote .mark {
  font-size: 1.4em;
  color: var(--red-bright);
  line-height: 1;
}
.crate .quote .mark.open {
  /* Hang the opening quote in the left margin so "The" aligns at the edge */
  position: absolute;
  right: 100%;
  top: -0.08em;
  margin-right: 0.08em;
}
.crate .quote .mark.close {
  display: inline-block;
  vertical-align: 0;
  margin-left: 0.18em;
}
@media (max-width: 720px) {
  /* On narrow screens the negative-offset quote can clip the wrap edge;
     bring it back inline rather than overflowing. */
  .crate .quote .mark.open {
    position: static;
    display: inline-block;
    vertical-align: -0.1em;
    margin-right: 0.1em;
  }
}
.crate .attrib {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d7cfc3;
}
.crate .attrib .r {
  text-align: right;
}
.crate .attrib strong {
  color: var(--red-bright);
  font-weight: 500;
}
@media (max-width: 820px) {
  .crate {
    background-attachment: scroll;
    height: auto;
    min-height: 500px;
  }
}

/* ===== FAQ ===== */
.faq-section {
  padding-top: 60px;
}
.faq-wrap {
  max-width: 840px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--rule);
  padding: 28px 0;
  cursor: pointer;
}
.faq-item:last-child {
  border-bottom: 1px solid var(--rule);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.2;
  transition: color 0.2s;
}
.faq-item:hover .faq-q {
  color: var(--red-bright);
}
.faq-q .plus {
  font-family: var(--mono);
  font-size: 20px;
  color: var(--red-bright);
  transition: transform 0.3s;
}
.faq-item.open .plus {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    margin-top 0.3s;
  color: #c9c1b6;
  font-size: 16px;
  line-height: 1.6;
}
.faq-item.open .faq-a {
  max-height: 300px;
  margin-top: 18px;
}

/* ===== FINAL CTA ===== */
.final {
  padding: 160px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final h2 {
  font-family: var(--serif);
  font-size: clamp(60px, 11vw, 180px);
  line-height: 0.92;
  margin: 0 0 40px;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.final h2 em {
  color: var(--red-bright);
  font-style: italic;
}
.final .cta-row {
  justify-content: center;
}
.final .sub {
  color: #8a827a;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* ===== FOOTER ===== */
footer.site {
  border-top: 1px solid var(--rule);
  padding: 40px 0;
  color: #8a827a;
  font-size: 13px;
}
footer.site .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
footer.site a:hover {
  color: var(--paper);
}
footer.site .links {
  display: flex;
  gap: 24px;
}
footer.site .discl {
  font-size: 11px;
  color: #6b635b;
  max-width: 500px;
  line-height: 1.5;
  margin-top: 16px;
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s,
    transform 0.8s;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .brand .dot,
  .vinyl,
  .ticker-track,
  .dayof::before {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
