@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Metrophobic&family=JetBrains+Mono:wght@400;500&display=swap');

/* Phosphor Duotone (@phosphor-icons/web): flex alignment + badge sizing */
.ph-duotone {
  vertical-align: middle;
}
.social-link .ph-duotone {
  line-height: 1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0b0b14;
  --bg2: #111120;
  --bg3: #181830;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --ink: #f0eef5;
  --ink-soft: #cbc7dc;
  --ink-muted: #aea9c3;
  --accent: #0077FF;
  --accent2: #0055cc;
  --teal: #0077FF;
  --orange: #F7931A;
  --pink: #F7931A;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --sidebar-w: 230px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 100px;
  --font-title: 'Inter', -apple-system, sans-serif;
  --font-body: 'Metrophobic', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
}

/* 125% scale from viewport center (avoids html zoom top-left drift). Disabled on narrow viewports — scale + overflow:hidden clips edges on many phones (e.g. Android). */
.app-scale {
  display: flex;
  width: calc(100vw / 1.25);
  height: calc(100vh / 1.25);
  flex-shrink: 0;
  transform: scale(1.25);
  transform-origin: center center;
  overflow: hidden;
}

.app-scale .sidebar,
.app-scale .deck {
  height: 100%;
}

.app-scale .deck {
  min-height: 0;
}

.sidebar {
  width: var(--sidebar-w); min-width: var(--sidebar-w);
  height: 100vh;
  background: rgba(11,11,20,0.9);
  backdrop-filter: blur(24px);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  padding: 28px 0 16px; z-index: 200;
}

.sidebar-logo {
  padding: 0 20px 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
  display: flex; align-items: center;
}

.sidebar-logo svg { height: 24px; width: auto; }
.sidebar-logo svg .cls-1 { fill: #fff; }

.sidebar-items { display: flex; flex-direction: column; gap: 2px; padding: 0 12px; flex: 1; overflow-y: auto; }

.sidebar-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: var(--radius-sm); cursor: pointer;
  transition: all 0.2s; position: relative;
  border: 1px solid transparent;
}

.sidebar-item:hover { background: var(--surface-hover); }

.sidebar-item.active {
  background: linear-gradient(135deg, rgba(0,119,255,0.15), rgba(0,119,255,0.08));
  border-color: rgba(0,119,255,0.2);
}

.sidebar-num {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500; color: var(--ink-muted);
  width: 24px; height: 24px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); flex-shrink: 0; transition: all 0.2s;
}

.sidebar-item.active .sidebar-num { background: rgba(0,119,255,0.2); color: var(--accent); }

.sidebar-label {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 400; color: var(--ink-muted);
  transition: color 0.2s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.sidebar-item.active .sidebar-label { color: var(--ink); }
.sidebar-item:hover .sidebar-label { color: var(--ink-soft); }

.sidebar-onepager {
  flex-shrink: 0;
  padding: 8px 12px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-onepager .sidebar-item {
  text-decoration: none;
  color: inherit;
}
.sidebar-onepager .sidebar-num i {
  font-size: 14px;
  line-height: 1;
  display: block;
}
.sidebar-onepager .sidebar-item:focus-visible {
  outline: 2px solid rgba(0, 119, 255, 0.45);
  outline-offset: 2px;
}

.sidebar-footer { padding: 16px 24px 16px; border-top: 1px solid var(--border); margin-top: 16px; }
.sidebar-footer .footer-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-content: flex-start;
  gap: 0;
}
.social-links {
  display: flex; align-items: center; gap: 6px;
}
.social-link {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--ink-muted); font-size: 13px; text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.social-link:hover {
  color: var(--ink-soft); background: var(--surface-hover); border-color: var(--border-hover);
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.sidebar-footer .key-hint {
  font-size: 11px; color: var(--ink-muted); display: flex; align-items: center; gap: 6px;
  margin-top: 16px;
  width: 100%;
}
.sidebar-footer kbd {
  padding: 2px 7px; border-radius: 6px;
  background: var(--surface); border: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 10px; color: var(--ink-muted);
}

.topbar {
  display: none; position: fixed; top: 0; left: 0; right: 0;
  z-index: 300;
  background: rgba(11,11,20,0.9); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  align-items: center; justify-content: space-between;
  gap: 12px;
  box-sizing: border-box;
  padding-top: env(safe-area-inset-top, 0px);
  padding-left: max(16px, env(safe-area-inset-left, 0px));
  padding-right: max(16px, env(safe-area-inset-right, 0px));
  padding-bottom: 0;
  height: calc(56px + env(safe-area-inset-top, 0px));
}
.topbar-logo {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
}
.topbar-logo svg { height: 20px; width: auto; max-width: min(160px, 42vw); flex-shrink: 1; }
.topbar-logo svg .cls-1 { fill: #fff; }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.topbar-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  margin: -6px -8px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}
.topbar-nav-link:hover {
  background: var(--surface-hover);
  border-color: transparent;
}
.topbar-nav-num {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-muted);
}
.topbar-nav-num i {
  font-size: 13px;
  line-height: 1;
  display: block;
}
.topbar-nav-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-muted);
  transition: color 0.2s;
  white-space: nowrap;
}
.topbar-nav-link:hover .topbar-nav-label {
  color: var(--ink-soft);
}
.topbar-nav-link:focus-visible {
  outline: 2px solid rgba(0, 119, 255, 0.45);
  outline-offset: 2px;
}
.topbar-counter {
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-muted);
  flex-shrink: 0;
  white-space: nowrap;
}
.topbar-counter span { color: var(--accent); font-weight: 600; }

.deck { flex: 1; position: relative; height: 100vh; overflow: hidden; }

.slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 40px 48px;
  opacity: 0; pointer-events: none; overflow: hidden;
}
.slide.active { opacity: 1; pointer-events: auto; }

.slide::before {
  content: ''; position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,119,255,0.06) 0%, rgba(0,60,180,0.03) 40%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
  animation: ambientFloat 8s ease-in-out infinite;
}

@keyframes ambientFloat {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%,-50%) scale(1.1); opacity: 1; }
}

