:root {
  --bg: #090b0d;
  --panel: #111418;
  --line: #272c31;
  --text: #f5f7f2;
  --muted: #9aa39a;
  --lime: #ccff00;
  --red: #ff5b5b;
  --blue: #73a7ff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: radial-gradient(circle at 70% -10%, #23310f 0, transparent 28%),
    var(--bg);
  min-height: 100vh;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
header,
main,
footer {
  max-width: 1180px;
  margin: auto;
}
header {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 0 2px;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  font-weight: 750;
  font-size: 18px;
}
.brand img {
  width: 34px;
  height: 34px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
}
.header-actions a {
  color: var(--muted);
  text-decoration: none;
}
.network {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: #d9dfd6;
}
.network i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  margin-right: 8px;
  box-shadow: 0 0 12px var(--lime);
}
main {
  padding: 72px 2px 40px;
}
.hero {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 36px;
}
.eyebrow {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 0;
  max-width: 820px;
}
.hero h1 em {
  font-style: normal;
  color: var(--muted);
}
.lede {
  color: #bcc3ba;
  font-size: 19px;
  line-height: 1.55;
  max-width: 700px;
  margin: 28px 0;
}
.hero-actions {
  display: flex;
  gap: 12px;
}
.hero button {
  border: 0;
  border-radius: 9px;
  background: var(--lime);
  color: #080a08;
  font-weight: 800;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 14px;
}
.hero button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid #3c444b;
}
.hero button:hover {
  transform: translateY(-1px);
}
.honesty {
  font-size: 11px;
  color: #737c74;
  margin-top: 18px;
}
.bond-card {
  background: linear-gradient(145deg, #171b1d, #0e1113);
  border: 1px solid #343b33;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 28px 80px #0009;
}
.card-head {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}
.live {
  color: var(--lime);
  font-weight: 800;
}
.bond-card strong {
  display: block;
  font-size: 52px;
  letter-spacing: -0.05em;
  margin: 28px 0 15px;
}
.bond-card small {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0;
}
.bond-line {
  height: 6px;
  background: #2a302d;
  border-radius: 20px;
  overflow: hidden;
}
.bond-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--lime);
  transition: width 0.5s;
}
.bond-card dl {
  margin: 25px 0 0;
}
.bond-card dl div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid #252a2d;
  font-size: 12px;
}
.bond-card dt {
  color: var(--muted);
}
.bond-card dd {
  margin: 0;
}
.flow-shell {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #0d1012;
  padding: 28px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 24px;
}
.section-heading h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.03em;
}
.section-heading .eyebrow {
  margin-bottom: 9px;
}
.section-heading > span {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 7px 10px;
  border-radius: 6px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.steps article {
  min-height: 190px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid #20252a;
  border-radius: 11px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.35s;
}
.steps article b {
  color: #59615b;
  font-size: 11px;
}
.steps article h3 {
  font-size: 15px;
  margin: 0 0 8px;
}
.steps article p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}
.steps article > span {
  font-size: 10px;
  color: #626963;
  font-weight: 800;
}
.steps article.active {
  border-color: #829f1c;
  box-shadow: inset 0 0 0 1px #ccff0022;
}
.steps article.done > span {
  color: var(--lime);
}
.steps article.breach {
  border-color: #873e3e;
}
.steps article.breach > span {
  color: var(--red);
}
.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 12px 0;
}
.three-up article {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 12px;
}
.three-up span {
  font-size: 10px;
  color: var(--lime);
  font-weight: 800;
  letter-spacing: 0.12em;
}
.three-up h3 {
  font-size: 19px;
  margin: 14px 0 9px;
}
.three-up p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.terminal {
  background: #070909;
  border: 1px solid var(--line);
  border-radius: 13px;
  overflow: hidden;
}
.terminal-top {
  height: 40px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
}
.terminal-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #39403c;
}
.terminal-top b {
  font-size: 11px;
  color: #6f7770;
  margin-left: 8px;
}
.terminal pre {
  white-space: pre-wrap;
  min-height: 170px;
  padding: 20px;
  margin: 0;
  color: #b9c7b6;
  font: 12px/1.7 ui-monospace, SFMono-Regular, Menlo, monospace;
}
footer {
  padding: 25px 2px 50px;
  color: #687069;
  font-size: 11px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1050px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  header,
  main,
  footer {
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 60px;
  }
  .steps,
  .three-up {
    grid-template-columns: 1fr 1fr;
  }
  .steps article {
    min-height: 165px;
  }
}
@media (max-width: 580px) {
  header {
    height: 68px;
  }
  .network {
    display: none;
  }
  main {
    padding-top: 46px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .steps,
  .three-up {
    grid-template-columns: 1fr;
  }
  .section-heading {
    align-items: start;
    gap: 15px;
    flex-direction: column;
  }
  .bond-card strong {
    font-size: 46px;
  }
  footer {
    gap: 10px;
    flex-direction: column;
  }
}
