﻿:root {
  --bg: #050b18;
  --bg-soft: #07111f;
  --panel: rgba(11, 22, 40, 0.74);
  --panel-strong: rgba(15, 28, 49, 0.9);
  --border: rgba(168, 180, 199, 0.14);
  --border-strong: rgba(0, 213, 255, 0.3);
  --text: #f4f8ff;
  --muted: #a8b4c7;
  --cyan: #00d5ff;
  --aqua: #2f80ff;
  --lime: #20e6a3;
  --gold: #d6a84f;
  --danger: #ff4d6d;
  --purple: #7c5cff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 0%, rgba(0, 213, 255, 0.16), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(47, 128, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #050b18 0%, #07111f 42%, #050b18 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

.deck {
  position: relative;
}

body.is-deck-switching .deck {
  opacity: 1;
}

.deck::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 20%, transparent 78%, rgba(32, 230, 163, 0.025)),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.028), transparent 38%),
    linear-gradient(180deg, rgba(0, 213, 255, 0.045), transparent 28%, transparent 72%, rgba(32, 230, 163, 0.035));
  pointer-events: none;
}

.brand-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  align-self: stretch;
  min-height: 2.1rem;
  padding: 0.18rem 0.86rem 0.18rem 0.22rem;
  border: 1px solid transparent;
  border-right-color: rgba(169, 197, 255, 0.12);
  border-radius: 999px;
  color: var(--text);
  background: rgba(0, 213, 255, 0.035);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  user-select: none;
}

.brand-logo img {
  width: 1.78rem;
  height: 1.78rem;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(0, 213, 255, 0.38));
}

.deck-switch {
  position: fixed;
  top: 1.4rem;
  left: 50%;
  z-index: 55;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 0.3rem;
  padding: 0.28rem;
  border: 1px solid rgba(169, 197, 255, 0.12);
  border-radius: 999px;
  background: rgba(7, 10, 16, 0.62);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.deck-switch__button {
  flex: 0 0 9.4rem;
  width: 9.4rem;
  min-height: 2.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 0.42rem 0.62rem;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.deck-switch__button.is-active,
.deck-switch__button:hover {
  border-color: rgba(0, 213, 255, 0.22);
  background: rgba(0, 213, 255, 0.09);
  color: var(--text);
}

.slide {
  position: relative;
  min-height: 100vh;
  padding: 6rem 7rem 4rem 7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  isolation: isolate;
}

.slide[data-deck] {
  display: none;
}

body[data-active-deck="strategy"] .slide[data-deck="strategy"],
body[data-active-deck="new-vision"] .slide[data-deck="new-vision"],
body[data-active-deck="ma"] .slide[data-deck="ma"],
body[data-active-deck="products"] .slide[data-deck="products"],
body[data-active-deck="new-products"] .slide[data-deck="new-products"] {
  display: flex;
}

.slide > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.slide::after {
  content: none;
}

body {
  scroll-snap-type: none;
}

.slide::before {
  content: none;
}

.progress-shell {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 28px;
  padding: 0;
  border: 1px solid rgba(169, 197, 255, 0.1);
  border-radius: 999px;
  background: rgba(7, 10, 16, 0.38);
  backdrop-filter: blur(10px);
  color: var(--text);
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, color 180ms ease;
}

.lang-toggle:hover {
  border-color: rgba(0, 213, 255, 0.26);
  background: rgba(0, 213, 255, 0.08);
  transform: translateY(-1px);
}

.lang-toggle__current {
  color: var(--text);
}

.menu-button,
.close-menu,
.ghost-button {
  cursor: pointer;
}

.menu-button {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(169, 197, 255, 0.1);
  background: rgba(7, 10, 16, 0.34);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  gap: 2px;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.menu-button span {
  width: 11px;
  height: 1px;
  border-radius: 999px;
  background: var(--text);
  display: block;
}

.menu-button:hover,
.ghost-button:hover,
.close-menu:hover {
  transform: translateY(-1px);
  border-color: var(--border-strong);
}

.progress-number {
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.progress-number--total {
  color: var(--muted);
}

.progress-bar {
  width: 2px;
  height: 154px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

#progressFill {
  display: block;
  width: 100%;
  height: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--cyan), var(--lime));
  transition: height 220ms ease;
}

.menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(3, 5, 10, 0.56);
  backdrop-filter: blur(8px);
}

.menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 61;
  width: min(440px, 92vw);
  height: 100vh;
  padding: 1rem 1rem 1.1rem;
  background: rgba(6, 8, 14, 0.94);
  border-left: 1px solid var(--border);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 220ms ease;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 0.7rem;
}

.menu-drawer.open {
  transform: translateX(0);
}

