﻿:root {
  --bg: #030712;
  --bg-elev: #071428;
  --bg-navy: #06102a;
  --bg-card: rgba(10, 20, 42, 0.78);
  --ink: #f4f7ff;
  --muted: #94a8c9;
  --line: rgba(121, 157, 230, 0.22);
  --accent: #2d6fff;
  --accent-soft: #9fc0ff;
  --accent-glow: rgba(45, 111, 255, 0.45);
  --cyan: #22d3ee;
  --lime: #84cc16;
  --violet: #a855f7;
  --signal-up: #4ade80;
  --signal-down: #f87171;
  --glass: rgba(255, 255, 255, 0.04);
  --radius: 16px;
  --radius-pill: 999px;
  --section-space: 5rem;
  --site-max: 1200px;
  --site-pad-x: 1.5rem;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", sans-serif;
  --window-gradient: linear-gradient(155deg, rgba(45, 111, 255, 0.16) 0%, rgba(12, 24, 52, 0.88) 38%, rgba(5, 10, 24, 0.96) 100%);
  --window-gradient-green: linear-gradient(155deg, rgba(74, 222, 128, 0.13) 0%, rgba(10, 28, 44, 0.88) 38%, rgba(5, 12, 28, 0.96) 100%);
  --window-gradient-cyan: linear-gradient(155deg, rgba(34, 211, 238, 0.14) 0%, rgba(10, 24, 48, 0.88) 38%, rgba(5, 12, 28, 0.96) 100%);
  --window-gradient-violet: linear-gradient(155deg, rgba(168, 85, 247, 0.13) 0%, rgba(16, 12, 44, 0.88) 38%, rgba(5, 10, 24, 0.96) 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ── Page loader ── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translateY(-2vh);
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 60deg,
    var(--cyan) 60deg 140deg,
    var(--accent) 140deg 220deg,
    var(--violet) 220deg 300deg,
    transparent 300deg 360deg
  );
  animation: spin 0.9s linear infinite;
  position: relative;
  flex-shrink: 0;
}

.loader-spinner::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--bg);
}

.loader-label {
  margin: 0.85rem 0 0;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(148, 168, 201, 0.85);
  max-width: 12rem;
  line-height: 1.5;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Aurora backgrounds (navy + Nexora-style horizon) ── */
.aurora-wrap {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(15, 40, 90, 0.35), transparent 55%),
    linear-gradient(180deg, #030712 0%, #05101f 45%, #06102a 100%);
}

.aurora-wrap::before,
.aurora-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.aurora-wrap::before {
  width: 50vw;
  height: 50vw;
  top: -18%;
  left: -8%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.22), transparent 70%);
  animation: drift 14s ease-in-out infinite alternate;
}

.aurora-wrap::after {
  width: 42vw;
  height: 42vw;
  top: 8%;
  right: -12%;
  background: radial-gradient(circle, rgba(45, 111, 255, 0.2), transparent 70%);
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(4%, 6%) scale(1.08);
  }
}

.hero-stage {
  position: relative;
  overflow: visible;
  z-index: 1;
  padding-bottom: 2.5rem;
}

.hero-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  width: min(920px, 88%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(52, 211, 153, 0.22) 18%,
    rgba(34, 211, 238, 0.5) 50%,
    rgba(59, 130, 246, 0.35) 82%,
    transparent 100%
  );
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.14);
  pointer-events: none;
  z-index: 3;
}

.hero-stage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(3, 7, 18, 0.55) 45%, var(--bg) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero-stage .hero,
.hero-stage .dashboard-section {
  position: relative;
  z-index: 1;
}

.hero-aurora {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: -3rem;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.hero-aurora__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1px 1px at 25% 65%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1.5px 1.5px at 42% 15%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 58% 78%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 72% 35%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 88% 55%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 15% 88%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(1px 1px at 92% 12%, rgba(255, 255, 255, 0.4), transparent);
  opacity: 0.7;
}

.hero-aurora__beams {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1000px, 92vw);
  height: 58%;
  background:
    radial-gradient(ellipse 12% 100% at 24% 100%, rgba(52, 211, 153, 0.82), transparent 68%),
    radial-gradient(ellipse 9% 95% at 35% 100%, rgba(74, 222, 128, 0.58), transparent 66%),
    radial-gradient(ellipse 16% 100% at 50% 100%, rgba(34, 211, 238, 0.92), transparent 62%),
    radial-gradient(ellipse 13% 98% at 64% 100%, rgba(59, 130, 246, 0.78), transparent 66%),
    radial-gradient(ellipse 10% 92% at 76% 100%, rgba(45, 111, 255, 0.68), transparent 64%);
  filter: blur(11px);
  animation: aurora-pulse 8s ease-in-out infinite alternate;
}

.hero-aurora__beams::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 6% 80% at 44% 100%, rgba(255, 255, 255, 0.12), transparent 65%),
    radial-gradient(ellipse 5% 70% at 56% 100%, rgba(255, 255, 255, 0.08), transparent 60%);
  filter: blur(8px);
}

.hero-aurora__horizon {
  position: absolute;
  left: -15%;
  width: 130%;
  bottom: 14%;
  height: 3px;
  border-radius: 50%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(52, 211, 153, 0.4) 20%,
    rgba(34, 211, 238, 0.9) 45%,
    rgba(96, 165, 250, 1) 50%,
    rgba(45, 111, 255, 0.7) 65%,
    transparent 100%
  );
  box-shadow:
    0 0 50px 20px rgba(34, 211, 238, 0.35),
    0 -80px 140px 60px rgba(45, 111, 255, 0.2);
}

@keyframes aurora-pulse {
  from {
    opacity: 0.75;
    transform: translateX(-50%) scaleY(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scaleY(1.05);
  }
}

.grid-glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 55% at 50% 15%, #000 15%, transparent 75%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  border-bottom: 1px solid transparent;
}

.nav.is-solid {
  background: rgba(5, 8, 16, 0.82);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  max-width: var(--site-max);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem var(--site-pad-x);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  box-shadow: 0 0 24px var(--accent-glow);
}

.brand-mark--shader {
  position: relative;
  padding: 0;
  background: transparent;
  overflow: hidden;
  flex-shrink: 0;
  isolation: isolate;
}

.brand-mark--shader .brand-shader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.brand-mark--shader .brand-mark__glyph {
  position: relative;
  z-index: 1;
  font-weight: 800;
  font-size: inherit;
  color: #fff;
  line-height: 1;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  pointer-events: none;
  user-select: none;
}

.brand-mark--shader:not(.is-static) {
  border: 1px solid rgba(34, 211, 238, 0.55);
  box-sizing: border-box;
  box-shadow:
    0 0 14px rgba(34, 211, 238, 0.22),
    0 0 28px rgba(45, 111, 255, 0.12);
}

.brand-mark--shader.is-static {
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  border: 1px solid rgba(34, 211, 238, 0.55);
  box-sizing: border-box;
  box-shadow:
    0 0 14px rgba(34, 211, 238, 0.22),
    0 0 28px rgba(45, 111, 255, 0.12);
}

.brand-mark--shader.is-static .brand-shader-canvas {
  display: none;
}

