@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=Manrope:wght@400;500;600&display=swap');

:root {
  --ink: #08090c;
  --ink-soft: #101217;
  --paper: #f0f0eb;
  --muted: #979b9a;
  --line: rgba(255, 255, 255, 0.14);
  --lime: #c9ff3d;
  --violet: #7c67ff;
  --amber: #ffb454;
  --mono: 'DM Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --sans: 'Manrope', Inter, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--paper); font-family: var(--sans); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.page-noise { position: fixed; inset: 0; pointer-events: none; z-index: 20; 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='.65'/%3E%3C/svg%3E"); }
.section-shell { width: min(1400px, calc(100% - 80px)); margin-inline: auto; }
.section-space { padding-block: 150px; }

.site-header { height: 82px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 40px; position: relative; z-index: 30; }
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; font-family: var(--mono); font-size: 13px; letter-spacing: .09em; font-weight: 500; }
.brand > span > span { color: var(--lime); }
.brand-mark { width: 30px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.brand-mark path:last-child { stroke: var(--lime); }
.site-nav { display: flex; gap: 34px; font: 400 11px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.site-nav a, .header-cta { transition: color .25s ease; }
.site-nav a:hover, .header-cta:hover { color: var(--lime); }
.header-cta { justify-self: end; font: 400 11px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.header-cta span { margin-left: 8px; color: var(--lime); }
.menu-toggle { display: none; background: none; border: 0; }

.hero { min-height: calc(100vh - 82px); display: grid; grid-template-columns: 53% 47%; align-items: center; position: relative; padding-block: 80px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 10px; color: #b9bcba; font: 400 10px/1.3 var(--mono); letter-spacing: .15em; text-transform: uppercase; }
.pulse-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 6px rgba(201,255,61,.09), 0 0 18px var(--lime); animation: pulse 2.5s ease-in-out infinite; }
.pulse-dot.amber { background: var(--amber); box-shadow: 0 0 0 6px rgba(255,180,84,.09), 0 0 18px var(--amber); }
@keyframes pulse { 50% { opacity: .45; transform: scale(.8); } }
.hero h1 { margin: 30px 0 32px; font-size: clamp(72px, 8.1vw, 132px); line-height: .82; letter-spacing: -.075em; font-weight: 500; text-transform: uppercase; }
.outline-word { color: transparent; -webkit-text-stroke: 1px rgba(240,240,235,.72); }
.hero-intro { width: min(560px, 90%); margin: 0; padding-left: 110px; color: #aeb1af; font-size: 16px; line-height: 1.75; position: relative; }
.hero-intro::before { content: ''; position: absolute; left: 0; top: 12px; width: 78px; height: 1px; background: var(--lime); }
.hero-actions { display: flex; align-items: center; gap: 30px; margin: 46px 0 0 110px; }
.primary-button { background: var(--lime); color: var(--ink); padding: 18px 20px; min-width: 210px; display: flex; align-items: center; justify-content: space-between; font: 500 11px/1 var(--mono); text-transform: uppercase; letter-spacing: .08em; transition: transform .25s ease, box-shadow .25s ease; }
.primary-button:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(201,255,61,.15); }
.text-link { color: #c7c9c7; font: 400 11px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid #4f5252; padding-bottom: 6px; }
.text-link span { color: var(--lime); margin-left: 8px; }
.hero-visual { aspect-ratio: 1; position: relative; display: grid; place-items: center; transform: translateX(3%); }
.hero-visual::before { content: ''; position: absolute; width: 72%; height: 72%; border-radius: 50%; background: radial-gradient(circle, rgba(124,103,255,.17), rgba(124,103,255,.03) 45%, transparent 72%); filter: blur(4px); }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.orbit::after { content: ''; position: absolute; width: 6px; height: 6px; background: var(--lime); border-radius: 50%; top: 50%; left: -3px; box-shadow: 0 0 15px var(--lime); }
.orbit-one { width: 74%; height: 74%; animation: spin 30s linear infinite; }
.orbit-two { width: 53%; height: 53%; border-style: dashed; animation: spin 22s linear reverse infinite; }
.orbit-three { width: 90%; height: 32%; transform: rotate(-24deg); opacity: .55; }
@keyframes spin { to { transform: rotate(360deg); } }
.core { width: 225px; height: 225px; border-radius: 50%; background: radial-gradient(circle at 36% 30%, #35314c, #12131a 58%, #090a0e); border: 1px solid rgba(255,255,255,.18); box-shadow: inset 0 0 45px rgba(124,103,255,.16), 0 0 80px rgba(0,0,0,.5); display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; z-index: 2; }
.core::before, .core::after { content: ''; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.core::after { inset: 34px; border-style: dashed; animation: spin 20s linear infinite; }
.core-label { font: 400 8px/1 var(--mono); letter-spacing: .2em; color: var(--lime); }
.core strong { font: 500 62px/1 var(--sans); letter-spacing: -.08em; margin: 8px 0; }
.core small { font: 400 8px/1 var(--mono); color: #858989; letter-spacing: .1em; }
.node { position: absolute; z-index: 3; display: flex; align-items: center; gap: 9px; font: 400 8px/1 var(--mono); letter-spacing: .14em; color: #9da09e; }
.node i { width: 13px; height: 13px; border-radius: 50%; border: 1px solid var(--lime); box-shadow: inset 0 0 0 3px var(--ink); background: var(--lime); }
.node-a { top: 16%; left: 18%; }.node-b { bottom: 18%; left: 14%; }.node-c { top: 40%; right: 7%; }
.telemetry { position: absolute; padding: 14px 16px; min-width: 142px; border: 1px solid var(--line); background: rgba(8,9,12,.74); backdrop-filter: blur(10px); z-index: 4; }
.telemetry span, .telemetry small { display: block; font: 400 7px/1 var(--mono); color: #777b79; letter-spacing: .12em; }
.telemetry strong { display: block; margin-top: 8px; font: 400 21px/1 var(--mono); color: var(--paper); }
.telemetry small { margin-top: 6px; color: var(--lime); }
.telemetry-top { right: 7%; top: 13%; }.telemetry-bottom { left: 3%; bottom: 9%; }
.hero-index { position: absolute; right: 0; bottom: 32px; color: #696c6b; font: 400 9px/1 var(--mono); letter-spacing: .12em; }

.signal-strip { border-block: 1px solid var(--line); height: 50px; overflow: hidden; display: flex; align-items: center; color: #737775; font: 400 9px/1 var(--mono); letter-spacing: .12em; white-space: nowrap; }
.signal-track { display: flex; align-items: center; gap: 38px; width: max-content; animation: ticker 32s linear infinite; }
.signal-track i { color: var(--lime); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-kicker { color: var(--lime); margin-bottom: 55px; }
.story-grid, .protocol-heading, .assets-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 10%; align-items: start; }
.section-title { margin: 0; font-size: clamp(50px, 6vw, 88px); line-height: .94; letter-spacing: -.06em; font-weight: 500; text-transform: uppercase; }
.story-body { padding-top: 8px; color: #9da09f; font-size: 16px; line-height: 1.8; max-width: 540px; }
.story-body p { margin: 0 0 24px; }
.principles { margin-top: 110px; display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.principle-card { min-height: 390px; padding: 28px 30px 34px; border-right: 1px solid var(--line); position: relative; display: flex; flex-direction: column; }
.principle-card:last-child { border-right: 0; }
.card-number { color: #666a68; font: 400 9px/1 var(--mono); }
.principle-card h3 { margin: auto 0 12px; font-size: 30px; font-weight: 500; letter-spacing: -.04em; }
.principle-card p { max-width: 280px; margin: 0; color: #8e9290; font-size: 13px; line-height: 1.65; }
.mini-symbol { position: absolute; top: 78px; left: 50%; transform: translateX(-50%); width: 140px; height: 140px; }
.transfer-symbol { border: 1px solid #383b3d; border-radius: 50%; }
.transfer-symbol i { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 15px rgba(201,255,61,.5); }
.transfer-symbol i:nth-child(1) { top: 5px; left: 62px; }.transfer-symbol i:nth-child(2) { bottom: 18px; left: 12px; }.transfer-symbol i:nth-child(3) { bottom: 18px; right: 12px; }
.issue-symbol i { position: absolute; border: 1px solid #484b4c; transform: rotate(45deg); }
.issue-symbol i:nth-child(1) { inset: 15px; }.issue-symbol i:nth-child(2) { inset: 36px; border-color: var(--violet); }.issue-symbol i:nth-child(3) { inset: 58px; background: var(--lime); border: 0; }
.coordinate-symbol { border: 1px solid #35383a; border-radius: 50%; }
.coordinate-symbol i { position: absolute; inset: 25px; border: 1px dashed #55595a; border-radius: 50%; }
.coordinate-symbol i:nth-child(2) { inset: 52px; background: var(--lime); border: 0; }.coordinate-symbol i:nth-child(3) { width: 100%; height: 1px; inset: 50% 0 auto; border: 0; background: #4b4e4f; }

.protocol { border-top: 1px solid var(--line); }
.section-summary { color: #989c9a; font-size: 16px; line-height: 1.75; max-width: 480px; margin: 12px 0 0; }
.protocol-map { margin-top: 120px; display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.map-line { position: absolute; left: 2%; right: 2%; top: 42px; height: 1px; background: linear-gradient(90deg, var(--lime), #555 32%, #555 68%, var(--violet)); }
.protocol-map article { position: relative; padding-right: 40px; }
.protocol-map article > span { color: #777a79; font: 400 8px/1 var(--mono); }
.protocol-map article > i { display: block; width: 13px; height: 13px; border: 3px solid var(--ink); outline: 1px solid #7e8280; border-radius: 50%; background: var(--paper); margin: 23px 0 45px; position: relative; z-index: 2; }
.protocol-map article:first-of-type > i { background: var(--lime); outline-color: var(--lime); }.protocol-map article:last-of-type > i { background: var(--violet); outline-color: var(--violet); }
.protocol-map h3 { font-size: 18px; font-weight: 500; margin: 0 0 10px; }
.protocol-map p { color: #818583; font-size: 12px; line-height: 1.6; max-width: 190px; }
.protocol-note { margin-top: 95px; border: 1px solid var(--line); padding: 27px 30px; display: grid; grid-template-columns: 190px 1fr; align-items: start; }
.protocol-note span { color: var(--lime); font: 400 9px/1 var(--mono); letter-spacing: .1em; }
.protocol-note p { margin: 0; max-width: 760px; color: #898d8b; font-size: 12px; line-height: 1.7; }

.assets { background: var(--paper); color: var(--ink); }
.assets .section-kicker { color: #5c5e5d; }
.assets .section-summary { color: #5e615f; }
.asset-list { margin-top: 105px; border-top: 1px solid rgba(8,9,12,.22); }
.asset-row { min-height: 155px; display: grid; grid-template-columns: 70px 190px 1fr 90px; gap: 30px; align-items: center; border-bottom: 1px solid rgba(8,9,12,.22); position: relative; transition: padding .3s ease, background .3s ease; }
.asset-row:hover { padding-inline: 18px; background: rgba(8,9,12,.035); }
.asset-index { font: 400 9px/1 var(--mono); color: #767977; }
.asset-row > strong { font: 500 38px/1 var(--sans); letter-spacing: -.06em; }
.asset-row h3 { margin: 0 0 8px; font-size: 14px; font-weight: 600; }
.asset-row p { margin: 0; max-width: 560px; color: #636664; font-size: 12px; line-height: 1.6; }
.asset-mark { justify-self: end; display: grid; place-items: center; width: 56px; height: 56px; border: 1px solid rgba(8,9,12,.25); border-radius: 50%; font: 400 19px/1 var(--mono); }

.status-panel { min-height: 560px; border: 1px solid var(--line); display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; position: relative; }
.status-orb { display: grid; place-items: center; min-height: 560px; background: radial-gradient(circle at 50%, rgba(124,103,255,.22), transparent 55%); position: relative; }
.status-orb::before, .status-orb::after, .status-orb span { content: ''; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.13); }
.status-orb::before { width: 370px; height: 370px; }.status-orb::after { width: 240px; height: 240px; border-style: dashed; animation: spin 25s linear infinite; }.status-orb span { width: 98px; height: 98px; background: radial-gradient(circle at 35% 30%, var(--lime), #54720a); border: 0; box-shadow: 0 0 70px rgba(201,255,61,.18); }
.status-content { padding: 85px 8vw 60px 40px; border-left: 1px solid var(--line); }
.status-content h2 { font-size: clamp(48px, 5.5vw, 80px); line-height: .95; letter-spacing: -.06em; font-weight: 500; text-transform: uppercase; margin: 34px 0 25px; }
.status-content > p { color: #969a98; font-size: 14px; line-height: 1.75; max-width: 580px; }
.status-grid { display: grid; grid-template-columns: 1fr 1fr; margin-top: 55px; border-top: 1px solid var(--line); }
.status-grid div { padding: 20px 10px 20px 0; border-bottom: 1px solid var(--line); }
.status-grid span, .status-grid strong { display: block; font-family: var(--mono); }
.status-grid span { color: #626664; font-size: 7px; letter-spacing: .12em; margin-bottom: 10px; }
.status-grid strong { font-size: 10px; font-weight: 400; color: #bec1bf; }
.disclaimer { margin-top: 28px; display: grid; grid-template-columns: 190px 1fr; border-top: 1px solid var(--line); padding-top: 24px; }
.disclaimer span { color: var(--amber); font: 400 9px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.disclaimer p { margin: 0; max-width: 830px; color: #737775; font-size: 11px; line-height: 1.7; }

.site-footer { min-height: 150px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; color: #737775; font: 400 9px/1 var(--mono); letter-spacing: .08em; }
.footer-brand { color: var(--paper); }.site-footer > p { text-align: center; }.site-footer > div { display: flex; justify-content: flex-end; gap: 25px; }.site-footer a:hover { color: var(--lime); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  .section-shell { width: min(100% - 40px, 900px); }
  .site-header { padding-inline: 20px; grid-template-columns: 1fr auto; }
  .site-nav { position: absolute; left: 0; right: 0; top: 81px; background: var(--ink); border-bottom: 1px solid var(--line); padding: 28px 20px; display: none; flex-direction: column; gap: 22px; }
  .site-nav.open { display: flex; }.header-cta { display: none; }.menu-toggle { display: grid; gap: 6px; width: 34px; padding: 7px; }.menu-toggle span:not(.sr-only) { width: 20px; height: 1px; background: var(--paper); }
  .hero { grid-template-columns: 1fr; padding-top: 90px; }.hero-copy { z-index: 5; }.hero-visual { width: min(700px, 100%); margin: 20px auto 0; }.hero h1 { font-size: clamp(68px, 14vw, 118px); }.hero-index { display: none; }
  .story-grid, .protocol-heading, .assets-heading { grid-template-columns: 1fr; gap: 45px; }.story-body { margin-left: auto; }.principle-card { min-height: 340px; }.protocol-map article { padding-right: 15px; }.status-panel { grid-template-columns: 1fr; }.status-orb { min-height: 420px; }.status-content { border: 0; border-top: 1px solid var(--line); padding: 60px 40px; }
}

@media (max-width: 700px) {
  .section-shell { width: calc(100% - 32px); }.section-space { padding-block: 95px; }.site-header { height: 70px; }.site-nav { top: 69px; }
  .hero { min-height: calc(100vh - 70px); padding-block: 70px 30px; }.hero h1 { font-size: clamp(55px, 17.5vw, 86px); line-height: .85; margin-top: 24px; }.hero-intro { width: 100%; padding-left: 0; font-size: 14px; }.hero-intro::before { display: none; }.hero-actions { margin-left: 0; flex-direction: column; align-items: stretch; }.text-link { width: max-content; }.hero-visual { min-width: 520px; left: 50%; transform: translateX(-50%); margin-top: -10px; }.telemetry-top { right: 18%; }.telemetry-bottom { left: 18%; }
  .section-kicker { margin-bottom: 35px; }.section-title { font-size: 48px; }.principles { grid-template-columns: 1fr; margin-top: 70px; }.principle-card { border-right: 0; border-bottom: 1px solid var(--line); }.protocol-map { grid-template-columns: 1fr; gap: 35px; margin-top: 75px; }.map-line { left: 6px; top: 0; bottom: 0; width: 1px; height: auto; }.protocol-map article { padding-left: 45px; }.protocol-map article > i { position: absolute; left: 0; top: -22px; }.protocol-map article p { max-width: none; }.protocol-note, .disclaimer { grid-template-columns: 1fr; gap: 18px; }
  .asset-list { margin-top: 65px; }.asset-row { grid-template-columns: 35px 100px 1fr; gap: 12px; padding-block: 28px; }.asset-row > strong { font-size: 24px; }.asset-row div { grid-column: 2 / 4; }.asset-mark { display: none; }.status-orb { min-height: 330px; }.status-orb::before { width: 270px; height: 270px; }.status-content { padding: 45px 24px; }.status-grid { grid-template-columns: 1fr; }.site-footer { grid-template-columns: 1fr; gap: 22px; padding-block: 35px; }.site-footer > p { text-align: left; }.site-footer > div { justify-content: flex-start; flex-wrap: wrap; }
}

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