:root {
  color-scheme: dark;
  --ink: #08090a;
  --ink-elevated: #0e1011;
  --paper: #ecece7;
  --paper-muted: #a6a8a0;
  --line: rgba(236, 236, 231, 0.16);
  --acid: #c9ff3d;
  --blue: #4f7cff;
  --orange: #ff5c35;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --sans: "Manrope", Inter, system-ui, sans-serif;
  --gutter: clamp(1.15rem, 3.2vw, 4rem);
  --max: 1600px;
  --cursor-x: 50vw;
  --cursor-y: 50vh;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(201, 255, 61, 0.035), transparent 24rem),
    var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

body.has-pointer,
body.has-pointer a,
body.has-pointer button {
  cursor: none;
}

::selection {
  color: var(--ink);
  background: var(--acid);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--acid);
  font: 500 0.75rem/1 var(--mono);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.signal-field {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.72;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

.cursor {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

body.has-pointer .cursor {
  opacity: 1;
}

.cursor-core {
  position: absolute;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(236, 236, 231, 0.75);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 180ms ease, height 180ms ease, background 180ms ease, border-color 180ms ease;
}

.cursor-core::before,
.cursor-core::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--paper);
  transform: translate(-50%, -50%);
}

.cursor-core::before { width: 3px; height: 3px; }
.cursor-core::after { width: 1px; height: 2.9rem; opacity: 0.25; }

