:root {
  --bg: #080a09;
  --bg-soft: #0d100e;
  --panel: #111512;
  --panel-bright: #161b17;
  --text: #f1f3e9;
  --soft: #bec5b8;
  --muted: #777f75;
  --line: rgba(232, 240, 222, .14);
  --line-strong: rgba(232, 240, 222, .28);
  --acid: #c8ff4d;
  --orange: #ff7448;
  --cyan: #65e5d1;
  --max: 1540px;
  --pad: clamp(20px, 4vw, 68px);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.45;
  cursor: default;
}
body::before {
  content: "";
  position: fixed;
  z-index: 40;
  inset: 0;
  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='.75'/%3E%3C/svg%3E");
}
::selection { background: var(--acid); color: #071007; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
canvas { display: block; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--acid);
  color: #080a09;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.section-shell { width: min(100%, var(--max)); margin-inline: auto; padding-inline: var(--pad); }
.scroll-progress { position: fixed; z-index: 80; inset: 0 0 auto; height: 2px; background: rgba(255,255,255,.04); }
.scroll-progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--acid), var(--cyan)); transform: scaleX(0); transform-origin: left; }
.cursor-aura {
  position: fixed;
  z-index: 2;
  width: 340px;
  height: 340px;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,255,77,.075), rgba(101,229,209,.018) 42%, transparent 70%);
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
  transition: opacity .4s ease;
}
body:hover .cursor-aura { opacity: 1; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: var(--pad);
  right: var(--pad);
  max-width: calc(var(--max) - var(--pad) * 2);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 62px;
  padding: 8px 10px 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8,10,9,.62);
  backdrop-filter: blur(18px) saturate(125%);
  transition: transform .45s var(--ease), background .3s ease, border-color .3s ease;
}
.site-header.is-scrolled { background: rgba(8,10,9,.87); border-color: var(--line-strong); }
.site-header.is-hidden { transform: translateY(-130%); }
.brand { display: flex; align-items: center; gap: 8px; width: max-content; font-size: .84rem; font-weight: 800; letter-spacing: -.02em; }
.brand span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--text); color: var(--bg); transition: transform .5s var(--ease), background .25s ease; }
.brand small { color: var(--muted); font-size: .58rem; letter-spacing: .13em; }
.brand:hover span { transform: rotate(-15deg); background: var(--acid); }
.header-status { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .61rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; }
.header-status i, .live-chip i, .response-note i { width: 6px; height: 6px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 0 rgba(200,255,77,.5); animation: ping 2s infinite; }
.site-nav { display: flex; justify-content: flex-end; align-items: center; gap: clamp(13px, 2.3vw, 34px); padding-right: 10px; }
.site-nav a { position: relative; color: var(--soft); font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: var(--acid); transition: right .3s var(--ease); }
.site-nav a:hover::after, .site-nav a.is-current::after { right: 0; }
.site-nav a.is-current { color: var(--text); }

.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; color: var(--muted); font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .19em; }
.eyebrow > span { color: var(--acid); }
.eyebrow::after { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .45; }
em { color: var(--acid); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(440px, 1.04fr);
  gap: clamp(20px, 4vw, 70px);
  align-items: center;
  padding-top: 120px;
  padding-bottom: 54px;
}
.hero::before { content: ""; position: absolute; z-index: -1; top: 16%; left: 38%; width: 44vw; height: 44vw; border-radius: 50%; background: radial-gradient(circle, rgba(200,255,77,.06), transparent 63%); filter: blur(30px); }
.hero-copy { position: relative; z-index: 4; padding-top: 15px; }
.hero h1, .page-hero h1, .contact-title h1 {
  margin: 0;
  font-size: clamp(5.8rem, 10.6vw, 11.5rem);
  line-height: .71;
  letter-spacing: -.088em;
  font-weight: 760;
}
.hero h1 em { display: inline-block; margin-left: .08em; font-size: .87em; letter-spacing: -.075em; transform: rotate(-3deg); }
.hero-intro { max-width: 620px; margin: clamp(42px, 5vw, 72px) 0 30px; color: var(--soft); font-size: clamp(1rem, 1.35vw, 1.3rem); letter-spacing: -.015em; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; }
.action-button {
  --mx: 0px;
  --my: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-width: 220px;
  padding: 9px 10px 9px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
  cursor: pointer;
  transform: translate(var(--mx), var(--my));
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .2s ease;
}
.action-button b { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--acid); color: var(--bg); font-size: 1rem; transition: transform .4s var(--ease); }
.action-button:hover { background: var(--text); border-color: var(--text); color: var(--bg); }
.action-button:hover b { transform: rotate(45deg); }
.text-link { padding: 8px 0; border-bottom: 1px solid var(--line-strong); color: var(--soft); font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; transition: color .2s ease, border-color .2s ease; }
.text-link span { margin-left: 8px; color: var(--acid); }
.text-link:hover { color: var(--text); border-color: var(--acid); }

