:root {
  --bg: #05030a;
  --bg-2: #0c0613;
  --panel: rgba(26, 23, 30, 0.72);
  --panel-solid: #17131d;
  --line: rgba(255, 255, 255, 0.12);
  --line-hot: rgba(255, 122, 34, 0.52);
  --orange: #ff4d18;
  --orange-2: #ff8a2a;
  --amber: #ffc15a;
  --violet: #8a5cff;
  --violet-2: #c06cff;
  --text: #fff8f2;
  --muted: #b9aebf;
  --dim: #766d7d;
  --shadow: 0 38px 110px rgba(0, 0, 0, 0.55);
  --hot-shadow: 0 18px 70px rgba(255, 77, 24, 0.28);
  --radius-lg: 42px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 92, 24, 0.2), transparent 30%),
    radial-gradient(circle at 70% 20%, rgba(138, 92, 255, 0.2), transparent 32%),
    linear-gradient(180deg, #09050f, #030206 66%, #05030a);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(black, transparent 86%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 77, 24, 0.16), transparent 24%),
    radial-gradient(circle at 80% 34%, rgba(138, 92, 255, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), transparent 32%, transparent 70%, rgba(0, 0, 0, 0.5));
}

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset: 40px 52px auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  pointer-events: none;
}

.brand,
.nav-pill,
.nav-action {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 32%, #fff2d4, transparent 17%),
    conic-gradient(from 220deg, var(--orange), var(--violet), var(--orange));
  box-shadow: 0 0 0 7px rgba(255, 77, 24, 0.08), 0 18px 46px rgba(255, 77, 24, 0.35);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: white;
  border-radius: 999px;
  transform: rotate(-36deg);
}

.brand-mark::before {
  width: 22px;
  height: 5px;
  left: 13px;
  top: 22px;
}

.brand-mark::after {
  width: 5px;
  height: 22px;
  left: 23px;
  top: 13px;
}

.nav-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 64px;
  border-radius: 999px;
  padding: 7px;
  background:
    linear-gradient(#211f23, #17151a) padding-box,
    linear-gradient(145deg, rgba(255, 255, 255, 0.25), rgba(255, 77, 24, 0.15), rgba(138, 92, 255, 0.28)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
}

.nav-pill a {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  transition: color 350ms ease, transform 350ms ease, background 350ms ease;
}

.nav-pill a::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 77, 24, 0.22), rgba(138, 92, 255, 0.12));
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 350ms ease, transform 350ms ease;
}

.nav-pill a span,
.nav-pill a {
  z-index: 1;
}

.nav-pill a:hover,
.nav-pill a.active {
  color: var(--orange-2);
  transform: translateY(-2px);
}

.nav-pill a:hover::before,
.nav-pill a.active::before {
  opacity: 1;
  transform: scale(1);
}

.nav-action {
  justify-self: end;
}

.primary-button,
.nav-action,
.ghost-button {
  --mx: 0px;
  --my: 0px;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 70px;
  border-radius: 22px;
  padding: 0 28px;
  overflow: hidden;
  color: white;
  background: linear-gradient(180deg, #ff8a3a, #ff3c02);
  box-shadow: var(--hot-shadow), inset 0 1px rgba(255, 255, 255, 0.34);
  font-size: 19px;
  font-weight: 900;
  transform: translate3d(var(--mx), var(--my), 0);
  transition: transform 180ms ease, box-shadow 260ms ease, color 260ms ease;
}

.nav-action {
  min-height: 58px;
  border-radius: 999px;
  padding: 0 26px 0 30px;
  background:
    linear-gradient(#2a2426, #201a1d) padding-box,
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 122, 34, 0.18)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.4), inset 0 1px rgba(255, 255, 255, 0.07);
  font-size: 17px;
}

.ghost-button {
  min-height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 22px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
  color: #fff2ec;
}

.primary-button::before,
.nav-action::before,
.ghost-button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 0%;
  border-radius: inherit;
  background: white;
  transition: width 420ms cubic-bezier(.2,.75,.25,1);
}

.primary-button::after,
.nav-action::after,
.ghost-button::after {
  content: "";
  position: absolute;
  inset: -70% auto auto -30%;
  width: 70%;
  height: 240%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: rotate(18deg) translateX(-140%);
  transition: transform 620ms cubic-bezier(.2,.75,.25,1);
}