.slide .anim {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.slide .anim.from-left { transform: translateX(-30px); }
.slide .anim.from-right { transform: translateX(30px); }
.slide .anim.from-scale { transform: scale(0.9); }
.slide .anim.from-blur {
  transform: translateY(0); filter: blur(10px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1), filter 0.7s cubic-bezier(0.16,1,0.3,1);
}
.slide.active .anim { opacity: 1; transform: none; filter: none; }
.slide.active .anim.d1 { transition-delay: 0.06s; }
.slide.active .anim.d2 { transition-delay: 0.12s; }
.slide.active .anim.d3 { transition-delay: 0.2s; }
.slide.active .anim.d4 { transition-delay: 0.28s; }
.slide.active .anim.d5 { transition-delay: 0.36s; }
.slide.active .anim.d6 { transition-delay: 0.44s; }
.slide.active .anim.d7 { transition-delay: 0.52s; }
.slide.active .anim.d8 { transition-delay: 0.6s; }
.slide.active .anim.d9 { transition-delay: 0.68s; }
.slide.active .anim.d10 { transition-delay: 0.76s; }
.slide:not(.active) .anim { transition-delay: 0s !important; transition-duration: 0.2s !important; }

h1, h2, .hero-title { font-family: var(--font-title); font-weight: 700; line-height: 1.1; }
h2 { font-size: 40px; margin-bottom: 40px; color: var(--ink); position: relative; z-index: 1; }
h2 .hl { color: var(--accent); }

.tag {
  display: inline-block; padding: 6px 16px; border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 11px; font-weight: 400; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 16px;
  border: 1px solid rgba(0,119,255,0.25); background: rgba(0,119,255,0.08); color: var(--accent);
  position: relative; z-index: 1;
}

.welcome-glow {
  position: absolute; top: 45%; left: 50%; transform: translate(-50%, -50%);
  width: 1200px; height: 300px; pointer-events: none;
  opacity: 0;
}

.welcome-glow-inner {
  width: 100%; height: 100%;
  background: radial-gradient(ellipse 80% 70% at center, rgba(255,255,255,0.14) 0%, rgba(0,119,255,0.2) 12%, rgba(0,80,200,0.08) 40%, transparent 70%);
  filter: blur(30px);
}

.slide.active .welcome-glow {
  animation: tv-on 0.4s ease-out 0.8s forwards;
}

@keyframes tv-on {
  0% { opacity: 0; transform: translate(-50%, -50%) scaleX(0.3) scaleY(0.01); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scaleX(1) scaleY(0.1); }
  100% { opacity: 1; transform: translate(-50%, -50%) scaleX(1) scaleY(1); }
}

.slide:not(.active) .welcome-glow { animation: none; opacity: 0; }
.glass {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.glass:hover { border-color: var(--border-hover); box-shadow: 0 4px 30px rgba(0,119,255,0.06); }

.hero-logo { position: relative; z-index: 1; margin-bottom: 24px; }
.hero-logo svg { height: 40px; width: auto; }
.hero-logo svg .cls-1 { fill: #fff; }

.hero-title {
  font-size: 56px; text-align: center; margin-bottom: 20px;
  color: var(--ink); position: relative; z-index: 1;
}
.hero-title .hl { color: var(--accent); }

.hero-sub {
  font-family: var(--font-body);
  font-size: 16px; font-weight: 400; color: var(--ink-soft);
  text-align: center; margin-bottom: 44px; max-width: 460px; line-height: 1.8;
  position: relative; z-index: 1;
}

.hero-pills { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }

.hero-pill {
  padding: 10px 20px; border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 13px; font-weight: 400;
  border: 1px solid var(--border); background: var(--surface); color: var(--ink-soft);
  transition: all 0.25s;
}
.hero-pill:hover { border-color: var(--border-hover); color: var(--ink); background: rgba(255,255,255,0.06); }

/* Welcome slide: hero stays vertically centered; Stansberry block sits in lower half */
.slide[data-slide="0"] {
  justify-content: flex-start;
  align-items: stretch;
  padding-bottom: 72px;
  box-sizing: border-box;
}
.hero-spacer-top {
  flex: 1 1 0;
  min-height: 0;
  width: 100%;
  pointer-events: none;
}
.hero-main {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-stansberry-region {
  flex: 1 1 0;
  min-height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding-inline: 12px;
}
.hero-stansberry {
  position: relative;
  z-index: 5;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  pointer-events: auto;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.hero-stansberry-line {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.hero-stansberry-link {
  display: block;
  line-height: 0;
  opacity: 0.92;
  transition: opacity 0.2s;
}
.hero-stansberry-link:hover { opacity: 1; }
.hero-stansberry-logo {
  height: 30px;
  width: auto;
  max-width: min(280px, 85vw);
  display: block;
}
.hero-stansberry-note {
  letter-spacing: 0.06em;
  text-transform: none;
  font-style: italic;
  font-size: 11px;
}

.what-is-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; width: 100%; max-width: 960px; position: relative; z-index: 2; align-items: center; }
.what-is-left p { font-size: 15px; line-height: 1.9; color: var(--ink-soft); margin-bottom: 20px; }
.what-is-left p strong { color: var(--ink); font-weight: 700; }

.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-item { display: flex; align-items: center; gap: 16px; padding: 16px 20px; }
.feature-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.fi-teal { background: rgba(0,119,255,0.1); color: var(--accent); }
.fi-orange { background: rgba(247,147,26,0.1); color: var(--orange); }
.fi-green { background: rgba(0,119,255,0.1); color: var(--accent); }

.feature-item .label { font-family: var(--font-title); font-weight: 600; color: var(--ink); font-size: 14px; }
.feature-item .desc { font-size: 12px; color: var(--ink-muted); margin-top: 2px; }

.problem-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; width: 100%; max-width: 960px; position: relative; z-index: 1; }

.ps-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px 12px;
  width: 100%; max-width: 960px; position: relative; z-index: 1;
  align-items: stretch;
}
.ps-grid-mobile-wrap { display: none; }
.ps-grid .problem-card, .ps-grid .solution-card { margin: 0; }
.ps-arrow-cell {
  display: flex; align-items: center; justify-content: center;
  min-width: 56px;
}
.ps-arrow-cell svg { opacity: 0.7; filter: drop-shadow(0 0 6px rgba(0,119,255,0.3)); }

.solution-card {
  padding: 28px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(0,119,255,0.10), rgba(0,60,180,0.04));
}
.solution-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #0055cc, #339dff); opacity: 0.8;
}
.solution-card h3 { font-family: var(--font-title); font-size: 16px; font-weight: 700; color: var(--accent); margin-bottom: 10px; }
.solution-card p { font-size: 13px; line-height: 1.75; color: var(--ink-soft); }
.problem-card { padding: 28px; position: relative; overflow: hidden; }
.problem-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #0055cc, #339dff); opacity: 0.8;
}
.problem-card:nth-child(2)::before { background: linear-gradient(90deg, #F7931A, #ffb347); }
.problem-card:nth-child(3)::before { background: linear-gradient(90deg, #0055cc, #339dff); }
.problem-card .num {
  font-family: var(--font-title); font-size: 56px; font-weight: 700;
  color: rgba(255,255,255,0.03); position: absolute; top: 6px; right: 18px; line-height: 1;
}
.problem-card h3 { font-family: var(--font-title); font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.problem-card p { font-size: 13px; line-height: 1.75; color: var(--ink-soft); }

.solution-strip {
  margin-top: 24px; padding: 18px 24px;
  background: linear-gradient(135deg, rgba(0,119,255,0.12), rgba(0,60,180,0.06));
  border: 1px solid rgba(0,119,255,0.15); border-radius: var(--radius);
  width: 100%; max-width: 960px; display: flex; align-items: center; gap: 14px;
  position: relative; z-index: 1;
}
.solution-strip .icon { font-size: 20px; flex-shrink: 0; color: var(--accent); }
.solution-strip .txt { font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.solution-strip .txt strong { color: var(--accent); animation: glow-breathe 2.5s ease-in-out infinite; }

@keyframes glow-breathe {
  0%, 100% { text-shadow: 0 0 6px rgba(0,119,255,0.3); }
  50% { text-shadow: 0 0 18px rgba(0,119,255,0.6), 0 0 40px rgba(0,119,255,0.2); }
}

.flow-diagram { width: 100%; max-width: 960px; position: relative; z-index: 1; }
/* Architecture slide: center stack vertically (overrides mobile .slide flex-start) + align with diagram */
.slide[data-slide="3"] {
  justify-content: center;
  align-items: center;
}
.slide[data-slide="3"] > .tag { align-self: center; }
.slide[data-slide="3"] > h2 {
  text-align: center;
  width: 100%;
  max-width: 960px;
  box-sizing: border-box;
  align-self: center;
}
.slide[data-slide="3"] .flow-diagram {
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flow-row { display: flex; align-items: center; justify-content: center; gap: 20px; width: 100%; }
.flow-node { padding: 22px 24px; text-align: center; min-width: 170px; }
.flow-node.pool {
  background: linear-gradient(135deg, rgba(0,119,255,0.15), rgba(0,60,180,0.08));
  border-color: rgba(0,119,255,0.25); min-width: 220px;
}
.flow-node .node-icon { font-size: 22px; margin-bottom: 8px; }
.flow-node .node-title { font-family: var(--font-title); font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 4px; }
.flow-node .node-sub { font-size: 11px; color: var(--ink-muted); line-height: 1.5; }

.flow-arrow { display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 70px; }
.flow-arrow .arrow-label { font-size: 10px; color: var(--ink-muted); font-weight: 400; letter-spacing: 0.5px; text-align: center; }
.flow-arrow .arrow-line { font-size: 16px; color: var(--accent); letter-spacing: -2px; }

.mechanics-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 12px;
  width: 100%; max-width: 960px; margin-top: 28px; position: relative; z-index: 1;
}
.mech-card { padding: 20px; text-align: center; }
.mech-card .mech-val { font-family: var(--font-title); font-size: 22px; font-weight: 700; margin-bottom: 4px; color: var(--accent); }
.mech-card .mech-label { font-size: 11px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.5px; }


/* ─── Market Opportunity v2: The Gap Is The Opportunity ─── */
.mo2-wrap { width: 100%; max-width: 1060px; position: relative; z-index: 1; display: flex; flex-direction: column; gap: 18px; }

.slide[data-slide="5"] { overflow-y: auto; justify-content: flex-start; padding-top: 28px; padding-bottom: 60px; }

/* ── Section labels ── */
.mo2-section-label { font-family: var(--font-title); font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-muted); padding: 0 0 6px 2px; }
.mo2-section-label .sl-hl { color: var(--orange); }
.mo2-section-label .sl-blue { color: var(--accent); }

/* ── Digital Assets: compact proven-market rows ── */
.mo2-digital { display: flex; flex-direction: column; gap: 6px; }
.mo2-d-row { display: grid; grid-template-columns: 140px 80px 1fr; gap: 0; align-items: center; padding: 10px 14px; border-radius: var(--radius-sm); background: rgba(247,147,26,0.03); border: 1px solid rgba(247,147,26,0.08); transition: all 0.2s; }
.mo2-d-row:hover { background: rgba(247,147,26,0.06); border-color: rgba(247,147,26,0.14); }
.mo2-d-asset { font-family: var(--font-title); font-size: 13px; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.mo2-d-icon { width: 24px; height: 24px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; background: rgba(247,147,26,0.12); color: var(--orange); }
.mo2-d-icon.ic-p { background: rgba(168,85,247,0.12); color: #a855f7; }
.mo2-d-val { font-family: var(--font-title); font-size: 18px; font-weight: 800; color: var(--orange); }
.mo2-d-bar-wrap { height: 8px; background: rgba(255,255,255,0.04); border-radius: 4px; overflow: hidden; }
.mo2-d-bar { height: 100%; border-radius: 4px; background: linear-gradient(90deg, #c47a0a, var(--orange), #ffb347); position: relative; transition: width 1s cubic-bezier(0.16,1,0.3,1); }
.mo2-d-bar::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(255,255,255,0.15)); border-radius: 4px; }
.slide:not(.active) .mo2-d-bar { width: 0 !important; transition-duration: 0s !important; }
.mo2-d-sub { font-family: var(--font-mono); font-size: 10px; color: var(--ink-muted); text-align: right; padding-right: 4px; grid-column: 3; margin-top: 2px; }

/* ── Dramatic divider stat ── */
.mo2-gap-hero { padding: 20px 24px; border-radius: var(--radius); background: linear-gradient(135deg, rgba(0,119,255,0.08), rgba(0,40,120,0.03)); border: 1px solid rgba(0,119,255,0.12); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.mo2-gap-hero::before { content: ''; position: absolute; top: -50%; right: -10%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(0,119,255,0.08) 0%, transparent 70%); pointer-events: none; }
.mo2-gap-left { flex: 1; }
.mo2-gap-title { font-family: var(--font-title); font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.mo2-gap-big { font-family: var(--font-title); font-size: 36px; font-weight: 800; color: var(--ink); line-height: 1.1; }
.mo2-gap-big .gb-blue { color: var(--accent); }
.mo2-gap-sub { font-size: 12px; color: var(--ink-soft); margin-top: 6px; line-height: 1.5; }
.mo2-gap-stats { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }
.mo2-gap-stat { text-align: right; }
.mo2-gap-stat-val { font-family: var(--font-title); font-size: 22px; font-weight: 800; }
.mo2-gap-stat-val.gsv-blue { color: var(--accent); }
.mo2-gap-stat-val.gsv-muted { color: var(--ink-muted); }
.mo2-gap-stat-label { font-size: 10px; color: var(--ink-muted); font-family: var(--font-title); font-weight: 500; letter-spacing: 0.5px; }

/* ── RWA blocks: market size as visual weight ── */
.mo2-rwa-blocks { display: flex; flex-direction: column; gap: 5px; }
.mo2-rwa-row { display: flex; align-items: center; gap: 0; height: 38px; position: relative; }
.mo2-rwa-label { width: 130px; flex-shrink: 0; display: flex; align-items: center; gap: 8px; }
.mo2-rwa-icon { width: 22px; height: 22px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }
.mo2-ri-blue { background: rgba(0,119,255,0.12); color: var(--accent); }
.mo2-ri-gold { background: rgba(234,179,8,0.12); color: #eab308; }
.mo2-ri-green { background: rgba(34,197,94,0.12); color: #22c55e; }
.mo2-ri-purple { background: rgba(168,85,247,0.12); color: #a855f7; }
.mo2-rwa-name { font-family: var(--font-title); font-size: 12px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.mo2-rwa-track { flex: 1; height: 28px; border-radius: 6px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); position: relative; overflow: hidden; display: flex; align-items: center; }
.mo2-rwa-fill { height: 100%; border-radius: 5px; background: linear-gradient(90deg, rgba(0,119,255,0.20), rgba(0,119,255,0.08)); position: relative; display: flex; align-items: center; justify-content: flex-start; padding-left: 12px; gap: 12px; min-width: 180px; transition: width 1.2s cubic-bezier(0.16,1,0.3,1); }
.slide:not(.active) .mo2-rwa-fill { width: 0 !important; min-width: 0 !important; transition-duration: 0s !important; }
.mo2-rwa-fill-val { font-family: var(--font-title); font-size: 14px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.mo2-rwa-tok { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.mo2-rwa-tok-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px rgba(0,119,255,0.6); flex-shrink: 0; animation: tok-pulse 2s ease-in-out infinite; }
@keyframes tok-pulse { 0%,100% { box-shadow: 0 0 4px rgba(0,119,255,0.4); transform: scale(1); } 50% { box-shadow: 0 0 12px rgba(0,119,255,0.8), 0 0 24px rgba(0,119,255,0.3); transform: scale(1.3); } }
.mo2-rwa-tok-val { font-family: var(--font-mono); font-size: 10px; color: var(--accent); font-weight: 500; }
.mo2-rwa-pct { position: absolute; right: 10px; font-family: var(--font-mono); font-size: 10px; color: var(--ink-muted); opacity: 0.6; }

/* Orange variants for digital assets row */
.mo2-ri-orange { background: rgba(247,147,26,0.12); color: var(--orange); }
.mo2-track-orange { border-color: rgba(247,147,26,0.08); }
.mo2-fill-orange { background: linear-gradient(90deg, rgba(247,147,26,0.25), rgba(247,147,26,0.10)); }
.mo2-dot-orange { background: var(--orange); box-shadow: 0 0 8px rgba(247,147,26,0.6); animation: tok-pulse-orange 2s ease-in-out infinite; }
@keyframes tok-pulse-orange { 0%,100% { box-shadow: 0 0 4px rgba(247,147,26,0.4); transform: scale(1); } 50% { box-shadow: 0 0 12px rgba(247,147,26,0.8), 0 0 24px rgba(247,147,26,0.3); transform: scale(1.3); } }
.mo2-tokv-orange { color: var(--orange); }
.mo2-rwa-orange .mo2-rwa-pct { color: var(--orange); opacity: 0.8; }

/* ── Bottom: insight + strategy tiers ── */
.mo2-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mo2-insight { padding: 16px 20px; background: linear-gradient(135deg, rgba(0,119,255,0.10), rgba(0,60,180,0.04)); border: 1px solid rgba(0,119,255,0.15); border-radius: var(--radius); display: flex; flex-direction: column; justify-content: center; }
.mo2-insight-title { font-family: var(--font-title); font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.mo2-insight-val { font-family: var(--font-title); font-size: 26px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.mo2-insight-val span { color: var(--accent); }
.mo2-insight-sub { font-size: 11px; color: var(--ink-muted); line-height: 1.5; }
.mo2-insight-source { font-size: 10px; color: var(--ink-muted); margin-top: 6px; opacity: 0.6; font-family: var(--font-mono); }

.mo2-tiers { display: flex; flex-direction: column; gap: 6px; }
.mo2-tier { padding: 10px 14px; border-radius: var(--radius-sm); display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.04); }
.mo2-tier-badge { font-family: var(--font-title); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: var(--radius-pill); flex-shrink: 0; min-width: 64px; text-align: center; }
.mo2-tier-badge.tb-launch { background: rgba(247,147,26,0.15); color: var(--orange); border: 1px solid rgba(247,147,26,0.25); }
.mo2-tier-badge.tb-scale { background: rgba(0,119,255,0.12); color: var(--accent); border: 1px solid rgba(0,119,255,0.2); }
.mo2-tier-badge.tb-expand { background: rgba(168,85,247,0.12); color: #a855f7; border: 1px solid rgba(168,85,247,0.2); }
.mo2-tier-info { flex: 1; }
.mo2-tier-assets { font-family: var(--font-title); font-size: 12px; font-weight: 600; color: var(--ink); }
.mo2-tier-desc { font-size: 10px; color: var(--ink-muted); margin-top: 1px; }
.mo2-tier-fit { font-family: var(--font-mono); font-size: 10px; color: var(--ink-muted); white-space: nowrap; }

.timeline { width: 100%; max-width: 960px; position: relative; display: flex; justify-content: space-between; padding-top: 44px; z-index: 1; }
.timeline::before { content: ''; position: absolute; top: 73px; left: 5%; width: 48%; height: 2px; background: linear-gradient(90deg, #0055cc, #0077FF, #339dff); opacity: 0.5; transform: scaleX(0); transform-origin: left; transition: transform 0.8s cubic-bezier(0.16,1,0.3,1) 0.15s; }
.timeline::after { content: ''; position: absolute; top: 73px; left: 53%; right: 5%; height: 0; border-top: 2px dashed rgba(0,119,255,0.35); opacity: 0; transform: scaleX(0); transform-origin: left; transition: transform 0.8s cubic-bezier(0.16,1,0.3,1) 0.4s, opacity 0.4s ease 0.4s; }
.slide.active .timeline::before { transform: scaleX(1); }
.slide.active .timeline::after { transform: scaleX(1); opacity: 1; }
.slide:not(.active) .timeline::before { transition-delay: 0s; transition-duration: 0.2s; }
.slide:not(.active) .timeline::after { transition-delay: 0s; transition-duration: 0.2s; opacity: 0; }

/* Roadmap slide: center stack (overrides mobile .slide flex-start) + align title with timeline */
.slide[data-slide="4"] {
  justify-content: center;
  align-items: center;
}
.slide[data-slide="4"] > .tag { align-self: center; }
.slide[data-slide="4"] > h2 {
  text-align: center;
  width: 100%;
  max-width: 960px;
  box-sizing: border-box;
  align-self: center;
}
.slide[data-slide="4"] .timeline {
  margin-inline: auto;
  align-self: center;
}

/* After last roadmap row anim (d9 @ 0.68s + ~0.7s ease) */
.tl-focus-bracket { position: absolute; top: -10px; left: 28.5%; width: 57%; display: flex; flex-direction: column; align-items: center; pointer-events: none; opacity: 0; transform: translateY(8px); transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1) 1.05s, transform 0.6s cubic-bezier(0.16,1,0.3,1) 1.05s; }
.slide.active .tl-focus-bracket { opacity: 1; transform: translateY(0); }
.slide:not(.active) .tl-focus-bracket { transition-delay: 0s; transition-duration: 0.2s; }
.tl-bracket-label { font-family: var(--font-title); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.tl-bracket-line { width: 100%; height: 16px; position: relative; }
.tl-bracket-line::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, transparent, var(--orange), var(--orange), transparent); border-radius: 2px; }
.tl-bracket-line::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 2px; height: 10px; background: var(--orange); opacity: 0.6; }
.tl-bracket-arm-l, .tl-bracket-arm-r { position: absolute; top: 0; width: 2px; height: 10px; background: var(--orange); opacity: 0.6; }
.tl-bracket-arm-l { left: 10%; }
.tl-bracket-arm-r { right: 10%; }
.tl-item { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; }
.tl-content-right { display: contents; }
.tl-content-left { display: contents; }
.tl-focus-accolade { display: none; }
.tl-focus-segment { display: contents; }
.tl-mob-bracket { display: none; }
/* Ensure tl-top always renders first in desktop column layout */
.tl-top { order: -1; }
.tl-item.tl-focus .tl-label { color: var(--orange); }
.tl-item.tl-focus .tl-year { color: var(--orange); }
.tl-item.tl-focus .tl-extra-label { color: var(--orange); }
.tl-top { display: flex; flex-direction: column; align-items: center; }
.tl-dot { width: 14px; height: 14px; border-radius: 50%; margin-bottom: 14px; position: relative; z-index: 2; box-sizing: border-box; }
.tl-dot.done,
.tl-dot.current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.tl-dot.done .ph-fill,
.tl-dot.current .ph-fill {
  font-size: 11px;
  line-height: 1;
  color: #fff;
}
.tl-dot.done { background: var(--accent); box-shadow: 0 0 10px rgba(0,119,255,0.4); }
.tl-dot.current { background: var(--orange); box-shadow: 0 0 12px rgba(247,147,26,0.5); animation: breathe-dot 2.5s ease-in-out infinite; }
.tl-dot.future { background: var(--bg); border: 2px solid var(--ink-muted); }
@keyframes breathe-dot { 0%,100% { box-shadow: 0 0 8px rgba(247,147,26,0.3), 0 0 20px rgba(247,147,26,0.1); transform: scale(1); } 50% { box-shadow: 0 0 16px rgba(247,147,26,0.6), 0 0 40px rgba(247,147,26,0.25), 0 0 60px rgba(247,147,26,0.1); transform: scale(1.25); } }
.tl-label { font-family: var(--font-title); font-weight: 700; font-size: 13px; color: var(--ink); margin-bottom: 4px; }
.tl-label-current { color: var(--orange); }
.tl-desc { font-size: 11px; color: var(--ink-muted); max-width: 120px; line-height: 1.5; }
.tl-year { font-family: var(--font-mono); font-size: 10px; color: var(--ink-muted); margin-bottom: 8px; }
.tl-extra { margin-top: 14px; }
.tl-extra-label { font-family: var(--font-title); font-weight: 700; font-size: 13px; color: var(--ink); margin-bottom: 2px; }
.tl-extra-desc { font-size: 11px; color: var(--ink-muted); line-height: 1.5; }

.raise-layout { display: flex; gap: 40px; width: 100%; max-width: 960px; position: relative; z-index: 1; align-items: stretch; }

/* The Raise slide: center stack (overrides mobile .slide flex-start) + align heading with layout */
.slide[data-slide="6"] {
  justify-content: center;
  align-items: center;
}
.slide[data-slide="6"] > .tag { align-self: center; }
.slide[data-slide="6"] > h2 {
  text-align: center;
  width: 100%;
  max-width: 960px;
  box-sizing: border-box;
  align-self: center;
}
.slide[data-slide="6"] .raise-layout {
  margin-inline: auto;
  align-self: center;
}

.raise-main { flex: 1; display: flex; flex-direction: column; }
.raise-side { width: 280px; display: flex; flex-direction: column; }
.raise-hero-card { padding: 36px; text-align: center; background: linear-gradient(135deg, rgba(0,119,255,0.12), rgba(0,60,180,0.08)); border: 1px solid rgba(0,119,255,0.2); border-radius: var(--radius); position: relative; }
.raise-hero-card::before { content: ''; position: absolute; inset: -8px; border-radius: calc(var(--radius) + 8px); background: radial-gradient(ellipse at 50% 50%, rgba(0,119,255,0.25) 0%, rgba(0,119,255,0.1) 50%, transparent 75%); animation: breathe-hero 3s ease-in-out infinite; pointer-events: none; z-index: -1; }
@keyframes breathe-hero { 0%,100% { opacity: 0.3; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }
.raise-hero-card .raise-type { font-family: var(--font-title); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.raise-hero-card .raise-amount { font-family: var(--font-title); font-size: 48px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.raise-hero-card .raise-instrument { font-size: 14px; color: var(--ink-soft); }
.raise-details { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.raise-detail { padding: 18px; text-align: center; }
.raise-detail .rd-val { font-family: var(--font-title); font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.raise-detail .rd-label { font-size: 11px; color: var(--ink-muted); }
.raise-terms { display: flex; flex-direction: column; gap: 12px; flex: 1; justify-content: stretch; }
.raise-term { padding: 16px; display: flex; align-items: center; gap: 12px; flex: 1; }
.raise-term .rt-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(0,119,255,0.1); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.raise-term .rt-label { font-size: 12px; color: var(--ink-muted); }
.raise-term .rt-val { font-family: var(--font-title); font-size: 14px; font-weight: 600; color: var(--ink); }

.tokenomics-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; width: 100%; max-width: 960px; position: relative; z-index: 1; }
/* Flywheel slide: center stack + spacing (labels extend above graphic; keep title margin) */
.slide[data-slide="7"] {
  justify-content: center;
  align-items: center;
}
/* Title + pill above flywheel overflow (orbits extend into title area) */
.slide[data-slide="7"] > .tag { align-self: center; z-index: 2; }
.slide[data-slide="7"] > h2 {
  margin-bottom: 4.75rem;
  text-align: center;
  width: 100%;
  max-width: 960px;
  box-sizing: border-box;
  align-self: center;
  z-index: 2;
}
/* Desktop: horizontal gap to cards; mobile row-gap in 768px block */
.slide[data-slide="7"] .tokenomics-layout {
  column-gap: 4.75rem;
  margin-inline: auto;
  align-self: center;
  z-index: 0;
}
.flywheel-container { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.flywheel-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
  isolation: isolate; /* contain z-index so glow/svg stay behind UI */
}
/* Graphic layers: lowest first */
.flywheel-svg { width: 373px; height: 373px; overflow: visible; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 0; }
.flywheel-blob-blue { fill: none; stroke: url(#blueGrad); stroke-linecap: round; filter: drop-shadow(0 0 12px rgba(0,119,255,0.5)); transform-origin: 140px 140px; animation: blob-rotate-blue 12s linear infinite; }
.flywheel-blob-orange { fill: none; stroke: url(#orangeGrad); stroke-linecap: round; filter: drop-shadow(0 0 10px rgba(247,147,26,0.5)); transform-origin: 140px 140px; animation: blob-rotate-orange 15s linear infinite reverse; }
.flywheel-blob-inner { fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 1.5; transform-origin: 140px 140px; }
@keyframes blob-rotate-blue {
  0% { transform: rotate(0deg); d: path("M140 30 C190 28, 248 80, 250 140 C252 200, 200 248, 140 250 C80 252, 32 195, 30 140 C28 85, 85 32, 140 30Z"); }
  25% { d: path("M140 28 C195 35, 255 85, 252 140 C248 198, 195 255, 140 252 C82 248, 28 200, 32 140 C35 78, 82 30, 140 28Z"); }
  50% { d: path("M140 32 C192 25, 250 78, 248 140 C250 205, 198 250, 140 248 C78 250, 30 198, 32 140 C30 80, 88 35, 140 32Z"); }
  75% { d: path("M140 26 C198 32, 252 82, 250 140 C248 202, 192 252, 140 250 C85 248, 26 202, 30 140 C32 82, 80 28, 140 26Z"); }
  100% { transform: rotate(360deg); d: path("M140 30 C190 28, 248 80, 250 140 C252 200, 200 248, 140 250 C80 252, 32 195, 30 140 C28 85, 85 32, 140 30Z"); }
}
@keyframes blob-rotate-orange {
  0% { transform: rotate(0deg); d: path("M140 50 C180 46, 228 92, 230 140 C232 190, 188 232, 140 230 C92 232, 48 188, 50 140 C46 92, 96 48, 140 50Z"); }
  33% { d: path("M140 46 C184 52, 232 96, 228 140 C230 186, 184 232, 140 228 C94 230, 46 186, 52 140 C48 94, 94 46, 140 46Z"); }
  66% { d: path("M140 52 C178 44, 228 90, 232 140 C228 192, 192 228, 140 232 C90 228, 52 184, 46 140 C50 90, 98 52, 140 52Z"); }
  100% { transform: rotate(-360deg); d: path("M140 50 C180 46, 228 92, 230 140 C232 190, 188 232, 140 230 C92 232, 48 188, 50 140 C46 92, 96 48, 140 50Z"); }
}
.flywheel-glow { position: absolute; inset: -26px; border-radius: 50%; background: radial-gradient(circle, rgba(0,119,255,0.06) 0%, transparent 70%); pointer-events: none; z-index: -1; }
.flywheel-center-logo { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2; width: 90px; height: auto; filter: drop-shadow(0 0 12px rgba(0,119,255,0.5)); animation: breathe-logo 2.5s ease-in-out infinite; }
.flywheel-center-logo svg { width: 100%; height: auto; }
.flywheel-center-logo svg .cls-1 { fill: var(--accent); }
@keyframes breathe-logo { 0%,100% { filter: drop-shadow(0 0 8px rgba(0,119,255,0.3)) drop-shadow(0 0 20px rgba(0,119,255,0.1)); } 50% { filter: drop-shadow(0 0 16px rgba(0,119,255,0.6)) drop-shadow(0 0 40px rgba(0,119,255,0.25)) drop-shadow(0 0 60px rgba(0,119,255,0.1)); } }
.flywheel-dot {
  position: absolute;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  font-size: 28px;
  line-height: 1;
}
.flywheel-dot .ph-caret-right,
.flywheel-dot .ph-caret-left { display: block; line-height: 1; }
.flywheel-dot.fd-1 {
  top: -52px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent);
  filter: drop-shadow(0 0 6px rgba(0, 119, 255, 0.55)) drop-shadow(0 0 2px rgba(0, 119, 255, 0.4));
  animation: flywheel-orbit-cw 8s linear infinite;
  transform-origin: 50% 192px;
}
.flywheel-dot.fd-2 {
  bottom: -52px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--orange);
  filter: drop-shadow(0 0 6px rgba(247, 147, 26, 0.55)) drop-shadow(0 0 2px rgba(247, 147, 26, 0.4));
  /* Same direction as before: clockwise around the wheel (bottom anchor needs reverse + negative keyframes). */
  animation: flywheel-orbit-orange 10s linear infinite reverse;
  transform-origin: 50% -182px;
}
@keyframes flywheel-orbit-cw { 0% { transform: translateX(-50%) rotate(0deg); } 100% { transform: translateX(-50%) rotate(360deg); } }
@keyframes flywheel-orbit-orange { 0% { transform: translateX(-50%) rotate(0deg); } 100% { transform: translateX(-50%) rotate(-360deg); } }
.flywheel-labels { position: absolute; inset: -44px; pointer-events: none; z-index: 3; }
.flywheel-label { position: absolute; font-size: 11px; font-weight: 400; background: rgba(11,11,20,0.5); backdrop-filter: blur(12px); padding: 7px 14px; border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,0.08); white-space: nowrap; transition: all 0.3s; pointer-events: auto; }
.flywheel-label:hover { border-color: var(--accent); color: var(--ink); }
.flywheel-label.fl-top { top: -8px; left: 50%; transform: translateX(-50%); color: var(--accent); }
.flywheel-label.fl-right { right: -56px; top: 50%; transform: translateY(-50%); color: var(--ink-soft); }
.flywheel-label.fl-bottom { bottom: -8px; left: 50%; transform: translateX(-50%); color: var(--orange); }
.flywheel-label.fl-left { left: -46px; top: 50%; transform: translateY(-50%); color: var(--ink-soft); }
.token-stats { display: flex; flex-direction: column; gap: 12px; }
.token-stat { padding: 20px; display: flex; align-items: center; gap: 16px; }
.token-stat .ts-pct { font-family: var(--font-title); font-size: 28px; font-weight: 700; min-width: 70px; text-align: center; }
.token-stat .ts-pct.c-blue { color: var(--accent); }
.token-stat .ts-pct.c-orange { color: var(--orange); }
.token-stat .ts-pct.c-muted { color: var(--ink-muted); }
.token-stat .ts-label { font-size: 13px; color: var(--ink-soft); }
.token-stat .ts-title { font-family: var(--font-title); font-weight: 600; font-size: 14px; color: var(--ink); margin-bottom: 2px; }

.team-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; width: 100%; max-width: 960px; position: relative; z-index: 1; }

/* Thank You slide: vertically center CTA block (overrides mobile .slide flex-start) */
.slide[data-slide="8"] {
  justify-content: center;
  align-items: center;
}
.slide[data-slide="8"] > .tag { align-self: center; }
.slide[data-slide="8"] > h2 {
  text-align: center;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
  align-self: center;
}
.slide[data-slide="8"] .team-layout {
  margin-inline: auto;
  align-self: center;
  width: 100%;
}
.slide[data-slide="8"] > .team-cta-strip {
  align-self: center;
}

.team-section-label { font-family: var(--font-title); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 16px; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.team-card { padding: 22px; }
.team-card .tc-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 14px; margin-bottom: 14px; }
.tc-purple { background: rgba(0,119,255,0.12); color: var(--accent); }
.tc-teal { background: rgba(0,119,255,0.1); color: var(--accent); }
.tc-orange { background: rgba(247,147,26,0.1); color: var(--orange); }
.tc-green { background: rgba(0,119,255,0.1); color: var(--accent); }
.team-card .tc-title { font-family: var(--font-title); font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 8px; }
.team-card .tc-skills { font-size: 12px; color: var(--ink-muted); line-height: 1.7; }

.ask-summary-card { padding: 28px 32px; display: flex; flex-direction: column; gap: 20px; }
.ask-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.ask-headline { display: flex; align-items: baseline; gap: 12px; }
.ask-amount { font-family: var(--font-mono); font-size: 36px; font-weight: 500; color: var(--accent); }
.ask-type { font-family: var(--font-title); font-size: 15px; font-weight: 600; color: var(--ink-soft); letter-spacing: 0.5px; }
.ask-fdv { display: flex; align-items: baseline; gap: 8px; }
.ask-fdv-val { font-family: var(--font-mono); font-size: 24px; font-weight: 500; color: var(--ink); }
.ask-fdv-label { font-size: 13px; color: var(--ink-muted); font-weight: 500; }
.ask-divider { width: 100%; height: 1px; background: var(--border); }
.ask-points { display: flex; flex-direction: column; gap: 14px; }
.ask-point { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; line-height: 1.65; color: var(--ink-soft); }
.ask-point strong { color: var(--ink); font-weight: 600; }
.ask-bullet { font-size: 12px; flex-shrink: 0; margin-top: 3px; }
.ask-bullet.c-blue { color: var(--accent); }
.ask-bullet.c-orange { color: var(--orange); }
.pillar-list { display: flex; flex-direction: column; gap: 12px; }
.pillar-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 20px; }
.pillar-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.pillar-item .pi-title { font-family: var(--font-title); font-weight: 700; font-size: 14px; color: var(--ink); margin-bottom: 3px; }
.pillar-item .pi-desc { font-size: 12px; color: var(--ink-muted); line-height: 1.6; }
.team-cta-strip { margin-top: 32px; padding: 22px 28px; background: linear-gradient(135deg, rgba(0,119,255,0.12), rgba(0,60,180,0.06)); border: 1px solid rgba(0,119,255,0.15); border-radius: var(--radius); width: 100%; max-width: 600px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; position: relative; z-index: 1; }
.team-cta-strip .tcs-text h3 { font-family: var(--font-title); font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.team-cta-strip .tcs-text p { font-size: 13px; color: var(--ink-soft); }
.team-cta-strip .tcs-btn { display: inline-block; padding: 15px 36px; border-radius: var(--radius-pill); font-family: var(--font-body); font-size: 18px; font-weight: 600; background: linear-gradient(135deg, var(--accent2), var(--accent)); color: white; border: none; cursor: pointer; text-decoration: none; text-align: center; line-height: 1.25; max-width: 100%; box-sizing: border-box; transition: all 0.25s; }
.team-cta-strip .tcs-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,119,255,0.3); }

.cta-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: var(--radius-pill); font-family: var(--font-body); font-size: 14px; font-weight: 400; background: linear-gradient(135deg, var(--accent2), var(--accent)); color: white; border: none; cursor: pointer; text-decoration: none; transition: all 0.25s; position: relative; z-index: 1; }
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,119,255,0.35); }

.bottom-nav {
  position: fixed; bottom: 24px; left: var(--sidebar-w); right: 0;
  display: flex; justify-content: center; align-items: center; gap: 6px; z-index: 100;
}
.bottom-nav-dots { display: flex; align-items: center; justify-content: center; gap: 6px; }
.bottom-nav-social { display: none; }
.bottom-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.1); cursor: pointer; transition: all 0.3s; border: none; }
.bottom-dot.active { background: var(--accent); box-shadow: 0 0 8px rgba(0,119,255,0.4); transform: scale(1.3); }

@media (max-width: 1024px) {
  :root { --sidebar-w: 190px; }
  .slide { padding: 40px 36px; }
  h2 { font-size: 32px; }
  .hero-title { font-size: 44px; }
  .flow-node { min-width: 150px; padding: 16px 18px; }
  .flow-node.pool { min-width: 190px; }
  .flow-arrow { min-width: 40px; }
  .mechanics-grid { gap: 10px; }
  .market-bubbles { gap: 20px; }
  .mb-tam .mb-ring { width: 170px; height: 170px; }
  .mb-sam .mb-ring { width: 130px; height: 130px; }
  .mb-som .mb-ring { width: 100px; height: 100px; }
  /* Center slide tag + main title (mobile/tablet; some slides lacked explicit h2 rules) */
  .slide > .tag {
    text-align: center;
    align-self: center;
  }
  .slide > h2 {
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    align-self: center;
  }
  .ps-grid .problem-card h3,
  .ps-grid .solution-card h3 {
    text-align: center;
  }
  .ps-grid .problem-card p,
  .ps-grid .solution-card p {
    text-align: center;
  }
  .mo2-section-label {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
  .mo2-gap-title { text-align: center; }
  .mo2-gap-left { text-align: center; }
  /* RWA rows: full-width label row, then bar (long labels vs narrow content + sidebar) */
  .mo2-rwa-row {
    flex-wrap: wrap;
    height: auto;
    row-gap: 8px;
    align-items: flex-start;
  }
  .mo2-rwa-label {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .mo2-rwa-name {
    white-space: normal;
    line-height: 1.25;
  }
  .mo2-rwa-track {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .app-scale {
    flex-direction: column;
    transform: none;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    box-sizing: border-box;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .sidebar { display: none; }
  .topbar { display: flex; }
  .app-scale .deck {
    height: calc(100% - 56px - env(safe-area-inset-top, 0px));
    margin-top: calc(56px + env(safe-area-inset-top, 0px));
    min-height: 0;
  }
  .slide { padding: 24px 20px; justify-content: flex-start; padding-top: 32px; overflow-y: auto; }
  .slide[data-slide="0"] { padding-bottom: 100px; }
  .bottom-nav {
    left: 0;
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .bottom-nav-social {
    display: flex;
    position: static;
    transform: none;
    justify-content: center;
    flex-wrap: wrap;
  }
  h2 { font-size: 26px; margin-bottom: 24px; }
  .hero-title { font-size: 34px; }
  .hero-sub { font-size: 14px; margin-bottom: 32px; }
  .hero-pills { gap: 8px; }
  .hero-pill { padding: 8px 14px; font-size: 12px; }
  .what-is-grid { grid-template-columns: 1fr; gap: 24px; }
  .problem-cards { grid-template-columns: 1fr; gap: 12px; }
  .slide[data-slide="2"] { justify-content: center; padding: 24px 12px; }
  .ps-grid-desktop { display: none !important; }
  .ps-grid-mobile-wrap {
    display: block; width: 100%; position: relative; z-index: 1;
  }
  .ps-grid-mob {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    gap: 10px 5px;
    width: 100%; max-width: none;
  }
  .ps-grid-mob .problem-card,
  .ps-grid-mob .solution-card { padding: 12px; }
  .ps-grid-mob .problem-card h3,
  .ps-grid-mob .solution-card h3 { font-size: 12px; margin-bottom: 5px; }
  .ps-grid-mob .problem-card p,
  .ps-grid-mob .solution-card p { font-size: 10px; line-height: 1.5; }
  .ps-grid-mob .problem-card .num { font-size: 32px; top: 4px; right: 8px; }
  .ps-grid-mob .ps-arrow-cell { min-width: 24px; }
  .ps-grid-mob .ps-arrow-cell svg { width: 22px; height: 22px; }
  .solution-strip { padding: 14px 16px; }
  .solution-strip .txt { font-size: 13px; }
  .flow-row { flex-direction: column; gap: 10px; }
  .flow-node { min-width: unset !important; width: 100%; max-width: 260px; }
  .flow-arrow {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transform: none;
    min-width: unset;
  }
  .flow-arrow .arrow-label { text-align: center; order: 2; }
  .flow-arrow .arrow-line { order: 1; font-size: 0; letter-spacing: normal; }
  .flow-arrow .arrow-line::before { font-size: 22px; color: var(--accent); }
  /* first arrow: down payment goes down */
  .flow-row .flow-arrow:nth-child(2) .arrow-line::before { content: '↓'; }
  /* second arrow: asset principal goes up */
  .flow-row .flow-arrow:nth-child(4) .arrow-line::before { content: '↑'; }
  .mechanics-grid { grid-template-columns: repeat(2,1fr); gap: 10px; margin-top: 20px; }
  .market-bubbles { flex-direction: row; gap: 16px; flex-wrap: wrap; justify-content: center; }
  .mb-tam .mb-ring { width: 140px; height: 140px; }
  .mb-tam .mb-value { font-size: 26px; }
  .mb-sam .mb-ring { width: 110px; height: 110px; }
  .mb-sam .mb-value { font-size: 20px; }
  .mb-som .mb-ring { width: 90px; height: 90px; }
  .mb-som .mb-value { font-size: 18px; }
  .mb-label-full { font-size: 11px; }
  .mb-desc { font-size: 10px; }
  .market-stats { grid-template-columns: 1fr; gap: 10px; }
  /* ── Roadmap slide mobile: centered two-column timeline ── */
  .slide[data-slide="4"] { padding: 24px 12px 80px; justify-content: center; overflow-y: auto; }
  .slide[data-slide="4"] h2 { margin-bottom: 20px; }

  /* Hide desktop bracket */
  .tl-focus-bracket { display: none; }

  /* Timeline container: centered, full width */
  .timeline {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0;
    position: relative;
    width: 100%;
    max-width: 100%;
  }

  /* Vertical line runs through the center (50%) */
  .timeline::before {
    content: '';
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: auto;
    right: auto;
    background: linear-gradient(180deg, #0055cc, #0077FF 40%, rgba(247,147,26,0.6) 70%, rgba(0,119,255,0.2) 90%, transparent);
    opacity: 1;
    transition: none;
  }
  .timeline::after { display: none; }
  .slide.active .timeline::before { transform: translateX(-50%); opacity: 1; }

  /* Every item is a full-width row */
  .tl-item {
    display: grid;
    grid-template-columns: 1fr 44px 1fr;
    align-items: flex-start;
    text-align: left;
    gap: 0;
    padding: 0 0 20px 0;
    position: relative;
    order: unset;
  }

  /* tl-top: the center column — dot + year */
  .tl-top {
    order: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    grid-column: 2;
    padding-top: 3px;
    width: 44px;
  }
  .tl-dot {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 3px;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    z-index: 2;
  }
  .tl-dot.done,
  .tl-dot.current {
    width: 14px;
    height: 14px;
  }
  .tl-dot.done .ph-fill,
  .tl-dot.current .ph-fill {
    font-size: 9px;
  }
  .tl-year {
    margin: 0;
    font-size: 8px;
    white-space: nowrap;
    text-align: center;
    line-height: 1.2;
  }

  /* LEFT-side items: content in col 1, dot in col 2, col 3 empty */
  .tl-item.tl-side-left .tl-content-left {
    display: block;
    grid-column: 1;
    text-align: right;
    padding-right: 10px;
  }
  .tl-item.tl-side-left .tl-top { grid-column: 2; }
  /* Hide the empty right slot */
  .tl-item.tl-side-left .tl-content-right { display: none; }

  /* RIGHT-side items: col 1 = focus accolade, dot in col 2, content in col 3 */
  .tl-item.tl-side-right .tl-content-right {
    display: block;
    grid-column: 3;
    text-align: left;
    padding-left: 10px;
  }
  .tl-item.tl-side-right .tl-top { grid-column: 2; }
  /* Hide the empty left slot for right-side items */
  .tl-item.tl-side-right .tl-content-left { display: none; }

  /* ── 2026 Focus segment: must NOT use display:contents — otherwise the
     mob-bracket positions against .timeline and spans the whole roadmap. ── */
  .tl-focus-segment {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
  }

  /* Bracket only covers this segment (Q1–Q4 rows), not 2024/2025/2027 */
  .tl-mob-bracket {
    display: block;
    position: absolute;
    inset: 0 auto 0 0;
    width: calc(50% - 22px);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .slide.active .tl-mob-bracket {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1.05s;
  }

  .slide:not(.active) .tl-mob-bracket {
    opacity: 0;
    transform: translateX(-6px);
    transition-delay: 0s !important;
    transition-duration: 0.2s !important;
  }

  /* Vertical line: Q1 dot → Q4 dot (--tl-* set by JS on narrow viewports; fallbacks if no JS) */
  .tl-mob-bracket-line {
    position: absolute;
    top: var(--tl-bracket-line-top, 18px);
    bottom: var(--tl-bracket-line-bottom, 118px);
    right: 10px;
    width: 2px;
    background: linear-gradient(180deg, rgba(247,147,26,0.45), var(--orange) 6%, var(--orange) 94%, rgba(247,147,26,0.45));
    border-radius: 2px;
  }

  /* Top tick arm — extends right from the vertical line toward center */
  .tl-mob-bracket-line::before {
    content: '';
    position: absolute;
    top: 0;
    right: -8px;
    width: 8px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    opacity: 0.7;
  }

  /* Bottom tick arm */
  .tl-mob-bracket-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -8px;
    width: 8px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    opacity: 0.7;
  }

  /* "2026 Focus" — text only (no pill), between Q2 & Q3 (--tl-mob-bracket-label-top from JS) */
  .tl-mob-bracket-label {
    position: absolute;
    top: var(--tl-mob-bracket-label-top, 44%);
    left: auto;
    /* ~16px past line (line ends ~12px from bracket right); keeps “FOCUS” off the stroke */
    right: 26px;
    width: max-content;
    max-width: min(100%, 72px);
    transform: translateY(-50%);
    text-align: center;
    font-family: var(--font-title);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--orange);
    background: none;
    border: none;
    border-radius: 0;
    padding: 0 8px 0 0;
    line-height: 1.25;
    box-sizing: border-box;
  }

  /* Text sizes in both columns */
  .tl-label {
    font-size: 13px;
    margin-bottom: 2px;
    line-height: 1.2;
  }
  .tl-desc {
    max-width: none;
    font-size: 10px;
    color: var(--ink-muted);
    line-height: 1.4;
    margin-bottom: 4px;
  }
  .tl-extra { margin-top: 5px; }
  .tl-extra-label { font-size: 11px; }
  .tl-extra-desc { font-size: 9px; line-height: 1.4; }

  /* Focus orange accents */
  .tl-item.tl-focus .tl-year { color: var(--orange); }
  .raise-layout { flex-direction: column; }
  .raise-side { width: 100%; }
  .raise-hero-card .raise-amount { font-size: 36px; }
  .tokenomics-layout { grid-template-columns: 1fr; gap: 28px; }
  .slide[data-slide="7"] {
    overflow-x: hidden;
    overflow-y: auto;
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
  }
  .slide[data-slide="7"] > h2 { margin-bottom: 2rem; }
  .slide[data-slide="7"] .tokenomics-layout { row-gap: 2rem; column-gap: 28px; max-width: 100%; }
  /* SVG was 373px in a 220px box + slide overflow → clipped logo & labels */
  .flywheel-container { width: 100%; max-width: 100%; box-sizing: border-box; }
  .flywheel-wrapper {
    width: min(220px, calc(100vw - 56px));
    height: min(220px, calc(100vw - 56px));
    max-width: 100%;
    margin-inline: auto;
  }
  .flywheel-svg {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
  }
  .flywheel-labels {
    /* Extra horizontal room so center-anchored side labels are not clipped by slide overflow-x */
    inset: -12px clamp(-20px, -4vw, -8px);
  }
  .flywheel-label {
    font-size: 11px;
    padding: 6px 10px;
    max-width: min(140px, 38vw);
  }
  .flywheel-label.fl-top { top: 0; }
  .flywheel-label.fl-bottom {
    bottom: 0;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    max-width: min(160px, 44vw);
  }
  /* Anchor from center: leaves a clear band for the logo (left/right:0 pulled pills over it) */
  .flywheel-label.fl-left {
    left: 50%;
    right: auto;
    top: 50%;
    transform: translate(calc(-100% - clamp(44px, 13vw, 58px)), -50%);
  }
  .flywheel-label.fl-right {
    left: 50%;
    right: auto;
    top: 50%;
    transform: translate(clamp(44px, 13vw, 58px), -50%);
  }
  .flywheel-center-logo {
    width: min(88px, 36vw);
  }
  .token-stat {
    gap: 18px;
    padding: 16px 18px;
    align-items: flex-start;
  }
  .token-stat .ts-pct {
    min-width: 56px;
    flex-shrink: 0;
  }
  .token-stat .ts-label { font-size: 12px; line-height: 1.45; }
  .token-stat .ts-title { font-size: 13px; }
  .team-layout { grid-template-columns: 1fr; gap: 28px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-cta-strip { flex-direction: column; text-align: center; padding: 18px; }
  .cta-btn { padding: 12px 24px; font-size: 13px; }

  /* Market opportunity: avoid horizontal overflow + cramped two-col bottom */
  .mo2-gap-hero {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px 18px;
  }
  .mo2-gap-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
  }
  .mo2-gap-stat { text-align: left; }
  .mo2-gap-big { font-size: clamp(22px, 7vw, 32px); }
  .mo2-section-label {
    line-height: 1.45;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
  .mo2-rwa-row { row-gap: 6px; }
  .mo2-rwa-fill {
    min-width: 0;
    padding-left: 8px;
    gap: 8px;
  }
  .mo2-rwa-fill-val { font-size: 12px; }
  .mo2-rwa-tok-val { font-size: 9px; }
  .mo2-bottom { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .slide { padding: 16px 14px; padding-top: 24px; }
  .hero-title { font-size: 28px; }
  h2 { font-size: 22px; }
  .flywheel-wrapper {
    width: min(200px, calc(100vw - 48px));
    height: min(200px, calc(100vw - 48px));
  }
  .flywheel-label { font-size: 10px; padding: 5px 8px; max-width: min(130px, 40vw); }
}

/* Tablet / large phone: two columns for flywheel stat cards */
@media (min-width: 540px) and (max-width: 768px) {
  .slide[data-slide="7"] .token-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: stretch;
  }
  .slide[data-slide="7"] .token-stat { min-height: 100%; }
}

/* Narrow tablet (sidebar still visible): a bit more breathing room */
@media (min-width: 769px) and (max-width: 1024px) {
  .slide[data-slide="7"] .tokenomics-layout {
    gap: 32px;
    max-width: min(960px, 100%);
  }
  .flywheel-wrapper {
    width: min(260px, 36vw);
    height: min(260px, 36vw);
  }
  /* Smaller wheel than desktop: same center-gap as mobile so side pills do not cover the logo */
  .slide[data-slide="7"] .flywheel-label.fl-left {
    left: 50%;
    right: auto;
    top: 50%;
    transform: translate(calc(-100% - clamp(44px, 10vw, 58px)), -50%);
  }
  .slide[data-slide="7"] .flywheel-label.fl-right {
    left: 50%;
    right: auto;
    top: 50%;
    transform: translate(clamp(44px, 10vw, 58px), -50%);
  }
}

/* ─── Slide 2: Desktop rings container (positioned via inline styles) ─── */

/* ─── Slide 2: Mobile rings + badges wrapper (hidden on desktop) ─── */
.s2-mobile-wrap {
  display: none;
}

/* ─── Slide 2: Orbiting asset badges ─── */
.s2-badge {
  --badge-icon: 40px;
  position: absolute; z-index: 1;
  top: 55%; left: 76%;
  margin: calc((var(--badge-icon) + 16px) / -2) 0 0 calc((var(--badge-icon) + 16px) / -2);
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.s2-b4, .s2-bm4 { --badge-icon: 58px; }
.s2-b5, .s2-bm5 { --badge-icon: 50px; }
.s2-b3, .s2-bm3 { --badge-icon: 46px; }
.s2-b6, .s2-bm6 { --badge-icon: 46px; }
.s2-b1, .s2-bm1 { --badge-icon: 40px; }
.s2-b2, .s2-bm2 { --badge-icon: 34px; }
.s2-b7, .s2-bm7 { --badge-icon: 28px; }
.slide.active .s2-badge { opacity: 1; }
.slide.active .s2-b1, .slide.active .s2-bm1 { transition-delay: 0.4s; }
.slide.active .s2-b2, .slide.active .s2-bm2 { transition-delay: 0.55s; }
.slide.active .s2-b3, .slide.active .s2-bm3 { transition-delay: 0.7s; }
.slide.active .s2-b4, .slide.active .s2-bm4 { transition-delay: 0.85s; }
.slide.active .s2-b5, .slide.active .s2-bm5 { transition-delay: 1.0s; }
.slide.active .s2-b6, .slide.active .s2-bm6 { transition-delay: 1.15s; }
.slide.active .s2-b7, .slide.active .s2-bm7 { transition-delay: 1.3s; }
.slide:not(.active) .s2-badge { transition-delay: 0s !important; transition-duration: 0.15s !important; }

.s2-badge-mobile { display: none; }

.s2-badge-icon {
  width: var(--badge-icon); height: var(--badge-icon); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--s2-bg);
  box-shadow: 0 0 20px var(--s2-glow), inset 0 0 12px var(--s2-glow);
  flex-shrink: 0;
}
.s2-badge-icon svg { width: calc(var(--badge-icon) * 0.5); height: calc(var(--badge-icon) * 0.5); }
.s2-badge-icon i.ph-duotone { font-size: calc(var(--badge-icon) * 0.45); line-height: 1; }
.s2-badge-label {
  font-family: var(--font-title);
  font-size: 12px; font-weight: 600; color: var(--ink);
  white-space: nowrap;
}

@keyframes s2-orbit-1 { from { transform: rotate(20deg) translateX(250px) rotate(-20deg); } to { transform: rotate(380deg) translateX(250px) rotate(-380deg); } }
@keyframes s2-orbit-2 { from { transform: rotate(130deg) translateX(340px) rotate(-130deg); } to { transform: rotate(-230deg) translateX(340px) rotate(230deg); } }
@keyframes s2-orbit-3 { from { transform: rotate(210deg) translateX(180px) rotate(-210deg); } to { transform: rotate(570deg) translateX(180px) rotate(-570deg); } }
@keyframes s2-orbit-4 { from { transform: rotate(60deg) translateX(380px) rotate(-60deg); } to { transform: rotate(420deg) translateX(380px) rotate(-420deg); } }
@keyframes s2-orbit-5 { from { transform: rotate(300deg) translateX(220px) rotate(-300deg); } to { transform: rotate(-60deg) translateX(220px) rotate(60deg); } }
@keyframes s2-orbit-6 { from { transform: rotate(175deg) translateX(360px) rotate(-175deg); } to { transform: rotate(-185deg) translateX(360px) rotate(185deg); } }
@keyframes s2-orbit-7 { from { transform: rotate(250deg) translateX(290px) rotate(-250deg); } to { transform: rotate(610deg) translateX(290px) rotate(-610deg); } }
.slide.active .s2-b1 { animation: s2-orbit-1 28s linear 0.4s infinite; }
.slide.active .s2-b2 { animation: s2-orbit-2 38s linear 0.55s infinite; }
.slide.active .s2-b3 { animation: s2-orbit-3 22s linear 0.7s infinite; }
.slide.active .s2-b4 { animation: s2-orbit-4 48s linear 0.85s infinite; }
.slide.active .s2-b5 { animation: s2-orbit-5 25s linear 1.0s infinite; }
.slide.active .s2-b6 { animation: s2-orbit-6 42s linear 1.15s infinite; }
.slide.active .s2-b7 { animation: s2-orbit-7 33s linear 1.3s infinite; }
.slide:not(.active) .s2-badge { animation: none !important; }

@media (max-width: 768px) {
  .s2-rings-desktop { display: none; }
  .s2-badge-desktop { display: none; }
  .s2-badge-mobile { display: flex; }

  .slide[data-slide="1"] {
    justify-content: center;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .slide[data-slide="1"] > .tag { order: 1; }
  .slide[data-slide="1"] > h2 { order: 2; margin-bottom: 16px; }
  .slide[data-slide="1"] > .what-is-grid { order: 3; text-align: center; }
  .slide[data-slide="1"] .what-is-left p { text-align: center; }
  .slide[data-slide="1"] > .s2-mobile-wrap { order: 4; }

  .s2-mobile-wrap {
    display: block;
    position: relative;
    width: 100%; height: 420px;
    margin: 0 auto;
    z-index: 0;
    overflow: visible;
    flex-shrink: 0;
  }
  .s2-rings-mobile {
    position: absolute; inset: 0;
    pointer-events: none; overflow: visible;
  }
  .s2-rings-mobile svg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(1.05);
    overflow: visible;
  }

  .s2-badge-mobile {
    position: absolute;
    top: 50%; left: 50%;
    margin: calc((var(--badge-icon) * 0.85 + 10px) / -2) 0 0 calc((var(--badge-icon) * 0.85 + 10px) / -2);
    padding: 6px;
  }
  .s2-badge-mobile .s2-badge-icon { width: calc(var(--badge-icon) * 0.85); height: calc(var(--badge-icon) * 0.85); }
  .s2-badge-mobile .s2-badge-icon svg { width: calc(var(--badge-icon) * 0.42); height: calc(var(--badge-icon) * 0.42); }
  .s2-badge-mobile .s2-badge-icon i.ph-duotone { font-size: calc(var(--badge-icon) * 0.42); }

  @keyframes s2m-orbit-1 { from { transform: rotate(20deg) translateX(160px) rotate(-20deg); } to { transform: rotate(380deg) translateX(160px) rotate(-380deg); } }
  @keyframes s2m-orbit-2 { from { transform: rotate(130deg) translateX(185px) rotate(-130deg); } to { transform: rotate(-230deg) translateX(185px) rotate(230deg); } }
  @keyframes s2m-orbit-3 { from { transform: rotate(210deg) translateX(120px) rotate(-210deg); } to { transform: rotate(570deg) translateX(120px) rotate(-570deg); } }
  @keyframes s2m-orbit-4 { from { transform: rotate(60deg) translateX(200px) rotate(-60deg); } to { transform: rotate(420deg) translateX(200px) rotate(-420deg); } }
  @keyframes s2m-orbit-5 { from { transform: rotate(300deg) translateX(140px) rotate(-300deg); } to { transform: rotate(-60deg) translateX(140px) rotate(60deg); } }
  @keyframes s2m-orbit-6 { from { transform: rotate(175deg) translateX(175px) rotate(-175deg); } to { transform: rotate(-185deg) translateX(175px) rotate(185deg); } }
  @keyframes s2m-orbit-7 { from { transform: rotate(250deg) translateX(135px) rotate(-250deg); } to { transform: rotate(610deg) translateX(135px) rotate(-610deg); } }
  .slide.active .s2-bm1 { animation: s2m-orbit-1 28s linear 0.4s infinite; }
  .slide.active .s2-bm2 { animation: s2m-orbit-2 38s linear 0.55s infinite; }
  .slide.active .s2-bm3 { animation: s2m-orbit-3 22s linear 0.7s infinite; }
  .slide.active .s2-bm4 { animation: s2m-orbit-4 48s linear 0.85s infinite; }
  .slide.active .s2-bm5 { animation: s2m-orbit-5 25s linear 1.0s infinite; }
  .slide.active .s2-bm6 { animation: s2m-orbit-6 42s linear 1.15s infinite; }
  .slide.active .s2-bm7 { animation: s2m-orbit-7 33s linear 1.3s infinite; }
}

/* ─── Slide 2: Center icon pop cycling (7 assets, 21s) ─── */
.s2-asset { transform: scale(0); }
@keyframes s2-pop-1 {
  0% { transform: scale(0); animation-timing-function: cubic-bezier(0.34,1.56,0.64,1); }
  3% { transform: scale(1); }
  11% { transform: scale(1); animation-timing-function: cubic-bezier(0.55,0,1,0.45); }
  14.2% { transform: scale(0); }
  100% { transform: scale(0); }
}
@keyframes s2-pop-2 {
  0% { transform: scale(0); }
  14.2% { transform: scale(0); animation-timing-function: cubic-bezier(0.34,1.56,0.64,1); }
  17.2% { transform: scale(1); }
  25.2% { transform: scale(1); animation-timing-function: cubic-bezier(0.55,0,1,0.45); }
  28.5% { transform: scale(0); }
  100% { transform: scale(0); }
}
@keyframes s2-pop-3 {
  0% { transform: scale(0); }
  28.5% { transform: scale(0); animation-timing-function: cubic-bezier(0.34,1.56,0.64,1); }
  31.5% { transform: scale(1); }
  39.5% { transform: scale(1); animation-timing-function: cubic-bezier(0.55,0,1,0.45); }
  42.8% { transform: scale(0); }
  100% { transform: scale(0); }
}
@keyframes s2-pop-4 {
  0% { transform: scale(0); }
  42.8% { transform: scale(0); animation-timing-function: cubic-bezier(0.34,1.56,0.64,1); }
  45.8% { transform: scale(1); }
  53.8% { transform: scale(1); animation-timing-function: cubic-bezier(0.55,0,1,0.45); }
  57.1% { transform: scale(0); }
  100% { transform: scale(0); }
}
@keyframes s2-pop-5 {
  0% { transform: scale(0); }
  57.1% { transform: scale(0); animation-timing-function: cubic-bezier(0.34,1.56,0.64,1); }
  60.1% { transform: scale(1); }
  68.1% { transform: scale(1); animation-timing-function: cubic-bezier(0.55,0,1,0.45); }
  71.4% { transform: scale(0); }
  100% { transform: scale(0); }
}
@keyframes s2-pop-6 {
  0% { transform: scale(0); }
  71.4% { transform: scale(0); animation-timing-function: cubic-bezier(0.34,1.56,0.64,1); }
  74.4% { transform: scale(1); }
  82.4% { transform: scale(1); animation-timing-function: cubic-bezier(0.55,0,1,0.45); }
  85.7% { transform: scale(0); }
  100% { transform: scale(0); }
}
@keyframes s2-pop-7 {
  0% { transform: scale(0); }
  85.7% { transform: scale(0); animation-timing-function: cubic-bezier(0.34,1.56,0.64,1); }
  88.7% { transform: scale(1); }
  96.7% { transform: scale(1); animation-timing-function: cubic-bezier(0.55,0,1,0.45); }
  100% { transform: scale(0); }
}
.s2-a1 { animation: s2-pop-1 21s infinite; }
.s2-a2 { animation: s2-pop-2 21s infinite; }
.s2-a3 { animation: s2-pop-3 21s infinite; }
.s2-a4 { animation: s2-pop-4 21s infinite; }
.s2-a5 { animation: s2-pop-5 21s infinite; }
.s2-a6 { animation: s2-pop-6 21s infinite; }
.s2-a7 { animation: s2-pop-7 21s infinite; }