.sculpture-stage { position: relative; min-height: min(75vh, 790px); isolation: isolate; overflow: hidden; border-radius: 48% 52% 46% 54% / 55% 43% 57% 45%; background: radial-gradient(circle at 50% 47%, rgba(25,32,25,.95), rgba(9,11,10,.15) 56%, transparent 70%); }
.sculpture-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; }
.stage-reticle { position: absolute; z-index: 1; inset: 10%; border: 1px solid rgba(200,255,77,.12); border-radius: 50%; }
.stage-reticle::before, .stage-reticle::after { content: ""; position: absolute; background: rgba(200,255,77,.16); }
.stage-reticle::before { top: 50%; left: -8%; right: -8%; height: 1px; }
.stage-reticle::after { left: 50%; top: -8%; bottom: -8%; width: 1px; }
.stage-orbit { position: absolute; z-index: 1; left: 50%; top: 50%; border: 1px solid var(--line); border-radius: 50%; transform-style: preserve-3d; }
.orbit-one { width: 82%; height: 35%; transform: translate(-50%,-50%) rotate(-19deg); animation: orbitPulse 7s ease-in-out infinite; }
.orbit-two { width: 42%; height: 91%; transform: translate(-50%,-50%) rotate(33deg); opacity: .55; animation: orbitPulse 9s ease-in-out -2s infinite reverse; }
.stage-orbit::after { content: ""; position: absolute; top: 50%; left: -3px; width: 6px; height: 6px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 18px var(--acid); }
.stage-label { position: absolute; z-index: 4; display: flex; justify-content: space-between; gap: 18px; color: var(--muted); font-size: .58rem; text-transform: uppercase; letter-spacing: .14em; }
.stage-label b { color: var(--acid); font-weight: 700; }
.stage-label-top { top: 9%; left: 8%; right: 8%; }
.stage-label-side { right: 2%; top: 55%; flex-direction: column; gap: 2px; transform: rotate(90deg) translateX(50%); transform-origin: right; }
.stage-coordinate { position: absolute; z-index: 4; left: 7%; bottom: 8%; color: rgba(255,255,255,.28); font-family: monospace; font-size: .55rem; letter-spacing: .1em; }
.hero-index { position: absolute; right: var(--pad); bottom: 26px; color: rgba(255,255,255,.25); font-size: .56rem; letter-spacing: .16em; writing-mode: vertical-rl; }

.kinetic-strip { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--acid); color: var(--bg); transform: rotate(-.8deg) scale(1.015); }
.kinetic-track { width: max-content; display: flex; align-items: center; gap: 25px; padding: 15px 0; animation: marquee 28s linear infinite; }
.kinetic-track span { font-size: clamp(.78rem, 1.2vw, 1.05rem); font-weight: 850; letter-spacing: .08em; }
.kinetic-track i { font-style: normal; font-size: .7rem; }

