:root {
  color-scheme: dark;
  font-family: "Segoe UI Variable", "Aptos", "Helvetica Neue", Arial, sans-serif;
  color: #e8ece7;
  background: #090c0b;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --bg: #090c0b;
  --panel: #0e1210;
  --panel-2: #131814;
  --line: #242c27;
  --line-bright: #354239;
  --text: #e8ece7;
  --muted: #88958c;
  --muted-2: #5c685f;
  --acid: #c8f75a;
  --buy: #54e59b;
  --sell: #ff6b6b;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--bg);
  background-size: 32px 32px, 32px 32px, auto;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 72% 0%, rgba(200, 247, 90, 0.055), transparent 34%);
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

.mono,
code {
  font-family: "Cascadia Code", "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--acid);
  color: #11160e;
  font-size: 13px;
  font-weight: 750;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(53, 66, 57, 0.68);
  background: rgba(9, 12, 11, 0.82);
  backdrop-filter: blur(20px);
}

.header-inner {
  width: min(1320px, calc(100% - 48px));
  min-height: 74px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  border-radius: 9px;
}

.brand > span {
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #a8b2ab;
  font-size: 12px;
  font-weight: 650;
}

.primary-nav a {
  position: relative;
  padding-block: 8px;
}

.primary-nav a::after {
  position: absolute;
  inset: auto 0 2px;
  height: 1px;
  background: var(--acid);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--text);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.header-cta {
  justify-self: end;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 20px;
  border: 1px solid var(--line-bright);
  background: #121713;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.02em;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: #657367;
  background: #181f1a;
  transform: translateY(-2px);
}

.button-small {
  min-height: 38px;
  padding-inline: 16px;
  gap: 16px;
}

.button-primary {
  border-color: var(--acid);
  background: var(--acid);
  color: #11160e;
}

.button-primary:hover {
  border-color: #ddff8b;
  background: #ddff8b;
}

.button-large {
  min-height: 58px;
  padding-inline: 28px;
}

.hero {
  position: relative;
  min-height: 860px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 148px 0 92px;
}

.hero-glow {
  position: absolute;
  top: 8%;
  left: 56%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(200, 247, 90, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(200, 247, 90, 0.018),
    0 0 0 180px rgba(200, 247, 90, 0.012);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(540px, 1.08fr);
  align-items: center;
  gap: 70px;
}

.eyebrow,
.section-index,
.feature-kicker {
  font-family: "Cascadia Code", "JetBrains Mono", Consolas, monospace;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--acid);
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--buy);
  box-shadow: 0 0 14px rgba(84, 229, 155, 0.75);
}

.hero h1 {
  max-width: 660px;
  margin: 24px 0 26px;
  color: #f0f3ef;
  font-size: clamp(52px, 6.1vw, 86px);
  font-weight: 610;
  line-height: 0.98;
  letter-spacing: -0.066em;
}

.hero h1 em,
.final-cta h2 em {
  color: var(--acid);
  font-style: normal;
}

.hero-lede {
  max-width: 610px;
  margin: 0;
  color: #9ca8a0;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
}

.text-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid #465149;
  color: #c4ccc6;
  font-size: 12px;
  font-weight: 700;
  transition: color 160ms ease, border-color 160ms ease;
}

.text-link:hover {
  border-color: var(--acid);
  color: var(--acid);
}

.text-link span {
  color: var(--acid);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 68px;
  border-top: 1px solid var(--line);
}

.hero-proof > div {
  min-width: 0;
  padding: 18px 12px 0 0;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 6px;
  color: #dfe5e0;
  font-size: 12px;
}

.hero-proof span {
  color: #657168;
  font-size: 10px;
  line-height: 1.45;
}

.product-frame {
  position: relative;
  border: 1px solid var(--line-bright);
  background: rgba(10, 13, 12, 0.96);
  box-shadow: var(--shadow);
  transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg);
  transform-origin: center left;
}

.product-frame::before {
  position: absolute;
  inset: -14px 14px 14px -14px;
  z-index: -1;
  border: 1px solid rgba(200, 247, 90, 0.11);
  content: "";
}

.frame-topbar {
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
}

.frame-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #9da8a0;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #91a095;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.live-chip i,
.system-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--buy);
  box-shadow: 0 0 10px rgba(84, 229, 155, 0.7);
}

.frame-body {
  min-height: 490px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
}

.frame-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding-top: 25px;
  border-right: 1px solid var(--line);
  background: #0b0e0d;
}

.frame-sidebar span {
  width: 17px;
  height: 17px;
  border: 1px solid #354038;
}

