:root {
  --bg: #07111f;
  --panel: rgba(10, 22, 41, 0.72);
  --panel-strong: rgba(12, 25, 46, 0.92);
  --line: rgba(255, 255, 255, 0.09);
  --text: #f4f7fb;
  --muted: #9eb1c8;
  --primary-color: #6c5ce7;
  --secondary-color: #00d2d3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(108, 92, 231, 0.18), transparent 32%),
    radial-gradient(circle at bottom left, rgba(0, 210, 211, 0.12), transparent 28%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 17px;
  line-height: 1.75;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  box-shadow: 0 0 18px rgba(0, 210, 211, 0.45);
  transition: width 0.12s linear;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 210, 211, 0.18), rgba(108, 92, 231, 0.08) 40%, transparent 72%);
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: screen;
}

body.has-pointer-glow .cursor-glow {
  opacity: 1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(7, 17, 31, 0.78), rgba(7, 17, 31, 0.88));
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(22px);
  background: rgba(7, 17, 31, 0.76);
  border-bottom: 1px solid var(--line);
}

.site-footer {
  margin-top: 56px;
  border-top: 1px solid var(--line);
  background: rgba(7, 17, 31, 0.8);
}

.site-header .container,
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 42px;
  height: 42px;
}

.brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-caption {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  margin-top: 3px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid transparent;
  color: var(--muted);
  transition: 0.2s ease;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  border-color: rgba(0, 210, 211, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav a.is-active {
  box-shadow: inset 0 0 0 1px rgba(0, 210, 211, 0.08), 0 8px 20px rgba(0, 0, 0, 0.18);
}

.nav-doc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(76, 86, 231, 0.22);
}

.page-shell {
  padding: 28px 0 0;
}

/* Home: let hero background touch the header (no top spacer band). */
body.theme-neoglassaurora:not(.tr-page) .page-shell {
  padding-top: 0;
}

.page-frame {
  animation: page-enter 0.5s ease;
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: 42px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(108, 92, 231, 0.18), rgba(0, 210, 211, 0.06)),
    var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.34);
}

.hero::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -6%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.28), transparent 66%);
  filter: blur(16px);
}

.hero-grid,
.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 26px;
}

.section-grid.section-grid-single {
  grid-template-columns: minmax(0, 1fr) !important;
}

.eyebrow,
.section-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--secondary-color);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1,
.page-heading h1,
.section-copy h2 {
  margin: 0 0 14px;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  max-width: 12ch;
}

