:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #09090b;
  --surface: #101012;
  --surface-raised: #171719;
  --surface-hover: #1d1d20;
  --line: #29292e;
  --line-soft: rgba(255, 255, 255, 0.1);
  --text: #f7f7f8;
  --text-muted: #a7a7ae;
  --text-dim: #85858e;
  --accent: #145cff;
  --accent-hover: #3274ff;
  --accent-soft: rgba(20, 92, 255, 0.15);
  --available: #3ddc97;
  --available-soft: rgba(61, 220, 151, 0.12);
  --development: #f4b740;
  --development-soft: rgba(244, 183, 64, 0.12);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1200px;
  --header-height: 72px;
  --ease: 200ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

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

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text);
  color: #050505;
  transform: translateY(-150%);
  transition: transform var(--ease);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(18px);
  transition: background var(--ease), border-color var(--ease);
}

.site-header.is-scrolled,
.site-header.menu-open {
  border-color: var(--line-soft);
  background: rgba(5, 5, 5, 0.94);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  background: var(--accent);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -14px -7px auto auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.brand-mark span {
  position: relative;
  z-index: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.desktop-nav a {
  padding: 8px 12px;
  border-radius: 10px;
  color: #c8c8ce;
  font-size: 14px;
  font-weight: 560;
  transition: color var(--ease), background var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 680;
  line-height: 1;
  transition: transform var(--ease), background var(--ease), border-color var(--ease), color var(--ease);
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform var(--ease);
}

.button:hover svg {
  transform: translateX(3px);
}

.button:active {
  transform: translateY(1px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid #79a4ff;
  outline-offset: 3px;
}

.button-small {
  min-height: 38px;
  padding-inline: 15px;
  border-radius: 12px;
  font-size: 14px;
}

.button-primary {
  background: var(--accent);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), 0 10px 28px rgba(20, 92, 255, 0.22);
  color: #fff;
}

.button-primary:hover {
  background: var(--accent-hover);
}

.button-secondary,
.button-ghost {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.065);
  color: #fff;
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.23);
  background: rgba(255, 255, 255, 0.11);
}

.button-light {
  background: #fff;
  color: #09090b;
}

.button-light:hover {
  background: #e9efff;
}

.button-full {
  width: 100%;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.menu-button span {
  width: 17px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--ease);
}

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

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

.mobile-menu {
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  padding: 16px 20px 22px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(5, 5, 5, 0.98);
}

.mobile-menu a:not(.button) {
  display: block;
  padding: 13px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #d4d4da;
  font-weight: 600;
}

.mobile-menu .button {
  width: 100%;
  margin-top: 16px;
}

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

.hero {
  min-height: 850px;
  padding: calc(var(--header-height) + 92px) 0 100px;
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 75% 45%, rgba(20, 92, 255, 0.12), transparent 36%),
    var(--bg);
  background-size: 64px 64px, 64px 64px, auto, auto;
  background-position: center center;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 1%, transparent 25%, transparent 75%, var(--bg) 99%);
}

.hero::after {
  right: 10%;
  bottom: 40px;
  width: 480px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 144, 255, 0.65), transparent);
  box-shadow: 0 0 28px 8px rgba(20, 92, 255, 0.28);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
  align-items: center;
  gap: 64px;
}

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

.eyebrow,
.status-badge {
  display: inline-flex;
  align-items: center;
}

.eyebrow {
  gap: 9px;
  padding: 8px 11px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #c5c5cb;
  font-size: 12px;
  font-weight: 660;
  letter-spacing: 0.015em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--available);
  box-shadow: 0 0 0 4px rgba(61, 220, 151, 0.11), 0 0 16px rgba(61, 220, 151, 0.65);
}

.hero h1 {
  max-width: 650px;
  margin: 28px 0 24px;
  font-size: clamp(58px, 5.2vw, 76px);
  font-weight: 740;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 span,
.section-heading h2 span,
.faq-heading h2 span,
.cta-panel h2 span {
  color: #7fa5ff;
}

.hero-lead {
  max-width: 580px;
  margin: 0;
  color: var(--text-muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0 0;
  color: var(--text-dim);
  font-size: 12px;
}

.hero-note svg {
  width: 16px;
  height: 16px;
  color: var(--available);
}

.hero-glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-one {
  top: 120px;
  right: -140px;
  width: 420px;
  height: 420px;
  background: rgba(20, 92, 255, 0.14);
}

.hero-glow-two {
  bottom: 10px;
  left: -180px;
  width: 360px;
  height: 360px;
  background: rgba(88, 52, 220, 0.08);
}

.hero-product {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
}

.product-window {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-xl);
  background: rgba(13, 13, 16, 0.95);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.55), 0 0 0 10px rgba(255, 255, 255, 0.015);
}