.frame-sidebar span.active {
  border-color: var(--acid);
  background: rgba(200, 247, 90, 0.15);
  box-shadow: inset 2px 0 var(--acid);
}

.frame-content {
  min-width: 0;
  padding: 21px;
}

.frame-heading,
.activity-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.frame-heading small,
.activity-heading small,
.metric-row small {
  display: block;
  color: #657168;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.frame-heading strong {
  display: block;
  margin-top: 5px;
  font-size: 16px;
}

.frame-heading > span {
  padding: 5px 8px;
  border: 1px solid #2c3e31;
  color: var(--buy);
  font-size: 8px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.metric-row article {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  background: #101411;
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  margin: 8px 0 4px;
  color: #e7ede8;
  font-size: 18px;
}

.metric-row span {
  overflow: hidden;
  color: #667169;
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.activity-card {
  margin-top: 9px;
  padding: 14px;
  border: 1px solid var(--line);
  background: #0d110f;
}

.activity-heading strong {
  display: block;
  margin-top: 5px;
  font-size: 11px;
}

.activity-heading > span {
  color: #5d6961;
  font-size: 7px;
}

.activity-chart {
  position: relative;
  height: 112px;
  display: flex;
  align-items: end;
  gap: 5px;
  margin-top: 16px;
  padding: 0 5px;
  border-bottom: 1px solid #283029;
  background: repeating-linear-gradient(to bottom, transparent 0 27px, rgba(255,255,255,.028) 28px);
}

.activity-chart span {
  width: calc(5% - 5px);
  min-width: 3px;
  height: 30%;
  border-radius: 1px 1px 0 0;
  background: linear-gradient(to top, rgba(200, 247, 90, 0.16), rgba(200, 247, 90, 0.78));
}

.activity-chart span:nth-child(2),
.activity-chart span:nth-child(9),
.activity-chart span:nth-child(15) { height: 44%; }
.activity-chart span:nth-child(3),
.activity-chart span:nth-child(7),
.activity-chart span:nth-child(18) { height: 63%; }
.activity-chart span:nth-child(4),
.activity-chart span:nth-child(12) { height: 38%; }
.activity-chart span:nth-child(5),
.activity-chart span:nth-child(11),
.activity-chart span:nth-child(19) { height: 77%; }
.activity-chart span:nth-child(6) { height: 54%; }
.activity-chart span:nth-child(8),
.activity-chart span:nth-child(14) { height: 88%; }
.activity-chart span:nth-child(10),
.activity-chart span:nth-child(17) { height: 69%; }
.activity-chart span:nth-child(13) { height: 51%; }
.activity-chart span:nth-child(16) { height: 94%; }
.activity-chart span:nth-child(20) { height: 72%; }

.activity-chart i {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 1px;
  background: rgba(84, 229, 155, 0.45);
  box-shadow: 0 0 12px rgba(84, 229, 155, 0.32);
}

.chart-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  color: #505a53;
  font-size: 6px;
}

.signal-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
  padding: 9px 10px;
  border: 1px solid #283129;
  background: #111612;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 7px;
}

.signal-row > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.signal-row i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.signal-buy { background: var(--buy); }
.signal-sell { background: var(--sell); }
.signal-row code { color: #8b9790; }
.signal-row b { color: var(--acid); font-weight: 600; }
.muted-row { opacity: 0.58; }

.signal-strip {
  border-block: 1px solid var(--line);
  background: #0d110f;
}

.strip-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #7a867e;
  font-size: 8px;
  letter-spacing: 0.15em;
}

.strip-inner i {
  color: var(--acid);
  font-style: normal;
}

.section {
  padding: 128px 0;
}

.section[id] {
  scroll-margin-top: 90px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 58px;
}

.section-index,
.feature-kicker {
  color: var(--acid);
}

.section h2,
.final-cta h2 {
  margin: 20px 0 0;
  color: #edf1ed;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 610;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-heading > p,
.workflow-intro > p,
.security-copy > p {
  margin: 0;
  color: #8e9a91;
  font-size: 15px;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-bright);
  border-left: 1px solid var(--line-bright);
}

.feature-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 30px;
  border-right: 1px solid var(--line-bright);
  border-bottom: 1px solid var(--line-bright);
  background:
    radial-gradient(circle at 86% 14%, rgba(200, 247, 90, 0.045), transparent 28%),
    rgba(14, 18, 16, 0.86);
  transition: background 180ms ease;
}

.feature-card:hover {
  background-color: #111713;
}

.feature-wide {
  min-height: 500px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.12fr 0.75fr 1fr;
  align-items: end;
  gap: 28px;
}

