:root {
  --bg: #060a0f;
  --bg-soft: #0a1118;
  --panel: rgba(10, 17, 24, .76);
  --panel-solid: #0c141d;
  --line: rgba(188, 225, 225, .16);
  --line-strong: rgba(188, 225, 225, .32);
  --text: #edf7f3;
  --muted: #91a5a3;
  --acid: #7cf7c4;
  --cyan: #57d9ff;
  --pink: #ff7ac8;
  --yellow: #e9ff70;
  --radius: 22px;
  --shell: min(1500px, calc(100vw - 56px));
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 5%, rgba(87, 217, 255, .08), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(124, 247, 196, .08), transparent 30%),
    var(--bg);
  font-family: var(--sans);
  overflow-x: hidden;
}
body.menu-open, body.drawer-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
::selection { color: var(--bg); background: var(--acid); }

.section-shell { width: var(--shell); margin-inline: auto; }
.micro, .eyebrow, .section-index, small, .atlas-hud, .matrix-row, .drawer-topline {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.section-index { margin: 0; color: var(--acid); font-size: 11px; }

#field-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .45;
  z-index: -3;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
  opacity: .065;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.scanline {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 29;
  background: repeating-linear-gradient(180deg, transparent 0 4px, rgba(255,255,255,.014) 5px);
  mix-blend-mode: soft-light;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-content: center;
  gap: 28px;
  background: #05090d;
  transition: opacity .8s cubic-bezier(.22,1,.36,1), visibility .8s;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__mark { display: flex; align-items: center; justify-content: center; gap: 14px; font: 700 52px/1 var(--mono); }
.loader__mark i { width: 92px; height: 1px; background: var(--acid); position: relative; }
.loader__mark i::after { content: ""; position: absolute; right: 0; top: -4px; width: 9px; height: 9px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 24px var(--acid); }
.loader__copy { text-align: center; display: grid; gap: 8px; }
.loader__copy b { font-size: 13px; letter-spacing: .24em; }
.loader__copy small { color: var(--muted); font-size: 9px; }
.loader__bar { width: min(420px, 72vw); height: 2px; overflow: hidden; background: rgba(255,255,255,.08); }
.loader__bar span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--cyan), var(--acid)); transform-origin: left; animation: load 1.35s cubic-bezier(.22,1,.36,1) both; }
@keyframes load { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(124,247,196,.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.35);
  opacity: 0;
  transition: transform .25s, opacity .25s, background .25s, border-color .25s;
  mix-blend-mode: difference;
}
.cursor span { font: 700 8px/1 var(--mono); letter-spacing: .13em; }
.cursor.is-visible { opacity: 1; }
.cursor.is-active { transform: translate(-50%, -50%) scale(1); background: rgba(124,247,196,.18); border-color: var(--acid); }
.page-progress { position: fixed; right: 0; top: 0; z-index: 40; width: 2px; height: 100vh; background: rgba(255,255,255,.04); }
.page-progress span { display: block; width: 100%; height: 100%; transform: scaleY(0); transform-origin: top; background: linear-gradient(var(--cyan), var(--acid), var(--pink)); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 28px;
  border-bottom: 1px solid rgba(188,225,225,.11);
  background: linear-gradient(180deg, rgba(6,10,15,.92), rgba(6,10,15,.55));
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; justify-self: start; }
.brand__mark { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--line-strong); color: var(--acid); font: 700 11px/1 var(--mono); }
.brand__copy { display: grid; gap: 2px; }
.brand__copy strong { font-size: 13px; letter-spacing: .16em; }
.brand__copy small { color: var(--muted); font-size: 8px; }
.desktop-nav { display: flex; gap: 34px; }
.desktop-nav a { position: relative; color: #bdccca; font: 600 11px/1 var(--mono); text-transform: uppercase; letter-spacing: .1em; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--acid); transition: right .3s; }
.desktop-nav a:hover::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 18px; }
.index-status { display: inline-flex; align-items: center; gap: 7px; color: var(--muted); font: 600 9px/1 var(--mono); text-transform: uppercase; letter-spacing: .09em; }
.index-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 12px var(--acid); animation: blink 1.8s infinite; }
.index-status b { color: var(--text); }
@keyframes blink { 50% { opacity: .32; } }
.header-link { display: flex; align-items: center; gap: 24px; min-height: 42px; padding: 0 16px; border: 1px solid var(--line-strong); font: 700 10px/1 var(--mono); text-transform: uppercase; letter-spacing: .1em; }
.header-link b { color: var(--acid); }
.menu-toggle { display: none; position: relative; width: 46px; height: 46px; border: 1px solid var(--line-strong); background: transparent; cursor: pointer; }
.menu-toggle span { position: absolute; left: 13px; right: 13px; height: 1px; background: currentColor; transition: transform .3s, top .3s; }
.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 27px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }

