:root {
  --ink: #07120f;
  --ink-soft: #10231e;
  --paper: #e8e8df;
  --paper-deep: #d7d8ce;
  --lime: #c7ff42;
  --acid: #a9ed2f;
  --mist: rgba(232, 232, 223, 0.64);
  --line-dark: rgba(232, 232, 223, 0.16);
  --line-light: rgba(7, 18, 15, 0.18);
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: "Manrope", Inter, Helvetica, Arial, sans-serif;
  --cube-width: min(76vw, 900px);
  --cube-height: min(60vh, 600px);
  --cube-half: calc(var(--cube-width) / 2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  cursor: default;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; text-align: left; }

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

.grain {
  position: fixed;
  z-index: 30;
  inset: 0;
  pointer-events: none;
  opacity: .11;
  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='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.74'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.cursor-glow {
  --cursor-x: 50vw;
  --cursor-y: 50vh;
  position: fixed;
  left: var(--cursor-x);
  top: var(--cursor-y);
  z-index: 15;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(199,255,66,.08), rgba(199,255,66,0) 68%);
  mix-blend-mode: screen;
  transition: opacity .35s ease;
}
body:has(.eye-area:hover) .cursor-glow { opacity: 1; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 25px clamp(22px, 4vw, 64px);
  color: var(--paper);
  mix-blend-mode: normal;
}
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; letter-spacing: -.055em; font-size: 18px; }
.brand-mark { width: 27px; height: 27px; fill: none; stroke: var(--lime); stroke-width: 3.3; stroke-linejoin: round; }
.brand-dot { color: var(--lime); }
.desktop-nav { display: flex; gap: clamp(18px, 3vw, 46px); margin-left: 9vw; }
.desktop-nav a, .menu-link, .hero-footer, .eyebrow, .section-index, .face-eyebrow, .face-meta, .project-type, .ring-scroll-note, .terrain-label, .eye-caption {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 10px;
}
.desktop-nav a { position: relative; opacity: .73; transition: opacity .3s ease; }
.desktop-nav a::after { content: ""; position: absolute; height: 1px; background: var(--lime); left: 0; right: 100%; bottom: -7px; transition: right .3s ease; }
.desktop-nav a:hover { opacity: 1; }
.desktop-nav a:hover::after { right: 0; }
.menu-link { display: flex; align-items: center; justify-content: center; gap: 17px; min-width: 177px; padding: 13px 15px 13px 18px; border: 1px solid rgba(232,232,223,.32); border-radius: 999px; transition: background .35s, color .35s; }
.menu-link i { font-style: normal; font-size: 16px; color: var(--lime); }
.menu-link:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.menu-link:hover i { color: var(--ink); }

.section-dark { background: var(--ink); color: var(--paper); }
.section-light { background: var(--paper); color: var(--ink); }

.hero { position: relative; min-height: max(730px, 100svh); overflow: hidden; isolation: isolate; }
.hero::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(7,18,15,.44), transparent 52%), linear-gradient(0deg, rgba(7,18,15,.65), transparent 38%); }
.hero-content { position: relative; z-index: 2; padding: clamp(150px, 20vh, 215px) clamp(22px, 10.9vw, 176px) 130px; width: min(920px, 100%); }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 25px; color: var(--mist); }
.pulse { width: 7px; height: 7px; display: inline-block; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 0 rgba(199,255,66,.55); animation: pulse 2.8s infinite; }
@keyframes pulse { 65% { box-shadow: 0 0 0 8px rgba(199,255,66,0); } 100% { box-shadow: 0 0 0 0 rgba(199,255,66,0); } }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 500; letter-spacing: -.075em; line-height: .93; }
h1 { margin: 0; font-size: clamp(57px, 8.4vw, 136px); }
em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.095em; }
.hero-bottom { display: flex; align-items: flex-end; gap: clamp(20px, 5vw, 70px); margin-top: clamp(46px, 8vh, 86px); }
.hero-copy { width: min(366px, 100%); margin-bottom: 0; font-size: 14px; line-height: 1.58; color: rgba(232,232,223,.71); }
.round-cta { width: 107px; height: 107px; flex: 0 0 auto; padding: 11px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--lime); border-radius: 50%; color: var(--lime); font-family: var(--mono); font-size: 10px; text-transform: uppercase; transition: color .3s, background .3s, transform .3s; }
.round-cta b { align-self: flex-end; font-size: 21px; font-weight: 400; line-height: .8; }
.round-cta:hover { color: var(--ink); background: var(--lime); transform: rotate(-12deg); }
.hero-footer { position: absolute; z-index: 3; right: clamp(22px, 4vw, 64px); bottom: 27px; left: clamp(22px, 4vw, 64px); display: flex; align-items: center; justify-content: space-between; color: rgba(232,232,223,.48); }
.hero-footer p { margin: 0; }
.sep { color: var(--lime); padding: 0 4px; }
.scroll-hint { color: var(--paper); transition: color .25s; }
.scroll-hint span { padding-left: 5px; color: var(--lime); }
.scroll-hint:hover { color: var(--lime); }

