: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;
  /* Theme tuned to `logo.png` (teal/cyan). */
  --primary-color: #318888;
  --secondary-color: #2a7a77;
  --accent-color: #3aa6a3;
  --font-display: "Outfit", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.65;
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(49, 136, 136, 0.22), transparent 55%),
    radial-gradient(900px 600px at 92% 8%, rgba(58, 166, 163, 0.16), transparent 50%),
    radial-gradient(700px 500px at 50% 110%, rgba(42, 122, 119, 0.12), transparent 55%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
}

@keyframes smcc-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes smcc-scan {
  0% { transform: translateY(-12%); opacity: 0.02; }
  35% { opacity: 0.06; }
  100% { transform: translateY(12%); opacity: 0.02; }
}

@keyframes smcc-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -10px, 0) scale(1.03); }
}

.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(58, 166, 163, 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(58, 166, 163, 0.2), rgba(49, 136, 136, 0.1) 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;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 35%, rgba(0, 0, 0, 0.65), transparent 62%);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

.main-stage {
  position: relative;
  z-index: 1;
}

.main-stage-grid {
  position: absolute;
  inset: -24px 0;
  background-image:
    linear-gradient(rgba(58, 166, 163, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 166, 163, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.35));
  pointer-events: none;
  z-index: 0;
}

.main-stage > .section {
  position: relative;
  z-index: 1;
}

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

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

.container {
  width: min(1320px, 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: clamp(64px, 10vh, 120px);
  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: 22px 0;
  flex-wrap: wrap;
}

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

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

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

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

@media (max-width: 1060px) {
  .brand-caption {
    display: none;
  }
}

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

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

.site-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid transparent;
  color: var(--muted);
  transition: 0.2s ease;
  font-size: 15px;
}

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

.site-nav a.is-active {
  box-shadow: inset 0 0 0 1px rgba(58, 166, 163, 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(49, 136, 136, 0.22);
}

.nav-pdf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  font-weight: 600;
  margin-right: 12px;
  position: relative;
  overflow: hidden;
}

.whitepaper-launch::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    conic-gradient(
      from 160deg,
      rgba(58, 166, 163, 0.0),
      rgba(58, 166, 163, 0.85),
      rgba(49, 136, 136, 0.85),
      rgba(58, 166, 163, 0.85),
      rgba(58, 166, 163, 0.0)
    );
  filter: blur(10px);
  opacity: 0.55;
  animation: whitepaper-ring 3.6s linear infinite;
  z-index: -2;
}

.whitepaper-launch::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: rgba(7, 17, 31, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: -1;
}

.whitepaper-launch {
  position: relative;
  isolation: isolate;
  z-index: 0;
  color: var(--text);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(58, 166, 163, 0.08);
}

.whitepaper-launch:hover::before {
  opacity: 0.9;
}

.whitepaper-launch:active {
  transform: translateY(0);
}

@keyframes whitepaper-ring {
  to {
    transform: rotate(360deg);
  }
}

.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: 52px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(49, 136, 136, 0.22), rgba(58, 166, 163, 0.1)),
    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(49, 136, 136, 0.3), transparent 66%);
  filter: blur(16px);
}

.hero-grid,
.section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 1024px) {
  .section-grid:has(.section-assets) {
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    align-items: center;
    gap: 28px;
  }

  .section-grid:has(.section-assets) .section-copy {
    align-self: center;
  }

  .section-grid:has(.section-assets) .section-assets {
    align-self: stretch;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--secondary-color);
  font-size: 13px;
  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,
.asset-caption,
.timeline-item p,
.metric-label {
  color: var(--muted);
  line-height: 1.85;
}

.hero p,
.section-copy p,
.timeline-item p {
  margin: 0 0 14px;
}

.section-copy p:last-child,
.hero p:last-child,
.timeline-item p:last-child {
  margin-bottom: 0;
}

.section-copy p,
.section-copy li {
  font-size: 18px;
}

.lead {
  font-size: 22px;
  line-height: 1.45;
}

.metric-label,
.asset-caption {
  font-size: 15px;
}

.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(58, 166, 163, 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,
.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: clamp(28px, 4vh, 44px);
}

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

.paper-hero-bleed {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vh, 96px) 0 clamp(56px, 8vh, 112px);
  margin: clamp(18px, 3vh, 36px) 0 clamp(14px, 2.5vh, 28px);
  min-height: min(92vh, 980px);
  display: flex;
  align-items: center;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(900px 520px at 12% 18%, rgba(49, 136, 136, 0.35), transparent 58%),
    radial-gradient(760px 520px at 88% 12%, rgba(58, 166, 163, 0.22), transparent 55%),
    radial-gradient(700px 520px at 62% 92%, rgba(42, 122, 119, 0.14), transparent 58%),
    linear-gradient(135deg, rgba(7, 17, 31, 0.92), rgba(7, 17, 31, 0.72));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
}