.hero p,
.page-heading p,
.section-copy p,
.section-copy li,
.section-copy small,
.accordion-answer p,
.asset-caption,
.timeline-item p,
.metric-label {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.button:hover,
.button-secondary:hover {
  transform: translateY(-1px);
}

.interactive-tilt {
  --tilt-x: 0px;
  --tilt-y: 0px;
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  transform: perspective(1200px) translate3d(var(--tilt-x), var(--tilt-y), 0) rotateX(var(--rotate-x)) rotateY(var(--rotate-y));
  transform-style: preserve-3d;
  transition: transform 0.18s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

.interactive-tilt.is-tilting {
  border-color: rgba(0, 210, 211, 0.2);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
}

.hero-visual,
.section-copy,
.section-assets,
.metric-card,
.info-card,
.timeline-item,
.accordion-item,
.token-card,
.quote-card,
.partner-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.metric-card {
  padding: 18px;
}

.metric-value {
  display: block;
  font-size: clamp(20px, 4vw, 34px);
  font-weight: 700;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.page-heading {
  padding: 42px 0 8px;
}

.section {
  padding: 20px 0;
}

.section-copy,
.section-assets {
  padding: 28px;
}

.feature-grid,
.partner-grid,
.insight-grid,
.token-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.info-card,
.token-card,
.quote-card,
.partner-card {
  padding: 22px;
}

.partner-card img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.2);
  opacity: 0.88;
}

.info-card h3,
.token-card h3,
.timeline-item h3,
.quote-card h3 {
  margin: 0 0 8px;
}

.asset-box {
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.asset-box img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.asset-box:hover img {
  transform: scale(1.03);
}

.asset-caption {
  padding: 14px 16px 18px;
  font-size: 13px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 17px;
  width: 2px;
  background: linear-gradient(var(--primary-color), var(--secondary-color));
}

.timeline-item {
  position: relative;
  padding: 20px 20px 20px 52px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  box-shadow: 0 0 0 6px rgba(0, 210, 211, 0.12);
}

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

.accordion-item {
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-trigger span:last-child {
  color: var(--secondary-color);
  font-size: 18px;
}

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 20px;
  transition: max-height 0.32s ease, opacity 0.24s ease, padding 0.24s ease;
}

.accordion-item.is-open .accordion-answer {
  opacity: 1;
  padding: 0 20px 18px;
}

.token-bar-list {
  display: grid;
  gap: 14px;
}

.token-bar-label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 7px;
  font-size: 14px;
  color: #dbe7ff;
}

.token-bar-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.token-bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  width: 0;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.tokenomics-chart-card {
  margin-top: 20px;
  padding: clamp(16px, 3vw, 28px);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tokenomics-chart-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

/* Pie labels extend past wedge edges — don't clip (hero-visual defaults to hidden) */
.tokenomics-visual.hero-visual {
  overflow: visible;
}

.tokenomics-chart-core {
  fill: rgba(11, 16, 32, 0.98);
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1.5;
}

.tokenomics-chart-symbol {
  fill: #f4f7fb;
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 700;
}

.tokenomics-chart-supply {
  fill: #c6cfdd;
  font-size: clamp(11px, 2.2vw, 14px);
  font-weight: 600;
}

.tokenomics-slice-label {
  fill: #f4f8ff;
  font-size: clamp(12px, 2.6vw, 16px);
  font-weight: 600;
}

.tokenomics-chart-svg .tokenomics-slice-connector {
  stroke: rgba(236, 244, 255, 0.42);
  stroke-width: 1.2;
  fill: none;
}

.tokenomics-chart-svg .tokenomics-slice-callout {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 9.75px;
  font-weight: 600;
  fill: #f0f4fc;
  paint-order: stroke fill;
  stroke: rgba(5, 11, 22, 0.82);
  stroke-width: 2.2px;
  stroke-linejoin: round;
}

.tokenomics-chart-svg .tokenomics-slice-pct {
  font-size: 11px;
  font-weight: 700;
  fill: #ffffff;
  paint-order: stroke fill;
  stroke: rgba(5, 11, 22, 0.85);
  stroke-width: 2.4px;
  stroke-linejoin: round;
}

/* ── Token section: donut + HTML legend (all slices readable) + card accents ── */
.tokenomics-layout-redesign.tokenomics-main-grid {
  gap: clamp(20px, 3vw, 30px);
}

.token-points-grid {
  gap: clamp(16px, 2.2vw, 22px);
}

.token-insight-deck {
  gap: clamp(16px, 2.2vw, 22px);
}

.tokenomics-allocation-panel {
  display: grid;
  grid-template-columns: minmax(200px, 1.1fr) minmax(260px, 1fr);
  gap: clamp(18px, 2.8vw, 28px);
  align-items: center;
  padding: clamp(20px, 3vw, 32px);
  border-radius: 22px;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 42%,
    rgba(8, 18, 36, 0.72) 100%
  );
  border: 1px solid var(--line);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
}

.tokenomics-chart-pane {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tokenomics-chart-pane .tokenomics-visual.hero-visual {
  min-height: 0;
  width: 100%;
  max-width: min(400px, 100%);
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.tokenomics-chart-pane .tokenomics-chart-card {
  margin-top: 0;
  padding: clamp(8px, 1.5vw, 16px);
  background: rgba(255, 255, 255, 0.03);
}

.tokenomics-legend-card {
  min-width: 0;
}

.tokenomics-legend-title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary-color);
}

.token-allocation-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.token-allocation-legend li {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.token-legend-swatch {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--legend-color, #888);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.token-legend-name {
  font-size: clamp(13px, 1.35vw, 15px);
  line-height: 1.45;
  color: var(--text);
  font-weight: 500;
}

.token-legend-pct {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 800;
  color: var(--secondary-color);
  font-variant-numeric: tabular-nums;
  line-height: 1.45;
  text-align: end;
}

.token-card--accent {
  position: relative;
  overflow: hidden;
}

.token-card--accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0.92;
  border-radius: inherit;
}

.info-card--accent {
  position: relative;
  overflow: hidden;
}

.info-card--accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0.85;
}

@media (max-width: 900px) {
  .tokenomics-allocation-panel {
    grid-template-columns: 1fr;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.muted-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.list-block h3 {
  margin: 18px 0 10px;
}

.site-footer p {
  color: var(--muted);
}

.timeline-item.is-active,
.token-card.is-active,
.info-card.is-active,
.quote-card.is-active,
.metric-card.is-active {
  border-color: rgba(0, 210, 211, 0.22);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

@media (max-width: 980px) {
  .hero-grid,
  .section-grid,
  .feature-grid,
  .partner-grid,
  .insight-grid,
  .token-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 28px;
  }
}

@media (max-width: 720px) {
  .site-header .container,
  .site-footer .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
  }

  .nav-actions {
    width: 100%;
  }

  .site-nav a {
    flex: 1 1 auto;
    text-align: center;
  }

  .nav-doc-button {
    width: 100%;
  }
}


/* ── Hero: full-viewport height, left-text right-image ── */
.hero-variant {
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-split-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 0 8px;
}

.hero-neo .hero-split-shell {
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 0;
}

.hero-variant .hero-core {
  padding-left: 24px;
  padding-right: 12px;
}

.hero-variant .hero-core h2 {
  max-width: 18ch;
  line-height: 1.08;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-actions .button {
  align-self: flex-start;
  display: inline-flex;
  width: auto;
}

/* ── Section min-height: each section fills most of screen ── */
.section {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-margin-top: 72px;
}

.section.hero-variant {
  min-height: calc(100vh - 72px);
}

/* Home hero: former illustration as full-section background */
#hero.section.hero-variant {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
}

#hero.section.hero-variant::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets/hero.png") center center / cover no-repeat;
}

