:root {
  --bg: #050806;
  --bg-soft: #08110d;
  --panel: rgba(12, 21, 17, 0.84);
  --ink: #f3f0e7;
  --muted: #99a59e;
  --quiet: #68746d;
  --line: rgba(221, 234, 225, 0.13);
  --line-bright: rgba(222, 239, 228, 0.24);
  --emerald: #27df83;
  --emerald-dark: #0a9e5c;
  --platinum: #decba5;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 9%, rgba(22, 120, 74, 0.18), transparent 28rem),
    radial-gradient(circle at 18% 38%, rgba(197, 171, 116, 0.06), transparent 24rem),
    var(--bg);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0 80%, rgba(10, 65, 42, 0.12));
}

.page-grid {
  position: absolute;
  inset: 0 0 auto;
  height: 900px;
  z-index: -1;
  opacity: 0.26;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

a { color: inherit; text-decoration: none; }
.section-shell, .site-header { width: var(--shell); margin-inline: auto; }

.site-header {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; min-width: max-content; }
.brand img { width: 42px; height: 36px; object-fit: contain; margin-right: 10px; }

.brand-name {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.brand-type {
  margin-left: 8px;
  padding-left: 8px;
  color: var(--quiet);
  border-left: 1px solid var(--line-bright);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a { transition: color 180ms ease; }
nav a:hover { color: var(--ink); }

.status-link {
  padding: 10px 13px;
  color: var(--ink);
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.status-link span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 12px var(--emerald);
}

.hero {
  min-height: 730px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 42px;
  padding-block: 76px 74px;
}

.eyebrow, .section-index {
  margin: 0 0 25px;
  color: var(--emerald);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-mark {
  display: inline-block;
  width: 21px;
  height: 1px;
  margin: 0 10px 3px 0;
  background: currentColor;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(64px, 7.4vw, 104px);
  font-weight: 520;
  line-height: 0.91;
  letter-spacing: -0.075em;
}

h1 em { color: var(--platinum); font-style: normal; font-weight: 300; }

.hero-text {
  max-width: 600px;
  margin-bottom: 37px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 12px; margin-bottom: 62px; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: #021109; background: var(--emerald); }
.button-primary span { margin-left: 22px; font-size: 15px; }
.button-primary:hover { background: #4cec9b; }

.button-ghost {
  color: var(--muted);
  border: 1px solid var(--line-bright);
  background: rgba(255, 255, 255, 0.018);
}

.button-ghost:hover { color: var(--ink); border-color: rgba(255, 255, 255, 0.38); }
.hero-proof { display: flex; }

.hero-proof div {
  min-width: 138px;
  display: grid;
  gap: 7px;
  padding-right: 26px;
  margin-right: 26px;
  border-right: 1px solid var(--line);
}

.hero-proof div:last-child { border-right: 0; }

.hero-proof strong {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.hero-proof span { color: var(--quiet); font-size: 11px; }

.hero-mark {
  position: relative;
  min-height: 550px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-mark::before {
  content: "";
  position: absolute;
  inset: 11% 3%;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 143, 87, 0.25), rgba(30, 143, 87, 0.035) 48%, transparent 70%);
  filter: blur(10px);
}

.hero-mark > img {
  position: relative;
  z-index: 2;
  width: min(100%, 610px);
  height: auto;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.58));
  transform: translateY(-9px);
}

.hero-mark > p {
  position: absolute;
  right: 0;
  bottom: 32px;
  z-index: 3;
  margin: 0;
  padding-left: 15px;
  color: var(--quiet);
  border-left: 1px solid var(--emerald-dark);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.halo {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(93, 213, 148, 0.1);
  border-radius: 50%;
}

.halo-one { width: 430px; height: 430px; }
.halo-two { width: 530px; height: 530px; border-style: dashed; opacity: 0.55; }

.protocol-chip {
  position: absolute;
  z-index: 4;
  padding: 8px 11px;
  color: var(--muted);
  border: 1px solid var(--line-bright);
  border-radius: 3px;
  background: rgba(4, 9, 6, 0.78);
  backdrop-filter: blur(12px);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.protocol-chip span {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--emerald);
}

.chip-one { left: 5%; top: 23%; }
.chip-two { right: 3%; top: 32%; }

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(10, 21, 16, 0.55);
}

.ticker-track {
  width: min(1480px, 100%);
  min-height: 62px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  padding-inline: 24px;
  color: #829088;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.17em;
  white-space: nowrap;
}

.ticker i { width: 4px; height: 4px; border-radius: 50%; background: var(--emerald-dark); }
.protocol, .flow, .network, .launch { padding-block: 132px; }
.section-heading { max-width: 820px; margin-bottom: 58px; }
.section-heading.compact { margin-bottom: 44px; }

.section-heading h2, .network-copy h2, .launch-copy h2 {
  max-width: 760px;
  margin-bottom: 25px;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 420;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-heading > p:last-child,
.network-copy > p:not(.section-index),
.launch-copy > p:not(.section-index) {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.feature-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 14px; }

.feature-card {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(15, 28, 21, 0.84), rgba(7, 13, 10, 0.94));
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, transparent 20%, rgba(255, 255, 255, 0.018));
}

.feature-card-large {
  background:
    radial-gradient(circle at 78% 15%, rgba(37, 173, 103, 0.15), transparent 40%),
    linear-gradient(145deg, rgba(15, 28, 21, 0.84), rgba(7, 13, 10, 0.94));
}

.card-number {
  position: absolute;
  top: 25px;
  left: 28px;
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 10px;
}

.feature-card h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 520;
  letter-spacing: -0.025em;
}

.feature-card p {
  position: relative;
  z-index: 2;
  min-height: 72px;
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.card-tag {
  width: fit-content;
  position: relative;
  z-index: 2;
  padding-top: 13px;
  color: var(--emerald);
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.rail-graphic { position: absolute; inset: 80px 45px auto; height: 85px; }

.rail-line {
  position: absolute;
  top: 39px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--emerald-dark), var(--platinum));
  box-shadow: 0 0 16px rgba(34, 220, 126, 0.18);
}

.rail-node {
  width: 13px;
  height: 13px;
  position: absolute;
  top: 33px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 1px var(--emerald), 0 0 20px rgba(39, 223, 131, 0.35);
}

.node-start { left: 0; }
.node-mid { left: calc(50% - 6px); background: var(--platinum); box-shadow: 0 0 0 1px var(--platinum), 0 0 20px rgba(222, 203, 165, 0.28); }
.node-end { right: 0; }

.mini-icon {
  position: absolute;
  top: 70px;
  left: 50%;
  width: 105px;
  height: 105px;
  transform: translateX(-50%);
}

.mini-icon-pulse { border: 1px solid var(--line-bright); border-radius: 50%; }
.mini-icon-pulse::before, .mini-icon-pulse::after { content: ""; position: absolute; border: 1px solid rgba(39, 223, 131, 0.2); border-radius: 50%; }
.mini-icon-pulse::before { inset: 17px; }
.mini-icon-pulse::after { inset: 35px; background: var(--emerald); box-shadow: 0 0 24px rgba(39, 223, 131, 0.46); }

.mini-icon-receipt {
  padding: 21px 18px;
  border: 1px solid var(--line-bright);
  border-radius: 5px;
  transform: translateX(-50%) rotate(3deg);
}

.mini-icon-receipt::before {
  content: "V";
  display: block;
  margin-bottom: 16px;
  color: var(--emerald);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
}

.mini-icon-receipt span { display: block; height: 1px; margin-top: 9px; background: var(--line-bright); }
.flow { border-top: 1px solid var(--line); }

.flow-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 17, 13, 0.72);
}