.menu-panel { position: fixed; inset: 0; z-index: 45; display: grid; align-items: end; padding: 110px 28px 28px; background: rgba(4,8,12,.97); transform: translateY(-100%); transition: transform .65s cubic-bezier(.22,1,.36,1); }
.menu-panel.is-open { transform: none; }
.menu-panel__inner { width: 100%; }
.menu-panel nav { border-top: 1px solid var(--line); }
.menu-panel nav a { display: grid; grid-template-columns: 52px 1fr; align-items: baseline; padding: 20px 0; border-bottom: 1px solid var(--line); }
.menu-panel nav small { color: var(--acid); }
.menu-panel nav span { font-size: clamp(38px, 11vw, 72px); line-height: .9; letter-spacing: -.06em; }
.menu-meta { display: flex; justify-content: space-between; margin-top: 24px; color: var(--muted); font: 500 9px/1 var(--mono); text-transform: uppercase; letter-spacing: .1em; }

.hero { position: relative; min-height: 100svh; padding: 132px 28px 30px; display: grid; grid-template-rows: auto 1fr auto; overflow: hidden; border-bottom: 1px solid var(--line); }
.hero__grid { position: absolute; inset: 86px 0 0; opacity: .16; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 9vw 9vw; mask-image: radial-gradient(circle at 58% 48%, black, transparent 72%); }
.hero__meta { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr minmax(280px, 430px); gap: 40px; align-items: start; }
.hero__meta p { margin: 0; }
.hero__meta > p:last-child { justify-self: end; color: var(--muted); font-size: 13px; line-height: 1.7; }
.eyebrow { color: var(--acid); font-size: 10px; }
.hero__title { position: relative; z-index: 2; align-self: center; margin: 70px 0 32px; font-size: clamp(78px, 12.6vw, 226px); line-height: .72; letter-spacing: -.085em; text-transform: uppercase; }
.hero__line { display: block; }
.hero__line--outline { color: transparent; -webkit-text-stroke: 1px rgba(237,247,243,.7); margin-left: 12.5vw; }
.hero__orbit { position: absolute; z-index: 3; right: 6vw; top: 22%; width: min(40vw, 620px); aspect-ratio: 1; perspective: 900px; }
.orbit { position: absolute; inset: 12%; border: 1px solid rgba(124,247,196,.24); border-radius: 50%; animation: spin 22s linear infinite; }
.orbit::before, .orbit::after { content: ""; position: absolute; width: 9px; height: 9px; border: 1px solid var(--acid); border-radius: 50%; background: var(--bg); box-shadow: 0 0 16px rgba(124,247,196,.5); }
.orbit::before { left: 8%; top: 22%; }
.orbit::after { right: 3%; bottom: 30%; }
.orbit--two { inset: 25%; border-style: dashed; animation-direction: reverse; animation-duration: 15s; }
.orbit--three { inset: 38%; border-color: rgba(87,217,255,.28); animation-duration: 10s; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-core { position: absolute; inset: 34%; border: 1px solid var(--line-strong); display: grid; place-content: center; text-align: center; background: radial-gradient(circle, rgba(124,247,196,.15), rgba(6,10,15,.86) 66%); clip-path: polygon(50% 0, 92% 24%, 100% 68%, 68% 100%, 24% 92%, 0 50%, 16% 12%); transform-style: preserve-3d; }
.hero-core span { font: 700 clamp(42px, 6vw, 82px)/.85 var(--mono); letter-spacing: -.1em; }
.hero-core small { margin-top: 12px; color: var(--muted); font-size: 7px; }
.hero-core i { position: absolute; left: 50%; bottom: 16%; width: 8px; height: 8px; margin-left: -4px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 20px var(--acid); }
.hero-node { position: absolute; width: 145px; min-height: 70px; padding: 12px; text-align: left; border: 1px solid var(--line-strong); background: rgba(6,10,15,.8); backdrop-filter: blur(8px); cursor: pointer; transition: transform .3s, border-color .3s, background .3s; }
.hero-node:hover { transform: translateY(-5px); border-color: var(--acid); background: rgba(16,29,33,.88); }
.hero-node small { display: block; color: var(--acid); font-size: 7px; margin-bottom: 8px; }
.hero-node strong { font-size: 12px; }
.hero-node--one { left: 0; top: 18%; }
.hero-node--two { right: 0; top: 25%; }
.hero-node--three { right: 7%; bottom: 8%; }
.hero-node--four { left: 8%; bottom: 2%; }
.hero__footer { position: relative; z-index: 4; display: grid; grid-template-columns: repeat(3, minmax(120px, 1fr)) minmax(210px, 1.3fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero__footer > div, .hero__cta { min-height: 94px; padding: 20px 18px; border-right: 1px solid var(--line); }
.hero__footer strong { display: block; font: 700 30px/1 var(--mono); color: var(--acid); }
.hero__footer span { display: block; margin-top: 9px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.hero__cta { display: flex; align-items: center; justify-content: space-between; font: 700 11px/1 var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.hero__cta b { color: var(--acid); font-size: 18px; }

.manifest { padding-block: 150px 130px; }
.manifest__grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 9vw; margin-top: 40px; }
.manifest h2 { margin: 0; max-width: 980px; font-size: clamp(42px, 6vw, 92px); line-height: .98; letter-spacing: -.055em; font-weight: 500; }
.manifest__copy { align-self: end; }
.manifest__copy > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.manifest__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.manifest__tags span { padding: 9px 12px; border: 1px solid var(--line); color: #bdccca; font: 600 8px/1 var(--mono); text-transform: uppercase; letter-spacing: .1em; }
.manifest__rule { height: 1px; margin-top: 70px; background: var(--line); overflow: hidden; }
.manifest__rule span { display: block; width: 100%; height: 100%; transform: scaleX(.12); transform-origin: left; background: linear-gradient(90deg, var(--acid), var(--cyan), var(--pink)); }

.atlas { padding: 80px 0 130px; border-top: 1px solid var(--line); }
.atlas__head, .systems__head, .index-section__head, .experiences__head { display: grid; grid-template-columns: 1fr minmax(300px, 520px); gap: 60px; align-items: end; }
.atlas__head h2, .systems__head h2, .index-section__head h2, .experiences__head h2, .matrix__header h2, .about__copy h2, .contact-section h2 { margin: 16px 0 0; font-size: clamp(50px, 7vw, 110px); line-height: .9; letter-spacing: -.07em; font-weight: 500; }
.atlas__head > p, .systems__head > p, .experiences__head > p { margin: 0; color: var(--muted); line-height: 1.75; }
.atlas-shell { margin-top: 50px; border: 1px solid var(--line-strong); background: rgba(6,10,15,.72); backdrop-filter: blur(10px); }
.atlas-toolbar { display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid var(--line); }
.search-box { min-height: 68px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 0 18px; border-right: 1px solid var(--line); }
.search-box span { color: var(--acid); font: 700 9px/1 var(--mono); letter-spacing: .12em; }
.search-box input { width: 100%; border: 0; outline: 0; color: var(--text); background: transparent; font-size: 14px; }
.search-box input::placeholder { color: #61706f; }
kbd { min-width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line-strong); color: var(--muted); background: rgba(255,255,255,.02); font: 700 10px/1 var(--mono); }
.view-switch { display: flex; }
.view-button { min-width: 90px; border: 0; border-left: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; font: 700 9px/1 var(--mono); text-transform: uppercase; letter-spacing: .1em; }
.view-button.is-active { color: var(--bg); background: var(--acid); }
.category-strip { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; border-bottom: 1px solid var(--line); }
.category-strip::-webkit-scrollbar { display: none; }
.category-button { flex: 0 0 auto; min-height: 50px; padding: 0 18px; border: 0; border-right: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; font: 700 8px/1 var(--mono); text-transform: uppercase; letter-spacing: .1em; }
.category-button.is-active { color: var(--acid); background: rgba(124,247,196,.07); }
.atlas-stage { position: relative; min-height: 680px; overflow: hidden; background: radial-gradient(circle at 50% 48%, rgba(87,217,255,.07), transparent 45%); }
.atlas-stage::before, .atlas-stage::after { content: ""; position: absolute; pointer-events: none; }
.atlas-stage::before { inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 56px 56px; }
.atlas-stage::after { inset: 13% 22%; border: 1px dashed rgba(124,247,196,.1); border-radius: 50%; }
#atlas-canvas { position: absolute; inset: 0; width: 100%; height: 100%; cursor: crosshair; }
.atlas-crosshair { position: absolute; left: 50%; top: 50%; width: 60px; height: 60px; transform: translate(-50%, -50%); opacity: .2; pointer-events: none; }
.atlas-crosshair i { position: absolute; background: var(--acid); }
.atlas-crosshair i:first-child { left: 0; right: 0; top: 50%; height: 1px; }
.atlas-crosshair i:last-child { top: 0; bottom: 0; left: 50%; width: 1px; }
.atlas-hud { position: absolute; bottom: 18px; z-index: 2; display: grid; gap: 5px; padding: 12px 14px; border: 1px solid var(--line); background: rgba(6,10,15,.72); pointer-events: none; }
.atlas-hud small { color: var(--muted); font-size: 7px; }
.atlas-hud strong { font-size: 10px; color: var(--acid); }
.atlas-hud--left { left: 18px; }
.atlas-hud--right { right: 18px; }
.atlas-reset { position: absolute; right: 18px; top: 18px; z-index: 4; min-height: 36px; padding: 0 13px; border: 1px solid var(--line-strong); background: rgba(6,10,15,.78); color: var(--muted); cursor: pointer; font: 700 8px/1 var(--mono); letter-spacing: .1em; }
.atlas-reset:hover { color: var(--acid); border-color: var(--acid); }
.atlas-list { padding: 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.atlas-list[hidden] { display: none; }
.atlas-list-item { min-height: 110px; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 12px; padding: 14px; border: 1px solid var(--line); background: rgba(255,255,255,.018); cursor: pointer; text-align: left; }
.atlas-list-item:hover { border-color: var(--item-accent); background: color-mix(in srgb, var(--item-accent) 7%, transparent); }
.atlas-list-item__mark { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--item-accent); color: var(--item-accent); font: 700 10px/1 var(--mono); }
.atlas-list-item small { color: var(--muted); font-size: 7px; }
.atlas-list-item strong { display: block; margin-top: 6px; font-size: 13px; }
.atlas-list-item b { color: var(--item-accent); font-size: 14px; }

.systems { padding: 125px 0 140px; border-top: 1px solid var(--line); }
.featured-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; margin-top: 52px; }
.feature-card { position: relative; min-height: 420px; padding: 26px; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.035), transparent 55%), rgba(7,12,17,.72); overflow: hidden; cursor: pointer; }
.feature-card:nth-child(1), .feature-card:nth-child(4) { grid-column: span 7; }
.feature-card:nth-child(2), .feature-card:nth-child(3) { grid-column: span 5; }
.feature-card:nth-child(n+5) { grid-column: span 6; }
.feature-card::before { content: ""; position: absolute; width: 360px; height: 360px; right: -170px; top: -170px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--card-accent) 18%, transparent), transparent 70%); transition: transform .6s; }
.feature-card:hover::before { transform: scale(1.35); }
.feature-card__top { display: flex; justify-content: space-between; color: var(--muted); font: 700 8px/1 var(--mono); text-transform: uppercase; letter-spacing: .12em; }
.feature-card__top b { color: var(--card-accent); }
.feature-card h3 { position: relative; margin: 66px 0 20px; font-size: clamp(38px, 4.5vw, 76px); line-height: .88; letter-spacing: -.06em; font-weight: 500; }
.feature-card > p { position: relative; max-width: 660px; margin: 0; color: var(--muted); line-height: 1.7; }
.feature-flow { position: absolute; left: 26px; right: 26px; bottom: 26px; display: flex; align-items: center; gap: 6px; overflow: hidden; }
.feature-flow span { flex: 1; min-width: 0; padding: 10px 8px; border: 1px solid var(--line); color: #b6c5c3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: center; font: 600 7px/1 var(--mono); text-transform: uppercase; letter-spacing: .06em; }
.feature-flow i { flex: 0 0 12px; height: 1px; background: var(--card-accent); }

.index-section { padding: 100px 0 140px; border-top: 1px solid var(--line); }
.index-sort { display: flex; justify-self: end; border: 1px solid var(--line); }
.sort-button { min-height: 46px; padding: 0 16px; border: 0; border-right: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; font: 700 8px/1 var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.sort-button:last-child { border-right: 0; }
.sort-button.is-active { color: var(--bg); background: var(--acid); }
.project-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 44px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.project-card { position: relative; min-height: 330px; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(7,12,17,.62); cursor: pointer; overflow: hidden; transition: background .3s; }
.project-card:hover { background: color-mix(in srgb, var(--card-accent) 7%, rgba(7,12,17,.86)); }
.project-card::before { content: ""; position: absolute; right: -70px; bottom: -70px; width: 150px; height: 150px; border: 1px solid color-mix(in srgb, var(--card-accent) 38%, transparent); border-radius: 50%; transition: transform .5s; }
.project-card:hover::before { transform: scale(1.4); }
.project-card__meta { display: flex; justify-content: space-between; color: var(--muted); font: 700 7px/1 var(--mono); text-transform: uppercase; letter-spacing: .1em; }
.project-card__meta b { color: var(--card-accent); }
.project-card h3 { position: relative; margin: 64px 0 15px; font-size: 32px; line-height: .94; letter-spacing: -.05em; font-weight: 500; }
.project-card p { position: relative; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.project-card__bottom { position: absolute; left: 20px; right: 20px; bottom: 18px; display: flex; justify-content: space-between; align-items: end; }
.project-card__stack { display: flex; flex-wrap: wrap; gap: 5px; max-width: 76%; }
.project-card__stack span { color: #9bb0ad; font: 600 7px/1 var(--mono); text-transform: uppercase; letter-spacing: .06em; }
.project-card__arrow { color: var(--card-accent); font-size: 18px; }
.empty-state { padding: 70px; margin-top: 44px; border: 1px solid var(--line); text-align: center; }
.empty-state span { color: var(--pink); font: 700 13px/1 var(--mono); letter-spacing: .18em; }
.empty-state p { color: var(--muted); }
.empty-state button { min-height: 42px; padding: 0 16px; border: 1px solid var(--line-strong); background: transparent; cursor: pointer; color: var(--acid); font: 700 9px/1 var(--mono); }

.matrix { padding-block: 125px 145px; border-top: 1px solid var(--line); }
.matrix__header { display: grid; grid-template-columns: 1.2fr .55fr; gap: 90px; align-items: end; margin-top: 20px; }
.matrix__header h2 { max-width: 950px; }
.matrix__header p { color: var(--muted); line-height: 1.75; }
.matrix-table { margin-top: 60px; border-top: 1px solid var(--line-strong); }
.matrix-row { display: grid; grid-template-columns: .7fr 1.1fr 1.1fr; min-height: 88px; align-items: center; gap: 24px; border-bottom: 1px solid var(--line); font-size: 9px; }
.matrix-row strong { color: var(--acid); }
.matrix-row span { color: #b1c0be; }
.matrix-row--head { min-height: 52px; color: var(--muted); }
.matrix-row--head span { color: var(--muted); }

.experiences { padding: 125px 0 150px; border-top: 1px solid var(--line); overflow: hidden; }
.experience-rail { display: flex; gap: 14px; width: max-content; padding: 55px max(28px, calc((100vw - min(1500px, calc(100vw - 56px))) / 2)); }
.experience-card { position: relative; flex: 0 0 min(72vw, 940px); min-height: 540px; padding: 28px; border: 1px solid var(--line); background: var(--exp-bg); overflow: hidden; cursor: pointer; }
.experience-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 68% 42%, color-mix(in srgb, var(--exp-accent) 22%, transparent), transparent 32%), linear-gradient(125deg, transparent 45%, rgba(255,255,255,.035)); }
.experience-card::after { content: ""; position: absolute; width: 48%; aspect-ratio: 1; right: 6%; top: 13%; border: 1px solid color-mix(in srgb, var(--exp-accent) 52%, transparent); border-radius: 50%; box-shadow: 0 0 0 45px color-mix(in srgb, var(--exp-accent) 4%, transparent), 0 0 0 90px color-mix(in srgb, var(--exp-accent) 2%, transparent); animation: spin 18s linear infinite; }
.experience-card__meta { position: relative; z-index: 2; display: flex; justify-content: space-between; color: var(--muted); font: 700 8px/1 var(--mono); text-transform: uppercase; letter-spacing: .12em; }
.experience-card h3 { position: absolute; z-index: 2; left: 28px; bottom: 118px; max-width: 72%; margin: 0; font-size: clamp(56px, 8vw, 126px); line-height: .8; letter-spacing: -.075em; font-weight: 500; }
.experience-card p { position: absolute; z-index: 2; left: 30px; bottom: 30px; max-width: 560px; margin: 0; color: #afbfbd; line-height: 1.6; }
.experience-card__code { position: absolute; z-index: 2; right: 28px; bottom: 28px; color: var(--exp-accent); font: 700 12px/1 var(--mono); }

.about { padding: 140px 0; border-top: 1px solid var(--line); }
.about__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 7vw; align-items: center; }
.about__portrait { min-height: 650px; position: relative; display: grid; place-items: center; border: 1px solid var(--line); background: radial-gradient(circle at 50% 42%, rgba(124,247,196,.08), transparent 38%), rgba(7,12,17,.7); overflow: hidden; }
.about__portrait::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 52px 52px; opacity: .25; }
.portrait-field { position: relative; width: 62%; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(124,247,196,.3); border-radius: 50%; }
.portrait-field::before, .portrait-field::after { content: ""; position: absolute; border: 1px dashed var(--line-strong); border-radius: 50%; }
.portrait-field::before { inset: 13%; animation: spin 15s linear infinite; }
.portrait-field::after { inset: 28%; animation: spin 11s linear infinite reverse; }
.portrait-field span { font: 700 clamp(70px, 9vw, 138px)/1 var(--mono); letter-spacing: -.12em; color: transparent; -webkit-text-stroke: 1px var(--acid); }
.portrait-field i { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 18px var(--acid); }
.portrait-field i:nth-child(1) { top: 4%; left: 45%; }
.portrait-field i:nth-child(2) { right: 4%; top: 53%; background: var(--cyan); }
.portrait-field i:nth-child(3) { left: 11%; bottom: 18%; background: var(--pink); }
.portrait-field i:nth-child(4) { right: 24%; bottom: 9%; background: var(--yellow); }
.portrait-label { position: absolute; left: 22px; bottom: 22px; display: grid; gap: 6px; }
.portrait-label small { color: var(--acid); font-size: 7px; }
.portrait-label strong { font-size: 12px; letter-spacing: .1em; }
.about__copy h2 { max-width: 900px; }
.about__copy > p:not(.section-index) { max-width: 850px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.about__columns { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 48px; padding-top: 30px; border-top: 1px solid var(--line); }
.about__columns > div { display: grid; gap: 10px; }
.about__columns small { color: var(--acid); font-size: 7px; margin-bottom: 5px; }
.about__columns span { color: #b8c6c4; font-size: 13px; }
.about__links { display: flex; gap: 10px; margin-top: 50px; }
.about__links a { min-width: 145px; min-height: 52px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; border: 1px solid var(--line-strong); font: 700 9px/1 var(--mono); text-transform: uppercase; letter-spacing: .09em; }
.about__links b { color: var(--acid); }

.contact-section { padding-block: 140px 160px; border-top: 1px solid var(--line); }
.contact-section__grid { display: grid; grid-template-columns: 1.2fr .65fr; gap: 9vw; align-items: end; margin-top: 24px; }
.contact-section h2 { max-width: 1000px; }
.contact-section__grid p { margin: 0 0 36px; color: var(--muted); line-height: 1.8; }
.contact-button { min-height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; border: 1px solid var(--acid); background: var(--acid); color: var(--bg); font: 800 10px/1 var(--mono); text-transform: uppercase; letter-spacing: .1em; }
.contact-button b { font-size: 18px; }

.detail-drawer { position: fixed; right: 0; top: 0; bottom: 0; z-index: 80; width: min(620px, 100vw); background: rgba(7,12,17,.98); border-left: 1px solid var(--line-strong); transform: translateX(100%); transition: transform .65s cubic-bezier(.22,1,.36,1); }
.detail-drawer.is-open { transform: none; }
.drawer-backdrop { position: fixed; inset: 0; z-index: 70; background: rgba(0,0,0,.62); backdrop-filter: blur(5px); opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s; }
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.drawer-close { position: absolute; right: 18px; top: 18px; z-index: 2; width: 46px; height: 46px; border: 1px solid var(--line-strong); background: rgba(7,12,17,.9); cursor: pointer; }
.drawer-close span { position: absolute; left: 12px; right: 12px; top: 22px; height: 1px; background: var(--text); }
.drawer-close span:first-child { transform: rotate(45deg); }
.drawer-close span:last-child { transform: rotate(-45deg); }
.drawer-scroll { height: 100%; overflow-y: auto; padding: 90px 42px 42px; }
.drawer-topline { display: flex; justify-content: space-between; color: var(--muted); font-size: 8px; }
.drawer-status { color: var(--drawer-accent, var(--acid)); }
.drawer-accent { width: 100%; height: 1px; margin: 18px 0 48px; background: linear-gradient(90deg, var(--drawer-accent, var(--acid)), transparent); }
.drawer-domain { color: var(--drawer-accent, var(--acid)); font: 700 9px/1 var(--mono); text-transform: uppercase; letter-spacing: .12em; }
.drawer-title { margin: 18px 0 24px; font-size: clamp(52px, 7vw, 96px); line-height: .84; letter-spacing: -.07em; font-weight: 500; }
.drawer-summary { color: #c2cfcd; font-size: 17px; line-height: 1.65; }
.drawer-section { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); }
.drawer-section > small { color: var(--drawer-accent, var(--acid)); font-size: 7px; }
.drawer-section > p { color: var(--muted); line-height: 1.75; }
.architecture-flow { display: grid; margin-top: 18px; }
.architecture-flow span { position: relative; min-height: 48px; display: flex; align-items: center; padding: 0 13px; border: 1px solid var(--line); border-bottom: 0; color: #bac8c6; font: 600 8px/1 var(--mono); text-transform: uppercase; letter-spacing: .07em; }
.architecture-flow span:last-child { border-bottom: 1px solid var(--line); }
.architecture-flow span:not(:last-child)::after { content: "↓"; position: absolute; right: 14px; bottom: -11px; z-index: 2; color: var(--drawer-accent, var(--acid)); background: var(--panel-solid); padding: 3px; }
.drawer-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.drawer-tags span { padding: 9px 11px; border: 1px solid var(--line); color: #b9c7c5; font: 600 7px/1 var(--mono); text-transform: uppercase; }
.drawer-signals { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.drawer-signals li { display: flex; gap: 12px; color: #b8c6c4; font-size: 13px; }
.drawer-signals li::before { content: "■"; color: var(--drawer-accent, var(--acid)); font-size: 7px; margin-top: 5px; }
.drawer-link { min-height: 66px; margin-top: 50px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border: 1px solid var(--drawer-accent, var(--acid)); color: var(--drawer-accent, var(--acid)); font: 700 9px/1 var(--mono); text-transform: uppercase; letter-spacing: .1em; }
.drawer-link:hover { color: var(--bg); background: var(--drawer-accent, var(--acid)); }
.drawer-private { margin-top: 24px; color: var(--muted); font: 600 9px/1.7 var(--mono); text-transform: uppercase; }

.footer { border-top: 1px solid var(--line); overflow: hidden; }
.footer__marquee { width: max-content; padding: 26px 0; font-size: clamp(50px, 8vw, 118px); line-height: .8; letter-spacing: -.06em; color: transparent; -webkit-text-stroke: 1px rgba(237,247,243,.35); animation: marquee 24s linear infinite; }
.footer__marquee span { white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }
.footer__row { min-height: 92px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); color: var(--muted); font: 600 8px/1 var(--mono); text-transform: uppercase; letter-spacing: .09em; }
.footer__row a { color: var(--acid); }

@media (max-width: 1180px) {
  :root { --shell: calc(100vw - 36px); }
  .desktop-nav, .index-status { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .header-actions { grid-column: 2; }
  .menu-toggle { display: block; }
  .hero__orbit { right: -4vw; width: 50vw; }
  .project-grid { grid-template-columns: repeat(3, 1fr); }
  .atlas-list { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(n) { grid-column: span 6; }
}

@media (max-width: 899px) {
  :root { --shell: calc(100vw - 28px); }
  .cursor { display: none; }
  .site-header { height: 72px; padding: 0 14px; }
  .header-link { display: none; }
  .brand__mark { width: 42px; height: 42px; }
  .hero { min-height: auto; padding: 112px 14px 14px; display: block; }
  .hero__meta { grid-template-columns: 1fr; gap: 18px; }
  .hero__meta > p:last-child { justify-self: start; max-width: 480px; }
  .hero__title { margin: 90px 0 320px; font-size: clamp(65px, 20vw, 126px); line-height: .76; }
  .hero__line--outline { margin-left: 0; }
  .hero__orbit { top: 42%; right: 50%; width: min(86vw, 520px); transform: translateX(50%); }
  .hero-node { width: 118px; min-height: 60px; padding: 9px; }
  .hero-node strong { font-size: 10px; }
  .hero__footer { grid-template-columns: repeat(3, 1fr); }
  .hero__footer > div { min-height: 82px; padding: 14px 10px; }
  .hero__footer strong { font-size: 24px; }
  .hero__footer span { font-size: 7px; }
  .hero__cta { grid-column: 1 / -1; border-top: 1px solid var(--line); border-right: 0; min-height: 66px; }
  .manifest { padding-block: 100px 90px; }
  .manifest__grid, .matrix__header, .about__grid, .contact-section__grid { grid-template-columns: 1fr; gap: 40px; }
  .manifest h2 { font-size: clamp(38px, 10vw, 66px); }
  .atlas, .systems, .index-section, .experiences { padding-block: 90px; }
  .atlas__head, .systems__head, .index-section__head, .experiences__head { grid-template-columns: 1fr; gap: 28px; }
  .atlas__head h2, .systems__head h2, .index-section__head h2, .experiences__head h2, .matrix__header h2, .about__copy h2, .contact-section h2 { font-size: clamp(46px, 12vw, 76px); }
  .atlas-toolbar { grid-template-columns: 1fr; }
  .search-box { border-right: 0; border-bottom: 1px solid var(--line); }
  .view-switch { min-height: 50px; }
  .view-button { flex: 1; }
  .atlas-stage { min-height: 560px; }
  .atlas-hud--right { display: none; }
  .atlas-list { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .feature-card:nth-child(n) { grid-column: auto; min-height: 390px; }
  .index-section__head { align-items: start; }
  .index-sort { justify-self: start; max-width: 100%; overflow-x: auto; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .matrix { padding-block: 90px; }
  .matrix-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .matrix-row--head { display: none; }
  .experience-rail { overflow-x: auto; width: auto; padding-inline: 14px; scroll-snap-type: x mandatory; }
  .experience-card { flex-basis: 86vw; min-height: 520px; scroll-snap-align: start; }
  .about { padding-block: 90px; }
  .about__portrait { min-height: 520px; }
  .about__columns { grid-template-columns: 1fr; }
  .contact-section { padding-block: 90px 110px; }
  .footer__row { min-height: 120px; flex-direction: column; justify-content: center; gap: 14px; text-align: center; }
}

@media (max-width: 560px) {
  .brand__copy small { display: none; }
  .hero__title { margin-bottom: 280px; }
  .hero__footer { grid-template-columns: 1fr 1fr; }
  .hero__footer > div:nth-child(3) { grid-column: 1 / -1; }
  .hero__orbit { top: 44%; }
  .hero-node--one { left: -2%; }
  .hero-node--two { right: -2%; }
  .hero-node--three { right: 0; }
  .hero-node--four { left: 0; }
  .atlas-stage { min-height: 510px; }
  .atlas-reset { top: 10px; right: 10px; }
  .atlas-hud { left: 10px; bottom: 10px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 290px; }
  .experience-card { min-height: 470px; padding: 20px; }
  .experience-card h3 { left: 20px; bottom: 130px; max-width: 90%; }
  .experience-card p { left: 20px; right: 20px; bottom: 24px; max-width: calc(100% - 40px); }
  .experience-card__code { display: none; }
  .about__links { flex-direction: column; }
  .drawer-scroll { padding: 82px 22px 30px; }
  .drawer-title { font-size: 54px; }
}

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

@media (min-width: 900px) {
  .experience-rail {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    cursor: grab;
  }
  .experience-rail::-webkit-scrollbar { display: none; }
  .experience-rail.is-dragging { cursor: grabbing; scroll-behavior: auto; }
}