.brand-text {
  display: grid;
  gap: 0.1rem;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-text span {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
  border-color: rgba(34, 211, 238, 0.45);
  background: rgba(34, 211, 238, 0.08);
}

.nav-toggle__icon {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: background 0.2s ease;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, top 0.25s ease;
}

.nav-toggle__icon::before {
  top: -6px;
}

.nav-toggle__icon::after {
  top: 6px;
}

.nav.is-drawer-open .nav-toggle__icon {
  background: transparent;
}

.nav.is-drawer-open .nav-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav.is-drawer-open .nav-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  visibility: hidden;
}

.nav-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  background: rgba(3, 7, 18, 0.78);
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.nav-drawer.is-open .nav-drawer__backdrop {
  opacity: 1;
}

.nav-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: rgba(6, 12, 28, 0.98);
  border-right: 1px solid var(--line);
  box-shadow: 24px 0 64px rgba(0, 0, 0, 0.45);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 1.15rem 1.15rem 1.75rem;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 1.15rem;
  overflow-y: auto;
}

.nav-drawer.is-open .nav-drawer__panel {
  transform: translateX(0);
}

.nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--line);
}

.nav-drawer__title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-drawer__close {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.nav-drawer__links {
  display: grid;
  gap: 0.15rem;
}

.nav-drawer__links a {
  display: block;
  padding: 0.75rem 0.65rem;
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-drawer__links a:hover,
.nav-drawer__links a.is-active {
  color: var(--ink);
  background: rgba(45, 111, 255, 0.1);
}

.store-badges--drawer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

.store-badges--drawer .store-badge {
  display: block;
  width: 100%;
}

.store-badges--drawer .store-badge img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-drawer__cta {
  padding-top: 0.35rem;
  border-top: 1px solid var(--line);
}

.nav-drawer__cta .cta {
  display: flex;
  width: 100%;
  justify-content: center;
}

.nav-account {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.store-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.store-badges--footer {
  margin: 1.15rem 0 0.25rem;
  gap: 0.45rem;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

.store-badges--footer .store-badge {
  border: none;
  background: transparent;
  box-shadow: none;
}

.store-badges--footer .store-badge img {
  height: 40px;
  width: auto;
  border-radius: 8px;
}

.store-badges--footer .store-badge:hover {
  box-shadow: 0 6px 20px rgba(34, 211, 238, 0.15);
}

.store-badge {
  display: block;
  line-height: 0;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.store-badge img {
  display: block;
  width: auto;
  height: 36px;
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 211, 238, 0.18);
  opacity: 0.95;
}

.profile-avatar {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent-soft);
  background: rgba(45, 111, 255, 0.18);
  border: 1px solid rgba(45, 111, 255, 0.35);
  box-shadow:
    0 0 18px rgba(34, 211, 238, 0.22),
    0 0 42px rgba(45, 111, 255, 0.1);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.profile-avatar:hover {
  background: rgba(45, 111, 255, 0.28);
  border-color: rgba(45, 111, 255, 0.55);
  transform: translateY(-1px);
}

/* Nexora-style glow button */
.cta,
.btn-glow,
.btn-solid {
  position: relative;
  padding: 0.72rem 1.35rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: rgba(6, 12, 26, 0.92);
  border: 1px solid rgba(34, 211, 238, 0.55);
  box-shadow:
    0 0 18px rgba(34, 211, 238, 0.32),
    0 0 42px rgba(45, 111, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.cta:hover,
.btn-glow:hover,
.btn-solid:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.9);
  box-shadow:
    0 0 26px rgba(34, 211, 238, 0.5),
    0 0 55px rgba(45, 111, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-ghost,
.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(121, 157, 230, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: var(--ink);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.cta-ghost:hover,
.btn-ghost:hover {
  background: rgba(34, 211, 238, 0.09);
  border-color: rgba(34, 211, 238, 0.72);
  box-shadow:
    0 0 20px rgba(34, 211, 238, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 8.5rem 1.5rem 3rem;
  z-index: 1;
  overflow: visible;
}

.hero-inner {
  max-width: var(--site-max);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--glass);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1.5rem;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(132, 204, 22, 0.8);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
  margin: 0 0 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gradient-text,
.hero h1 .gradient-text {
  background: linear-gradient(90deg, var(--accent-soft), var(--cyan), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  max-width: 90ch;
  margin: 0 auto 2rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  position: relative;
  z-index: 4;
  margin-bottom: 0.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

/* ── Dashboard preview ── */
.dashboard-section {
  padding: 1.25rem clamp(0.75rem, 2vw, 1.5rem) 2.5rem;
  margin-top: 0.5rem;
  position: relative;
  z-index: 2;
}

.dashboard-frame {
  width: 75%;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(74, 222, 128, 0.1) 0%, rgba(45, 111, 255, 0.12) 28%, rgba(12, 24, 52, 0.92) 55%, rgba(5, 10, 24, 0.98) 100%);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 60px rgba(45, 111, 255, 0.12);
  overflow: hidden;
}

.dash-hero-band {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.62fr;
  gap: 0.75rem;
  align-items: stretch;
}

.dashboard-section .dash-hero-band .detail-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 0.85rem;
}

.dashboard-section .dash-hero-band .detail-list dd {
  font-size: 0.82rem;
}

.dash-stats--mock {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dash-stats--mock .dash-stat-label {
  font-size: 0.58rem;
  letter-spacing: 0.07em;
}

.dash-stats--mock .dash-stat-value {
  font-size: 0.92rem;
}

.dashboard-chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
}

.chrome-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.chrome-dot.red {
  background: #ff5f57;
}
.chrome-dot.yellow {
  background: #febc2e;
}
.chrome-dot.green {
  background: #28c840;
}

.dashboard-url {
  margin-left: 0.75rem;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 480px;
}

.dash-app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.72rem;
}

.dash-app-topbar-left,
.dash-app-topbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.dash-mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.dash-mini-brand .brand-mark {
  width: 22px;
  height: 22px;
  font-size: 0.7rem;
}

.dash-pool-select {
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.dash-fund-badge {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dash-fund-badge--sim {
  border: 1px solid rgba(159, 192, 255, 0.35);
  color: var(--accent-soft);
  background: rgba(45, 111, 255, 0.12);
}

.dash-fund-badge--live {
  border: 1px solid rgba(234, 179, 8, 0.35);
  color: #facc15;
  background: rgba(234, 179, 8, 0.08);
}

.dash-user-pill {
  color: var(--text);
  opacity: 0.85;
}

.dash-page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dash-page-title {
  margin: 0;
  font-size: 1.35rem;
  font-family: var(--font-display);
}

.dash-page-actions {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.dash-btn-ghost,
.dash-btn-solid {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  border: 1px solid var(--line);
}

.dash-btn-ghost {
  color: var(--muted);
  background: transparent;
}

.dash-btn-solid {
  color: #fff;
  background: rgba(45, 111, 255, 0.35);
  border-color: rgba(45, 111, 255, 0.5);
}

.dash-alert-info {
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(45, 111, 255, 0.25);
  background: rgba(45, 111, 255, 0.1);
  font-size: 0.78rem;
  color: var(--muted);
}

.dash-alert-info strong {
  color: var(--accent-soft);
}

.dash-panel h4,
.panel-head h4 {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.panel-meta {
  font-size: 0.68rem;
  color: var(--muted);
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem 1.25rem;
  margin: 0;
}

.detail-list > div {
  display: grid;
  gap: 0.2rem;
}

.detail-list dt {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.detail-list dd {
  margin: 0;
  font-size: 0.88rem;
}

.dash-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.dash-panel-head h4 {
  margin: 0;
  font-size: 0.85rem;
}

.dash-panel-meta {
  font-size: 0.68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dash-finances-panel {
  padding: 1rem;
}

.dash-finances-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem 1rem;
}

.dash-finances-grid > div {
  display: grid;
  gap: 0.25rem;
}

.dash-fin-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.dash-finances-grid strong {
  font-size: 0.95rem;
  font-family: var(--font-display);
}

.dash-finances-grid strong.up {
  color: var(--signal-up);
}

.dash-stat--fill {
  display: flex;
  flex-direction: column;
}

.donut-wrap--compact {
  height: auto;
  margin-top: 0.15rem;
}

.donut--compact {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  animation: none;
}

.donut--compact::after {
  content: none;
}

.donut-label,
.donut-label--compact {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-elev);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  animation: none;
}

.donut-meta {
  display: block;
  margin-top: 0.45rem;
  text-align: center;
  font-size: 0.68rem;
  color: var(--muted);
}

.dash-stats--3 {
  grid-template-columns: repeat(3, 1fr);
}

.dash-panels {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.75rem;
}

.dash-panel--fill .donut-wrap {
  height: 140px;
}

.donut--panel {
  width: 100px;
  height: 100px;
  animation: none;
}

.donut--panel::after {
  content: none;
}

.chart-bars--tall {
  height: 120px;
}

.dash-sidebar {
  border-right: 1px solid var(--line);
  padding: 1.25rem 0.85rem;
  display: grid;
  gap: 0.35rem;
  align-content: start;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  font-size: 0.78rem;
  color: var(--muted);
}

.dash-nav-item.is-active {
  background: rgba(45, 111, 255, 0.15);
  color: var(--accent-soft);
  border: 1px solid rgba(45, 111, 255, 0.25);
}

.dash-nav-icon {
  width: 16px;
  height: 16px;
  opacity: 0.85;
}

.dash-main {
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.dash-stat {
  padding: 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--window-gradient);
}

.dash-stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.dash-stat-value {
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.dash-stat-value.up {
  color: var(--signal-up);
}

.dash-stat-value.down {
  color: var(--signal-down);
}

.dash-stat-spark {
  margin-top: 0.5rem;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(90deg, transparent, rgba(45, 111, 255, 0.2));
  position: relative;
  overflow: hidden;
}

.dash-stat-spark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--accent) 0%, var(--cyan) 50%, var(--lime) 100%);
  opacity: 0.35;
  clip-path: polygon(0 80%, 15% 60%, 30% 70%, 45% 40%, 60% 55%, 75% 25%, 90% 35%, 100% 15%, 100% 100%, 0 100%);
}

.dash-panels {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.75rem;
}

.dash-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--window-gradient);
  backdrop-filter: blur(8px);
  padding: 1rem;
}

.dash-panel > h4 {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 120px;
}

.chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  opacity: 0.85;
  animation: barGrow 1.2s ease backwards;
}

.chart-bar:nth-child(odd) {
  background: linear-gradient(180deg, var(--cyan), rgba(34, 211, 238, 0.4));
}

@keyframes barGrow {
  from {
    height: 0 !important;
  }
}

.donut-wrap {
  display: grid;
  place-items: center;
  position: relative;
  height: 140px;
}

.donut {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: conic-gradient(
    var(--accent) 0deg 130deg,
    var(--cyan) 130deg 220deg,
    var(--violet) 220deg 300deg,
    rgba(255, 255, 255, 0.08) 300deg 360deg
  );
  display: grid;
  place-items: center;
  animation: spin 12s linear infinite;
}

.donut::after {
  content: "68%";
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-elev);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  animation: spin 12s linear infinite reverse;
}

.donut.donut--panel,
.donut.donut--compact {
  animation: none;
}

.donut.donut--panel::after,
.donut.donut--compact::after {
  content: none;
  display: none;
  animation: none;
}

.donut-label {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-elev);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  animation: none;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
}

.dash-table th,
.dash-table td {
  text-align: left;
  padding: 0.45rem 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dash-table th {
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.62rem;
}

.status-pill {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-pill);
  font-size: 0.62rem;
  font-weight: 600;
}

.status-pill.live {
  background: rgba(74, 222, 128, 0.15);
  color: var(--signal-up);
}

.status-pill.sim {
  background: rgba(159, 192, 255, 0.12);
  color: var(--accent-soft);
}

/* ── Sections ── */
.section {
  max-width: var(--site-max);
  width: 100%;
  margin: 0 auto;
  padding: var(--section-space) var(--site-pad-x);
}

.section-head {
  text-align: center;
  max-width:800px;
  margin: 0 auto 2.75rem;
}

.kicker {
  color: var(--cyan);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 500;
  margin: 0 0 0.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 0.85rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* Eposy-style gradient content windows */
.feature-card,
.club-step,
.trial-panel,
.pricing-card,
.split-card,
.dash-stat,
.testimonial-card,
.faq-panel,
.faq-help-card,
.api-advantage-list li,
.metric,
.dashboard-frame,
.api-docs-cta-inner,
.card,
.t-card,
.board,
.dash-panel {
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.club-step::before,
.trial-panel::before,
.pricing-card::before,
.split-card::before,
.dash-stat::before,
.testimonial-card::before,
.faq-panel::before,
.faq-help-card::before,
.api-advantage-list li::before,
.metric::before,
.dashboard-frame::before,
.api-docs-cta-inner::before,
.card::before,
.t-card::before,
.board::before,
.dash-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(74, 222, 128, 0.65), var(--cyan), var(--accent));
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.feature-card:hover::before,
.club-step:hover::before,
.trial-panel:hover::before,
.pricing-card:hover::before,
.split-card:hover::before,
.dash-stat:hover::before,
.testimonial-card:hover::before,
.faq-panel:hover::before,
.faq-help-card:hover::before,
.api-advantage-list li:hover::before,
.metric:hover::before,
.dashboard-frame:hover::before,
.api-docs-cta-inner:hover::before,
.card:hover::before,
.t-card:hover::before,
.board:hover::before,
.dash-panel:hover::before {
  opacity: 0.9;
}

.feature-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--window-gradient);
  backdrop-filter: blur(8px);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-grid .feature-card:nth-child(3n + 1) {
  background: var(--window-gradient-green);
}

.feature-grid .feature-card:nth-child(3n + 2) {
  background: var(--window-gradient);
}

.feature-grid .feature-card:nth-child(3n) {
  background: var(--window-gradient-cyan);
}

.feature-card:hover {
  border-color: rgba(45, 111, 255, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(45, 111, 255, 0.2), rgba(34, 211, 238, 0.15));
  color: var(--accent-soft);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(45, 111, 255, 0.06), rgba(34, 211, 238, 0.04), rgba(45, 111, 255, 0.05));
}

.strip-grid {
  max-width: var(--site-max);
  width: 100%;
  margin: 0 auto;
  padding-left: var(--site-pad-x);
  padding-right: var(--site-pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.strip-item {
  padding: 1.35rem 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.strip-item:last-child {
  border-right: 0;
}

.strip-item svg {
  width: 18px;
  height: 18px;
  color: var(--cyan);
  margin: 0 auto 0.5rem;
}

.strip-title {
  margin: 0;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.strip-copy {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--window-gradient);
  backdrop-filter: blur(8px);
  padding: 1.25rem;
  overflow: hidden;
}

.cards .card:nth-child(3n + 1) { background: var(--window-gradient-green); }
.cards .card:nth-child(3n + 2) { background: var(--window-gradient); }
.cards .card:nth-child(3n) { background: var(--window-gradient-cyan); }

.card .label {
  color: var(--accent-soft);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.6rem;
  margin: 0 0 0.5rem;
}

.card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.card .copy {
  margin: 0.6rem 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.9rem;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 1rem;
  border: 1px solid var(--line);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.testimonial-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--window-gradient-violet);
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
  align-content: start;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card.featured {
  background: linear-gradient(155deg, rgba(45, 111, 255, 0.2) 0%, rgba(12, 22, 48, 0.9) 40%, rgba(5, 10, 24, 0.96) 100%);
  border-color: rgba(45, 111, 255, 0.35);
}

.testimonial-quote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #dce6ff;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--violet));
}

.author-name {
  font-weight: 600;
  font-size: 0.88rem;
}

.author-role {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── Final CTA (Nexora-style) ── */
.cta-final {
  text-align: center;
}

.cta-final-inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-kicker {
  color: var(--cyan);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  font-weight: 500;
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 1.1rem;
}

.cta-lede {
  margin: 0 auto 2rem;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.cta-final .hero-actions {
  margin-bottom: 2rem;
}

.cta-trust {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2rem;
}

.cta-trust li {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 1.35rem;
  position: relative;
}

.cta-trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

/* ── Inner pages ── */
.page-head {
  padding-top: 7.5rem;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.lede {
  color: var(--muted);
  line-height: 1.65;
  max-width: 52ch;
}

.stack {
  display: grid;
  gap: 0.85rem;
}

.metric {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--window-gradient);
  padding: 1rem;
}

.metric strong {
  display: block;
  font-size: 1.4rem;
  font-family: var(--font-display);
  margin-top: 0.35rem;
}

.metric .label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.board {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
  padding: 1rem;
}

.board img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 0.5rem;
}

.board h3 {
  margin: 0.75rem 0 0.35rem;
  font-size: 1.05rem;
}

.board p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

/* ── Footer (Nexora-style) ── */
.footer {
  border-top: 1px solid var(--line);
  padding: 4rem 0 2.5rem;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 16, 0.98));
  overflow: hidden;
}

.footer-inner {
  max-width: var(--site-max);
  width: 100%;
  margin: 0 auto;
  padding-left: var(--site-pad-x);
  padding-right: var(--site-pad-x);
  display: grid;
  grid-template-columns: minmax(200px, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 0;
}

.footer-brand {
  padding-right: 2rem;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  text-decoration: none;
  color: inherit;
  width: fit-content;
}

.footer-brand-logo:hover strong {
  color: #fff;
}

.footer-brand .brand-mark {
  width: 38px;
  height: 38px;
  font-size: 0.95rem;
  border-radius: 11px;
}

.footer-brand .brand-text strong {
  font-size: 1.05rem;
}

.footer-tagline {
  margin: 0 0 1.35rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.84rem;
  max-width: 22ch;
}

.footer-col {
  border-left: 1px solid var(--line);
  padding: 0 0 0 1.75rem;
}

.footer-heading {
  margin: 0 0 1.1rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-soft);
  font-weight: 600;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.84rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--ink);
}

.social-row {
  display: flex;
  gap: 0.5rem;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.social-link:hover {
  border-color: rgba(159, 192, 255, 0.45);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}

.social-link svg {
  width: 14px;
  height: 14px;
}

.footer-copy {
  margin: 1.35rem 0 0;
  color: rgba(148, 168, 201, 0.55);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.chip {
  display: inline-block;
  border: 1px solid var(--line);
  padding: 0.3rem 0.55rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-right: 0.35rem;
}

.chip.up {
  border-color: rgba(74, 222, 128, 0.35);
  color: var(--signal-up);
}

.actions {
  margin-top: 0.85rem;
}

@media (max-width: 1200px) {
  .dash-stats--mock {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: grid;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .nav-inner {
    position: relative;
    justify-content: center;
    gap: 0;
  }

  .brand {
    position: relative;
    z-index: 1;
  }

  .dashboard-frame {
    width: 94%;
    max-width: none;
  }

  .strip-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .strip-item:last-child {
    border-bottom: 0;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dash-hero-band {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    display: none;
  }

  .dash-stats,
  .dash-stats--mock,
  .dash-panels,
  .feature-grid,
  .cards,
  .brand-grid,
  .testimonial-grid,
  .strip-grid,
  .club-steps,
  .revenue-split,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .strip-grid {
    gap: 0;
  }

  .footer-inner {
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.35rem;
    padding-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 2rem;
  }

  .footer-brand-logo {
    margin-bottom: 0;
    justify-content: center;
  }

  .store-badges--footer {
    margin: 0;
    justify-content: center;
    width: 100%;
    gap: 0.75rem;
  }

  .social-row {
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
  }

  .footer-copy {
    margin: 0;
    text-align: center;
  }

  .footer-col {
    border-left: 0;
    padding-left: 0;
    padding-top: 0.25rem;
    text-align: center;
  }

  .footer-links {
    justify-items: center;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .stack-panel {
    grid-template-columns: 1fr;
  }

  .stack-panel-visual {
    min-height: 280px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .club-hero-grid,
  .club-steps,
  .revenue-split,
  .trial-promo-inner,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .cta-trust {
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
  }

  .testimonials-stage {
    grid-template-columns: 1fr;
    height: auto;
    gap: 1.5rem;
  }

  .testimonials-center {
    order: -1;
    max-width: 220px;
    margin: 0 auto;
  }

  .testimonials-col {
    max-height: 320px;
  }
}

/* ── Horizontal scroll rails (Nexora-style) ── */
.scroll-rail-wrap {
  position: relative;
  margin-top: 2.75rem;
}

.scroll-rail {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 1.5rem 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(34, 211, 238, 0.4) transparent;
  cursor: grab;
}

.scroll-rail::-webkit-scrollbar {
  height: 6px;
}

.scroll-rail::-webkit-scrollbar-thumb {
  background: rgba(34, 211, 238, 0.45);
  border-radius: 99px;
}

.scroll-rail > * {
  scroll-snap-align: start;
  flex: 0 0 min(92vw, 1100px);
}

.scroll-rail.is-dragging {
  cursor: grabbing;
  user-select: none;
}

/* ── Stack / Connect panels ── */
.stack-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(14, 26, 52, 0.95), rgba(8, 14, 30, 0.98));
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.stack-panel-visual {
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 20%, rgba(34, 211, 238, 0.12), transparent 45%),
    rgba(0, 0, 0, 0.2);
  display: grid;
  align-content: center;
  gap: 1rem;
}

.mock-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 16, 34, 0.85);
  padding: 1rem;
}

.mock-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.mock-live {
  color: var(--signal-up);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mock-integrations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.mock-int {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem;
  text-align: center;
  font-size: 0.68rem;
}

.mock-int strong {
  display: block;
  font-size: 0.75rem;
  margin-bottom: 0.2rem;
}

.mock-int.synced {
  border-color: rgba(74, 222, 128, 0.35);
  color: var(--signal-up);
}

.mock-hub {
  display: grid;
  place-items: center;
  margin: 0.75rem 0;
}

.mock-hub-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(34, 211, 238, 0.5);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--cyan);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.25);
}

.mock-graph-line {
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--accent), var(--violet));
  margin-top: 0.75rem;
  position: relative;
}

.mock-graph-line::after {
  content: "";
  position: absolute;
  right: 18%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  transform: translateY(-50%);
  box-shadow: 0 0 16px var(--cyan);
}

.stack-panel-copy {
  padding: 2.5rem 2rem;
  position: relative;
  display: grid;
  align-content: center;
  gap: 1rem;
}

.stack-num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}

