:root {
  --bg: #08090a;
  --panel: #101214;
  --ink: #f2f0ea;
  --muted: #a3a39f;
  --line: rgba(255,255,255,.16);
  --signal: #b8ff32;
  --signal-soft: rgba(184,255,50,.12);
  --header-h: 86px;
  --pad: clamp(22px, 4vw, 70px);
  --scroll-progress: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--signal); color: #000; }
:focus-visible { outline: 2px solid var(--signal); outline-offset: 5px; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--signal);
  color: #050607;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
body.nav-open { overflow: hidden; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: .06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' 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)' opacity='.9'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--pad);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled {
  background: rgba(8,9,10,.78);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--signal);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  box-shadow: 0 0 18px rgba(184,255,50,.5);
}
.brand { display: inline-flex; align-items: center; width: fit-content; text-decoration: none; }
.brand img { width: 132px; filter: invert(1); }
.nav { display: flex; gap: 32px; }
.nav a, .nav-cta {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
}
.nav a { color: rgba(255,255,255,.72); transition: color .2s ease; position: relative; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.nav a:hover, .nav a.active { color: #fff; }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); transform-origin: left; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 18px; }
.nav-cta { justify-self: end; border-bottom: 1px solid currentColor; padding-bottom: 5px; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(8,9,10,.45);
  color: var(--ink);
  cursor: pointer;
}
.menu-toggle span { display: block; width: 17px; height: 1px; margin: 5px auto; background: currentColor; transition: transform .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--line);
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(.76) contrast(1.08) brightness(.83);
  transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.055);
  transition: transform .12s linear;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.05) 35%, rgba(0,0,0,.84) 100%),
    linear-gradient(90deg, rgba(0,0,0,.48), transparent 48%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 25vw 100%, 100% 25vh;
  opacity: .18;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: calc(var(--header-h) + 60px) var(--pad) 64px;
}
.hero-topline { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.hero-status {
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.68);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-status span { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 14px var(--signal); animation: signalPulse 2.2s ease-in-out infinite; }
@keyframes signalPulse { 50% { opacity: .35; transform: scale(.78); } }
.eyebrow {
  margin: 0 0 22px;
  color: var(--signal);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  font-weight: 800;
}
.hero h1, .section h2, .statement-line {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: -.035em;
  line-height: .82;
  font-weight: 900;
}
.hero h1 { font-size: clamp(76px, 11.2vw, 188px); max-width: 1400px; }
.hero h1 span { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.88); }
.hero-lower {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(280px, 600px) auto;
  align-items: end;
  gap: 30px;
}
.hero-index {
  position: absolute;
  z-index: 3;
  left: var(--pad);
  top: calc(var(--header-h) + 28px);
  display: flex;
  gap: 18px;
  color: rgba(255,255,255,.4);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
}
.hero-intro {
  margin: 0;
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.5;
  color: rgba(255,255,255,.83);
  max-width: 620px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 190px;
  gap: 34px;
  padding: 17px 19px;
  border: 1px solid var(--line);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--signal); color: #0a0b0c; border-color: var(--signal); }