.menu-drawer header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.menu-drawer header span {
  color: var(--cyan);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.menu-drawer header h2 {
  margin: 0;
  font-size: 1.5rem;
}

.close-menu {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.menu-drawer nav {
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 0.22rem;
  padding-right: 0.2rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 213, 255, 0.35) transparent;
}

.menu-drawer nav::-webkit-scrollbar {
  width: 4px;
}

.menu-drawer nav::-webkit-scrollbar-thumb {
  background: rgba(0, 213, 255, 0.35);
  border-radius: 999px;
}

.menu-drawer nav button {
  cursor: pointer;
  text-align: left;
  border: 1px solid transparent;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: inherit;
  padding: 0.38rem 0.6rem;
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  min-height: 34px;
}

.menu-drawer nav button.active,
.menu-drawer nav button:hover {
  border-color: var(--border-strong);
  background: rgba(0, 213, 255, 0.08);
}

.menu-drawer nav button span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.menu-drawer nav button strong {
  overflow: hidden;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-drawer nav button small {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1;
  white-space: nowrap;
}

.hero-slide {
  overflow: hidden;
  justify-content: space-between;
}

.hero-grid,
.final-grid {
  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: 84px 84px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
  opacity: 0.26;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(0, 213, 255, 0.12);
  border-radius: 999px;
  filter: blur(0.2px);
}

.hero-orbit-a {
  width: 42rem;
  height: 42rem;
  top: -10rem;
  right: -10rem;
}

.hero-orbit-b {
  width: 26rem;
  height: 26rem;
  bottom: 8rem;
  left: -8rem;
  border-color: rgba(32, 230, 163, 0.12);
}

.hero-copy,
.title-block,
.asset-list,
.integration-map,
.compare-board,
.roadmap,
.final-pillars {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 58rem;
  padding-top: 4rem;
}

.eyebrow,
.title-block span {
  color: var(--cyan);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.hero-copy h1,
.title-block h2 {
  margin: 0.9rem 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3.8rem, 7vw, 7.2rem);
}

.hero-copy p,
.title-block p,
.glass-panel p,
.roadmap-step p,
.compare-card li {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy p {
  max-width: 44rem;
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 2rem;
}

.ghost-button {
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  z-index: 1;
}

.kpi-card,
.glass-panel,
.compare-card,
.roadmap-step,
.brand-skin,
.chart-card,
.integration-node,
.integration-hub,
.compare-divider {
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.kpi-card {
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  display: grid;
  gap: 0.25rem;
}

.kpi-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.kpi-card span {
  color: var(--muted);
}

.slide-meta {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.title-block {
  max-width: 72rem;
}

.title-block h2 {
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  max-width: 13ch;
}

.title-block h2 b,
.hero-copy h1 b,
.title-block p b {
  color: var(--gold);
  font-weight: 700;
}

.title-block.center {
  align-items: center;
  text-align: center;
  max-width: 56rem;
  margin: auto;
}

.product-slide {
  align-items: center;
  text-align: center;
}

.product-slide .slide-meta {
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: auto;
  z-index: 3;
  gap: 1rem;
  align-items: center;
  color: #6f7d95;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.product-title {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  max-width: 74rem;
  margin: auto;
}

.product-title span {
  color: var(--cyan);
  font-size: clamp(0.9rem, 1.3vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
}

.product-title h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(4.2rem, 9vw, 9.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.product-intro-list {
  justify-content: center;
  margin: -0.5rem auto 0;
}

.equity-hero-stage {
  position: relative;
  z-index: 1;
  width: min(86rem, 100%);
  min-height: 78vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
}

.equity-hero-copy {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 0.45rem;
  max-width: 42rem;
}

.equity-hero-copy span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.equity-hero-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.5rem, 7vw, 7.7rem);
  line-height: 0.86;
  letter-spacing: -0.08em;
}

.equity-hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.35;
}

.equity-curve {
  position: relative;
  min-height: 520px;
  border-radius: 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 24%, rgba(0, 213, 255, 0.16), transparent 34%),
    radial-gradient(circle at 28% 68%, rgba(30, 94, 255, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.005)),
    rgba(5, 11, 24, 0.64);
  box-shadow: inset 0 0 0 1px rgba(169, 197, 255, 0.08), 0 34px 120px rgba(0, 0, 0, 0.36);
}

.equity-curve svg {
  position: absolute;
  inset: 4% 2% 0;
  width: 96%;
  height: 94%;
  overflow: visible;
}

.equity-line,
.equity-shadow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.equity-shadow {
  stroke: rgba(0, 213, 255, 0.25);
  stroke-width: 28;
  filter: url(#lineGlow);
}

.equity-line {
  stroke: url(#equityGlow);
  stroke-width: 7;
  filter: url(#lineGlow);
}

.equity-overlay {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  text-align: center;
  pointer-events: none;
}

.equity-overlay strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(6rem, 16vw, 18rem);
  line-height: 0.78;
  letter-spacing: -0.12em;
  text-shadow: 0 0 56px rgba(0, 213, 255, 0.32);
}

.equity-overlay span {
  max-width: 20rem;
  color: var(--text);
  font-size: clamp(1rem, 1.65vw, 1.65rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.equity-footer {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.45rem, 2.7vw, 3.2rem);
  text-align: center;
  letter-spacing: -0.04em;
}

.ai-ecosystem-stage {
  position: relative;
  z-index: 1;
  width: min(84rem, 100%);
  display: grid;
  gap: 1rem;
}

.ai-ecosystem-heading {
  display: grid;
  gap: 0.35rem;
}

.ai-ecosystem-heading span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ai-ecosystem-heading h2 {
  max-width: 11ch;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.4rem, 7vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.ai-ecosystem-heading p {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  line-height: 1.45;
}

.companion-map {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(169, 197, 255, 0.12);
  border-radius: 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 55%, rgba(124, 92, 255, 0.2), transparent 24%),
    radial-gradient(circle at 66% 50%, rgba(0, 213, 255, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(7, 17, 31, 0.72);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(24px);
}

.companion-map::before {
  content: "";
  position: absolute;
  inset: 7% 8%;
  border: 1px solid rgba(0, 213, 255, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgba(0, 213, 255, 0.1) 49.8% 50.2%, transparent 50.2%),
    linear-gradient(180deg, transparent 0 49.8%, rgba(0, 213, 255, 0.08) 49.8% 50.2%, transparent 50.2%);
}

.trader-companion {
  position: absolute;
  left: 10%;
  top: 15%;
  bottom: 14%;
  width: 38%;
}

.trader-silhouette,
.ai-companion {
  position: absolute;
  bottom: 0;
  display: grid;
  place-items: end center;
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trader-silhouette {
  left: 18%;
  width: 170px;
  height: 350px;
  z-index: 2;
}

.trader-silhouette::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 45% 35%, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(145deg, #111a2c, #030712);
  box-shadow: 0 0 40px rgba(0, 213, 255, 0.18);
}

.trader-silhouette::after {
  content: "";
  position: absolute;
  top: 86px;
  left: 50%;
  width: 150px;
  height: 230px;
  border-radius: 58px 58px 26px 26px;
  transform: translateX(-50%);
  background:
    linear-gradient(145deg, rgba(244, 248, 255, 0.13), rgba(5, 11, 24, 0.94)),
    rgba(5, 11, 24, 0.92);
  border: 1px solid rgba(169, 197, 255, 0.14);
}

.trader-silhouette span,
.ai-companion span {
  position: relative;
  z-index: 3;
}

.ai-companion {
  left: 46%;
  width: 155px;
  height: 330px;
  color: var(--cyan);
  opacity: 0.95;
}

.ai-companion::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, rgba(244, 248, 255, 0.42), rgba(0, 213, 255, 0.18) 42%, transparent 70%);
  border: 1px solid rgba(0, 213, 255, 0.32);
  box-shadow: 0 0 70px rgba(0, 213, 255, 0.42);
}

.ai-companion::after {
  content: "";
  position: absolute;
  top: 92px;
  left: 50%;
  width: 130px;
  height: 210px;
  border-radius: 58px 58px 30px 30px;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(0, 213, 255, 0.2), rgba(124, 92, 255, 0.08) 52%, transparent),
    rgba(0, 213, 255, 0.045);
  border: 1px solid rgba(0, 213, 255, 0.28);
  box-shadow: inset 0 0 40px rgba(0, 213, 255, 0.16), 0 0 64px rgba(124, 92, 255, 0.2);
  backdrop-filter: blur(10px);
}

.product-orbit {
  position: absolute;
  inset: 10% 7% 10% 42%;
}

.product-orbit::before {
  content: "";
  position: absolute;
  left: -5%;
  top: 50%;
  width: 82%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 213, 255, 0.8), rgba(0, 213, 255, 0.04));
  transform: translateY(-50%);
}

.product-orbit span {
  position: absolute;
  min-width: 116px;
  padding: 0.58rem 0.78rem;
  border: 1px solid rgba(169, 197, 255, 0.14);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 24px rgba(0, 213, 255, 0.08);
  text-align: center;
  font-size: 0.84rem;
  font-weight: 800;
}

.product-orbit span::before {
  content: "";
  position: absolute;
  left: -64px;
  top: 50%;
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 213, 255, 0.44));
}

.product-orbit span:nth-child(1) { left: 24%; top: 0; }
.product-orbit span:nth-child(2) { left: 0; top: 18%; }
.product-orbit span:nth-child(3) { right: 4%; top: 18%; }
.product-orbit span:nth-child(4) { left: 6%; top: 39%; }
.product-orbit span:nth-child(5) { right: 10%; top: 39%; }
.product-orbit span:nth-child(6) { left: 0; bottom: 27%; }
.product-orbit span:nth-child(7) { right: 0; bottom: 27%; }
.product-orbit span:nth-child(8) { left: 6%; bottom: 8%; }
.product-orbit span:nth-child(9) { right: 7%; bottom: 8%; }
.product-orbit span:nth-child(10) { left: 28%; bottom: -2%; }
.product-orbit span:nth-child(11) { right: 28%; top: -2%; }

.ai-equation {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
}

.ai-equation div {
  min-height: 110px;
  border: 1px solid rgba(169, 197, 255, 0.13);
  border-radius: 28px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.035);
  display: grid;
  align-content: center;
  text-align: center;
}

.ai-equation strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.3rem, 4.8vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.ai-equation span {
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.ai-equation i {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.ai-ecosystem-footer {
  display: grid;
  gap: 0.15rem;
  text-align: center;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.ai-ecosystem-footer p {
  margin: 0;
}

.futurehub-stage {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  display: grid;
  gap: 1.2rem;
}

.futurehub-copy {
  display: grid;
  gap: 0.45rem;
  text-align: left;
}

.futurehub-copy span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.futurehub-copy h2 {
  margin: 0;
  max-width: 12ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.futurehub-copy p {
  max-width: 48rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.futurehub-terminal {
  min-height: 540px;
  border: 1px solid rgba(169, 197, 255, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 12%, rgba(0, 213, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(5, 8, 14, 0.92);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.46);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.terminal-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-bottom: 1px solid rgba(169, 197, 255, 0.12);
}

.terminal-topbar div {
  display: grid;
  gap: 0.18rem;
  text-align: left;
}

.terminal-topbar strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.terminal-topbar span {
  color: var(--muted);
  font-size: 0.78rem;
}

.futurehub-ai-button {
  width: 86px;
  height: 86px;
  border: 1px solid rgba(0, 213, 255, 0.55);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.95), rgba(0, 213, 255, 0.34) 38%, rgba(0, 213, 255, 0.08) 68%),
    rgba(8, 14, 22, 0.94);
  color: #ffffff;
  cursor: default;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow:
    0 0 0 8px rgba(0, 213, 255, 0.08),
    0 0 42px rgba(0, 213, 255, 0.66),
    inset 0 0 28px rgba(255, 255, 255, 0.34);
}

.terminal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr) 280px;
  gap: 0.9rem;
  padding: 1rem;
  min-height: 0;
}

.chart-panel {
  position: relative;
  min-height: 380px;
  border: 1px solid rgba(169, 197, 255, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.018);
  background-size: 100% 20%, 12.5% 100%, auto;
  overflow: hidden;
}

.chart-panel small {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.candles {
  position: absolute;
  inset: 3rem 1.2rem 2rem;
}

.candles::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 52%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 213, 255, 0.08), rgba(32, 230, 163, 0.42), rgba(214, 168, 79, 0.14));
  transform: rotate(-9deg);
  transform-origin: left center;
}

.candles i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 9px;
  height: var(--h);
  border-radius: 999px;
  background: var(--c);
  box-shadow: 0 0 18px color-mix(in srgb, var(--c), transparent 52%);
}

.candles i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -16px;
  width: 1px;
  height: calc(100% + 32px);
  background: color-mix(in srgb, var(--c), transparent 36%);
  transform: translateX(-50%);
}

.chart-after {
  border-color: rgba(32, 230, 163, 0.22);
}

.ai-layers {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.layer {
  position: absolute;
  padding: 0.36rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 11, 18, 0.42);
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.support {
  left: 8%;
  right: 8%;
  bottom: 24%;
  border-radius: 18px;
  background: rgba(32, 230, 163, 0.12);
  color: var(--lime);
}

.resistance {
  left: 12%;
  right: 16%;
  top: 24%;
  border-radius: 18px;
  background: rgba(255, 77, 109, 0.12);
  color: #ff9ab0;
}

.liquidity {
  left: 16%;
  bottom: 13%;
}

.smart-money {
  right: 9%;
  top: 39%;
  color: var(--gold);
}

.fibonacci {
  left: 48%;
  top: 17%;
  color: var(--cyan);
}

.pattern {
  left: 34%;
  bottom: 37%;
  color: var(--lime);
}

.ai-analysis-card {
  border: 1px solid rgba(169, 197, 255, 0.16);
  border-radius: 26px;
  background: rgba(7, 10, 16, 0.78);
  backdrop-filter: blur(18px);
  padding: 1.15rem;
  display: grid;
  align-content: start;
  gap: 0.85rem;
  text-align: left;
}

.ai-analysis-card small {
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.score-row {
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem;
  border-radius: 18px;
  background: rgba(32, 230, 163, 0.09);
  border: 1px solid rgba(32, 230, 163, 0.18);
}

.score-row span,
.score-row b {
  color: var(--lime);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.score-row strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
}

.score-row.weak {
  background: rgba(255, 77, 109, 0.08);
  border-color: rgba(255, 77, 109, 0.17);
}

.score-row.weak span,
.score-row.weak b {
  color: #ff8aa2;
}

.ai-analysis-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.ai-analysis-card em {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}

.futurehub-footer {
  padding: 1rem 1.2rem 1.2rem;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.hfengine-stage {
  position: relative;
  z-index: 1;
  width: min(84rem, 100%);
  display: grid;
  gap: 1rem;
}

.hfengine-heading {
  display: grid;
  gap: 0.35rem;
}

.hfengine-heading span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hfengine-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.2rem, 6.4vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.hfengine-heading p {
  max-width: 44rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.45;
}

.hfengine-transform {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 0.85fr 1.08fr 1fr;
  gap: 1rem;
}

.hfengine-transform::before,
.hfengine-transform::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 213, 255, 0.65), transparent);
  pointer-events: none;
}