.feature-number {
  position: absolute;
  top: 27px;
  right: 29px;
  color: #455048;
  font-size: 9px;
}

.feature-wide .feature-number {
  position: static;
  align-self: start;
}

.feature-copy {
  position: relative;
  z-index: 2;
  max-width: 480px;
}

.feature-copy h3 {
  max-width: 460px;
  margin: 15px 0 15px;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 620;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.feature-copy p {
  margin: 0;
  color: #859188;
  font-size: 14px;
  line-height: 1.7;
}

.provider-visual {
  position: relative;
  min-height: 370px;
}

.provider-core,
.provider-node {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid #3b493e;
  background: #101511;
  font-family: "Cascadia Code", Consolas, monospace;
}

.provider-core {
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 92px;
  height: 92px;
  color: #141a12;
  background: var(--acid);
  font-size: 34px;
  font-weight: 800;
  transform: translate(-50%, -50%);
}

.provider-core span {
  position: absolute;
  inset: -13px;
  border: 1px solid rgba(200, 247, 90, 0.26);
}

.provider-node {
  z-index: 2;
  width: 70px;
  height: 70px;
  color: #6e7c72;
  font-size: 7px;
  line-height: 1.7;
  text-align: center;
}

.provider-node b {
  color: #d9e1da;
  font-size: 12px;
}

.node-a { top: 13px; left: 50%; transform: translateX(-50%); }
.node-b { bottom: 20px; left: 8%; }
.node-c { right: 8%; bottom: 20px; }

.provider-visual > i {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(200,247,90,.06), rgba(200,247,90,.72), rgba(200,247,90,.06));
  transform-origin: left center;
}

.route-a { top: 88px; left: 50%; width: 98px; transform: rotate(90deg); }
.route-b { bottom: 82px; left: 21%; width: 174px; transform: rotate(-28deg); }
.route-c { bottom: 82px; left: 52%; width: 174px; transform: rotate(28deg); }

.feature-icon {
  position: relative;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  margin-top: 26px;
  border: 1px solid #344038;
  background: #0d110f;
}

.icon-wallet::before,
.icon-wallet::after {
  position: absolute;
  border: 1px solid #627167;
  content: "";
}

.icon-wallet::before {
  width: 61px;
  height: 42px;
}

.icon-wallet::after {
  right: 31px;
  width: 24px;
  height: 19px;
  border-color: var(--acid);
  background: #182015;
}

.icon-wallet span {
  position: absolute;
  right: 40px;
  z-index: 2;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--acid);
}

.icon-intersection span {
  position: absolute;
  width: 65px;
  height: 65px;
  border: 1px solid #657268;
  border-radius: 50%;
}

.icon-intersection span:first-child { transform: translateX(-22px); }
.icon-intersection span:nth-child(2) { transform: translateX(22px); }
.icon-intersection i {
  width: 9px;
  height: 9px;
  z-index: 2;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 16px rgba(200,247,90,.55);
}

.workflow {
  border-block: 1px solid var(--line);
  background: rgba(11, 15, 13, 0.86);
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1fr);
  gap: 100px;
}

.workflow-intro {
  position: sticky;
  top: 128px;
  align-self: start;
}

.workflow-intro > p {
  max-width: 460px;
  margin: 25px 0 32px;
}

.workflow-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-bright);
  list-style: none;
}

.workflow-steps li {
  min-height: 142px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 25px 4px;
  border-bottom: 1px solid var(--line-bright);
}

.step-number {
  color: var(--acid);
  font-size: 10px;
}

.workflow-steps h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 630;
  letter-spacing: -0.03em;
}

.workflow-steps p {
  margin: 0;
  color: #7f8b82;
  font-size: 13px;
  line-height: 1.55;
}

.step-tag {
  padding: 5px 7px;
  border: 1px solid #354139;
  color: #67736a;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.security-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 110px;
  overflow: hidden;
  padding: 62px;
  border: 1px solid var(--line-bright);
  background:
    radial-gradient(circle at 0% 100%, rgba(200,247,90,.07), transparent 34%),
    #101411;
}

.security-panel::after {
  position: absolute;
  right: -110px;
  bottom: -220px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(200,247,90,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(200,247,90,.012), 0 0 0 130px rgba(200,247,90,.01);
  content: "";
}

.security-copy > p {
  margin-top: 25px;
}

.security-list {
  position: relative;
  z-index: 2;
  border-top: 1px solid #344039;
}

.security-list > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid #344039;
}

.check {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #4a5b4d;
  color: var(--acid);
  font-size: 11px;
}

.security-list p,
.security-list strong {
  display: block;
}

.security-list p {
  margin: 0;
  color: #7e8a81;
  font-size: 12px;
  line-height: 1.6;
}