.product-window::before {
  content: "";
  position: absolute;
  top: -80px;
  right: 50px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(20, 92, 255, 0.16);
  filter: blur(55px);
}

.window-bar {
  position: relative;
  z-index: 1;
  display: flex;
  height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.018);
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dcdce1;
  font-size: 13px;
  font-weight: 650;
}

.mini-logo {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}

.window-controls {
  display: flex;
  gap: 5px;
}

.window-controls i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4a4a50;
}

.product-body {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  padding: 18px;
}

.campaign-card,
.campaign-side > div {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.032);
}

.campaign-card {
  min-height: 355px;
  padding: 18px;
  border-radius: 20px;
}

.campaign-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.campaign-label {
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 630;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-badge {
  gap: 6px;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.status-badge.available {
  border-color: rgba(61, 220, 151, 0.28);
  background: var(--available-soft);
  color: #74e6b2;
}

.status-badge.available span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--available);
  box-shadow: 0 0 8px rgba(61, 220, 151, 0.8);
}

.status-badge.development {
  border-color: rgba(244, 183, 64, 0.24);
  background: var(--development-soft);
  color: #f1c66e;
}

.token-visual {
  position: relative;
  display: grid;
  width: 158px;
  height: 158px;
  margin: 28px auto 18px;
  place-items: center;
}

.token-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 27px;
  background: linear-gradient(145deg, #2068ff, #6235db);
  box-shadow: 0 18px 48px rgba(20, 92, 255, 0.35), inset 0 1px rgba(255, 255, 255, 0.25);
  transform: rotate(-7deg);
}

.token-core svg {
  width: 37px;
  height: 37px;
  stroke-width: 1.5;
}

.token-orbit {
  position: absolute;
  border: 1px solid rgba(94, 144, 255, 0.24);
  border-radius: 50%;
}

.token-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8bacff;
  box-shadow: 0 0 12px #5e90ff;
}

.orbit-one {
  inset: 10px;
}

.orbit-two {
  inset: 0 25px;
  transform: rotate(60deg);
}

.campaign-card h2 {
  margin: 0 0 3px;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.campaign-card > p {
  margin: 0;
  color: var(--text-dim);
  font-size: 12px;
}

.campaign-side {
  display: grid;
  gap: 10px;
}

.campaign-side > div {
  border-radius: 16px;
}

.side-stat {
  display: grid;
  min-height: 106px;
  padding: 15px 16px;
  align-content: start;
}

.side-stat > span,
.wallet-row small {
  color: var(--text-dim);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.side-stat strong {
  margin-top: 4px;
  font-size: 27px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.side-stat small {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  color: var(--text-dim);
  font-size: 10px;
}

.side-stat small i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--available);
}

.wallet-row {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 10px;
  padding: 12px;
}

.wallet-icon,
.check-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
}

.wallet-icon {
  width: 35px;
  height: 35px;
  border-radius: 11px;
  background: var(--accent-soft);
  color: #7da5ff;
}

.wallet-icon svg {
  width: 17px;
  height: 17px;
}

.wallet-row > span:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.wallet-row strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
}

.check-icon {
  width: 23px;
  height: 23px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--available-soft);
  color: var(--available);
}

.check-icon svg {
  width: 13px;
  height: 13px;
}

.product-footer {
  display: flex;
  min-height: 63px;
  align-items: center;
  gap: 18px;
  padding: 11px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
  font-size: 10px;
}

.product-footer > span:first-child {
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-footer > span:first-child i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--available);
}

.fake-button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 0 12px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 650;
}

.fake-button svg {
  width: 13px;
  height: 13px;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  min-height: 43px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  background: rgba(23, 23, 26, 0.92);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  color: #d5d5da;
  font-size: 11px;
  font-weight: 630;
}