.stack-panel-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.stack-panel-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 42ch;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.tag {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  font-size: 0.72rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

/* ── Nexora-style vertical testimonial wall ── */
.testimonials-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(300px, 34vw) minmax(0, 1fr);
  gap: 1.25rem;
  max-width: 1120px;
  margin: 2.75rem auto 0;
  height: clamp(420px, 58vh, 620px);
  align-items: stretch;
}

.testimonials-col {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.testimonials-track {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  animation: testimonial-up 32s linear infinite;
  will-change: transform;
}

.testimonials-col.is-down .testimonials-track {
  animation-name: testimonial-down;
}

@keyframes testimonial-up {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@keyframes testimonial-down {
  from { transform: translateY(-50%); }
  to { transform: translateY(0); }
}

.testimonials-center {
  display: grid;
  place-items: center;
  position: relative;
}

.center-graphic {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  position: relative;
  border-radius: 50%;
}

.center-graphic::before {
  content: "";
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.22), transparent 68%);
  animation: center-pulse 4s ease-in-out infinite;
}

.center-graphic svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.center-node {
  animation: center-pulse 3s ease-in-out infinite;
}

.center-beam {
  stroke-dasharray: 6 10;
  animation: beam-flow 2.4s linear infinite;
}

@keyframes center-pulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes beam-flow {
  to { stroke-dashoffset: -32; }
}