#hero.section.hero-variant::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(5, 11, 22, 0.84) 0%,
    rgba(5, 11, 22, 0.68) 38%,
    rgba(5, 11, 22, 0.36) 72%,
    rgba(5, 11, 22, 0.20) 100%
  );
}

#hero.section.hero-variant .hero-split-shell {
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr;
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

/* Home hero: copy stack — airy spacing, uses more horizontal room */
#hero.section.hero-variant .hero-core {
  padding-left: clamp(14px, 2.8vw, 24px);
  padding-right: clamp(14px, 2.2vw, 20px);
  padding-top: clamp(28px, 6vh, 56px);
  padding-bottom: clamp(24px, 5vh, 48px);
  gap: clamp(40px, 7vw, 76px);
  justify-content: center;
}

#hero.section.hero-variant .hero-lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
}

#hero.section.hero-variant .hero-core h2 {
  max-width: none;
  margin: 0;
  margin-bottom: clamp(18px, 2.8vw, 28px);
  font-size: clamp(1.85rem, 4vw + 0.55rem, 3.45rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

#hero.section.hero-variant .hero-sub {
  margin: 0;
  font-size: clamp(1rem, 0.65vw + 0.85rem, 1.14rem);
  line-height: 1.78;
  max-width: min(68ch, 100%);
  color: rgba(236, 244, 255, 0.9);
}

#hero.section.hero-variant .hero-actions {
  margin-top: clamp(28px, 4.5vw, 44px);
  gap: clamp(14px, 2.2vw, 18px);
}

#hero.section.hero-variant .hero-actions .button,
#hero.section.hero-variant .hero-actions .button-secondary {
  min-height: clamp(48px, 5.5vw, 54px);
  padding: 0 clamp(18px, 3vw, 26px);
  border-radius: clamp(12px, 1.5vw, 14px);
  font-size: clamp(0.9rem, 0.5vw + 0.82rem, 1rem);
}

/* KPI band: fluid columns, wrap on small screens (no forced horizontal scroll) */
#hero.section.hero-variant .hero-kpi-strip {
  margin-top: 0;
  margin-bottom: 0;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 148px), 1fr));
  gap: clamp(10px, 1.8vw, 14px);
}

#hero.section.hero-variant .hero-kpi-strip .metric-card {
  min-height: clamp(96px, 14vw, 112px);
  padding: clamp(12px, 2.2vw, 16px) clamp(12px, 1.8vw, 16px);
}

#hero.section.hero-variant .hero-kpi-strip .metric-value {
  font-size: clamp(1rem, 1.1vw + 0.75rem, 1.45rem);
}

#hero.section.hero-variant .hero-kpi-strip .metric-label {
  font-size: clamp(10px, 0.75vw + 0.55rem, 12px);
}

@media (max-width: 520px) {
  #hero.section.hero-variant .hero-lead {
    max-width: 100%;
  }

  #hero.section.hero-variant .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  #hero.section.hero-variant .hero-actions .button,
  #hero.section.hero-variant .hero-actions .button-secondary {
    width: 100%;
    justify-content: center;
  }
}

.section.tokenomics-table,
.section.timeline-roadmap,
.section.team-grid,
.section.faq-accordion {
  min-height: auto;
  padding-top: 56px;
  padding-bottom: 56px;
}

/* ── About section: two-column highlight layout ── */
.section.content-section.editorial-layout .section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.section.content-section .section-copy {
  padding: 40px 44px;
}

.section.content-section .section-copy > h2 {
  margin-bottom: 18px;
}

/* ── Overview: compact copy + split panels + feature cards ── */
.overview-section {
  min-height: auto;
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(40px, 6vw, 72px);
  scroll-margin-top: 72px;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.overview-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(5, 11, 22, 0.58), rgba(5, 11, 22, 0.72)),
    url("assets/overview.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.95;
  pointer-events: none;
}

.overview-container {
  position: relative;
  z-index: 1;
}

.overview-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.overview-header {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.overview-header h2 {
  margin: 0 0 clamp(14px, 2vw, 20px);
}

/* Category section titles — same scale (Overview, Token, Roadmap, Team, Resources) */
.overview-header h2,
.tr-section-head h2,
.tokenomics-shell > h2,
.section.team-grid .section-copy > h2,
.section.faq-accordion .section-copy > h2,
.section.content-section .section-copy > h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.overview-lede {
  margin: 0;
  max-width: min(62ch, 100%);
  font-size: clamp(1.05rem, 0.95vw + 0.92rem, 1.2rem);
  line-height: 1.78;
  color: var(--muted);
}

.overview-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  margin-bottom: clamp(24px, 3.5vw, 36px);
}

.overview-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px) clamp(22px, 3.2vw, 30px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
}

.overview-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  opacity: 0.85;
  border-radius: 20px 0 0 20px;
}

.overview-card-title {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary-color);
}

.overview-card--solution p {
  margin: 0;
  font-size: clamp(0.98rem, 0.55vw + 0.9rem, 1.08rem);
  line-height: 1.75;
  color: var(--muted);
}

.overview-bullets {
  margin: 0;
  padding: 0 0 0 1.15rem;
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: clamp(0.98rem, 0.55vw + 0.9rem, 1.08rem);
  line-height: 1.7;
}

.overview-bullets li::marker {
  color: var(--secondary-color);
}