.hfengine-transform::before {
  left: 23%;
  width: 24%;
}

.hfengine-transform::after {
  right: 20%;
  width: 27%;
}

.hf-idea-panel,
.hf-core-panel,
.hf-execution-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(169, 197, 255, 0.12);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 213, 255, 0.12), transparent 40%),
    rgba(7, 17, 31, 0.72);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px);
}

.hf-idea-panel {
  min-height: 560px;
  padding: 1rem;
}

.hf-trader {
  position: absolute;
  left: 50%;
  bottom: 52px;
  width: 135px;
  height: 290px;
  transform: translateX(-50%);
}

.hf-trader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 45% 35%, rgba(255, 255, 255, 0.24), transparent 32%),
    linear-gradient(145deg, #111a2c, #030712);
  box-shadow: 0 0 42px rgba(0, 213, 255, 0.16);
}

.hf-trader::after {
  content: "";
  position: absolute;
  top: 72px;
  left: 50%;
  width: 126px;
  height: 200px;
  border-radius: 52px 52px 24px 24px;
  transform: translateX(-50%);
  background:
    linear-gradient(145deg, rgba(244, 248, 255, 0.12), rgba(5, 11, 24, 0.96)),
    rgba(5, 11, 24, 0.92);
  border: 1px solid rgba(169, 197, 255, 0.14);
}

.idea-cloud span {
  position: absolute;
  padding: 0.55rem 0.72rem;
  border: 1px solid rgba(0, 213, 255, 0.16);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 24px rgba(0, 213, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.idea-cloud span:nth-child(1) { left: 10%; top: 12%; }
.idea-cloud span:nth-child(2) { right: 14%; top: 16%; }
.idea-cloud span:nth-child(3) { left: 24%; top: 31%; }
.idea-cloud span:nth-child(4) { right: 9%; top: 42%; }
.idea-cloud span:nth-child(5) { left: 9%; top: 53%; }
.idea-cloud span:nth-child(6) { right: 20%; top: 63%; }

.hf-idea-panel > strong {
  position: absolute;
  left: 1.2rem;
  bottom: 1.1rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hf-core-panel {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(0, 213, 255, 0.22), transparent 48%),
    radial-gradient(circle at 55% 45%, rgba(124, 92, 255, 0.2), transparent 34%),
    rgba(7, 17, 31, 0.78);
}

.hf-core-orb {
  position: relative;
  width: min(360px, 82%);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(244, 248, 255, 0.22) 0 8%, transparent 9%),
    radial-gradient(circle, rgba(0, 213, 255, 0.2), rgba(30, 94, 255, 0.08) 42%, transparent 66%);
  border: 1px solid rgba(0, 213, 255, 0.28);
  box-shadow: inset 0 0 58px rgba(0, 213, 255, 0.18), 0 0 95px rgba(0, 213, 255, 0.28);
}

.hf-core-orb::before,
.hf-core-orb::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px solid rgba(0, 213, 255, 0.2);
}

.hf-core-orb::after {
  inset: 24%;
  border-color: rgba(124, 92, 255, 0.28);
  box-shadow: 0 0 44px rgba(124, 92, 255, 0.2);
}

.hf-core-orb i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px var(--cyan);
}

.hf-core-orb i:nth-child(1) { left: 22%; top: 30%; }
.hf-core-orb i:nth-child(2) { right: 24%; top: 42%; }
.hf-core-orb i:nth-child(3) { left: 45%; bottom: 22%; }

.hf-core-orb strong {
  position: relative;
  z-index: 2;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  letter-spacing: -0.06em;
  text-shadow: 0 0 34px rgba(0, 213, 255, 0.42);
}

.hf-execution-panel {
  padding: 1rem;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 1rem;
}

.execution-blueprint {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
  align-content: center;
}

.execution-blueprint::before {
  content: "";
  position: absolute;
  inset: 10% 50% 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 213, 255, 0.52), transparent);
}

.execution-blueprint span {
  position: relative;
  padding: 0.72rem 0.8rem;
  border: 1px solid rgba(0, 213, 255, 0.14);
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 24px rgba(0, 213, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 800;
}

.execution-blueprint span:nth-child(odd) {
  transform: translateY(-8px);
}

.execution-blueprint span:nth-child(even) {
  transform: translateY(8px);
}

.executed-trade {
  border: 1px solid rgba(32, 230, 163, 0.24);
  border-radius: 26px;
  padding: 1rem;
  background:
    radial-gradient(circle at right, rgba(32, 230, 163, 0.14), transparent 40%),
    rgba(255, 255, 255, 0.04);
}

.executed-trade small {
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.16em;
}

.executed-trade strong {
  display: block;
  margin: 0.35rem 0;
  color: var(--success);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.9;
}

.executed-trade span {
  color: var(--success);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hfengine-footer {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 2.8rem);
  text-align: center;
  letter-spacing: -0.04em;
}

.eventos-stage {
  position: relative;
  z-index: 1;
  width: min(1220px, 100%);
  display: grid;
  gap: 1.1rem;
}

.eventos-heading {
  display: grid;
  gap: 0.35rem;
  text-align: left;
}

.eventos-heading span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eventos-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 5.4vw, 6rem);
  line-height: 0.95;
}

.eventos-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.eventos-map {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.08fr 260px 1fr 330px;
  gap: 1rem;
  align-items: stretch;
}

.eventos-sources,
.eventos-flow,
.eventos-benefits,
.eventos-core {
  position: relative;
  border: 1px solid rgba(169, 197, 255, 0.13);
  background: rgba(7, 10, 16, 0.54);
  backdrop-filter: blur(16px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.eventos-sources {
  border-radius: 34px;
  padding: 1.1rem;
  overflow: hidden;
}

.eventos-sources::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 109, 0.1), transparent 64%);
}

.eventos-sources span {
  position: absolute;
  display: inline-flex;
  padding: 0.56rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
}

.eventos-sources span:nth-child(1) { left: 7%; top: 9%; }
.eventos-sources span:nth-child(2) { left: 42%; top: 6%; }
.eventos-sources span:nth-child(3) { left: 14%; top: 25%; }
.eventos-sources span:nth-child(4) { right: 8%; top: 24%; }
.eventos-sources span:nth-child(5) { left: 8%; top: 43%; }
.eventos-sources span:nth-child(6) { left: 45%; top: 40%; }
.eventos-sources span:nth-child(7) { right: 9%; top: 51%; }
.eventos-sources span:nth-child(8) { left: 10%; bottom: 28%; }
.eventos-sources span:nth-child(9) { right: 14%; bottom: 27%; }
.eventos-sources span:nth-child(10) { left: 8%; bottom: 10%; }
.eventos-sources span:nth-child(11) { left: 42%; bottom: 8%; }
.eventos-sources span:nth-child(12) { right: 7%; bottom: 12%; }

.eventos-core {
  border-radius: 34px;
  padding: 1.4rem;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 213, 255, 0.24), transparent 58%),
    rgba(7, 10, 16, 0.74);
}

.eventos-core::before,
.eventos-core::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 3.1rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 213, 255, 0.8), transparent);
}

.eventos-core::before {
  right: 100%;
}

.eventos-core::after {
  left: 100%;
}

.eventos-core small {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eventos-core strong {
  margin-top: 0.75rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 4.8vw, 5rem);
  line-height: 0.9;
}

.eventos-flow {
  border-radius: 34px;
  padding: 1.15rem;
  display: grid;
  align-content: center;
  gap: 0.8rem;
}

.eventos-flow span {
  display: block;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(32, 230, 163, 0.15);
  border-radius: 20px;
  background: rgba(32, 230, 163, 0.06);
  color: var(--text);
  font-weight: 800;
}

.eventos-benefits {
  border-radius: 34px;
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}

.eventos-benefits article {
  padding: 1rem;
  border: 1px solid rgba(169, 197, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
}

.eventos-benefits h3 {
  margin: 0 0 0.45rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.eventos-benefits strong {
  display: block;
  color: var(--cyan);
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
}

.eventos-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.eventos-footer {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  text-align: center;
}

.discovery-stage {
  position: relative;
  z-index: 1;
  width: min(84rem, 100%);
  display: grid;
  gap: 1rem;
}

.discovery-heading {
  display: grid;
  gap: 0.35rem;
}

.discovery-heading span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.discovery-heading h2 {
  max-width: 12ch;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.2rem, 6.2vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.discovery-heading p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.28rem);
}

.discovery-funnel {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 1rem;
}

.market-map-panel,
.opportunity-panel {
  border: 1px solid rgba(169, 197, 255, 0.12);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 213, 255, 0.12), transparent 40%),
    rgba(7, 17, 31, 0.74);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px);
}

.market-map-panel {
  overflow: hidden;
  padding: 1rem;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
}

.data-funnel-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
}

.data-funnel-row div {
  border: 1px solid rgba(169, 197, 255, 0.11);
  border-radius: 26px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}

.data-funnel-row strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 5.1rem);
  line-height: 0.86;
  letter-spacing: -0.08em;
}