.floating-chip span {
  padding: 3px 6px;
  border-radius: 6px;
  background: var(--available-soft);
  color: var(--available);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.floating-chip svg {
  width: 16px;
  height: 16px;
  color: #ff826a;
}

.chip-top {
  top: 30px;
  right: -22px;
}

.chip-bottom {
  bottom: 28px;
  left: -30px;
}

.status-strip {
  border-bottom: 1px solid var(--line-soft);
  background: #080809;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.status-grid > div {
  display: flex;
  min-height: 124px;
  align-items: center;
  gap: 16px;
  padding: 24px 36px;
  border-right: 1px solid var(--line-soft);
}

.status-grid > div:first-child {
  border-left: 1px solid var(--line-soft);
}

.status-grid strong {
  color: #fff;
  font-size: 35px;
  letter-spacing: -0.055em;
}

.status-grid span {
  max-width: 145px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.35;
}

.section {
  padding: 120px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 54px;
}

.section-heading .kicker,
.faq-heading .kicker {
  margin: 0 0 17px;
  color: #7fa5ff;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.faq-heading h2,
.cta-panel h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 64px);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-heading > p:last-child,
.split-heading > p,
.faq-heading > p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.55;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: end;
  gap: 56px;
}

.split-heading > p {
  margin-bottom: 3px;
}

.featured-scenario {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 70px;
  overflow: hidden;
  padding: 52px;
  border: 1px solid rgba(61, 220, 151, 0.18);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 85% 15%, rgba(61, 220, 151, 0.08), transparent 30%),
    linear-gradient(140deg, #111313, #0d0e10);
}

.featured-scenario::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -170px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(61, 220, 151, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(61, 220, 151, 0.025), 0 0 0 120px rgba(61, 220, 151, 0.018);
  pointer-events: none;
}

.scenario-copy,
.redeem-demo {
  position: relative;
  z-index: 1;
}

.scenario-meta,
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.scenario-number {
  color: #7a7a83;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.scenario-icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: #91afff;
}

.scenario-icon svg {
  width: 22px;
  height: 22px;
}

.scenario-icon.large {
  width: 58px;
  height: 58px;
  margin-top: 36px;
  border-color: rgba(61, 220, 151, 0.18);
  border-radius: 18px;
  background: var(--available-soft);
  color: var(--available);
}

.scenario-icon.large svg {
  width: 28px;
  height: 28px;
}

.scenario-copy h3 {
  max-width: 450px;
  margin: 22px 0 14px;
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.scenario-copy > p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.feature-list {
  display: grid;
  gap: 11px;
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
  color: #d1d1d6;
  font-size: 13px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.feature-list svg {
  width: 17px;
  height: 17px;
  color: var(--available);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #91afff;
  font-size: 14px;
  font-weight: 680;
}

.text-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--ease);
}

.text-link:hover svg {
  transform: translateX(4px);
}

.redeem-demo {
  display: grid;
  align-content: center;
}

.redeem-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: #17191b;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.redeem-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -40px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(20, 92, 255, 0.13);
  filter: blur(35px);
}

