:root {
  --ink: #050505;
  --ink-soft: #111213;
  --paper: #f2f3ed;
  --paper-2: #e8e9e2;
  --paper-3: #dcded5;
  --blue: #5357ff;
  --blue-soft: #7779ff;
  --orange: #ff5a36;
  --acid: #d9ff52;
  --violet: #8a65ff;
  --grey: #727670;
  --line: rgba(5, 5, 5, 0.16);
  --line-light: rgba(255, 255, 255, 0.16);
  --display: "Manrope", Arial, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --page: clamp(18px, 2.35vw, 44px);
}

* { box-sizing: border-box; }
html { background: var(--paper); scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.is-locked { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { color: inherit; }
button { border: 0; }
a { text-decoration: none; }
img, svg, canvas { display: block; max-width: 100%; }
::selection { background: var(--blue); color: #fff; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 20px; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: .045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' 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='.8'/%3E%3C/svg%3E");
}
.scroll-progress { position: fixed; left: 0; right: 0; top: 0; z-index: 500; height: 2px; background: transparent; }
.scroll-progress i { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--blue), var(--orange)); }

.boot {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 24px;
  padding: 26px 30px;
  background: var(--ink);
  color: var(--paper);
  clip-path: inset(0 0 0 0);
  transition: clip-path 1.05s var(--ease), visibility 0s 1.05s;
}
.boot.is-hidden { clip-path: inset(0 0 100% 0); visibility: hidden; }
.boot__header, .boot__footer { display: flex; justify-content: space-between; font: 500 10px/1 var(--mono); letter-spacing: .09em; }
.boot__word { align-self: end; overflow: hidden; font-size: clamp(72px, 17vw, 270px); font-weight: 800; line-height: .72; letter-spacing: -.085em; }
.boot__footer { align-items: flex-end; }
.boot__footer span:last-child { color: var(--orange); }
.boot__line { height: 2px; overflow: hidden; background: rgba(255,255,255,.18); }
.boot__line i { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--blue), var(--orange)); }

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 34px;
  height: 34px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s, border-color .25s;
}
.cursor span { position: absolute; left: 50%; top: 50%; width: 4px; height: 4px; border-radius: 50%; background: #fff; transform: translate(-50%, -50%); }
.cursor.is-active { width: 58px; height: 58px; background: #fff; border-color: #fff; }

.header {
  position: fixed;
  z-index: 300;
  top: 14px;
  left: 14px;
  right: 14px;
  height: 66px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 12px 0 14px;
  border: 1px solid rgba(5,5,5,.18);
  background: rgba(242,243,237,.82);
  backdrop-filter: blur(18px);
  transition: transform .5s var(--ease), background .35s;
}
.header.is-hidden { transform: translateY(-110%); }
.brand { display: inline-flex; width: max-content; align-items: center; gap: 10px; font-size: 13px; font-weight: 800; letter-spacing: -.035em; }
.brand img { width: 36px; height: 36px; }
.nav { display: flex; gap: clamp(18px, 2.2vw, 38px); }
.nav a { position: relative; font: 500 10px/1 var(--mono); letter-spacing: .04em; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--ink); transition: right .35s var(--ease); }
.nav a:hover::after { right: 0; }
.header__right { justify-self: end; display: flex; align-items: center; gap: 9px; }
.preview-chip { display: inline-flex; align-items: center; gap: 7px; padding: 0 10px; height: 34px; border: 1px solid var(--line); font: 500 8px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.preview-chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,90,54,.12); }
.wallet-button {
  height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  background: transparent;
  border: 1px solid var(--ink);
  cursor: pointer;
  font: 500 9px/1 var(--mono);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.wallet-button__state { width: 7px; height: 7px; border-radius: 50%; background: #a9ada5; }
.wallet-button.is-loading .wallet-button__state { background: var(--orange); animation: blink 1s infinite; }
.wallet-button.is-connected .wallet-button__state { background: var(--acid); box-shadow: 0 0 0 4px rgba(217,255,82,.16); }
.primary-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 0 12px 0 18px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: transform .35s var(--ease), background .25s, color .25s;
}
.primary-button:hover { transform: translateY(-2px); background: var(--blue); }
.primary-button b { width: 31px; height: 31px; display: grid; place-items: center; background: var(--paper); color: var(--ink); font-size: 15px; font-weight: 500; }
.primary-button--header { min-height: 40px; gap: 16px; padding-left: 14px; font-size: 10px; }
.primary-button--header b { width: 26px; height: 26px; }
.primary-button--wide { width: 100%; min-height: 62px; }
.primary-button--light { background: var(--paper); color: var(--ink); }
.primary-button--light b { background: var(--blue); color: #fff; }
.primary-button--light:hover { background: var(--acid); color: var(--ink); }
.menu-button { display: none; width: 42px; height: 40px; position: relative; background: var(--ink); cursor: pointer; }
.menu-button i { position: absolute; left: 12px; right: 12px; height: 1px; background: #fff; transition: transform .3s, top .3s; }
.menu-button i:first-child { top: 16px; }
.menu-button i:last-child { top: 23px; }
.menu-button.is-active i:first-child { top: 20px; transform: rotate(45deg); }
.menu-button.is-active i:last-child { top: 20px; transform: rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 250; display: flex; flex-direction: column; padding: 110px 18px 24px; background: var(--ink); color: var(--paper); visibility: hidden; clip-path: inset(0 0 100% 0); transition: clip-path .7s var(--ease), visibility 0s .7s; }
.mobile-menu.is-open { visibility: visible; clip-path: inset(0 0 0 0); transition-delay: 0s; }
.mobile-menu__meta { font: 500 9px/1 var(--mono); color: #8b8e88; }
.mobile-menu nav { margin-top: 50px; }
.mobile-menu nav a { display: grid; grid-template-columns: 40px 1fr; align-items: end; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-size: clamp(34px, 12vw, 58px); font-weight: 700; letter-spacing: -.06em; }
.mobile-menu nav span { align-self: center; font: 500 9px/1 var(--mono); color: var(--blue-soft); }
.mobile-menu > button { margin-top: auto; height: 56px; background: var(--paper); color: var(--ink); font-weight: 700; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 112px var(--page) 0;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .9; }
.hero__grid { position: absolute; inset: 0; opacity: .42; background-image: linear-gradient(to right, rgba(5,5,5,.07) 1px, transparent 1px), linear-gradient(to bottom, rgba(5,5,5,.07) 1px, transparent 1px); background-size: clamp(54px, 5.6vw, 108px) clamp(54px, 5.6vw, 108px); mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 82%); }
.hero__meta { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto 1fr; padding-top: 10px; font: 500 9px/1.2 var(--mono); letter-spacing: .085em; }
.hero__meta span:nth-child(2) { justify-self: center; }
.hero__meta span:last-child { justify-self: end; color: var(--grey); }
.hero__title { position: absolute; z-index: 2; left: var(--page); right: var(--page); top: 20.5%; margin: 0; font-size: clamp(78px, 11.7vw, 214px); font-weight: 800; line-height: .79; letter-spacing: -.088em; }
.hero-line { display: block; height: .87em; overflow: hidden; }
.hero-line em { display: block; font-style: normal; }
.hero-line--offset { padding-left: 15.6%; }
.hero-line--outline { padding-left: 36.2%; color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.hero__signal { position: absolute; z-index: 3; display: flex; align-items: center; gap: 7px; font: 500 8px/1 var(--mono); letter-spacing: .08em; color: var(--grey); }
.hero__signal i { width: 5px; height: 5px; background: var(--blue); }
.hero__signal--one { left: 6%; top: 57%; }
.hero__signal--two { right: 31%; top: 35%; }
.hero__signal--three { right: 7%; top: 61%; }
.hero__footer { position: absolute; z-index: 3; left: var(--page); right: var(--page); bottom: 63px; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.hero__description { width: min(620px, 48vw); display: grid; grid-template-columns: 1fr 1.25fr; gap: 36px; }
.hero__description p { margin: 0; font-size: clamp(13px, .95vw, 17px); line-height: 1.55; letter-spacing: -.015em; }
.hero__description p:first-child { font-weight: 700; }
.hero__description p:last-child { color: #5d615b; }
.hero__actions { display: flex; align-items: center; gap: 24px; }
.line-link { position: relative; display: flex; align-items: center; gap: 28px; font-size: 11px; font-weight: 700; white-space: nowrap; }
.line-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 1px; background: var(--ink); transform-origin: right; transition: transform .35s var(--ease); }
.line-link:hover::after { transform: scaleX(.25); }
.hero__rail { position: absolute; z-index: 4; left: 0; right: 0; bottom: 0; height: 28px; overflow: hidden; border-top: 1px solid var(--ink); background: var(--ink); color: var(--paper); }
.hero__rail > div { width: max-content; height: 100%; display: flex; align-items: center; animation: marquee 30s linear infinite; }
.hero__rail span { padding: 0 18px; font: 500 8px/1 var(--mono); letter-spacing: .08em; }
.hero__rail i { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }

.section-label { display: flex; align-items: center; gap: 13px; font: 500 9px/1 var(--mono); letter-spacing: .075em; }
.section-label span { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid var(--ink); }
.section-label p { margin: 0; }
.section-label--light span { border-color: rgba(255,255,255,.45); }
.kicker { margin: 0; font: 500 9px/1.4 var(--mono); letter-spacing: .1em; color: var(--blue); }
.section-copy { max-width: 610px; margin: 30px 0 0 auto; font-size: clamp(15px, 1.15vw, 20px); line-height: 1.55; color: #60645e; letter-spacing: -.025em; }

.clarity { padding: 120px var(--page) 140px; }
.clarity__heading { max-width: 1260px; margin: 100px auto 90px; }
.clarity__heading h2 { margin: 20px 0 0; font-size: clamp(62px, 7.8vw, 146px); font-weight: 700; line-height: .9; letter-spacing: -.075em; }
.clarity__heading h2 span { color: transparent; -webkit-text-stroke: 1px var(--ink); }
.flow { display: grid; grid-template-columns: minmax(300px, .7fr) minmax(520px, 1.3fr); border: 1px solid var(--ink); min-height: 760px; }
.flow__nav { border-right: 1px solid var(--ink); }
.flow-step { width: 100%; min-height: 25%; display: grid; grid-template-columns: 54px 1fr 30px; gap: 12px; align-items: center; padding: 26px 24px; background: transparent; text-align: left; border-bottom: 1px solid var(--ink); cursor: pointer; transition: background .35s var(--ease), color .35s; }
.flow-step:last-child { border-bottom: 0; }
.flow-step:hover, .flow-step.is-active { background: var(--ink); color: var(--paper); }
.flow-step > span { font: 500 10px/1 var(--mono); color: var(--blue-soft); }
.flow-step div { display: flex; flex-direction: column; gap: 8px; }
.flow-step b { font-size: clamp(24px, 2.1vw, 39px); line-height: 1; letter-spacing: -.05em; }
.flow-step small { max-width: 230px; font-size: 12px; line-height: 1.45; color: var(--grey); }
.flow-step i { font-style: normal; opacity: .35; }
.flow__visual { position: relative; min-width: 0; overflow: hidden; background: var(--ink-soft); color: var(--paper); }
.flow__visual::before { content: ""; position: absolute; inset: 0; opacity: .27; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 52px 52px; }
.flow__topline { position: absolute; z-index: 4; left: 22px; right: 22px; top: 20px; display: flex; justify-content: space-between; font: 500 8px/1 var(--mono); letter-spacing: .08em; color: #9da09a; }
.flow-orbit { position: absolute; width: min(78%, 720px); aspect-ratio: 1; left: 50%; top: 44%; transform: translate(-50%, -50%); overflow: visible; }
.orbit { fill: none; stroke: rgba(255,255,255,.12); stroke-width: 1; }
.orbit--middle { stroke-dasharray: 5 9; animation: orbit 28s linear infinite; transform-origin: center; }
.orbit--inner { stroke: rgba(83,87,255,.35); stroke-dasharray: 2 7; animation: orbitReverse 20s linear infinite; transform-origin: center; }
.orbit-progress { fill: none; stroke: url(#flowGradient); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 1696; stroke-dashoffset: 1272; transform: rotate(-90deg); transform-origin: center; transition: stroke-dashoffset .85s var(--ease); filter: url(#flowGlow); }
.orbit-node circle { fill: var(--ink-soft); stroke: rgba(255,255,255,.28); transition: fill .35s, stroke .35s, transform .35s; }
.orbit-node text { fill: #9da09a; font: 500 11px var(--mono); text-anchor: middle; }
.orbit-node.is-active circle { fill: var(--blue); stroke: var(--paper); transform: scale(1.12); }
.orbit-node.is-active text { fill: #fff; }
.orbit-core circle { fill: var(--paper); stroke: var(--blue); stroke-width: 1; }
.flow__readout { position: absolute; z-index: 5; left: 50%; bottom: 88px; width: min(520px, calc(100% - 50px)); padding: 19px 22px; transform: translateX(-50%); border: 1px solid rgba(255,255,255,.22); background: rgba(5,5,5,.7); backdrop-filter: blur(14px); }
.flow__readout small { font: 500 8px/1 var(--mono); letter-spacing: .09em; color: var(--blue-soft); }
.flow__readout strong { display: block; margin-top: 10px; font-size: clamp(20px, 2vw, 32px); line-height: 1.05; letter-spacing: -.045em; }
.flow__readout p { max-width: 470px; margin: 10px 0 0; color: #a7aaa4; font-size: 12px; line-height: 1.5; }
.flow__status { position: absolute; z-index: 5; left: 22px; right: 22px; bottom: 19px; display: flex; justify-content: space-between; font: 500 8px/1 var(--mono); color: #8b8f89; }
.flow__status span:first-child { display: flex; align-items: center; gap: 7px; }
.flow__status i { width: 6px; height: 6px; background: var(--orange); }

.universe { padding: 120px var(--page) 140px; background: var(--ink); color: var(--paper); }
.universe__head { display: grid; grid-template-columns: 1fr 2.1fr; gap: 40px; }
.universe__head h2 { margin: 0; font-size: clamp(54px, 7vw, 132px); line-height: .91; letter-spacing: -.075em; }
.universe__head h2 span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.7); }
.universe__head > div:last-child > p { max-width: 620px; margin: 28px 0 0 auto; color: #a7aaa4; font-size: 15px; line-height: 1.55; }
.universe__toolbar { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin: 86px 0 22px; padding-bottom: 14px; border-bottom: 1px solid var(--line-light); }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 7px; }
.filter-tabs button { min-height: 34px; padding: 0 12px; border: 1px solid rgba(255,255,255,.25); background: transparent; color: #aeb1ab; cursor: pointer; font: 500 8px/1 var(--mono); letter-spacing: .05em; text-transform: uppercase; transition: background .25s, color .25s, border-color .25s; }
.filter-tabs button:hover, .filter-tabs button.is-active { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.universe__toolbar > span { font: 500 8px/1 var(--mono); color: #777b75; }
.asset-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.2); }
.asset-card { min-height: 530px; display: flex; flex-direction: column; padding: 18px; background: #101112; color: var(--paper); transition: opacity .4s, transform .5s var(--ease); overflow: hidden; }
.asset-card.is-hidden { display: none; }
.asset-card:hover { transform: translateY(-5px); }
.asset-card--featured { grid-column: span 2; min-height: 590px; background: var(--paper); color: var(--ink); }
.asset-card--blue { background: var(--blue); }
.asset-card--orange { background: var(--orange); color: var(--ink); }
.asset-card--paper { background: #dfe1d8; color: var(--ink); }
.asset-card--dark { background: #121315; }
.asset-card--acid { background: var(--acid); color: var(--ink); }
.asset-card--violet { background: var(--violet); }
.asset-card--wire { background: transparent; }
.asset-card__top { display: flex; justify-content: space-between; gap: 16px; font: 500 8px/1.2 var(--mono); letter-spacing: .07em; }
.status-tag { padding: 7px 8px; border: 1px solid currentColor; white-space: nowrap; }
.asset-card__main { flex: 1; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 45px 12px 25px; }
.asset-card__main small, .asset-card__body small { font: 500 8px/1 var(--mono); letter-spacing: .09em; opacity: .62; }
.asset-card h3 { margin: 8px 0 0; font-size: clamp(46px, 5vw, 92px); line-height: .86; letter-spacing: -.075em; }
.asset-card__main p, .asset-card__body p { max-width: 440px; margin: 20px 0 0; font-size: 13px; line-height: 1.5; opacity: .72; }
.seven-mark { width: clamp(150px, 17vw, 270px); aspect-ratio: 1; display: grid; place-items: center; position: relative; border: 1px solid var(--ink); border-radius: 50%; }
.seven-mark::before, .seven-mark::after { content: ""; position: absolute; inset: 13%; border: 1px dashed rgba(5,5,5,.3); border-radius: 50%; animation: orbit 18s linear infinite; }
.seven-mark::after { inset: 28%; animation-direction: reverse; }
.seven-mark strong { font-size: clamp(70px, 9vw, 145px); line-height: .8; letter-spacing: -.09em; }
.seven-mark span { position: absolute; bottom: 22%; font: 500 8px/1 var(--mono); }
.ticker-cloud { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 12px 24px; }
.ticker-cloud span { padding: 9px 12px; border: 1px solid var(--ink); font: 500 9px/1 var(--mono); }
.asset-card__glyph { flex: 1; display: grid; place-items: center; padding-top: 20px; font-size: clamp(110px, 13vw, 220px); font-weight: 500; line-height: 1; letter-spacing: -.09em; }
.asset-card__glyph--word { font-size: clamp(90px, 10vw, 170px); font-weight: 800; }
.asset-card__body { padding: 14px 6px 28px; }
.asset-card__body h3 { font-size: clamp(42px, 4vw, 72px); }
.asset-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 15px; border-top: 1px solid currentColor; font: 500 8px/1 var(--mono); }
.asset-card__foot button { padding: 0; background: transparent; color: inherit; cursor: pointer; font: inherit; }
.asset-card__foot button:hover { text-decoration: underline; }

.studio { padding: 120px var(--page) 140px; }
.studio__head { display: grid; grid-template-columns: 1fr 2.1fr; gap: 40px; }
.studio__head h2 { margin: 0; font-size: clamp(54px, 7vw, 132px); line-height: .91; letter-spacing: -.075em; }
.studio__head h2 span { color: var(--blue); }
.studio__head > div:last-child > p { max-width: 590px; margin: 28px 0 0 auto; color: #666a64; font-size: 15px; line-height: 1.55; }
.composer { display: grid; grid-template-columns: minmax(360px, .78fr) minmax(520px, 1.22fr); margin-top: 84px; border: 1px solid var(--ink); }
.composer__controls { min-width: 0; padding: 30px; border-right: 1px solid var(--ink); }
.control-group { padding: 0 0 30px; margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.control-heading { display: grid; grid-template-columns: 36px 1fr; gap: 10px; margin-bottom: 24px; }
.control-heading > span { font: 500 9px/1 var(--mono); color: var(--blue); }
.control-heading div { display: flex; flex-direction: column; gap: 5px; }
.control-heading b { font-size: 16px; letter-spacing: -.025em; }
.control-heading small { color: var(--grey); font-size: 11px; line-height: 1.4; }
.segmented { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid var(--ink); }
.segmented button { height: 45px; background: transparent; cursor: pointer; font-size: 11px; font-weight: 700; }
.segmented button + button { border-left: 1px solid var(--ink); }
.segmented button.is-active { background: var(--ink); color: #fff; }
.select-field { position: relative; display: block; }
.select-field > span { display: block; margin-bottom: 9px; font: 500 8px/1 var(--mono); letter-spacing: .08em; }
.select-field select { width: 100%; height: 58px; appearance: none; padding: 0 45px 0 14px; border: 1px solid var(--ink); border-radius: 0; background: transparent; outline: none; font-size: 13px; font-weight: 700; }
.select-field i { position: absolute; right: 15px; bottom: 20px; pointer-events: none; font-style: normal; }
.range-field { display: block; padding: 17px 0; border-top: 1px solid var(--line); }
.range-field > span { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; font: 500 8px/1 var(--mono); letter-spacing: .07em; }
.range-field b { font-size: 15px; }
input[type="range"] { width: 100%; height: 3px; appearance: none; background: linear-gradient(90deg, var(--blue) 0 50%, var(--paper-3) 50% 100%); outline: none; }
input[type="range"]::-webkit-slider-thumb { width: 16px; height: 16px; appearance: none; border: 3px solid var(--paper); border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 1px var(--ink); cursor: grab; }
.composer__preview { min-width: 0; min-height: 760px; position: relative; display: flex; flex-direction: column; padding: 26px; overflow: hidden; background: var(--ink); color: var(--paper); }
.composer__preview::before { content: ""; position: absolute; inset: 0; opacity: .32; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 48px 48px; }
.preview-top, .preview-title, .allocation-visual, .preview-note { position: relative; z-index: 2; }
.preview-top { display: flex; justify-content: space-between; font: 500 8px/1 var(--mono); letter-spacing: .08em; color: #939790; }
.preview-top span:last-child { display: flex; align-items: center; gap: 7px; }
.preview-top i { width: 6px; height: 6px; background: var(--orange); }
.preview-title { margin-top: 80px; }
.preview-title small { font: 500 8px/1 var(--mono); letter-spacing: .09em; color: var(--blue-soft); }
.preview-title strong { display: block; margin-top: 8px; font-size: clamp(50px, 6vw, 108px); line-height: .88; letter-spacing: -.08em; overflow-wrap: anywhere; }
.preview-title p { max-width: 510px; color: #a5a8a2; font-size: 13px; line-height: 1.5; }
.allocation-visual { flex: 1; display: grid; grid-template-columns: minmax(230px, .8fr) 1.2fr; align-items: center; gap: 48px; }
.allocation-dial { position: relative; width: min(100%, 340px); aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--blue) 0 80%, var(--orange) 80% 90%, var(--paper) 90% 100%); box-shadow: 0 0 80px rgba(83,87,255,.16); }
.allocation-dial::before { content: ""; position: absolute; width: 72%; aspect-ratio: 1; border-radius: 50%; background: var(--ink); border: 1px solid rgba(255,255,255,.18); }
.allocation-dial > div { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.allocation-dial small, .allocation-dial span { font: 500 8px/1 var(--mono); color: #8e928c; }
.allocation-dial strong { margin: 10px 0; font-size: clamp(46px, 5vw, 80px); line-height: .8; letter-spacing: -.07em; }
.allocation-copy { border-top: 1px solid rgba(255,255,255,.18); }
.allocation-copy > div { display: flex; justify-content: space-between; gap: 20px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.18); font-size: 11px; }
.allocation-copy span { display: flex; align-items: center; gap: 9px; color: #aaada7; }
.allocation-copy b { font-size: 11px; }
.swatch { width: 8px; height: 8px; }
.swatch--blue { background: var(--blue); }
.swatch--orange { background: var(--orange); }
.swatch--ink { background: var(--paper); }
.preview-note { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 18px 0 0; border-top: 1px solid rgba(255,255,255,.2); }
.preview-note span { font: 500 8px/1 var(--mono); color: var(--blue-soft); }
.preview-note p { margin: 0; font-size: 11px; line-height: 1.5; color: #a5a8a2; }


.basket-spec { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 12px 20px; }
.basket-spec span { padding: 8px 10px; border: 1px solid rgba(5,5,5,.28); background: rgba(83,87,255,.06); font: 500 8px/1 var(--mono); letter-spacing: .055em; }
.mandate-mini { margin-top: 12px; border: 1px solid var(--line); background: var(--paper-2); }
.mandate-mini > div:first-child { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px 12px; border-bottom: 1px solid var(--line); }
.mandate-mini > div:first-child span { font: 500 7px/1 var(--mono); color: var(--blue); letter-spacing: .08em; }
.mandate-mini > div:first-child b { font-size: 11px; text-align: right; }
.mandate-mini__allocations { display: grid; grid-template-columns: repeat(auto-fit, minmax(70px, 1fr)); }
.mandate-mini__allocations > span { min-width: 0; display: flex; flex-direction: column; gap: 4px; padding: 9px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.mandate-mini__allocations b { font: 500 8px/1 var(--mono); }
.mandate-mini__allocations small { color: var(--grey); font: 500 7px/1 var(--mono); }
.mandate-mini > p { margin: 0; padding: 11px 12px; color: #676b65; font-size: 9px; line-height: 1.45; }
.segmented--market button { padding: 0 7px; font: 600 9px/1.2 var(--mono); letter-spacing: -.015em; }

.architecture { display: grid; grid-template-columns: .72fr 1.28fr; min-height: 920px; padding: 120px var(--page); background: var(--ink); color: var(--paper); }
.architecture__copy { align-self: center; padding-right: 50px; }
.architecture__copy h2 { margin: 72px 0 26px; font-size: clamp(55px, 6vw, 112px); line-height: .88; letter-spacing: -.075em; }
.architecture__copy h2 span { color: var(--blue-soft); }
.architecture__copy > p { max-width: 520px; color: #a3a69f; font-size: 14px; line-height: 1.55; }
.architecture__status { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 42px; font: 500 8px/1 var(--mono); }
.architecture__status span { display: flex; align-items: center; gap: 7px; }
.architecture__status i { width: 6px; height: 6px; background: var(--acid); }
.architecture__status span:last-child i { background: var(--orange); }
.architecture-map { position: relative; min-height: 680px; overflow: hidden; border: 1px solid rgba(255,255,255,.22); background: #0e0f11; }
.architecture-map__grid { position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 48px 48px; }
.architecture-map > svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.architecture-line { fill: none; stroke: rgba(255,255,255,.25); stroke-width: 1.5; stroke-dasharray: 5 6; }
.module { position: absolute; z-index: 2; width: 190px; min-height: 128px; display: grid; grid-template-columns: 34px 1fr; gap: 10px; padding: 14px; border: 1px solid rgba(255,255,255,.28); background: rgba(14,15,17,.88); backdrop-filter: blur(12px); }
.module > span { font: 500 9px/1 var(--mono); color: var(--blue-soft); }
.module div { display: flex; flex-direction: column; }
.module small { font: 500 7px/1 var(--mono); color: #777c75; }
.module b { margin-top: 8px; font-size: 12px; line-height: 1.15; }
.module p { margin: 8px 0 0; color: #8b8f88; font-size: 9px; line-height: 1.4; }
.module em { grid-column: 2; width: max-content; margin-top: 8px; padding: 4px 6px; border: 1px solid var(--blue-soft); color: var(--blue-soft); font: normal 500 7px/1 var(--mono); }
.module--pool { left: 4%; top: 41%; }
.module--hook { left: 33%; top: 11%; }
.module--vault { right: 6%; top: 41%; }
.module--engine { right: 3%; bottom: 7%; }
.module--recycle { left: 29%; bottom: 6%; }
.architecture-packet { position: absolute; z-index: 3; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 14px var(--blue); }
.packet-1 { left: 19%; top: 47%; animation: packetOne 5s linear infinite; }
.packet-2 { left: 44%; top: 17%; background: var(--orange); box-shadow: 0 0 14px var(--orange); animation: packetTwo 5.6s 1.4s linear infinite; }
.packet-3 { right: 18%; top: 47%; background: var(--acid); box-shadow: 0 0 14px var(--acid); animation: packetThree 5.2s 2.2s linear infinite; }

.principles { border-top: 1px solid var(--ink); background: var(--paper); }
.principles__rail { height: 126px; overflow: hidden; border-bottom: 1px solid var(--ink); }
.principles__rail > div { width: max-content; height: 100%; display: flex; align-items: center; animation: marquee 28s linear infinite; }
.principles__rail span { padding: 0 25px; font-size: clamp(46px, 6vw, 92px); font-weight: 800; line-height: 1; letter-spacing: -.065em; }
.principles__rail i { width: 14px; height: 14px; border-radius: 50%; background: var(--orange); }
.principles__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.principles__grid article { min-height: 330px; padding: 28px; border-right: 1px solid var(--ink); }
.principles__grid article:last-child { border-right: 0; }
.principles__grid span { font: 500 9px/1 var(--mono); color: var(--blue); }
.principles__grid h3 { margin: 110px 0 15px; font-size: clamp(24px, 2.2vw, 38px); line-height: 1; letter-spacing: -.05em; }
.principles__grid p { margin: 0; color: #636760; font-size: 12px; line-height: 1.5; }

.final-cta { position: relative; min-height: 880px; overflow: hidden; display: grid; place-items: center; padding: 100px var(--page); background: var(--blue); color: #fff; }
#final-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.final-cta__meta { position: absolute; z-index: 2; left: var(--page); right: var(--page); top: 28px; display: flex; justify-content: space-between; font: 500 9px/1 var(--mono); letter-spacing: .08em; }
.final-cta__content { position: relative; z-index: 2; text-align: center; }
.final-cta__content > p { margin: 0 0 28px; font: 500 9px/1 var(--mono); letter-spacing: .1em; }
.final-cta h2 { margin: 0; font-size: clamp(88px, 13vw, 230px); font-weight: 800; line-height: .75; letter-spacing: -.09em; }
.final-cta h2 span { color: transparent; -webkit-text-stroke: 1.5px #fff; }
.final-cta__content > div { display: flex; justify-content: center; gap: 10px; margin-top: 55px; }
.ghost-button { min-height: 54px; padding: 0 20px; border: 1px solid rgba(255,255,255,.7); background: transparent; color: #fff; cursor: pointer; font-size: 11px; font-weight: 700; }

.footer { display: grid; grid-template-columns: 1fr 1.4fr .7fr; gap: 42px; padding: 54px var(--page) 28px; background: var(--ink); color: var(--paper); }
.brand--footer { align-self: start; }
.footer > p { max-width: 490px; margin: 0; color: #92968f; font-size: 12px; line-height: 1.55; }
.footer nav { display: flex; flex-direction: column; gap: 9px; font: 500 9px/1 var(--mono); }
.footer > div { grid-column: 1 / -1; display: flex; justify-content: space-between; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.15); font: 500 8px/1 var(--mono); color: #71756f; }

.launcher { position: fixed; inset: 0; z-index: 2000; visibility: hidden; pointer-events: none; }
.launcher.is-open { visibility: visible; pointer-events: auto; }
.launcher__backdrop { position: absolute; inset: 0; background: rgba(5,5,5,.72); opacity: 0; transition: opacity .45s; backdrop-filter: blur(12px); }
.launcher.is-open .launcher__backdrop { opacity: 1; }
.launcher__panel { position: absolute; inset: 20px; display: grid; grid-template-rows: 70px 2px 1fr 72px; overflow: hidden; background: var(--paper); color: var(--ink); transform: translateY(105%); transition: transform .8s var(--ease); }
.launcher.is-open .launcher__panel { transform: translateY(0); }
.launcher__header { display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid var(--line); }
.launcher__header > div { display: flex; align-items: center; gap: 10px; }
.launcher__header img { width: 36px; }
.launcher__header span { font-size: 13px; font-weight: 800; }
.launcher__header small { margin-left: 8px; padding: 6px 7px; border: 1px solid var(--orange); color: var(--orange); font: 500 7px/1 var(--mono); }
.launcher__header > button { width: 42px; height: 42px; background: var(--ink); color: #fff; cursor: pointer; font-size: 23px; font-weight: 300; }
.launcher__progress { background: var(--paper-3); }
.launcher__progress i { display: block; width: 25%; height: 100%; background: linear-gradient(90deg, var(--blue), var(--orange)); transition: width .5s var(--ease); }
.launcher__layout { min-height: 0; display: grid; grid-template-columns: 290px 1fr; }
.launcher__aside { display: flex; flex-direction: column; min-height: 0; padding: 26px 22px; border-right: 1px solid var(--line); }
.launcher__aside > span { font: 500 8px/1 var(--mono); letter-spacing: .09em; }
.launcher__aside ol { list-style: none; padding: 0; margin: 40px 0; }
.launcher__aside li { display: grid; grid-template-columns: 38px 1fr; gap: 8px; padding: 15px 0; border-top: 1px solid var(--line); opacity: .35; }
.launcher__aside li:last-child { border-bottom: 1px solid var(--line); }
.launcher__aside li.is-active, .launcher__aside li.is-done { opacity: 1; }
.launcher__aside li > b { color: var(--blue); font: 500 9px/1 var(--mono); }
.launcher__aside li div { display: flex; flex-direction: column; gap: 4px; font-size: 13px; font-weight: 700; }
.launcher__aside li small { color: #777b75; font-size: 10px; font-weight: 400; }
.launcher__network { display: grid; grid-template-columns: 10px 1fr auto; gap: 8px; align-items: center; padding: 12px; border: 1px solid var(--ink); }
.launcher__network > i { width: 6px; height: 6px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 4px rgba(217,255,82,.18); }
.launcher__network div { display: flex; flex-direction: column; gap: 4px; }
.launcher__network small, .launcher__network span { font: 500 7px/1 var(--mono); color: #777b75; }
.launcher__network b { font-size: 10px; }
.launcher__notice { margin-top: auto; padding: 13px; background: var(--ink); color: var(--paper); }
.launcher__notice span { color: var(--orange); font: 500 8px/1 var(--mono); }
.launcher__notice p { margin: 8px 0 0; color: #9ea19b; font-size: 9px; line-height: 1.45; }
.launcher__content { min-width: 0; overflow: auto; padding: 48px 52px; }
.launch-step { display: none; max-width: 1160px; }
.launch-step.is-active { display: block; animation: stepIn .55s var(--ease); }
.launch-kicker { color: var(--blue); font: 500 9px/1 var(--mono); letter-spacing: .1em; }
.launch-step h3 { max-width: 900px; margin: 28px 0 16px; font-size: clamp(44px, 5vw, 82px); line-height: .9; letter-spacing: -.065em; }
.launch-step > p { max-width: 640px; margin: 0; color: #676b65; font-size: 13px; line-height: 1.55; }
.template-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 11px; margin-top: 42px; }
.template { min-height: 240px; display: flex; flex-direction: column; padding: 17px; border: 1px solid var(--ink); background: transparent; text-align: left; cursor: pointer; transition: transform .3s var(--ease), background .25s, color .25s; }
.template:hover { transform: translateY(-4px); }
.template.is-active { background: var(--blue); color: #fff; border-color: var(--blue); }
.template > span { font: 500 9px/1 var(--mono); }
.template b { margin-top: auto; font-size: 22px; letter-spacing: -.04em; }
.template small { margin: 8px 0 20px; font-size: 11px; line-height: 1.45; opacity: .7; }
.template i { font: normal 500 8px/1 var(--mono); }
.reserve-stage { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(310px, .75fr); gap: 18px; align-items: start; margin-top: 38px; }
.reserve-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 0; }
.reserve-option { min-height: 106px; display: grid; grid-template-columns: 50px 1fr auto; align-items: center; gap: 12px; padding: 14px; border: 1px solid var(--ink); background: transparent; text-align: left; cursor: pointer; }
.reserve-option.is-active { background: var(--ink); color: #fff; }
.reserve-option > span { width: 45px; height: 45px; display: grid; place-items: center; background: var(--blue); color: #fff; font-weight: 800; }
.reserve-option div { display: flex; flex-direction: column; gap: 6px; }
.reserve-option b { font-size: 16px; }
.reserve-option small { color: #777b75; font-size: 9px; line-height: 1.35; }
.reserve-option i { font: normal 500 7px/1 var(--mono); }

.reserve-option--flagship { border-color: var(--blue); box-shadow: inset 0 0 0 1px var(--blue); }
.reserve-option--flagship:not(.is-active) { background: rgba(83,87,255,.045); }
.reserve-option--flagship > span { background: var(--ink); }
.reserve-spec { position: sticky; top: 0; margin-top: 0; border: 1px solid var(--ink); background: #fff; }
.reserve-spec__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; padding: 16px; border-bottom: 1px solid var(--ink); }
.reserve-spec__head > div { display: flex; flex-direction: column; gap: 7px; }
.reserve-spec__head span, .reserve-spec__head small { font: 500 8px/1 var(--mono); letter-spacing: .07em; }
.reserve-spec__head span { color: var(--blue); }
.reserve-spec__head b { font-size: 19px; letter-spacing: -.035em; }
.reserve-spec__head small { padding: 7px 8px; border: 1px solid var(--ink); color: #656a63; white-space: nowrap; }
.reserve-spec__facts { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--ink); }
.reserve-spec__facts span { padding: 12px 14px; color: #626760; font: 500 8px/1.35 var(--mono); }
.reserve-spec__facts span + span { border-left: 1px solid var(--ink); }
.reserve-allocation { display: grid; grid-template-columns: repeat(auto-fit, minmax(92px, 1fr)); border-bottom: 1px solid var(--ink); }
.reserve-allocation div { min-width: 0; display: flex; flex-direction: column; gap: 7px; padding: 13px 12px; background: var(--paper); }
.reserve-allocation div + div { border-left: 1px solid var(--ink); }
.reserve-allocation span { font: 600 9px/1 var(--mono); }
.reserve-allocation b { color: var(--blue); font: 500 8px/1 var(--mono); }
.reserve-allocation.is-big7 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.reserve-spec__route { display: grid; grid-template-columns: 150px 1fr; gap: 18px; padding: 15px 16px; background: var(--ink); color: var(--paper); }
.reserve-spec__route span { color: var(--blue-soft); font: 500 8px/1 var(--mono); letter-spacing: .07em; }
.reserve-spec__route p { margin: 0; color: #b5b8b1; font-size: 10px; line-height: 1.5; }
.market-config { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); }
.market-config .control-heading { margin-bottom: 16px; }
.market-config__note { margin: 12px 0 0; color: #6d716b; font-size: 10px; line-height: 1.45; }

.selected-reserve { display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: 20px; margin-top: 20px; padding: 16px; background: var(--paper-2); }
.selected-reserve span, .selected-reserve small { font: 500 8px/1 var(--mono); color: #777b75; }
.selected-reserve b { font-size: 15px; }
.field-row { display: grid; grid-template-columns: 1fr .45fr; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 9px; margin-top: 28px; }
.field > span { font: 500 8px/1 var(--mono); letter-spacing: .08em; }
.field input, .field textarea { width: 100%; border: 1px solid var(--ink); border-radius: 0; background: transparent; padding: 0 14px; outline: none; font-size: 14px; font-weight: 600; }
.field input { height: 58px; }
.field textarea { padding-top: 13px; resize: vertical; line-height: 1.5; }
.field input:focus, .field textarea:focus { border-color: var(--blue); box-shadow: inset 0 0 0 1px var(--blue); }
.token-preview { display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 14px; margin-top: 25px; padding: 15px; background: var(--ink); color: #fff; }
.token-preview img { width: 54px; }
.token-preview div { display: flex; flex-direction: column; gap: 4px; }
.token-preview small { color: #7d817a; font: 500 7px/1 var(--mono); }
.token-preview b { font-size: 16px; }
.token-preview span { color: var(--blue-soft); font-size: 12px; font-weight: 700; }
.token-preview em { color: var(--orange); font: normal 500 8px/1 var(--mono); }
.field--range { padding: 20px 0; margin-top: 12px; border-bottom: 1px solid var(--line); }
.field--range > span { display: flex; justify-content: space-between; }
.field--range b { font-size: 16px; }
.routing-summary { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 28px; border: 1px solid var(--ink); }
.routing-summary div { display: flex; flex-direction: column; gap: 9px; padding: 16px; }
.routing-summary div + div { border-left: 1px solid var(--ink); }
.routing-summary span { font: 500 7px/1 var(--mono); color: #777b75; }
.routing-summary b { font-size: 11px; }
.deployment-gate { display: grid; grid-template-columns: 12px 1fr; gap: 11px; margin-top: 22px; padding: 15px; background: var(--ink); color: #fff; }
.deployment-gate > i { width: 8px; height: 8px; margin-top: 3px; background: var(--orange); }
.deployment-gate b { font: 500 8px/1 var(--mono); color: var(--orange); }
.deployment-gate p { margin: 7px 0 0; color: #9ca09a; font-size: 10px; line-height: 1.4; }
.launcher__footer { display: grid; grid-template-columns: 120px 1fr auto; align-items: center; padding: 0 18px; border-top: 1px solid var(--line); }
.launcher-back { background: transparent; text-align: left; cursor: pointer; font-size: 11px; font-weight: 700; }
.launcher__footer > span { text-align: center; color: #777b75; font: 500 8px/1 var(--mono); }
.toast { position: fixed; z-index: 3000; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 10px; min-width: 220px; padding: 15px 18px; background: var(--ink); color: #fff; transform: translateY(100px); transition: transform .5s var(--ease); }
.toast.is-visible { transform: translateY(0); }
.toast i { width: 7px; height: 7px; background: var(--acid); }
.toast span { font: 500 9px/1 var(--mono); }

.reveal { opacity: 0; transform: translateY(28px); }

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes orbitReverse { to { transform: rotate(-360deg); } }
@keyframes blink { 50% { opacity: .3; } }
@keyframes stepIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes packetOne { 0%,100% { transform: translate(0,0); opacity: 0; } 10% { opacity: 1; } 55% { transform: translate(220px,-205px); } 88% { transform: translate(480px,0); opacity: 1; } 95% { opacity: 0; } }
@keyframes packetTwo { 0%,100% { transform: translate(0,0); opacity: 0; } 10% { opacity: 1; } 78% { transform: translate(310px,205px); opacity: 1; } 90% { opacity: 0; } }
@keyframes packetThree { 0%,100% { transform: translate(0,0); opacity: 0; } 10% { opacity: 1; } 72% { transform: translate(80px,210px); opacity: 1; } 88% { opacity: 0; } }

@media (max-width: 1180px) {
  .header { grid-template-columns: 1fr auto; }
  .nav, .preview-chip { display: none; }
  .menu-button { display: block; }
  .hero__title { font-size: 12.6vw; }
  .hero__description { width: min(610px, 58vw); }
  .flow { grid-template-columns: 340px 1fr; }
  .asset-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .asset-card--featured { grid-column: span 2; }
  .architecture { grid-template-columns: 1fr; gap: 70px; }
  .architecture__copy { padding-right: 0; }
  .architecture-map { min-height: 720px; }
  .principles__grid { grid-template-columns: repeat(2, 1fr); }
  .principles__grid article:nth-child(2) { border-right: 0; }
  .principles__grid article:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
}

@media (max-width: 1120px) {
  .reserve-stage { grid-template-columns: 1fr; }
  .reserve-spec { position: relative; }
  .reserve-allocation.is-big7 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  :root { --page: 18px; }
  .cursor { display: none; }
  .header { top: 9px; left: 9px; right: 9px; height: 58px; padding-left: 10px; }
  .brand img { width: 32px; height: 32px; }
  .header__right .wallet-button, .header__right .primary-button { display: none; }
  .hero { min-height: 780px; padding-top: 88px; }
  .hero__meta { grid-template-columns: 1fr auto; font-size: 7px; }
  .hero__meta span:nth-child(2) { justify-self: end; }
  .hero__meta span:last-child { display: none; }
  .hero__title { top: 23%; font-size: 15.1vw; line-height: .82; }
  .hero-line--offset, .hero-line--outline { padding-left: 0; }
  .hero-line--outline { -webkit-text-stroke-width: 1px; }
  .hero__signal { display: none; }
  .hero__footer { bottom: 54px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero__description { width: 100%; grid-template-columns: 1fr; gap: 9px; }
  .hero__description p { max-width: 92%; font-size: 12px; }
  .hero__actions { width: 100%; justify-content: space-between; gap: 12px; }
  .primary-button { min-height: 50px; font-size: 10px; }
  .line-link { font-size: 9px; gap: 14px; }
  .clarity, .universe, .studio, .architecture { padding-top: 84px; padding-bottom: 90px; }
  .clarity__heading { margin: 62px 0 55px; }
  .clarity__heading h2 { font-size: 14.5vw; }
  .section-copy { margin-left: 0; font-size: 13px; }
  .flow { grid-template-columns: 1fr; min-height: 0; }
  .flow__nav { display: grid; grid-template-columns: repeat(2, 1fr); border-right: 0; border-bottom: 1px solid var(--ink); }
  .flow-step { min-height: 130px; grid-template-columns: 28px 1fr; padding: 15px; }
  .flow-step:nth-child(odd) { border-right: 1px solid var(--ink); }
  .flow-step:nth-child(3) { border-bottom: 0; }
  .flow-step i { display: none; }
  .flow-step b { font-size: 22px; }
  .flow-step small { font-size: 9px; }
  .flow__visual { min-height: 620px; }
  .flow-orbit { width: 112%; top: 43%; }
  .flow__readout { bottom: 74px; }
  .universe__head, .studio__head { grid-template-columns: 1fr; }
  .universe__head h2, .studio__head h2 { margin-top: 58px; font-size: 14.2vw; }
  .universe__head > div:last-child > p, .studio__head > div:last-child > p { margin-left: 0; font-size: 12px; }
  .universe__toolbar { align-items: flex-start; flex-direction: column; margin-top: 52px; }
  .filter-tabs { width: 100%; }
  .filter-tabs button { flex: 1 0 auto; }
  .asset-grid { grid-template-columns: 1fr; }
  .asset-card--featured { grid-column: auto; min-height: 650px; }
  .asset-card { min-height: 520px; }
  .asset-card__main { grid-template-columns: 1fr; align-items: start; }
  .seven-mark { width: 180px; justify-self: end; }
  .composer { grid-template-columns: 1fr; margin-top: 55px; }
  .composer__controls { border-right: 0; border-bottom: 1px solid var(--ink); padding: 20px; }
  .composer__preview { min-height: 700px; padding: 20px; }
  .preview-title { margin-top: 60px; }
  .preview-title strong { font-size: 16vw; }
  .allocation-visual { grid-template-columns: 1fr; gap: 35px; padding: 50px 0; }
  .allocation-dial { position: relative; width: 230px; justify-self: center; }
  .architecture-map { min-height: 680px; }
  .module { width: 130px; min-height: 100px; grid-template-columns: 24px 1fr; padding: 9px; }
  .module p { display: none; }
  .module--pool { left: 2%; top: 43%; }
  .module--hook { left: 29%; top: 10%; }
  .module--vault { right: 2%; top: 42%; }
  .module--engine { right: 2%; bottom: 8%; }
  .module--recycle { left: 25%; bottom: 7%; }
  .principles__rail { height: 92px; }
  .principles__rail span { font-size: 48px; }
  .principles__grid { grid-template-columns: 1fr; }
  .principles__grid article { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .principles__grid h3 { margin-top: 70px; }
  .final-cta { min-height: 720px; }
  .final-cta h2 { font-size: 20vw; }
  .final-cta__content > div { flex-direction: column; align-items: stretch; }
  .footer { grid-template-columns: 1fr; gap: 28px; }
  .footer > div { grid-column: 1; }
  .launcher__panel { inset: 7px; grid-template-rows: 60px 2px 1fr 64px; }
  .launcher__header small { display: none; }
  .launcher__layout { grid-template-columns: 1fr; }
  .launcher__aside { display: none; }
  .launcher__content { padding: 28px 18px; }
  .launch-step h3 { font-size: 43px; }
  .template-grid { grid-template-columns: 1fr; }
  .template { min-height: 140px; }
  .reserve-options { grid-template-columns: 1fr; }
  .selected-reserve { grid-template-columns: 1fr; gap: 7px; }
  .reserve-spec__head { flex-direction: column; }
  .reserve-spec__head small { white-space: normal; }
  .reserve-spec__facts { grid-template-columns: 1fr; }
  .reserve-spec__facts span + span { border-left: 0; border-top: 1px solid var(--ink); }
  .reserve-allocation, .reserve-allocation.is-big7 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reserve-allocation div + div { border-left: 0; }
  .reserve-allocation div:nth-child(even) { border-left: 1px solid var(--ink); }
  .reserve-allocation div:nth-child(n+3) { border-top: 1px solid var(--ink); }
  .reserve-spec__route { grid-template-columns: 1fr; gap: 8px; }
  .mandate-mini__allocations { grid-template-columns: repeat(2, 1fr); }

  .field-row { grid-template-columns: 1fr; }
  .routing-summary { grid-template-columns: 1fr; }
  .routing-summary div + div { border-left: 0; border-top: 1px solid var(--ink); }
  .launcher__footer { grid-template-columns: 70px 1fr auto; padding: 0 9px; }
  .launcher__footer > span { display: none; }
  .toast { left: 12px; right: 12px; bottom: 12px; }
}

@media (max-width: 430px) {
  .hero { min-height: 740px; }
  .hero__title { font-size: 14.6vw; }
  .hero__actions .line-link { display: none; }
  .hero__actions .primary-button { width: 100%; }
  .flow__visual { min-height: 570px; }
  .flow__readout strong { font-size: 20px; }
  .asset-card--featured { min-height: 620px; }
  .asset-card h3 { font-size: 52px; }
  .segmented { grid-template-columns: 1fr; }
  .segmented button + button { border-left: 0; border-top: 1px solid var(--ink); }
  .composer__preview { min-height: 660px; }
  .architecture-map { min-height: 610px; }
  .module { width: 118px; }
  .module b { font-size: 9px; }
}

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