@custom-variant dark (&:is(.dark *));

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --font-sans: var(--font-sans-custom);
  --font-heading: var(--font-display);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-border: var(--border);
  --color-ring: var(--ring);
  --radius-lg: var(--radius);
}

:root {
  --background: #efe3d2;
  --foreground: #211611;
  --primary: #d61920;
  --primary-deep: #961116;
  --primary-foreground: #fff8e8;
  --secondary: #291c17;
  --secondary-foreground: #fff8e8;
  --paper: #f8eddc;
  --cream: #fff7e8;
  --cocoa: #5c4033;
  --muted: #dfcdb8;
  --muted-foreground: #6a5448;
  --border: rgba(56, 34, 24, 0.22);
  --ring: #d61920;
  --radius: 1rem;
  --font-sans-custom: Arial, Helvetica, sans-serif;
  --font-display: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;
  --mouse-x: 0;
  --mouse-y: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #211611; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans-custom);
}
body::selection { background: var(--primary); color: white; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { max-width: 100%; }
.cta { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.site-shell { --mood-glow: rgba(214, 25, 32, .2); background: var(--background); transition: filter .6s ease; }
.site-shell[data-mood='static'] { --mood-glow: rgba(60, 40, 32, .32); filter: contrast(1.06) saturate(.84); }
.site-shell[data-mood='midnight'] { --mood-glow: rgba(214, 25, 32, .42); filter: contrast(1.08) saturate(.72); }

.signal-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #201512;
  color: #fff7e8;
  transition: transform 1s cubic-bezier(.77, 0, .18, 1), visibility 0s linear 1s;
}
.signal-gate.is-open { transform: translateY(-105%); visibility: hidden; pointer-events: none; }
.gate-noise, .closing-static, .hero::before, .paper-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.84' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.gate-noise { opacity: .44; animation: noise-shift .18s steps(2) infinite; }
.gate-card { position: relative; z-index: 2; width: min(520px, 88vw); text-align: center; }
.gate-card > p { margin: 22px 0 8px; color: #da4448; font-size: 11px; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
.gate-card h2 { margin: 0; font-family: var(--font-display); font-size: clamp(95px, 18vw, 220px); line-height: .63; letter-spacing: -.055em; }
.gate-card button { display: flex; align-items: center; gap: 12px; margin: 44px auto 14px; padding: 16px 22px; border: 1px solid #fff7e8; border-radius: 999px; background: #d61920; color: white; text-transform: uppercase; font-size: 11px; font-weight: 900; letter-spacing: .13em; cursor: pointer; box-shadow: 6px 6px 0 #fff7e8; transition: .2s ease; }
.gate-card button:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 #fff7e8; }
.gate-card small { opacity: .5; text-transform: uppercase; letter-spacing: .15em; font-size: 9px; }
.gate-eye { width: 58px; aspect-ratio: 1.45; margin: auto; display: grid; place-items: center; border: 1.5px solid #fff7e8; border-radius: 50%; transform: rotate(-4deg); }
.gate-eye span { width: 18px; aspect-ratio: 1; border-radius: 50%; background: #d61920; box-shadow: 0 0 22px #d61920; animation: eye-watch 2.4s ease-in-out infinite; }

.scroll-thread { position: fixed; z-index: 60; top: 0; left: 0; width: 100%; height: 4px; background: rgba(33,22,17,.12); transform-origin: left; }
.scroll-thread span { display: block; width: 100%; height: 100%; background: var(--primary); transform-origin: left; }
.topbar {
  position: fixed;
  inset: 4px 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 15px 4vw;
  border-bottom: 1px solid var(--border);
  background: rgba(239, 227, 210, 0.84);
  backdrop-filter: blur(18px);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 11px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; }
.brand-mark { display: grid; place-items: center; width: 31px; aspect-ratio: 1; border-radius: 50%; background: var(--primary); color: white; font-family: var(--font-serif); font-size: 20px; font-style: italic; box-shadow: 2px 2px 0 #211611; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { opacity: .58; transition: opacity .2s ease; }
.nav-links a:hover { opacity: 1; }
.nav-actions { justify-self: end; display: flex; align-items: center; gap: 14px; }
.x-link { display: grid; place-items: center; width: 30px; aspect-ratio: 1; border: 1px solid #211611; border-radius: 50%; transition: .2s ease; }
.x-link:hover { background: #211611; color: white; transform: rotate(-8deg); }
.mini-buy { display: flex; gap: 5px; align-items: center; }
.mini-buy svg { width: 16px; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 5vw;
  padding: 124px 6vw 82px;
  background: radial-gradient(circle at 87% 18%, var(--mood-glow), transparent 27%), linear-gradient(118deg, #f6ecdd 0 54%, #e8d5bf 54%);
}
.hero::before { opacity: .22; mix-blend-mode: multiply; }
.hero::after { content: ''; position: absolute; right: -10vw; bottom: -20vw; width: 56vw; aspect-ratio: 1; border: 1px solid rgba(33,22,17,.18); border-radius: 50%; box-shadow: 0 0 0 3vw rgba(255,255,255,.08), 0 0 0 9vw rgba(214,25,32,.04); }
.hero-copy, .hero-portrait { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 25px; color: #a41016; text-transform: uppercase; font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.eyebrow svg { width: 17px; }
.hero h1 { margin: 0; font-family: var(--font-display); font-size: clamp(76px, 10.5vw, 174px); line-height: .74; letter-spacing: -.055em; text-transform: uppercase; font-weight: 900; }
.hero h1 span { color: var(--primary); -webkit-text-stroke: 1px #8a1014; text-shadow: 5px 5px 0 #f6ecdd, 7px 7px 0 #211611; }
.lede { max-width: 610px; margin: 38px 0 30px; color: #5f493d; font-size: clamp(17px, 1.42vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta { height: 54px; padding: 0 22px; border: 1.5px solid #241812; border-radius: 999px; font-size: 11px; text-transform: uppercase; letter-spacing: .09em; font-weight: 900; box-shadow: 4px 4px 0 #241812; }
.cta:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 #241812; }
.cta-primary { background: var(--primary); color: white; }
.cta-secondary { background: var(--cream); color: #211611; }
.hero-footnote { display: flex; align-items: center; gap: 8px; margin-top: 29px; color: #7c6458; font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.hero-footnote svg { width: 14px; }
.hero-portrait { min-height: 610px; display: grid; place-items: center; transform: translate(calc(var(--mouse-x) * -7px), calc(var(--mouse-y) * -5px)); transition: transform .18s ease-out; }
.portrait-ring { position: relative; z-index: 2; width: min(38vw, 555px); aspect-ratio: 1; border: 3px solid #211611; border-radius: 50%; overflow: hidden; transform: rotate(2deg); box-shadow: 18px 22px 0 rgba(115,78,55,.16), 0 0 0 15px rgba(255,248,232,.45); }
.portrait-ring img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(.94) contrast(1.03); transform: scale(1.015); }
.orbit-line { position: absolute; z-index: 1; border: 1px dashed rgba(33,22,17,.45); border-radius: 50%; animation: orbit-spin 24s linear infinite; }
.orbit-line::after { content: ''; position: absolute; top: 7%; left: 20%; width: 12px; aspect-ratio: 1; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 5px var(--background); }
.orbit-line-a { width: min(44vw, 650px); aspect-ratio: 1; }
.orbit-line-b { width: min(49vw, 730px); aspect-ratio: 1; animation-direction: reverse; animation-duration: 34s; }
.orbit-line-b::after { top: auto; bottom: 12%; left: auto; right: 10%; width: 8px; background: #211611; }
.orbit-label { position: absolute; z-index: 4; padding: 9px 14px; border: 1px solid #211611; border-radius: 100px; background: var(--cream); font: 900 9px/1 var(--font-sans-custom); letter-spacing: .12em; transform: rotate(-6deg); box-shadow: 3px 3px 0 rgba(33,22,17,.85); }
.orbit-label-one { left: 0; top: 20%; }
.orbit-label-two { right: -1%; bottom: 25%; background: #211611; color: white; transform: rotate(7deg); }
.tune-chip { position: absolute; z-index: 5; left: 50%; bottom: 3%; translate: -50% 0; display: flex; align-items: center; gap: 9px; min-width: max-content; padding: 13px 18px; border: 1.5px solid #211611; border-radius: 999px; background: var(--background); color: #211611; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; font-size: 9px; cursor: pointer; box-shadow: 4px 4px 0 #211611; transition: .2s ease; }
.tune-chip:hover, .tune-chip.is-playing { background: var(--primary); color: white; transform: translateY(-3px); }
.pulse-dot { width: 8px; aspect-ratio: 1; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 0 rgba(214,25,32,.55); animation: pulse 1.6s infinite; }
.is-playing .pulse-dot { background: white; }
.hero-index { position: absolute; right: 2.5vw; bottom: 2.5vw; writing-mode: vertical-rl; font: 900 10px/1 var(--font-sans-custom); letter-spacing: .18em; opacity: .5; }
.hero-scribble { position: absolute; z-index: 1; left: 44%; top: 16%; color: rgba(94,62,47,.13); font: italic 900 clamp(48px,8vw,130px)/.8 var(--font-serif); transform: rotate(-8deg); }
.scroll-cue { position: absolute; z-index: 3; left: 50%; bottom: 18px; translate: -50% 0; display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 8px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.scroll-cue svg { width: 16px; animation: soft-bounce 1.6s ease-in-out infinite; }

.paper-section { position: relative; background: var(--paper); }
.paper-section::before { opacity: .2; mix-blend-mode: multiply; }
.section-kicker { position: relative; z-index: 2; display: flex; align-items: center; gap: 12px; font-size: 10px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.section-kicker span { display: grid; place-items: center; width: 34px; aspect-ratio: 1; border: 1px solid currentColor; border-radius: 50%; }
.section-kicker.light { color: var(--cream); }
.origin-section { min-height: 100vh; padding: 110px 6vw; overflow: hidden; }
.origin-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 170px minmax(420px, 1fr) minmax(280px, .62fr); gap: 3.5vw; align-items: stretch; max-width: 1500px; margin: 70px auto 0; }
.story-index { display: flex; flex-direction: column; justify-content: center; gap: 5px; }
.story-index button { display: flex; align-items: center; gap: 10px; padding: 13px 8px; border: 0; border-bottom: 1px solid var(--border); background: transparent; color: #765f52; text-align: left; font-size: 9px; font-weight: 900; letter-spacing: .11em; cursor: pointer; }
.story-index button span { color: var(--primary); font-family: var(--font-serif); font-size: 13px; }
.story-index button.active { padding-left: 16px; background: #211611; color: white; border-radius: 4px; transform: rotate(-1deg); }
.story-card { position: relative; min-height: 540px; padding: clamp(35px,5vw,76px); border: 2px solid #211611; border-radius: 48% 52% 8px 8px / 12% 10% 5px 5px; background: #fff8e8; box-shadow: 12px 14px 0 #d61920; animation: card-in .45s ease both; }
.story-time { color: var(--primary); font-size: 9px; font-weight: 900; letter-spacing: .19em; }
.story-card h2 { max-width: 800px; margin: 42px 0 25px; font-family: var(--font-serif); font-size: clamp(44px,5vw,78px); font-style: italic; line-height: .95; letter-spacing: -.045em; }
.story-card > p { max-width: 740px; color: #594338; font-size: clamp(16px,1.3vw,20px); line-height: 1.68; }
.story-card blockquote { margin: 34px 0 0; padding-left: 18px; border-left: 3px solid var(--primary); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.story-controls { position: absolute; right: 35px; bottom: 28px; display: flex; align-items: center; gap: 13px; }
.story-controls button { display: grid; place-items: center; width: 40px; aspect-ratio: 1; border: 1px solid #211611; border-radius: 50%; background: transparent; cursor: pointer; transition: .2s; }
.story-controls button:hover { background: #211611; color: white; }
.story-controls svg { width: 15px; }
.story-controls span { font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.origin-poster { min-height: 540px; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; overflow: hidden; border: 2px solid #211611; background: #d61920; color: #fff8e8; transform: rotate(2deg); box-shadow: -8px 10px 0 #211611; }
.poster-top, .poster-bottom { font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.origin-poster strong { font-family: var(--font-display); font-size: clamp(54px,5.5vw,96px); line-height: .78; letter-spacing: -.04em; text-shadow: 4px 4px 0 #7f0d11; }

.anatomy-section { position: relative; min-height: 100vh; padding: 110px 6vw; overflow: hidden; background: #211611; color: var(--cream); }
.anatomy-section::after { content: 'WHY?'; position: absolute; right: -2vw; top: 13%; color: rgba(255,247,232,.035); font: 900 34vw/.7 var(--font-display); }
.anatomy-layout { position: relative; z-index: 2; max-width: 1300px; margin: 65px auto 0; display: grid; grid-template-columns: minmax(360px,.85fr) minmax(380px,1fr); gap: 7vw; align-items: center; }
.anatomy-photo { position: relative; width: min(540px,100%); aspect-ratio: .86; transform: rotate(-2deg); }
.anatomy-photo::before { content: ''; position: absolute; inset: 20px -18px -16px 22px; border: 1px solid #f1d9bf; transform: rotate(5deg); }
.anatomy-photo img { width: 100%; height: 100%; object-fit: cover; border: 2px solid var(--cream); filter: sepia(.12) saturate(.86); }
.hotspot { position: absolute; z-index: 3; display: grid; place-items: center; width: 44px; aspect-ratio: 1; padding: 0; border: 1px solid var(--cream); border-radius: 50%; background: rgba(33,22,17,.7); color: white; cursor: pointer; box-shadow: 0 0 0 7px rgba(255,247,232,.08); transition: .25s ease; }
.hotspot span { font-size: 10px; font-weight: 900; }
.hotspot:hover, .hotspot.active { background: var(--primary); box-shadow: 0 0 0 11px rgba(214,25,32,.23); transform: scale(1.12); }
.hotspot-1 { left: 33%; top: 48%; }.hotspot-2 { left: 53%; top: 20%; }.hotspot-3 { left: 74%; top: 68%; }.hotspot-4 { left: 8%; top: 10%; }
.micro-label { margin: 0; opacity: .46; font-size: 9px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.anatomy-number { margin: 24px 0 4px; color: var(--primary); font: italic 900 28px/1 var(--font-serif); }
.anatomy-copy h2 { max-width: 720px; margin: 0 0 26px; font-family: var(--font-serif); font-size: clamp(48px,6vw,92px); font-style: italic; line-height: .9; letter-spacing: -.05em; }
.anatomy-copy > p:not(.micro-label) { max-width: 650px; color: #cfbaa7; font-size: clamp(17px,1.45vw,22px); line-height: 1.65; }
.part-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 38px; }
.part-tabs button { padding: 11px 14px; border: 1px solid #78675e; border-radius: 999px; background: transparent; color: #c9b8a9; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; cursor: pointer; }
.part-tabs button.active { background: var(--cream); color: #211611; border-color: var(--cream); }

.signal-lab { min-height: 100vh; padding: 110px 6vw; overflow: hidden; }
.lab-layout { position: relative; z-index: 2; max-width: 1350px; margin: 70px auto 0; display: grid; grid-template-columns: minmax(470px,1.1fr) minmax(380px,.9fr); gap: 4vw; align-items: stretch; }
.lab-console { position: relative; min-height: 560px; padding: 34px; border: 2px solid #211611; border-radius: 22px; background: #251a16; color: var(--cream); box-shadow: 12px 14px 0 #c9ac8f; overflow: hidden; }
.lab-console::before { content: ''; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; pointer-events: none; }
.console-header { position: relative; display: flex; justify-content: space-between; color: #af9788; font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.console-header div { display: flex; align-items: center; gap: 7px; color: white; }
.status-light { display: inline-block; width: 7px; aspect-ratio: 1; border-radius: 50%; background: #ef343a; box-shadow: 0 0 10px #ef343a; animation: pulse 1.5s infinite; }
.frequency-readout { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: 18px; margin: 70px 5% 46px; }
.frequency-readout > span, .frequency-readout small { color: #8f786c; font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.frequency-readout strong { color: #f33d43; text-align: center; font: 900 clamp(84px,10vw,155px)/.7 var(--font-display); letter-spacing: -.04em; text-shadow: 0 0 25px rgba(243,61,67,.18); }
.frequency-slider { position: relative; margin: 0 auto; width: 90%; }
.frequency-slider [data-slot='slider-track'] { height: 8px; border: 1px solid #6e554c; background: #0e0b0a; }
.frequency-slider [data-slot='slider-range'] { background: #d61920; box-shadow: 0 0 12px rgba(214,25,32,.7); }
.frequency-slider [data-slot='slider-thumb'] { width: 24px; height: 34px; border: 2px solid var(--cream); border-radius: 5px; background: #d61920; }
.frequency-slider-native { display: block; width: 90%; height: 34px; margin: 0 auto; appearance: none; background: transparent; cursor: grab; }
.frequency-slider-native:active { cursor: grabbing; }
.frequency-slider-native::-webkit-slider-runnable-track { height: 8px; border: 1px solid #6e554c; border-radius: 999px; background: linear-gradient(90deg, #d61920 0 var(--range, 47%), #0e0b0a var(--range, 47%)); box-shadow: 0 0 12px rgba(214,25,32,.22); }
.frequency-slider-native::-webkit-slider-thumb { width: 24px; height: 34px; margin-top: -14px; appearance: none; border: 2px solid var(--cream); border-radius: 5px; background: #d61920; box-shadow: 0 0 13px rgba(214,25,32,.65); }
.frequency-slider-native::-moz-range-track { height: 8px; border: 1px solid #6e554c; border-radius: 999px; background: #0e0b0a; }
.frequency-slider-native::-moz-range-progress { height: 8px; border-radius: 999px; background: #d61920; }
.frequency-slider-native::-moz-range-thumb { width: 24px; height: 34px; border: 2px solid var(--cream); border-radius: 5px; background: #d61920; }
.frequency-marks { display: flex; justify-content: space-between; width: 90%; margin: 10px auto 42px; color: #79645a; font-size: 7px; font-weight: 900; letter-spacing: .13em; }
.big-tune { position: relative; display: flex; align-items: center; justify-content: center; gap: 11px; width: 90%; min-height: 58px; margin: 0 auto; border: 1px solid #e8d4bf; border-radius: 999px; background: #f5e8d4; color: #211611; text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 900; cursor: pointer; transition: .25s ease; }
.big-tune:hover, .big-tune.active { background: var(--primary); color: white; box-shadow: 0 0 28px rgba(214,25,32,.35); }
.big-tune svg { width: 17px; }
.waveform { position: absolute; inset: auto 5% 18px; height: 65px; display: flex; align-items: center; justify-content: space-between; opacity: .23; }
.waveform i { width: 2px; height: var(--bar); background: #f5e8d4; border-radius: 2px; animation: wave 1s ease-in-out infinite alternate; animation-delay: calc(var(--bar) * -12ms); }
.signal-message { position: relative; display: flex; flex-direction: column; justify-content: center; min-height: 560px; padding: clamp(36px,5vw,74px); overflow: hidden; border: 2px solid #211611; background: #d61920; color: #fff8e8; box-shadow: 12px 14px 0 #211611; transform: rotate(1deg); }
.quote-mark { position: absolute; right: 20px; top: -55px; color: rgba(255,255,255,.12); font: 900 290px/1 var(--font-serif); }
.signal-message > p { position: relative; margin: 0; font-family: var(--font-serif); font-size: clamp(43px,5.2vw,78px); font-style: italic; line-height: .96; letter-spacing: -.05em; animation: signal-in .5s ease both; }
.signal-message > span { margin-top: 42px; font-size: 8px; font-weight: 900; letter-spacing: .17em; }
.mood-switcher { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 42px; }
.mood-switcher button { padding: 9px 12px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; background: transparent; color: white; font-size: 8px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; cursor: pointer; }
.mood-switcher button.active { background: #fff8e8; color: #211611; }

.artifact-room { position: relative; min-height: 104vh; overflow: hidden; display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; background: #281b17; color: white; }
.world-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.04) brightness(.61); transform: scale(1.03); }
.artifact-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(30,18,15,.96) 0 36%, rgba(30,18,15,.5) 58%, rgba(30,18,15,.13)); }
.artifact-copy { position: relative; z-index: 3; grid-column: 1; padding: 110px 4vw 110px 7vw; }
.artifact-copy h2 { margin: 40px 0 24px; font: 900 clamp(58px,7.5vw,118px)/.8 var(--font-display); letter-spacing: -.045em; text-transform: uppercase; }
.artifact-copy h2 em { color: #ef2f35; font-family: var(--font-serif); font-weight: 400; text-transform: none; }
.artifact-copy > p { max-width: 490px; color: #d2bdac; font-size: 18px; line-height: 1.55; }
.sticker-buttons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 35px; }
.sticker-buttons button { display: flex; align-items: center; gap: 7px; padding: 11px 14px; border: 1px solid rgba(255,255,255,.55); border-radius: 999px; background: rgba(255,255,255,.06); color: white; font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; backdrop-filter: blur(10px); transition: .2s; }
.sticker-buttons button:hover { background: var(--primary); transform: translateY(-3px) rotate(-2deg); }
.sticker-buttons svg { width: 15px; }
.sticker-stage { position: relative; z-index: 3; grid-column: 2; height: 74vh; margin: 9vh 5vw 9vh 0; border: 1px dashed rgba(255,255,255,.5); border-radius: 46% 54% 44% 56% / 42% 44% 56% 58%; background: rgba(25,15,12,.12); box-shadow: inset 0 0 80px rgba(0,0,0,.25); }
.stage-hint { position: absolute; left: 50%; top: 50%; translate: -50% -50%; display: flex; align-items: center; gap: 8px; min-width: max-content; color: rgba(255,255,255,.62); font-size: 8px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.stage-hint svg { width: 15px; }
.spawned-sticker { position: absolute; display: grid; place-items: center; width: clamp(52px,7vw,95px); aspect-ratio: 1; border: 2px solid #211611; border-radius: 26% 74% 63% 37% / 36% 31% 69% 64%; color: #211611; box-shadow: 6px 7px 0 #211611; animation: sticker-pop .38s cubic-bezier(.16,1.4,.48,1) both, sticker-float 4s ease-in-out infinite 1s; }
.spawned-sticker { font: 900 clamp(26px,4vw,54px)/1 var(--font-serif); }
.spawned-sticker svg { width: 48%; height: 48%; stroke-width: 1.7; }
.sticker-0 { background: #f5e7d3; }.sticker-1 { background: #d61920; color: white; }.sticker-2 { background: #b9987b; }.sticker-3 { background: #fff5dc; }

.lives-section { position: relative; min-height: 120vh; padding: 110px 6vw 150px; overflow: hidden; }
.lives-heading { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .7fr; align-items: end; gap: 5vw; max-width: 1400px; margin: 48px auto 10px; }
.lives-heading h2 { margin: 0; font: 900 clamp(62px,8vw,125px)/.79 var(--font-display); text-transform: uppercase; letter-spacing: -.05em; }
.lives-heading h2 em { color: var(--primary); font: italic 400 .94em/.8 var(--font-serif); text-transform: none; }
.lives-heading p { max-width: 470px; margin: 0 0 8px; color: #674e40; font-size: 18px; line-height: 1.6; }
.orbit-map { position: relative; z-index: 2; width: min(880px, 78vw); aspect-ratio: 1.28; margin: 85px auto 0; }
.orbit-track { position: absolute; inset: 9% 16%; border: 2px dashed rgba(33,22,17,.34); border-radius: 50%; animation: orbit-spin 45s linear infinite; }
.track-two { inset: 19% 26%; border-style: solid; border-color: rgba(214,25,32,.23); animation-direction: reverse; animation-duration: 31s; }
.life-node { position: absolute; z-index: 4; translate: -50% -50%; display: grid; place-items: center; width: clamp(50px,5.6vw,78px); aspect-ratio: 1; padding: 0; border: 2px solid #211611; border-radius: 50%; background: var(--cream); color: #211611; cursor: pointer; box-shadow: 5px 6px 0 rgba(33,22,17,.9); transition: .25s cubic-bezier(.2,.8,.2,1); }
.life-node span { font: italic 900 16px/1 var(--font-serif); }
.life-node:hover, .life-node.active { background: var(--primary); color: white; transform: scale(1.18) rotate(-8deg); box-shadow: 8px 9px 0 rgba(33,22,17,.9); }
.orbit-core { position: absolute; z-index: 3; left: 50%; top: 51%; translate: -50% -50%; width: min(420px, 45vw); min-height: 250px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 38px; border: 2px solid #211611; border-radius: 50%; background: #211611; color: white; text-align: center; box-shadow: 0 0 0 13px rgba(214,25,32,.14); animation: signal-in .4s ease both; }
.orbit-core > span { color: #e75559; font-size: 8px; font-weight: 900; letter-spacing: .17em; }
.orbit-core h3 { margin: 13px 0 8px; font: italic 400 clamp(38px,4vw,60px)/.9 var(--font-serif); }
.orbit-core p { max-width: 300px; margin: 0; color: #c7b4a7; font-size: 14px; line-height: 1.5; }
.orbit-core button { display: flex; align-items: center; gap: 6px; margin-top: 20px; padding: 0; border: 0; border-bottom: 1px solid #a69183; background: transparent; color: white; font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.orbit-core svg { width: 13px; }
.orbit-cat { position: absolute; z-index: 1; right: -9%; bottom: -4%; width: 170px; aspect-ratio: 1; overflow: hidden; border: 2px solid #211611; border-radius: 50%; transform: rotate(9deg); box-shadow: 8px 8px 0 #d61920; }
.orbit-cat img { width: 100%; height: 100%; object-fit: cover; }

.closing-section { position: relative; min-height: 100vh; overflow: hidden; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; background: #d61920; color: var(--cream); }
.closing-static { opacity: .33; }
.closing-copy { position: relative; z-index: 2; padding: 120px 6vw; }
.tiny-pill { display: inline-flex; align-items: center; gap: 7px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.65); border-radius: 999px; font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.tiny-pill svg { width: 14px; }
.closing-copy h2 { margin: 45px 0 30px; font: 900 clamp(70px,9vw,148px)/.75 var(--font-display); text-transform: uppercase; letter-spacing: -.05em; text-shadow: 5px 6px 0 #841014; }
.closing-copy h2 em { color: #211611; font: italic 400 .88em/.7 var(--font-serif); text-transform: none; text-shadow: none; }
.closing-copy > p { max-width: 620px; color: #ffe7d1; font: italic 400 clamp(20px,2vw,30px)/1.4 var(--font-serif); }
.closing-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.closing-actions a { min-height: 57px; display: flex; align-items: center; gap: 11px; padding: 0 20px; border: 2px solid #211611; border-radius: 999px; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; box-shadow: 5px 5px 0 #211611; transition: .2s; }
.closing-actions a:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 #211611; }
.closing-buy { background: var(--cream); color: #211611; }
.closing-x { background: #211611; color: white; }
.closing-x span { display: grid; place-items: center; width: 28px; aspect-ratio: 1; border: 1px solid white; border-radius: 50%; }
.closing-actions svg { width: 17px; }
.closing-image { position: relative; z-index: 2; align-self: stretch; overflow: hidden; clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%); }
.closing-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.78) contrast(1.08); transform: scale(1.03) translate(calc(var(--mouse-x) * -5px), calc(var(--mouse-y) * -3px)); }
.closing-image::after { content: 'STILL LISTENING'; position: absolute; left: 9%; bottom: 5%; padding: 9px 13px; background: var(--cream); color: #211611; font-size: 9px; font-weight: 900; letter-spacing: .16em; transform: rotate(-4deg); box-shadow: 4px 4px 0 #211611; }

footer { position: relative; min-height: 380px; display: grid; grid-template-columns: 1.2fr .8fr .7fr; align-items: start; gap: 5vw; padding: 80px 6vw 60px; background: #211611; color: var(--cream); }
.footer-brand { color: var(--primary); font: 900 clamp(70px,9vw,140px)/.75 var(--font-display); letter-spacing: -.05em; }
footer p { margin: 0; color: #c3ac9b; font: italic 400 23px/1.3 var(--font-serif); }
footer > div:nth-of-type(2) { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
footer > div:nth-of-type(2) a { border-bottom: 1px solid #725f54; }
footer small { position: absolute; left: 6vw; right: 6vw; bottom: 28px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.15); color: #6e5a50; font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

.signal-remote { position: fixed; z-index: 45; left: 50%; bottom: 18px; translate: -50% 0; display: grid; grid-template-columns: 36px auto 36px; align-items: center; gap: 4px; padding: 5px; border: 1px solid #211611; border-radius: 999px; background: rgba(255,247,232,.9); color: #211611; box-shadow: 4px 4px 0 rgba(33,22,17,.86); backdrop-filter: blur(13px); }
.signal-remote button { display: grid; place-items: center; width: 34px; aspect-ratio: 1; padding: 0; border: 0; border-radius: 50%; background: #211611; color: white; cursor: pointer; }
.signal-remote button:hover { background: var(--primary); }
.signal-remote svg { width: 13px; }
.signal-remote > span { display: flex; align-items: center; gap: 7px; padding: 0 8px; font-size: 7px; font-weight: 900; letter-spacing: .13em; }
.signal-remote i { width: 6px; aspect-ratio: 1; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 3px rgba(214,25,32,.16); }

@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(214,25,32,0); } 100% { box-shadow: 0 0 0 0 rgba(214,25,32,0); } }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes soft-bounce { 50% { transform: translateY(5px); } }
@keyframes card-in { from { opacity: 0; transform: translateX(35px) rotate(1deg); } to { opacity: 1; transform: none; } }
@keyframes signal-in { from { opacity: 0; transform: scale(.94) translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes wave { to { height: calc(var(--bar) * .35); opacity: .35; } }
@keyframes sticker-pop { from { opacity: 0; scale: .15; } to { opacity: 1; scale: 1; } }
@keyframes sticker-float { 50% { translate: 0 -8px; } }
@keyframes noise-shift { 0% { transform: translate(0); } 33% { transform: translate(-1%,1%); } 66% { transform: translate(1%,-1%); } }
@keyframes eye-watch { 0%,100% { transform: translateX(-9px); } 50% { transform: translateX(9px); } }

@media (max-width: 1100px) {
  .hero { grid-template-columns: .95fr 1.05fr; padding-inline: 4vw; }
  .hero h1 { font-size: clamp(72px,10.3vw,118px); }
  .hero-portrait { min-height: 520px; }
  .origin-layout { grid-template-columns: 125px 1fr; }
  .origin-poster { grid-column: 2; min-height: 340px; }
  .origin-poster strong { font-size: 82px; }
  .lab-layout { grid-template-columns: 1fr; }
  .signal-message { min-height: 440px; }
  .artifact-room { grid-template-columns: 1fr; align-items: start; }
  .artifact-copy { grid-column: 1; padding-bottom: 20px; }
  .artifact-overlay { background: linear-gradient(180deg, rgba(30,18,15,.96) 0 40%, rgba(30,18,15,.46) 72%, rgba(30,18,15,.2)); }
  .sticker-stage { grid-column: 1; height: 55vh; margin: 25px 5vw 80px; }
  .closing-section { grid-template-columns: 1fr 42%; }
}

@media (max-width: 780px) {
  .topbar { grid-template-columns: 1fr auto; padding: 13px 18px; }
  .nav-links { display: none; }
  .x-link { width: 28px; }
  .hero { grid-template-columns: 1fr; gap: 55px; padding: 108px 22px 80px; }
  .hero-copy { order: 1; }
  .hero-portrait { order: 0; min-height: auto; margin-top: 28px; }
  .portrait-ring { width: min(81vw, 470px); }
  .orbit-line-a { width: min(95vw, 540px); }.orbit-line-b { width: min(108vw, 610px); }
  .orbit-label-one { left: -1%; }.orbit-label-two { right: -2%; }
  .tune-chip { bottom: -21px; }
  .hero h1 { font-size: clamp(61px,20vw,105px); }
  .lede { margin-top: 29px; }
  .hero-scribble, .hero-index { display: none; }
  .scroll-cue { display: none; }
  .origin-section, .anatomy-section, .signal-lab, .lives-section { padding: 82px 20px; }
  .origin-layout { grid-template-columns: 1fr; margin-top: 44px; }
  .story-index { flex-direction: row; overflow-x: auto; }
  .story-index button { flex: 0 0 auto; }
  .story-card { min-height: 610px; padding: 44px 28px 90px; border-radius: 90px 90px 8px 8px / 28px 28px 8px 8px; }
  .story-card h2 { font-size: 49px; }
  .origin-poster { grid-column: 1; min-height: 390px; }
  .origin-poster strong { font-size: 67px; }
  .anatomy-layout { grid-template-columns: 1fr; margin-top: 50px; }
  .anatomy-photo { margin: 0 auto; }
  .anatomy-copy h2 { font-size: 54px; }
  .lab-layout { margin-top: 48px; }
  .lab-console { min-height: 540px; padding: 27px 19px; }
  .frequency-readout { margin-inline: 0; gap: 6px; }
  .frequency-readout strong { font-size: 86px; }
  .signal-message { min-height: 480px; padding: 38px 28px; }
  .signal-message > p { font-size: 48px; }
  .artifact-copy { padding: 82px 24px 10px; }
  .artifact-copy h2 { font-size: 64px; }
  .sticker-stage { margin: 30px 20px 70px; height: 58vh; }
  .lives-heading { grid-template-columns: 1fr; margin-top: 36px; }
  .lives-heading h2 { font-size: 65px; }
  .orbit-map { width: 92vw; margin-left: 50%; translate: -50% 0; margin-top: 90px; aspect-ratio: .86; }
  .orbit-track { inset: 13% 12%; }.track-two { inset: 23% 23%; }
  .orbit-core { width: 57vw; min-height: 220px; padding: 24px; }
  .orbit-core h3 { font-size: 36px; }
  .orbit-core p { font-size: 12px; }
  .life-node { width: 49px; }
  .orbit-cat { width: 100px; right: 2%; bottom: 3%; }
  .closing-section { grid-template-columns: 1fr; }
  .closing-copy { padding: 100px 20px 70px; }
  .closing-copy h2 { font-size: 68px; }
  .closing-image { min-height: 65vh; clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%); }
  footer { grid-template-columns: 1fr; min-height: 520px; padding: 70px 20px 90px; }
  .footer-brand { font-size: 74px; }
  footer small { left: 20px; right: 20px; bottom: 65px; }
  .signal-remote { bottom: 12px; }
}

@media (max-width: 440px) {
  .brand > span:last-child { display: none; }
  .mini-buy { font-size: 9px; }
  .hero-actions { display: grid; }
  .cta { width: 100%; }
  .orbit-label { font-size: 7px; padding: 7px 9px; }
  .frequency-readout strong { font-size: 72px; }
  .closing-actions { display: grid; }
  .closing-actions a { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .hero-portrait, .closing-image img { transform: none !important; }
}
