:root {
  --bg: #05070d;
  --bg-2: #0a1120;
  --bg-3: #101a2f;
  --panel: linear-gradient(180deg, rgba(14, 20, 34, 0.92), rgba(8, 12, 22, 0.9));
  --panel-soft: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(167, 208, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.12);
  --text: #f5f7fb;
  --muted: #a7b5cb;
  --muted-2: #7e8aa0;
  --gold: #ffd369;
  --gold-2: #ff9f2d;
  --cyan: #7ae3ff;
  --cyan-2: #29c7ff;
  --emerald: #70f2c3;
  --emerald-2: #24d3a6;
  --danger: #ff7a93;
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 211, 105, 0.18), transparent 26%),
    radial-gradient(circle at 86% 14%, rgba(41, 199, 255, 0.2), transparent 28%),
    radial-gradient(circle at 22% 86%, rgba(36, 211, 166, 0.08), transparent 22%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 38%, var(--bg-3) 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(circle at 24% 28%, rgba(122, 227, 255, 0.07), transparent 24%),
    radial-gradient(circle at 78% 68%, rgba(255, 211, 105, 0.07), transparent 20%);
  filter: blur(18px);
  animation: auroraShift 16s ease-in-out infinite alternate;
}

body::after {
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 92%);
}

a {
  color: inherit;
}

.page {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 64px;
}

.nav {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  margin-bottom: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(7, 11, 19, 0.82), rgba(7, 11, 19, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 211, 105, 0.26), rgba(41, 199, 255, 0.14)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 34px rgba(0, 0, 0, 0.18);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -60% -10% auto;
  height: 80%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: rotate(18deg);
  animation: shimmer 6s linear infinite;
}

.brand-mark span {
  position: relative;
  z-index: 1;
  font-size: 26px;
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  letter-spacing: 0.01em;
}

.brand-copy small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.nav-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav-toggle,
.drawer-close {
  appearance: none;
  border: 0;
  color: var(--text);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle:hover,
.drawer-close:hover {
  transform: translateY(-1px);
  background: rgba(122, 227, 255, 0.08);
  border-color: rgba(122, 227, 255, 0.2);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 18;
  border: 0;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(41, 199, 255, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.22), rgba(5, 7, 13, 0.58));
  backdrop-filter: blur(14px);
  transition: opacity 0.26s ease;
}

.drawer-head {
  display: none;
}

.drawer-brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.drawer-brand strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.drawer-brand small {
  color: var(--muted);
  font-size: 12px;
}

.drawer-close {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 22px;
}

.nav-link,
.button,
.button-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.nav-link,
.button-soft {
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.button {
  color: #111523;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 54%, #ff7a59 100%);
  box-shadow: 0 22px 40px rgba(255, 159, 45, 0.24);
}

.button:hover,
.button-soft:hover,
.nav-link:hover {
  transform: translateY(-2px);
}

.button-soft:hover,
.nav-link:hover {
  border-color: rgba(122, 227, 255, 0.26);
  background: rgba(122, 227, 255, 0.08);
}

.button:hover {
  box-shadow: 0 28px 46px rgba(255, 159, 45, 0.3);
}

.panel,
.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.panel::before,
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 40%, transparent 72%, rgba(255, 255, 255, 0.03));
  pointer-events: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 22px;
  align-items: stretch;
}

.hero-copy,
.hero-side {
  padding: 42px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--emerald);
  box-shadow: 0 0 0 5px rgba(112, 242, 195, 0.14);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 11ch;
  margin: 20px 0 16px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.92;
}

