:root {
  --black:#050200;
  --deep:#0c0400;
  --panel:#120700;
  --amber:#ff8200;
  --hot:#ffab22;
  --yellow:#ffd43b;
  --cream:#ffe8bb;
  --muted:#9b5928;
  --line:rgba(255,126,18,.28);
  --faint:rgba(255,126,18,.12);
  --green:#9de465;
  --display:"VT323",monospace;
  --mono:"IBM Plex Mono",monospace;
}
* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  margin:0;
  min-width:320px;
  color:var(--hot);
  background:var(--black);
  font:14px/1.6 var(--mono);
}
a { color:inherit; text-decoration:none; }
button { font:inherit; color:inherit; cursor:pointer; }
.grain {
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:100;
  opacity:.13;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 3px,
      rgba(255,130,0,.13) 4px
    );
}
.grain:after {
  content:"";
  position:absolute;
  inset:0;
  opacity:.11;
  background-image:
    repeating-radial-gradient(#fff 0,#000 1px,transparent 2px);
  background-size:5px 5px;
}
.site-header {
  height:76px;
  padding:0 clamp(20px,4vw,60px);
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  border-bottom:1px solid var(--line);
  background:rgba(5,2,0,.88);
  backdrop-filter:blur(12px);
  position:fixed;
  z-index:50;
  top:0;
  left:0;
  right:0;
}
.logo {
  width:max-content;
  display:flex;
  align-items:center;
  gap:9px;
}
.logo img {
  width:42px;
  height:42px;
  object-fit:cover;
}
.logo>span {
  font:32px/1 var(--display);
  letter-spacing:2px;
  text-shadow:0 0 12px #ff6700;
}
.logo>span b {
  color:var(--yellow);
  font-weight:400;
}
.logo small {
  color:var(--muted);
  font-size:7px;
  align-self:flex-start;
  margin-top:13px;
}
.desktop-nav {
  display:flex;
  align-items:center;
  gap:32px;
}
.desktop-nav a {
  color:var(--muted);
  font-size:9px;
  letter-spacing:.12em;
}
.desktop-nav a:hover { color:var(--yellow); }
.header-actions {
  justify-self:end;
  display:flex;
  align-items:center;
  gap:16px;
}
.chain {
  color:var(--muted);
  font-size:8px;
}
.chain i {
  display:inline-block;
  width:6px;
  height:6px;
  border-radius:50%;
  margin-right:6px;
  background:var(--green);
  box-shadow:0 0 8px var(--green);
  animation:pulse 1.8s infinite;
}
.x-link {
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  color:var(--cream);
  font-size:10px;
  font-weight:600;
}
.x-link:hover {
  border-color:var(--amber);
  color:#150600;
  background:var(--amber);
}
.launch {
  display:inline-flex;
  justify-content:space-between;
  align-items:center;
  gap:26px;
  min-width:210px;
  padding:13px 16px;
  color:#150600;
  background:var(--amber);
  border:1px solid var(--amber);
  font-size:10px;
  font-weight:600;
  letter-spacing:.04em;
  box-shadow:0 0 28px rgba(255,105,0,.16);
}
.launch:hover {
  background:var(--yellow);
  border-color:var(--yellow);
  box-shadow:0 0 35px rgba(255,160,0,.28);
}
.launch.small {
  min-width:142px;
  padding:10px 12px;
  font-size:8px;
}
.menu {
  display:none;
  border:1px solid var(--amber);
  background:transparent;
  width:38px;
  height:36px;
}
.hero {
  min-height:790px;
  padding:
    clamp(160px,17vh,205px)
    clamp(24px,8vw,125px)
    90px;
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(circle at 78% 36%,rgba(142,46,0,.2),transparent 25%),
    radial-gradient(circle at 35% 5%,rgba(95,29,0,.22),transparent 35%);
}
.hero:after {
  content:"";
  position:absolute;
  right:3%;
  top:19%;
  width:min(43vw,570px);
  aspect-ratio:1;
  background:url("OpenGap.png") center/contain no-repeat;
  opacity:.11;
  filter:saturate(1.4);
  transform:scale(1.12);
}
.hero-copy {
  position:relative;
  z-index:2;
  max-width:1040px;
}
.system-line {
  max-width:790px;
  padding-bottom:10px;
  display:flex;
  justify-content:space-between;
  border-bottom:1px dotted var(--line);
  color:var(--muted);
  font-size:8px;
  letter-spacing:.15em;
}
.blink {
  color:var(--yellow);
  animation:blink 1.1s steps(1) infinite;
}
.hero h1 {
  margin:42px 0 28px;
  color:var(--hot);
  font:clamp(70px,8.5vw,138px)/.77 var(--display);
  font-weight:400;
  letter-spacing:-.01em;
  text-shadow:
    0 0 9px rgba(255,90,0,.72),
    0 0 36px rgba(255,76,0,.22);
}
.hero h1 em {
  color:var(--yellow);
  font-style:normal;
}
.hero-lede {
  max-width:660px;
  margin:0;
  color:#ba7139;
  font-size:13px;
  line-height:1.8;
}
.hero-actions {
  display:flex;
  align-items:center;
  gap:30px;
  margin-top:34px;
}
.text-link {
  color:var(--hot);
  font-size:9px;
  letter-spacing:.08em;
  border-bottom:1px solid var(--line);
  padding-bottom:4px;
}
.text-link b { color:var(--yellow); }
.text-link:hover { color:var(--yellow); }
.ca-box {
  width:min(720px,100%);
  margin-top:26px;
  padding:12px 14px;
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:18px;
  border:1px solid rgba(255,130,0,.55);
  background:linear-gradient(90deg,rgba(255,119,0,.09),rgba(7,2,0,.82));
  box-shadow:inset 3px 0 var(--amber),0 0 28px rgba(255,90,0,.08);
}
.ca-box small,
.ca-box strong {
  display:block;
}
.ca-box small {
  color:var(--muted);
  font-size:6px;
  letter-spacing:.14em;
}
.ca-box strong {
  margin-top:3px;
  color:var(--cream);
  font-size:10px;
  font-weight:500;
  letter-spacing:.08em;
}
.ca-box strong a {
  color:inherit;
  overflow-wrap:anywhere;
}
.ca-box strong a:hover {
  color:var(--yellow);
  text-decoration:underline;
  text-underline-offset:3px;
}
.ca-box>span {
  color:var(--yellow);
  font-size:7px;
  white-space:nowrap;
}
.ca-box>span i {
  width:6px;
  height:6px;
  margin-right:7px;
  display:inline-block;
  border-radius:50%;
  background:var(--amber);
  box-shadow:0 0 8px var(--amber);
  animation:pulse 1.8s infinite;
}
.hero-proof {
  margin-top:80px;
  display:flex;
  gap:1px;
  width:max-content;
  border:1px solid var(--line);
}
.hero-proof div {
  min-width:170px;
  padding:11px 14px;
  border-right:1px solid var(--line);
  background:rgba(11,4,0,.75);
}
.hero-proof div:last-child { border:0; }
.hero-proof small {
  display:block;
  color:var(--muted);
  font-size:6px;
}
.hero-proof strong {
  color:var(--cream);
  font-size:9px;
  font-weight:500;
}
.hero-terminal {
  position:absolute;
  z-index:3;
  right:clamp(24px,7vw,105px);
  bottom:78px;
  width:min(30vw,430px);
  border:1px solid rgba(255,130,0,.62);
  background:rgba(8,3,0,.94);
  box-shadow:0 0 60px rgba(255,72,0,.12);
}
.terminal-bar {
  display:flex;
  justify-content:space-between;
  padding:9px 12px;
  border-bottom:1px solid var(--line);
  color:var(--yellow);
  background:rgba(255,120,0,.07);
  font-size:8px;
  letter-spacing:.1em;
}
.terminal-status { color:var(--green); }
.terminal-screen { padding:17px 18px 18px; }
.boot-row {
  display:grid;
  grid-template-columns:1fr auto;
  gap:15px;
  margin-bottom:5px;
  color:var(--muted);
  font-size:8px;
}
.boot-row b { color:var(--cream); font-weight:500; }
.gap-viz {
  height:68px;
  margin:14px 0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:32px;
  border-top:1px dotted var(--line);
  border-bottom:1px dotted var(--line);
}
.candle {
  width:20px;
  height:31px;
  position:relative;
  border:1px solid var(--amber);
  background:rgba(255,130,0,.22);
}
.candle i {
  position:absolute;
  width:1px;
  height:47px;
  left:9px;
  top:-9px;
  background:var(--amber);
}
.open-candle { transform:translateY(-9px); background:var(--amber); }
.gap-label { text-align:center; color:var(--yellow); }
.gap-label span { display:block; font:25px/1 var(--display); }
.gap-label small { font-size:6px; }
.terminal-screen>p {
  margin:0 0 12px;
  color:var(--yellow);
  font-size:10px;
}
.odds-preview {
  display:grid;
  grid-template-columns:1fr 1fr;
  margin-bottom:13px;
  border:1px solid var(--line);
}
.odds-preview div { padding:9px 10px; }
.odds-preview div+div { border-left:1px solid var(--line); }
.odds-preview small,.odds-preview span { display:block; color:var(--muted); font-size:6px; }
.odds-preview strong { color:var(--cream); font:22px var(--display); font-weight:400; }
.terminal-screen>a {
  display:block;
  color:var(--yellow);
  font-size:8px;
  letter-spacing:.08em;
}
.terminal-screen>a:hover { color:var(--cream); }
.tape {
  height:40px;
  overflow:hidden;
  display:flex;
  align-items:center;
  border-bottom:1px solid var(--line);
  background:#0a0300;
}
.tape>div {
  display:flex;
  gap:52px;
  width:max-content;
  white-space:nowrap;
  animation:ticker 32s linear infinite;
  font-size:8px;
  letter-spacing:.06em;
}
.tape span { color:var(--muted); }
.tape b,.tape i { color:var(--yellow); font-style:normal; }
.section {
  padding:110px clamp(24px,7vw,105px);
  border-bottom:1px solid var(--line);
}
.section-label {
  margin-bottom:70px;
  display:flex;
  align-items:center;
  gap:16px;
  color:var(--muted);
  font-size:8px;
  letter-spacing:.14em;
}
.section-label span {
  width:32px;
  height:24px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  color:var(--yellow);
}
.section-label p { margin:0; }
.overline {
  color:var(--muted);
  font-size:8px;
  letter-spacing:.16em;
}
.problem {
  display:grid;
  grid-template-columns:150px 1.25fr 1fr;
  gap:70px;
  background:
    linear-gradient(90deg,rgba(29,9,0,.4),transparent 35%),
    var(--black);
}
.problem .section-label {
  align-self:start;
  margin:0;
}
.problem-copy h2,
.section-intro h2,
.market-heading h2,
.protocol-copy h2,
.faq h2 {
  margin:16px 0 0;
  color:var(--cream);
  font:clamp(48px,5vw,76px)/.88 var(--display);
  font-weight:400;
}
.problem-copy h2 em {
  color:var(--yellow);
  font-style:normal;
}
.problem-body {
  color:#a76332;
  line-height:1.85;
}
.problem-body>p:first-child {
  color:var(--cream);
  margin-top:40px;
}
.window-diagram {
  margin-top:42px;
  padding:18px 0;
  display:grid;
  grid-template-columns:1fr 26px 1fr 26px 1fr;
  align-items:center;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.window-diagram div {
  min-height:80px;
  padding:10px;
}
.window-diagram small,
.window-diagram b,
.window-diagram span {
  display:block;
  font-size:7px;
}
.window-diagram small { color:var(--muted); }
.window-diagram b { margin:7px 0; color:var(--cream); }
.window-diagram span { color:var(--hot); }
.window-diagram i {
  height:1px;
  background:var(--line);
  position:relative;
}
.window-diagram i:after {
  content:">";
  position:absolute;
  right:-2px;
  top:-9px;
  color:var(--muted);
}
.window-diagram .active {
  background:rgba(255,117,0,.08);
  border:1px solid var(--amber);
}
.window-diagram .active span { color:var(--yellow); }
.how {
  background:
    radial-gradient(circle at 70% 0,rgba(100,30,0,.15),transparent 35%),
    #080300;
}
.section-intro {
  max-width:760px;
  margin:0 auto 70px;
  text-align:center;
}
.section-intro>p:last-child {
  max-width:570px;
  margin:26px auto 0;
  color:var(--muted);
}
.steps {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  max-width:1180px;
  margin:auto;
  border:1px solid var(--line);
}
.steps article {
  min-height:340px;
  padding:28px;
  position:relative;
  border-right:1px solid var(--line);
  background:linear-gradient(150deg,rgba(29,11,2,.8),rgba(8,3,0,.9));
}
.steps article:last-child { border:0; }
.step-number {
  position:absolute;
  top:20px;
  right:22px;
  color:var(--muted);
  font-size:9px;
}
.step-icon {
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  margin-bottom:70px;
  border:1px solid var(--amber);
  color:var(--yellow);
  font:22px var(--display);
  box-shadow:inset 0 0 20px rgba(255,110,0,.08);
}
.steps h3 {
  margin:0;
  color:var(--cream);
  font:28px var(--display);
  font-weight:400;
  letter-spacing:.04em;
}
.steps p {
  min-height:70px;
  color:var(--muted);
  font-size:11px;
}
.steps small {
  color:var(--yellow);
  font-size:7px;
  letter-spacing:.1em;
}
.market-showcase { background:#050200; }
.market-heading {
  margin-bottom:48px;
  display:flex;
  justify-content:space-between;
  align-items:end;
}
.market-heading h2 { margin-top:12px; }
.market-grid {
  display:grid;
  grid-template-columns:1.6fr .7fr .7fr;
  gap:12px;
}
.featured,
.market-card {
  border:1px solid var(--line);
  background:linear-gradient(145deg,#150800,#090300);
}
.featured { padding:20px; }
.card-top {
  display:grid;
  grid-template-columns:45px 1fr auto;
  align-items:center;
  gap:13px;
}
.asset-chip {
  width:43px;
  height:43px;
  display:grid;
  place-items:center;
  border:1px solid var(--amber);
  color:var(--yellow);
  font:20px var(--display);
}
.card-top small,
.card-top b {
  display:block;
}
.card-top small {
  color:var(--muted);
  font-size:7px;
}
.card-top b {
  color:var(--cream);
  font:25px var(--display);
  font-weight:400;
}
.live-pill {
  padding:5px 8px;
  color:var(--green);
  border:1px solid rgba(157,228,101,.35);
  font-size:7px;
}
.mini-chart {
  height:185px;
  margin:24px 0 15px;
  padding:10px;
  border:1px solid var(--faint);
}
.mini-chart svg {
  width:100%;
  height:100%;
}
.mini-chart .fill { fill:rgba(255,128,0,.09); }
.mini-chart .stroke {
  fill:none;
  stroke:var(--amber);
  stroke-width:2;
  filter:drop-shadow(0 0 4px var(--amber));
}
.market-bottom {
  display:grid;
  grid-template-columns:1fr 1fr 1fr auto;
  border-top:1px solid var(--line);
}
.market-bottom div { padding:12px; }
.market-bottom small,
.market-bottom strong {
  display:block;
}
.market-bottom small {
  color:var(--muted);
  font-size:6px;
}
.market-bottom strong {
  color:var(--yellow);
  font:21px var(--display);
}
.market-bottom a {
  align-self:center;
  padding:11px 14px;
  color:#120500;
  background:var(--amber);
  font-size:8px;
}
.market-card {
  padding:20px;
  display:flex;
  flex-direction:column;
}
.market-card>div:first-child {
  display:flex;
  align-items:center;
  gap:11px;
}
.market-card>div small {
  color:var(--muted);
  font-size:7px;
}
.market-card h3 {
  min-height:95px;
  color:var(--cream);
  font:27px/1 var(--display);
  font-weight:400;
}
.market-odds {
  margin:auto 0;
  display:flex;
  align-items:baseline;
  gap:7px;
}
.market-odds strong {
  color:var(--yellow);
  font:60px var(--display);
}
.market-odds span {
  color:var(--muted);
  font-size:8px;
}
.market-card footer {
  display:flex;
  justify-content:space-between;
  padding-top:12px;
  border-top:1px solid var(--faint);
  color:var(--muted);
  font-size:7px;
}
.moments { background:#090300; }
.moment-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border:1px solid var(--line);
}
.moment-grid article {
  min-height:410px;
  padding:34px;
  border-right:1px solid var(--line);
  display:flex;
  flex-direction:column;
}
.moment-grid article:last-child { border:0; }
.moment-grid article>small {
  color:var(--muted);
  font-size:7px;
}
.moment-grid h3 {
  color:var(--cream);
  font:clamp(44px,4vw,66px)/.83 var(--display);
  font-weight:400;
  margin:80px 0 20px;
}
.moment-grid p {
  color:var(--muted);
  font-size:11px;
  line-height:1.8;
}
.moment-time {
  margin-top:auto;
  padding-top:14px;
  display:flex;
  justify-content:space-between;
  border-top:1px dotted var(--line);
  color:var(--yellow);
  font-size:8px;
}
.protocol-grid {
  display:grid;
  grid-template-columns:1fr 1.15fr;
  gap:90px;
}
.protocol-copy>p:not(.overline) {
  max-width:470px;
  margin:26px 0;
  color:var(--muted);
}
.text-link {
  display:inline-flex;
  gap:24px;
  padding:10px 0;
  border-bottom:1px solid var(--amber);
  color:var(--hot);
  font-size:9px;
}
.text-link:hover { color:var(--yellow); }
.specs {
  display:grid;
  grid-template-columns:1fr 1fr;
  border:1px solid var(--line);
}
.specs div {
  min-height:118px;
  padding:18px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.specs div:nth-child(2n) { border-right:0; }
.specs div:nth-last-child(-n+2) { border-bottom:0; }
.specs span {
  float:right;
  color:var(--muted);
  font-size:7px;
}
.specs p {
  color:var(--muted);
  font-size:7px;
}
.specs strong {
  color:var(--cream);
  font:24px var(--display);
  font-weight:400;
}
.security-strip {
  margin-top:70px;
  padding:18px 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border:1px solid var(--line);
  color:var(--yellow);
  font-size:8px;
}
.security-strip i {
  width:4px;
  height:4px;
  border-radius:50%;
  background:var(--amber);
}
.terminal-story {
  background:
    radial-gradient(circle at 50% 60%,rgba(255,83,0,.09),transparent 44%),
    #030100;
}
.boot-window {
  max-width:980px;
  margin:auto;
  border:1px solid var(--amber);
  box-shadow:0 0 60px rgba(255,74,0,.12);
}
.boot-head {
  padding:9px 15px;
  display:flex;
  justify-content:space-between;
  background:var(--amber);
  color:#170600;
  font-size:8px;
  font-weight:600;
}
.boot-body {
  min-height:360px;
  padding:54px;
  font:18px/1.8 var(--display);
  text-shadow:0 0 8px rgba(255,100,0,.5);
}
.boot-body p {
  display:flex;
  margin:4px 0;
}
.boot-body p>b {
  color:var(--yellow);
  margin-right:12px;
}
.boot-body p>span {
  overflow:hidden;
  flex:1;
  white-space:nowrap;
  color:#52250b;
}
.boot-body em {
  color:var(--green);
  font-style:normal;
}
.boot-body em.wait { color:var(--yellow); }
.progress {
  height:24px;
  margin:35px 0 18px;
  border:1px solid var(--amber);
  padding:3px;
}
.progress i {
  display:block;
  width:64%;
  height:100%;
  background:var(--amber);
  box-shadow:0 0 14px rgba(255,120,0,.5);
}
.boot-body .prompt {
  color:var(--yellow);
  margin-top:25px;
}
.boot-body .prompt span { animation:blink 1s steps(1) infinite; }
.faq { background:#080300; }
.faq-layout {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:90px;
}
.questions details { border-top:1px solid var(--line); }
.questions details:last-child { border-bottom:1px solid var(--line); }
.questions summary {
  padding:22px 4px;
  display:flex;
  justify-content:space-between;
  color:var(--cream);
  font-size:10px;
  cursor:pointer;
  list-style:none;
}
.questions summary::-webkit-details-marker { display:none; }
.questions summary span {
  color:var(--yellow);
  font-size:16px;
}
.questions details[open] summary span { transform:rotate(45deg); }
.questions details p {
  max-width:620px;
  padding:0 30px 24px 4px;
  margin:0;
  color:var(--muted);
  font-size:11px;
}
.final-cta {
  min-height:720px;
  padding:110px 24px;
  text-align:center;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 45%,rgba(116,34,0,.32),transparent 34%),
    #030100;
}
.cta-mark {
  width:90px;
  height:90px;
  object-fit:cover;
  margin-bottom:25px;
}
.final-cta h2 {
  margin:20px 0 40px;
  color:var(--cream);
  font:clamp(66px,8vw,118px)/.77 var(--display);
  font-weight:400;
}
.final-cta h2 em {
  color:var(--yellow);
  font-style:normal;
}
.launch.large {
  min-width:290px;
  padding:17px 19px;
}
.final-cta>small {
  display:block;
  margin-top:24px;
  color:#6e3618;
  font-size:7px;
}
.site-footer {
  min-height:190px;
  padding:45px clamp(24px,6vw,90px);
  display:grid;
  grid-template-columns:1fr 1.4fr .7fr;
  gap:40px;
  align-items:start;
  border-top:1px solid var(--line);
  background:#030100;
}
.footer-logo img { width:35px; height:35px; }
.footer-logo>span { font-size:27px; }
.site-footer p {
  max-width:400px;
  margin:0 0 8px;
  color:var(--cream);
  font-size:9px;
}
.site-footer div>span {
  color:var(--muted);
  font-size:7px;
}
.site-footer nav {
  display:grid;
  gap:8px;
  color:var(--muted);
  font-size:8px;
}
.site-footer nav a:hover { color:var(--yellow); }
.copyright {
  grid-column:1/-1;
  padding-top:30px;
  border-top:1px dotted var(--line);
  color:#5a2a12;
  font-size:7px;
}
.mobile-nav {
  display:none;
  position:fixed;
  inset:0;
  z-index:80;
  padding:24px;
  background:#080300;
}
.mobile-nav.open {
  display:flex;
  flex-direction:column;
  gap:12px;
}
.mobile-nav>a:not(.launch) {
  padding:14px 0;
  border-bottom:1px solid var(--line);
  color:var(--cream);
  font:28px var(--display);
}
.mobile-nav>button {
  align-self:flex-end;
  border:1px solid var(--amber);
  background:transparent;
  padding:9px 12px;
  font-size:9px;
}
.reveal {
  opacity:0;
  transform:translateY(16px);
  transition:opacity .7s ease,transform .7s ease;
}
.reveal.visible {
  opacity:1;
  transform:none;
}
@keyframes pulse { 50% { opacity:.25; } }
@keyframes blink { 50% { opacity:0; } }
@keyframes ticker { to { transform:translateX(-50%); } }
@media(max-width:1000px) {
  .hero-terminal { position:relative; right:auto; bottom:auto; width:100%; margin-top:45px; }
  .desktop-nav,.chain { display:none; }
  .site-header { grid-template-columns:1fr auto; }
  .menu { display:block; }
  .problem { grid-template-columns:1fr 1fr; }
  .problem .section-label { grid-column:1/-1; }
  .market-grid { grid-template-columns:1fr 1fr; }
  .featured { grid-column:1/-1; }
  .protocol-grid { gap:40px; }
}
@media(max-width:700px) {
  .ca-box { grid-template-columns:1fr; gap:8px; }
  .site-header { height:64px; padding:0 14px; }
  .logo img { width:34px; height:34px; }
  .logo>span { font-size:27px; }
  .launch.small { display:none; }
  .hero {
    min-height:720px;
    padding:145px 20px 70px;
  }
  .hero-terminal { display:none; }
  .hero:after {
    width:320px;
    right:-110px;
    top:240px;
  }
  .system-line span:last-child { display:none; }
  .hero h1 { font-size:19vw; }
  .hero-lede { max-width:100%; }
  .hero-actions { flex-wrap:wrap; gap:20px; }
  .hero-actions .text-link { margin-right:20px; }
  .hero-proof { width:100%; display:grid; grid-template-columns:1fr 1fr; }
  .hero-proof div { min-width:0; }
.section { padding:80px 20px; }
  .section-label { margin-bottom:45px; }
  .problem { display:block; }
  .problem-body>p:first-child { margin-top:35px; }
  .window-diagram { grid-template-columns:1fr; gap:6px; }
  .window-diagram i { display:none; }
  .steps,.moment-grid { grid-template-columns:1fr; }
  .steps article,.moment-grid article {
    border-right:0;
    border-bottom:1px solid var(--line);
  }
  .market-heading { display:block; }
  .market-heading .text-link { margin-top:20px; }
  .market-grid { grid-template-columns:1fr; }
  .featured { grid-column:auto; }
  .market-bottom { grid-template-columns:repeat(2,1fr); }
  .protocol-grid,.faq-layout { grid-template-columns:1fr; }
  .protocol-grid,.faq-layout { gap:50px; }
  .security-strip { flex-wrap:wrap; gap:18px; }
  .boot-body { padding:25px 18px; font-size:14px; }
  .boot-body p>span { display:none; }
  .final-cta { min-height:650px; }
  .site-footer { grid-template-columns:1fr; }
  .copyright { grid-column:auto; }
}
@media(prefers-reduced-motion:reduce) {
  * { animation:none!important; scroll-behavior:auto!important; }
  .reveal { opacity:1; transform:none; }
}