.live-log { padding-top: clamp(120px, 15vw, 220px); padding-bottom: clamp(105px, 14vw, 200px); }
.live-log-heading { display: flex; justify-content: space-between; align-items: start; border-top: 1px solid var(--line); padding-top: 22px; }
.live-chip { display: flex; align-items: center; gap: 8px; color: var(--acid); font-family: monospace; font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; }
.counter-wrap { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(45px, 8vw, 120px); align-items: end; margin-top: clamp(55px, 7vw, 100px); }
.counter-intro h2 { margin: 0 0 24px; font-size: clamp(2.4rem, 4.4vw, 5rem); line-height: .92; letter-spacing: -.06em; font-weight: 650; }
.counter-intro p { max-width: 480px; margin: 0; color: var(--muted); font-size: .93rem; }
.live-counter { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); align-items: end; }
.counter-unit { position: relative; min-width: 0; padding: 24px 16px 16px; border-left: 1px solid var(--line); }
.counter-unit strong { display: block; overflow: hidden; color: var(--soft); font-family: "Arial Narrow", sans-serif; font-size: clamp(2.6rem, 5vw, 6rem); line-height: .75; letter-spacing: -.075em; font-variant-numeric: tabular-nums; transition: color .2s ease, transform .35s var(--ease); }
.counter-unit strong.tick { color: var(--acid); transform: translateY(-3px); }
.counter-primary strong { color: var(--text); font-size: clamp(5.2rem, 10vw, 11rem); }
.counter-unit span { display: block; margin-top: 18px; color: var(--muted); font-size: .59rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; }
.counter-track { position: relative; height: 2px; margin-top: 48px; background: var(--line); }
.counter-track span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--acid), var(--cyan)); }
.counter-track i { position: absolute; top: 50%; left: 0; width: 10px; height: 10px; border: 2px solid var(--bg); border-radius: 50%; background: var(--acid); box-shadow: 0 0 20px rgba(200,255,77,.65); transform: translate(-50%,-50%); }