.primary-button:hover,
.nav-action:hover,
.ghost-button:hover {
  color: #211313;
  transform: translate3d(var(--mx), calc(var(--my) - 4px), 0);
  box-shadow: 0 34px 90px rgba(255, 77, 24, 0.32), inset 0 1px rgba(255, 255, 255, 0.42);
}

.primary-button:hover::before,
.nav-action:hover::before,
.ghost-button:hover::before {
  width: 100%;
}

.primary-button:hover::after,
.nav-action:hover::after,
.ghost-button:hover::after {
  transform: rotate(18deg) translateX(250%);
}

.btn-label,
.btn-arrow {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #1e130f;
  background: white;
  transition: transform 360ms cubic-bezier(.2,.75,.25,1), background 280ms ease, color 280ms ease;
}

.primary-button:hover .btn-arrow,
.nav-action:hover .btn-arrow {
  color: white;
  background: #1e130f;
  transform: translateX(6px) rotate(-24deg);
}

.hero {
  position: relative;
  min-height: 1180px;
  padding: 210px 52px 80px;
  overflow: hidden;
}

.hero-bg,
.hero-bg > * {
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-orbit {
  position: absolute;
  left: 50%;
  top: 43%;
  width: min(1380px, 118vw);
  max-width: none;
  opacity: 0.9;
  filter: saturate(1.1) contrast(1.08) drop-shadow(0 0 80px rgba(255, 77, 24, 0.32));
  transform: translate(-50%, -50%) rotate(var(--hero-rot, -8deg)) scale(1.05);
  animation: orbitDrift 18s ease-in-out infinite alternate;
}

.orbit-ring {
  position: absolute;
  left: 50%;
  top: 42%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.62;
  mix-blend-mode: screen;
}

.ring-one {
  width: 780px;
  height: 780px;
  background: conic-gradient(from 0deg, transparent 0 22%, rgba(255, 77, 24, 0.9), transparent 42% 58%, rgba(138, 92, 255, 0.84), transparent 82%);
  filter: blur(16px);
  animation: spin 22s linear infinite;
}

.ring-two {
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 143, 68, 0.18);
  box-shadow: 0 0 90px rgba(138, 92, 255, 0.32), inset 0 0 80px rgba(255, 77, 24, 0.16);
  animation: reverseSpin 28s linear infinite;
}

.hero-vignette {
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.58) 30%, #030206 84%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(58px, 7vw, 106px);
  line-height: 0.96;
  letter-spacing: -0.078em;
  font-weight: 900;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 780px;
  margin: 28px auto 0;
  color: rgba(255, 248, 242, 0.78);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.55;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.float-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  border-radius: 999px;
  padding: 0 18px 0 28px;
  color: rgba(255, 248, 242, 0.74);
  background:
    linear-gradient(rgba(33, 27, 32, 0.68), rgba(17, 15, 18, 0.72)) padding-box,
    linear-gradient(130deg, rgba(255, 255, 255, 0.22), rgba(255, 77, 24, 0.22), rgba(138, 92, 255, 0.24)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.45), inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  animation: chipFloat 7s ease-in-out infinite;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.float-chip span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, rgba(255, 122, 34, 0.92), rgba(138, 92, 255, 0.78));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.24), 0 0 28px rgba(255, 77, 24, 0.28);
  font-family: var(--mono);
  font-size: 12px;
}

.float-chip strong {
  font-size: 18px;
  font-weight: 700;
}

.float-chip:hover {
  box-shadow: 0 30px 90px rgba(255, 77, 24, 0.2), inset 0 1px rgba(255, 255, 255, 0.14);
}

.chip-left-top { left: 58px; top: 253px; }
.chip-left-mid { left: 58px; top: 378px; animation-delay: -2.4s; }
.chip-right-top { right: 80px; top: 253px; animation-delay: -1.2s; }
.chip-right-mid { right: 154px; top: 378px; animation-delay: -3.2s; }

.hero-deck {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(250px, 420px) minmax(260px, 416px) minmax(250px, 420px);
  align-items: end;
  gap: 36px;
  max-width: 1320px;
  margin: 130px auto 0;
  perspective: 1400px;
}

