: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;

  /* Typography scale */
  /* “Whitepaper-style” reading defaults (desktop) */
  --fs-body: 18px;
  --fs-small: 15px;
  --fs-h1: clamp(36px, 4.2vw, 56px);
  --fs-h2: clamp(24px, 3.0vw, 36px);
  --fs-h3: 18px;
}

* {
  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: var(--fs-body);
  line-height: 1.7;
}

.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;
}

.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;
}

.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;
}

.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: var(--fs-h1);
  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;
  font-size: 1rem;
}

.section-copy small {
  font-size: var(--fs-small);
}

.section-copy h2 {
  font-size: var(--fs-h2);
}

.token-card h3,
.info-card h3,
.timeline-item h3,
.quote-card h3,
.roadmap-phase-card h3 {
  font-size: var(--fs-h3);
}

.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,
.lock-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lock-grid {
  display: grid;
  gap: 16px;
}

.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: 20px;
  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;
}

.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: 26px;
  font-weight: 700;
}

.tokenomics-chart-supply {
  fill: #c6cfdd;
  font-size: 10px;
}

.tokenomics-slice-label {
  fill: #eef3ff;
  font-size: 10px;
  font-weight: 600;
}

.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;
  font-size: 15px;
}

.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,
  .lock-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%;
  }
}


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

.hero-v2 {
  position: relative;
  isolation: isolate;
}

.hero-v2::before {
  content: "";
  position: absolute;
  inset: -18px -10px;
  z-index: -1;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 210, 211, 0.20), transparent 34%),
    radial-gradient(circle at 72% 12%, rgba(108, 92, 231, 0.22), transparent 34%),
    radial-gradient(circle at 80% 80%, rgba(0, 210, 211, 0.10), transparent 42%);
  opacity: 0.95;
  pointer-events: none;
}

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

.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: flex-start;
  gap: 14px;
  padding: 34px;
  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);
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  letter-spacing: 0.01em;
}

.hero-kicker-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 210, 211, 0.10);
  border: 1px solid rgba(0, 210, 211, 0.22);
  box-shadow: 0 10px 30px rgba(0, 210, 211, 0.12);
  color: rgba(240, 255, 255, 0.92);
  font-weight: 650;
}

.hero-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(108, 92, 231, 0.95);
  box-shadow: 0 0 0 6px rgba(108, 92, 231, 0.12);
}

.hero-kicker-text {
  color: rgba(158, 177, 200, 0.98);
}

.hero-title {
  display: grid;
  gap: 14px;
  margin: 0;
}

.hero-title-top {
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}

.hero-title-symbol {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.hero-title-bottom {
  font-size: clamp(16px, 1.9vw, 20px);
  letter-spacing: 0.02em;
  color: rgba(0, 210, 211, 0.92);
  text-transform: uppercase;
  line-height: 1.2;
}

.center-hero .subheadline {
  margin: 0;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.7;
}

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

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
  will-change: transform;
}

.hero-button-primary {
  background:
    linear-gradient(135deg, rgba(0, 210, 211, 0.92), rgba(108, 92, 231, 0.82));
  color: rgba(8, 18, 33, 0.98);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 50px rgba(0, 210, 211, 0.18);
}

.hero-button-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(244, 247, 251, 0.96);
}

.hero-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.18);
}

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

.hero-stat {
  padding: 12px 12px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  gap: 4px;
}

.hero-stat-value {
  font-weight: 780;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(158, 177, 200, 0.98);
}

@media (max-width: 720px) {
  :root {
    /* Mobile whitepaper baseline */
    --fs-body: 16px;
    --fs-small: 14px;
    --fs-h1: clamp(32px, 7.6vw, 44px);
    --fs-h2: clamp(22px, 6vw, 32px);
  }
}

.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: 8px;
  border: 0;
  background: transparent;
}

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

.tokenomics-highlights {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.tokenomics-group {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.tokenomics-group-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 30px;
  padding: 0 12px;
  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;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tokenomics-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
}

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

.tokenomics-group-grid > article {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tokenomics-group-grid > article p {
  margin: 0;
}

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

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

.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-visual {
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 210, 211, 0.14), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(108, 92, 231, 0.18), transparent 30%),
    rgba(10, 20, 38, 0.92);
}