.redeem-card-header {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding-bottom: 21px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.token-mini {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(145deg, #1760ff, #6841dc);
}

.token-mini svg {
  width: 22px;
  height: 22px;
}

.redeem-card-header > span:nth-child(2) {
  display: grid;
  gap: 2px;
}

.redeem-card-header small,
.redeem-code span,
.redeem-result small {
  color: var(--text-dim);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.redeem-card-header strong {
  font-size: 14px;
}

.token-id {
  color: #6f6f76;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.redeem-code {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 10px;
  padding: 22px 0 18px;
}

.redeem-code strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 15px;
  font-weight: 600;
}

.redeem-code i {
  display: grid;
  grid-row: 1 / 3;
  grid-column: 2;
  width: 30px;
  height: 30px;
  place-self: center;
  place-items: center;
  border-radius: 50%;
  background: var(--available-soft);
  color: var(--available);
}

.redeem-code i svg {
  width: 16px;
  height: 16px;
}

.redeem-action {
  display: flex;
  min-height: 47px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 7px 7px 14px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
  color: #9d9da4;
  font-size: 11px;
}

.redeem-action strong {
  padding: 10px 13px;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
}

.redeem-result {
  position: relative;
  display: flex;
  width: calc(100% - 54px);
  align-items: center;
  gap: 13px;
  margin: -2px auto 0;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 0;
  border-radius: 0 0 19px 19px;
  background: #101113;
}

.result-icon {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 107, 87, 0.1);
  color: #ff806d;
}

.result-icon svg {
  width: 20px;
  height: 20px;
}

.redeem-result div {
  display: grid;
  gap: 1px;
}

.redeem-result strong {
  font-size: 13px;
}

.redeem-result div > span {
  color: var(--text-dim);
  font-size: 9px;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.scenario-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}

.scenario-card:hover {
  border-color: rgba(255, 255, 255, 0.17);
  background: var(--surface-raised);
  transform: translateY(-3px);
}

.scenario-card > .scenario-number {
  margin-top: auto;
  padding-top: 38px;
}

.scenario-card h3 {
  margin: 10px 0 9px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.scenario-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.flow-section {
  border-block: 1px solid var(--line-soft);
  background: #09090b;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 0;
  padding: 1px;
  border-radius: var(--radius-xl);
  background: var(--line-soft);
  list-style: none;
}

.flow-card {
  position: relative;
  min-height: 315px;
  padding: 28px;
  background: #101012;
}

.flow-card > span {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #48484f;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.flow-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin: 48px 0 30px;
  place-items: center;
  border: 1px solid rgba(127, 165, 255, 0.16);
  border-radius: 16px;
  background: var(--accent-soft);
  color: #84a8ff;
}

.flow-icon svg {
  width: 24px;
  height: 24px;
}

.flow-card h3 {
  margin: 0 0 9px;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.flow-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.58;
}

.dashboard-section {
  padding-bottom: 0;
}

.dashboard-callout {
  position: relative;
  display: grid;
  min-height: 650px;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 56px;
  overflow: hidden;
  padding: 58px 0 58px 58px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 20%, rgba(44, 100, 255, 0.23), transparent 38%),
    linear-gradient(135deg, #111216, #0b0d15);
}

.dashboard-callout::before {
  content: "";
  position: absolute;
  bottom: -190px;
  left: 15%;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(79, 123, 255, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(44, 100, 255, 0.025), 0 0 0 130px rgba(44, 100, 255, 0.018);
}

.dashboard-copy {
  position: relative;
  z-index: 2;
}

.dashboard-copy h2 {
  margin: 24px 0 18px;
  font-size: clamp(42px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.dashboard-copy p {
  margin: 0 0 30px;
  color: var(--text-muted);
  line-height: 1.6;
}

.dashboard-mock {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 660px;
  min-height: 480px;
  grid-template-columns: 64px 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-right: 0;
  border-radius: 25px 0 0 25px;
  background: #0b0c0f;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45);
}

.dashboard-mock aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: #0e0f12;
}

.mock-logo {
  display: grid;
  width: 31px;
  height: 31px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 9px;
  background: var(--accent);
  font-size: 9px;
  font-weight: 800;
}

.dashboard-mock aside i {
  width: 18px;
  height: 18px;
  border: 2px solid #45464d;
  border-radius: 6px;
}

.dashboard-mock aside i.active {
  border-color: #7fa5ff;
  background: rgba(20, 92, 255, 0.25);
}

.mock-main {
  padding: 23px;
}

.mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-top > div {
  display: grid;
}

.mock-top small,
.mock-stats small {
  color: var(--text-dim);
  font-size: 9px;
}

.mock-top strong {
  font-size: 20px;
  letter-spacing: -0.04em;
}

.mock-top > span {
  padding: 9px 11px;
  border-radius: 9px;
  background: var(--accent);
  font-size: 9px;
  font-weight: 700;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.mock-stats > div {
  display: grid;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.mock-stats strong {
  margin-top: 3px;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.mock-stats em {
  margin-top: 3px;
  color: var(--available);
  font-size: 8px;
  font-style: normal;
}

.mock-content {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 10px;
  margin-top: 10px;
}

.mock-chart,
.mock-feed {
  min-height: 233px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
}

.chart-head {
  display: flex;
  justify-content: space-between;
  color: #d5d5da;
  font-size: 10px;
  font-weight: 650;
}

.chart-head small {
  color: var(--text-dim);
  font-size: 8px;
  font-weight: 400;
}

.bars {
  display: flex;
  height: 162px;
  align-items: end;
  gap: 8px;
  margin-top: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 40px);
}

.bars i {
  width: 100%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(#3f7cff, #1749bd);
}

.bars i:nth-child(1) { height: 38%; }
.bars i:nth-child(2) { height: 52%; }
.bars i:nth-child(3) { height: 46%; }
.bars i:nth-child(4) { height: 72%; }
.bars i:nth-child(5) { height: 58%; }
.bars i:nth-child(6) { height: 88%; }
.bars i:nth-child(7) { height: 76%; }

.mock-feed > span {
  color: #d5d5da;
  font-size: 10px;
  font-weight: 650;
}

.mock-feed > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.mock-feed i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.mock-feed i.green { background: var(--available); }
.mock-feed i.blue { background: #6191ff; }
.mock-feed i.muted { background: #696970; }

.mock-feed p {
  display: grid;
  gap: 1px;
  margin: 0;
}

.mock-feed strong {
  font-size: 9px;
}

.mock-feed small {
  color: var(--text-dim);
  font-size: 8px;
}

.mock-overlay {
  position: absolute;
  inset: auto 18px 18px auto;
  z-index: 4;
  display: grid;
  max-width: 310px;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(244, 183, 64, 0.22);
  border-radius: 14px;
  background: rgba(20, 20, 23, 0.94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
}

.mock-overlay span {
  color: var(--development);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mock-overlay strong {
  color: #e9e9ec;
  font-size: 11px;
  line-height: 1.4;
}

.infra-panel {
  display: grid;
  grid-template-columns: 1fr 90px 1fr 90px 1.15fr 90px 1fr;
  align-items: center;
  padding: 44px 28px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #0c0c0e;
  background-size: 32px 32px;
}

.infra-node {
  display: grid;
  min-height: 218px;
  align-content: center;
  justify-items: center;
  padding: 24px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(16, 16, 19, 0.92);
  text-align: center;
}

.infra-node.featured {
  border-color: rgba(88, 135, 255, 0.19);
  box-shadow: inset 0 0 40px rgba(20, 92, 255, 0.035);
}

.infra-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid rgba(88, 135, 255, 0.2);
  border-radius: 15px;
  background: var(--accent-soft);
  color: #81a6ff;
}

.infra-icon.app {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #d2d2d7;
}

.infra-icon.network {
  border-color: rgba(151, 112, 255, 0.2);
  background: rgba(116, 73, 218, 0.13);
  color: #ab8eff;
  font-size: 24px;
}

.infra-icon svg {
  width: 23px;
  height: 23px;
}

.infra-node small {
  color: var(--text-dim);
  font-size: 9px;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.infra-node strong {
  margin-top: 5px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.infra-node em {
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 10px;
  font-style: normal;
}

.infra-node b {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 15px;
  color: #79dfb1;
  font-size: 9px;
  font-weight: 650;
}

.infra-node b i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--available);
  box-shadow: 0 0 8px rgba(61, 220, 151, 0.7);
}

.infra-link {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.infra-link span {
  color: var(--text-dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.infra-link i {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(100, 143, 255, 0.2), rgba(100, 143, 255, 0.7), rgba(100, 143, 255, 0.2));
}

.infra-link i::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 5px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #7199ff;
  border-right: 1px solid #7199ff;
  transform: rotate(45deg);
}

.infra-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-block: 1px solid var(--line-soft);
}

.infra-points > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 15px;
  padding: 30px 28px;
  border-right: 1px solid var(--line-soft);
}

.infra-points > div:last-child {
  border-right: 0;
}

.infra-points > div > span {
  color: #5c5c64;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.infra-points p {
  display: grid;
  gap: 6px;
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.5;
}

.infra-points strong {
  color: #e2e2e6;
  font-size: 13px;
}

.faq-section {
  border-top: 1px solid var(--line-soft);
  background: #09090a;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq-heading {
  align-self: start;
}

.faq-heading h2 {
  font-size: clamp(46px, 4.5vw, 60px);
}

.faq-heading .text-link {
  margin-top: 25px;
}

.faq-list {
  border-top: 1px solid var(--line-soft);
}

.faq-list details {
  border-bottom: 1px solid var(--line-soft);
}

.faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: #e9e9ec;
  font-size: 17px;
  font-weight: 620;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  transition: background var(--ease), transform var(--ease);
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 7px;
  width: 11px;
  height: 1px;
  background: #b4b4bb;
}

.faq-list summary span::after {
  transform: rotate(90deg);
  transition: transform var(--ease);
}

.faq-list details[open] summary span {
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(180deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 680px;
  margin: -3px 52px 26px 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.final-cta {
  padding: 120px 0;
  background: var(--bg);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 92px 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 120%, rgba(20, 92, 255, 0.35), transparent 42%),
    linear-gradient(140deg, #111217, #0a0a0d);
  text-align: center;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, #000, transparent 70%);
}

.cta-panel > *:not(.cta-orbit) {
  position: relative;
  z-index: 2;
}

.cta-panel h2 {
  margin: 25px 0 19px;
}

.cta-panel > p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.55;
}

.cta-panel .hero-actions {
  justify-content: center;
}

.cta-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(89, 133, 255, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -20%);
}

.cta-orbit i {
  position: absolute;
  display: block;
  border: 1px solid rgba(89, 133, 255, 0.075);
  border-radius: 50%;
}

.cta-orbit i:nth-child(1) { inset: 60px; }
.cta-orbit i:nth-child(2) { inset: 120px; }
.cta-orbit i:nth-child(3) { inset: 180px; }

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

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr 0.7fr 0.7fr 1fr;
  gap: 48px;
  padding-block: 62px;
}

.footer-main > div:first-child p {
  margin: 19px 0 0;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: #dedee2;
  font-size: 12px;
}

.footer-links a {
  color: var(--text-dim);
  font-size: 12px;
  transition: color var(--ease);
}

.footer-links a:hover {
  color: #fff;
}

.footer-status {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 8px;
}

.footer-status > span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(61, 220, 151, 0.18);
  border-radius: 999px;
  background: var(--available-soft);
  color: #7ce5b5;
  font-size: 10px;
  font-weight: 660;
}

.footer-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7fa5ff;
  box-shadow: 0 0 8px rgba(20, 92, 255, 0.8);
}

.footer-status small {
  padding-left: 3px;
  color: var(--text-dim);
  font-size: 10px;
}

.footer-bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-soft);
  color: #85858e;
  font-size: 10px;
}

.app-dialog {
  width: min(calc(100% - 32px), 510px);
  max-height: min(90vh, 760px);
  overflow: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  background: #101012;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.65);
  color: var(--text);
}

.app-dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(9px);
}

.app-dialog[open] {
  animation: dialog-in 180ms ease-out;
}

.dialog-shell {
  position: relative;
  padding: 36px;
}

.dialog-close {
  position: absolute;
  top: 17px;
  right: 17px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line-soft);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.05);
  color: #a9a9b0;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.dialog-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.dialog-brand {
  margin-bottom: 25px;
}