.flow-line {
  position: absolute;
  top: 72px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, var(--emerald-dark), var(--platinum), var(--emerald-dark));
}

.flow-step {
  min-height: 295px;
  position: relative;
  z-index: 2;
  padding: 44px 27px 31px;
  border-right: 1px solid var(--line);
}

.flow-step:last-child { border-right: 0; }

.step-number {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 67px;
  color: #041008;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 6px var(--bg-soft);
  font-family: var(--mono);
  font-size: 8px;
}

.flow-step code {
  display: block;
  margin-bottom: 17px;
  color: var(--platinum);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
}

.flow-step h3 { margin-bottom: 12px; font-size: 19px; font-weight: 520; }
.flow-step p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

.network {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.text-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--platinum);
  border-bottom: 1px solid rgba(222, 203, 165, 0.3);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 2.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link span { margin-left: 8px; }

.network-console {
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: 7px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    rgba(7, 14, 10, 0.88);
  background-size: 100% 42px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.console-head {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 20px;
  color: var(--quiet);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.09em;
}

.console-head i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 10px var(--emerald);
}

.network-console dl { margin: 0; padding: 12px 24px; }

.network-console dl div {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.network-console dl div:last-child { border-bottom: 0; }
.network-console dt, .network-console dd { margin: 0; font-family: var(--mono); font-size: 10px; }
.network-console dt { color: var(--quiet); }
.network-console dd { color: var(--ink); }
.network-console dd.accent { color: var(--emerald); }

.network-console > a {
  min-height: 51px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 24px;
  color: var(--platinum);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.launch { border-top: 1px solid var(--line); }

.launch-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 70px;
  border: 1px solid rgba(58, 221, 135, 0.22);
  border-radius: 9px;
  background:
    radial-gradient(circle at 9% 10%, rgba(35, 176, 101, 0.18), transparent 33%),
    linear-gradient(135deg, rgba(15, 30, 22, 0.95), rgba(6, 12, 9, 0.96));
}

.launch-card::after {
  content: "V";
  position: absolute;
  right: -23px;
  bottom: -105px;
  color: rgba(255, 255, 255, 0.018);
  font-family: var(--display);
  font-size: 420px;
  font-weight: 800;
  line-height: 1;
}

.launch-copy, .launch-details { position: relative; z-index: 2; }

.contract-row {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border: 1px solid var(--line-bright);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.18);
}