.t-card {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--window-gradient);
  backdrop-filter: blur(8px);
  padding: 1rem 1.05rem;
  display: grid;
  gap: 0.65rem;
}

.testimonial-grid .t-card:nth-child(3n + 1),
.testimonial-track .t-card:nth-child(3n + 1) { background: var(--window-gradient-green); }
.testimonial-grid .t-card:nth-child(3n + 2),
.testimonial-track .t-card:nth-child(3n + 2) { background: var(--window-gradient); }
.testimonial-grid .t-card:nth-child(3n),
.testimonial-track .t-card:nth-child(3n) { background: var(--window-gradient-cyan); }

.t-stars {
  color: var(--cyan);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.t-quote {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--ink);
}

.t-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.t-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.t-author strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
}

.t-author span {
  font-size: 0.68rem;
  color: var(--muted);
}

/* ── Trial section (matches FAQ split layout) ── */
.trial-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: start;
}

.trial-intro {
  position: sticky;
  top: 6rem;
}

.trial-pill {
  margin: 0 0 1.25rem;
  display: inline-flex;
}

.trial-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 1rem;
  text-align: left;
}

.trial-intro-lede {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
  max-width: 38ch;
}

@media (max-width: 768px) {
  .trial-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .trial-intro {
    position: static;
    text-align: center;
  }

  .trial-intro h2 {
    text-align: center;
  }

  .trial-intro-lede {
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
  }

  .trial-pill {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.1em;
    white-space: normal;
  }
}