.data-funnel-row span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.data-funnel-row i {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text);
  background:
    radial-gradient(circle, rgba(0, 213, 255, 0.24), rgba(124, 92, 255, 0.1) 70%);
  border: 1px solid rgba(0, 213, 255, 0.24);
  box-shadow: 0 0 50px rgba(0, 213, 255, 0.24);
  font-style: normal;
  font-weight: 900;
}

.asset-map {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.52rem;
  align-content: center;
}

.asset-map span {
  min-height: 42px;
  border: 1px solid rgba(169, 197, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.asset-map span.hot {
  display: grid;
  place-items: center;
  color: #03111c;
  background: linear-gradient(135deg, var(--cyan), var(--success));
  border-color: rgba(0, 213, 255, 0.7);
  box-shadow: 0 0 28px rgba(0, 213, 255, 0.42);
  font-weight: 900;
}

.opportunity-panel {
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}

.opportunity-card {
  border: 1px solid rgba(169, 197, 255, 0.12);
  border-radius: 24px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.035);
}

.opportunity-card.primary {
  border-color: rgba(32, 230, 163, 0.24);
  background:
    radial-gradient(circle at right, rgba(32, 230, 163, 0.14), transparent 40%),
    rgba(255, 255, 255, 0.045);
}

.opportunity-card small {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.opportunity-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.opportunity-card span,
.opportunity-card em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.78rem;
}

.opportunity-card em {
  display: block;
  margin-top: 0.35rem;
  color: var(--success);
}

.discovery-benefits {
  display: grid;
  gap: 0.55rem;
}

.discovery-benefits article {
  padding: 0.8rem;
  border: 1px solid rgba(169, 197, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.discovery-benefits h3 {
  margin: 0 0 0.25rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.discovery-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.discovery-footer {
  display: grid;
  gap: 0.1rem;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 2.6vw, 3rem);
  line-height: 1.04;
  text-align: center;
  letter-spacing: -0.04em;
}

.discovery-footer p {
  margin: 0;
}

.backtest-stage {
  position: relative;
  z-index: 1;
  width: min(84rem, 100%);
  display: grid;
  gap: 1rem;
}

.backtest-heading {
  display: grid;
  gap: 0.35rem;
}

.backtest-heading span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.backtest-heading h2 {
  max-width: 12ch;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.2rem, 6.2vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.backtest-heading p {
  max-width: 48rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.45;
}

.backtest-lab-map {
  min-height: 560px;
  display: grid;
  grid-template-columns: 0.9fr 1.05fr 0.95fr;
  gap: 1rem;
}

.strategy-variation-cloud,
.lab-core-panel,
.best-strategy-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(169, 197, 255, 0.12);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 213, 255, 0.12), transparent 42%),
    rgba(7, 17, 31, 0.74);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px);
}

.strategy-variation-cloud {
  padding: 1rem;
}

.strategy-variation-cloud strong {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 9ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 5.2rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.strategy-variation-cloud div {
  position: absolute;
  inset: 0;
}

.strategy-variation-cloud span {
  position: absolute;
  padding: 0.55rem 0.72rem;
  border: 1px solid rgba(0, 213, 255, 0.13);
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 22px rgba(0, 213, 255, 0.06);
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0.82;
}

.strategy-variation-cloud span:nth-child(1) { left: 9%; top: 34%; }
.strategy-variation-cloud span:nth-child(2) { right: 9%; top: 18%; }
.strategy-variation-cloud span:nth-child(3) { left: 18%; top: 54%; }
.strategy-variation-cloud span:nth-child(4) { right: 12%; top: 43%; }
.strategy-variation-cloud span:nth-child(5) { left: 8%; bottom: 20%; }
.strategy-variation-cloud span:nth-child(6) { right: 7%; bottom: 25%; }
.strategy-variation-cloud span:nth-child(7) { left: 24%; bottom: 8%; }
.strategy-variation-cloud span:nth-child(8) { right: 24%; bottom: 8%; }
.strategy-variation-cloud span:nth-child(9) { left: 38%; top: 70%; }

.lab-core-panel {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(0, 213, 255, 0.2), transparent 46%),
    radial-gradient(circle at 54% 44%, rgba(124, 92, 255, 0.18), transparent 34%),
    rgba(7, 17, 31, 0.78);
}

.lab-core {
  position: relative;
  width: min(320px, 74%);
  aspect-ratio: 1;
  border-radius: 40%;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(244, 248, 255, 0.16), rgba(0, 213, 255, 0.06)),
    rgba(5, 11, 24, 0.88);
  border: 1px solid rgba(0, 213, 255, 0.28);
  box-shadow: inset 0 0 56px rgba(0, 213, 255, 0.18), 0 0 98px rgba(0, 213, 255, 0.26);
}

.lab-core::before,
.lab-core::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(0, 213, 255, 0.2);
  border-radius: 38%;
}

.lab-core::after {
  inset: 25%;
  border-color: rgba(124, 92, 255, 0.28);
}

.lab-core i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px var(--cyan);
}

.lab-core i:nth-child(1) { left: 20%; top: 34%; }
.lab-core i:nth-child(2) { right: 20%; top: 44%; }
.lab-core i:nth-child(3) { left: 48%; bottom: 20%; }

.lab-core strong {
  position: relative;
  z-index: 2;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 3rem);
  letter-spacing: -0.06em;
  text-shadow: 0 0 34px rgba(0, 213, 255, 0.42);
}

.lab-orbit span {
  position: absolute;
  padding: 0.5rem 0.68rem;
  border: 1px solid rgba(169, 197, 255, 0.12);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.74rem;
  font-weight: 800;
}

.lab-orbit span:nth-child(1) { left: 50%; top: 8%; transform: translateX(-50%); }
.lab-orbit span:nth-child(2) { left: 8%; top: 36%; }
.lab-orbit span:nth-child(3) { right: 8%; top: 36%; }
.lab-orbit span:nth-child(4) { left: 18%; bottom: 15%; }
.lab-orbit span:nth-child(5) { right: 11%; bottom: 15%; }

.best-strategy-panel {
  padding: 1rem;
  display: grid;
  align-items: center;
}

.best-strategy-card {
  position: relative;
  border: 1px solid rgba(32, 230, 163, 0.24);
  border-radius: 30px;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(32, 230, 163, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(5, 11, 24, 0.86);
}

.best-strategy-card small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.best-strategy-card > strong {
  display: block;
  margin: 0.55rem 0 1rem;
  color: var(--success);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 2.7vw, 3rem);
  letter-spacing: -0.06em;
}

.best-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.best-metrics span {
  padding: 0.75rem;
  border: 1px solid rgba(169, 197, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.best-metrics b {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.8rem);
  letter-spacing: -0.04em;
}

.best-metrics em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.72rem;
}

.best-equity {
  width: 100%;
  height: 130px;
  margin-top: 1rem;
  overflow: visible;
}

.best-equity path {
  fill: none;
  stroke: url(#backtestEquityGlow);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 14px rgba(0, 213, 255, 0.55));
}

.backtest-footer {
  display: grid;
  gap: 0.12rem;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.25rem, 2.3vw, 2.7rem);
  line-height: 1.05;
  text-align: center;
  letter-spacing: -0.04em;
}

.backtest-footer p {
  margin: 0;
}

.marketplace-stage {
  position: relative;
  z-index: 1;
  width: min(82rem, 100%);
  display: grid;
  gap: 1.1rem;
}

.marketplace-heading {
  display: grid;
  gap: 0.35rem;
}

.marketplace-heading span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.marketplace-heading h2 {
  max-width: 13ch;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.marketplace-heading p {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.45;
}

.marketplace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
  gap: 1rem;
  align-items: stretch;
}

.strategy-store,
.marketplace-benefits {
  border: 1px solid rgba(169, 197, 255, 0.13);
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 213, 255, 0.16), transparent 38%),
    rgba(7, 17, 31, 0.76);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px);
}

.strategy-store {
  min-height: 520px;
  border-radius: 38px;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.9rem;
  overflow: hidden;
}

.strategy-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(169, 197, 255, 0.12);
  border-radius: 30px;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(5, 11, 24, 0.76);
}

.strategy-card::before {
  content: "";
  position: absolute;
  inset: -40% -30% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: rgba(0, 213, 255, 0.16);
  filter: blur(22px);
}

.strategy-card.featured {
  grid-row: span 2;
  border-color: rgba(0, 213, 255, 0.32);
  background:
    radial-gradient(circle at 85% 8%, rgba(0, 213, 255, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(47, 128, 255, 0.18), rgba(255, 255, 255, 0.035)),
    rgba(5, 11, 24, 0.86);
}

.strategy-card.ghost {
  opacity: 0.76;
}

.strategy-card__top,
.strategy-card__bottom,
.strategy-metrics,
.strategy-card button {
  position: relative;
  z-index: 1;
}

.strategy-card__top {
  display: grid;
  gap: 0.45rem;
}

.strategy-card__top small {
  width: fit-content;
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(32, 230, 163, 0.28);
  border-radius: 999px;
  color: var(--success);
  background: rgba(32, 230, 163, 0.08);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.strategy-card__top strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.55rem);
  letter-spacing: -0.05em;
}

.strategy-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.strategy-metrics span {
  padding: 0.8rem;
  border: 1px solid rgba(169, 197, 255, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.strategy-metrics b {
  display: block;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.1rem, 1.7vw, 1.65rem);
  letter-spacing: -0.04em;
}

.strategy-metrics em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.72rem;
}