h1 span {
  background: linear-gradient(135deg, var(--gold) 0%, var(--cyan) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.02;
}

h3 {
  font-size: 20px;
  line-height: 1.1;
}

.lead {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ticker {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: 4px 0;
  mask-image: linear-gradient(90deg, transparent, black 9%, black 91%, transparent);
}

.ticker-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

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

.highlight-card {
  position: relative;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.highlight-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
}

.highlight-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.highlight-card strong {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  line-height: 1;
}

.hero-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  background:
    radial-gradient(circle at top right, rgba(41, 199, 255, 0.16), transparent 32%),
    radial-gradient(circle at bottom left, rgba(255, 211, 105, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.coin-stage {
  position: relative;
  min-height: 390px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 48%, rgba(122, 227, 255, 0.08), transparent 32%),
    radial-gradient(circle at 30% 25%, rgba(255, 211, 105, 0.12), transparent 24%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.coin-stage::before,
.coin-stage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.coin-stage::before {
  inset: 54px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: rotateHalo 16s linear infinite;
}

.coin-stage::after {
  inset: auto 18px 18px auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(112, 242, 195, 0.18), transparent 70%);
  filter: blur(12px);
}

.coin {
  position: absolute;
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 8px 18px rgba(255, 255, 255, 0.2),
    0 28px 60px rgba(0, 0, 0, 0.28);
  animation: floatY 6s ease-in-out infinite;
}

.coin-star,
.coin-ton {
  border-radius: 34px;
}

.coin-star {
  top: 28px;
  left: 26px;
  width: 176px;
  height: 176px;
  background: linear-gradient(145deg, #ffdf7e 0%, #ffb32f 58%, #ff8d30 100%);
  color: #121824;
  font-size: 64px;
}

.coin-ton {
  top: 138px;
  right: 30px;
  width: 146px;
  height: 146px;
  background: linear-gradient(145deg, #93eeff 0%, #35caff 58%, #188bff 100%);
  color: #071420;
  font-size: 54px;
  animation-delay: -2.1s;
}

.coin-ring {
  left: 130px;
  bottom: 34px;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  border: 16px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  box-shadow: none;
  animation: rotateHalo 14s linear infinite reverse;
}

.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
  animation: drift 7.2s ease-in-out infinite;
}

.chip-one {
  top: 22px;
  right: 20px;
}

.chip-two {
  left: 20px;
  bottom: 24px;
  animation-delay: -1.4s;
}

.chip-three {
  top: 222px;
  left: 30px;
  animation-delay: -2.6s;
}

.chip-four {
  right: 26px;
  bottom: 26px;
  animation-delay: -3.2s;
}

.status-card {
  padding: 22px;
  border-radius: 28px;
  background: rgba(5, 10, 18, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-card small {
  display: block;
  margin-bottom: 10px;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.status-card strong {
  display: block;
  font-size: 24px;
  line-height: 1.08;
}

.status-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.status-list span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.55;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 18px;
  align-items: start;
  margin-top: 20px;
  padding: 30px;
}

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

.feature-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(122, 227, 255, 0.08);
}

.feature-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.feature-card span:last-child,
.feature-card p {
  color: var(--muted);
  line-height: 1.65;
}

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

.card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.card h2,
.card h3 {
  margin-bottom: 12px;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.72;
}

.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.steps {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.steps b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #08111d;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-item {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item div:first-child {
  font-size: 24px;
}

.trust-item strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 17px;
}

.trust-item span {
  color: var(--muted);
  line-height: 1.62;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.faq summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 18px 54px 18px 20px;
  font-weight: 800;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cyan);
  font-size: 24px;
  line-height: 1;
}

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

.faq details[open] summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq details[open] summary::after {
  content: "−";
}

.faq .answer {
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.72;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.link-card {
  display: block;
  padding: 20px;
  border-radius: 22px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 227, 255, 0.26);
  background: rgba(122, 227, 255, 0.08);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.22);
}

.link-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.link-card span {
  color: var(--muted);
  line-height: 1.62;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 22px 24px;
}

.footer-copy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.footer-copy strong {
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

.document-wrap {
  max-width: 940px;
}

.document-hero {
  padding: 30px;
  margin-bottom: 18px;
}

.document-body {
  display: grid;
  gap: 18px;
}

.document-body section {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.document-body h2 {
  margin-bottom: 12px;
}

.document-body p,
.document-body li {
  color: var(--muted);
  line-height: 1.74;
}

.document-body ul {
  margin: 0;
  padding-left: 18px;
}

@keyframes auroraShift {
  0% {
    transform: translate3d(-1%, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(1.5%, -1.5%, 0) scale(1.04);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-120%) rotate(18deg);
  }
  100% {
    transform: translateX(180%) rotate(18deg);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes rotateHalo {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1120px) {
  .hero,
  .feature-band,
  .section-grid,
  .trust-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .page {
    width: min(100% - 24px, 100%);
  }

  .footer {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-links,
  .cta-row {
    flex-direction: column;
  }

  .nav-link,
  .button,
  .button-soft {
    width: 100%;
  }

  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-actions {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 19;
    width: min(380px, calc(100vw - 24px));
    max-height: calc(100svh - 24px);
    overflow: auto;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    border-radius: 30px;
    background:
      linear-gradient(180deg, rgba(12, 17, 31, 0.94), rgba(7, 11, 20, 0.92)),
      rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 34px 86px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(26px);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -10px, 0) scale(0.985);
    transition:
      opacity 0.26s ease,
      transform 0.26s ease;
  }

  .nav-actions::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 22%),
      radial-gradient(circle at top right, rgba(255, 211, 105, 0.08), transparent 26%);
    pointer-events: none;
  }

  .drawer-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-actions .nav-link {
    position: relative;
    z-index: 1;
    min-height: 58px;
    justify-content: flex-start;
    border-radius: 18px;
    opacity: 0;
    transform: translateY(8px);
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      background 0.22s ease,
      border-color 0.22s ease;
    transition-delay: calc(var(--stagger, 0) * 34ms);
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  body.nav-open .nav-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
  }

  body.nav-open .nav-actions .nav-link {
    opacity: 1;
    transform: translateY(0);
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-copy,
  .hero-side,
  .card,
  .document-hero,
  .document-body section,
  .feature-band {
    padding: 24px;
  }

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

  .coin-stage {
    min-height: 330px;
  }

  .coin-star {
    width: 150px;
    height: 150px;
    font-size: 56px;
  }

  .coin-ton {
    width: 126px;
    height: 126px;
    top: 132px;
    font-size: 46px;
  }

  .coin-ring {
    left: 100px;
    width: 134px;
    height: 134px;
  }

  /* Pull chips away from the (now smaller) coin layout so they do not
   * overlap the star / TON / ring on tablet-width screens. */
  .chip-one {
    top: 10px;
    right: 12px;
  }

  .chip-two {
    left: 12px;
    bottom: 10px;
  }

  .chip-three {
    display: none;
  }

  .chip-four {
    right: 12px;
    bottom: 10px;
  }
}

@media (max-width: 560px) {
  .page {
    padding-top: 16px;
    padding-bottom: 44px;
  }

  .nav {
    top: 10px;
    padding: 12px;
    border-radius: 20px;
    /* On narrow screens the sticky nav is translucent enough that
     * scrolling content bleeds through the header. Bump opacity so
     * anything behind reads cleanly as background, not a double layer. */
    background: linear-gradient(180deg, rgba(7, 11, 19, 0.96), rgba(7, 11, 19, 0.9));
  }

  .nav-actions {
    top: 10px;
    right: 10px;
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
    padding: 14px;
    border-radius: 24px;
  }

  .brand-copy small {
    font-size: 12px;
  }

  .hero-copy,
  .hero-side,
  .card,
  .document-hero,
  .document-body section {
    padding: 20px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  .lead {
    font-size: 16px;
  }

  .coin-stage {
    min-height: 296px;
  }

  .coin-star {
    top: 18px;
    left: 16px;
    width: 128px;
    height: 128px;
    font-size: 48px;
  }

  .coin-ton {
    top: 122px;
    right: 18px;
    width: 108px;
    height: 108px;
    font-size: 40px;
  }

  .coin-ring {
    left: 82px;
    bottom: 22px;
    width: 110px;
    height: 110px;
    border-width: 12px;
  }

  /* On very narrow screens the coin-stage gets too compact for the
   * absolute-positioned decorative chips — they ended up overlapping the
   * star/TON coins and each other. Chips live under an `aria-hidden`
   * parent, so hiding them keeps the decorative hero clean. */
  .float-chip {
    display: none;
  }

  .status-card strong {
    font-size: 21px;
  }
}

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