.overview-bullets strong {
  color: var(--text);
  font-weight: 650;
}

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

.overview-feature-card {
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 45%,
    rgba(8, 18, 36, 0.5) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: clamp(22px, 2.8vw, 28px);
  min-height: 148px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
  position: relative;
}

.overview-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0.75;
}

.overview-feature-card h3 {
  margin: 12px 0 10px;
  font-size: clamp(1.05rem, 1vw + 0.9rem, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.overview-feature-card p {
  margin: 0;
  font-size: clamp(0.94rem, 0.5vw + 0.86rem, 1.03rem);
  line-height: 1.7;
  color: var(--muted);
}

.overview-feature-card strong {
  color: rgba(236, 244, 255, 0.92);
  font-weight: 600;
}

@media (max-width: 900px) {
  .overview-split,
  .overview-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Home + standalone: Roadmap as its own section (full-width phase grid) */
.home-roadmap-section {
  min-height: auto;
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(40px, 6vw, 72px);
  scroll-margin-top: 72px;
}

.home-roadmap-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* ── Solutions / immersive sections: full-width image bg ── */
.section.immersive-layout,
.section.bento-cards {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
}

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

.section-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.section-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(5, 11, 22, 0.92) 0%,
    rgba(5, 11, 22, 0.78) 50%,
    rgba(5, 11, 22, 0.60) 100%
  );
}

.section.immersive-layout > .section-meta,
.section.immersive-layout > .section-grid,
.section.immersive-layout > .section-copy,
.section.bento-cards > .section-meta,
.section.bento-cards > .section-grid,
.section.bento-cards > .section-copy {
  position: relative;
  z-index: 2;
}

/* ── Team section: full-viewport bleed + photo BG (same breakout pattern as #hero) ── */
.section.team-grid {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
}

.section.team-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.42) 40%,
    rgba(0, 0, 0, 0.62) 100%
  );
  pointer-events: none;
}

.section.team-grid .section-bg-image {
  inset: 0;
  width: auto;
  transform: none;
}

.section.team-grid .overview-container {
  position: relative;
  z-index: 2;
}

/* ── Resources section: full-bleed background image ── */
.section.faq-accordion {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  box-sizing: border-box;
  scroll-margin-top: 72px;
}

.section.faq-accordion::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(180deg, rgba(5, 11, 22, 0.58), rgba(5, 11, 22, 0.72)),
    url("assets/re.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.section.faq-accordion > * {
  position: relative;
  z-index: 2;
}

.section.faq-accordion .section-copy.faq-shell {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.center-hero {
  margin-top: 28px;
}


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

/* ── Team member cards grid ── */
.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 640px) {
  .team-cards-grid {
    grid-template-columns: 1fr;
  }
}

.team-member-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 24px 24px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(10px);
  transition: transform 0.25s, box-shadow 0.25s;
}

.team-member-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.35);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid;
  overflow: hidden;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.team-avatar svg {
  width: 100%;
  height: 100%;
}

.team-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary, #1A6FFF);
  margin-bottom: 10px;
}

.team-bio {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

.tokenomics-main-grid,
.roadmap-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}


.center-hero .section-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(108, 92, 231, 0.18), rgba(0, 210, 211, 0.06)),
    var(--panel, rgba(12, 25, 46, 0.92));
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.34);
}

.center-hero .section-copy h2 {
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: 1.05;
  max-width: 9.2ch;
}

.center-hero .section-assets,
.tokenomics-visual {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-hero .section-assets {
  padding: 18px;
}

.center-hero .asset-box {
  flex: 1 1 auto;
  min-height: 100%;
  height: 100%;
}

.center-hero .asset-box img {
  min-height: 100%;
}

.center-hero .asset-hero {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 210, 211, 0.12), transparent 22%),
    radial-gradient(circle at 82% 14%, rgba(108, 92, 231, 0.16), transparent 26%),
    rgba(10, 20, 38, 0.92);
}

.center-hero .asset-hero img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.center-hero .section-copy > p,
.editorial-layout .section-copy > p,
.editorial-layout .section-copy .list-block,
.immersive-copy > p {
  max-width: 58ch;
}

.editorial-layout .section-grid {
  align-items: stretch;
}

.editorial-layout.media-left .section-copy {
  order: 2;
}

.editorial-layout.media-left .section-assets {
  order: 1;
}

.editorial-layout.media-right .section-copy {
  order: 1;
}

.editorial-layout.media-right .section-assets {
  order: 2;
}

.editorial-layout .section-assets {
  min-height: 440px;
}

.editorial-layout .section-copy,
.editorial-layout .section-assets {
  height: 100%;
}

.editorial-layout .section-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.editorial-layout .asset-box {
  height: 100%;
}

.editorial-layout .asset-box img {
  min-height: 100%;
}

.feature-showcase .section-copy {
  padding-top: 34px;
  padding-bottom: 34px;
}

.tokenomics-shell,
.faq-shell {
  display: grid;
  gap: 20px;
}

.section-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--muted, #9eb1c8);
}

.section-copy > h2 {
  letter-spacing: normal;
  word-break: normal;
}

/* Tokenomics KPI row: see site_marketing_layout.site_kpi_strip_css (site-only, not PDF). */