.depth-card {
  position: relative;
  border: 1px solid transparent;
  background:
    linear-gradient(145deg, rgba(38, 36, 40, 0.78), rgba(14, 13, 17, 0.83)) padding-box,
    linear-gradient(142deg, rgba(255, 255, 255, 0.28), rgba(255, 122, 34, 0.24) 28%, rgba(138, 92, 255, 0.2), rgba(255, 255, 255, 0.04)) border-box;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(28px);
  transform-style: preserve-3d;
  transition: transform 520ms cubic-bezier(.2,.75,.25,1), box-shadow 520ms ease, border-color 520ms ease;
  overflow: hidden;
}

.depth-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--px, 50%) var(--py, 0%), rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(255, 122, 34, 0.12), transparent 40%);
  opacity: 0;
  transition: opacity 420ms ease;
}

.depth-card::after {
  content: "";
  position: absolute;
  inset: auto 12% -32px;
  height: 70px;
  border-radius: 999px;
  background: rgba(255, 77, 24, 0.24);
  filter: blur(38px);
  opacity: 0;
  transition: opacity 520ms ease;
}

.depth-card:hover {
  border-color: rgba(255, 122, 34, 0.2);
  transform: translateY(-14px) rotateX(3deg);
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.64), 0 18px 70px rgba(255, 77, 24, 0.22), inset 0 1px rgba(255, 255, 255, 0.12);
}

.depth-card:hover::before,
.depth-card:hover::after {
  opacity: 1;
}

.market-card,
.exchange-card {
  min-height: 292px;
  padding: 30px 28px;
}

.phone-card {
  min-height: 390px;
  padding: 30px;
  border-radius: 24px 24px 0 0;
  transform: translateY(-60px);
}

.phone-card:hover {
  transform: translateY(-74px) rotateX(3deg);
}

.card-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 800;
}

.card-top a {
  color: var(--orange-2);
  font-size: 14px;
}

.token-row,
.swap-row,
.phone-metric {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 92px auto;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  border-radius: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.2);
  color: rgba(255, 248, 242, 0.92);
  overflow: hidden;
  transition: transform 280ms ease, border-color 280ms ease, background 280ms ease;
}

.token-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(138, 92, 255, 0.16), transparent 28%),
    linear-gradient(90deg, transparent, rgba(255, 138, 42, 0.1), transparent);
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity 280ms ease, transform 420ms ease;
}

.token-row:hover {
  border-color: rgba(255, 138, 42, 0.22);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(0, 0, 0, 0.26);
  transform: translateX(6px);
}

.token-row:hover::before {
  opacity: 1;
  transform: translateX(18%);
}

.token-row + .token-row {
  margin-top: 12px;
}

.token-row small,
.phone-metric span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.token-row strong,
.token-row small,
.token-row b,
.micro-bars,
.signal-glyph {
  position: relative;
  z-index: 1;
}

.token-row b,
.swap-row b,
.phone-metric b {
  color: #fff;
  font-family: var(--mono);
  font-size: 15px;
  white-space: nowrap;
}

.signal-glyph {
  --glyph: var(--violet);
  position: relative;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid transparent;
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(19, 16, 25, 0.96), rgba(4, 4, 8, 0.96)) padding-box,
    conic-gradient(from 160deg, rgba(255, 255, 255, 0.25), var(--glyph), rgba(255, 255, 255, 0.05), rgba(255, 138, 42, 0.36)) border-box;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 16px 34px rgba(0, 0, 0, 0.32), 0 0 34px color-mix(in srgb, var(--glyph) 22%, transparent);
}

.signal-glyph::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid color-mix(in srgb, var(--glyph) 58%, transparent);
  border-radius: 11px;
  background:
    linear-gradient(135deg, transparent 45%, color-mix(in srgb, var(--glyph) 42%, transparent) 46% 54%, transparent 55%),
    linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.14) 46% 54%, transparent 55%);
  opacity: 0.9;
}

.signal-glyph::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--glyph);
  box-shadow:
    0 0 16px var(--glyph),
    11px 0 0 color-mix(in srgb, var(--glyph) 62%, transparent),
    0 11px 0 color-mix(in srgb, var(--glyph) 48%, transparent);
}

.signal-glyph span {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0.9;
}