.strategy-card__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.strategy-card__bottom span {
  padding: 0.45rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.strategy-card button {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.1rem;
  color: #03111c;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marketplace-benefits {
  border-radius: 38px;
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}

.marketplace-benefits article {
  padding: 1rem;
  border: 1px solid rgba(169, 197, 255, 0.11);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.035);
}

.marketplace-benefits h3 {
  margin: 0 0 0.45rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.marketplace-benefits strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--cyan);
}

.marketplace-benefits p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.marketplace-footer {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 3rem);
  text-align: center;
  letter-spacing: -0.04em;
}

.news-stage {
  position: relative;
  z-index: 1;
  width: min(82rem, 100%);
  display: grid;
  gap: 1rem;
}

.news-heading {
  display: grid;
  gap: 0.35rem;
}

.news-heading span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.news-heading h2 {
  max-width: 12ch;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.news-heading p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.28rem);
}

.news-intelligence-map {
  min-height: 440px;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(230px, 0.7fr) minmax(300px, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.news-sources,
.news-core,
.personal-feed,
.news-benefits article {
  border: 1px solid rgba(169, 197, 255, 0.13);
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 213, 255, 0.14), transparent 40%),
    rgba(7, 17, 31, 0.76);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(24px);
}

.news-sources {
  position: relative;
  border-radius: 36px;
  padding: 1.1rem;
  overflow: hidden;
}

.news-sources::after,
.news-core::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 6px);
  width: 1rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 213, 255, 0.9), transparent);
}

.news-sources strong {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.news-sources div {
  position: relative;
  min-height: 300px;
}

.news-sources span {
  position: absolute;
  display: inline-flex;
  padding: 0.5rem 0.72rem;
  border: 1px solid rgba(169, 197, 255, 0.12);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.82rem;
}

.news-sources span:nth-child(1) { left: 5%; top: 10%; }
.news-sources span:nth-child(2) { right: 16%; top: 4%; }
.news-sources span:nth-child(3) { left: 18%; top: 28%; }
.news-sources span:nth-child(4) { right: 5%; top: 28%; }
.news-sources span:nth-child(5) { left: 3%; top: 49%; }
.news-sources span:nth-child(6) { right: 12%; top: 52%; }
.news-sources span:nth-child(7) { left: 12%; bottom: 20%; }
.news-sources span:nth-child(8) { right: 28%; bottom: 10%; }
.news-sources span:nth-child(9) { right: 4%; bottom: 24%; }

.news-core {
  position: relative;
  border-radius: 36px;
  padding: 1.2rem;
  display: grid;
  place-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(124, 92, 255, 0.25), transparent 36%),
    radial-gradient(circle at 50% 70%, rgba(0, 213, 255, 0.18), transparent 42%),
    rgba(7, 17, 31, 0.82);
}

.news-core::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 4px);
  width: 1rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 213, 255, 0.9), transparent);
}

.news-core::before {
  left: auto;
  right: calc(100% - 6px);
  background: linear-gradient(90deg, transparent, rgba(0, 213, 255, 0.9));
}

.news-core small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-core strong {
  margin-top: 0.85rem;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.personal-feed {
  border-radius: 36px;
  padding: 1.2rem;
  display: grid;
  align-content: center;
  gap: 0.8rem;
  background:
    radial-gradient(circle at 82% 0%, rgba(32, 230, 163, 0.16), transparent 38%),
    rgba(7, 17, 31, 0.78);
}

.personal-feed small {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.personal-feed h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3.8vw, 4.2rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.personal-feed p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.personal-feed article {
  padding: 0.9rem;
  border: 1px solid rgba(169, 197, 255, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.personal-feed article span {
  display: inline-flex;
  margin-bottom: 0.45rem;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  color: var(--success);
  background: rgba(32, 230, 163, 0.08);
  font-size: 0.7rem;
  font-weight: 900;
}

.personal-feed article strong {
  display: block;
  font-size: 0.95rem;
}

.personal-feed article em {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-style: normal;
  font-size: 0.82rem;
}

.news-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.news-benefits article {
  border-radius: 28px;
  padding: 1rem;
}

.news-benefits h3 {
  margin: 0 0 0.45rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.news-benefits strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--cyan);
}

.news-benefits p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
  font-size: 0.9rem;
}

.news-footer {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 3rem);
  text-align: center;
  letter-spacing: -0.04em;
}

.pulse-stage {
  position: relative;
  z-index: 1;
  width: min(84rem, 100%);
  display: grid;
  gap: 1rem;
}

.pulse-heading {
  display: grid;
  gap: 0.35rem;
}

.pulse-heading span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pulse-heading h2 {
  max-width: 12ch;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.2rem, 6.2vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.pulse-heading p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.28rem);
}

.pulse-layout {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 1rem;
}

.pulse-gauge-panel,
.pulse-benefits {
  border: 1px solid rgba(169, 197, 255, 0.12);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 213, 255, 0.12), transparent 40%),
    rgba(7, 17, 31, 0.74);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px);
}

.pulse-gauge-panel {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  gap: 1rem;
}

.pulse-ring {
  position: relative;
  width: min(520px, 78%);
  aspect-ratio: 1;
}

.pulse-ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.pulse-track,
.pulse-progress {
  fill: none;
  stroke-width: 24;
}

.pulse-track {
  stroke: rgba(255, 255, 255, 0.07);
}

.pulse-progress {
  stroke: var(--cyan);
  stroke-linecap: round;
  stroke-dasharray: 813 993;
  filter: drop-shadow(0 0 18px rgba(0, 213, 255, 0.62));
}

.pulse-score {
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background:
    radial-gradient(circle, rgba(0, 213, 255, 0.16), rgba(5, 11, 24, 0.72) 68%);
  border: 1px solid rgba(0, 213, 255, 0.16);
}

.pulse-score small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pulse-score strong {
  margin: 0.35rem 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  line-height: 0.86;
  letter-spacing: -0.08em;
}

.pulse-score span {
  color: var(--success);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.pulse-sources span {
  position: absolute;
  padding: 0.45rem 0.62rem;
  border: 1px solid rgba(169, 197, 255, 0.12);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 22px rgba(0, 213, 255, 0.06);
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.pulse-sources span:nth-child(1) { left: 50%; top: -5%; transform: translateX(-50%); }
.pulse-sources span:nth-child(2) { right: 4%; top: 9%; }
.pulse-sources span:nth-child(3) { right: -8%; top: 28%; }
.pulse-sources span:nth-child(4) { right: -5%; top: 49%; }
.pulse-sources span:nth-child(5) { right: 6%; bottom: 12%; }
.pulse-sources span:nth-child(6) { left: 50%; bottom: -5%; transform: translateX(-50%); }
.pulse-sources span:nth-child(7) { left: 3%; bottom: 12%; }
.pulse-sources span:nth-child(8) { left: -8%; top: 50%; }
.pulse-sources span:nth-child(9) { left: -7%; top: 29%; }
.pulse-sources span:nth-child(10) { left: 4%; top: 9%; }
.pulse-sources span:nth-child(11) { left: 28%; top: 5%; }
.pulse-sources span:nth-child(12) { right: 24%; bottom: 5%; }

.pulse-index-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.pulse-index-grid article {
  padding: 0.72rem;
  border: 1px solid rgba(169, 197, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.032);
}

.pulse-index-grid small {
  display: block;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pulse-index-grid strong {
  display: block;
  margin: 0.2rem 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.65rem);
  letter-spacing: -0.04em;
}

.pulse-index-grid span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
}

.pulse-benefits {
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
}

.pulse-benefits article {
  padding: 1rem;
  border: 1px solid rgba(169, 197, 255, 0.11);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.035);
}

.pulse-benefits h3 {
  margin: 0 0 0.45rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.05em;
}

.pulse-benefits p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.pulse-footer {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 3rem);
  text-align: center;
  letter-spacing: -0.04em;
}

.analytics-stage {
  position: relative;
  z-index: 1;
  width: min(84rem, 100%);
  display: grid;
  gap: 1rem;
}

.analytics-heading {
  display: grid;
  gap: 0.35rem;
}

.analytics-heading span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.analytics-heading h2 {
  max-width: 14ch;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 5.9vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.analytics-heading p {
  max-width: 46rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.45;
}

.analytics-workbench {
  min-height: 520px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr 1fr;
  gap: 1rem;
}

.hypothesis-panel,
.ai-code-panel,
.analytics-result-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(169, 197, 255, 0.12);
  border-radius: 36px;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 213, 255, 0.12), transparent 40%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(7, 17, 31, 0.74);
  box-shadow: 0 28px 105px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px);
}

.hypothesis-panel,
.analytics-result-panel {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.hypothesis-panel small,
.ai-code-panel small,
.analytics-result-panel small {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hypothesis-panel h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 2.7vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hypothesis-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hypothesis-tags span {
  padding: 0.52rem 0.68rem;
  border: 1px solid rgba(169, 197, 255, 0.12);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.78rem;
  font-weight: 800;
}

.ai-code-panel {
  display: grid;
  align-content: center;
  gap: 1rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 92, 255, 0.18), transparent 38%),
    rgba(7, 17, 31, 0.78);
}

.ai-code-panel pre {
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(0, 213, 255, 0.12);
  border-radius: 24px;
  background: rgba(5, 11, 24, 0.72);
  color: var(--text);
  overflow: auto;
  box-shadow: inset 0 0 40px rgba(0, 213, 255, 0.05);
}

.ai-code-panel code {
  color: #dff8ff;
  font-family: "Space Grotesk", monospace;
  font-size: clamp(0.82rem, 1vw, 1rem);
  line-height: 1.65;
}

.result-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.result-metrics span {
  padding: 0.75rem;
  border: 1px solid rgba(169, 197, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.result-metrics b {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.9rem);
  letter-spacing: -0.05em;
}

.result-metrics em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.72rem;
}