.metric-card,
.token-card,
.info-card,
.timeline-item,
.accordion-item,
.asset-box,
.section-copy,
.section-assets {
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.metric-card {
  padding: 18px;
}

.metric-value {
  display: block;
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 700;
  margin-bottom: 8px;
}

.metric-label {
  color: var(--muted, #9eb1c8);
  line-height: 1.6;
}

.tokenomics-visual .tokenomics-chart-card {
  max-width: 420px;
  margin: 0 auto;
  padding: clamp(10px, 2vw, 18px);
  border: 0;
  background: transparent;
}

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

.token-card,
.info-card {
  padding: 22px;
}

.token-card h3,
.info-card h3,
.timeline-item h3 {
  margin: 0 0 8px;
}

.muted-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: var(--muted, #9eb1c8);
}

.asset-box {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.asset-box img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.parallax-media {
  transform: translate3d(0, 0, 0);
  transition: transform 0.18s ease;
  will-change: transform;
}

.hero-scene::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero-scene::after {
  content: "";
  position: absolute;
  inset: auto auto 14% 8%;
  width: 42%;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 210, 211, 0.18), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-float-card {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 170px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(16, 28, 52, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  pointer-events: none;
  animation: float-card 5.8s ease-in-out infinite;
}

.hero-float-card strong {
  font-size: 13px;
}

.hero-float-card span {
  color: var(--muted, #9eb1c8);
  font-size: 11px;
  line-height: 1.5;
}

.hero-float-primary {
  top: 18px;
  left: 18px;
}

.hero-float-secondary {
  right: 18px;
  bottom: 18px;
  animation-delay: 1.2s;
}

.hero-variant .hero-core {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.hero-variant .hero-side {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media-plain {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line, rgba(255, 255, 255, 0.1));
  background: var(--panel, rgba(10, 22, 41, 0.72));
}

.hero-media-plain img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.hero-split-shell {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
}

.hero-variant-media-left .hero-split-shell {
  grid-template-columns: 0.92fr 1.08fr;
}

.hero-dual-shell {
  display: grid;
  grid-template-columns: 0.78fr 1.2fr 0.78fr;
  gap: 16px;
  align-items: center;
}

.hero-docs-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: start;
}

.hero-video-stage {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 460px;
  border: 1px solid var(--line, rgba(255, 255, 255, 0.1));
}

.hero-video,
.hero-variant-video .hero-media-plain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.84) 0%, rgba(7, 17, 31, 0.46) 55%, rgba(7, 17, 31, 0.32) 100%),
    radial-gradient(circle at 80% 25%, rgba(0, 210, 211, 0.18), transparent 34%);
}

.hero-video-copy {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  padding: 38px;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.background-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.background-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(0.72);
}

.immersive-layout .section-meta {
  margin-bottom: 18px;
}

.immersive-feature {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line, rgba(255,255,255,0.09));
  background: rgba(8, 18, 33, 0.84);
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.32);
}

.immersive-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.92) 0%, rgba(7, 17, 31, 0.78) 44%, rgba(7, 17, 31, 0.36) 100%),
    radial-gradient(circle at 75% 25%, rgba(108, 92, 231, 0.24), transparent 34%);
}

.immersive-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 56px 48px;
}

.immersive-copy h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.06;
}

.immersive-copy p {
  max-width: 56ch;
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.roadmap-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.roadmap-background .asset,
.roadmap-background .asset-box {
  position: absolute;
  inset: 0;
  margin: 0;
  height: 100%;
  border: 0;
  border-radius: inherit;
  background: transparent;
  box-shadow: none;
}

.roadmap-background .asset-box img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) brightness(0.48);
}

.roadmap-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.88) 0%, rgba(7, 17, 31, 0.76) 34%, rgba(7, 17, 31, 0.72) 100%),
    radial-gradient(circle at 22% 35%, rgba(0, 210, 211, 0.14), transparent 28%),
    radial-gradient(circle at 74% 18%, rgba(108, 92, 231, 0.16), transparent 28%);
  z-index: 1;
}

.roadmap-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: 560px;
  padding: 28px;
}