.signal-glyph.kaspa { --glyph: #8a5cff; }
.signal-glyph.dag { --glyph: #ff5a1f; }
.signal-glyph.rtt { --glyph: #ffc15a; }

.micro-bars {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 5px;
  height: 34px;
  padding-inline: 3px;
}

.micro-bars span {
  width: 5px;
  height: var(--h);
  min-height: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 248, 242, 0.85), rgba(255, 138, 42, 0.45));
  box-shadow: 0 0 16px rgba(255, 138, 42, 0.18);
}

.phone-top {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 9px;
  margin-bottom: 28px;
}

.phone-top span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
}

.phone-tabs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  border-radius: 999px;
  padding: 5px;
  background: rgba(0, 0, 0, 0.62);
}

.phone-tabs span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 999px;
  color: var(--dim);
  font-size: 13px;
  font-weight: 800;
}

.phone-tabs .active {
  color: white;
  background: rgba(255, 255, 255, 0.12);
}

.phone-number {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 30px;
  font-family: var(--mono);
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.05em;
}

.chart-line {
  position: relative;
  z-index: 1;
  height: 96px;
  margin: 22px 0;
  overflow: hidden;
}

.chart-line::before {
  content: "";
  position: absolute;
  inset: 58px 0 auto;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, white 14%, white 22%, transparent 32%, rgba(255,255,255,.42) 54%, transparent 70%);
  transform: skewY(-16deg);
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.55));
}

.chart-line span {
  position: absolute;
  bottom: 12px;
  width: 2px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.chart-line span:nth-child(1) { left: 10%; height: 28px; }
.chart-line span:nth-child(2) { left: 24%; height: 76px; }
.chart-line span:nth-child(3) { left: 43%; height: 54px; }
.chart-line span:nth-child(4) { left: 61%; height: 88px; }
.chart-line span:nth-child(5) { left: 76%; height: 46px; }
.chart-line span:nth-child(6) { left: 90%; height: 70px; }

.swap-row {
  grid-template-columns: 82px 1fr auto;
  margin-top: 16px;
}

.swap-row span {
  display: grid;
  place-items: center;
  min-height: 40px;
  border-radius: 999px;
  color: #ffdfc7;
  background: rgba(0, 0, 0, 0.48);
  font-family: var(--mono);
  font-size: 12px;
}

.swap-control {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: -2px auto -10px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--violet), var(--orange));
  box-shadow: 0 20px 54px rgba(255, 77, 24, 0.3);
  font-weight: 900;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 1px;
  max-width: 1320px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.ticker div {
  min-height: 108px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.028);
}