.paper-hero-fx {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-grid-lines {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(58, 166, 163, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 166, 163, 0.09) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: rotate(-8deg);
  opacity: 0.55;
  mask-image: radial-gradient(circle at 70% 35%, rgba(0, 0, 0, 0.75), transparent 62%);
}

.hero-orb {
  position: absolute;
  width: min(520px, 55vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.55;
  mix-blend-mode: screen;
  animation: smcc-float 7.5s ease-in-out infinite;
}

.hero-orb-a {
  top: -12%;
  right: -8%;
  background: radial-gradient(circle, rgba(58, 166, 163, 0.55), transparent 62%);
}

.hero-orb-b {
  bottom: -18%;
  left: -10%;
  background: radial-gradient(circle, rgba(49, 136, 136, 0.45), transparent 62%);
  animation-delay: 1.2s;
}

.hero-scan {
  position: absolute;
  inset: -20% -10%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(58, 166, 163, 0.08) 48%,
    transparent 100%
  );
  animation: smcc-scan 7s linear infinite;
}

.paper-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: none;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
  opacity: 0;
  transition: opacity 0.8s ease;
}

.paper-hero-bleed.has-ai-bg .paper-hero-bg {
  opacity: 1;
}

.paper-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.92) 0%, rgba(7, 17, 31, 0.72) 46%, rgba(7, 17, 31, 0.22) 100%),
    radial-gradient(circle at 70% 30%, rgba(49, 136, 136, 0.18), transparent 46%);
  pointer-events: none;
}

.paper-hero-bleed .container {
  position: relative;
  z-index: 3;
  width: min(1320px, calc(100% - 48px));
}

.paper-hero-grid {
  align-items: stretch;
}

.hero-heading {
  margin: 0 0 clamp(18px, 2.6vh, 28px);
  padding-bottom: clamp(16px, 2.2vh, 24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(58, 166, 163, 0.22);
  background: rgba(10, 22, 41, 0.55);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}

.hero-heading h1 {
  margin: 0 0 12px;
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
  background: linear-gradient(
    92deg,
    #f4f7fb 0%,
    #dffaf9 38%,
    #9fe2df 55%,
    #f4f7fb 100%
  );
  background-size: 220% 220%;
  animation: smcc-shift 10s ease infinite;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.hero-heading .lead {
  margin: 0;
  max-width: 38ch;
  font-weight: 500;
  color: rgba(223, 236, 247, 0.92);
}

.hero-body {
  display: grid;
  gap: clamp(16px, 2.2vh, 22px);
}

.hero-body > .muted:first-child {
  margin: 0;
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.75;
}

.hero-visual-frame {
  position: relative;
  height: 100%;
  padding: 14px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(58, 166, 163, 0.35), rgba(49, 136, 136, 0.12) 42%, rgba(255, 255, 255, 0.06));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(58, 166, 163, 0.12);
}

.hero-visual-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  border: 1px solid rgba(58, 166, 163, 0.22);
  pointer-events: none;
}

.hero-visual-frame .asset-box {
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.section-visual-frame {
  position: relative;
  height: 100%;
  padding: 12px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(58, 166, 163, 0.28), rgba(49, 136, 136, 0.1) 45%, rgba(255, 255, 255, 0.05));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 26px 70px rgba(0, 0, 0, 0.42),
    0 0 48px rgba(58, 166, 163, 0.1);
}

.section-visual-frame::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 20px;
  border: 1px solid rgba(58, 166, 163, 0.18);
  pointer-events: none;
}

.section-visual-frame .asset-box {
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

@media (min-width: 1024px) {
  .paper-hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 30px;
    align-items: center;
  }

  .paper-hero-copy {
    align-self: center;
  }

  .paper-hero-visual {
    align-self: stretch;
  }

  /* Match image column height to text column in two-column layouts */
  .paper-hero-visual,
  .section-assets {
    display: flex;
    min-height: 0;
  }

  .section-assets {
    align-items: stretch;
  }

  .paper-hero-visual .hero-visual-frame,
  .section-assets .section-visual-frame {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
  }

  .paper-hero-visual .asset-box,
  .section-assets .asset-box {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
  }

  .paper-hero-visual .asset-box img,
  .section-assets .asset-box img {
    min-height: 0;
    height: 100%;
    flex: 1 1 auto;
    object-fit: cover;
  }
}

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

.section {
  padding: clamp(40px, 6vh, 72px) 0;
}

.section.paper-section {
  min-height: min(88vh, 920px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.section.paper-section::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 520px;
  background:
    radial-gradient(520px 320px at 18% 40%, rgba(58, 166, 163, 0.18), transparent 62%),
    radial-gradient(520px 320px at 82% 35%, rgba(49, 136, 136, 0.12), transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.section.paper-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 30% 20%, rgba(0, 0, 0, 0.35), transparent 62%);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

/* Roadmap: same AI background asset + scrim treatment as homepage hero (.paper-hero-bleed / .paper-hero-scrim). */
.roadmap-bleed-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 12% 18%, rgba(49, 136, 136, 0.35), transparent 58%),
    radial-gradient(760px 520px at 88% 12%, rgba(58, 166, 163, 0.22), transparent 55%),
    radial-gradient(700px 520px at 62% 92%, rgba(42, 122, 119, 0.14), transparent 58%),
    linear-gradient(135deg, rgba(7, 17, 31, 0.92), rgba(7, 17, 31, 0.72));
}