.trial-panel {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--window-gradient-cyan);
  padding: 1.35rem 1.4rem;
  display: grid;
  gap: 1.15rem;
}

.trial-panel-block h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.trial-panel-block p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

.trial-panel-divider {
  height: 1px;
  background: var(--line);
}

.trial-panel-cta {
  display: flex;
  justify-content: flex-start;
  padding-top: 0.25rem;
}

.trial-panel-cta .btn {
  width: fit-content;
}

.trial-points {
  margin: 0;
  padding: 0 0 0 1rem;
  list-style: none;
  display: grid;
  gap: 0.5rem;
  border-left: 2px solid var(--accent);
}

.trial-points li {
  font-size: 0.84rem;
  color: var(--muted);
  padding-left: 0.35rem;
  position: relative;
  line-height: 1.5;
}

.trial-points li::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  transform: translateX(-5px);
}

/* Legacy wrapper — pools page */
.trial-promo {
  padding: var(--section-space) 1.5rem;
}

.trial-promo-inner {
  max-width: var(--site-max);
  margin: 0 auto;
}

/* ── Pricing options ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.pricing-card {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--window-gradient);
  padding: 1.75rem 1.5rem;
  display: grid;
  gap: 1rem;
  align-content: start;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card.highlight {
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.12);
  background: linear-gradient(155deg, rgba(74, 222, 128, 0.14) 0%, rgba(45, 111, 255, 0.12) 35%, rgba(8, 14, 30, 0.95) 100%);
}

.pricing-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.pricing-note {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2.75rem;
}

.pricing-badge {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  font-size: 0.75rem;
  color: var(--muted);
}

.pricing-card .pricing-vat-note {
  margin: -0.35rem 0 0.15rem;
  font-size: 0.72rem;
  color: var(--muted);
}

/* ── FAQ (stacked layout) ── */
.faq-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto;
}

.faq-intro {
  position: static;
  text-align: center;
}

.faq-kicker {
  color: var(--cyan);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  font-weight: 500;
}

.faq-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 1rem;
}

.faq-intro-lede {
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
  max-width: 52ch;
}

.faq-panel {
  width: 100%;
}

.faq-help-card--stacked {
  margin-top: 0.5rem;
}

.help-section {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

.help-section .faq-help-card {
  max-width: 720px;
  margin: 0 auto;
}

.faq-help-card {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--window-gradient-violet);
  backdrop-filter: blur(8px);
  padding: 1.5rem 1.5rem 1.65rem;
  display: grid;
  gap: 0.6rem;
}

.faq-help-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.faq-help-card p {
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 42ch;
}

.faq-help-card--stacked {
  text-align: left;
}

.faq-help-card .btn {
  margin-top: 1rem;
  width: fit-content;
}

.faq-help-contacts {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.faq-help-email {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.faq-help-phone {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  flex-shrink: 0;
  margin-left: auto;
}

.faq-help-phone-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.faq-help-phone-link:hover .faq-help-phone-value {
  color: var(--accent-soft);
}

.faq-help-phone-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(148, 168, 201, 0.5);
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.02);
}

.faq-help-phone-icon svg {
  width: 16px;
  height: 16px;
}

.faq-help-phone-body {
  display: grid;
  gap: 0.1rem;
}