.ticker span,
.section-kicker {
  display: block;
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ticker strong {
  display: block;
  margin-top: 12px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.ticker strong span {
  display: inline;
  margin: 0;
  color: inherit;
  font: inherit;
}

.section-block {
  max-width: 1320px;
  margin: 130px auto 0;
  padding: 0 52px;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading h2,
.product-copy h2,
.access-panel h2 {
  margin: 14px 0 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.section-heading p,
.product-copy p,
.access-panel p {
  margin: 22px 0 0;
  color: rgba(255, 248, 242, 0.7);
  font-size: 18px;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.feature-card {
  min-height: 254px;
  padding: 30px;
}

.feature-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--violet));
  box-shadow: 0 20px 54px rgba(255, 77, 24, 0.25);
  font-family: var(--mono);
  font-size: 14px;
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  margin: 58px 0 0;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: rgba(255, 248, 242, 0.68);
  line-height: 1.55;
}

.product-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 80px;
  align-items: center;
  max-width: 1320px;
  margin: 150px auto 0;
  padding: 88px 52px;
}

.product-band::before {
  content: "";
  position: absolute;
  inset: 0 24px;
  z-index: -1;
  border-radius: 46px;
  background:
    radial-gradient(circle at 70% 50%, rgba(138, 92, 255, 0.22), transparent 36%),
    radial-gradient(circle at 32% 44%, rgba(255, 77, 24, 0.18), transparent 32%),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.product-copy .primary-button {
  margin-top: 34px;
}

.spec-stack {
  display: grid;
  gap: 18px;
  perspective: 1100px;
}

.spec-card {
  display: grid;
  grid-template-columns: 120px 1fr 80px;
  align-items: center;
  min-height: 122px;
  padding: 24px;
}

.spec-card:nth-child(2) {
  transform: translateX(44px);
}

.spec-card:nth-child(3) {
  transform: translateX(88px);
}

.spec-card span {
  position: relative;
  z-index: 1;
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-card strong {
  position: relative;
  z-index: 1;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.spec-card i {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--orange), var(--violet), var(--orange));
  box-shadow: 0 20px 60px rgba(138, 92, 255, 0.28);
}

.access-section {
  max-width: 1320px;
  margin: 130px auto 0;
  padding: 0 52px 80px;
}

.access-panel {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 70px;
  align-items: center;
  min-height: 410px;
  border-radius: 46px;
  padding: 56px;
}

form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 9px;
  color: rgba(255, 248, 242, 0.66);
  font-size: 13px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 0 18px;
  outline: none;
  color: white;
  background: rgba(0, 0, 0, 0.32);
  transition: border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

input:focus,
select:focus {
  border-color: rgba(255, 122, 34, 0.62);
  background: rgba(0, 0, 0, 0.48);
  box-shadow: 0 0 0 4px rgba(255, 77, 24, 0.11);
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, white 50%), linear-gradient(135deg, white 50%, transparent 50%);
  background-position: calc(100% - 22px) 27px, calc(100% - 16px) 27px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-button {
  width: 100%;
  margin-top: 6px;
  cursor: pointer;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: #ffd0b7;
  font-size: 14px;
  font-weight: 800;
}

.form-message.error {
  color: #ff8a8a;
}

.site-footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px 24px 44px;
  color: rgba(255, 248, 242, 0.45);
  font-size: 13px;
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(.2,.75,.25,1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes orbitDrift {
  0% { transform: translate(-50%, -50%) rotate(-10deg) scale(1.05); }
  100% { transform: translate(-50%, -49%) rotate(-2deg) scale(1.08); }
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes reverseSpin {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes chipFloat {
  0%, 100% { transform: translate3d(var(--mx, 0), var(--my, 0), 0); }
  50% { transform: translate3d(var(--mx, 0), calc(var(--my, 0) - 12px), 0); }
}

@media (max-width: 1180px) {
  .site-header {
    inset-inline: 24px;
    grid-template-columns: 1fr auto;
  }

  .nav-pill {
    display: none;
  }

  .hero {
    padding-inline: 24px;
  }

  .float-chip {
    display: none;
  }

  .hero-deck {
    grid-template-columns: 1fr;
    max-width: 620px;
    gap: 18px;
  }

  .phone-card {
    order: -1;
    transform: none;
    border-radius: var(--radius-md);
  }

  .phone-card:hover {
    transform: translateY(-12px) rotateX(3deg);
  }

  .ticker,
  .feature-grid,
  .product-band,
  .access-panel {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    max-width: 720px;
    margin: 0 auto;
  }

  .spec-card,
  .spec-card:nth-child(2),
  .spec-card:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 720px) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .site-header {
    position: absolute;
    inset: 18px 14px auto;
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav-action {
    min-height: 46px;
    padding: 0 16px;
    font-size: 13px;
  }

  .nav-action .btn-arrow {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 130px 14px 54px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .primary-button,
  .ghost-button {
    min-height: 60px;
    font-size: 16px;
  }

  .hero-orbit {
    width: 980px;
    top: 34%;
    opacity: 0.68;
  }

  .ring-one {
    width: 520px;
    height: 520px;
  }

  .ring-two {
    width: 380px;
    height: 380px;
  }

  .hero-deck {
    margin-top: 72px;
  }

  .market-card,
  .exchange-card,
  .phone-card,
  .feature-card {
    padding: 22px;
  }

  .token-row {
    grid-template-columns: 50px minmax(0, 1fr) auto;
  }

  .micro-bars {
    display: none;
  }

  .ticker {
    grid-template-columns: 1fr;
    margin: 0 14px;
  }

  .section-block,
  .product-band,
  .access-section {
    margin-top: 82px;
    padding-inline: 14px;
  }

  .section-heading h2,
  .product-copy h2,
  .access-panel h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .product-band {
    gap: 34px;
    padding-block: 56px;
  }

  .product-band::before {
    inset-inline: 0;
    border-radius: 30px;
  }

  .spec-card {
    grid-template-columns: 1fr 54px;
    gap: 12px;
  }

  .spec-card span {
    grid-column: 1 / -1;
  }

  .spec-card strong {
    font-size: 19px;
  }

  .spec-card i {
    width: 48px;
    height: 48px;
  }

  .access-panel {
    padding: 28px 18px;
    gap: 32px;
    border-radius: 30px;
  }

  .site-footer {
    padding-inline: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