.button-primary:hover { background: #e9ffd0; border-color: #e9ffd0; }
.button-ghost:hover { background: #fff; color: #000; border-color: #fff; }
.scroll-cue {
  position: absolute;
  right: var(--pad);
  bottom: 30px;
  z-index: 3;
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: .2em;
  color: rgba(255,255,255,.48);
  display: flex;
  align-items: center;
  gap: 10px;
}
.scroll-cue span { width: 1px; height: 40px; background: rgba(255,255,255,.35); }

.ticker { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--signal); color: #0b0c0d; }
.ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 0;
  animation: ticker 28s linear infinite;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: .04em;
}
.ticker-track i { font-style: normal; opacity: .45; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section {
  position: relative;
  padding: 130px var(--pad);
  border-bottom: 1px solid var(--line);
}
.section-number {
  position: absolute;
  top: 28px;
  left: var(--pad);
  color: #70716f;
  font-size: 10px;
  letter-spacing: .18em;
}

.release {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(360px, 1.1fr);
  gap: clamp(45px, 7vw, 120px);
  align-items: center;
}
.release-art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #0c0e10;
  border: 1px solid var(--line);
  transform: perspective(900px) rotateX(var(--art-rx, 0deg)) rotateY(var(--art-ry, 0deg));
  transform-style: preserve-3d;
  transition: transform .25s ease, border-color .25s ease;
}
.release-art:hover { border-color: rgba(184,255,50,.42); }
.release-art img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92) contrast(1.04); }
.release-art::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}
.release-art-corners { position: absolute; inset: 4.6%; z-index: 3; display: flex; align-items: flex-start; justify-content: space-between; color: rgba(255,255,255,.64); font-size: 7px; font-weight: 800; letter-spacing: .18em; text-shadow: 0 1px 10px #000; }
.release-copy h2 { font-size: clamp(72px, 9.4vw, 156px); margin-bottom: 32px; }
.release-lead { margin: 0 0 44px; max-width: 670px; color: #c7c6c2; font-size: clamp(18px, 1.45vw, 24px); line-height: 1.5; }
.release-dates { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.release-dates > div { padding: 18px 0; display: flex; flex-direction: column; gap: 8px; }
.release-dates > div + div { border-left: 1px solid var(--line); padding-left: 24px; }
.release-dates span { text-transform: uppercase; color: var(--muted); font-size: 9px; letter-spacing: .16em; }
.release-dates strong { font-size: clamp(22px, 2.3vw, 34px); letter-spacing: -.03em; }
.release-formats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.release-formats span { padding: 8px 10px; border: 1px solid var(--line); color: #bdbdb8; font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.label-signature { margin-top: 25px; display: flex; align-items: center; gap: 22px; }
.label-signature > span { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.label-signature img { width: clamp(130px, 14vw, 190px); max-height: 58px; object-fit: contain; object-position: left center; }
.countdown { margin-top: 24px; display: flex; align-items: baseline; gap: 13px; }
.countdown-label { text-transform: uppercase; color: var(--muted); font-size: 9px; letter-spacing: .16em; }
.countdown strong { color: var(--signal); font-size: 18px; letter-spacing: .03em; }
.button-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }

.catalogue { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(480px, 1.28fr); gap: clamp(55px, 8vw, 130px); align-items: start; }
.catalogue-heading { position: sticky; top: calc(var(--header-h) + 42px); }
.catalogue-heading h2 { font-size: clamp(68px, 8vw, 132px); }
.catalogue-heading > p:last-child { max-width: 520px; margin: 34px 0 0; color: #b9b9b5; font-size: clamp(16px, 1.2vw, 20px); line-height: 1.58; }
.release-history { border-top: 1px solid var(--line); }
.history-item { display: grid; grid-template-columns: 78px minmax(0,1fr); gap: 22px; padding: 31px 0 28px; border-bottom: 1px solid var(--line); }
.history-item-featured { background: linear-gradient(100deg, var(--signal-soft), transparent 75%); }
.history-index { padding-top: 7px; color: #6f706e; font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.history-type { margin: 0 0 9px; color: var(--signal); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.history-copy h3 { margin: 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(38px, 4vw, 66px); line-height: .9; letter-spacing: -.025em; text-transform: uppercase; }
.history-copy > p:last-child { max-width: 650px; margin: 18px 0 0; color: #bdbdb9; font-size: 15px; line-height: 1.55; }
.history-meta { grid-column: 2; display: flex; justify-content: space-between; gap: 22px; margin-top: 5px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.history-meta a { color: var(--ink); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.26); }
.catalogue-actions { grid-column: 2; display: flex; gap: 12px; flex-wrap: wrap; }

.manifesto { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(55px, 8vw, 130px); align-items: end; }
.manifesto-title h2 { font-size: clamp(66px, 8vw, 135px); }
.manifesto-title h2 em { color: var(--signal); font-style: normal; }
.manifesto-body { padding-bottom: 9px; }
.manifesto-body p { max-width: 620px; color: #c6c5c0; font-size: clamp(18px, 1.4vw, 23px); line-height: 1.58; }
.manifesto-body .manifesto-note { margin-top: 38px; padding: 18px 0 18px 22px; border-left: 2px solid var(--signal); color: var(--ink); font-size: 13px; font-weight: 800; letter-spacing: .12em; line-height: 1.45; text-transform: uppercase; }
.members { margin-top: 48px; border-top: 1px solid var(--line); }
.members span { display: flex; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 11px; }
.members i { color: #646561; font-size: 8px; font-style: normal; }

.portrait-break { position: relative; min-height: 78vh; overflow: hidden; border-bottom: 1px solid var(--line); }
.portrait-break img { width: 100%; height: 78vh; object-fit: cover; object-position: center 36%; filter: saturate(.55) contrast(1.1) brightness(.7); }
.portrait-break::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.78)); }
.portrait-overlay { position: absolute; z-index: 2; bottom: 34px; left: var(--pad); right: var(--pad); display: flex; justify-content: space-between; gap: 20px; align-items: end; text-transform: uppercase; }
.portrait-overlay span { font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(48px, 6.5vw, 110px); letter-spacing: -.03em; line-height: .8; }
.portrait-overlay strong { color: var(--signal); font-size: 10px; letter-spacing: .2em; text-align: right; }

.support { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 160px); }
.support-heading h2 { font-size: clamp(68px, 8vw, 132px); }
.support-list { border-top: 1px solid var(--line); }
.support-list > div { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); transition: padding .25s ease, background .25s ease; }
.support-list > div:hover { padding-left: 14px; padding-right: 14px; background: linear-gradient(90deg, var(--signal-soft), transparent); }
.support-list span { color: #6f706e; font-size: 9px; }
.support-list strong { font-size: clamp(21px, 2.2vw, 34px); letter-spacing: -.03em; }
.support-list small { color: var(--muted); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; text-align: right; }

.statement { padding: 100px var(--pad) 110px; overflow: hidden; }
.statement-kicker { margin: 0 0 42px; color: var(--signal); font-size: 9px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.statement-line { font-size: clamp(95px, 15vw, 260px); white-space: nowrap; }
.statement-line.outline { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.55); margin-left: 8vw; }

.footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 40px;
  align-items: end;
  padding: 76px var(--pad) 45px;
  border-top: 1px solid var(--line);
  background: #050607;
}
.email { display: inline-block; font-size: clamp(28px, 3.8vw, 58px); font-weight: 700; letter-spacing: -.04em; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.28); }
.press-contact { margin: 19px 0 0; color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.press-contact a { color: #d5d4cf; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.22); }
.social-block .eyebrow { margin-bottom: 17px; }
.social-links { display: flex; flex-wrap: wrap; gap: 9px 15px; max-width: 500px; }
.social-links a, .footer-utility a { text-transform: uppercase; text-decoration: none; font-size: 9px; font-weight: 700; letter-spacing: .12em; color: #d2d1cd; }
.social-links a:hover, .footer-utility a:hover { color: var(--signal); }
.footer-utility { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.footer-mark { justify-self: end; margin: 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 28px; line-height: .8; text-align: right; }
.footer-mark span { font-family: Inter, Arial, sans-serif; color: var(--muted); font-size: 8px; letter-spacing: .14em; }

.motion-ready .reveal-item { opacity: 0; transform: translateY(28px); transition: opacity .8s ease var(--reveal-delay, 0ms), transform .8s cubic-bezier(.2,.72,.2,1) var(--reveal-delay, 0ms); }
.motion-ready .reveal-item.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --header-h: 72px; }
  .site-header { grid-template-columns: 1fr auto; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px var(--pad) 28px;
    background: rgba(8,9,10,.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  }
  .nav.open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
  .nav a::after { display: none; }
  .brand img { width: 110px; }
  .menu-toggle { display: block; }
  .hero-lower, .release, .catalogue, .manifesto, .support, .footer { grid-template-columns: 1fr; }
  .hero-lower { align-items: start; }
  .hero-lower .button { width: fit-content; }
  .release-art { max-width: 720px; }
  .catalogue-heading { position: static; }
  .catalogue-actions { grid-column: 1; }
  .portrait-overlay { align-items: flex-start; flex-direction: column; }
  .portrait-overlay strong { text-align: left; }
  .support-list > div { grid-template-columns: 34px 1fr; }
  .support-list small { grid-column: 2; text-align: left; }
  .footer-mark { justify-self: start; text-align: left; }
}

@media (max-width: 620px) {
  .nav-cta { display: none; }
  .hero-copy { padding-bottom: 38px; }
  .hero-topline { align-items: flex-start; flex-direction: column; gap: 0; }
  .hero-status { display: none; }
  .hero-index { top: calc(var(--header-h) + 20px); }
  .hero h1 { font-size: clamp(64px, 22vw, 104px); }
  .hero-intro { max-width: 90%; }
  .scroll-cue { display: none; }
  .section { padding-top: 96px; padding-bottom: 92px; }
  .release { grid-template-columns: minmax(0,1fr); }
  .release-dates { grid-template-columns: 1fr; }
  .release-dates > div + div { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .button-row .button { width: 100%; }
  .catalogue-heading h2, .manifesto-title h2, .support-heading h2 { font-size: 18vw; }
  .history-item { grid-template-columns: 1fr; gap: 12px; }
  .history-meta { grid-column: 1; flex-direction: column; align-items: flex-start; }
  .portrait-break, .portrait-break img { min-height: 70vh; height: 70vh; }
  .statement { padding-left: 12px; padding-right: 12px; }
  .statement-line { font-size: 22vw; }
  .footer { padding-top: 58px; }
  .email { overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .hero-status span { animation: none; }
  .hero-image { transform: scale(1.02); }
  * { transition: none !important; }
}