.hero-visual-frame {
  position: absolute;
  inset: 10px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(0, 210, 211, 0.16), transparent 42%),
    radial-gradient(circle at 65% 22%, rgba(108, 92, 231, 0.22), transparent 40%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  animation: hero-pulse 7.8s ease-in-out infinite;
}

.hero-visual img {
  filter: saturate(1.05) contrast(1.02);
}

.hero-float-card {
  animation-duration: 6.4s;
}

.hero-float-primary {
  animation-delay: 0.4s;
}

.hero-float-secondary {
  animation-delay: 1.6s;
}

@keyframes hero-pulse {
  0%, 100% { opacity: 0.85; transform: translate3d(0, 0, 0); }
  50% { opacity: 1; transform: translate3d(0, -4px, 0); }
}

.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;
}

@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-layout#usecases .immersive-copy,
#usecases.immersive-layout .immersive-copy,
#usecases .immersive-copy {
  max-width: none;
  width: 100%;
}

#usecases .immersive-copy p {
  max-width: none;
}

#usecases .immersive-overlay {
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.78) 0%, rgba(7, 17, 31, 0.52) 100%),
    radial-gradient(circle at 50% 25%, rgba(108, 92, 231, 0.16), transparent 42%);
}

.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-stage {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 30px;
  border: 1px solid var(--line, rgba(255,255,255,0.09));
  background: rgba(8, 18, 33, 0.92);
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.32);
}

.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;
  gap: 18px;
}

.roadmap-copy {
  width: min(100%, 760px);
  margin-left: auto;
  margin-right: auto;
}

.roadmap-subtitle {
  margin: 8px 0 0;
  max-width: 70ch;
}

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

.roadmap-stage {
  --roadmap-progress: 0%;
}

.roadmap-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 68px;
  row-gap: 16px;
  padding: 0;
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  transform: translateX(-1px);
}

.roadmap-timeline::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 2px;
  height: var(--roadmap-progress, 0%);
  background: linear-gradient(var(--secondary-color, #00d2d3), var(--primary-color, #6c5ce7));
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(0, 210, 211, 0.32);
  transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateX(-1px);
}

.roadmap-phase-card {
  position: relative;
  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);
  transform: translateY(0);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.roadmap-timeline > .roadmap-phase-card:nth-child(odd) {
  justify-self: end;
}

.roadmap-timeline > .roadmap-phase-card:nth-child(even) {
  justify-self: start;
}

.roadmap-node {
  position: absolute;
  top: 26px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 0 6px rgba(0, 210, 211, 0.08);
}

.roadmap-timeline > .roadmap-phase-card:nth-child(odd) .roadmap-node {
  right: -34px;
}

.roadmap-timeline > .roadmap-phase-card:nth-child(even) .roadmap-node {
  left: -34px;
}

.roadmap-phase-card.is-active {
  border-color: rgba(0, 210, 211, 0.22);
  background: rgba(12, 26, 52, 0.86);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}

.roadmap-phase-card.is-active .roadmap-node {
  background: linear-gradient(135deg, var(--secondary-color, #00d2d3), var(--primary-color, #6c5ce7));
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 0 0 6px rgba(0, 210, 211, 0.14),
    0 0 24px rgba(0, 210, 211, 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-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));
}

.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) {
  .center-hero .section-grid,
  .tokenomics-main-grid,
  .token-grid,
  .lock-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .credibility-grid,
  .credibility-grid-2 {
    grid-template-columns: 1fr;
  }

  .roadmap-timeline {
    grid-template-columns: 1fr;
    row-gap: 16px;
    padding-left: 34px;
  }

  .roadmap-timeline::before,
  .roadmap-timeline::after {
    left: 17px;
    transform: none;
  }

  .roadmap-timeline > .roadmap-phase-card:nth-child(odd),
  .roadmap-timeline > .roadmap-phase-card:nth-child(even) {
    justify-self: stretch;
  }

  .roadmap-node {
    left: -34px;
    right: auto;
  }

  .tokenomics-group-grid,
  .tokenomics-group-grid-3 {
    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;
  }
}


/* --- 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 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-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 .metric-card {
    flex: 0 0 min(82vw, 240px);
    scroll-snap-align: start;
    min-height: 104px;
  }
}
