:root {
  color-scheme: dark;
  --bg: #09090b;
  --bg-soft: #0d0e10;
  --panel: rgba(17, 18, 20, .82);
  --panel-solid: #111214;
  --line: rgba(255,255,255,.10);
  --line-strong: rgba(255,255,255,.18);
  --text: #f4f4f1;
  --muted: #94969b;
  --dim: #64666b;
  --lime: #a3ff12;
  --lime-soft: rgba(163,255,18,.14);
  --lime-line: rgba(163,255,18,.42);
  --mono: "SFMono-Regular", "SF Mono", "Cascadia Code", "Liberation Mono", Menlo, monospace;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 72% 8%, rgba(163,255,18,.055), transparent 28rem),
    radial-gradient(circle at 6% 35%, rgba(255,255,255,.025), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; color: inherit; }
img { max-width: 100%; display: block; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.shell { width: min(1240px, calc(100% - 44px)); margin-inline: auto; }
.eyebrow { margin: 0 0 18px; color: var(--lime); font: 700 11px/1 var(--mono); letter-spacing: .14em; }

.site-head {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; font-weight: 720; letter-spacing: -.03em; }
.brand img { width: 31px; filter: drop-shadow(0 0 12px rgba(163,255,18,.10)); }
.brand small { color: var(--muted); font-size: .64em; font-weight: 520; margin-left: 1px; }
.site-nav { display: flex; align-items: center; gap: 28px; color: var(--muted); font-size: 13px; }
.site-nav a { transition: color .2s ease; }
.site-nav a:hover { color: var(--text); }
.network-pill {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font: 650 11px/1 var(--mono);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.network-pill b { color: var(--text); }
.network-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px var(--lime); }
body.is-offline .network-dot { background: #6c6d70; box-shadow: none; }
body.is-offline [data-online-only] { opacity: .48; }

.hero {
  min-height: calc(100svh - 84px);
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(38px, 6vw, 88px);
  align-items: center;
  padding-block: 70px 78px;
}
.hero-copy h1, .section-head h2, .statement h2, .story-copy h2, .world-copy h2, .closing h2 {
  margin: 0;
  font-weight: 560;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero-copy h1 { max-width: 780px; font-size: clamp(50px, 6.2vw, 91px); line-height: .94; }
.hero-copy h1 span { color: var(--lime); }
.hero-lede { max-width: 650px; margin: 28px 0 0; color: #c1c2c4; font-size: clamp(17px, 1.45vw, 21px); line-height: 1.55; letter-spacing: -.02em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.button { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; padding: 0 16px; border: 1px solid var(--line); border-radius: 9px; font: 650 12px/1 var(--mono); letter-spacing: .01em; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); border-color: var(--line-strong); }
.button-primary { background: var(--lime); color: #090a08; border-color: var(--lime); }
.button-quiet { background: rgba(255,255,255,.025); }
.hero-principles { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 42px; color: var(--muted); font: 600 10px/1.2 var(--mono); text-transform: uppercase; }
.hero-principles i { color: var(--dim); font-style: normal; margin-right: 5px; }

.living-shell { border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: linear-gradient(180deg, rgba(20,21,23,.86), rgba(9,10,11,.97)); box-shadow: 0 34px 90px rgba(0,0,0,.38); }
.stage-topline, .stage-footer { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-inline: 16px; border-bottom: 1px solid var(--line); font: 650 10px/1 var(--mono); letter-spacing: .08em; color: var(--muted); text-transform: uppercase; }
.stage-topline span { display: inline-flex; align-items: center; gap: 8px; }
.stage-topline span i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); }
.stage-control { appearance: none; border: 0; background: transparent; padding: 8px; cursor: pointer; color: var(--muted); font: inherit; text-transform: uppercase; }
.stage-control:hover { color: var(--text); }
.living-stage { position: relative; aspect-ratio: 760/560; overflow: hidden; }
.world-grid { position: absolute; inset: 0; opacity: 0; transform: perspective(700px) rotateX(62deg) scale(1.45) translateY(14%); transform-origin: 50% 76%; background-image: linear-gradient(rgba(163,255,18,.20) 1px, transparent 1px), linear-gradient(90deg, rgba(163,255,18,.20) 1px, transparent 1px); background-size: 38px 38px; mask-image: linear-gradient(to top, black, transparent 85%); transition: opacity .9s ease, transform 1.2s cubic-bezier(.2,.75,.15,1); }
.fabric { width: 100%; height: 100%; position: relative; z-index: 2; }
.route { fill: none; stroke: rgba(255,255,255,.13); stroke-width: 1.5; stroke-dasharray: 5 7; opacity: .26; transition: stroke .5s ease, opacity .5s ease, stroke-width .5s ease; }
.node { opacity: .16; transition: opacity .55s ease, filter .55s ease; outline: none; }
.node text { fill: #f1f1ed; font: 700 12px/1 var(--mono); letter-spacing: .08em; }
.node text.node-meta { fill: #777a7f; font-size: 10px; font-weight: 560; letter-spacing: .02em; }
.node-core { fill: #25272a; stroke: #6e7075; stroke-width: 1.2; transition: fill .55s ease, stroke .55s ease; }
.node-halo { fill: rgba(163,255,18,.02); stroke: rgba(163,255,18,.08); stroke-width: 1; stroke-dasharray: 3 5; }
.machine-frame { fill: rgba(18,19,21,.88); stroke: rgba(255,255,255,.17); }
.resource { transform-origin: center; }
.traveler { fill: var(--lime); filter: drop-shadow(0 0 7px var(--lime)); opacity: 0; }

[data-scene="identity"] .node-you,
[data-scene="identity"] .node-fngk,
[data-scene="presence"] .node-you,
[data-scene="presence"] .node-fngk,
[data-scene="presence"] .node-signal,
[data-scene="machine"] .node-you,
[data-scene="machine"] .node-fngk,
[data-scene="machine"] .node-signal,
[data-scene="machine"] .node-machine,
[data-scene="resources"] .node-you,
[data-scene="resources"] .node-fngk,
[data-scene="resources"] .node-signal,
[data-scene="resources"] .node-machine,
[data-scene="resources"] .resource,
[data-scene="agent"] .node,
[data-scene="collaboration"] .node,
[data-scene="world"] .node { opacity: 1; }

[data-scene="identity"] .node-you .node-core,
[data-scene="identity"] .node-fngk .node-core,
[data-scene="presence"] .node-signal .node-core,
[data-scene="machine"] .node-machine .node-core,
[data-scene="resources"] .resource .node-core,
[data-scene="agent"] .node-agent .node-core,
[data-scene="collaboration"] .node-you .node-core,
[data-scene="collaboration"] .node-agent .node-core,
[data-scene="world"] .node-core { fill: var(--lime); stroke: var(--lime); }

[data-scene="identity"] .route-auth,
[data-scene="presence"] .route-auth,
[data-scene="presence"] .route-presence,
[data-scene="machine"] .route-auth,
[data-scene="machine"] .route-presence,
[data-scene="machine"] .route-machine,
[data-scene="resources"] .route-auth,
[data-scene="resources"] .route-presence,
[data-scene="resources"] .route-machine,
[data-scene="resources"] .route-resource-a,
[data-scene="resources"] .route-resource-b,
[data-scene="resources"] .route-resource-c,
[data-scene="agent"] .route,
[data-scene="collaboration"] .route,
[data-scene="world"] .route { stroke: var(--lime-line); opacity: .84; }
[data-scene="world"] .route { stroke-width: 2; stroke-dasharray: 0; }
[data-scene="world"] .world-grid { opacity: .52; transform: perspective(700px) rotateX(58deg) scale(1.22) translateY(4%); }
[data-scene="world"] .fabric { filter: drop-shadow(0 12px 28px rgba(163,255,18,.06)); }

.stage-card { position: absolute; z-index: 4; border: 1px solid var(--line); border-radius: 10px; background: rgba(13,14,16,.92); backdrop-filter: blur(14px); box-shadow: 0 14px 36px rgba(0,0,0,.30); opacity: 0; transform: translateY(9px) scale(.985); pointer-events: none; transition: opacity .45s ease, transform .45s ease; }
.stage-card small { color: var(--muted); font: 650 9px/1 var(--mono); letter-spacing: .08em; }
.permission-card { left: 5%; top: 8%; width: 200px; padding: 13px; display: grid; gap: 8px; }
.permission-card strong { font: 650 12px/1.2 var(--mono); }
.permission-card span { color: var(--muted); font: 550 10px/1.3 var(--mono); }
.permission-card span b { color: var(--lime); font-weight: 650; }
.resource-card { right: 4%; top: 8%; width: 205px; padding: 13px; display: grid; gap: 8px; }
.resource-card strong { font: 650 12px/1 var(--mono); }
.resource-card span { color: var(--muted); font: 550 10px/1.45 var(--mono); }
.agent-card { left: 5%; bottom: 6%; width: 248px; padding: 14px; }
.agent-card-head { display: flex; align-items: center; justify-content: space-between; }
.agent-card-head i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); }
.agent-card code { display: block; margin-top: 16px; color: #e5e5e1; font: 600 11px/1.5 var(--mono); }
.agent-card code span { color: var(--lime); }
.agent-card p { margin: 4px 0 12px; color: var(--muted); font: 550 10px/1.4 var(--mono); }
.agent-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; }
.agent-steps b { height: 2px; background: var(--line-strong); }
.agent-steps b:nth-child(-n+3) { background: var(--lime); }
.world-label { right: 5%; bottom: 7%; width: 220px; padding: 14px; display: grid; gap: 8px; }
.world-label strong { font-size: 13px; line-height: 1.3; }
[data-scene="identity"] .permission-card,
[data-scene="presence"] .permission-card,
[data-scene="machine"] .permission-card,
[data-scene="machine"] .resource-card,
[data-scene="resources"] .resource-card,
[data-scene="agent"] .agent-card,
[data-scene="collaboration"] .agent-card,
[data-scene="world"] .world-label { opacity: 1; transform: translateY(0) scale(1); }

.stage-footer { min-height: 78px; border-top: 1px solid var(--line); border-bottom: 0; text-transform: none; letter-spacing: 0; }
.scene-copy { padding-block: 12px; }
.scene-copy > span { color: var(--dim); font: 600 9px/1 var(--mono); }
.scene-copy strong { display: block; margin-top: 6px; color: var(--text); font-size: 12px; }
.scene-copy p { margin: 4px 0 0; max-width: 430px; color: var(--muted); font-size: 10px; line-height: 1.35; }
.scene-progress { display: flex; gap: 5px; }
.scene-step { width: 20px; height: 2px; padding: 0; border: 0; background: rgba(255,255,255,.13); cursor: pointer; transition: width .25s ease, background .25s ease; }
.scene-step.is-active { width: 34px; background: var(--lime); }

.statement { padding-block: 120px 130px; border-top: 1px solid var(--line); }
.statement p { margin: 0 0 8px; color: var(--muted); font: 650 11px/1 var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.statement h2 { max-width: 980px; font-size: clamp(40px, 6vw, 79px); line-height: 1.02; }

.system-stack { padding-bottom: 130px; }
.section-head { display: grid; grid-template-columns: 1fr minmax(280px, .7fr); column-gap: 80px; align-items: end; margin-bottom: 46px; }
.section-head .eyebrow { grid-column: 1 / -1; }
.section-head h2 { max-width: 760px; font-size: clamp(42px, 5vw, 68px); line-height: 1; }
.section-head > p:last-child { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.stack-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.stack-card { position: relative; min-height: 355px; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.012); overflow: hidden; transition: background .25s ease; }
a.stack-card:hover { background: rgba(163,255,18,.035); }
.stack-number { position: absolute; right: 22px; top: 22px; color: var(--dim); font: 650 10px/1 var(--mono); }
.stack-icon { height: 108px; display: flex; align-items: center; justify-content: flex-start; margin-bottom: 20px; }
.stack-icon img { max-height: 92px; max-width: 142px; object-fit: contain; object-position: left center; opacity: .84; }
.stack-icon-world img { max-width: 165px; }
.stack-card small { color: var(--lime); font: 650 9px/1 var(--mono); letter-spacing: .11em; }
.stack-card h3 { margin: 9px 0 12px; font-size: 28px; letter-spacing: -.04em; font-weight: 570; }
.stack-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.stack-card > b { position: absolute; left: 26px; bottom: 24px; color: #c8c9c5; font: 600 10px/1 var(--mono); }
.signal-glyph, .resource-glyph, .dock-glyph { height: 108px; position: relative; margin-bottom: 20px; }
.signal-glyph i { position: absolute; top: 45px; width: 12px; height: 12px; border: 2px solid var(--lime); border-radius: 50%; }
.signal-glyph i:nth-child(1) { left: 4px; }
.signal-glyph i:nth-child(2) { left: 61px; }
.signal-glyph i:nth-child(3) { left: 118px; }
.signal-glyph::before, .signal-glyph::after { content: ""; position: absolute; top: 50px; width: 50px; height: 1px; background: linear-gradient(90deg,var(--lime),rgba(163,255,18,.18)); }
.signal-glyph::before { left: 17px; }.signal-glyph::after { left: 74px; }
.resource-glyph { display: grid; grid-template-columns: repeat(2,46px); grid-auto-rows: 34px; gap: 8px; align-content: center; }
.resource-glyph i { border: 1px solid rgba(163,255,18,.34); background: rgba(163,255,18,.04); }
.dock-glyph { width: 155px; height: 96px; margin-top: 8px; border: 1px solid var(--line-strong); display: grid; grid-template-columns: 35px 1fr; grid-template-rows: 1fr 28px; }
.dock-glyph i { border: 1px solid rgba(163,255,18,.24); margin: 3px; }.dock-glyph i:nth-child(1){grid-row:1/3}.dock-glyph i:nth-child(3){grid-column:2}

.network-story, .agent-story { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(50px,8vw,110px); align-items: center; padding-block: 130px; border-top: 1px solid var(--line); }
.agent-story { grid-template-columns: .88fr 1.12fr; }
.story-copy h2, .world-copy h2 { font-size: clamp(40px,4.7vw,66px); line-height: 1.02; }
.story-copy > p:not(.eyebrow), .world-copy > p:not(.eyebrow) { color: var(--muted); font-size: 16px; line-height: 1.7; }
.story-copy ul { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 13px; color: #c2c3c0; font-size: 13px; }
.story-copy li { display: flex; gap: 12px; align-items: baseline; }.story-copy li::before { content: "↳"; color: var(--lime); font-family: var(--mono); }.story-copy li span { width: 58px; color: var(--muted); font: 650 10px/1 var(--mono); text-transform: uppercase; }
.terminal-window { border: 1px solid var(--line); border-radius: 14px; background: #0d0e10; box-shadow: 0 28px 72px rgba(0,0,0,.34); overflow: hidden; }
.terminal-bar { height: 38px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 6px; padding: 0 13px; color: var(--muted); font: 600 9px/1 var(--mono); }
.terminal-bar i { width: 6px; height: 6px; border-radius: 50%; background: #3b3d41; }.terminal-bar span { margin-left: 8px; }
.terminal-window pre { margin: 0; padding: clamp(20px,4vw,36px); min-height: 350px; overflow: auto; }
.terminal-window code { color: #d9d9d5; font: 600 11px/1.8 var(--mono); }.terminal-window .dim { color: #6f7276; }.terminal-window .ok { color: var(--lime); }.cursor { color: var(--lime); animation: blink 1s steps(1,end) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.agent-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }.agent-facts span { border: 1px solid var(--line); border-radius: 999px; padding: 8px 10px; color: #b7b8b4; font: 600 10px/1 var(--mono); }
.execution-panel { border: 1px solid var(--line); background: linear-gradient(180deg,#101113,#0b0c0e); border-radius: 15px; overflow: hidden; }
.execution-head { height: 46px; display: flex; align-items: center; justify-content: space-between; padding: 0 16px; border-bottom: 1px solid var(--line); color: var(--muted); font: 650 10px/1 var(--mono); }.execution-head b { color: var(--lime); font-size: 9px; }
.execution-metrics { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid var(--line); }.execution-metrics span { padding: 16px; border-right: 1px solid var(--line); }.execution-metrics span:last-child { border-right: 0; }.execution-metrics small { display: block; color: var(--dim); font: 650 8px/1 var(--mono); }.execution-metrics strong { display: block; margin-top: 7px; font: 650 12px/1 var(--mono); }
.execution-panel ol { list-style: none; padding: 0; margin: 0; }.execution-panel li { display: grid; grid-template-columns: 16px 1fr auto; gap: 12px; align-items: center; min-height: 72px; padding: 0 17px; border-bottom: 1px solid var(--line); }.execution-panel li:last-child { border-bottom: 0; }.execution-panel li i { width: 8px; height: 8px; border-radius: 50%; border: 1px solid #5a5c60; }.execution-panel li.active { background: var(--lime-soft); }.execution-panel li.active i { background: var(--lime); border-color: var(--lime); box-shadow: 0 0 10px var(--lime); }.execution-panel li span b { display: block; font-size: 12px; }.execution-panel li span small { display: block; margin-top: 4px; color: var(--muted); font: 550 10px/1.2 var(--mono); }.execution-panel li em { color: var(--dim); font: 650 9px/1 var(--mono); font-style: normal; }.execution-panel li.active em { color: var(--lime); }

.world-story { padding-block: 130px 150px; border-top: 1px solid var(--line); }
.world-copy { max-width: 840px; }
.text-link { display: inline-flex; gap: 18px; margin-top: 18px; color: var(--lime); font: 650 11px/1 var(--mono); }
.world-demo { position: relative; margin-top: 58px; height: 620px; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: linear-gradient(180deg,rgba(19,20,22,.85),#0a0b0c); }
.world-plane { position: absolute; left: 50%; top: 50%; width: 70%; aspect-ratio: 600/360; transform: translate(-50%,-48%) perspective(760px) rotateX(55deg) rotateZ(-4deg); background-image: linear-gradient(rgba(163,255,18,.15) 1px, transparent 1px), linear-gradient(90deg,rgba(163,255,18,.15) 1px,transparent 1px); background-size: 36px 36px; border: 1px solid rgba(163,255,18,.16); box-shadow: 0 20px 70px rgba(163,255,18,.04); }
.world-plane svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }.world-plane path { fill: none; stroke: rgba(163,255,18,.46); stroke-width: 2; }.world-plane circle { fill: var(--lime); }
.world-node { position: absolute; z-index: 2; display: grid; gap: 6px; justify-items: center; color: #dfe0dc; font: 650 9px/1 var(--mono); }.world-node i { width: 14px; height: 14px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 16px rgba(163,255,18,.48); }.wn-a{left:12%;top:21%}.wn-b{left:48%;top:42%}.wn-c{left:79%;top:27%}.wn-d{left:72%;top:78%}
.dock { position: absolute; z-index: 5; border: 1px solid var(--line); background: rgba(12,13,15,.92); backdrop-filter: blur(12px); box-shadow: 0 14px 34px rgba(0,0,0,.28); color: var(--muted); font: 550 10px/1.4 var(--mono); }.dock small { color: var(--dim); font-size: 8px; letter-spacing: .08em; }.dock-left { left: 18px; top: 18px; width: 145px; min-height: 150px; padding: 13px; display: grid; align-content: start; gap: 10px; }.dock-right { right: 18px; top: 18px; width: 180px; padding: 13px; display: grid; gap: 8px; }.dock-right strong { color: var(--text); }.dock-bottom { left: 18%; right: 18%; bottom: 18px; min-height: 74px; padding: 13px; display: grid; gap: 10px; }.dock-bottom code { color: #dfe0dc; }.dock-bottom code span { color: var(--lime); }

.build { padding-block: 130px; border-top: 1px solid var(--line); }.build-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }.experiment-card, .build-card { min-height: 320px; border: 1px solid var(--line); border-radius: 14px; padding: 24px; background: rgba(255,255,255,.014); }.experiment-card { position: relative; display: flex; flex-direction: column; transition: border-color .25s ease, transform .25s ease; }.experiment-card:hover { border-color: rgba(163,255,18,.35); transform: translateY(-3px); }.experiment-top { display: flex; justify-content: space-between; color: var(--muted); font: 650 9px/1 var(--mono); }.experiment-card > strong { margin-top: auto; font-size: 38px; letter-spacing: -.04em; }.experiment-card p { max-width: 370px; color: var(--muted); font-size: 13px; line-height: 1.55; }.experiment-card i { color: var(--lime); font: 650 10px/1 var(--mono); font-style: normal; }.build-card { display: grid; align-content: space-between; }.build-card small { color: var(--lime); font: 650 9px/1 var(--mono); letter-spacing: .08em; }.build-card pre { margin: 24px 0; }.build-card code { color: #c9cac6; font: 600 13px/1.9 var(--mono); }.build-card code span { display: inline-block; width: 86px; color: var(--lime); }.build-card p { margin: 0; color: var(--muted); font-size: 13px; }

.closing { min-height: 640px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; border-top: 1px solid var(--line); }.closing img { filter: drop-shadow(0 0 22px rgba(163,255,18,.18)); }.closing p { margin: 24px 0 8px; color: var(--muted); font: 650 10px/1 var(--mono); text-transform: uppercase; letter-spacing: .09em; }.closing h2 { max-width: 900px; font-size: clamp(48px,7vw,88px); line-height: .98; }.closing .hero-actions { justify-content: center; }
.site-footer { min-height: 86px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; color: var(--dim); font: 600 10px/1 var(--mono); }.site-footer .brand { color: var(--text); }.site-footer p { margin: 0; }.site-footer > span { justify-self: end; }

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

@media (max-width: 980px) {
  .site-head { grid-template-columns: 1fr auto; }.site-nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }.hero-copy { padding-top: 26px; }.hero-copy h1 { max-width: 850px; }
  .living-shell { max-width: 780px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }.stack-grid { grid-template-columns: repeat(2,1fr); }
  .network-story, .agent-story { grid-template-columns: 1fr; }.agent-story .story-copy { order: 1; }.agent-story .execution-panel { order: 2; }
  .world-demo { height: 540px; }.dock-bottom { left: 12%; right: 12%; }
}

@media (max-width: 680px) {
  .shell { width: min(100% - 28px, 1240px); }.site-head { min-height: 70px; }.brand img { width: 28px; }.network-pill { padding-inline: 9px; }.network-pill b { display: none; }
  .hero { padding-block: 48px 60px; gap: 42px; }.hero-copy h1 { font-size: clamp(46px,15vw,70px); }.hero-lede { font-size: 16px; }.hero-principles { display: grid; grid-template-columns: repeat(2,auto); justify-content: start; }
  .living-shell { margin-inline: -4px; border-radius: 16px; }.stage-topline { min-height: 42px; }.living-stage { aspect-ratio: 1 / 1.05; }.fabric { transform: scale(1.18); transform-origin: center; }.stage-card { display: none; }.stage-footer { min-height: 96px; align-items: flex-end; flex-direction: column; justify-content: center; }.scene-copy { width: 100%; }.scene-progress { width: 100%; }.scene-step { flex: 1; }.scene-step.is-active { flex: 1.7; width: auto; }
  .statement { padding-block: 88px; }.statement h2 { font-size: 43px; }
  .system-stack { padding-bottom: 90px; }.section-head { margin-bottom: 34px; }.section-head h2 { font-size: 43px; }.stack-grid { grid-template-columns: 1fr; }.stack-card { min-height: 320px; }
  .network-story, .agent-story { padding-block: 90px; gap: 42px; }.story-copy h2, .world-copy h2 { font-size: 43px; }.terminal-window pre { min-height: 320px; padding: 20px 16px; }.terminal-window code { font-size: 10px; }
  .execution-metrics span { padding: 12px 10px; }.execution-panel li { padding-inline: 12px; }
  .world-story { padding-block: 90px; }.world-demo { height: 460px; margin-top: 42px; }.world-plane { width: 92%; }.dock-left { width: 120px; }.dock-right { width: 145px; }.dock-bottom { left: 12px; right: 12px; bottom: 12px; }
  .build { padding-block: 90px; }.build-grid { grid-template-columns: 1fr; }.experiment-card,.build-card { min-height: 290px; }
  .closing { min-height: 560px; }.closing h2 { font-size: 50px; }
  .site-footer { grid-template-columns: 1fr auto; min-height: 100px; }.site-footer p { display: none; }
}

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