.faq-help-phone-label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.faq-help-phone-value {
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.faq-help-messengers {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.faq-help-messenger {
  display: grid;
  place-items: center;
  line-height: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-help-messenger:hover {
  transform: scale(1.08);
  opacity: 0.9;
}

.faq-help-messenger svg {
  width: 22px;
  height: 22px;
  display: block;
}

@media (max-width: 640px) {
  .faq-help-contacts {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-help-phone {
    justify-content: flex-start;
    margin-left: 0;
  }
}

.faq-help-email:hover .faq-help-email-value {
  color: var(--accent-soft);
}

.faq-help-email-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(148, 168, 201, 0.5);
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-help-email:hover .faq-help-email-icon {
  border-color: rgba(159, 192, 255, 0.55);
  background: rgba(45, 111, 255, 0.08);
}

.faq-help-email-icon svg {
  width: 17px;
  height: 17px;
}

.faq-help-email-body {
  display: grid;
  gap: 0.1rem;
}

.faq-help-email-label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.faq-help-email-value {
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.faq-panel {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--window-gradient);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item.is-open {
  background: rgba(45, 111, 255, 0.06);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-q:hover {
  color: #fff;
}

.faq-chevron {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.faq-chevron svg {
  width: 14px;
  height: 14px;
  color: var(--muted);
  transition: color 0.25s ease;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
  border-color: rgba(34, 211, 238, 0.4);
}

.faq-item.is-open .faq-chevron svg {
  color: var(--cyan);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a-inner {
  margin: 0 1.35rem 1.2rem 1.35rem;
  padding: 0.15rem 0 0.15rem 1rem;
  border-left: 2px solid var(--accent);
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.88rem;
}

.faq-item.is-open .faq-a {
  max-height: 280px;
}

@media (max-width: 640px) {
  .nav-inner {
    flex-wrap: nowrap;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
  }

  .hero {
    padding-top: 6.5rem;
  }

  .dashboard-frame {
    width: 100%;
    border-radius: 14px;
  }

  .dashboard-section .dash-hero-band .detail-list {
    grid-template-columns: 1fr;
  }

  .dash-stats,
  .dash-stats--mock,
  .dash-panels,
  .feature-grid,
  .cards,
  .brand-grid,
  .testimonial-grid,
  .strip-grid,
  .club-steps,
  .revenue-split,
  .pricing-grid,
  .footer-inner {
    grid-template-columns: 1fr !important;
  }

  .footer-col {
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
    padding-left: 0;
  }

  .footer-brand {
    border-bottom: none;
    padding-bottom: 0;
  }

  .section {
    padding: 3.5rem var(--site-pad-x);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-track {
    animation: none;
  }
}

/* ── Pools page ── */
.club-hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.club-hero-grid {
  position: relative;
  z-index: 2;
  max-width: var(--site-max);
  width: 100%;
  margin: 0 auto;
  padding-left: var(--site-pad-x);
  padding-right: var(--site-pad-x);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.club-hero-grid .dashboard-frame {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 980px) {
  .club-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .club-hero .pill {
    display: flex;
    width: 100%;
    justify-content: center;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.1em;
    white-space: normal;
  }
}

.club-hero .club-steps {
  max-width: var(--site-max);
  width: 100%;
  margin: 2.5rem auto 0;
  padding-left: var(--site-pad-x);
  padding-right: var(--site-pad-x);
}

.club-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin: 0 0 1rem;
  line-height: 1.08;
}

.club-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.club-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--window-gradient);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.club-steps .club-step:nth-child(4n + 1) { background: var(--window-gradient-green); }
.club-steps .club-step:nth-child(4n + 2) { background: var(--window-gradient); }
.club-steps .club-step:nth-child(4n + 3) { background: var(--window-gradient-cyan); }
.club-steps .club-step:nth-child(4n) { background: var(--window-gradient-violet); }

.club-step-num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.club-step h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.club-step p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.revenue-split {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.split-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--window-gradient-cyan);
}

.revenue-split .split-card:nth-child(1) { background: var(--window-gradient-green); }
.revenue-split .split-card:nth-child(2) { background: var(--window-gradient); }
.revenue-split .split-card:nth-child(3) { background: var(--window-gradient-violet); }

.split-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cyan);
  margin-bottom: 0.35rem;
}

.split-card span {
  font-size: 0.82rem;
  color: var(--muted);
}

.anchor-target {
  scroll-margin-top: 5rem;
}

.api-docs-cta {
  padding-top: 0;
}

.api-docs-cta-inner {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(45, 111, 255, 0.35);
  background: linear-gradient(155deg, rgba(74, 222, 128, 0.12) 0%, rgba(45, 111, 255, 0.14) 35%, rgba(8, 14, 30, 0.92) 100%);
}

.api-docs-cta-inner h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.api-docs-cta-lede, .api-docs-cta {
  margin: 0 auto 1.5rem;  
  max-width:720px;
  color: var(--muted);
  line-height: 1.6;
}

.api-docs-cta-lede, .api-docs-cta {
  margin: 0 auto 1.5rem;  
  max-width:940px;
}

.api-docs-cta-url {
  margin: 1.25rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.api-docs-cta-url a {
  color: var(--accent-soft);
  word-break: break-all;
}

.api-advantage-list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
  max-width: 640px;
}

.api-advantage-list li {
  padding: 1rem 1.15rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--window-gradient);
  color: #c8d4ea;
  line-height: 1.55;
  font-size: 0.92rem;
  text-align: left;
}

.api-advantage-list li:nth-child(3n + 1) { background: var(--window-gradient-green); }
.api-advantage-list li:nth-child(3n + 2) { background: var(--window-gradient); }
.api-advantage-list li:nth-child(3n) { background: var(--window-gradient-cyan); }

.api-advantage-list strong {
  color: var(--ink);
}

/* API overview page — centered layout */
.api-page {
  width: 100%;
  margin: 0;
  padding: 0 0 4rem;
}

.api-page .page-head {
  text-align: center;
}

.api-page .page-head h1 {
  margin-left: auto;
  margin-right: auto;
}

.api-page .page-head .lede {
  margin-left: auto;
  margin-right: auto;
}

.api-page .page-head .hero-actions {
  justify-content: center;
}

.api-page .section-head {
  margin-bottom: 2rem;
  text-align: center;
}

.api-page .section-head h2 {
  margin-left: auto;
  margin-right: auto;
}

.api-page .feature-grid {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.api-page .api-docs-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

/* Mobile app page */
.mobile-page {
  width: 100%;
  margin: 0;
  padding: 0 0 4rem;
}

.mobile-page .page-head {
  text-align: center;
}

.mobile-page > .section:first-child {
  padding-top: 1.75rem;
}

.mobile-page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 auto 1rem;
  max-width: 22ch;
  line-height: 1.12;
}

.mobile-page-lede {
  max-width: 62ch;
  margin: 0 auto 2rem;
}

.mobile-page-hero-actions {
  justify-content: center;
  flex-wrap: wrap;
}

.mobile-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.mobile-stat p {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.mobile-product-stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  margin: 0 auto 0.5rem;
  padding: 0;
  list-style: none;
  max-width: 52rem;
}

.mobile-product-stack li {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  background: rgba(255, 255, 255, 0.03);
}

.mobile-product-stack__core {
  color: var(--ink);
  font-weight: 600;
}

.mobile-product-stack__note {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.72rem;
  color: var(--muted);
}

/* ── Showcase stage (reusable on mobile + index) ── */
.showcase-stage {
  position: relative;
  margin-top: 2.5rem;
  padding: 0 clamp(0.25rem, 2vw, 1rem) 0.5rem;
}

.hero-aurora-bridge {
  position: relative;
  height: clamp(130px, 20vh, 210px);
  width: min(1000px, 92vw);
  margin: 0.75rem auto 0;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}

.hero-aurora-bridge .hero-aurora__beams {
  width: 100%;
  height: 88%;
}

.hero-aurora-bridge .hero-aurora__horizon {
  bottom: 18%;
}

.hero--showcase > .hero-aurora--sky {
  bottom: auto;
  height: 62%;
}

.hero--showcase .hero-aurora-bridge + .showcase-stage--hero {
  margin-top: -0.75rem;
  padding-top: 0;
}

.hero--showcase .showcase-stage--hero .showcase-carousel__viewport {
  padding-top: 0.35rem;
}

.showcase-stage--hero {
  margin-top: 0.75rem;
  padding: 0 clamp(0.75rem, 3vw, 1.5rem) 0;
  z-index: 2;
  position: relative;
  overflow-x: clip;
  max-width: 100%;
}

.hero--showcase {
  padding: 7rem 1.5rem 0.5rem;
  min-height: auto;
}

.hero--showcase .hero-inner {
  max-width: 920px;
  margin-bottom: 0.25rem;
}

.hero--showcase .hero-inner h1:first-of-type {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.hero--showcase .hero-inner h1 + h1 {
  margin-bottom: 1.1rem;
}

.hero--showcase .hero-lede {
  max-width: 58ch;
}

.index-mobile-cta {
  display: none;
}

.hero--mobile-page .hero-inner .kicker {
  margin-bottom: 1.25rem;
}

.hero--mobile-page .hero-aurora-bridge + .showcase-stage--hero {
  margin-top: -0.75rem;
  padding-top: 0;
}

.hero--mobile-page .showcase-stage--hero .showcase-carousel__viewport {
  padding-top: 0.35rem;
}

.showcase-stage--hero .showcase-carousel__edge--left {
  background: linear-gradient(90deg, rgba(3, 7, 18, 0.95) 0%, rgba(3, 7, 18, 0.5) 40%, transparent 100%);
}

.showcase-stage--hero .showcase-carousel__edge--right {
  background: linear-gradient(270deg, rgba(3, 7, 18, 0.95) 0%, rgba(3, 7, 18, 0.5) 40%, transparent 100%);
}

.showcase-stage--hero .showcase-carousel__footer {
  border-top: none;
  background: transparent;
  padding-bottom: 1.25rem;
}

.showcase-stage--hero .showcase-carousel__viewport {
  min-height: auto;
  padding: 0.5rem 0 1rem;
}

.showcase-carousel__slide--hero,
.showcase-carousel__slide--cta {
  padding: 0 1%;
}

.showcase-carousel__slide--dashboard,
.showcase-carousel__slide--pair {
  padding: 0 1%;
}

.showcase-carousel__slide--hero .showcase-hero-slide,
.showcase-carousel__slide--cta .showcase-hero-slide {
  width: 100%;
  max-width: 100%;
}

.showcase-carousel__slide--cta .showcase-hero-slide {
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
  min-height: clamp(340px, 44vw, 520px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-carousel__slide--dashboard .dashboard-frame {
  width: 100%;
  max-width: none;
  margin: 0;
}

.showcase-phone-pair {
  width: 100%;
  max-width: min(720px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.65rem, 2vw, 1.1rem);
}

.showcase-phone-pair .showcase-phone {
  flex: 1 1 0;
  min-width: 0;
  max-width: 300px;
}

.showcase-carousel__slide--dashboard .dash-stats--mock {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.showcase-carousel__slide--dashboard .dashboard-body {
  min-height: 0;
}

.showcase-carousel__slide--dashboard .dash-hero-band .detail-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 0.85rem;
}

.showcase-carousel__slide--dashboard .dash-hero-band .detail-list dd {
  font-size: 0.82rem;
}

.showcase-carousel__slide--dashboard .dash-hero-band .panel-head {
  margin-bottom: 0.85rem;
}

@media (max-width: 900px) {
  .showcase-carousel__slide--dashboard .dash-stats--mock {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .showcase-carousel__slide--dashboard .dash-hero-band {
    grid-template-columns: 1fr;
  }
}

.showcase-hero-slide {
  position: relative;
  text-align: center;
  padding: 0.75rem 0.5rem 1rem;
}

.showcase-hero-slide h1,
.showcase-hero-slide h2,
.showcase-hero-slide .mobile-page-title,
.showcase-hero-slide .hero-lede,
.showcase-hero-slide .mobile-page-lede,
.showcase-hero-slide .cta-lede {
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}

.showcase-hero-slide .mobile-page-title {
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}

.showcase-hero-slide .mobile-page-lede {
  font-size: 0.95rem;
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}

.showcase-hero-slide .mobile-product-stack {
  margin-bottom: 1.25rem;
}

.showcase-hero-slide .hero-actions {
  justify-content: center;
  flex-wrap: wrap;
}

.showcase-hero-slide--index h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 auto 1rem;
  max-width: 28ch;
}

.showcase-hero-slide--index .hero-lede {
  max-width: 58ch;
  margin: 0 auto 1.75rem;
}

.showcase-hero-slide--cta .cta-kicker {
  color: var(--cyan);
  font-size: clamp(0.72rem, 1.4vw, 0.82rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  font-weight: 500;
}

.showcase-hero-slide--cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.8vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 auto 1.25rem;
  max-width: 36ch;
}

.showcase-hero-slide--cta .cta-lede {
  margin: 0 auto 2rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.65;
}

.showcase-hero-slide--cta .hero-actions {
  margin-bottom: 1.75rem;
  gap: 0.85rem;
}

.showcase-hero-slide--cta .cta-trust {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}

.showcase-hero-slide--cta .cta-trust li {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 1.35rem;
  position: relative;
}

.showcase-hero-slide--cta .cta-trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.showcase-stage__aurora {
  position: absolute;
  left: 50%;
  bottom: 42%;
  transform: translateX(-50%);
  width: min(920px, 96%);
  height: min(320px, 42vw);
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.showcase-stage__beams {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 14% 100% at 22% 100%, rgba(52, 211, 153, 0.75), transparent 68%),
    radial-gradient(ellipse 10% 95% at 36% 100%, rgba(74, 222, 128, 0.5), transparent 66%),
    radial-gradient(ellipse 18% 100% at 50% 100%, rgba(34, 211, 238, 0.88), transparent 62%),
    radial-gradient(ellipse 14% 98% at 64% 100%, rgba(59, 130, 246, 0.72), transparent 66%),
    radial-gradient(ellipse 11% 92% at 78% 100%, rgba(45, 111, 255, 0.62), transparent 64%);
  filter: blur(12px);
  animation: aurora-pulse 8s ease-in-out infinite alternate;
}

.showcase-stage__horizon {
  position: absolute;
  left: -10%;
  width: 120%;
  bottom: 18%;
  height: 2px;
  border-radius: 50%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(52, 211, 153, 0.35) 18%,
    rgba(34, 211, 238, 0.85) 44%,
    rgba(96, 165, 250, 1) 50%,
    rgba(45, 111, 255, 0.65) 66%,
    transparent 100%
  );
  box-shadow:
    0 0 40px 16px rgba(34, 211, 238, 0.28),
    0 -60px 100px 40px rgba(45, 111, 255, 0.16);
}

.showcase-frame {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(
    155deg,
    rgba(74, 222, 128, 0.09) 0%,
    rgba(45, 111, 255, 0.11) 24%,
    rgba(12, 24, 52, 0.94) 52%,
    rgba(5, 10, 24, 0.98) 100%
  );
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 70px rgba(45, 111, 255, 0.14);
  overflow: hidden;
}

.showcase-frame__chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
}

.showcase-frame__url {
  margin-left: 0.5rem;
  font-size: 0.72rem;
  color: var(--muted);
  font-family: ui-monospace, "Cascadia Code", monospace;
  letter-spacing: 0.02em;
}

.showcase-frame__badge {
  margin-left: auto;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  background: rgba(34, 211, 238, 0.08);
}

.showcase-carousel {
  position: relative;
  padding: 0.5rem 0 0;
}

.showcase-carousel__viewport {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 0 2.75rem;
  min-height: 420px;
  cursor: grab;
  user-select: none;
  container-type: inline-size;
}

.showcase-carousel__viewport.is-dragging {
  cursor: grabbing;
}

.showcase-carousel__track {
  display: flex;
  align-items: center;
  gap: 0;
  will-change: transform;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase-carousel__track.is-instant {
  transition: none;
}

.showcase-carousel__slide {
  flex: 0 0 var(--showcase-slot, 90cqw);
  width: var(--showcase-slot, 90cqw);
  max-width: var(--showcase-slot, 90cqw);
  padding: 0 1%;
  box-sizing: border-box;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s ease;
  opacity: 0.22;
  transform: scale(0.76);
  filter: blur(2px) brightness(0.65);
  pointer-events: none;
}

.showcase-carousel__slide.is-adjacent {
  opacity: 0.58;
  transform: scale(0.92);
  filter: blur(0.5px) brightness(0.85);
  pointer-events: auto;
}

.showcase-carousel__slide.is-active {
  opacity: 1;
  transform: scale(1);
  filter: none;
  pointer-events: auto;
  z-index: 3;
}

.showcase-carousel__slide.is-far {
  opacity: 0;
  transform: scale(0.68);
  filter: blur(3px) brightness(0.5);
}

.showcase-carousel__edge {
  display: none;
}

.showcase-phone {
  width: 100%;
  transition: filter 0.85s ease;
}

.showcase-carousel__slide.is-active .showcase-phone {
  filter:
    drop-shadow(0 0 32px rgba(34, 211, 238, 0.28))
    drop-shadow(0 28px 56px rgba(0, 0, 0, 0.55));
}

.showcase-carousel__slide.is-adjacent .showcase-phone {
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.35));
}

.showcase-phone__bezel {
  position: relative;
  border-radius: 2.35rem;
  padding: 0.5rem;
  background: linear-gradient(155deg, #3a3f4b 0%, #1a1d24 45%, #0d0f14 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 0, 0, 0.5);
}

.showcase-phone[data-phone-theme="light"] .showcase-phone__bezel {
  background: linear-gradient(155deg, #f0f2f6 0%, #d8dce4 45%, #b8bec8 100%);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.06);
}

.showcase-phone__notch {
  position: absolute;
  top: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 5px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
  pointer-events: none;
}

.showcase-phone[data-phone-theme="light"] .showcase-phone__notch {
  background: rgba(0, 0, 0, 0.16);
}

.showcase-phone__screen {
  border-radius: 1.8rem;
  overflow: hidden;
  background: #000;
  line-height: 0;
}

.showcase-phone__screen img {
  display: block;
  width: 100%;
  height: auto;
}

.showcase-phone__home {
  width: 32%;
  height: 4px;
  margin: 0.4rem auto 0.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.showcase-phone[data-phone-theme="light"] .showcase-phone__home {
  background: rgba(0, 0, 0, 0.2);
}

.showcase-carousel__footer {
  padding: 0 1.25rem 1.75rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
}

.showcase-carousel__caption {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding-top: 1.25rem;
}

.showcase-carousel__caption strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
}

.showcase-carousel__caption span:not(.showcase-carousel__theme) {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 42ch;
  margin: 0 auto;
}

.showcase-carousel__theme {
  display: inline-block;
  margin-top: 0.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}

.showcase-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.showcase-carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.showcase-carousel__dot.is-active {
  width: 1.65rem;
  background: linear-gradient(90deg, var(--cyan), var(--accent));
}

.showcase-carousel__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}

.showcase-carousel__btn {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  border: 1px solid rgba(45, 111, 255, 0.35);
  background: rgba(45, 111, 255, 0.08);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.showcase-carousel__btn:hover {
  border-color: rgba(34, 211, 238, 0.55);
  background: rgba(34, 211, 238, 0.12);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.15);
}

.showcase-carousel__btn:active {
  transform: scale(0.94);
}

.showcase-carousel__btn--pause.is-paused .icon-pause {
  display: none;
}

.showcase-carousel__btn--pause.is-paused .icon-play {
  display: block !important;
}

.showcase-carousel__btn--pause:not(.is-paused) .icon-play {
  display: none;
}

.showcase-carousel__counter {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.mobile-phases {
  margin-top: 1.75rem;
}

.mobile-effort-list {
  max-width: 720px;
  margin: 0 auto;
}

.mobile-store-grid {
  max-width: 900px;
  margin: 0 auto;
}

.mobile-cta-inner .store-badges--cta {
  justify-content: center;
  margin: 1.5rem 0 1rem;
}

.store-badges--cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 1024px) {
  .mobile-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .showcase-carousel__slide--hero .showcase-hero-slide,
  .showcase-carousel__slide--cta .showcase-hero-slide {
    max-width: 100%;
  }

  .showcase-hero-slide--index h1 {
    max-width: none;
  }

  .showcase-hero-slide--cta h2 {
    max-width: none;
  }

  .showcase-carousel__slide--pair,
  .showcase-carousel__slide--dashboard,
  .showcase-carousel__slide--cta {
    padding: 0;
  }

  .showcase-carousel__slide {
    padding: 0;
  }

  .showcase-carousel__viewport {
    min-height: 0;
    padding: 0.25rem 0 1rem;
  }

  .showcase-stage--hero .showcase-carousel__viewport,
  .hero--showcase .showcase-stage--hero .showcase-carousel__viewport {
    min-height: 0;
  }

  .showcase-phone-pair {
    width: 100%;
    max-width: 100%;
    gap: 0.45rem;
  }

  .showcase-phone-pair .showcase-phone {
    max-width: none;
    flex: 1 1 0;
    min-width: 0;
  }

  .showcase-carousel__slide.is-adjacent {
    transform: scale(0.94);
    opacity: 0.75;
  }

  .showcase-carousel__slide--dashboard .dashboard-frame {
    width: 100%;
  }

  /* Index homepage: carousel hidden on mobile; CTA shown via .index-mobile-cta */
  .showcase-stage--hero:has(.showcase-carousel--index) {
    display: none;
  }

  .hero--showcase:has(.index-mobile-cta) {
    padding-bottom: 2rem;
  }

  .hero-stage:has(.index-mobile-cta) {
    padding-bottom: 1rem;
  }

  .index-mobile-cta {
    display: block;
    position: relative;
    z-index: 2;
    padding: 0.5rem var(--site-pad-x) 1.5rem;
  }

  .index-mobile-cta .showcase-hero-slide--cta {
    min-height: 0;
    padding: 1.25rem 0 0.5rem;
  }
}

@media (max-width: 640px) {
  .mobile-stats {
    grid-template-columns: 1fr;
  }

  .showcase-carousel__viewport {
    padding: 0.25rem 0 1rem;
  }

  .showcase-frame__url {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-carousel__track,
  .showcase-carousel__slide,
  .showcase-stage__beams {
    transition: none !important;
    animation: none !important;
  }
}