.roadmap-phase-grid {
  width: min(100%, 760px);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Index / token page: four roadmap phases in a 2×2 grid */
.roadmap-phase-grid.home-roadmap-phase-grid {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.roadmap-phase-card {
  min-height: 210px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(10, 22, 41, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.roadmap-phase-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 210, 211, 0.18);
  color: var(--secondary-color, #00d2d3);
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.roadmap-figure-below {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}

.roadmap-figure-below .asset-box {
  max-width: 720px;
  width: 100%;
  min-height: 0;
  box-shadow: none;
}

.roadmap-figure-below .asset-box img {
  width: 100%;
  max-height: 420px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.roadmap-phase-card h3 {
  margin: 0 0 10px;
}

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

.accordion-item {
  overflow: hidden;
}

.accordion-trigger {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
}

.accordion-trigger::-webkit-details-marker {
  display: none;
}

.accordion-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, opacity 0.24s ease, padding 0.24s ease;
}

.accordion-item[open] .accordion-answer {
  max-height: 400px;
  opacity: 1;
  padding: 0 20px 18px;
}

.accordion-answer p {
  margin: 0;
}

.magnetic-button {
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.tokenomics-note {
  margin: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  filter: drop-shadow(0 10px 22px rgba(76, 86, 231, 0.22));
}

.site-header .container {
  flex-wrap: nowrap;
  gap: 12px;
}

.brand-caption {
  display: none;
}

.site-nav {
  flex-wrap: nowrap;
  gap: 12px;
}

.site-nav a {
  padding: 10px 16px;
}

.nav-doc-button {
  min-height: 46px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

body.theme-futuristic3d .container {
  width: min(1320px, calc(100% - 40px));
}

body.theme-futuristic3d .page-shell {
  padding-top: 40px;
}

body.theme-futuristic3d .section {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: none;
  background: linear-gradient(145deg, rgba(10, 22, 41, 0.84), rgba(8, 18, 34, 0.72));
  box-shadow: 0 28px 70px rgba(2, 8, 23, 0.28);
  margin-bottom: 28px;
  padding: 20px;
}

body.theme-futuristic3d .section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(0, 210, 211, 0.12), transparent 35%);
}

body.theme-futuristic3d .section-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 24px;
}

body.theme-futuristic3d .section:nth-of-type(even) .section-grid {
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.15fr);
}

body.theme-futuristic3d .section:nth-of-type(even) .section-copy {
  order: 2;
}

body.theme-futuristic3d .section:nth-of-type(even) .section-assets {
  order: 1;
}

body.theme-darktech .container {
  width: min(1240px, calc(100% - 44px));
}

body.theme-darktech .section {
  border-radius: 0;
  border: none;
  background: linear-gradient(180deg, rgba(10, 22, 41, 0.9), rgba(10, 22, 41, 0.72));
  margin-bottom: 24px;
}

body.theme-darktech .section-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
}

body.theme-lightcorporate .container {
  width: min(1140px, calc(100% - 56px));
}

body.theme-lightcorporate .site-header {
  backdrop-filter: none;
  border-bottom: 2px solid rgba(15, 23, 42, 0.1);
}

body.theme-lightcorporate .section {
  border-radius: 0;
  border: none;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}

body.theme-lightcorporate .section-copy h2 {
  letter-spacing: 0;
  font-size: clamp(28px, 3.3vw, 44px);
}

body.theme-neoglassaurora .container {
  width: min(1280px, calc(100% - 40px));
}

body.theme-neoglassaurora .section {
  border-radius: 0;
  border: none;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

/* Like Overview/Roadmap: shell wrappers are not a second card. */
.section.tokenomics-table .section-copy.tokenomics-shell,
.section.faq-accordion .section-copy.faq-shell,
.section.team-grid .section-copy,
.section.longform-article .section-copy {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

body.theme-neoglassaurora .section-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
}

body.theme-minimaldocs .container {
  width: min(1080px, calc(100% - 56px));
}

body.theme-minimaldocs .site-header {
  backdrop-filter: none;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

body.theme-minimaldocs .section {
  border-radius: 0;
  border: none;
  background: rgba(8, 18, 34, 0.58);
  box-shadow: none;
  margin-bottom: 18px;
}

body.theme-minimaldocs .section-grid,
body.theme-minimaldocs .tokenomics-main-grid,
body.theme-minimaldocs .roadmap-layout {
  grid-template-columns: 1fr;
  gap: 14px;
}

body.theme-minimaldocs .section-copy,
body.theme-minimaldocs .section-assets {
  padding: 16px;
}

body.theme-minimaldocs .section-copy h2 {
  font-size: clamp(24px, 3.1vw, 34px);
}

body.theme-gradientstartup .container {
  width: min(1260px, calc(100% - 44px));
}

body.theme-gradientstartup .section {
  border-radius: 0;
  border: none;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(145deg, rgba(108, 92, 231, 0.22), rgba(0, 210, 211, 0.12)),
    rgba(8, 18, 34, 0.8);
}

body.theme-gradientstartup .section-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

body.theme-gradientstartup .section-copy h2 {
  font-size: clamp(32px, 4.6vw, 58px);
}

.section-copy,
.section-assets {
  padding: 22px;
}

.section-copy p,
.section-copy li,
.accordion-answer p,
.timeline-item p {
  line-height: 1.62;
}

.timeline {
  gap: 12px;
}

.timeline-item {
  padding: 16px 16px 16px 44px;
}

.accordion-trigger {
  padding: 15px 18px;
}

.accordion-answer {
  padding: 0 18px;
}

.accordion-item[open] .accordion-answer {
  padding: 0 18px 16px;
}

.site-footer .container {
  align-items: flex-start;
  flex-direction: column;
}

.footer-meta {
  font-size: 13px;
  color: var(--muted, #9eb1c8);
}

@media (max-width: 980px) {
  .hero-split-shell,
  .hero-dual-shell,
  .hero-docs-shell {
    grid-template-columns: 1fr;
  }

  .hero-video-stage {
    min-height: 360px;
  }

  .hero-video-copy {
    width: 100%;
    padding: 24px;
  }

  .site-header .container {
    flex-wrap: nowrap;
    overflow-x: auto;
    align-items: center;
  }

  .site-nav {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-actions {
    width: auto;
    flex: 0 0 auto;
  }

  .center-hero .section-grid,
  .tokenomics-main-grid,
  .token-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .center-hero .section-copy {
    padding: 28px;
  }

  .editorial-layout.media-left .section-copy,
  .editorial-layout.media-left .section-assets,
  .editorial-layout.media-right .section-copy,
  .editorial-layout.media-right .section-assets {
    order: initial;
  }

  .immersive-feature {
    min-height: 420px;
  }

  .immersive-copy {
    padding: 34px 26px;
  }

  .roadmap-stage,
  .roadmap-content {
    min-height: 0;
  }

  .roadmap-content {
    padding: 22px;
  }

  .roadmap-phase-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .roadmap-phase-grid.home-roadmap-phase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header .container,
  .site-footer .container {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .site-nav,
  .nav-actions {
    width: 100%;
  }

  .site-nav {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .site-nav a {
    flex: 1 1 auto;
    text-align: center;
  }

  .nav-doc-button {
    width: 100%;
  }
}


/* --- site-only: KPI strip (not used by PDF HTML) --- */
.site-kpi-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px 14px;
  width: 100%;
  margin: 0 0 12px;
}

.site-kpi-strip .metric-card {
  margin: 0;
  padding: 16px 14px 16px 16px;
  border-radius: 16px;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.09) 0%,
    rgba(255, 255, 255, 0.03) 48%,
    rgba(8, 18, 36, 0.55) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 112px;
  position: relative;
  overflow: hidden;
}

.site-kpi-strip .metric-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 16px 0 0 16px;
  background: linear-gradient(
    180deg,
    var(--primary-color, #6c5ce7),
    var(--secondary-color, #00d2d3)
  );
  opacity: 0.9;
}

.site-kpi-strip .metric-value {
  font-size: clamp(17px, 1.55vw, 26px);
  font-weight: 800;
  margin-bottom: 6px;
  padding-left: 10px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.site-kpi-strip .metric-label {
  font-size: 12px;
  padding-left: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.88;
}

@media (max-width: 1100px) {
  .site-kpi-strip:not(.hero-kpi-strip) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-kpi-strip:not(.hero-kpi-strip) {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .site-kpi-strip:not(.hero-kpi-strip) .metric-card {
    flex: 0 0 min(82vw, 240px);
    scroll-snap-align: start;
    min-height: 104px;
  }
}

/* ── Token & Roadmap standalone page + home teaser ── */
.tr-page a.brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tr-page-main > .section {
  min-height: auto;
}

.tr-page-hero {
  padding-top: clamp(24px, 5vw, 48px);
  padding-bottom: clamp(8px, 2vw, 16px);
  scroll-margin-top: 72px;
}

.tr-page-hero-inner {
  max-width: min(46rem, 100%);
}

.tr-page-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary-color);
}

.tr-page-hero h1 {
  margin: 0 0 clamp(12px, 2vw, 18px);
  font-size: clamp(2rem, 4.5vw + 0.6rem, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.tr-page-lede {
  margin: 0;
  font-size: clamp(1rem, 0.85vw + 0.88rem, 1.16rem);
  line-height: 1.68;
  color: var(--muted);
  max-width: 52ch;
}

.tr-economics-section,
.tr-roadmap-section {
  padding-top: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(28px, 4vw, 48px);
  scroll-margin-top: 72px;
}

.tr-economics-inner,
.tr-roadmap-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.tr-section-head {
  margin-bottom: clamp(22px, 3.5vw, 32px);
}

.tr-section-head h2 {
  margin: 0 0 10px;
}

.tr-section-lede {
  margin: 0;
  max-width: min(58ch, 100%);
  font-size: clamp(0.95rem, 0.55vw + 0.86rem, 1.05rem);
  line-height: 1.65;
  color: var(--muted);
}

/* ── Roadmap: vertical layout (no new sections) ── */
.roadmap-vertical-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
}

.roadmap-vertical-visual {
  padding: 18px;
  border-radius: 22px;
  position: sticky;
  top: 92px;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 42%,
    rgba(8, 18, 36, 0.62) 100%
  );
  border: 1px solid rgba(186, 205, 240, 0.26);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  align-self: stretch;
}

.roadmap-vertical-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(0, 194, 255, 0.22), transparent 55%),
    radial-gradient(circle at 90% 30%, rgba(26, 111, 255, 0.16), transparent 58%);
  opacity: 0.9;
  pointer-events: none;
}

.roadmap-vertical-visual img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  display: block;
  opacity: 0.95;
  position: relative;
  z-index: 1;
  object-fit: cover;
}

.roadmap-vertical-stages {
  display: grid;
  gap: clamp(14px, 2.6vw, 18px);
  position: relative;
  padding-left: 10px;
  align-items: start;
  align-content: start;
  grid-auto-rows: max-content;
}

.roadmap-vertical-stages::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(0, 194, 255, 0.65),
    rgba(26, 111, 255, 0.35),
    rgba(52, 211, 153, 0.55)
  );
  border-radius: 999px;
  opacity: 0.65;
  filter: blur(0.1px);
}

.roadmap-stage {
  padding: clamp(14px, 2.2vw, 18px);
  border-radius: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: auto;
  align-self: start;
}

.roadmap-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 14% 18%,
      rgba(0, 194, 255, 0.14),
      transparent 48%
    ),
    radial-gradient(circle at 90% 8%, rgba(26, 111, 255, 0.12), transparent 46%);
  opacity: 0.85;
  pointer-events: none;
}