.security-list strong {
  margin-bottom: 4px;
  color: #dbe2dc;
  font-size: 13px;
}

.internal-tools {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px),
    rgba(11, 15, 13, 0.9);
  background-size: 32px 32px, 32px 32px, auto;
}

.tools-heading {
  margin-bottom: 48px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tool-card {
  min-width: 0;
  min-height: 680px;
  display: grid;
  grid-template-rows: auto 286px 1fr;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line-bright);
  background:
    radial-gradient(circle at 50% 28%, rgba(200,247,90,.05), transparent 32%),
    #0e1210;
  transition: border-color 180ms ease, background 180ms ease;
}

.tool-card:hover {
  border-color: #526151;
  background-color: #111713;
}

.tool-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #67736a;
  font-size: 8px;
  letter-spacing: 0.13em;
}

.tool-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #7e8d82;
}

.tool-state i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--buy);
  box-shadow: 0 0 9px rgba(84,229,155,.65);
}

.tool-visual {
  position: relative;
  overflow: hidden;
  margin: 25px 0 30px;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    #0b0f0d;
  background-size: 24px 24px, 24px 24px, auto;
}

.common-wallets-visual::before,
.common-wallets-visual::after {
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,247,90,.32));
  content: "";
}

.common-wallets-visual::before {
  left: 0;
}

.common-wallets-visual::after {
  right: 0;
  transform: rotate(180deg);
}

.mint-orbit {
  position: absolute;
  top: 50%;
  width: 196px;
  height: 196px;
  border: 1px solid rgba(112,130,116,.44);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.mint-orbit::before {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(200,247,90,.12);
  border-radius: 50%;
  content: "";
}

.mint-orbit-a {
  left: 42%;
}

.mint-orbit-b {
  left: 58%;
}

.mint-orbit > span {
  position: absolute;
  top: 20px;
  left: 50%;
  color: #6f7c73;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 7px;
  letter-spacing: .12em;
  transform: translateX(-50%);
}

.mint-orbit i {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid #6c7d70;
  border-radius: 50%;
  background: #111713;
}

.mint-orbit i:nth-of-type(1) {
  top: 46px;
  left: 19px;
}

.mint-orbit i:nth-of-type(2) {
  right: 1px;
  bottom: 75px;
}

.mint-orbit i:nth-of-type(3) {
  bottom: 16px;
  left: 72px;
}

.shared-wallets {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 84px;
  height: 84px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(200,247,90,.62);
  background: #151d13;
  box-shadow: 0 0 35px rgba(200,247,90,.09);
  text-align: center;
  transform: translate(-50%, -50%) rotate(-3deg);
}

.shared-wallets strong,
.shared-wallets span {
  display: block;
}

.shared-wallets strong {
  color: var(--acid);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 8px;
  letter-spacing: .08em;
}

.shared-wallets span {
  margin-top: 5px;
  color: #79857d;
  font-size: 8px;
}

.trader-visual {
  display: grid;
  place-items: center;
  padding: 26px;
}

.trader-console {
  width: min(100%, 390px);
  border: 1px solid #344038;
  background: rgba(13,17,15,.96);
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
}

.trader-console-head {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border-bottom: 1px solid #303a33;
  font-family: "Cascadia Code", Consolas, monospace;
}

.trader-console-head span {
  color: #66736a;
  font-size: 7px;
  letter-spacing: .12em;
}

.trader-console-head strong {
  color: #e3e9e4;
  font-size: 12px;
}

.decision-row {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 15px;
  border-bottom: 1px solid #242d27;
}

.decision-row:last-child {
  border-bottom: 0;
}

.decision-row > i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5a665e;
}

.decision-row > span,
.decision-row b,
.decision-row small {
  display: block;
}

.decision-row b {
  color: #cfd7d1;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 7px;
  letter-spacing: .07em;
}

.decision-row small {
  margin-top: 3px;
  color: #5e6a62;
  font-size: 7px;
}

.decision-row code {
  color: var(--acid);
  font-size: 7px;
}

.decision-row.is-muted {
  opacity: .58;
}

.tool-copy {
  align-self: end;
}