.hero-noise-orb { position: absolute; border-radius: 50%; filter: blur(40px); opacity: .52; mix-blend-mode: screen; pointer-events: none; }
.orb-one { width: min(54vw, 680px); height: min(54vw, 680px); right: -10%; top: 10%; background: radial-gradient(circle at 30% 25%, #a9ed2f, #0e6b4c 41%, transparent 70%); }
.orb-two { width: 33vw; height: 33vw; right: 21%; bottom: -32%; background: #1660cb; }
.hero-object { --rx: 0deg; --ry: 0deg; position: absolute; z-index: 1; width: min(50vw, 690px); aspect-ratio: 1; right: clamp(-130px, -7vw, -50px); top: 19%; transform-style: preserve-3d; transform: rotateX(var(--rx)) rotateY(var(--ry)); transition: transform .25s cubic-bezier(.2,.7,.3,1); }
.core { position: absolute; top: 50%; left: 50%; width: 34%; aspect-ratio: 1; transform: translate(-50%, -50%) translateZ(38px); overflow: hidden; border: 1px solid rgba(199,255,66,.66); border-radius: 50%; background: radial-gradient(circle at 30% 28%, #d9ff8c 0, #9ad92d 12%, #267856 46%, #071d1a 73%); box-shadow: inset -25px -20px 30px rgba(2,12,9,.63), 0 0 80px rgba(169,237,47,.28); }
.core::before { content: ""; position: absolute; inset: 8%; border: 1px solid rgba(232,232,223,.34); border-radius: 50%; }
.core-grid { position: absolute; inset: -22%; border-radius: 50%; background: repeating-linear-gradient(90deg, transparent 0 16px, rgba(232,232,223,.18) 17px 18px), repeating-linear-gradient(0deg, transparent 0 16px, rgba(232,232,223,.18) 17px 18px); transform: rotate(-18deg); opacity: .7; }
.core-light { position: absolute; width: 30%; height: 21%; left: 20%; top: 15%; border-radius: 50%; background: rgba(255,255,238,.91); filter: blur(7px); transform: rotate(-33deg); }
.orbit { position: absolute; inset: 17%; border: 1px solid rgba(199,255,66,.45); border-radius: 50%; transform-style: preserve-3d; animation: orbitRotate 13s linear infinite; }
.orbit::before { content: ""; position: absolute; inset: 0; border: 1px solid rgba(232,232,223,.18); border-radius: inherit; transform: rotate(70deg); }
.orbit-a { transform: rotateX(72deg) rotateZ(6deg); }
.orbit-b { inset: 7%; transform: rotateX(72deg) rotateY(64deg); animation-duration: 18s; animation-direction: reverse; }
.orbit-c { inset: 29%; transform: rotateY(74deg) rotateZ(20deg); animation-duration: 15s; }
.orbit span { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 16px var(--lime); }
.orbit span:first-child { top: -4px; left: 47%; }
.orbit span:last-child { right: 7%; bottom: 13%; width: 6px; height: 6px; background: var(--paper); }
@keyframes orbitRotate { from { rotate: 0deg; } to { rotate: 360deg; } }
.object-label { position: absolute; display: flex; flex-direction: column; gap: 8px; color: rgba(232,232,223,.61); font: 9px/1.15 var(--mono); text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; }
.object-label::after { content: ""; width: 70px; height: 1px; background: rgba(232,232,223,.34); }
.object-label span { color: var(--lime); }
.label-left { left: 3%; top: 18%; align-items: flex-start; }
.label-right { right: 8%; bottom: 13%; align-items: flex-end; }
.label-right::after { width: 50px; }

.intro { min-height: 720px; position: relative; padding: clamp(95px, 13vw, 220px) clamp(22px, 10.9vw, 176px) clamp(80px, 9vw, 140px); overflow: hidden; }
.intro::before { content: ""; position: absolute; width: min(42vw, 610px); aspect-ratio: 1; right: -12%; bottom: -48%; border-radius: 50%; border: 1px solid rgba(7,18,15,.13); box-shadow: 0 0 0 45px rgba(7,18,15,.035), 0 0 0 120px rgba(7,18,15,.025); }
.section-index { color: rgba(7,18,15,.5); }
.intro-kicker { margin: clamp(70px, 12vh, 135px) 0 20px; font-family: var(--mono); font-size: 11px; text-transform: uppercase; color: rgba(7,18,15,.52); }
.intro h2 { max-width: 1120px; margin-bottom: clamp(55px, 9vh, 95px); font-size: clamp(43px, 6.5vw, 104px); }
.intro h2 span { font-family: Georgia, serif; font-weight: 400; }
.intro-columns { display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; max-width: 875px; margin-left: auto; }
.intro-columns p { width: min(430px, 100%); margin: 0; font-size: 15px; line-height: 1.7; }
.text-link { display: inline-flex; align-items: center; gap: 18px; padding-bottom: 8px; border-bottom: 1px solid currentColor; font: 11px var(--mono); text-transform: uppercase; letter-spacing: .02em; transition: color .25s, gap .25s; white-space: nowrap; }
.text-link span { color: #62a900; font-size: 16px; line-height: 10px; }
.text-link:hover { gap: 27px; color: #508e00; }

/* 3D architectural scroll sequence */
.architecture-scroll { height: 400vh; position: relative; }
.architecture-sticky { position: sticky; top: 0; height: 100svh; min-height: 680px; overflow: hidden; perspective: 1650px; }
.architecture-head { position: relative; z-index: 5; display: flex; justify-content: space-between; gap: 34px; padding: clamp(91px, 10vh, 118px) clamp(22px, 8vw, 130px) 0; pointer-events: none; }
.architecture-head h2 { margin: 0; font-size: clamp(38px, 4.6vw, 70px); }
.architecture-head .eyebrow { margin-bottom: 18px; }
.architecture-description { width: min(293px, 26vw); margin: 42px 5vw 0 0; font-size: 12px; line-height: 1.65; color: rgba(232,232,223,.6); }
.architecture-stage { position: absolute; z-index: 1; inset: 0; display: grid; place-items: center; transform-style: preserve-3d; }
.depth-grid { position: absolute; z-index: 0; width: 150vw; height: 92vh; bottom: -33vh; background-image: linear-gradient(rgba(199,255,66,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(199,255,66,.12) 1px, transparent 1px); background-size: 55px 55px; transform: rotateX(75deg) translateZ(-250px); transform-origin: 50% 100%; mask-image: radial-gradient(ellipse at center, black, transparent 68%); }
.stage-shadow { position: absolute; z-index: 0; width: min(82vw, 980px); height: 28vh; top: 61%; border-radius: 50%; background: radial-gradient(ellipse, rgba(0,0,0,.9), rgba(0,0,0,0) 67%); filter: blur(16px); transform: rotateX(70deg) translateZ(-130px); }
.monolith { position: absolute; z-index: 2; top: 50%; left: 50%; width: var(--cube-width); height: var(--cube-height); transform-style: preserve-3d; transform: translate(-50%, -43%) translateZ(-280px) rotateY(0deg) rotateX(-3deg); will-change: transform; }
.cube-face { position: absolute; width: var(--cube-width); height: var(--cube-height); overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(22px, 3.4vw, 52px); backface-visibility: hidden; border: 1px solid rgba(232,232,223,.4); background: linear-gradient(135deg, rgba(20,53,42,.97), rgba(5,14,12,.98)); box-shadow: inset 0 0 70px rgba(199,255,66,.04); }
.cube-face::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .3; background: linear-gradient(120deg, transparent 0 49.8%, rgba(199,255,66,.2) 50%, transparent 50.2%), linear-gradient(65deg, transparent 0 49.8%, rgba(199,255,66,.14) 50%, transparent 50.2%); background-size: 150px 150px, 90px 90px; mask-image: linear-gradient(to bottom, black, transparent 80%); }
.face-front { transform: rotateY(0deg) translateZ(var(--cube-half)); }
.face-right { transform: rotateY(90deg) translateZ(var(--cube-half)); background: linear-gradient(135deg, #142b26, #07120f); }
.face-back { transform: rotateY(180deg) translateZ(var(--cube-half)); background: linear-gradient(135deg, #102a23, #0a1916); }
.face-left { transform: rotateY(-90deg) translateZ(var(--cube-half)); background: linear-gradient(135deg, #193c31, #091a15); }
.face-number { position: relative; font: 10px var(--mono); color: var(--lime); }
.face-copy { position: relative; max-width: 610px; }
.face-eyebrow { margin-bottom: 18px; color: rgba(232,232,223,.55); }
.face-copy h3 { margin-bottom: 20px; font-size: clamp(38px, 5vw, 76px); }
.face-copy > p:last-child { max-width: 350px; margin: 0; color: rgba(232,232,223,.65); font-size: 13px; line-height: 1.65; }
.face-meta { position: relative; display: flex; justify-content: space-between; color: rgba(232,232,223,.5); }
.face-symbol { position: absolute; top: 50%; right: 8%; width: min(24vw, 270px); aspect-ratio: 1; transform: translateY(-47%); opacity: .85; }
.symbol-cloud i { position: absolute; border: 1px solid var(--lime); border-radius: 50%; }
.symbol-cloud i:nth-child(1) { width: 74%; height: 55%; top: 26%; left: 8%; }
.symbol-cloud i:nth-child(2) { width: 50%; height: 50%; top: 7%; left: 29%; }
.symbol-cloud i:nth-child(3) { width: 50%; height: 50%; top: 31%; right: 1%; }
.symbol-key { border: 1px solid var(--lime); border-radius: 50%; }
.symbol-key::after { content: ""; position: absolute; width: 85%; height: 1px; top: 50%; left: 75%; background: var(--lime); box-shadow: 0 18px 0 var(--lime), 0 36px 0 var(--lime); transform: rotate(-45deg); transform-origin: left; }
.symbol-key i { position: absolute; border: 1px solid rgba(232,232,223,.45); border-radius: 50%; }
.symbol-key i:first-child { inset: 16%; }
.symbol-key i:last-child { inset: 33%; }
.symbol-shape { transform: translateY(-47%) rotate(32deg); border: 1px solid var(--lime); }
.symbol-shape i { position: absolute; border: 1px solid rgba(232,232,223,.48); }
.symbol-shape i:nth-child(1) { inset: 18%; }
.symbol-shape i:nth-child(2) { inset: 35%; }
.symbol-shape i:nth-child(3) { width: 12%; height: 12%; border-radius: 50%; background: var(--lime); left: 44%; top: 44%; }
.symbol-signal { border-bottom: 1px solid var(--lime); transform: translateY(-47%) rotate(-21deg); }
.symbol-signal i { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; border: 1px solid var(--lime); border-bottom: none; border-radius: 50% 50% 0 0; transform: scale(.68); transform-origin: bottom; }
.symbol-signal i:nth-child(2) { transform: scale(.39); }
.symbol-signal i:nth-child(3) { width: 8%; height: 8%; left: 46%; bottom: -4%; border-radius: 50%; background: var(--lime); transform: none; }
.model-slot { position: absolute; z-index: 1; left: 50%; top: 64%; width: min(86vw, 1100px); height: min(38vh, 360px); transform: translateX(-50%) translateZ(-250px) rotateX(56deg); transform-style: preserve-3d; opacity: .68; transition: opacity .4s ease; }
.model-slot canvas, .model-slot model-viewer { display: block; width: 100%; height: 100%; }
.model-slot model-viewer { --progress-bar-color: var(--lime); background: transparent; filter: saturate(.6) hue-rotate(20deg); }
.terrain-label { position: absolute; right: 1%; bottom: -4px; color: rgba(232,232,223,.36); }
.architecture-ui { position: absolute; z-index: 5; display: flex; align-items: center; gap: 12px; left: clamp(22px, 8vw, 130px); bottom: clamp(28px, 6vh, 66px); color: rgba(232,232,223,.5); font: 10px var(--mono); letter-spacing: .04em; text-transform: uppercase; }
.progress-line { width: clamp(86px, 13vw, 185px); height: 1px; background: rgba(232,232,223,.24); }
.progress-line i { display: block; width: 25%; height: 100%; background: var(--lime); transition: width .18s linear; }

.statement { position: relative; min-height: 720px; padding: clamp(92px, 11vw, 170px) clamp(22px, 10.9vw, 176px); overflow: hidden; }
.statement::before { content: ""; position: absolute; width: min(50vw, 720px); aspect-ratio: 1; bottom: -48%; left: -13%; border: 1px solid rgba(7,18,15,.1); border-radius: 50%; box-shadow: 0 0 0 45px rgba(7,18,15,.025), 0 0 0 110px rgba(7,18,15,.02); }
.statement h2 { position: relative; max-width: 1060px; margin: clamp(105px, 16vh, 170px) 0 60px; font-size: clamp(52px, 7.2vw, 117px); }
.statement-metrics { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); width: min(820px, 100%); margin-left: auto; border-top: 1px solid var(--line-light); }
.statement-metrics article { display: flex; flex-direction: column; gap: 25px; padding: 21px 15px 8px 0; border-right: 1px solid var(--line-light); }
.statement-metrics article:not(:first-child) { padding-left: 18px; }
.statement-metrics article:last-child { border-right: 0; }
.statement-metrics strong { font: 11px var(--mono); font-weight: 400; color: rgba(7,18,15,.49); }
.statement-metrics span { font-size: 16px; line-height: 1.25; letter-spacing: -.04em; }

/* Projects 3D ring */
.projects-scroll { height: 480vh; position: relative; }
.projects-sticky { position: sticky; top: 0; min-height: 700px; height: 100svh; overflow: hidden; perspective: 1400px; }
.projects-sticky::before { content: ""; position: absolute; z-index: 0; inset: 0; background: radial-gradient(circle at 50% 52%, #17392e, transparent 32%), radial-gradient(circle at 58% 66%, rgba(138,207,39,.18), transparent 21%); }
.projects-topline { position: absolute; z-index: 5; display: flex; justify-content: space-between; gap: 28px; top: clamp(86px, 10vh, 118px); left: clamp(22px, 8vw, 130px); right: clamp(22px, 8vw, 130px); pointer-events: none; }
.projects-topline h2 { margin: 0; font-size: clamp(43px, 5.1vw, 79px); }
.projects-topline .eyebrow { margin-bottom: 18px; }
.projects-topline > p { margin: 38px 4vw 0 0; color: rgba(232,232,223,.57); font-size: 12px; line-height: 1.7; }
.projects-stage { position: absolute; z-index: 1; left: 50%; top: 48%; width: min(55vw, 650px); height: min(55vw, 650px); transform: translate(-50%, -50%); perspective: 1000px; }
.ring-aura { position: absolute; inset: 12%; border: 1px solid rgba(199,255,66,.29); border-radius: 50%; box-shadow: 0 0 0 44px rgba(199,255,66,.018), 0 0 0 92px rgba(199,255,66,.012); transform: rotateX(68deg); }
.ring-aura::before, .ring-aura::after { content: ""; position: absolute; border-radius: 50%; border: 1px dashed rgba(232,232,223,.22); }
.ring-aura::before { inset: -16%; }
.ring-aura::after { inset: 23%; border-style: solid; }
.project-ring { position: absolute; inset: 0; transform-style: preserve-3d; transform: rotateX(-7deg) rotateY(0deg); will-change: transform; }
.project-card { --card-angle: 0deg; position: absolute; top: 50%; left: 50%; width: clamp(182px, 21vw, 254px); height: clamp(245px, 28vw, 334px); padding: 19px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(232,232,223,.42); background: linear-gradient(145deg, rgba(36,72,60,.97), rgba(8,20,16,.94)); box-shadow: inset 0 1px 0 rgba(232,232,223,.12), 0 26px 42px rgba(0,0,0,.26); transform: translate(-50%, -50%) rotateY(var(--card-angle)) translateZ(clamp(270px, 35vw, 455px)); backface-visibility: hidden; cursor: pointer; transition: filter .45s, opacity .45s, border-color .45s; }
.project-card:hover, .project-card.is-active { border-color: var(--lime); }
.project-card.is-inactive { filter: brightness(.58) saturate(.7); }
.project-card header { display: flex; justify-content: space-between; font: 9px var(--mono); color: rgba(232,232,223,.63); }
.project-card .card-orb { align-self: center; width: 57%; aspect-ratio: 1; border: 1px solid var(--lime); border-radius: 50%; background: radial-gradient(circle at 32% 25%, #e0ff96 1%, #a6df2b 12%, #388265 44%, #10221e 70%); box-shadow: inset -13px -15px 20px rgba(0,0,0,.55), 0 0 35px rgba(199,255,66,.13); }
.project-card .card-orb::after { content: ""; display: block; width: 62%; height: 62%; margin: 18%; border: 1px solid rgba(232,232,223,.42); border-radius: 50%; }
.project-card:nth-child(2) .card-orb { border-radius: 12px; transform: rotate(27deg); background: linear-gradient(135deg, var(--lime), #28673c 49%, #06130f); }
.project-card:nth-child(3) .card-orb { border-radius: 50% 50% 5px 5px; background: repeating-linear-gradient(90deg, #06211b 0 10px, #bdf44a 11px 12px); }
.project-card:nth-child(4) .card-orb { border-radius: 50%; background: conic-gradient(from 90deg, #bdf44a, #1e8c6d, #0b2520, #bdf44a); }
.project-card:nth-child(5) .card-orb { border-radius: 0; clip-path: polygon(50% 0, 100% 100%, 0 100%); background: linear-gradient(110deg, #dcff8c, #1a755a 60%, #07120f); }
.project-card footer { font-size: 18px; letter-spacing: -.065em; font-weight: 700; }
.ring-axis { position: absolute; left: 50%; top: 50%; width: 250%; height: 1px; background: rgba(232,232,223,.19); transform: translate(-50%, -50%) rotateX(73deg); }
.ring-axis i { position: absolute; left: 50%; top: -3px; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 17px 4px rgba(199,255,66,.45); }
.project-detail { position: absolute; z-index: 5; bottom: clamp(50px, 8vh, 92px); left: clamp(22px, 8vw, 130px); right: clamp(22px, 8vw, 130px); display: grid; grid-template-columns: .55fr 1.2fr 1.5fr auto; align-items: end; gap: clamp(15px, 3vw, 48px); }
.project-detail-index { color: var(--lime); font: 10px var(--mono); }
.project-type { margin: 0 0 7px; color: rgba(232,232,223,.53); font-size: 9px; }
.project-detail h3 { margin: 0; font-size: clamp(31px, 3vw, 48px); }
.project-detail > p { max-width: 340px; margin: 0 0 2px; color: rgba(232,232,223,.62); font-size: 12px; line-height: 1.58; }
.project-detail .text-link { color: var(--paper); margin-bottom: 2px; }
.ring-scroll-note { position: absolute; z-index: 4; top: 53%; right: clamp(22px, 8vw, 130px); transform: rotate(-90deg) translateX(50%); transform-origin: right top; color: rgba(232,232,223,.44); }
.ring-scroll-note span { color: var(--lime); padding-right: 6px; }

.capabilities { padding: clamp(92px, 11vw, 170px) clamp(22px, 10.9vw, 176px); }
.capabilities-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 42px; margin: clamp(100px, 17vh, 170px) 0 clamp(55px, 10vh, 112px); }
.capabilities-heading h2 { margin: 0; font-size: clamp(49px, 6.6vw, 105px); }
.capabilities-heading p { width: min(315px, 100%); margin: 0 6vw 8px 0; font-size: 13px; line-height: 1.7; }
.capability-list { border-top: 1px solid var(--line-light); }
.capability-list article { display: grid; grid-template-columns: .5fr 2.2fr 2fr 30px; align-items: center; gap: 20px; min-height: 117px; border-bottom: 1px solid var(--line-light); transition: padding .35s ease, background .35s ease; }
.capability-list article:hover { padding: 0 16px; background: rgba(7,18,15,.035); }
.capability-list span { font: 10px var(--mono); color: rgba(7,18,15,.5); }
.capability-list h3 { margin: 0; font-size: clamp(23px, 2.45vw, 37px); }
.capability-list p { max-width: 305px; margin: 0; font-size: 12px; line-height: 1.55; }
.capability-list b { color: #63aa00; font-size: 23px; font-weight: 400; }

/* Eye reveal sequence */
.insight { min-height: 950px; position: relative; padding: clamp(90px, 11vw, 160px) clamp(22px, 8vw, 130px) 40px; overflow: hidden; }
.insight-copy { position: relative; z-index: 4; }
.insight-copy h2 { margin: 0 0 27px; font-size: clamp(51px, 6.8vw, 108px); }
.insight-lead { margin: 0; color: rgba(232,232,223,.6); font-size: 13px; line-height: 1.65; }
.eye-area { --eye-x: 50%; --eye-y: 50%; --light-x: 50%; --light-y: 50%; position: absolute; inset: 0; overflow: hidden; background: radial-gradient(500px circle at var(--light-x) var(--light-y), rgba(199,255,66,.16), transparent 42%); }
.eye-area::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(280px circle at var(--light-x) var(--light-y), transparent 0 20%, rgba(7,18,15,.48) 60%, rgba(7,18,15,.9) 100%); mix-blend-mode: multiply; }
.ghost-copy { position: absolute; z-index: 1; font-size: clamp(67px, 11.6vw, 187px); line-height: .78; font-weight: 800; letter-spacing: -.09em; color: rgba(232,232,223,.055); }
.ghost-left { top: 40%; left: -1.5vw; }
.ghost-right { right: -1vw; bottom: 8%; text-align: right; }
.hidden-message { position: absolute; z-index: 2; padding: 14px 17px; border: 1px solid rgba(199,255,66,.46); font: 12px/1.35 var(--mono); color: var(--lime); text-transform: uppercase; opacity: .16; transition: opacity .25s ease; }
.eye-area:hover .hidden-message { opacity: .88; }
.message-one { left: 16%; top: 62%; }
.message-two { right: 20%; top: 39%; }
.eye { position: absolute; z-index: 3; width: min(30vw, 430px); aspect-ratio: 1.75; left: 54%; top: 62%; transform: translate(-50%, -50%) rotate(-11deg); overflow: hidden; border: 1px solid rgba(199,255,66,.82); border-radius: 100% 0; background: radial-gradient(ellipse at 43% 44%, #ecffbb, #bee879 28%, #6e9e31 64%, #1c3a29 100%); box-shadow: 0 0 0 12px rgba(199,255,66,.02), 0 0 88px rgba(199,255,66,.23); }
.eye::before { content: ""; position: absolute; inset: 9%; border: 1px solid rgba(7,18,15,.45); border-radius: inherit; }
.iris { position: absolute; width: 48%; aspect-ratio: 1; left: var(--eye-x); top: var(--eye-y); transform: translate(-50%, -50%); border: 1px solid rgba(232,232,223,.7); border-radius: 50%; background: repeating-conic-gradient(from 0deg, #143e2d 0 8deg, #a5d34a 9deg 11deg, #25664b 12deg 20deg); box-shadow: 0 0 35px rgba(199,255,66,.44); transition: left .14s ease-out, top .14s ease-out; }
.pupil { position: absolute; inset: 25%; border-radius: 50%; background: #050b09; box-shadow: inset 0 0 13px #000; }
.eye-glint { position: absolute; left: 22%; top: 17%; width: 18%; height: 13%; border-radius: 50%; background: rgba(255,255,237,.95); filter: blur(1px); transform: rotate(-35deg); }
.eye-caption { position: absolute; z-index: 4; right: clamp(22px, 8vw, 130px); bottom: 56px; display: flex; align-items: center; gap: 10px; color: rgba(232,232,223,.52); }
.eye-caption span { width: 45px; height: 1px; background: var(--lime); }

.contact { min-height: 720px; display: flex; flex-direction: column; padding: clamp(92px, 11vw, 170px) clamp(22px, 10.9vw, 176px) 25px; }
.contact h2 { margin: clamp(104px, 14vh, 145px) 0 clamp(45px, 6vh, 70px); font-size: clamp(50px, 7.2vw, 116px); }
.contact-mail { width: fit-content; font-size: clamp(22px, 3vw, 46px); letter-spacing: -.06em; border-bottom: 2px solid #78b222; transition: color .25s, border-color .25s; }
.contact-mail span { color: #69a900; font-size: .8em; }
.contact-mail:hover { color: #579300; border-color: var(--ink); }
.contact-footer { display: flex; justify-content: space-between; gap: 20px; margin-top: auto; padding-top: 40px; color: rgba(7,18,15,.52); font: 10px var(--mono); text-transform: uppercase; }
.contact-footer a { color: var(--ink); }

.reveal-up { opacity: 0; transform: translateY(18px); animation: revealUp .95s cubic-bezier(.2,.7,.2,1) forwards; }
.hero .reveal-up:nth-child(1) { animation-delay: .1s; }
.hero .reveal-up:nth-child(2) { animation-delay: .18s; }
.hero .reveal-up:nth-child(3) { animation-delay: .32s; }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 800px) {
  :root { --cube-width: 87vw; --cube-height: min(49vh, 430px); }
  .desktop-nav { display: none; }
  .site-header { padding: 20px 18px; }
  .brand { font-size: 16px; }
  .brand-mark { width: 24px; height: 24px; }
  .menu-link { min-width: auto; padding: 10px 12px 10px 14px; gap: 10px; font-size: 9px; }
  .hero { min-height: 730px; }
  .hero-content { padding: 150px 22px 120px; }
  .hero-bottom { align-items: flex-start; flex-direction: column; margin-top: 48px; }
  .round-cta { width: 88px; height: 88px; }
  .hero-object { width: 85vw; right: -32vw; top: 37%; opacity: .92; }
  .hero-footer { left: 22px; right: 22px; bottom: 18px; }
  .hero-footer p:first-child { display: none; }
  .hero-footer { justify-content: center; }
  .hero-footer p:last-child { position: absolute; right: 0; }
  .intro { min-height: 660px; padding: 87px 22px; }
  .intro-kicker { margin-top: 90px; }
  .intro h2 { font-size: clamp(42px, 12vw, 63px); }
  .intro-columns { align-items: flex-start; flex-direction: column; }
  .architecture-scroll { height: 360vh; }
  .architecture-sticky { min-height: 600px; }
  .architecture-head { padding: 84px 22px 0; }
  .architecture-head h2 { font-size: clamp(36px, 10vw, 53px); }
  .architecture-description { display: none; }
  .monolith { top: 52%; transform: translate(-50%, -38%) translateZ(-210px) rotateY(0deg); }
  .cube-face { padding: 23px; }
  .face-copy { max-width: 270px; }
  .face-copy h3 { font-size: clamp(33px, 10vw, 51px); }
  .face-copy > p:last-child { font-size: 11px; max-width: 220px; }
  .face-symbol { width: 28vw; right: 5%; top: 39%; }
  .face-meta { font-size: 8px; }
  .model-slot { top: 66%; width: 115vw; height: 220px; transform: translateX(-50%) translateZ(-250px) rotateX(56deg); }
  .terrain-label { font-size: 7px; }
  .architecture-ui { left: 22px; bottom: 25px; }
  .statement { min-height: 590px; padding: 86px 22px; }
  .statement h2 { margin-top: 95px; font-size: clamp(48px, 12.5vw, 67px); }
  .statement-metrics { width: 100%; }
  .statement-metrics span { font-size: 13px; }
  .statement-metrics article:not(:first-child) { padding-left: 10px; }
  .projects-scroll { height: 400vh; }
  .projects-sticky { min-height: 650px; }
  .projects-topline { top: 85px; left: 22px; right: 22px; }
  .projects-topline h2 { font-size: clamp(38px, 11vw, 55px); }
  .projects-topline > p { display: none; }
  .projects-stage { width: 330px; height: 330px; top: 46%; }
  .project-card { width: 165px; height: 219px; transform: translate(-50%, -50%) rotateY(var(--card-angle)) translateZ(225px); }
  .project-detail { grid-template-columns: auto 1fr; column-gap: 20px; row-gap: 12px; left: 22px; right: 22px; bottom: 33px; }
  .project-detail > p { grid-column: 2; font-size: 11px; }
  .project-detail .text-link { display: none; }
  .project-detail h3 { font-size: 34px; }
  .ring-scroll-note { right: -5px; font-size: 8px; }
  .capabilities { padding: 84px 22px; }
  .capabilities-heading { align-items: flex-start; flex-direction: column; margin: 92px 0 56px; }
  .capabilities-heading h2 { font-size: clamp(48px, 12vw, 65px); }
  .capabilities-heading p { margin: 0; }
  .capability-list article { grid-template-columns: 32px 1fr 20px; gap: 10px; min-height: 106px; }
  .capability-list p { display: none; }
  .capability-list h3 { font-size: 24px; }
  .insight { min-height: 760px; padding: 89px 22px 30px; }
  .insight-copy h2 { font-size: clamp(46px, 12vw, 65px); }
  .eye { width: 78vw; left: 50%; top: 62%; }
  .ghost-copy { font-size: 21vw; }
  .message-one { left: 8%; top: 55%; }
  .message-two { right: 6%; top: 75%; }
  .hidden-message { font-size: 9px; padding: 8px 10px; }
  .eye-caption { right: 22px; bottom: 27px; font-size: 8px; }
  .contact { min-height: 610px; padding: 84px 22px 19px; }
  .contact h2 { margin: 95px 0 45px; font-size: clamp(47px, 12vw, 66px); }
  .contact-footer { align-items: flex-end; flex-wrap: wrap; font-size: 8px; }
  .contact-footer span:nth-child(2) { display: none; }
}

@media (max-width: 390px) {
  .menu-link span { display: none; }
  .menu-link { width: 38px; height: 38px; padding: 0; }
  .hero-object { top: 40%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .architecture-scroll, .projects-scroll { height: auto; }
  .architecture-sticky, .projects-sticky { position: relative; height: 780px; }
}