.roadmap-stage::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 22px 0 0 22px;
  background: linear-gradient(180deg, var(--secondary-color), var(--primary-color));
  opacity: 0.85;
}

.roadmap-stage-head {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.roadmap-stage-index {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(
    165deg,
    rgba(0, 194, 255, 0.22),
    rgba(26, 111, 255, 0.12)
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  font-weight: 800;
  color: var(--text);
  position: relative;
}

.roadmap-stage-index::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 18px;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.18), transparent 62%);
  opacity: 0.9;
  pointer-events: none;
}

.roadmap-stage-kicker {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 4px;
}

.roadmap-stage h3 {
  margin: 0;
  position: relative;
  z-index: 1;
}

.roadmap-stage .muted-list {
  position: relative;
  z-index: 1;
  gap: 6px;
  font-size: clamp(0.96rem, 0.35vw + 0.9rem, 1.05rem);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .roadmap-vertical-layout {
    grid-template-columns: 1fr;
  }
  .roadmap-vertical-visual {
    position: relative;
    top: auto;
    height: auto;
  }
  .roadmap-vertical-stages {
    padding-left: 0;
  }
  .roadmap-vertical-stages::before {
    display: none;
  }
}

.tr-allocation-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 1.05fr);
  gap: clamp(18px, 2.8vw, 26px);
  align-items: stretch;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.tr-chart-panel {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(16px, 2.5vw, 22px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  overflow: visible;
}

.tr-chart-panel .tokenomics-chart-card {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.tr-summary-cards {
  display: grid;
  gap: clamp(14px, 2vw, 18px);
}

.tr-card {
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 48%,
    rgba(8, 18, 36, 0.52) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  padding: clamp(18px, 2.5vw, 24px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.tr-card h3 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary-color);
}

.tr-card-list {
  margin: 0;
  padding: 0 0 0 1.1rem;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: clamp(0.9rem, 0.45vw + 0.84rem, 0.98rem);
  line-height: 1.52;
}

.tr-card-list strong {
  color: var(--text);
  font-weight: 650;
}

.tr-vesting-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.tr-vesting-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  border-radius: 20px 0 0 20px;
  opacity: 0.9;
}

.tr-vesting-title {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary-color);
  padding-left: 8px;
}

