:root {
  --bg: #0b0907;
  --bg-2: #15100c;
  --panel: rgba(255, 244, 222, 0.075);
  --panel-strong: rgba(255, 244, 222, 0.13);
  --text: #fff3df;
  --muted: #cbb99f;
  --faint: #8d7c65;
  --gold: #f3b24d;
  --orange: #d96c27;
  --green: #95b46a;
  --red: #a63a24;
  --line: rgba(255, 244, 222, 0.15);
  --shadow: rgba(0, 0, 0, 0.45) 0 24px 80px;
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, rgba(217, 108, 39, 0.34), transparent 30rem),
    radial-gradient(circle at 86% 18%, rgba(149, 180, 106, 0.18), transparent 24rem),
    linear-gradient(140deg, #0b0907 0%, #15100c 52%, #070605 100%);
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  mix-blend-mode: overlay;
  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='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(11, 9, 7, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: rgba(0,0,0,.22) 0 12px 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #170c05;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 50%;
  font-family: Rye, Georgia, serif;
}
nav { display: flex; gap: 4px; }
nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
}
nav a:hover { color: var(--text); background: rgba(255,255,255,.07); }

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  align-items: center;
  gap: 44px;
  padding: 72px 0 64px;
}
.eyebrow {
  color: var(--gold);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 1000;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 28px;
  font-family: Rye, Georgia, serif;
  font-size: clamp(5.4rem, 15vw, 13.5rem);
  line-height: .78;
  font-weight: 400;
  letter-spacing: -.07em;
  text-shadow: rgba(0,0,0,.7) 0 28px 65px;
}
h2 {
  margin-bottom: 18px;
  max-width: 820px;
  font-size: clamp(2.25rem, 5.2vw, 5.6rem);
  line-height: .9;
  letter-spacing: -.07em;
}
h3 { margin-bottom: 7px; font-size: 1.3rem; letter-spacing: -.03em; }
p { color: var(--muted); line-height: 1.7; }
.lede { max-width: 760px; font-size: clamp(1.22rem, 2vw, 1.72rem); }
.hero-actions, .connect-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  font-weight: 1000;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: .82rem;
}
.btn-primary {
  color: #170c05;
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: rgba(217,108,39,.28) 0 16px 46px;
}
.btn-secondary { background: rgba(255,255,255,.055); }
.btn:hover { transform: translateY(-1px); }
.hero-card {
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(145deg, rgba(255,244,222,.13), rgba(255,244,222,.035)),
    radial-gradient(circle at top right, rgba(243,178,77,.25), transparent 18rem);
  box-shadow: var(--shadow);
}
.record-card {
  min-height: 390px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.18)),
    radial-gradient(circle at 72% 22%, rgba(149,180,106,.48), transparent 8rem),
    linear-gradient(135deg, #462514, #15100c 58%, #050403);
  position: relative;
  overflow: hidden;
}
.record-card::before {
  content: "";
  position: absolute;
  inset: 44px 44px auto auto;
  width: 190px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 28px solid rgba(0,0,0,.34);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.09), 0 0 0 1px rgba(255,255,255,.05);
}
.record-card > * { position: relative; }
.label {
  display: block;
  color: var(--faint);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 1000;
  margin-bottom: 6px;
}
.record-card strong { display: block; font-size: clamp(2.2rem, 4vw, 4rem); letter-spacing: -.06em; }
.play-button {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #120904;
  font-weight: 1000;
  cursor: pointer;
  box-shadow: rgba(0,0,0,.4) 0 12px 38px;
}
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stats-grid div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(0,0,0,.26);
  border: 1px solid var(--line);
}
.stats-grid strong { display: block; font-size: 2.4rem; letter-spacing: -.07em; }
.stats-grid span { color: var(--muted); font-size: .92rem; }

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(0,0,0,.22);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 42px;
  padding: 18px 0;
  animation: scroll 34s linear infinite;
}
.marquee span {
  color: rgba(255,243,223,.85);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 1000;
}
@keyframes scroll { to { transform: translateX(-50%); } }

.split, .story, .proof, .connect { padding: 96px 0; }
.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 44px;
  align-items: start;
}
.track-list { display: grid; gap: 10px; }
.track {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
}
.track span { color: var(--gold); font-weight: 1000; }
.track.featured { background: linear-gradient(135deg, rgba(217,108,39,.22), rgba(255,244,222,.07)); }
.track p { margin-bottom: 0; }
.story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: stretch;
}
.story-panel, .connect-card {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.poster-stack { position: relative; min-height: 460px; }
.poster {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.poster span { font-family: Rye, Georgia, serif; font-size: 3rem; line-height: .9; }
.poster small { color: rgba(255,243,223,.8); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.poster-one { transform: rotate(-5deg); background: linear-gradient(145deg, #7c351d, #1a0f0a); }
.poster-two { inset: 54px 0 0 32px; transform: rotate(5deg); background: linear-gradient(145deg, #293315, #0c0a08); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.proof-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel);
  color: var(--text);
  text-decoration: none;
}
.proof-card:hover { background: var(--panel-strong); transform: translateY(-2px); }
.proof-card span { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: .75rem; font-weight: 1000; }
.connect-card { text-align: center; }
.connect-card h2, .connect-card p { margin-left: auto; margin-right: auto; }
.connect-card p { max-width: 740px; }
.connect-actions { justify-content: center; }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 44px;
  color: var(--faint);
  border-top: 1px solid var(--line);
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 860px) {
  nav { display: none; }
  .hero, .split, .story { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 54px; }
  .record-card { min-height: 320px; }
  .proof-grid, .stats-grid { grid-template-columns: 1fr; }
  .poster-stack { min-height: 390px; }
  .site-footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