.tool-copy h3 {
  margin: 13px 0 14px;
  color: #e7ece8;
  font-size: clamp(28px, 3vw, 39px);
  font-weight: 620;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.tool-copy > p {
  min-height: 72px;
  margin: 0;
  color: #839087;
  font-size: 13px;
  line-height: 1.7;
}

.tool-points {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.tool-points li {
  padding: 7px 8px;
  border: 1px solid #354139;
  color: #78847c;
  font-size: 7px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  border-top: 1px solid var(--line);
  background: #0c100e;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.026) 50%, transparent 50.1%),
    radial-gradient(circle at 50% 50%, rgba(200,247,90,.07), transparent 38%);
  content: "";
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.final-cta h2 {
  font-size: clamp(52px, 7vw, 90px);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #090c0b;
}

.footer-inner {
  min-height: 110px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
}

.footer-inner > p {
  margin: 0;
  color: #657168;
  font-size: 11px;
  text-align: center;
}

.footer-right {
  display: flex;
  justify-content: end;
  gap: 24px;
  color: #566158;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.system-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #738077;
}

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    max-width: 800px;
  }

  .product-frame {
    width: min(760px, 94%);
    justify-self: center;
    transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
  }

  .workflow-grid {
    gap: 60px;
  }

  .security-panel {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line-bright);
    background: #111613;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 16px;
    height: 1px;
    display: block;
    background: #ccd4ce;
    transition: transform 160ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    inset: 74px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 20px;
    border-bottom: 1px solid var(--line-bright);
    background: rgba(9, 12, 11, 0.98);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a::after {
    display: none;
  }

  .primary-nav a.is-active::after {
    right: auto;
    width: 56px;
    display: block;
    transform: scaleX(1);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-wide {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .feature-wide .feature-number {
    position: absolute;
  }

  .provider-visual {
    min-height: 330px;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .workflow-intro {
    position: static;
  }

  .security-panel {
    grid-template-columns: 1fr;
    padding: 42px;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .tool-card {
    min-height: 650px;
  }

  .cta-inner {
    align-items: start;
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-block: 34px;
    text-align: center;
  }

  .footer-inner .brand {
    justify-self: center;
  }

  .footer-right {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .shell,
  .header-inner {
    width: min(100% - 30px, 1180px);
  }

  .header-inner {
    gap: 10px;
  }

  .brand > span {
    font-size: 11px;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 12px;
    gap: 8px;
  }

  .hero {
    padding: 124px 0 70px;
  }

  .hero-grid {
    gap: 52px;
  }

  .hero h1 {
    margin-top: 19px;
    font-size: clamp(43px, 14vw, 64px);
  }

  .hero-lede {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 23px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 48px;
  }

  .hero-proof > div {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: baseline;
    padding-top: 0;
  }

  .product-frame {
    width: 100%;
    transform: none;
  }

  .product-frame::before {
    display: none;
  }

  .frame-body {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .frame-sidebar {
    gap: 12px;
  }

  .frame-sidebar span {
    width: 13px;
    height: 13px;
  }

  .frame-content {
    padding: 14px;
  }

  .frame-heading > span {
    display: none;
  }

  .metric-row {
    grid-template-columns: 1fr 1fr;
  }

  .metric-row article:last-child {
    display: none;
  }

  .signal-row {
    grid-template-columns: 1fr auto;
  }

  .signal-row code {
    display: none;
  }

  .strip-inner {
    justify-content: center;
    min-height: 54px;
  }

  .strip-inner span:nth-of-type(even),
  .strip-inner i {
    display: none;
  }

  .section {
    padding: 90px 0;
  }

  .section h2 {
    font-size: 42px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-wide {
    grid-column: auto;
  }

  .feature-card {
    min-height: 390px;
    padding: 24px;
  }

  .feature-wide {
    min-height: 650px;
  }

  .provider-visual {
    min-height: 300px;
  }

  .provider-node {
    width: 58px;
    height: 58px;
  }

  .provider-core {
    width: 76px;
    height: 76px;
  }

  .route-b,
  .route-c {
    width: 135px;
  }

  .workflow-grid {
    gap: 58px;
  }

  .workflow-steps li {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .step-tag {
    display: none;
  }

  .security-panel {
    width: calc(100% - 30px);
    padding: 28px 22px;
  }

  .security-panel h2 {
    font-size: 39px;
  }

  .tool-card {
    min-height: 620px;
    grid-template-rows: auto 250px 1fr;
    padding: 22px;
  }

  .tool-card-top {
    font-size: 7px;
  }

  .mint-orbit {
    width: 168px;
    height: 168px;
  }

  .mint-orbit-a {
    left: 39%;
  }

  .mint-orbit-b {
    left: 61%;
  }

  .shared-wallets {
    width: 76px;
    height: 76px;
  }

  .trader-visual {
    padding: 15px;
  }

  .tool-copy > p {
    min-height: auto;
  }

  .final-cta {
    padding: 92px 0;
  }

  .final-cta h2 {
    font-size: 53px;
  }

  .button-large {
    width: 100%;
  }

  .footer-right {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