.work { padding-top: clamp(110px, 14vw, 210px); padding-bottom: clamp(120px, 15vw, 230px); border-top: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 8vw; align-items: end; margin-bottom: clamp(65px, 9vw, 135px); }
.section-heading h2 { margin: 0; font-size: clamp(3.4rem, 7.3vw, 8.5rem); line-height: .84; letter-spacing: -.075em; font-weight: 690; }
.section-heading > p { max-width: 420px; margin: 0; color: var(--muted); font-size: .9rem; }
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(70px, 10vw, 155px) clamp(18px, 3vw, 48px); }
.project-card { position: relative; transform-style: preserve-3d; will-change: transform; transition: transform .45s var(--ease); }
.project-card:nth-child(even) { margin-top: clamp(55px, 8vw, 125px); }
.project-visual { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid var(--line); background: var(--panel); transform: translateZ(0); }
.project-visual::before { content: ""; position: absolute; z-index: 2; inset: 0; pointer-events: none; background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.055) 45%, transparent 60%); transform: translateX(-100%); transition: transform 1s var(--ease); }
.project-card:hover .project-visual::before { transform: translateX(100%); }
.project-visual canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.visual-anatomy { background: radial-gradient(circle at 50% 45%, #293128, #101310 62%); }
.visual-rig { background: radial-gradient(circle at 64% 35%, #172b27, #0d1110 65%); }
.visual-world { background: linear-gradient(#181610, #0d100e 70%); }
.visual-next { background: radial-gradient(circle at 50% 52%, #241b17, #0e100e 68%); }
.visual-hud { position: absolute; z-index: 3; top: 18px; left: 18px; right: 18px; display: flex; justify-content: space-between; color: rgba(241,243,233,.48); font-family: monospace; font-size: .57rem; letter-spacing: .08em; }
.visual-number { position: absolute; z-index: 1; right: 4%; bottom: -6%; color: rgba(255,255,255,.035); font-size: clamp(8rem, 16vw, 17rem); font-weight: 850; line-height: 1; letter-spacing: -.1em; }
.project-meta { display: flex; justify-content: space-between; gap: 25px; margin-top: 17px; padding-top: 18px; border-top: 1px solid var(--line); transform: translateZ(20px); }
.project-meta h3 { margin: 9px 0 4px; font-size: clamp(1.3rem, 2vw, 2rem); font-weight: 550; letter-spacing: -.035em; }
.project-meta p { margin: 0; color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }
.project-arrow { font-size: 1.45rem; transition: transform .4s var(--ease), color .2s ease; }
.project-card:hover .project-arrow { color: var(--acid); transform: translate(7px,-7px) rotate(6deg); }
.status { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font-size: .59rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #777; }
.status-live::before { background: var(--acid); box-shadow: 0 0 12px rgba(200,255,77,.5); animation: ping 2s infinite; }
.status-waiting::before { background: var(--orange); }

.challenge { padding-top: clamp(110px, 15vw, 220px); padding-bottom: clamp(110px, 14vw, 210px); border-top: 1px solid var(--line); }
.challenge-head { display: grid; grid-template-columns: .35fr .65fr; gap: 5vw; align-items: start; }
.challenge-head h2 { margin: 0; font-size: clamp(3.3rem, 7vw, 8rem); line-height: .86; letter-spacing: -.07em; font-weight: 670; }
.challenge-head h2 em { color: var(--soft); }
.challenge-route { position: relative; display: grid; grid-template-columns: repeat(4,1fr); margin-top: clamp(70px, 10vw, 150px); }
.route-line { position: absolute; top: 59px; left: 5%; right: 5%; height: 1px; background: var(--line-strong); }
.route-line span { display: block; width: 25%; height: 100%; background: linear-gradient(90deg,var(--acid),var(--cyan)); animation: routeScan 4s ease-in-out infinite; }
.challenge-route article { position: relative; z-index: 1; padding-right: 24px; }
.challenge-route b { display: block; margin-bottom: 22px; color: rgba(255,255,255,.18); font-size: 2.2rem; letter-spacing: -.05em; }
.challenge-route i { display: block; width: 11px; height: 11px; margin-bottom: 24px; border: 2px solid var(--bg); border-radius: 50%; background: var(--soft); box-shadow: 0 0 0 1px var(--line-strong); transition: transform .3s ease, background .3s ease; }
.challenge-route article:hover i { background: var(--acid); transform: scale(1.5); }
.challenge-route p { margin: 0 0 6px; font-size: 1.15rem; font-weight: 600; }
.challenge-route small { color: var(--muted); font-size: .73rem; }
.challenge-note { display: flex; align-items: center; gap: 20px; margin-top: 80px; padding: 25px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.challenge-note p { margin: 0; color: var(--soft); font-size: clamp(1rem,1.5vw,1.35rem); }
.challenge-note strong { color: var(--acid); font-weight: 550; }
.signal-mark { position: relative; flex: 0 0 auto; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 50%; }
.signal-mark::before, .signal-mark::after { content: ""; position: absolute; inset: 35%; border-radius: 50%; background: var(--acid); }
.signal-mark::after { inset: -1px; border: 1px solid var(--acid); background: transparent; animation: signal 2s ease-out infinite; }

.manifesto { padding-top: clamp(120px, 16vw, 250px); padding-bottom: clamp(120px, 16vw, 250px); border-top: 1px solid var(--line); }
.manifesto-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 8vw; align-items: end; }
.manifesto h2 { margin: 0; font-size: clamp(4rem, 9vw, 10rem); line-height: .77; letter-spacing: -.085em; font-weight: 730; }
.manifesto h2 span { color: var(--muted); }
.manifesto-grid > div p { max-width: 480px; margin: 0 0 32px; color: var(--soft); font-size: clamp(1.15rem, 2vw, 1.8rem); line-height: 1.3; letter-spacing: -.025em; }

.site-footer { display: grid; grid-template-columns: 1fr auto auto; gap: clamp(30px,8vw,120px); align-items: end; padding-top: 40px; padding-bottom: 42px; border-top: 1px solid var(--line); color: var(--muted); font-size: .62rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-brand { color: var(--text); font-size: clamp(1.8rem,3.5vw,3.8rem); font-weight: 800; letter-spacing: -.07em; }
.site-footer p { margin: 5px 0 0; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { transition: color .2s ease; }
.footer-links a:hover { color: var(--acid); }
.footer-meta { text-align: right; }

/* Inner pages */
.page-main { padding-top: 1px; }
.page-hero { min-height: 100svh; display: flex; flex-direction: column; justify-content: space-between; padding-top: clamp(165px,18vw,230px); padding-bottom: 70px; }
.page-hero h1 { font-size: clamp(5.5rem, 11vw, 12rem); }
.page-hero h1 em { color: var(--soft); }
.page-hero-bottom { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: end; margin-top: 80px; }
.page-hero-bottom > p { max-width: 920px; margin: 0; color: var(--soft); font-size: clamp(1.4rem,3vw,3rem); line-height: 1.18; letter-spacing: -.04em; }
.mini-live { display: grid; grid-template-columns: auto auto; column-gap: 12px; align-items: end; min-width: 220px; padding-top: 14px; border-top: 1px solid var(--line-strong); }
.mini-live i { grid-row: 1 / span 2; align-self: start; width: 7px; height: 7px; margin-top: 8px; border-radius: 50%; background: var(--acid); animation: ping 2s infinite; }
.mini-live strong { color: var(--acid); font-size: clamp(3.7rem,7vw,7.5rem); line-height: .78; letter-spacing: -.08em; font-variant-numeric: tabular-nums; }
.mini-live span { color: var(--muted); font-size: .6rem; text-transform: uppercase; letter-spacing: .13em; }

.beliefs { padding-top: clamp(100px,13vw,190px); padding-bottom: clamp(110px,15vw,220px); border-top: 1px solid var(--line); }
.belief-stack { border-top: 1px solid var(--line); }
.belief-stack article { display: grid; grid-template-columns: .15fr .52fr .33fr; gap: 35px; align-items: center; padding: clamp(28px,4vw,58px) 0; border-bottom: 1px solid var(--line); transition: padding-left .5s var(--ease), background .3s ease; }
.belief-stack article:hover { padding-left: 24px; background: linear-gradient(90deg,rgba(200,255,77,.045),transparent 70%); }
.belief-stack article > span { color: var(--acid); font-family: monospace; font-size: .7rem; }
.belief-stack h2 { margin: 0; font-size: clamp(2.2rem,5vw,5.5rem); line-height: .9; letter-spacing: -.06em; font-weight: 620; }
.belief-stack p { margin: 0; color: var(--muted); }

.focus-section { padding-top: clamp(110px,14vw,210px); padding-bottom: clamp(110px,15vw,220px); border-top: 1px solid var(--line); }
.focus-orbit { position: relative; min-height: 720px; margin-top: 50px; border: 1px solid var(--line); border-radius: 50%; }
.focus-orbit::before, .focus-orbit::after { content: ""; position: absolute; left: 50%; top: 50%; border: 1px solid var(--line); border-radius: 50%; transform: translate(-50%,-50%); }
.focus-orbit::before { width: 65%; height: 65%; }
.focus-orbit::after { width: 34%; height: 34%; border-style: dashed; animation: rotate 28s linear infinite; }
.focus-core { position: absolute; z-index: 3; left: 50%; top: 50%; display: flex; flex-direction: column; align-items: center; transform: translate(-50%,-50%); }
.focus-core span, .focus-core small { color: var(--muted); font-size: .56rem; text-transform: uppercase; letter-spacing: .15em; }
.focus-core strong { color: var(--acid); font-size: clamp(3rem,7vw,7rem); line-height: .9; letter-spacing: -.08em; }
.focus-orbit article { --angle: calc(var(--i) * 90deg - 45deg); position: absolute; z-index: 4; left: calc(50% + 40% * cos(var(--angle))); top: calc(50% + 40% * sin(var(--angle))); display: flex; align-items: center; gap: 14px; min-width: 220px; padding: 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(8,10,9,.9); transform: translate(-50%,-50%); transition: border-color .3s ease, transform .3s var(--ease); }
.focus-orbit article:hover { border-color: var(--acid); transform: translate(-50%,-50%) scale(1.06); }
.focus-orbit article b { display: grid; place-items: center; flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%; background: var(--panel-bright); color: var(--acid); }
.focus-orbit h3 { margin: 0 0 2px; font-size: .92rem; }
.focus-orbit p { margin: 0; color: var(--muted); font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; }

.timeline { padding-top: clamp(110px,15vw,220px); padding-bottom: clamp(110px,15vw,220px); border-top: 1px solid var(--line); }
.timeline-row { display: grid; grid-template-columns: .18fr 32px .82fr; gap: 22px; min-height: 170px; position: relative; }
.timeline-row time { padding-top: 5px; color: var(--acid); font-family: monospace; font-size: .7rem; text-transform: uppercase; }
.timeline-row i { position: relative; width: 11px; height: 11px; border-radius: 50%; background: var(--soft); box-shadow: 0 0 0 5px var(--bg), 0 0 0 6px var(--line); }
.timeline-row i::after { content: ""; position: absolute; z-index: -1; left: 5px; top: 11px; width: 1px; height: 160px; background: var(--line); }
.timeline-row:last-child i::after { display: none; }
.timeline-row h3 { margin: 0 0 10px; font-size: clamp(1.8rem,3vw,3.3rem); line-height: 1; letter-spacing: -.045em; font-weight: 570; }
.timeline-row p { max-width: 720px; margin: 0; color: var(--muted); }
.page-cta { padding-top: clamp(110px,15vw,220px); padding-bottom: clamp(110px,15vw,220px); border-top: 1px solid var(--line); }
.page-cta h2 { margin: 0 0 50px; font-size: clamp(4rem,9vw,10rem); line-height: .78; letter-spacing: -.08em; font-weight: 700; }
.page-cta h2 em { color: var(--soft); }

/* Contact */
.contact-hero { min-height: 94svh; display: grid; grid-template-columns: 1.1fr .9fr; gap: 5vw; align-items: center; padding-top: 130px; padding-bottom: 70px; }
.contact-title h1 { font-size: clamp(7rem,15vw,16rem); }
.contact-title h1 em { color: var(--acid); }
.contact-signal { display: flex; flex-direction: column; align-items: center; gap: 40px; }
.signal-rings { position: relative; width: min(38vw,520px); aspect-ratio: 1; display: grid; place-items: center; }
.signal-rings i { position: absolute; border: 1px solid var(--line-strong); border-radius: 50%; animation: signal 3.2s ease-out infinite; }
.signal-rings i:nth-child(1) { inset: 42%; animation-delay: 0s; }
.signal-rings i:nth-child(2) { inset: 27%; animation-delay: .65s; }
.signal-rings i:nth-child(3) { inset: 10%; animation-delay: 1.3s; }
.signal-rings b { width: 16px; height: 16px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 35px var(--acid); animation: breathe 2s ease-in-out infinite; }
.contact-signal > span { color: var(--muted); font-family: monospace; font-size: .65rem; line-height: 1.5; text-align: center; letter-spacing: .12em; }
.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 9vw; padding-top: clamp(100px,13vw,190px); padding-bottom: clamp(110px,15vw,220px); border-top: 1px solid var(--line); }
.contact-copy h2 { margin: 0 0 25px; font-size: clamp(2.7rem,5vw,5.7rem); line-height: .91; letter-spacing: -.06em; font-weight: 620; }
.contact-copy > p:not(.eyebrow) { max-width: 470px; color: var(--muted); font-size: 1rem; }
.response-note { display: flex; align-items: start; gap: 12px; margin-top: 45px; color: var(--muted); font-family: monospace; font-size: .65rem; text-transform: uppercase; letter-spacing: .06em; }
.response-note i { flex: 0 0 auto; margin-top: 5px; background: var(--orange); box-shadow: none; }
.contact-form { border-top: 1px solid var(--line-strong); }
.field { display: grid; grid-template-columns: .28fr .72fr; gap: 28px; padding: 27px 0; border-bottom: 1px solid var(--line); transition: border-color .2s ease; }
.field > span { padding-top: 8px; color: var(--muted); font-size: .59rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.field input, .field textarea { width: 100%; padding: 0; border: 0; outline: 0; resize: vertical; background: transparent; color: var(--text); font-size: clamp(1.3rem,2.2vw,2.3rem); letter-spacing: -.03em; }
.field input::placeholder, .field textarea::placeholder { color: #485047; }
.field:focus-within { border-color: var(--acid); }
.form-footer { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding-top: 30px; }
.form-status { max-width: 280px; margin: 0; color: var(--muted); font-size: .7rem; text-align: right; }
.form-status.success { color: var(--acid); }
.contact-footer-line { display: flex; justify-content: space-between; gap: 25px; padding-top: 25px; padding-bottom: 25px; border-top: 1px solid var(--line); color: var(--muted); font-family: monospace; font-size: .62rem; letter-spacing: .08em; }

.reveal { opacity: 0; transform: translateY(42px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.project-card.reveal:nth-child(2), .belief-stack article:nth-child(2) { transition-delay: .08s; }
.project-card.reveal:nth-child(3), .belief-stack article:nth-child(3) { transition-delay: .14s; }
.project-card.reveal:nth-child(4) { transition-delay: .2s; }

@keyframes ping { 0%,100% { box-shadow: 0 0 0 0 rgba(200,255,77,.35); } 50% { box-shadow: 0 0 0 7px rgba(200,255,77,0); } }
@keyframes orbitPulse { 0%,100% { opacity: .25; } 50% { opacity: .8; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes routeScan { 0% { transform: translateX(0); } 50% { transform: translateX(300%); } 100% { transform: translateX(0); } }
@keyframes signal { 0% { opacity: 1; transform: scale(.55); } 100% { opacity: 0; transform: scale(1.15); } }
@keyframes rotate { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes breathe { 50% { transform: scale(1.35); box-shadow: 0 0 55px var(--acid); } }

@supports not (left: calc(50% + 10px * cos(45deg))) {
  .focus-orbit article:nth-of-type(1) { left: 18%; top: 22%; }
  .focus-orbit article:nth-of-type(2) { left: 82%; top: 22%; }
  .focus-orbit article:nth-of-type(3) { left: 82%; top: 78%; }
  .focus-orbit article:nth-of-type(4) { left: 18%; top: 78%; }
}

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; padding-top: 160px; }
  .hero-copy { max-width: 900px; }
  .sculpture-stage { width: min(100%,800px); min-height: 680px; margin: -60px auto 0; }
  .hero-index { display: none; }
  .counter-wrap { grid-template-columns: 1fr; }
  .live-counter { margin-left: 0; }
  .challenge-head { grid-template-columns: 1fr; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .focus-orbit { min-height: 640px; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --pad: 18px; }
  .cursor-aura, .header-status { display: none; }
  .site-header { top: 10px; grid-template-columns: 1fr auto; min-height: 54px; padding: 5px 7px 5px 8px; }
  .brand span { width: 38px; height: 38px; }
  .site-nav { gap: 13px; padding-right: 7px; }
  .site-nav a { font-size: .57rem; }
  .hero { padding-top: 135px; padding-bottom: 30px; }
  .hero h1, .page-hero h1 { font-size: clamp(5rem,24vw,8.5rem); }
  .hero-intro { margin-top: 36px; font-size: 1rem; }
  .sculpture-stage { min-height: 510px; margin-top: -20px; }
  .stage-label-side { display: none; }
  .kinetic-track { padding-block: 12px; }
  .live-log-heading { display: block; }
  .live-chip { margin-top: 18px; }
  .live-counter { grid-template-columns: repeat(3,1fr); }
  .counter-primary { grid-column: 1 / -1; border-bottom: 1px solid var(--line); }
  .counter-unit { padding: 22px 10px 15px; }
  .counter-primary strong { font-size: clamp(7rem,35vw,10rem); }
  .counter-unit strong { font-size: clamp(2.8rem,14vw,4.5rem); }
  .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .section-heading h2 { font-size: clamp(3.5rem,16vw,6.8rem); }
  .project-grid { grid-template-columns: 1fr; gap: 75px; }
  .project-card:nth-child(even) { margin-top: 0; }
  .project-visual { aspect-ratio: 5 / 6; }
  .challenge-route { grid-template-columns: 1fr; gap: 0; }
  .route-line { top: 4%; bottom: 4%; left: 5px; right: auto; width: 1px; height: auto; }
  .route-line span { width: 100%; height: 25%; animation: routeScanMobile 4s ease-in-out infinite; }
  .challenge-route article { display: grid; grid-template-columns: 54px 24px 1fr; padding: 0 0 44px; }
  .challenge-route b { margin: 0; }
  .challenge-route i { margin: 10px 0 0; }
  .challenge-route p { margin-top: 6px; }
  .challenge-route small { grid-column: 3; }
  .manifesto h2 { font-size: clamp(4rem,19vw,8rem); }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .footer-meta { text-align: left; }
  .page-hero { min-height: 90svh; padding-top: 155px; }
  .page-hero-bottom { grid-template-columns: 1fr; }
  .belief-stack article { grid-template-columns: 40px 1fr; gap: 20px; }
  .belief-stack article p { grid-column: 2; }
  .focus-orbit { min-height: auto; border-radius: 0; border-inline: 0; padding: 35px 0; }
  .focus-orbit::before, .focus-orbit::after { display: none; }
  .focus-core { position: relative; left: auto; top: auto; margin-bottom: 30px; transform: none; }
  .focus-orbit article { position: relative; left: auto !important; top: auto !important; width: 100%; margin-bottom: 12px; transform: none; }
  .focus-orbit article:hover { transform: translateX(8px); }
  .timeline-row { grid-template-columns: 70px 20px 1fr; gap: 12px; }
  .contact-hero { grid-template-columns: 1fr; min-height: auto; padding-top: 155px; }
  .contact-title h1 { font-size: clamp(7rem,34vw,11rem); }
  .signal-rings { width: min(90vw,430px); }
  .field { grid-template-columns: 1fr; gap: 15px; }
  .form-footer { align-items: flex-start; flex-direction: column; }
  .form-status { text-align: left; }
  .contact-footer-line { flex-direction: column; }
}

@keyframes routeScanMobile { 0% { transform: translateY(0); } 50% { transform: translateY(300%); } 100% { transform: translateY(0); } }

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