.analytics-result-panel svg {
  width: 100%;
  height: 140px;
  overflow: visible;
}

.analytics-result-panel svg path {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 14px rgba(0, 213, 255, 0.55));
}

.analytics-result-panel > strong {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.45;
}

.analytics-footer {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 2.8rem);
  text-align: center;
  letter-spacing: -0.04em;
}

.ecosystem-stage {
  position: relative;
  z-index: 1;
  width: min(84rem, 100%);
  min-height: 78vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
}

.ecosystem-sphere {
  position: relative;
  width: min(420px, 48vw);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 42% 30%, rgba(244, 248, 255, 0.22), transparent 16%),
    radial-gradient(circle at center, rgba(0, 213, 255, 0.22), rgba(30, 94, 255, 0.12) 42%, rgba(5, 11, 24, 0.76) 68%),
    rgba(7, 17, 31, 0.86);
  border: 1px solid rgba(0, 213, 255, 0.26);
  box-shadow: inset 0 0 70px rgba(0, 213, 255, 0.18), 0 0 110px rgba(0, 213, 255, 0.24);
}

.ecosystem-sphere::before,
.ecosystem-sphere::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(0, 213, 255, 0.12);
  border-radius: 50%;
}

.ecosystem-sphere::after {
  inset: 28%;
  border-color: rgba(124, 92, 255, 0.18);
}

.ecosystem-sphere strong {
  position: relative;
  z-index: 1;
  max-width: 8ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  text-shadow: 0 0 40px rgba(0, 213, 255, 0.42);
}

.role-model {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: stretch;
}

.role-model::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: -22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 213, 255, 0.54), transparent);
}

.role-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(169, 197, 255, 0.12);
  border-radius: 30px;
  padding: 1rem;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 0.55rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 213, 255, 0.12), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(7, 17, 31, 0.74);
  box-shadow: 0 26px 95px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(24px);
}

.role-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -22px;
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, rgba(0, 213, 255, 0.7), transparent);
}

.role-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3.2rem;
  width: 1px;
  height: 3.2rem;
  background: linear-gradient(180deg, transparent, rgba(0, 213, 255, 0.32), transparent);
}

.role-card small {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.role-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.role-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.48;
}

.role-card b,
.role-card span {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0.62rem 0.7rem;
  border: 1px solid rgba(169, 197, 255, 0.11);
  border-radius: 999px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 900;
}

.role-card b {
  color: var(--text);
  background: rgba(0, 213, 255, 0.08);
}

.role-card span {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
}

.ecosystem-footer {
  display: grid;
  gap: 0.05rem;
  text-align: center;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.55rem, 3vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.ecosystem-footer p {
  margin: 0;
}

.slide-meta {
  transition-duration: 420ms;
}

.panel-grid {
  display: grid;
  gap: 1rem;
}

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

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.glass-panel {
  border-radius: 28px;
  padding: 1.55rem;
}

.glass-panel small,
.chart-card small {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.glass-panel h3 {
  margin: 0.65rem 0 0.5rem;
  font-size: 1.6rem;
  line-height: 1.15;
}

.fragment-river {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  max-width: 66rem;
}

.fragment-river div,
.asset-list div,
.token-cloud span,
.stack-node,
.final-pillars div {
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.verdict-band {
  margin-top: 1rem;
  width: fit-content;
  max-width: 60rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 77, 109, 0.08);
  border: 1px solid rgba(255, 77, 109, 0.18);
  color: #ffd5dd;
}

.architecture-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
}

.flow-column,
.flow-core {
  border-radius: 32px;
  border: 1px solid var(--border);
  background: var(--panel-strong);
  padding: 1.6rem;
}

.flow-column {
  display: grid;
  gap: 0.8rem;
}

.flow-column small {
  color: var(--cyan);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.flow-column strong,
.flow-core span {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.flow-core {
  display: grid;
  gap: 0.8rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 213, 255, 0.1), transparent 50%),
    var(--panel-strong);
}

.stack-panel,
.asset-list,
.token-cloud,
.final-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  max-width: 74rem;
}

.dashboard-mosaic {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.25fr 1fr 1fr;
}

.dashboard-mosaic .tall {
  grid-row: span 2;
}

.token-cloud span:nth-child(odd),
.stack-node:nth-child(odd),
.asset-list div:nth-child(odd),
.final-pillars div:nth-child(odd) {
  border-color: rgba(0, 213, 255, 0.26);
}

.chart-stage {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.chart-card {
  border-radius: 28px;
  padding: 1.35rem;
}

.fake-chart {
  margin-top: 1.25rem;
  height: 220px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.fake-chart::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.9;
}

.line-chart::after {
  background:
    linear-gradient(180deg, transparent 0 78%, rgba(255, 255, 255, 0.06) 78% 79%, transparent 79%),
    linear-gradient(90deg, transparent 0 78%, rgba(255, 255, 255, 0.06) 78% 79%, transparent 79%),
    linear-gradient(180deg, rgba(0, 213, 255, 0.25), transparent 62%);
  clip-path: polygon(0 78%, 12% 70%, 24% 74%, 36% 44%, 48% 50%, 60% 28%, 72% 34%, 84% 14%, 100% 18%, 100% 100%, 0 100%);
}

.bar-chart::after {
  background:
    linear-gradient(90deg,
      transparent 0 8%,
      rgba(32, 230, 163, 0.62) 8% 14%,
      transparent 14% 24%,
      rgba(0, 213, 255, 0.55) 24% 32%,
      transparent 32% 42%,
      rgba(214, 168, 79, 0.56) 42% 50%,
      transparent 50% 60%,
      rgba(0, 213, 255, 0.45) 60% 68%,
      transparent 68% 80%,
      rgba(32, 230, 163, 0.52) 80% 88%,
      transparent 88% 100%);
  mask-image: linear-gradient(180deg, transparent 8%, black 8%);
}

.radial-chart::after {
  width: 200px;
  height: 200px;
  margin: auto;
  inset: 10px;
  border-radius: 50%;
  border: 18px solid rgba(255, 255, 255, 0.06);
  border-top-color: rgba(0, 213, 255, 0.95);
  border-right-color: rgba(214, 168, 79, 0.68);
  border-bottom-color: rgba(32, 230, 163, 0.74);
  border-left-color: rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 62%);
}

.iceberg {
  width: min(72rem, 100%);
  display: grid;
  gap: 0;
}