.cursor-label {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  padding: 0.35rem 0.45rem;
  color: var(--ink);
  background: var(--acid);
  font: 500 0.58rem/1 var(--mono);
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(0.4rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cursor.is-active .cursor-core {
  width: 3.2rem;
  height: 3.2rem;
  border-color: var(--acid);
  background: rgba(201, 255, 61, 0.08);
}

.cursor.has-label .cursor-label { opacity: 1; transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.25rem;
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  transition: min-height 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  min-height: 4.1rem;
  border-color: var(--line);
  background: rgba(8, 9, 10, 0.78);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
}

.wordmark-glyph {
  font-size: 1.1rem;
  letter-spacing: -0.12em;
}

.wordmark-glyph span { color: var(--acid); }

.wordmark-name {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 3rem);
  font: 400 0.67rem/1 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a {
  position: relative;
  padding: 0.65rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.4rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.nav-contact { color: var(--acid); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 9rem var(--gutter) clamp(4rem, 8vh, 7rem);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(62vw, 58rem);
  aspect-ratio: 1;
  right: -18vw;
  bottom: -38%;
  border: 1px solid rgba(201, 255, 61, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 8rem rgba(201, 255, 61, 0.04), inset 0 0 8rem rgba(201, 255, 61, 0.025);
}

.hero-index {
  position: absolute;
  top: 7.5rem;
  right: var(--gutter);
  display: flex;
  gap: 2rem;
  color: var(--paper-muted);
  font: 400 0.6rem/1 var(--mono);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 95rem);
  min-width: 0;
}

.eyebrow,
.section-number,
.project-kicker {
  margin: 0;
  font: 500 0.64rem/1.3 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.eyebrow { margin-bottom: clamp(1.2rem, 3vh, 2.4rem); color: var(--acid); }

.hero-title {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(3.4rem, 7.6vw, 8.8rem);
  font-weight: 500;
  line-height: 0.83;
  letter-spacing: -0.075em;
}

.hero-title .word {
  display: inline-block;
  overflow: hidden;
  margin-right: 0.2em;
  padding: 0.05em 0.03em 0.1em 0;
  vertical-align: top;
}

.hero-title .word > span {
  display: inline-block;
  transform: translateY(118%) rotate(4deg);
  animation: word-in 900ms cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: calc(120ms + var(--word-index) * 85ms);
}

@keyframes word-in { to { transform: translateY(0) rotate(0); } }

.hero-deck {
  display: grid;
  grid-template-columns: minmax(16rem, 34rem) auto;
  align-items: end;
  gap: 2rem;
  max-width: 74rem;
  min-width: 0;
  margin-top: clamp(2rem, 5vh, 4rem);
}

.hero-deck > p {
  margin: 0;
  color: var(--paper-muted);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.55;
}

.hold-button {
  position: relative;
  min-width: 16rem;
  min-height: 4.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.4rem;
  border: 1px solid rgba(236, 236, 231, 0.5);
  overflow: hidden;
  font: 400 0.68rem/1 var(--mono);
  text-transform: uppercase;
}

.hold-progress {
  position: absolute;
  inset: 0;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
}

.hold-button > *:not(.hold-progress) { position: relative; z-index: 1; }
.hold-button b { color: var(--acid); font-weight: 500; }
.hold-button.is-holding { color: var(--ink); }
.hold-button.is-holding b { color: var(--ink); }
.hold-arrow { font-size: 1rem; }

.hero-orbit {
  position: absolute;
  z-index: 1;
  top: 16%;
  right: 5%;
  width: clamp(15rem, 27vw, 29rem);
  aspect-ratio: 1;
  opacity: 0.7;
  transform: translate(var(--orbit-x, 0), var(--orbit-y, 0));
  transition: transform 800ms cubic-bezier(.16, 1, .3, 1);
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(236, 236, 231, 0.13);
  border-radius: 50%;
}

.orbit-ring-a { animation: orbit-tilt 13s linear infinite; }
.orbit-ring-b { inset: 17%; border-color: rgba(201, 255, 61, 0.24); animation: orbit-tilt 9s linear infinite reverse; }

.orbit-ring::before,
.orbit-ring::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: inherit;
  border-top: 1px solid currentColor;
  opacity: 0.25;
}
.orbit-ring::after { transform: rotate(90deg); }

@keyframes orbit-tilt { to { transform: rotate(360deg); } }

.orbit-core {
  position: absolute;
  inset: 35%;
  display: grid;
  place-content: center;
  gap: 0.25rem;
  border: 1px solid var(--acid);
  border-radius: 50%;
  color: var(--acid);
  font: 400 0.5rem/1 var(--mono);
  text-align: center;
  box-shadow: 0 0 4rem rgba(201, 255, 61, 0.14);
}

.orbit-satellite {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 1.2rem var(--acid);
}

.satellite-a { top: 9%; left: 25%; }
.satellite-b { right: 12%; bottom: 20%; width: 0.3rem; height: 0.3rem; background: var(--paper); }

.hero-readout {
  position: absolute;
  right: var(--gutter);
  bottom: 1.25rem;
  left: var(--gutter);
  display: flex;
  justify-content: space-between;
  color: #72766c;
  font: 400 0.55rem/1 var(--mono);
  letter-spacing: 0.06em;
}

.hero-readout span:first-child { color: var(--acid); }
.hero-readout i,
.project-status i {
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  margin-right: 0.4rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0.7rem currentColor;
  animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink { 50% { opacity: 0.25; } }

.manifesto {
  min-height: 55rem;
  display: grid;
  grid-template-columns: 0.35fr 2fr 0.7fr;
  align-content: center;
  gap: clamp(1rem, 4vw, 5rem);
  padding: 9rem var(--gutter);
  border-bottom: 1px solid var(--line);
}

.manifesto-mark {
  margin: 0;
  color: var(--acid);
  font-size: clamp(5rem, 10vw, 12rem);
  font-weight: 300;
  line-height: 0.7;
}

.manifesto-copy {
  max-width: 24ch;
  margin: 0;
  font-size: clamp(2rem, 4.7vw, 5.5rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.manifesto-copy em { color: var(--acid); font-style: normal; }

.manifesto-aside {
  align-self: end;
  margin: 0 0 0.8rem;
  color: var(--paper-muted);
  font: 300 0.75rem/1.7 var(--mono);
}

.work {
  position: relative;
  padding: 10rem var(--gutter) 3rem;
  overflow: clip;
}

.section-intro {
  display: grid;
  grid-template-columns: 0.55fr 1.7fr 0.7fr;
  gap: 2rem;
  align-items: end;
  margin: 0 auto 9rem;
  max-width: var(--max);
}

.section-number { color: var(--acid); align-self: start; }

.section-intro h2,
.approach h2,
.contact h2 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 8.5rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.section-intro > p:last-child {
  margin: 0;
  color: var(--paper-muted);
  font-size: 0.95rem;
}

.project {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(22rem, 0.65fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  width: min(100%, var(--max));
  min-height: 52rem;
  margin: 0 auto 12rem;
  padding: 5rem 0;
}

.project::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 55rem;
  aspect-ratio: 1;
  left: -35rem;
  border-radius: 50%;
  background: rgba(79, 124, 255, 0.1);
  filter: blur(8rem);
  opacity: var(--project-glow, 0);
  transition: opacity 700ms ease;
}

.project-sentinel::before { left: auto; right: -35rem; background: rgba(201, 255, 61, 0.09); }
.project.is-current { --project-glow: 1; }

.project-chrome {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
  color: var(--paper-muted);
  font: 400 0.55rem/1 var(--mono);
  letter-spacing: 0.08em;
}

.project-chrome span:last-child { color: var(--acid); }

.project-visual {
  position: relative;
  min-height: clamp(30rem, 55vw, 48rem);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-elevated);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.35);
}

.project-copy { position: relative; }
.project-kicker { color: var(--paper-muted); }

.project-copy h3 {
  margin: 1.1rem 0 2.2rem;
  font-size: clamp(3.6rem, 6.5vw, 7.4rem);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.075em;
}

.project-copy h3 span { color: var(--blue); }
.project-sentinel .project-copy h3 span { display: block; color: var(--acid); }

.project-lead {
  margin: 0;
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.project-proof-copy {
  margin: 1.25rem 0 0;
  color: var(--paper-muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

.project-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 2.7rem 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.project-proof > div {
  min-width: 0;
  padding: 1rem 0.7rem;
  background: var(--ink);
}

.project-proof-four { grid-template-columns: repeat(2, 1fr); }

.project-proof strong,
.project-proof span { display: block; }
.project-proof strong { font: 500 clamp(0.9rem, 1.35vw, 1.25rem)/1 var(--mono); }
.project-proof span { margin-top: 0.5rem; color: var(--paper-muted); font: 300 0.58rem/1.2 var(--mono); text-transform: uppercase; }

.project-detail {
  margin: 0;
  color: var(--paper-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 2rem;
}

.tag-row span {
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line);
  color: var(--paper-muted);
  font: 400 0.58rem/1 var(--mono);
  text-transform: uppercase;
}

.project-actions {
  display: grid;
  gap: 0.5rem;
  margin-top: 2rem;
}

.project-action {
  width: 100%;
  min-height: 3.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--paper);
  background: transparent;
  font: 400 0.6rem/1 var(--mono);
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.project-action:hover,
.project-action:focus-visible {
  color: var(--ink);
  border-color: var(--acid);
  background: var(--acid);
}

.project-action-primary {
  color: var(--ink);
  border-color: var(--acid);
  background: var(--acid);
}

.project-action-primary:hover,
.project-action-primary:focus-visible { background: var(--paper); border-color: var(--paper); }

.project-action small {
  color: inherit;
  font: 400 0.48rem/1 var(--mono);
  opacity: 0.55;
}

.project-action.is-disabled {
  color: #666962;
  cursor: not-allowed;
}

.project-action.is-disabled:hover { color: #666962; border-color: var(--line); background: transparent; }

.project-notes {
  margin-top: 0.5rem;
  border: 1px solid var(--line);
  background: rgba(79, 124, 255, 0.045);
}

.project-notes[hidden] { display: none; }

.project-notes > div {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  padding: 0.9rem;
  border-top: 1px solid var(--line);
}

.project-notes > div:first-child { border-top: 0; }
.project-notes span { color: var(--blue); font: 500 0.55rem/1.5 var(--mono); text-transform: uppercase; }
.project-notes p { margin: 0; color: var(--paper-muted); font-size: 0.72rem; line-height: 1.55; }

.project-status,
.project-link {
  display: inline-flex;
  align-items: center;
  margin-top: 2rem;
  color: var(--blue);
  font: 400 0.65rem/1 var(--mono);
  text-transform: uppercase;
}

.project-link {
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  color: var(--acid);
  border-bottom: 1px solid currentColor;
}

.project-link span { font-size: 1rem; transition: transform 180ms ease; }
.project-link:hover span { transform: translate(0.3rem, -0.3rem); }

.project-visual.arcade-stage {
  display: grid;
  place-items: center;
  min-height: 0;
  aspect-ratio: 15 / 14;
  background: #020307;
  image-rendering: pixelated;
}

.arcade-stage::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgba(2, 3, 7, 0.3), transparent 16%, transparent 84%, rgba(2, 3, 7, 0.22));
  box-shadow: inset 0 0 2.5rem rgba(0, 0, 0, 0.2);
}

.playthrough-video {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 15 / 14;
  display: block;
  object-fit: cover;
  background: #020307;
  filter: saturate(1.05) contrast(1.04);
  image-rendering: pixelated;
}

.scanlines {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0, rgba(0, 0, 0, 0.1) 1px, transparent 1px, transparent 4px);
  mix-blend-mode: multiply;
}

.arcade-hud {
  position: absolute;
  z-index: 4;
  top: 1.2rem;
  right: 1.2rem;
  left: 1.2rem;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  color: #fff;
  font: 500 0.62rem/1 var(--mono);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.45);
}

.arcade-hud i {
  display: inline-block;
  width: 0.38rem;
  height: 0.38rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0.8rem var(--acid);
  animation: blink 1.6s ease-in-out infinite;
}

.playback-readout {
  position: absolute;
  z-index: 4;
  right: 1.2rem;
  bottom: 3.7rem;
  left: 1.2rem;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.76);
  font: 500 0.58rem/1 var(--mono);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

.playback-readout span:first-child { color: var(--acid); }

.sentinel-stage {
  min-height: clamp(28rem, 47vw, 41rem);
  padding: 1rem;
  border-color: rgba(201, 255, 61, 0.33);
  background:
    linear-gradient(rgba(201, 255, 61, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 255, 61, 0.026) 1px, transparent 1px),
    #090d09;
  background-size: 1.7rem 1.7rem;
  color: var(--acid);
  font-family: var(--mono);
}

.sentinel-header,
.sentinel-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem;
  border: 1px solid rgba(201, 255, 61, 0.28);
  background: rgba(201, 255, 61, 0.045);
  font-size: clamp(0.45rem, 0.75vw, 0.66rem);
}

.sentinel-header span:nth-child(2) { color: var(--paper); }

.sentinel-columns {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 0.7rem;
  margin: 0.7rem 0;
}

.positions-panel,
.risk-panel {
  position: relative;
  min-height: clamp(21rem, 39vw, 33rem);
  padding: 1rem;
  border: 1px solid rgba(201, 255, 61, 0.22);
  background: rgba(1, 4, 1, 0.58);
}

.positions-panel > p,
.risk-panel > p { margin: 0 0 1.2rem; font-size: 0.58rem; }

.position-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  padding: 0.75rem 0.5rem;
  color: rgba(201, 255, 61, 0.72);
  border-top: 1px solid rgba(201, 255, 61, 0.13);
  font-size: clamp(0.48rem, 0.65vw, 0.62rem);
}

.position-row.is-active { color: var(--ink); background: var(--acid); }

.position-row i {
  grid-column: 1 / -1;
  width: var(--meter);
  height: 2px;
  background: currentColor;
  opacity: 0.55;
}

.risk-chart { position: absolute; inset: 4rem 1rem 2rem; width: calc(100% - 2rem); height: calc(100% - 6rem); overflow: visible; }
.chart-fill { fill: url(#chart-fill); }
.chart-line { fill: none; stroke: var(--acid); stroke-width: 2; vector-effect: non-scaling-stroke; stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.4s cubic-bezier(.16,1,.3,1); }
.project.is-current .chart-line { stroke-dashoffset: 0; }
.strike-line { stroke: rgba(255, 92, 53, 0.58); stroke-width: 1; stroke-dasharray: 5 5; vector-effect: non-scaling-stroke; }

.chart-label { position: absolute; right: 1.3rem; padding: 0.25rem 0.35rem; color: var(--orange); background: #090d09; font-size: 0.48rem; }
.chart-label-call { top: 34%; }
.chart-label-put { top: 72%; }

.sentinel-footer { color: rgba(201, 255, 61, 0.55); }
.sentinel-footer span:last-child { color: var(--acid); }

.risk-reticle {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 69%;
  width: 3.4rem;
  height: 3.4rem;
  border: 1px solid rgba(201, 255, 61, 0.55);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: top 350ms cubic-bezier(.16,1,.3,1), left 350ms cubic-bezier(.16,1,.3,1);
}

.risk-reticle::before,
.risk-reticle::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--acid); opacity: 0.45; transform: translate(-50%, -50%); }
.risk-reticle::before { width: 5rem; height: 1px; }
.risk-reticle::after { width: 1px; height: 5rem; }
.risk-reticle i { position: absolute; inset: 45%; border-radius: 50%; background: var(--acid); box-shadow: 0 0 1rem var(--acid); }
.risk-reticle span { position: absolute; top: 3.7rem; left: 2rem; font-size: 0.48rem; white-space: nowrap; }

.approach {
  display: grid;
  grid-template-columns: minmax(20rem, 0.82fr) minmax(28rem, 1.18fr);
  gap: clamp(4rem, 10vw, 12rem);
  min-height: 100vh;
  padding: 10rem var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(14, 16, 17, 0.76);
}

.approach-sticky { align-self: start; position: sticky; top: 9rem; }
.approach h2 { margin-top: 2rem; }
.approach-intro { max-width: 37rem; margin: 2.5rem 0 0; color: var(--paper-muted); font-size: clamp(1rem, 1.6vw, 1.35rem); }

.principles { margin: 4rem 0 0; padding: 0; list-style: none; }
.principles li { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 3rem 0 7rem; border-top: 1px solid var(--line); }
.principles li > span { color: var(--acid); font: 400 0.6rem/1 var(--mono); }
.principles h3 { margin: 0; font-size: clamp(1.6rem, 3vw, 3.2rem); font-weight: 500; line-height: 1.05; letter-spacing: -0.045em; }
.principles p { max-width: 33rem; margin: 1.2rem 0 0; color: var(--paper-muted); }

.contact {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 9rem var(--gutter);
  text-align: center;
  overflow: hidden;
}

.contact .section-number { margin-bottom: 2rem; }
.contact h2 { max-width: 10ch; font-size: clamp(4rem, 10vw, 11rem); }
.contact-copy { max-width: 37rem; margin: 2.5rem auto; color: var(--paper-muted); font-size: clamp(1rem, 1.5vw, 1.3rem); }

.contact-link {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: min(100%, 33rem);
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--acid);
  color: var(--acid);
  font: 400 clamp(0.7rem, 1vw, 0.9rem)/1 var(--mono);
}

.contact-link i { font: normal 1.4rem/1 var(--sans); transition: transform 180ms ease; }
.contact-link:hover i { transform: translate(0.35rem, -0.35rem); }

.contact-orbit { position: absolute; width: min(84vw, 72rem); aspect-ratio: 1; border: 1px solid var(--line); border-radius: 50%; animation: orbit-tilt 30s linear infinite; }
.contact-orbit::before { content: ""; position: absolute; inset: 14%; border: 1px solid rgba(201, 255, 61, 0.12); border-radius: 50%; }
.contact-orbit span { position: absolute; color: rgba(236, 236, 231, 0.2); font: 400 0.55rem/1 var(--mono); }
.contact-orbit span:nth-child(1) { top: -0.25rem; left: 50%; }
.contact-orbit span:nth-child(2) { top: 50%; right: -1rem; transform: rotate(90deg); }
.contact-orbit span:nth-child(3) { bottom: -0.25rem; left: 50%; }
.contact-orbit span:nth-child(4) { top: 50%; left: -1rem; transform: rotate(-90deg); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem var(--gutter);
  border-top: 1px solid var(--line);
  color: var(--paper-muted);
  font: 400 0.58rem/1.3 var(--mono);
  text-transform: uppercase;
}

.site-footer a { color: var(--paper); }
.noscript-note { position: fixed; z-index: 1000; right: 1rem; bottom: 1rem; padding: 0.7rem 1rem; color: var(--ink); background: var(--acid); font: 0.65rem var(--mono); }

.reveal { opacity: 0; transform: translateY(2.2rem); transition: opacity 700ms ease, transform 800ms cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 2px solid var(--acid); outline-offset: 5px; }

@media (max-width: 1020px) {
  .hero-orbit { top: 18%; right: -7%; opacity: 0.42; }
  .manifesto { grid-template-columns: 0.2fr 1.8fr; }
  .manifesto-aside { grid-column: 2; max-width: 24rem; }
  .section-intro { grid-template-columns: 0.4fr 1.6fr; }
  .section-intro > p:last-child { grid-column: 2; max-width: 26rem; }
  .project { grid-template-columns: 1fr; margin-bottom: 9rem; }
  .project-visual { min-height: min(42rem, 86vw); }
  .project-copy { display: grid; grid-template-columns: 1fr 1fr; column-gap: 3rem; }
  .project-copy > * { grid-column: 2; }
  .project-copy h3, .project-kicker { grid-column: 1; }
  .project-copy h3 { grid-row: 2 / span 3; }
  .approach { gap: 4rem; }
}

@media (max-width: 720px) {
  :root { --gutter: 1.1rem; }
  .site-header { min-height: 4.5rem; }
  .wordmark-name { display: none; }
  .site-nav { min-width: 0; margin-left: auto; gap: 1rem; }
  .site-nav a:not(.nav-contact) { display: none; }
  .nav-contact { font-size: 0.56rem; }
  .hero { min-height: 100svh; padding-top: 7.5rem; padding-bottom: 4.2rem; }
  .hero-index { top: 5.7rem; }
  .hero-index span:first-child { display: none; }
  .hero-title { font-size: clamp(3.5rem, 17.2vw, 6.2rem); line-height: 0.86; }
  .hero-copy, .hero-deck, .hero-deck > * { min-width: 0; max-width: 100%; }
  .hero-deck { grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }
  .hero-deck > p { overflow-wrap: anywhere; }
  .hold-button { width: 100%; min-width: 0; }
  .hero-orbit { width: 18rem; top: 17%; right: -34%; opacity: 0.3; }
  .hero-readout span:last-child { display: none; }
  .manifesto { min-height: 45rem; grid-template-columns: 1fr; padding-top: 7rem; padding-bottom: 7rem; }
  .manifesto-mark { font-size: 5rem; }
  .manifesto-aside { grid-column: auto; }
  .work { padding-top: 7rem; }
  .section-intro { grid-template-columns: 1fr; margin-bottom: 6rem; }
  .section-intro > p:last-child { grid-column: auto; }
  .section-intro h2, .approach h2 { font-size: clamp(3.5rem, 16vw, 6.4rem); }
  .project { min-height: 0; padding-top: 4rem; margin-bottom: 7rem; }
  .project-visual { min-height: 31rem; }
  .project-copy { display: block; }
  .project-copy h3 { margin-top: 1rem; font-size: clamp(4rem, 18vw, 6.5rem); }
  .project-proof strong { font-size: 0.8rem; }
  .project-proof span { font-size: 0.48rem; }
  .sentinel-stage { min-height: 27rem; padding: 0.5rem; }
  .sentinel-columns { grid-template-columns: 1fr; }
  .positions-panel { display: none; }
  .risk-panel { min-height: 21rem; }
  .sentinel-footer span:nth-child(2), .sentinel-footer span:nth-child(3) { display: none; }
  .approach { grid-template-columns: 1fr; padding-top: 7rem; padding-bottom: 5rem; }
  .approach-sticky { position: relative; top: 0; }
  .principles { margin-top: 0; }
  .principles li { padding-bottom: 4rem; }
  .contact { min-height: 80svh; }
  .site-footer { flex-direction: column; }
  .site-footer span:nth-child(2) { display: none; }
}

@media (pointer: coarse), (hover: none) {
  .cursor { display: none; }
  body.has-pointer, body.has-pointer a, body.has-pointer button { cursor: auto; }
  .stage-prompt { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .signal-field, .cursor { display: none; }
  .hero-title .word > span, .reveal { opacity: 1; transform: none; }
}
