:root {
  --ink: #0b0b0d;
  --paper: #f2f0e9;
  --muted: #b8b5ad;
  --line: rgba(242, 240, 233, .18);
  --acid: #d7ff3f;
  --orange: #ff5a1f;
  --pink: #ff4fa3;
  --blue: #6b7cff;
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", "Helvetica Neue", Arial, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --pad: clamp(1.1rem, 3vw, 3.5rem);
  --max: 1540px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
::selection { color: var(--ink); background: var(--acid); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 1000; padding: .8rem 1rem;
  color: var(--ink); background: var(--acid); text-decoration: none; font-weight: 800;
}
.skip-link:focus { top: 1rem; }
.noise {
  position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: .045;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.progress { position: fixed; z-index: 1001; top: 0; left: 0; right: 0; height: 3px; background: transparent; }
.progress span { display: block; width: 0; height: 100%; background: var(--acid); }

.site-header {
  position: fixed; z-index: 100; top: 0; left: 0; right: 0; height: 76px;
  display: flex; align-items: center; justify-content: space-between; padding: 0 var(--pad);
  border-bottom: 1px solid transparent; transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.site-header.scrolled { background: rgba(11, 11, 13, .82); border-color: var(--line); backdrop-filter: blur(18px); }
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; font-weight: 900; letter-spacing: -.03em; }
.brand-mark { width: 32px; fill: var(--acid); }
.primary-nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.3rem); }
.primary-nav a { position: relative; color: var(--paper); text-decoration: none; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.primary-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.35rem; height: 2px; background: var(--acid); transition: right .2s; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { right: 0; }
.nav-cta { border: 1px solid var(--paper); padding: .72rem 1rem; }
.nav-cta:hover { color: var(--ink); background: var(--paper); }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 12px; border: 0; background: none; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 6px 0; background: var(--paper); transition: transform .25s, opacity .25s; }

.hero {
  position: relative; min-height: 100svh; padding: 128px var(--pad) 45px;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 25vw); gap: clamp(2rem, 5vw, 7rem);
  align-items: end; isolation: isolate; overflow: hidden;
}
.hero-grid, .contact-grid {
  position: absolute; inset: 0; z-index: -3;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: clamp(42px, 5vw, 76px) clamp(42px, 5vw, 76px);
  mask-image: linear-gradient(to bottom, black 25%, transparent 92%);
}
.hero::before {
  content: ""; position: absolute; width: min(70vw, 900px); aspect-ratio: 1; right: -20vw; top: -20vw; z-index: -2;
  background: radial-gradient(circle, rgba(107,124,255,.46), transparent 62%); filter: blur(10px);
}
.hero::after {
  content: ""; position: absolute; width: 46vw; height: 20vw; left: 17vw; bottom: -9vw; z-index: -2;
  background: var(--orange); opacity: .42; filter: blur(90px); transform: rotate(-15deg);
}
.hero-orbit { position: absolute; z-index: -1; border: 1px solid rgba(215,255,63,.32); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 46vw; aspect-ratio: 1; right: 8vw; top: 10vh; animation: drift 18s linear infinite; }
.orbit-two { width: 26vw; aspect-ratio: 1; right: 18vw; top: 21vh; animation: drift 11s linear infinite reverse; }
.orbit-two::before, .orbit-one::before { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; left: 50%; top: -5px; background: var(--acid); box-shadow: 0 0 24px var(--acid); }
@keyframes drift { to { transform: rotate(360deg); } }

.eyebrow { margin: 0 0 1.2rem; color: var(--acid); font-size: .72rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.hero h1 { margin: 0; font-family: var(--font-display); font-size: clamp(6rem, 15.3vw, 17rem); line-height: .67; letter-spacing: -.055em; text-transform: uppercase; }
.hero-line { display: block; }
.hero-line.outline { color: transparent; -webkit-text-stroke: clamp(1px, .18vw, 3px) var(--paper); }
.hero-line.offset { padding-left: clamp(1rem, 8vw, 10rem); }
.accent-dot { color: var(--acid); -webkit-text-stroke: 0; }
.hero-bottom { display: flex; gap: 3rem; align-items: end; justify-content: space-between; margin-top: 2.6rem; }
.hero-statement { margin: 0; font-size: clamp(1rem, 1.5vw, 1.35rem); line-height: 1.35; text-transform: uppercase; letter-spacing: .03em; }
.hero-statement strong { color: var(--acid); }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: flex-end; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: .8rem 1.2rem; border: 1px solid var(--paper); text-decoration: none; font-size: .74rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: transform .18s, box-shadow .18s, background .18s, color .18s; }
.button:hover, .button:focus-visible { transform: translate(-4px,-4px); box-shadow: 4px 4px 0 var(--paper); }
.button-primary { border-color: var(--acid); color: var(--ink); background: var(--acid); }
.button-primary:hover, .button-primary:focus-visible { box-shadow: 4px 4px 0 var(--paper); }
.button-ghost { color: var(--paper); background: transparent; }
.button-large { min-height: 64px; padding-inline: 1.7rem; font-size: .82rem; }