.iceberg-top,
.iceberg-bottom {
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.iceberg-top {
  width: 34%;
  min-width: 260px;
  padding: 1.2rem 1.4rem;
  border-radius: 24px 24px 16px 16px;
  background: rgba(0, 213, 255, 0.1);
}

.iceberg-bottom {
  margin-top: -1px;
  padding: 1.4rem;
  border-radius: 16px 28px 28px 28px;
  background: rgba(8, 10, 16, 0.92);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.iceberg-bottom span {
  padding: 0.8rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.asset-list div {
  color: var(--text);
}

.integration-map {
  width: min(76rem, 100%);
  min-height: 420px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(6, minmax(58px, auto));
  gap: 1rem;
}

.integration-map::before {
  content: "";
  position: absolute;
  inset: 14% 8%;
  border: 1px solid rgba(0, 213, 255, 0.12);
  border-radius: 48px;
  background:
    linear-gradient(90deg, transparent 0 49.7%, rgba(0, 213, 255, 0.18) 49.7% 50.3%, transparent 50.3%),
    linear-gradient(180deg, transparent 0 49.7%, rgba(32, 230, 163, 0.14) 49.7% 50.3%, transparent 50.3%);
  pointer-events: none;
}

.integration-hub,
.integration-node {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  padding: 1.2rem;
  display: grid;
  align-content: center;
  gap: 0.35rem;
}

.integration-hub {
  grid-column: 5 / span 4;
  grid-row: 3 / span 2;
  min-height: 150px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 213, 255, 0.18), transparent 58%),
    var(--panel-strong);
}

.integration-hub small,
.integration-node small {
  color: var(--cyan);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.integration-hub strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.integration-node strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
}

.integration-node span {
  color: var(--muted);
  line-height: 1.5;
}

.node-binance {
  grid-column: 1 / span 4;
  grid-row: 1 / span 2;
}

.node-bybit {
  grid-column: 9 / span 4;
  grid-row: 1 / span 2;
}

.node-bingx {
  grid-column: 1 / span 4;
  grid-row: 5 / span 2;
}

.node-tv {
  grid-column: 9 / span 4;
  grid-row: 5 / span 2;
}

.node-tg {
  grid-column: 5 / span 4;
  grid-row: 1 / span 2;
  border-color: rgba(32, 230, 163, 0.26);
}

.brand-triptych {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.brand-skin {
  min-height: 260px;
  border-radius: 30px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.skin-a {
  background:
    radial-gradient(circle at top left, rgba(0, 213, 255, 0.22), transparent 40%),
    var(--panel);
}

.skin-b {
  background:
    radial-gradient(circle at top left, rgba(32, 230, 163, 0.18), transparent 40%),
    var(--panel);
}

.skin-c {
  background:
    radial-gradient(circle at top left, rgba(214, 168, 79, 0.22), transparent 40%),
    var(--panel);
}

.brand-skin small {
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-skin strong {
  margin-top: 0.8rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.compare-board {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
}

.compare-card {
  border-radius: 28px;
  padding: 1.6rem;
}

.compare-card.highlight {
  border-color: rgba(32, 230, 163, 0.28);
  background:
    radial-gradient(circle at top right, rgba(32, 230, 163, 0.08), transparent 40%),
    var(--panel);
}

.compare-card small {
  color: var(--cyan);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.compare-card strong {
  display: block;
  margin: 0.75rem 0 1rem;
  font-size: 1.8rem;
}

.compare-card ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.compare-divider {
  align-self: center;
  padding: 1rem 1.3rem;
  border-radius: 999px;
  color: var(--muted);
}

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

.roadmap-step {
  border-radius: 28px;
  padding: 1.55rem;
}

.roadmap-step small {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.roadmap-step strong {
  display: block;
  margin: 0.8rem 0 0.7rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.9rem;
}

.final-slide {
  align-items: center;
  text-align: center;
}

.final-slide .title-block h2 {
  max-width: 14ch;
  margin-inline: auto;
}

.final-pillars {
  justify-content: center;
}

@media (max-width: 1200px) {
  .slide {
    padding: 5.25rem 4rem 3.5rem;
  }

  .three-up,
  .four-up,
  .chart-stage,
  .dashboard-mosaic,
  .brand-triptych,
  .roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .architecture-flow,
  .compare-board {
    grid-template-columns: 1fr;
  }

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

  .hfengine-transform {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hfengine-transform::before,
  .hfengine-transform::after {
    display: none;
  }

  .hf-idea-panel {
    min-height: 420px;
  }

  .hf-core-panel {
    min-height: 420px;
  }

  .backtest-lab-map {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .discovery-funnel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ecosystem-stage {
    min-height: auto;
  }

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

  .analytics-workbench {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pulse-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pulse-gauge-panel {
    min-height: 560px;
  }

  .strategy-variation-cloud,
  .lab-core-panel,
  .best-strategy-panel {
    min-height: 420px;
  }

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

  .strategy-store {
    min-height: auto;
  }

  .companion-map {
    min-height: 500px;
  }

  .product-orbit {
    inset: 12% 5% 12% 45%;
  }

  .product-orbit span {
    min-width: 104px;
    font-size: 0.76rem;
  }

  .equity-hero-stage {
    min-height: auto;
  }

  .equity-curve {
    min-height: 460px;
  }

  .news-intelligence-map {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .news-benefits {
    grid-template-columns: 1fr;
  }

  .news-sources::after,
  .news-core::before,
  .news-core::after {
    display: none;
  }

  .ai-analysis-card {
    grid-column: 1 / -1;
  }

  .eventos-map {
    grid-template-columns: 1fr 240px 1fr;
  }

  .eventos-benefits {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .integration-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    min-height: auto;
  }

  .integration-map::before {
    inset: 8% 4%;
  }

  .integration-hub,
  .node-binance,
  .node-bybit,
  .node-bingx,
  .node-tv,
  .node-tg {
    grid-column: auto;
    grid-row: auto;
  }

  .compare-divider {
    justify-self: center;
  }

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

@media (max-width: 768px) {
  .slide {
    padding: 5rem 1.25rem 3rem;
    min-height: auto;
  }

  .brand-logo {
    flex-basis: 2.25rem;
    width: 2.25rem;
    min-height: 1.72rem;
    justify-content: center;
    padding: 0;
  }

  .brand-logo img {
    width: 1.45rem;
    height: 1.45rem;
  }

  .brand-logo span {
    display: none;
  }

  .deck-switch {
    top: 0.7rem;
    max-width: calc(100vw - 7.2rem);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .deck-switch::-webkit-scrollbar {
    display: none;
  }

  .deck-switch__button {
    flex-basis: 7.6rem;
    width: 7.6rem;
    min-height: 1.72rem;
    padding: 0.34rem 0.44rem;
    font-size: 0.55rem;
  }

  .progress-shell {
    top: 1rem;
    right: 1rem;
    width: 34px;
    padding: 0;
    gap: 0.45rem;
  }

  .progress-bar {
    height: 118px;
  }

  .hero-copy {
    padding-top: 1rem;
  }

  .hero-copy h1,
  .title-block h2,
  .futurehub-copy h2,
  .hfengine-heading h2,
  .backtest-heading h2,
  .discovery-heading h2,
  .analytics-heading h2,
  .pulse-heading h2,
  .marketplace-heading h2,
  .news-heading h2,
  .ai-ecosystem-heading h2,
  .equity-hero-copy h2 {
    max-width: none;
  }

  .futurehub-terminal {
    min-height: auto;
    border-radius: 24px;
  }

  .terminal-topbar {
    align-items: flex-start;
  }

  .futurehub-ai-button {
    width: 64px;
    height: 64px;
    font-size: 1.1rem;
  }

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

  .hf-idea-panel,
  .hf-core-panel,
  .hf-execution-panel {
    border-radius: 24px;
  }

  .hf-idea-panel {
    min-height: 360px;
  }

  .hf-core-panel {
    min-height: 320px;
  }

  .hf-core-orb {
    width: min(280px, 82%);
  }

  .execution-blueprint {
    grid-template-columns: 1fr;
  }

  .execution-blueprint::before {
    left: 50%;
    inset-block: 4%;
  }

  .execution-blueprint span:nth-child(odd),
  .execution-blueprint span:nth-child(even) {
    transform: none;
  }

  .strategy-variation-cloud,
  .lab-core-panel,
  .best-strategy-panel,
  .best-strategy-card {
    border-radius: 24px;
  }

  .strategy-variation-cloud,
  .lab-core-panel,
  .best-strategy-panel {
    min-height: 360px;
  }

  .lab-core {
    width: min(270px, 76%);
  }

  .ecosystem-sphere {
    width: min(320px, 76vw);
  }

  .role-model {
    grid-template-columns: 1fr;
  }

  .role-model::before,
  .role-card::before,
  .role-card::after {
    display: none;
  }

  .role-card {
    min-height: auto;
    border-radius: 22px;
  }

  .hypothesis-panel,
  .ai-code-panel,
  .analytics-result-panel {
    border-radius: 22px;
  }

  .result-metrics {
    grid-template-columns: 1fr;
  }

  .pulse-gauge-panel,
  .pulse-benefits,
  .pulse-benefits article {
    border-radius: 22px;
  }

  .pulse-gauge-panel {
    min-height: auto;
    padding: 1rem;
  }

  .pulse-ring {
    width: min(320px, 82vw);
  }

  .pulse-sources {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1rem;
  }

  .pulse-sources span {
    position: static;
    transform: none !important;
    font-size: 0.66rem;
  }

  .pulse-index-grid {
    grid-template-columns: 1fr;
  }

  .market-map-panel,
  .opportunity-panel,
  .opportunity-card {
    border-radius: 22px;
  }

  .data-funnel-row {
    grid-template-columns: 1fr;
  }

  .data-funnel-row i {
    justify-self: center;
  }

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

  .best-metrics {
    grid-template-columns: 1fr;
  }

  .chart-panel {
    min-height: 280px;
  }

  .eventos-map {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .eventos-sources {
    min-height: 320px;
  }

  .eventos-core::before,
  .eventos-core::after {
    display: none;
  }

  .eventos-benefits {
    grid-template-columns: 1fr;
  }

  .strategy-store {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    border-radius: 24px;
  }

  .strategy-card.featured {
    grid-row: auto;
  }

  .strategy-card,
  .marketplace-benefits,
  .marketplace-benefits article {
    border-radius: 22px;
  }

  .strategy-metrics {
    grid-template-columns: 1fr;
  }

  .news-sources,
  .news-core,
  .personal-feed {
    border-radius: 24px;
  }

  .news-sources div {
    min-height: 260px;
  }

  .companion-map {
    min-height: auto;
    padding: 1rem;
    border-radius: 24px;
    display: grid;
    gap: 1rem;
  }

  .companion-map::before,
  .product-orbit::before,
  .product-orbit span::before {
    display: none;
  }

  .trader-companion,
  .product-orbit {
    position: relative;
    inset: auto;
    left: auto;
    top: auto;
    bottom: auto;
    width: auto;
  }

  .trader-companion {
    min-height: 360px;
  }

  .trader-silhouette {
    left: 18%;
    height: 300px;
    transform: scale(0.82);
    transform-origin: bottom center;
  }

  .ai-companion {
    left: 48%;
    height: 286px;
    transform: scale(0.82);
    transform-origin: bottom center;
  }

  .product-orbit {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .product-orbit span {
    position: relative;
    inset: auto !important;
    width: 100%;
  }

  .ai-equation {
    grid-template-columns: 1fr;
  }

  .ai-equation i {
    width: 1px;
    height: 22px;
    justify-self: center;
  }

  .equity-curve {
    min-height: 360px;
    border-radius: 24px;
  }

  .equity-overlay span {
    max-width: 13rem;
  }

  .hero-kpis,
  .three-up,
  .four-up,
  .chart-stage,
  .dashboard-mosaic,
  .integration-map,
  .brand-triptych,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .kpi-card,
  .glass-panel,
  .compare-card,
  .roadmap-step,
  .brand-skin,
  .chart-card {
    border-radius: 22px;
  }

  .integration-map::before {
    display: none;
  }
}

@media (min-width: 1800px) and (min-height: 1000px) {
  body[data-active-deck="products"] .deck-switch {
    max-width: 1180px;
  }

  body[data-active-deck="products"] .slide[data-deck="products"] {
    padding: 5.8rem 7rem 1.8rem;
  }

  body[data-active-deck="products"] .product-title,
  body[data-active-deck="products"] .equity-hero-stage,
  body[data-active-deck="products"] .ai-ecosystem-stage,
  body[data-active-deck="products"] .futurehub-stage,
  body[data-active-deck="products"] .hfengine-stage,
  body[data-active-deck="products"] .eventos-stage,
  body[data-active-deck="products"] .discovery-stage,
  body[data-active-deck="products"] .backtest-stage,
  body[data-active-deck="products"] .marketplace-stage,
  body[data-active-deck="products"] .news-stage,
  body[data-active-deck="products"] .pulse-stage,
  body[data-active-deck="products"] .analytics-stage,
  body[data-active-deck="products"] .ecosystem-stage {
    width: min(2100px, 100%);
    height: calc(100vh - 10.75rem);
    min-height: 0;
  }

  body[data-active-deck="products"] .product-title {
    max-width: 1900px;
    gap: 1.45rem;
  }

  body[data-active-deck="products"] .product-title span,
  body[data-active-deck="products"] .equity-hero-copy span,
  body[data-active-deck="products"] .ai-ecosystem-heading span,
  body[data-active-deck="products"] .futurehub-copy span,
  body[data-active-deck="products"] .hfengine-heading span,
  body[data-active-deck="products"] .eventos-heading span,
  body[data-active-deck="products"] .discovery-heading span,
  body[data-active-deck="products"] .backtest-heading span,
  body[data-active-deck="products"] .marketplace-heading span,
  body[data-active-deck="products"] .news-heading span,
  body[data-active-deck="products"] .pulse-heading span,
  body[data-active-deck="products"] .analytics-heading span {
    font-size: 1rem;
  }

  body[data-active-deck="products"] .product-title h2 {
    font-size: clamp(6.8rem, 5.6vw, 9rem);
  }

  body[data-active-deck="products"] .equity-hero-copy h2,
  body[data-active-deck="products"] .ai-ecosystem-heading h2,
  body[data-active-deck="products"] .futurehub-copy h2,
  body[data-active-deck="products"] .hfengine-heading h2,
  body[data-active-deck="products"] .eventos-heading h2,
  body[data-active-deck="products"] .discovery-heading h2,
  body[data-active-deck="products"] .backtest-heading h2,
  body[data-active-deck="products"] .marketplace-heading h2,
  body[data-active-deck="products"] .news-heading h2,
  body[data-active-deck="products"] .pulse-heading h2,
  body[data-active-deck="products"] .analytics-heading h2 {
    font-size: clamp(4.6rem, 4vw, 6.4rem);
  }

  body[data-active-deck="products"] .equity-hero-copy p,
  body[data-active-deck="products"] .ai-ecosystem-heading p,
  body[data-active-deck="products"] .futurehub-copy p,
  body[data-active-deck="products"] .hfengine-heading p,
  body[data-active-deck="products"] .eventos-heading p,
  body[data-active-deck="products"] .discovery-heading p,
  body[data-active-deck="products"] .backtest-heading p,
  body[data-active-deck="products"] .marketplace-heading p,
  body[data-active-deck="products"] .news-heading p,
  body[data-active-deck="products"] .pulse-heading p,
  body[data-active-deck="products"] .analytics-heading p {
    font-size: 1.32rem;
    line-height: 1.45;
  }

  body[data-active-deck="products"] .equity-hero-stage {
    gap: 1.2rem;
  }

  body[data-active-deck="products"] .equity-curve,
  body[data-active-deck="products"] .companion-map {
    min-height: 560px;
    border-radius: 48px;
  }

  body[data-active-deck="products"] .equity-overlay strong {
    font-size: clamp(11rem, 9vw, 16rem);
  }

  body[data-active-deck="products"] .equity-overlay span {
    max-width: 30rem;
    font-size: 1.55rem;
  }

  body[data-active-deck="products"] .equity-footer,
  body[data-active-deck="products"] .ai-ecosystem-footer {
    font-size: clamp(2rem, 1.9vw, 3.2rem);
  }

  body[data-active-deck="products"] .ai-ecosystem-stage {
    gap: 1.35rem;
  }

  body[data-active-deck="products"] .ai-ecosystem-heading h2 {
    max-width: 18ch;
  }

  body[data-active-deck="products"] .trader-companion {
    left: 9%;
    top: 12%;
    bottom: 12%;
    width: 39%;
  }

  body[data-active-deck="products"] .trader-silhouette {
    width: 230px;
    height: 470px;
  }

  body[data-active-deck="products"] .trader-silhouette::before {
    width: 112px;
    height: 112px;
  }

  body[data-active-deck="products"] .trader-silhouette::after {
    top: 114px;
    width: 205px;
    height: 315px;
  }

  body[data-active-deck="products"] .ai-companion {
    width: 210px;
    height: 450px;
  }

  body[data-active-deck="products"] .ai-companion::before {
    width: 98px;
    height: 98px;
  }

  body[data-active-deck="products"] .ai-companion::after {
    top: 122px;
    width: 176px;
    height: 285px;
  }

  body[data-active-deck="products"] .product-orbit {
    inset: 9% 6% 9% 43%;
  }

  body[data-active-deck="products"] .product-orbit span {
    min-width: 158px;
    padding: 0.78rem 1rem;
    font-size: 1.02rem;
  }

  body[data-active-deck="products"] .ai-equation {
    gap: 1rem;
  }

  body[data-active-deck="products"] .ai-equation div {
    min-height: 108px;
    border-radius: 34px;
  }

  body[data-active-deck="products"] .futurehub-stage {
    gap: 1.35rem;
  }

  body[data-active-deck="products"] .futurehub-terminal {
    min-height: 620px;
    border-radius: 42px;
  }

  body[data-active-deck="products"] .chart-panel {
    min-height: 390px;
  }

  body[data-active-deck="products"] .futurehub-ai-button {
    width: 104px;
    height: 104px;
    font-size: 1.8rem;
  }

  body[data-active-deck="products"] .ai-analysis-card {
    width: 330px;
    padding: 1.35rem;
  }

  body[data-active-deck="products"] .hfengine-transform,
  body[data-active-deck="products"] .eventos-map,
  body[data-active-deck="products"] .discovery-funnel,
  body[data-active-deck="products"] .backtest-lab-map,
  body[data-active-deck="products"] .news-intelligence-map,
  body[data-active-deck="products"] .pulse-layout,
  body[data-active-deck="products"] .analytics-workbench {
    min-height: 560px;
    gap: 1.35rem;
  }

  body[data-active-deck="products"] .marketplace-grid {
    height: 620px;
    min-height: 0;
    gap: 1.35rem;
  }

  body[data-active-deck="products"] .hf-idea-panel,
  body[data-active-deck="products"] .hf-core-panel,
  body[data-active-deck="products"] .hf-execution-panel,
  body[data-active-deck="products"] .eventos-sources,
  body[data-active-deck="products"] .eventos-output,
  body[data-active-deck="products"] .market-map-panel,
  body[data-active-deck="products"] .opportunity-panel,
  body[data-active-deck="products"] .strategy-variation-cloud,
  body[data-active-deck="products"] .lab-core-panel,
  body[data-active-deck="products"] .best-strategy-panel,
  body[data-active-deck="products"] .news-sources,
  body[data-active-deck="products"] .news-core,
  body[data-active-deck="products"] .personal-feed,
  body[data-active-deck="products"] .pulse-gauge-panel,
  body[data-active-deck="products"] .pulse-benefits,
  body[data-active-deck="products"] .hypothesis-panel,
  body[data-active-deck="products"] .ai-code-panel,
  body[data-active-deck="products"] .analytics-result-panel,
  body[data-active-deck="products"] .strategy-store,
  body[data-active-deck="products"] .marketplace-benefits {
    border-radius: 38px;
  }

  body[data-active-deck="products"] .hf-core-orb,
  body[data-active-deck="products"] .lab-core,
  body[data-active-deck="products"] .news-core-orb,
  body[data-active-deck="products"] .eventos-core-orb {
    width: min(390px, 82%);
  }

  body[data-active-deck="products"] .eventos-map {
    grid-template-columns: 1.1fr 340px 1.15fr;
  }

  body[data-active-deck="products"] .eventos-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-active-deck="products"] .market-map-panel {
    min-height: 560px;
  }

  body[data-active-deck="products"] .data-points strong,
  body[data-active-deck="products"] .data-funnel-row strong {
    font-size: clamp(4.4rem, 4.8vw, 7.2rem);
  }

  body[data-active-deck="products"] .asset-map {
    gap: 0.7rem;
  }

  body[data-active-deck="products"] .asset-map span {
    min-height: 50px;
  }

  body[data-active-deck="products"] .pulse-ring {
    width: min(520px, 66%);
  }

  body[data-active-deck="products"] .pulse-index-grid {
    gap: 0.85rem;
  }

  body[data-active-deck="products"] .pulse-index-card,
  body[data-active-deck="products"] .marketplace-benefits article,
  body[data-active-deck="products"] .role-card {
    padding: 1.35rem;
  }

  body[data-active-deck="products"] .strategy-store {
    height: 620px;
    min-height: 0;
    gap: 1rem;
    padding: 1.2rem;
  }

  body[data-active-deck="products"] .strategy-card {
    min-height: 0;
    border-radius: 30px;
    padding: 1.25rem;
  }

  body[data-active-deck="products"] .strategy-card.featured {
    min-height: 0;
  }

  body[data-active-deck="products"] .ecosystem-stage {
    gap: 1.1rem;
  }

  body[data-active-deck="products"] .ecosystem-sphere {
    width: min(420px, 26vw);
  }

  body[data-active-deck="products"] .role-model {
    gap: 1.1rem;
    align-self: center;
  }

  body[data-active-deck="products"] .role-card {
    min-height: 210px;
    border-radius: 32px;
  }

  body[data-active-deck="products"] .ecosystem-footer {
    font-size: clamp(2rem, 1.85vw, 3.1rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .slide > *,
  .slide::after,
  #progressFill,
  .menu-drawer,
  .menu-button,
  .ghost-button,
  .close-menu {
    transition: none !important;
  }
}