.dialog-shell > h2 {
  margin: 20px 0 10px;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.dialog-shell > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.dialog-shell > .registration-security-note {
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(244, 183, 64, 0.18);
  border-radius: 11px;
  background: var(--development-soft);
  color: #d8c090;
  font-size: 11px;
}

.app-dialog form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.app-dialog label:not(.checkbox) {
  display: grid;
  gap: 8px;
  color: #c7c7cd;
  font-size: 12px;
  font-weight: 630;
}

.app-dialog input:not([type="checkbox"]) {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  outline: 0;
  background: #09090b;
  color: #fff;
  font-size: 14px;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.app-dialog input:not([type="checkbox"])::placeholder {
  color: #7b7b83;
}

.app-dialog input:disabled {
  cursor: not-allowed;
  color: #8b8b93;
  opacity: 0.72;
}

.app-dialog input[readonly] {
  cursor: wait;
  opacity: 0.78;
}

.app-dialog input:not([type="checkbox"]):focus {
  border-color: #5f8cff;
  box-shadow: 0 0 0 3px rgba(20, 92, 255, 0.14);
}

.app-dialog input.is-invalid {
  border-color: #e66155;
}

.field-hint {
  color: #777780;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.45;
}

.app-dialog .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 12px;
}

.checkbox input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.form-message {
  display: block;
  min-height: 0;
  padding: 0;
  border-radius: 11px;
  color: #d9d9de;
  font-size: 12px;
  line-height: 1.5;
}

.form-message:not(:empty) {
  padding: 11px 12px;
  border: 1px solid rgba(244, 183, 64, 0.2);
  background: var(--development-soft);
  color: #e9ca8b;
}

.form-message.is-success:not(:empty) {
  border-color: rgba(61, 220, 151, 0.24);
  background: var(--available-soft);
  color: #8ce9bd;
}

.form-message.is-error:not(:empty) {
  border-color: rgba(230, 97, 85, 0.28);
  background: rgba(230, 97, 85, 0.09);
  color: #f0a099;
}

.dialog-switch {
  margin-top: 22px !important;
  text-align: center;
  font-size: 12px !important;
}

.dialog-switch a {
  color: #8eacff;
  font-weight: 650;
}

.panel-dialog {
  text-align: center;
}

.panel-placeholder-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 3px auto 22px;
  place-items: center;
  border: 1px solid rgba(87, 132, 255, 0.2);
  border-radius: 22px;
  background: var(--accent-soft);
  color: #7fa5ff;
}