.contract-row span, .pending-links b {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contract-row strong {
  color: var(--emerald);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.pending-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.pending-links > * {
  min-height: 75px;
  display: grid;
  align-content: center;
  gap: 9px;
  padding-inline: 17px;
  border-right: 1px solid var(--line);
}

.pending-links > *:last-child { border-right: 0; }
.pending-links > a { transition: background 180ms ease; }
.pending-links > a:hover { background: rgba(39, 223, 131, 0.055); }
.pending-links em { color: var(--quiet); font-family: var(--mono); font-size: 10px; font-style: normal; }

.safety-note {
  margin: 18px 0 0;
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.6;
}

.safety-note span { margin-right: 7px; color: var(--emerald); }

.site-footer {
  min-height: 155px;
  display: grid;
  grid-template-columns: auto 1fr 2fr auto;
  align-items: center;
  gap: 34px;
  color: var(--quiet);
  border-top: 1px solid var(--line);
  font-size: 10px;
}

.footer-brand img { width: 38px; height: 32px; }
.footer-brand .brand-name { color: var(--ink); font-size: 17px; }
.site-footer p, .site-footer span { margin: 0; }
.disclaimer { justify-self: center; max-width: 430px; line-height: 1.5; text-align: center; }

@media (max-width: 1040px) {
  .hero { grid-template-columns: 1fr 0.82fr; }
  .hero-mark { min-height: 450px; }
  .halo-one { width: 340px; height: 340px; }
  .halo-two { width: 420px; height: 420px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card-large { grid-column: span 2; }
  .flow-panel { grid-template-columns: 1fr 1fr; }
  .flow-step:nth-of-type(2) { border-right: 0; }
  .flow-step:nth-of-type(-n + 2) { border-bottom: 1px solid var(--line); }
  .flow-line { display: none; }
  .step-number { margin-bottom: 45px; }
  .network { gap: 50px; }
  .launch-card { padding: 52px; gap: 42px; }
  .site-footer { grid-template-columns: auto 1fr auto; }
  .disclaimer { display: none; }
}

@media (max-width: 780px) {
  :root { --shell: min(100% - 30px, 640px); }
  .site-header { height: 70px; }
  nav a:not(.status-link) { display: none; }
  .status-link { padding: 8px 10px; font-size: 9px; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 30px; padding-block: 62px 52px; }
  h1 { font-size: clamp(54px, 16vw, 78px); }
  .hero-text { font-size: 16px; }
  .hero-actions { margin-bottom: 44px; }
  .hero-proof { justify-content: space-between; }
  .hero-proof div { min-width: 0; flex: 1; padding-right: 12px; margin-right: 12px; }
  .hero-mark { min-height: 410px; }
  .hero-mark > img { width: min(100%, 510px); }
  .halo-one { width: 300px; height: 300px; }
  .halo-two { width: 385px; height: 385px; }
  .ticker-track { justify-content: flex-start; overflow: hidden; }
  .protocol, .flow, .network, .launch { padding-block: 88px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-column: auto; }
  .network, .launch-card { grid-template-columns: 1fr; }
  .network { gap: 45px; }
  .launch-card { padding: 40px 28px; }
  .site-footer { min-height: 190px; grid-template-columns: 1fr 1fr; gap: 20px; }
  .site-footer > p:not(.disclaimer) { display: none; }
  .site-footer > span:last-child { justify-self: end; }
}

@media (max-width: 520px) {
  .brand-type { display: none; }
  .hero-actions { display: grid; }
  .hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-proof div { padding-right: 8px; margin-right: 8px; }
  .hero-proof strong { font-size: 11px; }
  .hero-proof span { font-size: 9px; }
  .hero-mark { min-height: 340px; }
  .halo-one { width: 250px; height: 250px; }
  .halo-two { width: 315px; height: 315px; }
  .chip-one { left: 0; }
  .chip-two { right: 0; }
  .hero-mark > p { display: none; }
  .section-heading h2, .network-copy h2, .launch-copy h2 { font-size: 40px; }
  .flow-panel { grid-template-columns: 1fr; }
  .flow-step, .flow-step:nth-of-type(2) { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--line); }
  .flow-step:last-child { border-bottom: 0; }
  .step-number { margin-bottom: 36px; }
  .pending-links { grid-template-columns: 1fr; }
  .pending-links > * { min-height: 58px; grid-template-columns: 1fr auto; align-items: center; border-right: 0; border-bottom: 1px solid var(--line); }
  .pending-links > *:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