.roadmap-bleed-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
}

.paper-roadmap.has-roadmap-bg .roadmap-bleed-photo {
  opacity: 1;
}

.roadmap-bleed-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.92) 0%, rgba(7, 17, 31, 0.72) 46%, rgba(7, 17, 31, 0.22) 100%),
    radial-gradient(circle at 70% 30%, rgba(49, 136, 136, 0.18), transparent 46%);
}

.section.paper-section .section-grid {
  width: 100%;
  position: relative;
  z-index: 1;
}

.paper-roadmap .section-grid {
  z-index: 3;
}

.section.paper-section > .section-heading-full {
  position: relative;
  z-index: 1;
}

.section-copy,
.section-assets {
  padding: clamp(34px, 4vw, 48px);
}

.section-heading {
  margin: 0 0 clamp(22px, 3vh, 34px);
  padding-bottom: clamp(18px, 2.5vh, 26px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-heading-full {
  width: 100%;
  margin-bottom: clamp(18px, 3vh, 28px);
}

.section-kicker {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-color, #3aa6a3);
}

.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  background: linear-gradient(92deg, #f4f7fb 0%, #dffaf9 40%, #8fd9d6 58%, #f4f7fb 100%);
  background-size: 200% 200%;
  animation: smcc-shift 12s ease infinite;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-deck {
  margin: 0;
  max-width: 72ch;
  font-size: 19px;
  line-height: 1.65;
  color: rgba(210, 224, 236, 0.92);
}

.section-body > p:first-child {
  margin-top: 0;
}

.section-copy-marketing {
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 38%,
    rgba(8, 18, 36, 0.55) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(58, 166, 163, 0.08),
    0 0 80px rgba(49, 136, 136, 0.08);
  backdrop-filter: blur(18px);
}

.section.paper-section > .section-heading-full + .section-grid {
  width: 100%;
}

.info-card,
.token-card,
.metric-card,
.roadmap-phase-card {
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.info-card:hover,
.token-card:hover,
.metric-card:hover,
.roadmap-phase-card:hover {
  transform: translateY(-2px);
  border-color: rgba(58, 166, 163, 0.28);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(58, 166, 163, 0.12);
}

.section-assets .asset-box img,
.paper-hero-visual .asset-box img {
  min-height: 260px;
}

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

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

.feature-grid.paper-bento {
  grid-template-columns: repeat(2, 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: 15px;
}

.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(58, 166, 163, 0.12);
}

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

.token-bar-label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 7px;
  font-size: 15px;
  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);
}

[data-token-bars].is-ready .token-bar-fill {
  width: var(--fill, 0%);
}

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

.tokenomics-slice-label {
  fill: #eef3ff;
  font-size: 11px;
  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;
}

.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(58, 166, 163, 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: 34px;
  }
}

@media (max-width: 1100px) {
  .section-assets .asset-box img,
  .paper-hero-visual .asset-box img {
    min-height: 220px;
  }
}

@media (max-width: 720px) {
  .paper-hero-bleed {
    min-height: min(88vh, 760px);
    padding: 40px 0 48px;
  }

  .section.paper-section {
    min-height: 0;
    display: block;
    padding: 40px 0;
  }

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

  .nav-pdf-button {
    width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
  }
}


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

.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(49, 136, 136, 0.22), rgba(58, 166, 163, 0.1)),
    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(58, 166, 163, 0.14), transparent 22%),
    radial-gradient(circle at 82% 14%, rgba(49, 136, 136, 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: 14px;
  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,
.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;
}

.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(58, 166, 163, 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: 14px;
}

.hero-float-card span {
  color: var(--muted, #9eb1c8);
  font-size: 12px;
  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(49, 136, 136, 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-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(58, 166, 163, 0.14), transparent 28%),
    radial-gradient(circle at 74% 18%, rgba(49, 136, 136, 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: 22px;
}

.roadmap-phase-card {
  min-height: 230px;
  padding: 28px;
  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(58, 166, 163, 0.18);
  color: var(--accent-color, #3aa6a3);
  font-size: 13px;
  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;
}

.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(49, 136, 136, 0.22));
}

.section-copy,
.section-assets {
  padding: clamp(34px, 4vw, 48px);
}

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

.timeline {
  gap: 12px;
}

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

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

.footer-meta {
  font-size: 14px;
  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;
  }

  .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: 16px 18px;
  width: 100%;
  margin: 0 0 20px;
}

.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, #318888),
    var(--accent-color, #3aa6a3)
  );
  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: 13px;
  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;
  }
}