.panel-placeholder-icon svg {
  width: 31px;
  height: 31px;
}

.panel-dialog .dialog-shell > h2 {
  margin-top: 18px;
}

.placeholder-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 26px 0;
}

.placeholder-features span {
  display: grid;
  min-height: 78px;
  place-items: center;
  gap: 5px;
  padding: 10px 4px;
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  color: #a9a9b0;
  font-size: 10px;
}

.placeholder-features svg {
  width: 20px;
  height: 20px;
  color: #7fa5ff;
}

.toast {
  position: fixed;
  z-index: 250;
  right: 22px;
  bottom: 22px;
  max-width: min(380px, calc(100% - 44px));
  padding: 14px 17px;
  border: 1px solid rgba(244, 183, 64, 0.23);
  border-radius: 13px;
  background: #181716;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
  color: #ebd2a0;
  font-size: 12px;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.has-js .reveal.reveal-delay {
  transition-delay: 100ms;
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(12px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 1px;
  }

  .desktop-nav a {
    padding-inline: 8px;
  }

  .hero {
    padding-bottom: 90px;
  }

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

  .hero-copy {
    max-width: 820px;
    text-align: center;
    justify-self: center;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-note {
    justify-content: center;
  }

  .hero-product {
    width: min(100%, 720px);
    min-height: 510px;
    margin-inline: auto;
  }

  .scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-callout {
    grid-template-columns: 1fr;
    padding: 58px 0 0 58px;
  }

  .dashboard-copy {
    max-width: 600px;
    padding-right: 58px;
  }

  .dashboard-mock {
    width: 100%;
    min-width: 700px;
    justify-self: end;
  }

  .infra-panel {
    grid-template-columns: 1fr 55px 1fr 55px 1fr 55px 1fr;
    padding-inline: 18px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 64px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .section {
    padding: 92px 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .featured-scenario {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .scenario-copy {
    max-width: 620px;
  }

  .redeem-demo {
    width: min(100%, 560px);
    justify-self: center;
  }

  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .infra-panel {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 28px;
  }

  .infra-node {
    width: min(100%, 500px);
    min-height: 190px;
    justify-self: center;
  }

  .infra-link {
    height: 70px;
    align-content: center;
  }

  .infra-link i {
    width: 1px;
    height: 30px;
    background: linear-gradient(rgba(100, 143, 255, 0.2), rgba(100, 143, 255, 0.7), rgba(100, 143, 255, 0.2));
  }

  .infra-link i::after {
    top: auto;
    right: -3px;
    bottom: 2px;
    transform: rotate(135deg);
  }

  .infra-points {
    grid-template-columns: 1fr;
  }

  .infra-points > div {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .infra-points > div:last-child {
    border-bottom: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .faq-heading {
    max-width: 640px;
  }

  .footer-main {
    grid-template-columns: 1.5fr 0.7fr 0.7fr;
  }

  .footer-status {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  :root {
    --radius-xl: 24px;
  }

  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .desktop-register {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: calc(var(--header-height) + 65px) 0 74px;
    background-size: 42px 42px, 42px 42px, auto, auto;
  }

  .hero-grid {
    gap: 52px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(43px, 12.5vw, 58px);
    line-height: 1;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-note {
    align-items: flex-start;
    text-align: left;
  }

  .hero-product {
    min-height: 0;
  }

  .product-window {
    border-radius: 22px;
  }

  .product-body {
    grid-template-columns: 1fr;
  }

  .campaign-card {
    min-height: 320px;
  }

  .campaign-side {
    grid-template-columns: 1fr 1fr;
  }

  .wallet-row {
    grid-column: 1 / -1;
  }

  .product-footer {
    flex-wrap: wrap;
  }

  .product-footer > span:nth-child(2) {
    display: none;
  }

  .floating-chip {
    display: none;
  }

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

  .status-grid > div,
  .status-grid > div:first-child {
    min-height: 96px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .status-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 74px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .faq-heading h2,
  .cta-panel h2 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .section-heading > p:last-child,
  .split-heading > p,
  .faq-heading > p {
    font-size: 15px;
  }

  .featured-scenario {
    padding: 28px 22px;
  }

  .scenario-copy h3 {
    font-size: 31px;
  }

  .scenario-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .scenario-card {
    min-height: 275px;
  }

  .flow-card {
    min-height: 285px;
  }

  .dashboard-section {
    padding-bottom: 0;
  }

  .dashboard-callout {
    min-height: 0;
    padding: 36px 26px 26px;
    border-radius: 24px;
  }

  .dashboard-copy {
    padding-right: 0;
  }

  .dashboard-copy h2 {
    font-size: 39px;
  }

  .dashboard-copy .button {
    width: 100%;
  }

  .dashboard-mock {
    width: 100%;
    min-width: 0;
    min-height: 410px;
    grid-template-columns: 46px minmax(0, 1fr);
    margin-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    transform: none;
  }

  .dashboard-mock aside {
    gap: 18px;
  }

  .mock-main {
    min-width: 0;
    padding: 16px;
  }

  .mock-stats {
    gap: 6px;
  }

  .mock-stats > div {
    padding: 9px;
  }

  .mock-stats strong {
    font-size: 17px;
  }

  .mock-content {
    grid-template-columns: 1fr;
  }

  .mock-feed {
    display: none;
  }

  .mock-overlay {
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 66px);
  }

  .infra-panel {
    padding: 18px;
  }

  .infra-points > div {
    padding-inline: 8px;
  }

  .faq-list summary {
    min-height: 75px;
    font-size: 15px;
  }

  .faq-list details p {
    margin-right: 0;
    font-size: 14px;
  }

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

  .cta-panel {
    padding: 60px 22px;
  }

  .cta-panel > p {
    font-size: 15px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px 25px;
  }

  .footer-main > div:first-child,
  .footer-status {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }

  .dialog-shell {
    padding: 29px 22px;
  }

  .dialog-close {
    top: 14px;
    right: 14px;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .header-inner {
    gap: 8px;
  }

  .brand {
    font-size: 14px;
  }

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

  .header-actions .button-ghost {
    min-height: 36px;
    padding-inline: 11px;
  }

  .menu-button {
    width: 38px;
    height: 38px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .campaign-side {
    grid-template-columns: 1fr;
  }

  .wallet-row {
    grid-column: auto;
  }

  .fake-button {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .scenario-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .redeem-card {
    padding: 17px;
  }

  .redeem-action span {
    display: none;
  }

  .redeem-action strong {
    width: 100%;
    text-align: center;
  }

  .redeem-result {
    width: calc(100% - 26px);
  }

  .dashboard-callout {
    padding: 30px 16px 16px;
  }

  .dashboard-mock {
    min-height: 380px;
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .dashboard-mock aside {
    gap: 15px;
  }

  .dashboard-mock aside i {
    width: 15px;
    height: 15px;
  }

  .mock-logo {
    width: 27px;
    height: 27px;
  }

  .mock-main {
    padding: 12px 10px;
  }

  .mock-top > span {
    display: none;
  }

  .mock-stats > div {
    padding: 7px;
  }

  .mock-stats strong {
    font-size: 14px;
  }

  .mock-stats em {
    display: none;
  }

  .mock-chart {
    padding: 11px;
  }

  .mock-overlay {
    right: 8px;
    bottom: 8px;
    max-width: calc(100% - 54px);
  }

  .placeholder-features {
    grid-template-columns: 1fr;
  }

  .placeholder-features span {
    grid-template-columns: auto 1fr;
    min-height: 54px;
    justify-content: start;
    padding-inline: 16px;
  }
}

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

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

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}