.hero-card { position: relative; align-self: end; border: 1px solid var(--line); padding: 1rem; background: rgba(11,11,13,.48); backdrop-filter: blur(10px); }
.micro-label { display: block; margin-bottom: .85rem; color: var(--muted); font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-card-art { position: relative; aspect-ratio: 1; overflow: hidden; display: grid; place-content: center; background: var(--acid); color: var(--ink); font-family: var(--font-display); font-size: clamp(2.3rem, 4.5vw, 5.2rem); line-height: .7; text-align: center; transform: rotate(-1.8deg); }
.hero-card-art::after { content: ""; position: absolute; inset: 9%; border: 1px solid var(--ink); transform: rotate(7deg); }
.hero-card-art span:nth-child(2), .hero-card-art span:nth-child(4) { color: transparent; -webkit-text-stroke: 1px var(--ink); }
.hero-card p { color: #d1cec7; font-size: .9rem; }
.hero-card a { display: flex; justify-content: space-between; padding-top: .9rem; border-top: 1px solid var(--line); text-decoration: none; font-weight: 800; font-size: .78rem; text-transform: uppercase; }
.hero-index { position: absolute; bottom: 1rem; left: var(--pad); right: var(--pad); display: flex; gap: 2rem; color: rgba(242,240,233,.48); font-size: .58rem; font-weight: 800; letter-spacing: .14em; }
.hero-index span:last-child { margin-left: auto; }

.ticker { overflow: hidden; border-block: 1px solid var(--paper); color: var(--ink); background: var(--paper); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 1.4rem; padding: .68rem 0; animation: ticker 30s linear infinite; }
.ticker span { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: .03em; }
.ticker i { color: var(--orange); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(5rem, 10vw, 10rem) var(--pad); }
.section-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: 4rem; align-items: end; margin-bottom: clamp(3rem, 6vw, 6rem); }
.section h2 { margin: 0; font-family: var(--font-display); font-size: clamp(4rem, 8.5vw, 9.5rem); line-height: .78; letter-spacing: -.04em; text-transform: uppercase; }
.outline-text { color: transparent; -webkit-text-stroke: 1px var(--paper); }
.section-intro { max-width: 32rem; margin: 0 0 .4rem auto; color: #c7c4bd; font-size: clamp(1rem, 1.45vw, 1.3rem); }

.release-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 4vw, 5rem) clamp(1rem, 2vw, 2rem); }
.release-card { position: relative; cursor: pointer; outline: none; }
.release-card:nth-child(even) { margin-top: clamp(3rem, 9vw, 9rem); }
.release-number { position: absolute; top: .75rem; right: .75rem; z-index: 4; width: 2.4rem; height: 2.4rem; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--paper); font-size: .7rem; font-weight: 900; }
.cover { position: relative; aspect-ratio: 1; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(1rem, 3vw, 2.5rem); transition: transform .35s cubic-bezier(.2,.8,.2,1), filter .35s; }
.release-card:hover .cover, .release-card:focus-visible .cover { transform: scale(.975) rotate(-.8deg); filter: saturate(1.15); }
.cover-kicker, .cover-code { z-index: 2; font-size: .62rem; font-weight: 900; letter-spacing: .16em; }
.cover strong { z-index: 2; font-family: var(--font-display); font-size: clamp(4.3rem, 10vw, 11rem); line-height: .72; letter-spacing: -.04em; }
.cover-sun { color: var(--ink); background: var(--acid); }
.cover-sun::before { content: ""; position: absolute; width: 70%; aspect-ratio: 1; right: -12%; top: 15%; border: clamp(12px, 2vw, 28px) solid var(--orange); border-radius: 50%; }
.cover-sun::after { content: "↗"; position: absolute; right: 7%; bottom: 0; font-size: clamp(9rem, 22vw, 26rem); line-height: .6; opacity: .12; }
.cover-void { background: #09090b; }
.cover-void::before { content: ""; position: absolute; inset: 9%; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: inset 0 0 70px rgba(107,124,255,.4), 0 0 100px rgba(255,79,163,.18); animation: breathe 4s ease-in-out infinite; }
.cover-void strong { align-self: center; color: transparent; -webkit-text-stroke: 2px var(--paper); text-align: center; }
.pulse-line { position: absolute; inset: 50% 0 auto; height: 2px; background: var(--pink); box-shadow: 0 0 22px var(--pink); transform: rotate(-8deg); }
@keyframes breathe { 50% { transform: scale(.9); opacity: .55; } }
.cover-pink { color: var(--ink); background: var(--pink); }
.cover-pink::before { content: ""; position: absolute; inset: -20%; background: repeating-radial-gradient(circle at 30% 30%, transparent 0 17px, rgba(11,11,13,.12) 18px 20px); transform: rotate(-20deg); }
.cover-pink strong { transform: skewY(-6deg); }
.emoji-cloud { position: absolute; right: 6%; top: 44%; z-index: 2; font-size: clamp(2rem, 6vw, 6rem); font-weight: 900; transform: rotate(12deg); }
.cover-fight { background: var(--orange); color: var(--ink); }
.cover-fight::before, .cover-fight::after { content: ""; position: absolute; inset: -20% 48% -20% auto; width: 9%; background: var(--ink); transform: rotate(17deg); }
.cover-fight::after { left: 48%; right: auto; background: var(--paper); transform: rotate(-17deg); }
.cover-fight strong { text-align: center; font-size: clamp(3.8rem, 8vw, 9rem); }
.versus { position: absolute; z-index: 3; inset: 47% auto auto 50%; transform: translate(-50%,-50%) rotate(-9deg); padding: .4rem .7rem; color: var(--paper); background: var(--ink); font-weight: 900; }
.release-meta { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.1rem; border-top: 1px solid var(--line); margin-top: 1rem; }
.release-meta h3 { margin: 0 0 .25rem; font-size: clamp(1.25rem, 2vw, 2rem); }
.release-meta p { margin: 0; color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.icon-button { flex: 0 0 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; color: var(--paper); background: transparent; font-size: 1.3rem; cursor: pointer; transition: background .2s, color .2s, transform .2s; }
.release-card:hover .icon-button, .release-card:focus-visible .icon-button { color: var(--ink); background: var(--acid); transform: rotate(45deg); }

.manifest { position: relative; max-width: none; overflow: hidden; border-block: 1px solid var(--line); background: #111115; }
.manifest > *:not(.manifest-backdrop) { max-width: var(--max); margin-inline: auto; }
.manifest-backdrop { position: absolute; right: -2vw; top: 0; color: rgba(255,255,255,.025); font-family: var(--font-display); font-size: 28vw; line-height: .65; text-align: right; pointer-events: none; }
.manifest-layout { position: relative; display: grid; grid-template-columns: 1fr .8fr; gap: clamp(3rem, 8vw, 10rem); }
.manifest-title h2 { font-size: clamp(3.6rem, 7vw, 8rem); }
.manifest-title em { color: var(--acid); font-style: normal; }
.manifest-copy { padding-top: 2.5rem; }
.manifest-copy > p { margin: 0 0 1.7rem; color: #d2cfc8; font-size: clamp(1.08rem, 1.55vw, 1.4rem); }
.manifest-copy blockquote { margin: 3rem 0 0; padding-left: 1.5rem; border-left: 4px solid var(--acid); font-family: var(--font-display); font-size: clamp(2rem, 4vw, 4.6rem); line-height: .92; text-transform: uppercase; }
.principles { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: clamp(5rem, 10vw, 10rem); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.principle { min-height: 300px; padding: 1.5rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle span { color: var(--acid); font-size: .7rem; font-weight: 900; letter-spacing: .14em; }
.principle h3 { margin: 5rem 0 1rem; font-family: var(--font-display); font-size: 2.2rem; line-height: .9; text-transform: uppercase; }
.principle p { margin: 0; color: var(--muted); font-size: .9rem; }

.people-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.person { display: grid; grid-template-columns: minmax(150px, .75fr) 1.25fr; min-height: 300px; background: var(--ink); }
.person-visual { position: relative; overflow: hidden; display: grid; place-items: center; min-height: 300px; font-family: var(--font-display); font-size: clamp(6rem, 13vw, 14rem); border-right: 1px solid var(--line); }
.person-visual::before { content: ""; position: absolute; width: 130%; height: 20%; background: currentColor; opacity: .12; transform: rotate(-28deg); }
.person-a .person-visual { color: var(--acid); background: #15170e; }
.person-b .person-visual { color: var(--paper); background: #16161a; }
.person-c .person-visual { color: var(--orange); background: #180e0a; }
.person-d .person-visual { color: var(--blue); background: #0e101a; font-size: clamp(4rem, 8vw, 8rem); }
.scan { position: absolute; left: 0; right: 0; top: -20%; height: 15%; background: linear-gradient(transparent, rgba(255,255,255,.2), transparent); animation: scan 5s linear infinite; }
@keyframes scan { to { top: 120%; } }
.person-copy { display: flex; flex-direction: column; justify-content: end; padding: clamp(1.3rem, 3vw, 2.8rem); }
.person-copy > span { color: var(--muted); font-size: .63rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.person-copy h3 { margin: .7rem 0 1rem; font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 4.8rem); line-height: .8; text-transform: uppercase; }
.person-copy p { max-width: 28rem; margin: 0; color: #c2bfb8; }

.video { max-width: none; padding-inline: var(--pad); background: var(--paper); color: var(--ink); }
.video > * { max-width: var(--max); margin-inline: auto; }
.video .eyebrow { color: #5961b9; }
.video-head { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 4rem; }
.video-head h2 { text-align: right; }
.video-head h2 span { color: transparent; -webkit-text-stroke: 1px var(--ink); }
.video-stage { position: relative; min-height: min(72vw, 830px); overflow: hidden; background: var(--ink); color: var(--paper); cursor: pointer; }
.video-art { position: absolute; inset: 0; overflow: hidden; background: radial-gradient(circle at 65% 34%, #414a97 0, #161721 35%, #070709 73%); }
.frame { position: absolute; border: 1px solid rgba(255,255,255,.2); }
.frame-a { inset: 8%; transform: rotate(5deg); }
.frame-b { inset: 18% 25% 12% 9%; transform: rotate(-9deg); }
.frame-c { width: 42%; aspect-ratio: 1; right: 7%; top: 15%; border-radius: 50%; box-shadow: inset 0 0 100px rgba(255,79,163,.35); }
.video-art::before { content: ""; position: absolute; width: 38%; height: 145%; left: 43%; top: -20%; background: var(--acid); opacity: .85; transform: rotate(21deg); mix-blend-mode: screen; filter: blur(4px); }
.video-art::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent 0 4px, rgba(255,255,255,.035) 5px); }
.video-word { position: absolute; z-index: 2; font-family: var(--font-display); font-size: clamp(5rem, 18vw, 20rem); line-height: .7; mix-blend-mode: difference; }
.word-a { left: -1%; top: 6%; }.word-b { right: 0; top: 29%; }.word-c { left: 6%; bottom: 19%; }.word-d { right: 8%; bottom: -1%; color: var(--acid); mix-blend-mode: normal; }
.video-overlay { position: absolute; inset: auto 0 0; z-index: 3; display: flex; justify-content: space-between; align-items: end; gap: 2rem; padding: clamp(1.2rem, 4vw, 3.5rem); background: linear-gradient(transparent, rgba(0,0,0,.85)); }
.video-overlay > div { max-width: 42rem; }
.video-overlay span { font-size: .65rem; font-weight: 900; letter-spacing: .14em; }
.video-overlay h3 { margin: .7rem 0; font-family: var(--font-display); font-size: clamp(3rem, 6vw, 6rem); line-height: .8; text-transform: uppercase; }
.video-overlay p { max-width: 38rem; margin: 0; color: #cac7c0; }
.play-button { flex: 0 0 clamp(86px, 10vw, 140px); aspect-ratio: 1; border: 1px solid var(--paper); border-radius: 50%; color: var(--ink); background: var(--acid); cursor: pointer; font-size: 2rem; transition: transform .25s; }
.video-stage:hover .play-button { transform: scale(1.08) rotate(8deg); }
.video-notes { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 1rem; border-block: 1px solid rgba(11,11,13,.25); }
.video-notes span { padding: 1rem; border-right: 1px solid rgba(11,11,13,.25); font-size: .67rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.video-notes span:last-child { border-right: 0; }

.studio { max-width: none; padding-inline: var(--pad); }
.studio-panel { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr .8fr; gap: clamp(3rem, 9vw, 9rem); padding: clamp(2rem, 6vw, 6rem); border: 1px solid var(--line); background: linear-gradient(135deg, #121218, #09090b); }
.studio-copy h2 { font-family: var(--font-display); font-size: clamp(3rem, 5vw, 6rem); line-height: .86; text-transform: uppercase; }
.studio-copy > p:not(.eyebrow) { max-width: 40rem; color: #c4c1ba; font-size: 1.08rem; }
.text-link { display: inline-flex; gap: 2rem; margin-top: 2rem; padding-bottom: .5rem; border-bottom: 1px solid var(--acid); color: var(--acid); text-decoration: none; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: .75rem; }
.studio-meter { align-self: center; }
.studio-meter > div { display: grid; grid-template-columns: 130px 1fr 35px; gap: 1rem; align-items: center; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.studio-meter span, .studio-meter b { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.studio-meter i { position: relative; height: 5px; background: rgba(255,255,255,.12); }
.studio-meter i::before { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--meter); background: var(--acid); transform-origin: left; animation: meter 1.2s ease both; animation-play-state: paused; }
.studio-panel.visible .studio-meter i::before { animation-play-state: running; }
@keyframes meter { from { transform: scaleX(0); } }

.contact { position: relative; min-height: 78svh; display: grid; place-items: center; padding: 8rem var(--pad); overflow: hidden; border-top: 1px solid var(--line); }
.contact::before { content: ""; position: absolute; width: 68vw; aspect-ratio: 1; border: 1px solid rgba(215,255,63,.3); border-radius: 50%; animation: drift 30s linear infinite; }
.contact::after { content: "RF"; position: absolute; right: -4vw; bottom: -11vw; color: rgba(255,255,255,.035); font-family: var(--font-display); font-size: 45vw; line-height: 1; }
.contact-grid { mask-image: radial-gradient(circle, black 0, transparent 70%); }
.contact-content { position: relative; z-index: 2; width: min(100%, var(--max)); text-align: center; }
.contact h2 { margin: 0; font-family: var(--font-display); font-size: clamp(4.7rem, 11vw, 13rem); line-height: .74; text-transform: uppercase; letter-spacing: -.04em; }
.contact h2 span { color: var(--acid); }
.contact-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 3.5rem; }
.copy-email { font-family: inherit; }
.contact-note { margin-top: 1.5rem; color: var(--muted); font-size: .78rem; }

.site-footer { min-height: 110px; display: grid; grid-template-columns: 1fr auto auto auto; gap: 2rem; align-items: center; padding: 1.5rem var(--pad); border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-brand { color: var(--paper); font-size: 1rem; font-weight: 900; text-decoration: none; }
.footer-brand span { color: var(--acid); }
.site-footer nav { display: flex; gap: 1rem; }
.site-footer nav a { text-decoration: none; }
.site-footer nav a:hover { color: var(--paper); }

.release-dialog { width: min(760px, calc(100% - 2rem)); padding: clamp(1.5rem, 4vw, 3.5rem); border: 1px solid var(--paper); color: var(--paper); background: #111115; box-shadow: 18px 18px 0 var(--acid); }
.release-dialog::backdrop { background: rgba(0,0,0,.78); backdrop-filter: blur(8px); }
.dialog-close { position: absolute; right: 1rem; top: 1rem; width: 46px; height: 46px; border: 1px solid var(--line); color: var(--paper); background: transparent; font-size: 1.8rem; cursor: pointer; }
.dialog-index { color: var(--acid); font-family: var(--font-display); font-size: clamp(4rem, 10vw, 8rem); line-height: 1; opacity: .24; }
.release-dialog h2 { margin: .5rem 0 1rem; font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 7rem); line-height: .8; text-transform: uppercase; }
.dialog-lead { max-width: 36rem; color: #cbc8c1; font-size: 1.1rem; }
.dialog-quote { margin: 2.5rem 0; padding: 1.3rem; border-left: 4px solid var(--acid); background: rgba(255,255,255,.04); font-family: var(--font-display); font-size: clamp(1.7rem, 4vw, 3.4rem); line-height: .95; text-transform: uppercase; }
.dialog-footer { display: flex; justify-content: space-between; gap: 2rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.dialog-footer a { color: var(--acid); text-decoration: none; }
.toast { position: fixed; z-index: 1002; left: 50%; bottom: 2rem; transform: translate(-50%, 140%); padding: .8rem 1rem; color: var(--ink); background: var(--acid); font-size: .78rem; font-weight: 900; text-transform: uppercase; transition: transform .3s; }
.toast.show { transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

.legal-page { min-height: 100vh; padding: 120px var(--pad) 5rem; }
.legal-shell { max-width: 880px; margin: 0 auto; }
.legal-shell h1 { margin: 0 0 3rem; font-family: var(--font-display); font-size: clamp(4rem, 10vw, 8rem); line-height: .8; text-transform: uppercase; }
.legal-shell h2 { margin-top: 3rem; font-size: 1.25rem; }
.legal-shell p, .legal-shell li { color: #cac7c0; }
.legal-warning { padding: 1rem 1.2rem; border: 1px solid var(--orange); background: rgba(255,90,31,.08); }
.legal-back { display: inline-block; margin-bottom: 2rem; color: var(--acid); text-decoration: none; font-weight: 900; text-transform: uppercase; font-size: .75rem; }

@media (max-width: 980px) {
  .menu-toggle { display: block; position: relative; z-index: 102; }
  .primary-nav { position: fixed; inset: 0; z-index: 101; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 7rem var(--pad); background: #0b0b0d; transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.8,.2,1); }
  .primary-nav a { font-family: var(--font-display); font-size: clamp(3rem, 10vw, 6rem); line-height: .8; letter-spacing: -.03em; }
  .primary-nav .nav-cta { border: 0; padding: 0; color: var(--acid); }
  .menu-open .primary-nav { transform: none; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; align-items: center; }
  .hero-copy { align-self: center; }
  .hero-card { width: min(470px, 78vw); margin-left: auto; }
  .section-head, .manifest-layout, .studio-panel { grid-template-columns: 1fr; }
  .section-intro { margin-left: 0; }
  .principles { grid-template-columns: repeat(2, 1fr); }
  .people-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer p { display: none; }
}

@media (max-width: 700px) {
  .site-header { height: 66px; }
  .brand span { font-size: .82rem; }
  .hero { min-height: auto; padding-top: 110px; }
  .hero h1 { font-size: clamp(5.2rem, 24vw, 9rem); }
  .hero-line.offset { padding-left: 0; }
  .hero-bottom { display: block; }
  .hero-actions { justify-content: flex-start; margin-top: 2rem; }
  .hero-card { width: 100%; }
  .hero-index { display: none; }
  .release-grid { grid-template-columns: 1fr; }
  .release-card:nth-child(even) { margin-top: 0; }
  .section h2 { font-size: clamp(3.8rem, 18vw, 6rem); }
  .principles { grid-template-columns: 1fr; }
  .principle { min-height: 230px; }
  .principle h3 { margin-top: 3rem; }
  .person { grid-template-columns: 1fr; }
  .person-visual { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--line); }
  .video-head { display: block; }
  .video-head h2 { text-align: left; }
  .video-stage { min-height: 680px; }
  .video-overlay { flex-direction: column; align-items: flex-start; }
  .video-notes { grid-template-columns: 1fr 1fr; }
  .video-notes span:nth-child(2) { border-right: 0; }
  .studio-panel { padding: 1.5rem; }
  .studio-meter > div { grid-template-columns: 95px 1fr 30px; gap: .6rem; }
  .contact { min-height: 70svh; }
  .contact h2 { font-size: clamp(4.4rem, 20vw, 7rem); }
  .contact-actions { flex-direction: column; align-items: stretch; }
  .site-footer { grid-template-columns: 1fr; gap: .8rem; }
  .dialog-footer { flex-direction: column; gap: .7rem; }
}

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