.tr-vesting-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 22px);
  padding-left: 8px;
}

.tr-vesting-item {
  padding: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.tr-vesting-item:last-child {
  border-right: none;
}

.tr-vesting-pct {
  display: block;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 4px;
}

.tr-vesting-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.tr-vesting-item p {
  margin: 0;
  font-size: clamp(0.86rem, 0.4vw + 0.8rem, 0.94rem);
  line-height: 1.58;
  color: var(--muted);
}

.tr-roadmap-art {
  margin-bottom: clamp(22px, 3.5vw, 32px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(ellipse 70% 80% at 18% 40%, rgba(26, 111, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 70% at 82% 30%, rgba(0, 194, 255, 0.1), transparent 50%),
    rgba(8, 16, 32, 0.72);
  padding: clamp(12px, 2vw, 20px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tr-roadmap-svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(240px, 32vw);
}

.tr-phase-deck {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 18px);
}

.tr-phase-card {
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(18px, 2.5vw, 22px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
  position: relative;
}

.tr-phase-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0.75;
}

.tr-phase-kicker {
  display: inline-block;
  margin: 10px 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--secondary-color);
}

.tr-phase-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 0.9vw + 0.92rem, 1.2rem);
  letter-spacing: -0.02em;
}

.tr-phase-list {
  margin: 0;
  padding: 0 0 0 1.05rem;
  color: var(--muted);
  font-size: clamp(0.88rem, 0.4vw + 0.82rem, 0.95rem);
  line-height: 1.55;
  display: grid;
  gap: 6px;
}

.tr-roadmap-footnote {
  margin: clamp(28px, 4vw, 40px) 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.tr-roadmap-footnote a {
  color: var(--secondary-color);
  text-decoration: none;
}

.tr-roadmap-footnote a:hover {
  text-decoration: underline;
}

/* Home: token teaser */
.tr-teaser-section {
  min-height: auto;
  padding-top: clamp(36px, 6vw, 64px);
  padding-bottom: clamp(36px, 6vw, 64px);
}

.tr-teaser-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.tr-teaser-inner h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.tr-teaser-lede {
  margin: 0 auto 22px;
  max-width: min(52ch, 100%);
  line-height: 1.65;
  color: var(--muted);
}

.tr-teaser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 900px) {
  .tr-allocation-row {
    grid-template-columns: 1fr;
  }

  .tr-vesting-grid {
    grid-template-columns: 1fr;
  }

  .tr-vesting-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
  }

  .tr-vesting-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .tr-phase-deck {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .tr-teaser-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tr-teaser-actions .button,
  .tr-teaser-actions .button-secondary {
    width: 100%;
    justify-content: center;
  }
}
