/* ============================================================
   AICA — Shared stylesheet
   v6 visual language: aurora glows, glowing product surfaces,
   pulse dots, scanning bars. Single sans, two weights, no italic.
   ============================================================ */

:root {
  --bg: #08080C;
  --surface: #100E18;
  --surface-2: #16131F;
  --hairline: rgba(255,255,255,0.06);
  --hairline-strong: rgba(255,255,255,0.10);
  --border-accent: rgba(168,85,247,0.18);
  --text: #FFFFFF;
  --muted: #A1A1AA;
  --dim: #71717A;
  --accent: #C084FC;
  --accent-solid: #A855F7;
  --accent-grad: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
  --live: #22D3A5;
  --amber: #F59E0B;
  --max-w: 1600px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(168,85,247,0.08) 0%, transparent 40%),
    radial-gradient(circle at 100% 30%, rgba(236,72,153,0.05) 0%, transparent 30%),
    radial-gradient(circle at 0% 60%, rgba(99,102,241,0.06) 0%, transparent 30%),
    radial-gradient(circle at rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 28px 28px;
  background-attachment: fixed, fixed, fixed, fixed;
}

/* Faint dot grid texture overlay — adds atmosphere without noise */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.018) 1px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Slowly breathing ambient glow that drifts across the page */
body::after {
  content: "";
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(168,85,247,0.10) 0%, rgba(236,72,153,0.04) 30%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: ambientDrift 24s ease-in-out infinite alternate;
}
@keyframes ambientDrift {
  0%   { transform: translate(-50%, 0) scale(1); opacity: 0.9; }
  50%  { transform: translate(-30%, -60px) scale(1.05); opacity: 1; }
  100% { transform: translate(-70%, 40px) scale(0.95); opacity: 0.85; }
}
@media (prefers-reduced-motion: reduce) {
  body::after { animation: none; }
}

/* Make sure content sits above the ambient layer */
nav, main, footer { position: relative; z-index: 1; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.scroll-fade {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}
.scroll-fade.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .scroll-fade { opacity: 1; transform: none; transition: none; }
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 56px;
  position: relative;
}
.container.narrow { max-width: 1080px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 500;
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #C084FC 0%, #F472B6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.h1 {
  font-size: clamp(48px, 6.4vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  font-weight: 500;
  color: var(--text);
}
.h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.024em;
  font-weight: 500;
  color: var(--text);
}
.h3 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.012em;
  font-weight: 500;
  color: var(--text);
}
.lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 60ch;
  font-weight: 400;
}
.body-sm { font-size: 14px; line-height: 1.6; color: var(--muted); }

/* ============================================================
   PULSING / LIVE INDICATORS
   ============================================================ */
.live-pip {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 8px var(--live);
  animation: pulse 1.6s ease-in-out infinite;
}
.pulse-violet {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-solid);
  box-shadow: 0 0 12px var(--accent-solid);
  animation: pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.live-mini {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 8px var(--live);
  animation: pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.5;} }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent-grad);
  color: white;
  box-shadow: 0 0 30px rgba(168,85,247,0.35);
  position: relative;
  animation: ctaGlow 3.2s ease-in-out infinite;
}
.btn-primary:hover { box-shadow: 0 0 50px rgba(168,85,247,0.6); animation: none; }
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(168,85,247,0.35); }
  50%      { box-shadow: 0 0 45px rgba(236,72,153,0.4); }
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary { animation: none; }
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: white;
  border: 0.5px solid rgba(255,255,255,0.12);
}
.btn-link {
  color: white;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.75;
  border-bottom: 0.5px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
}
.btn-link:hover { opacity: 1; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8,8,12,0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--hairline);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: inline-flex; align-items: center; height: 28px; }
.nav-logo img { height: 22px; width: auto; display: block; }
.nav-links { display: flex; gap: 8px; font-size: 13px; color: var(--muted); align-items: center; }
.nav-links > a { padding: 8px 14px; border-radius: 8px; transition: color 0.2s, background 0.2s; }
.nav-links > a:hover { color: white; background: rgba(168,85,247,0.06); }

/* Dropdown nav items */
.nav-item {
  position: relative;
}
.nav-trigger {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--muted);
  cursor: default;
  background: transparent; border: none; font-family: inherit;
  transition: color 0.2s, background 0.2s;
}
.nav-trigger::after {
  content: '';
  width: 7px; height: 7px;
  border-right: 1.2px solid currentColor;
  border-bottom: 1.2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  margin-left: 2px;
  transition: transform 0.2s;
}
.nav-item:hover .nav-trigger,
.nav-item:focus-within .nav-trigger { color: white; background: rgba(168,85,247,0.06); }
.nav-item:hover .nav-trigger::after,
.nav-item:focus-within .nav-trigger::after { transform: rotate(225deg) translate(-1px, -1px); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 540px;
  background: rgba(14,12,24,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 0.5px solid var(--border-accent);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.50), 0 0 30px rgba(168,85,247,0.10);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  z-index: 100;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -8px; left: 0; right: 0; height: 8px;
}
.nav-dropdown-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.nav-dropdown-link {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  color: white;
  transition: background 0.2s;
}
.nav-dropdown-link:hover { background: rgba(168,85,247,0.10); color: white; }
.nav-dropdown-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(168,85,247,0.10);
  border: 0.5px solid rgba(168,85,247,0.30);
  flex-shrink: 0;
  font-size: 11px; font-weight: 500;
  color: #C084FC;
  letter-spacing: 0.04em;
}
.nav-dropdown-text { display: flex; flex-direction: column; gap: 3px; }
.nav-dropdown-title { font-size: 13px; font-weight: 500; color: white; }
.nav-dropdown-desc { font-size: 11px; color: var(--muted); line-height: 1.45; }
.nav-dropdown-foot {
  margin-top: 10px; padding: 12px 14px;
  border-top: 0.5px solid var(--hairline-strong);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
}
.nav-dropdown-foot a {
  color: var(--accent); font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.nav-dropdown-foot a:hover { gap: 10px; color: white; }
.nav-dropdown-foot-meta { color: var(--dim); font-size: 11px; letter-spacing: 0.04em; }
.nav-actions { display: flex; gap: 14px; align-items: center; }
.nav-login { font-size: 13px; color: var(--muted); }
.nav-login:hover { color: white; }
.nav-cta {
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 999px;
  background: white;
  color: var(--bg);
  font-weight: 500;
}

/* ============================================================
   HERO (homepage) — split layout, fills viewport above the fold
   ============================================================ */
.hero {
  position: relative; padding: 128px 0 96px;
  overflow: hidden; text-align: center;
  background: #08080C;
}
/* Hero flowing light canvas — sits behind everything, low opacity so text reads */
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
/* On inner pages keep it as ambient lighting only — homepage stays the showpiece */
.sub-hero .hero-canvas { opacity: 0.28; }
.aurora-a {
  position: absolute; top: -250px; right: -150px;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(168,85,247,0.30) 0%, rgba(236,72,153,0.14) 30%, transparent 65%);
  filter: blur(60px); pointer-events: none; z-index: 1;
}
.aurora-b {
  position: absolute; top: 100px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(99,102,241,0.22) 0%, rgba(168,85,247,0.08) 35%, transparent 70%);
  filter: blur(60px); pointer-events: none; z-index: 1;
}
/* Subtle dot grid behind hero */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-centered {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.18em; font-weight: 500;
  background: linear-gradient(90deg, #C084FC 0%, #F472B6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 28px;
  padding: 8px 18px;
  border: 0.5px solid rgba(168,85,247,0.35);
  border-radius: 999px;
  -webkit-text-fill-color: initial; color: #C084FC;
  background: rgba(168,85,247,0.06);
  box-shadow: 0 0 24px rgba(168,85,247,0.18), inset 0 0 0 0.5px rgba(255,255,255,0.04);
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22D3A5;
  box-shadow: 0 0 10px rgba(34,211,165,0.7);
}
.hero-h1-centered {
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.028em;
  font-weight: 500;
  margin: 0 auto 28px;
  max-width: none;
  text-align: center;
}
.hero-line1 { display: inline-block; white-space: nowrap; }
@media (max-width: 760px) {
  .hero-line1 { white-space: normal; }
}
.hero-sub-centered {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto 32px;
}
.hero-cta-centered { justify-content: center; gap: 22px; align-items: center; }
.hero-cta-secondary {
  font-size: 13px; color: white; font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 0.5px solid rgba(255,255,255,0.40);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.hero-cta-secondary::after { content: '→'; opacity: 0.6; transition: transform 0.2s; }
.hero-cta-secondary:hover { color: var(--accent); border-color: var(--accent); }
.hero-cta-secondary:hover::after { transform: translateX(3px); }
.hero-microcopy-centered {
  margin-top: 28px;
  font-size: 12px; color: var(--dim);
  letter-spacing: 0.06em;
}
/* Feature pill — Plug & play · Go live on day zero */
.hero-feature-row {
  margin: 28px 0 36px;
  display: flex;
  justify-content: center;
}
.hero-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 0.5px solid rgba(34,211,165,0.35);
  background: rgba(34,211,165,0.06);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text);
  font-weight: 500;
  box-shadow: 0 0 24px rgba(34,211,165,0.10);
}
.hero-feature-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22D3A5;
  box-shadow: 0 0 10px rgba(34,211,165,0.8);
  animation: pulse 1.6s ease-in-out infinite;
}
/* Stats strip below CTA */
.hero-stats {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 0.5px solid var(--hairline-strong);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 920px;
  margin-left: auto; margin-right: auto;
}
@media (max-width: 900px) { .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 480px; } }
@media (max-width: 480px) { .hero-stats { grid-template-columns: 1fr; } }
.hero-stat { text-align: center; }
.hero-stat-num {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.022em;
  color: white;
  font-feature-settings: "tnum";
  margin-bottom: 6px;
  background: linear-gradient(135deg, #ffffff 0%, #C084FC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-stat-lbl {
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.12em;
  font-weight: 500;
  line-height: 1.5;
}

/* Old grid (kept for safety, not used in new hero) */
.hero-grid {
  position: relative; z-index: 2;
  width: 100%;
  display: grid !important;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

/* Rotating accent word — cycles through audiences */
.rotating {
  display: block;
  position: relative;
  height: 1.18em;
  margin-top: 0.12em;
  overflow: hidden;
}
.rw-word {
  position: absolute;
  top: 0; left: 50%;
  background: linear-gradient(135deg, #C084FC 0%, #F472B6 60%, #FB923C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-50%) translateY(28px);
  animation: rwCycle 16s ease-in-out infinite;
  font-style: normal;
}
.rw-1 { animation-delay: 0s; }
.rw-2 { animation-delay: 4s; }
.rw-3 { animation-delay: 8s; }
.rw-4 { animation-delay: 12s; }
@keyframes rwCycle {
  0%      { opacity: 0; transform: translateX(-50%) translateY(28px); }
  3%, 22% { opacity: 1; transform: translateX(-50%) translateY(0); }
  25%     { opacity: 0; transform: translateX(-50%) translateY(-28px); }
  100%    { opacity: 0; transform: translateX(-50%) translateY(-28px); }
}
.hero-content { position: relative; }
.hero-h1 { margin-bottom: 32px; line-height: 1.18; }
.hero-sub { margin-bottom: 32px; max-width: 56ch; font-size: 16px; line-height: 1.7; }
.cta-row { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.hero-microcopy { margin-top: 24px; font-size: 12px; color: var(--dim); letter-spacing: 0.04em; }
@media (min-width: 1100px) {
  .hero-h1 { font-size: clamp(48px, 4.6vw, 68px); line-height: 1.18; }
}

/* ============================================================
   SHOWCASE FOLD — Magic Upload + Ask AICA, full-width section under hero
   ============================================================ */
.showcase-fold {
  padding: 32px 0 120px;
  position: relative;
  text-align: left;
}
/* Asymmetric grid — text + tabs on the left, big demo on the right */
.showcase-fold-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1100px) {
  .showcase-fold-grid { grid-template-columns: 1fr; gap: 48px; }
}
.showcase-fold-side { position: relative; max-width: 480px; }
.showcase-fold-eye {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.18em;
  background: linear-gradient(90deg, #C084FC 0%, #F472B6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 500;
  margin-bottom: 20px;
}
.showcase-fold-h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.024em;
  font-weight: 500;
  max-width: 14ch;
  margin: 0 0 18px;
  white-space: normal;
}
.showcase-fold-sub {
  font-size: 15px; line-height: 1.65;
  color: var(--muted);
  max-width: 50ch;
  margin: 0 0 36px;
}
/* Vertical tab cards — clickable rows that swap the demo on the right */
.sc-tablist {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 28px;
}
.sc-tab-card {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 12px;
  border: 0.5px solid var(--hairline-strong);
  background: rgba(255,255,255,0.015);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.sc-tab-card:hover {
  border-color: rgba(168,85,247,0.30);
  background: rgba(168,85,247,0.04);
}
.sc-tab-card.active {
  border-color: rgba(168,85,247,0.50);
  background: rgba(168,85,247,0.08);
  box-shadow: 0 0 30px rgba(168,85,247,0.14), inset 0 0 0 0.5px rgba(255,255,255,0.04);
}
/* Vertical accent bar on active card */
.sc-tab-card.active::before {
  content: '';
  position: absolute; left: 0; top: 14px; bottom: 14px;
  width: 2px;
  background: linear-gradient(180deg, #C084FC 0%, #F472B6 100%);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(168,85,247,0.6);
}
.sc-tab-card-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid var(--hairline-strong);
  font-size: 11px; font-weight: 500;
  color: var(--dim);
  font-feature-settings: "tnum";
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.sc-tab-card.active .sc-tab-card-num {
  background: rgba(168,85,247,0.18);
  color: white;
  border-color: rgba(168,85,247,0.50);
}
.sc-tab-card-text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.sc-tab-card-title {
  font-size: 15px; font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.005em;
  transition: color 0.25s;
}
.sc-tab-card.active .sc-tab-card-title { color: white; }
.sc-tab-card-desc {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.55;
}
.sc-tab-card.active .sc-tab-card-desc { color: var(--muted); }
.sc-tab-card-pip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px;
  flex-shrink: 0; align-self: center;
  opacity: 0.4; transition: opacity 0.25s;
}
.sc-tab-card.active .sc-tab-card-pip { opacity: 1; }
.sc-tab-card-pip .live-pip { animation: pulse 1.6s ease-in-out infinite; }

.sc-fold-cta { margin-top: 4px; }
.sc-fold-cta-link {
  font-size: 13px; color: white; font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 0.5px solid rgba(255,255,255,0.40);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.sc-fold-cta-link:hover { color: var(--accent); border-color: var(--accent); gap: 10px; }

.showcase-wrap { position: relative; max-width: none; margin: 0; }
.showcase-halo {
  position: absolute; top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 110%; height: 110%;
  background: radial-gradient(ellipse at center, rgba(168,85,247,0.20) 0%, transparent 55%);
  filter: blur(40px); pointer-events: none; z-index: 0;
}
.showcase {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, #0E0C18 100%);
  border: 0.5px solid var(--border-accent);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(168,85,247,0.14), inset 0 1px 0 rgba(255,255,255,0.04);
}
.showcase-tabs {
  display: flex; gap: 4px;
  padding: 14px 14px 0;
  border-bottom: 0.5px solid var(--hairline);
  background: rgba(8,8,12,0.4);
}
.sc-tab {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding: 14px 18px;
  border-bottom: 1px solid transparent;
  margin-bottom: -1px;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s;
}
.sc-tab:hover { color: var(--text); }
.sc-tab.active { color: var(--text); border-bottom-color: var(--accent-solid); }
.sc-tab .live-pip { animation: pulse 1.6s ease-in-out infinite; }
.sc-meta {
  margin-left: auto;
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.06em;
  padding: 14px 18px;
}
.showcase-body {
  position: relative;
  height: 640px;
  min-height: 640px;
  max-height: 640px;
  padding: 28px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.sc-panel { flex: 1; }
.showcase-body::before {
  content: ""; position: absolute; top: 0; left: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #A855F7, #EC4899, transparent);
  width: 30%;
  animation: scan 2.6s linear infinite;
}
@keyframes scan { 0%{transform:translateX(-100%);} 100%{transform:translateX(400%);} }
.sc-panel { display: none; animation: fadeIn 0.4s ease-out; }
.sc-panel.active { display: grid; }
@keyframes fadeIn { from{opacity:0;transform:translateY(4px);} to{opacity:1;transform:translateY(0);} }

/* MAGIC UPLOAD panel — video sized to match Ask AICA, sits inside showcase padding */
.magic-panel {
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  width: 100%;
  height: 100%;
}
/* Only display when active — overrides global .sc-panel { display: none } AND .sc-panel.active { display: grid } */
.sc-panel.magic-panel.active { display: flex; }
.sc-panel.magic-panel:not(.active) { display: none; }
.magic-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  flex: 1;
  background: #08050f;
  border-radius: 10px;
  overflow: hidden;
  border: 0.5px solid var(--hairline-strong);
}
.magic-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #08050f;
}
/* Inline magic upload video — used on platform/onboarding page */
.magic-video-card {
  position: relative;
  width: 100%;
  background: #08050f;
  border-radius: 14px;
  overflow: hidden;
  border: 0.5px solid var(--border-accent);
  box-shadow: 0 0 60px rgba(168,85,247,0.14), inset 0 1px 0 rgba(255,255,255,0.04);
  aspect-ratio: 4 / 3;
}
.magic-video-inline {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.magic-drop {
  background: rgba(255,255,255,0.02);
  border: 0.5px dashed rgba(168,85,247,0.4);
  border-radius: 12px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
}
.magic-drop-label {
  font-size: 11px; color: var(--accent);
  letter-spacing: 0.16em; font-weight: 500;
  margin-bottom: 4px;
  display: flex; align-items: center; gap: 8px;
}
.magic-file {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: var(--surface-2);
  border: 0.5px solid var(--hairline-strong);
  border-radius: 8px;
  font-size: 13px;
  animation: rowIn 0.5s ease-out backwards;
}
.magic-file:nth-child(2) { animation-delay: 0.1s; }
.magic-file:nth-child(3) { animation-delay: 0.25s; }
.magic-file:nth-child(4) { animation-delay: 0.4s; }
.magic-file:nth-child(5) { animation-delay: 0.55s; }
@keyframes rowIn { from{opacity:0;transform:translateY(6px);} to{opacity:1;transform:translateY(0);} }
.file-icon {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: var(--accent-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 500; color: white;
  flex-shrink: 0;
}
.file-meta { flex: 1; min-width: 0; }
.file-name { font-weight: 500; color: var(--text); }
.file-detail { font-size: 11px; color: var(--dim); margin-top: 2px; }
.file-status {
  font-size: 10px; color: var(--live);
  display: flex; align-items: center; gap: 5px;
  font-weight: 500; letter-spacing: 0.04em;
}

.magic-output {
  background: var(--bg);
  border: 0.5px solid var(--hairline-strong);
  border-radius: 12px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
}
.magic-output-h {
  font-size: 11px; color: var(--dim);
  letter-spacing: 0.12em; font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 0.5px solid var(--hairline);
}
.magic-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  padding: 6px 0;
}
.magic-row .lbl { color: var(--muted); }
.magic-row .val { color: var(--text); font-weight: 500; text-align: right; }
.magic-row .val .accent { color: var(--accent); }
.magic-summary {
  margin-top: auto;
  padding: 12px 14px;
  background: rgba(168,85,247,0.08);
  border: 0.5px solid var(--border-accent);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text);
  display: flex; align-items: center; gap: 8px;
}

/* ASK AICA panel */
.ask-panel {
  grid-template-columns: 1fr;
  gap: 16px;
  align-content: start;
  align-items: start;
}
.ask-thread {
  display: flex; flex-direction: column; gap: 12px;
  max-width: 880px; margin: 0 auto; width: 100%;
  align-self: start;
}
.ask-msg {
  display: flex; gap: 14px;
  opacity: 0;
  transform: translateY(8px);
}
/* Animation runs whenever the panel becomes active — re-triggers on every tab click */
.ask-panel.active .ask-msg {
  animation: rowIn 0.5s ease-out forwards;
}
/* Sequential reveal — each user Q is followed by a "typing" pause then the AI A */
.ask-panel.active .ask-msg:nth-child(1) { animation-delay: 0.10s; }
.ask-panel.active .ask-msg:nth-child(2) { animation-delay: 0.80s; }
.ask-panel.active .ask-msg:nth-child(3) { animation-delay: 3.40s; }
.ask-panel.active .ask-msg:nth-child(4) { animation-delay: 4.10s; }
.ask-panel.active .ask-msg:nth-child(5) { animation-delay: 6.70s; }
.ask-panel.active .ask-msg:nth-child(6) { animation-delay: 7.40s; }

/* AI bubble must be a positioning context for the absolutely-placed typing dots */
.ask-msg.aica .ask-bubble { position: relative; }

/* Typing indicator — three bouncing dots, absolutely positioned at the top-left
   of the bubble. Bubble is already sized to its (initially-hidden) content,
   so when the dots fade to content, NO layout shift happens. */
.ask-typing {
  position: absolute;
  top: 14px;
  left: 18px;
  display: inline-flex; align-items: center; gap: 5px;
  height: 18px;
  opacity: 1;
  pointer-events: none;
  z-index: 2;
}
.ask-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  animation: typingDot 1.2s ease-in-out infinite;
}
.ask-typing span:nth-child(2) { animation-delay: 0.18s; }
.ask-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes typingDot {
  0%, 100% { opacity: 0.30; transform: translateY(0); }
  50%      { opacity: 1.00; transform: translateY(-3px); }
}

/* Bubble content: takes full size in DOM from the start (so the bubble
   has its final dimensions immediately), but starts invisible. Content
   fades in once the typing pause ends. */
.ask-msg.aica .ask-content {
  opacity: 0;
}
.ask-panel.active .ask-msg.aica .ask-content {
  animation: aiContentReveal 0.45s ease-out forwards;
}
@keyframes aiContentReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Per-AI-message: typing dots crossfade out as content fades in — no size change */
.ask-panel.active .ask-msg:nth-child(2) .ask-typing { animation: typingFade 0.3s ease-out 1.50s forwards; }
.ask-panel.active .ask-msg:nth-child(2) .ask-content { animation-delay: 1.50s; }

.ask-panel.active .ask-msg:nth-child(4) .ask-typing { animation: typingFade 0.3s ease-out 4.80s forwards; }
.ask-panel.active .ask-msg:nth-child(4) .ask-content { animation-delay: 4.80s; }

.ask-panel.active .ask-msg:nth-child(6) .ask-typing { animation: typingFade 0.3s ease-out 8.10s forwards; }
.ask-panel.active .ask-msg:nth-child(6) .ask-content { animation-delay: 8.10s; }

@keyframes typingFade {
  to { opacity: 0; visibility: hidden; }
}

@media (prefers-reduced-motion: reduce) {
  .ask-typing { display: none; }
  .ask-msg.aica .ask-content { opacity: 1; transform: none; animation: none !important; }
  .ask-panel.active .ask-msg { animation: none; opacity: 1; transform: none; }
}
/* Allow the chat thread to scroll if it overflows */
.ask-panel { overflow-y: auto; }
.ask-panel::-webkit-scrollbar { width: 6px; }
.ask-panel::-webkit-scrollbar-thumb { background: rgba(168,85,247,0.20); border-radius: 3px; }
.ask-msg.them .ask-avatar { background: rgba(255,255,255,0.06); color: var(--muted); }
.ask-msg.aica .ask-avatar { background: var(--accent-grad); color: white; box-shadow: 0 0 12px rgba(168,85,247,0.4); }
.ask-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.ask-bubble {
  flex: 1;
  padding: 14px 18px;
  background: var(--surface-2);
  border: 0.5px solid var(--hairline-strong);
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
}
.ask-msg.aica .ask-bubble {
  background: rgba(168,85,247,0.06);
  border-color: var(--border-accent);
}
.ask-bubble b { font-weight: 500; }
.ask-bubble .accent { color: var(--accent); }
.ask-bubble-meta {
  font-size: 11px; color: var(--dim);
  margin-top: 8px;
  letter-spacing: 0.04em;
}
.ask-suggestions {
  display: flex; gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 0.5px solid var(--hairline);
  align-items: center;
}
.ask-suggestions-label {
  font-size: 11px; color: var(--dim);
  letter-spacing: 0.1em; font-weight: 500;
  margin-right: 8px;
}
.ask-chip {
  padding: 7px 12px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid var(--hairline-strong);
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.ask-chip:hover {
  color: var(--text);
  border-color: var(--border-accent);
  background: rgba(168,85,247,0.06);
}

/* Cashflow forecast chart inside an Ask AICA bubble */
.ask-chart {
  margin-top: 12px;
  padding: 14px 12px 10px;
  background: rgba(0,0,0,0.30);
  border: 0.5px solid var(--hairline);
  border-radius: 10px;
}
.ask-chart-bars {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
  height: 110px;
  align-items: end;
  padding-bottom: 6px;
  border-bottom: 0.5px dashed var(--hairline);
  position: relative;
}
/* Subtle vertical divider between historical and forecast halves */
.ask-chart-bars::before {
  content: '';
  position: absolute;
  left: calc(50% - 1px);
  top: 0; bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(168,85,247,0.35), transparent);
}
.ask-chart-bar {
  position: relative;
  height: var(--h);
  border-radius: 3px 3px 0 0;
  transition: filter 0.2s;
  animation: barRise 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.ask-chart-bar.past {
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.05) 100%);
}
.ask-chart-bar.fc {
  background: linear-gradient(180deg, #C084FC 0%, #A855F7 60%, #8B5CF6 100%);
  box-shadow: 0 0 8px rgba(168,85,247,0.30);
}
.ask-chart-bar.fc.tall {
  background: linear-gradient(180deg, #F472B6 0%, #C084FC 60%, #A855F7 100%);
  box-shadow: 0 0 14px rgba(236,72,153,0.40);
}
.ask-chart-bar:nth-child(1) { animation-delay: 0.05s; }
.ask-chart-bar:nth-child(2) { animation-delay: 0.10s; }
.ask-chart-bar:nth-child(3) { animation-delay: 0.15s; }
.ask-chart-bar:nth-child(4) { animation-delay: 0.20s; }
.ask-chart-bar:nth-child(5) { animation-delay: 0.30s; }
.ask-chart-bar:nth-child(6) { animation-delay: 0.36s; }
.ask-chart-bar:nth-child(7) { animation-delay: 0.42s; }
.ask-chart-bar:nth-child(8) { animation-delay: 0.48s; }
@keyframes barRise {
  from { height: 0; opacity: 0; }
  to   { height: var(--h); opacity: 1; }
}
.ask-chart-bar .bar-val {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: var(--dim);
  font-feature-settings: "tnum";
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  animation: fadeInVal 0.4s ease-out 0.6s forwards;
}
.ask-chart-bar.fc .bar-val { color: #C084FC; }
.ask-chart-bar.fc.tall .bar-val { color: #F472B6; font-weight: 500; }
@keyframes fadeInVal { to { opacity: 1; } }
.ask-chart-labels {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
  margin-top: 6px;
}
.ask-chart-labels span {
  font-size: 9px;
  color: var(--dim);
  text-align: center;
  letter-spacing: 0.04em;
  font-feature-settings: "tnum";
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  line-height: 1.2;
}
.ask-chart-labels span small {
  font-size: 8px;
  color: var(--dim);
  opacity: 0.7;
  letter-spacing: 0.06em;
}
.ask-chart-legend {
  display: flex; align-items: center; gap: 10px;
  margin-top: 10px;
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.04em;
}
.ask-chart-legend .legend-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 2px;
  margin-right: 4px;
  vertical-align: -1px;
}
.ask-chart-legend .legend-dot.historical {
  background: rgba(255,255,255,0.20);
}
.ask-chart-legend .legend-dot.forecast {
  background: linear-gradient(180deg, #C084FC, #A855F7);
}
.ask-chart-legend .legend-spacer { flex: 1; }
.ask-chart-legend .legend-meta {
  font-size: 9px;
  color: var(--dim);
  letter-spacing: 0.08em;
  font-feature-settings: "tnum";
}

/* Red-flag list inside Ask AICA bubble */
.ask-flags {
  margin-top: 12px;
  display: flex; flex-direction: column;
  gap: 8px;
}
.ask-flag {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(0,0,0,0.30);
  border: 0.5px solid var(--hairline);
}
.ask-flag.amber {
  border-left: 2px solid #F59E0B;
}
.ask-flag-tag {
  font-size: 9px;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: #F59E0B;
  background: rgba(245,158,11,0.10);
  padding: 4px 8px;
  border-radius: 4px;
  align-self: flex-start;
  white-space: nowrap;
  font-feature-settings: "tnum";
}
.ask-flag-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}
.ask-flag-text b { color: white; font-weight: 500; }
.ask-flag-src {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.08em;
  font-feature-settings: "tnum";
}

/* Peer comparison table inside Ask AICA bubble */
.ask-compare {
  margin-top: 12px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0,0,0,0.30);
  border: 0.5px solid var(--hairline);
}
.ask-compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 10px;
  padding: 9px 14px;
  font-size: 12px;
  align-items: baseline;
  border-top: 0.5px solid var(--hairline);
}
.ask-compare-row:first-child { border-top: none; }
.ask-compare-row.head {
  font-size: 9px;
  color: var(--dim);
  letter-spacing: 0.14em;
  background: rgba(168,85,247,0.04);
  padding: 8px 14px;
}
.ask-compare-row .lbl { color: var(--muted); }
.ask-compare-row .val {
  font-feature-settings: "tnum";
  font-weight: 500;
  text-align: right;
}
.ask-compare-row .val.accent { color: #C084FC; }
.ask-compare-row .val.dim    { color: var(--muted); }

/* ============================================================
   ONE-CLICK CREDIT MEMO — beautiful CAM document mockup
   ============================================================ */
.cam-panel {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
.cam-panel.active { display: flex; }
.cam-doc {
  width: 100%;
  max-width: 720px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  border: 0.5px solid var(--hairline-strong);
  background: linear-gradient(180deg, rgba(20,16,38,0.55) 0%, rgba(8,8,14,0.85) 100%);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.04);
  animation: camFadeIn 0.5s ease-out;
}
@keyframes camFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.cam-doc-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: rgba(8,8,14,0.85);
  border-bottom: 0.5px solid var(--hairline-strong);
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.cam-doc-head-dots { display: inline-flex; gap: 6px; }
.cam-doc-head-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.10);
}
.cam-doc-head-dots span:nth-child(1) { background: rgba(255,95,86,0.5); }
.cam-doc-head-dots span:nth-child(2) { background: rgba(255,189,46,0.5); }
.cam-doc-head-dots span:nth-child(3) { background: rgba(39,201,63,0.5); }
.cam-doc-head-title {
  font-size: 11px; color: var(--muted);
  font-feature-settings: "tnum";
  letter-spacing: 0.06em;
  text-align: center;
}
.cam-doc-head-meta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px;
  color: #22D3A5;
  letter-spacing: 0.14em;
  font-weight: 500;
}
.cam-doc-head-meta::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22D3A5;
  box-shadow: 0 0 8px rgba(34,211,165,0.7);
  animation: pulse 1.6s ease-in-out infinite;
}
.cam-doc-body {
  flex: 1;
  padding: 24px 28px;
  overflow-y: auto;
  font-size: 13px;
  line-height: 1.55;
}
.cam-doc-body::-webkit-scrollbar { width: 6px; }
.cam-doc-body::-webkit-scrollbar-thumb { background: rgba(168,85,247,0.20); border-radius: 3px; }
.cam-doc-titlebar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 0.5px solid var(--hairline);
}
.cam-doc-eye {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.16em;
  font-weight: 500;
  color: #C084FC;
  margin-bottom: 8px;
}
.cam-doc-h {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.018em;
  color: white;
  margin: 0 0 4px;
}
.cam-doc-sub {
  font-size: 11px;
  color: var(--dim);
  margin: 0;
  letter-spacing: 0.02em;
}
.cam-doc-recommend {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 0.5px solid rgba(34,211,165,0.40);
  background: rgba(34,211,165,0.08);
  box-shadow: 0 0 24px rgba(34,211,165,0.14);
  white-space: nowrap;
}
.cam-doc-recommend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22D3A5;
  box-shadow: 0 0 10px rgba(34,211,165,0.7);
  flex-shrink: 0;
}
.cam-doc-recommend-text { display: flex; flex-direction: column; gap: 2px; }
.cam-doc-recommend-lbl {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--dim);
  font-weight: 500;
}
.cam-doc-recommend-val {
  font-size: 13px;
  font-weight: 500;
  color: #22D3A5;
  letter-spacing: 0.04em;
}
.cam-doc-terms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
@media (max-width: 700px) {
  .cam-doc-terms { grid-template-columns: repeat(2, 1fr); }
  .cam-doc-titlebar { grid-template-columns: 1fr; }
}
.cam-doc-term {
  display: flex; flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 0.5px solid var(--hairline);
  background: rgba(255,255,255,0.015);
}
.cam-doc-term .lbl {
  font-size: 9px; color: var(--dim);
  letter-spacing: 0.14em; font-weight: 500;
}
.cam-doc-term .val {
  font-size: 13px; color: white;
  font-weight: 500;
  font-feature-settings: "tnum";
  letter-spacing: -0.005em;
}
.cam-doc-section { margin-bottom: 18px; }
.cam-doc-section-h {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 0.5px solid var(--hairline);
}
.cam-doc-section-meta {
  font-size: 9px;
  color: var(--dim);
  letter-spacing: 0.08em;
  font-weight: 400;
  text-transform: none;
}
.cam-doc-rows { display: flex; flex-direction: column; gap: 6px; }
.cam-doc-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 6px 0;
  font-size: 12px;
}
.cam-doc-row .lbl { color: var(--muted); }
.cam-doc-row .val {
  color: white;
  font-feature-settings: "tnum";
  font-weight: 500;
}
.cam-doc-row .val .up { color: #22D3A5; font-weight: 400; margin-left: 6px; font-size: 11px; }
.cam-doc-narrative {
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  max-width: 64ch;
}
.cam-doc-highlight {
  color: white;
  background: linear-gradient(135deg, rgba(168,85,247,0.18) 0%, rgba(236,72,153,0.10) 100%);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 500;
}
.cam-doc-foot {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 0.5px dashed var(--hairline);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.06em;
}
.cam-doc-foot-time { font-feature-settings: "tnum"; }
@media (max-width: 700px) {
  .cam-doc-foot { flex-direction: column; gap: 6px; align-items: flex-start; }
}

/* ============================================================
   HERO VIDEO BAND — edge-to-edge full-bleed video, sits after logos
   ============================================================ */
.hero-video-band {
  padding: 16px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero-video-wrap {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #08050f;
  aspect-ratio: 16 / 9;
  /* Edge-to-edge: no border-radius, no border, no max-width */
}
.hero-video-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(168,85,247,0.30) 0%, rgba(236,72,153,0.10) 40%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}
.hero-video-inline {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #08050f;
}
@media (max-width: 720px) {
  .hero-video-band { padding: 12px 0 56px; }
}

/* ============================================================
   LOGOS STRIP — sliding marquee
   ============================================================ */
.logos {
  padding: 64px 0;
  border-top: 0.5px solid var(--hairline);
  overflow: hidden;
}
.logos-line {
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.18em;
  margin-bottom: 36px;
  font-weight: 500;
  text-align: center;
}
.logos-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.logos-track {
  display: flex;
  gap: 96px;
  width: max-content;
  align-items: center;
  animation: logoSlide 30s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }
@keyframes logoSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 64px;
  width: 200px;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.logo-pill img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s, filter 0.2s;
  display: block;
}
.logo-pill:hover img { opacity: 1; transform: scale(1.04); }
/* Per-logo height tuning — calibrated to the visible artwork. */
.logo-pill[data-brand="satin"] img      { max-height: 56px; }
.logo-pill[data-brand="infotel"] img    { max-height: 28px; }
.logo-pill[data-brand="lighthouse"] img { max-height: 52px; }
.logo-pill[data-brand="altius"] img     { max-height: 44px; }
/* New logos — force monochrome white so colored brand marks don't disappear on the dark bg */
.logo-pill[data-brand="physis"] img,
.logo-pill[data-brand="village"] img,
.logo-pill[data-brand="string"] img,
.logo-pill[data-brand="kreditbee"] img,
.logo-pill[data-brand="lc"] img,
.logo-pill[data-brand="drivn"] img,
.logo-pill[data-brand="mca"] img,
.logo-pill[data-brand="gatipay"] img {
  filter: brightness(0) invert(1);
}
.logo-pill[data-brand="physis"] img     { max-height: 56px; }
.logo-pill[data-brand="village"] img    { max-height: 32px; }
.logo-pill[data-brand="string"] img     { max-height: 56px; }
.logo-pill[data-brand="kreditbee"] img  { max-height: 36px; }
.logo-pill[data-brand="drivn"] img      { max-height: 40px; }
.logo-pill[data-brand="mca"] img        { max-height: 100%; transform: scale(1.6); }
.logo-pill[data-brand="mca"]:hover img  { transform: scale(1.65); }
.logo-pill[data-brand="gatipay"] img    { max-height: 36px; }
/* LC logo has heavy transparent padding around the rounded-rect mark — scale up to compensate */
.logo-pill[data-brand="lc"] img         { max-height: 100%; transform: scale(1.5); }
.logo-pill[data-brand="lc"]:hover img   { transform: scale(1.55); }

/* ============================================================
   AUDIENCE TABS (sticky)
   ============================================================ */
.tabs {
  position: sticky; top: 65px; z-index: 40;
  padding: 32px 0 16px; border-top: 0.5px solid var(--hairline);
  background: rgba(8,8,12,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.tabs-row { display: flex; gap: 6px; overflow-x: auto; }
.tab {
  font-size: 13px; padding: 9px 16px; border-radius: 999px;
  color: var(--muted); white-space: nowrap;
  border: 0.5px solid transparent;
  cursor: pointer;
}
.tab:hover { color: white; }
.tab.active { color: var(--bg); background: white; font-weight: 500; }

/* ============================================================
   PLATFORM OVERVIEW (4 cards)
   ============================================================ */
.platform { padding: 144px 0; border-top: 0.5px solid var(--hairline); position: relative; }
.platform-glow {
  position: absolute; left: -100px; top: 100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.14) 0%, transparent 60%);
  filter: blur(80px); pointer-events: none;
}
.platform-h2 { margin-bottom: 24px; max-width: 22ch; }
.platform-sub { margin-bottom: 80px; }
.platform-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; position: relative;
}
.pf-card {
  background: linear-gradient(180deg, var(--surface) 0%, #0E0C18 100%);
  border: 0.5px solid var(--hairline-strong);
  border-radius: 16px;
  padding: 36px 32px 28px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 320px;
}
.pf-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 0 60px rgba(168,85,247,0.22), inset 0 1px 0 rgba(255,255,255,0.06);
  transform: translateY(-4px);
}
.pf-card-num-big {
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: rgba(168,85,247,0.55);
  line-height: 1;
  margin-bottom: 32px;
  font-feature-settings: "tnum";
  transition: color 0.3s, transform 0.3s;
}
.pf-card:hover .pf-card-num-big {
  color: var(--accent);
  transform: translateX(4px);
}
.pf-card-num {
  font-size: 11px; color: var(--accent);
  letter-spacing: 0.14em; font-weight: 500;
  margin-bottom: 12px;
  font-feature-settings: "tnum";
}
.pf-card-title { font-size: 19px; font-weight: 500; margin-bottom: 12px; letter-spacing: -0.012em; }
.pf-card-body { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 24px; flex: 1; }
.pf-card-metric {
  padding: 16px 0;
  border-top: 0.5px solid var(--hairline-strong);
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 16px;
}
.pf-card-metric-num {
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.02em;
  color: white;
  font-feature-settings: "tnum";
}
.pf-card-metric-lbl {
  font-size: 10px; color: var(--dim);
  letter-spacing: 0.12em; font-weight: 500;
  text-transform: uppercase;
}
.pf-card-link {
  font-size: 12px; color: var(--accent); font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: 0.04em;
  transition: gap 0.2s, color 0.2s;
}
.pf-card:hover .pf-card-link { gap: 10px; color: white; }

/* ============================================================
   BIG STAT — animated counter + supporting stats
   ============================================================ */
.stat-big { padding: 144px 0; border-top: 0.5px solid var(--hairline); position: relative; overflow: hidden; text-align: center; }
.stat-big-glow {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 1100px; height: 1100px;
  background: radial-gradient(circle, rgba(168,85,247,0.22) 0%, rgba(236,72,153,0.10) 30%, transparent 65%);
  filter: blur(70px); pointer-events: none;
  /* Slowed to ~14s and softened so it shares motion vocabulary with the aurora canvas (slow drift, no pulsing) */
  animation: glowPulse 14s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.92; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: 1.00; transform: translate(-50%,-50%) scale(1.015); }
}
@media (prefers-reduced-motion: reduce) { .stat-big-glow { animation: none; } }
/* Concentric orbital rings behind the number — static, ambient only.
   Removed rotation + satellite dots so the page has one motion language (the aurora canvas). */
.stat-big-orbit {
  position: absolute; left: 50%; top: 50%;
  width: 760px; height: 760px;
  border-radius: 50%;
  border: 0.5px solid rgba(168,85,247,0.06);
  pointer-events: none;
  transform: translate(-50%,-50%);
}
.stat-big-orbit.r2 {
  width: 540px; height: 540px; border-color: rgba(168,85,247,0.09);
}
.stat-big-orbit.r3 {
  width: 320px; height: 320px; border-color: rgba(168,85,247,0.13);
}
@keyframes orbitCW {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}
@keyframes orbitCCW {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(-360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .stat-big-orbit { animation: none; }
}

.stat-big-num {
  font-size: clamp(96px, 14vw, 200px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 500;
  color: white;
  font-feature-settings: "tnum";
  margin-bottom: 32px;
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #C084FC 60%, #F472B6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.stat-big-cap {
  font-size: 18px; color: var(--muted);
  max-width: 56ch; margin: 0 auto 64px;
  line-height: 1.6; position: relative;
}
.stat-big-row {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 0.5px solid var(--hairline-strong);
  border-bottom: 0.5px solid var(--hairline-strong);
  max-width: 960px; margin: 0 auto;
}
.stat-big-cell {
  padding: 32px 20px;
  text-align: center;
  border-right: 0.5px solid var(--hairline-strong);
}
.stat-big-cell:last-child { border-right: none; }
.stat-big-cell-num {
  font-size: 32px; font-weight: 500;
  letter-spacing: -0.022em; color: white;
  font-feature-settings: "tnum";
  margin-bottom: 6px;
}
.stat-big-cell-lbl {
  font-size: 11px; color: var(--dim);
  letter-spacing: 0.12em; font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 880px) {
  .stat-big-row { grid-template-columns: repeat(2, 1fr); }
  .stat-big-cell:nth-child(2n) { border-right: none; }
  .stat-big-cell:nth-child(-n+2) { border-bottom: 0.5px solid var(--hairline-strong); }
}

/* ============================================================
   QUOTE — magazine-style with impact panel
   ============================================================ */
.quote { padding: 128px 0; border-top: 0.5px solid var(--hairline); position: relative; overflow: hidden; }
.quote-glow {
  position: absolute; left: 30%; top: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(168,85,247,0.20) 0%, rgba(236,72,153,0.08) 40%, transparent 70%);
  filter: blur(60px); pointer-events: none;
}
.quote-glow-r {
  position: absolute; right: -100px; top: 30%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.16) 0%, transparent 60%);
  filter: blur(70px); pointer-events: none;
}
.quote-rotator { position: relative; display: grid; }
.quote-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0s linear 0.6s;
}
.quote-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0s;
}
.quote-grid {
  position: relative;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 80px; align-items: center;
}
@media (max-width: 1100px) {
  .quote-grid { grid-template-columns: 1fr; gap: 56px; }
}
.quote-dots {
  position: relative;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 64px;
}
.quote-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.35s ease, background 0.35s ease, border-radius 0.35s ease;
}
.quote-dot:hover { background: rgba(255,255,255,0.32); }
.quote-dot.is-active {
  width: 32px;
  border-radius: 4px;
  background: linear-gradient(90deg, #C084FC 0%, #F472B6 100%);
  box-shadow: 0 0 12px rgba(168,85,247,0.5);
}
.quote-mark {
  font-size: 96px;
  line-height: 0.8;
  background: linear-gradient(135deg, #C084FC 0%, #F472B6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 12px;
  font-family: 'Inter', serif;
  font-weight: 500;
}
.quote-text {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.28;
  font-weight: 500;
  color: white;
  max-width: 22ch;
  margin: 0 0 36px;
  letter-spacing: -0.018em;
  position: relative;
}
.quote-by-row {
  display: flex; align-items: center; gap: 16px;
  padding-top: 24px;
  border-top: 0.5px solid var(--hairline-strong);
}
.quote-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500;
  color: white;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(168,85,247,0.4);
}
.quote-by-meta { display: flex; flex-direction: column; gap: 4px; }
.quote-by-name { font-size: 14px; font-weight: 500; color: white; }
.quote-by-role { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }

.quote-impact {
  background: linear-gradient(180deg, var(--surface) 0%, #0E0C18 100%);
  border: 0.5px solid var(--border-accent);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 0 50px rgba(168,85,247,0.12), inset 0 1px 0 rgba(255,255,255,0.04);
}
.quote-impact-eye {
  font-size: 11px; letter-spacing: 0.18em;
  background: linear-gradient(90deg, #C084FC 0%, #F472B6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 500;
  margin-bottom: 24px;
}
.quote-impact-stat { padding: 18px 0; border-top: 0.5px solid var(--hairline-strong); }
.quote-impact-stat:first-of-type { border-top: none; padding-top: 0; }
.quote-impact-stat:last-of-type { border-bottom: none; padding-bottom: 0; }
.quote-impact-num {
  font-size: 26px; font-weight: 500;
  letter-spacing: -0.018em;
  color: white;
  font-feature-settings: "tnum";
  margin-bottom: 4px;
  display: flex; align-items: baseline; gap: 8px;
}
.quote-impact-num .from { color: var(--dim); font-size: 18px; font-weight: 400; text-decoration: line-through; }
.quote-impact-num .arrow { color: var(--accent); font-size: 16px; }
.quote-impact-lbl {
  font-size: 11px; color: var(--dim);
  letter-spacing: 0.1em; font-weight: 500;
}

/* ============================================================
   RECUR CLUB SECTION
   ============================================================ */
.recur-section {
  padding: 128px 0 112px;
  border-top: 0.5px solid var(--hairline);
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.recur-section .recur-glow {
  background: radial-gradient(circle, rgba(168,85,247,0.10) 0%, rgba(99,102,241,0.04) 35%, transparent 65%);
}
.recur-section .recur-glow-l {
  background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 60%);
}
.recur-glow {
  position: absolute; right: -150px; top: 50px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(168,85,247,0.18) 0%, rgba(99,102,241,0.08) 35%, transparent 65%);
  filter: blur(70px); pointer-events: none;
}
.recur-glow-l {
  position: absolute; left: -100px; bottom: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.14) 0%, transparent 60%);
  filter: blur(80px); pointer-events: none;
}
.recur-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.recur-side-logo {
  display: inline-flex; align-items: center;
  margin-bottom: 28px;
  height: 44px;
}
.recur-side-logo img { height: 44px; width: auto; display: block; opacity: 0.95; }
/* News pill — Series A press mention */
.recur-news-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px 5px 5px;
  border-radius: 999px;
  border: 0.5px solid var(--hairline-strong);
  background: rgba(255,255,255,0.025);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 28px;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s;
}
.recur-news-pill:hover {
  color: white;
  border-color: var(--border-accent);
  background: rgba(168,85,247,0.06);
  transform: translateY(-1px);
}
.recur-news-tag {
  font-size: 9px;
  letter-spacing: 0.16em;
  font-weight: 500;
  color: white;
  background: linear-gradient(135deg, #C084FC 0%, #F472B6 100%);
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(168,85,247,0.40);
}
.recur-news-text { letter-spacing: 0.01em; }
.recur-news-text b { color: white; font-weight: 500; }
.recur-news-source {
  color: var(--dim);
  font-size: 11px;
  letter-spacing: 0.04em;
  border-left: 0.5px solid var(--hairline);
  padding-left: 10px;
  margin-left: 2px;
  font-feature-settings: "tnum";
}
/* Trust line — credibility badge under h2 */
.recur-trust-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 0.5px solid rgba(34,211,165,0.30);
  background: rgba(34,211,165,0.06);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #6EE7B7;
  font-weight: 500;
  margin: 0 0 28px;
  box-shadow: 0 0 18px rgba(34,211,165,0.10);
}
.recur-trust-line-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22D3A5;
  box-shadow: 0 0 10px rgba(34,211,165,0.7);
  animation: pulse 1.6s ease-in-out infinite;
}

.recur-side-lockup {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}
.recur-side-lockup img {
  height: 22px; width: auto; display: block;
  margin: 0 2px;
}
.recur-side-prefix,
.recur-side-suffix { display: inline-block; }
.recur-h2 { margin-bottom: 20px; max-width: 16ch; line-height: 1.1; }
.recur-lead { margin-bottom: 36px; max-width: 52ch; line-height: 1.7; font-size: 16px; }
.recur-stats {
  position: relative;
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--surface) 0%, #0E0C18 100%);
  border: 0.5px solid var(--hairline-strong);
  border-radius: 16px;
  padding: 8px 28px;
  box-shadow: 0 0 50px rgba(168,85,247,0.06), inset 0 1px 0 rgba(255,255,255,0.04);
}
.recur-stat-row {
  display: grid; grid-template-columns: 200px 1fr;
  align-items: baseline; gap: 20px;
  padding: 22px 0;
  border-bottom: 0.5px solid var(--hairline-strong);
}
.recur-stat-row:last-child { border-bottom: none; }
.recur-stat-num {
  font-size: 32px; font-weight: 500;
  letter-spacing: -0.024em;
  font-feature-settings: "tnum";
  color: white;
}
.recur-stat-lbl { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; line-height: 1.55; }
.recur-cta-row {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.recur-investors {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 0.5px solid var(--hairline);
}
.recur-investors-label { font-size: 11px; color: var(--dim); letter-spacing: 0.16em; font-weight: 500; display: block; margin-bottom: 14px; }
.recur-investor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 480px;
}
@media (max-width: 600px) { .recur-investor-grid { grid-template-columns: 1fr; } }
.recur-investor {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, rgba(20,16,38,0.55) 0%, rgba(15,11,26,0.65) 100%);
  border: 0.5px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  padding: 11px 18px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}
.recur-investor:hover {
  border-color: rgba(168,85,247,0.40);
  background: linear-gradient(180deg, rgba(168,85,247,0.08) 0%, rgba(15,11,26,0.65) 100%);
}

@media (max-width: 1180px) {
  .recur-grid { grid-template-columns: 1fr; gap: 48px; }
  .recur-stat-row { grid-template-columns: 1fr; gap: 4px; }
}

/* ============================================================
   BHARAT KE SUPER FOUNDERS — show section
   ============================================================ */
.show-section {
  padding: 96px 0 88px;
  border-top: 0.5px solid var(--hairline);
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.show-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 1100px) {
  .show-grid { grid-template-columns: 1fr; gap: 40px; }
}
.show-eye {
  font-size: 11px; letter-spacing: 0.18em;
  background: linear-gradient(90deg, #C084FC 0%, #F472B6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 500;
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 8px;
}
.show-h2 {
  font-size: clamp(36px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.024em;
  font-weight: 500;
  margin-bottom: 18px;
  max-width: 14ch;
}
.show-lead { font-size: 15px; line-height: 1.65; color: var(--muted); margin-bottom: 28px; max-width: 50ch; }
.show-meta {
  display: flex; align-items: center; gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 0.5px solid rgba(255,255,255,0.10);
  flex-wrap: wrap;
}
.show-meta-label { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.16em; font-weight: 500; }
.show-meta-platform {
  font-size: 14px; color: white; font-weight: 500; letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 8px;
}

/* Poster — landscape format, fits the show's actual key art aspect ratio */
.show-poster {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 70% 20%, rgba(245,158,11,0.32) 0%, transparent 55%),
    radial-gradient(circle at 30% 80%, rgba(236,72,153,0.30) 0%, transparent 55%),
    linear-gradient(180deg, #2a0a4e 0%, #0a0220 100%);
  background-size: cover;
  background-position: center;
  border: 0.5px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 0 60px rgba(168,85,247,0.18), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.show-poster:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 80px rgba(168,85,247,0.30), inset 0 1px 0 rgba(255,255,255,0.12);
}
/* Image fills the poster when one is dropped in — hides the fallback overlay */
.show-poster img.show-poster-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 14px;
  z-index: 3;
}
.show-poster-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: grid; grid-template-rows: auto 1fr auto;
  padding: 28px 32px;
}
/* Top row — title block (right) */
.show-poster-top {
  display: flex; justify-content: flex-end; align-items: flex-start;
}
.show-poster-titleblock {
  text-align: right;
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
}
.show-poster-hindi {
  font-size: clamp(14px, 1.6vw, 20px);
  letter-spacing: 0.04em;
  color: white;
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255,255,255,0.3);
}
.show-poster-title {
  font-size: clamp(22px, 3.4vw, 38px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(255,255,255,0.18), 0 0 2px rgba(0,0,0,0.6);
  display: flex; flex-direction: column; align-items: flex-end;
}
.show-poster-title span { display: block; }
.show-poster-cocreate {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 0.5px solid rgba(255,255,255,0.18);
  font-size: 9px; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.75); font-weight: 500;
}
.show-poster-cocreate img {
  height: 14px; width: auto; opacity: 0.95;
  filter: brightness(0) invert(1);
}
/* Centre — empty space lets the artwork breathe */
.show-poster-mid { position: relative; }
.show-poster-mid-india {
  position: absolute; left: 0; top: 50%;
  transform: translateY(-55%);
  font-size: clamp(60px, 9vw, 110px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 0.5px rgba(255,255,255,0.10);
  pointer-events: none;
}
/* Foot — WATCH FREE pill + amazon | MX PLAYER lockup */
.show-poster-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.show-poster-watch {
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px;
  font-weight: 500;
  font-size: clamp(11px, 1.1vw, 14px);
  letter-spacing: 0.06em;
  color: white;
  background: rgba(0,0,0,0.55);
  padding: 8px 14px;
  border-radius: 4px;
  border: 0.5px solid rgba(255,255,255,0.12);
  line-height: 1.1;
}
.show-poster-watch .free {
  color: #5EB3FF;
  font-size: clamp(13px, 1.2vw, 16px);
}
.show-poster-platform {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.08em; font-weight: 500;
  color: white;
  background: rgba(0,0,0,0.45);
  padding: 8px 14px;
  border-radius: 4px;
  border: 0.5px solid rgba(255,255,255,0.10);
}
.show-poster-platform .amazon {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: lowercase;
  position: relative;
}
.show-poster-platform .amazon::after {
  content: '';
  display: block;
  width: 18px; height: 4px;
  border-radius: 0 0 8px 8px;
  background: #FF9F2D;
  margin-top: -2px; margin-left: 2px;
}
.show-poster-platform .pipe { width: 1px; height: 16px; background: rgba(255,255,255,0.25); }
.show-poster-platform .mx {
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 500; letter-spacing: 0.02em;
}
.show-poster-platform .mx-play {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #1FA1FF;
}
.show-poster-platform .mx-play::after {
  content: ''; width: 0; height: 0;
  border-left: 5px solid white;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  margin-left: 1px;
}

/* ============================================================
   AUDIENCE ROLES — persona cards with unique gradient headers
   ============================================================ */
.audience { padding: 128px 0; border-top: 0.5px solid var(--hairline); }
.audience-h2 { margin-bottom: 64px; max-width: 22ch; }
.audience-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .audience-grid { grid-template-columns: 1fr; } }
.aud-card {
  background: transparent;
  border: 0.5px solid var(--hairline-strong);
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.25s, background 0.25s;
  position: relative;
}
.aud-card:hover {
  border-color: var(--border-accent);
  background: rgba(168,85,247,0.025);
}
.aud-card:hover .aud-card-arrow { gap: 10px; color: white; }
.aud-card-header {
  position: relative;
  border-bottom: 0.5px solid var(--hairline-strong);
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  background: transparent;
}
/* Remove decorative gradients and icons — minimal */
.aud-card[data-aud] .aud-card-header { background: transparent; }
.aud-card-icon { display: none; }
.aud-card-num {
  font-size: 11px; letter-spacing: 0.16em; font-weight: 500;
  color: var(--dim);
  font-feature-settings: "tnum";
  position: static;
}
.aud-card-tag {
  font-size: 11px; letter-spacing: 0.14em; font-weight: 500;
  color: var(--dim);
  position: relative;
}
.aud-card-body {
  padding: 28px 28px 22px;
  flex: 1;
  display: flex; flex-direction: column;
}
.aud-card-title { font-size: 22px; font-weight: 500; letter-spacing: -0.012em; margin-bottom: 12px; }
.aud-card-desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; flex: 1; }
.aud-card-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px;
  border-top: 0.5px solid var(--hairline-strong);
}
.aud-card-stat {
  font-size: 12px;
  background: linear-gradient(90deg, #C084FC 0%, #F472B6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.aud-card-arrow {
  font-size: 12px; color: var(--muted); font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: 0.04em;
  transition: color 0.2s, gap 0.2s;
}

/* ============================================================
   AUDIENCE — TABBED PANEL (replaces .audience-grid card layout)
   ============================================================ */
.aud-tabs-row {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 0.5px solid var(--hairline-strong);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.aud-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: transparent; border: none; cursor: pointer;
  color: var(--muted);
  font-family: inherit;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.aud-tab:hover { color: white; background: rgba(168,85,247,0.06); }
.aud-tab.active {
  color: white;
  background: rgba(168,85,247,0.14);
  border: 0.5px solid rgba(168,85,247,0.45);
  box-shadow: 0 0 24px rgba(168,85,247,0.25), inset 0 0 0 0.5px rgba(255,255,255,0.04);
}
.aud-tab-num {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid var(--hairline-strong);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--dim);
  font-feature-settings: "tnum";
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.aud-tab.active .aud-tab-num {
  background: rgba(168,85,247,0.20);
  color: white;
  border-color: rgba(168,85,247,0.50);
}

.aud-panel-wrap {
  position: relative;
  display: grid;
}
.aud-panel {
  grid-area: 1 / 1;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s;
  position: relative;
  border-radius: 22px;
  border: 0.5px solid var(--hairline-strong);
  background:
    radial-gradient(ellipse at top right, rgba(168,85,247,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(99,102,241,0.06) 0%, transparent 55%),
    linear-gradient(180deg, rgba(20,16,38,0.55) 0%, rgba(10,8,20,0.55) 100%);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 80px rgba(168,85,247,0.10), inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
}
.aud-panel.active {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s;
}
/* Subtle tech-grid background pattern inside panels */
.aud-panel::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(168,85,247,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.aud-panel-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 56px 56px;
  align-items: center;
}
@media (max-width: 1080px) {
  .aud-panel-grid { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
}

.aud-panel-eye {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 0.5px solid rgba(168,85,247,0.40);
  background: rgba(168,85,247,0.08);
  font-size: 11px; letter-spacing: 0.18em; font-weight: 500;
  color: #C084FC;
  margin-bottom: 24px;
}
.aud-panel-eye::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22D3A5;
  box-shadow: 0 0 10px rgba(34,211,165,0.7);
}
.aud-panel-h {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  font-weight: 500;
  color: white;
  margin-bottom: 18px;
  max-width: 18ch;
}
.aud-panel-lead {
  font-size: 15px; line-height: 1.65;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 50ch;
}
.aud-panel-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
@media (max-width: 600px) { .aud-panel-stats { grid-template-columns: 1fr; } }
.aud-panel-stat {
  padding: 18px 18px;
  border: 0.5px solid var(--hairline-strong);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
}
.aud-panel-stat-num {
  font-size: 28px; font-weight: 500;
  letter-spacing: -0.022em;
  color: white;
  background: linear-gradient(135deg, #ffffff 0%, #C084FC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-feature-settings: "tnum";
  margin-bottom: 4px;
}
.aud-panel-stat-lbl {
  font-size: 10px; color: var(--dim);
  letter-spacing: 0.14em; font-weight: 500;
}

.aud-panel-preview {
  position: relative;
  background: rgba(8,6,18,0.72);
  border: 0.5px solid var(--border-accent);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.40), 0 0 60px rgba(168,85,247,0.10), inset 0 1px 0 rgba(255,255,255,0.04);
}
.aud-preview-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 0.5px solid var(--hairline-strong);
  font-size: 11px; letter-spacing: 0.12em; font-weight: 500;
  color: var(--dim);
  background: rgba(0,0,0,0.30);
}
.aud-preview-head-dots {
  display: inline-flex; gap: 6px;
}
.aud-preview-head-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.10);
}
.aud-preview-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; color: #22D3A5; letter-spacing: 0.14em;
}
.aud-preview-live::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: #22D3A5;
  box-shadow: 0 0 10px rgba(34,211,165,0.7);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.aud-preview-body { padding: 20px; }
.aud-preview-block {
  background: rgba(255,255,255,0.025);
  border: 0.5px solid var(--hairline-strong);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 14px;
}
.aud-preview-block:last-child { margin-bottom: 0; }
.aud-preview-block-h {
  font-size: 13px; color: white; font-weight: 500;
  margin-bottom: 12px;
}
.aud-preview-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0;
  font-size: 12px;
}
.aud-preview-row .lbl { color: var(--muted); }
.aud-preview-row .val { color: white; font-weight: 500; font-feature-settings: "tnum"; }
.aud-preview-row .val.num { font-size: 14px; color: #C084FC; }
.aud-preview-row .val.warn { color: #F59E0B; }
.aud-preview-bar-wrap {
  margin-top: 14px;
}
.aud-preview-bar-lbl {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--muted);
  margin-bottom: 6px;
}
.aud-preview-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.aud-preview-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #C084FC 0%, #F472B6 100%);
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(168,85,247,0.5);
}

/* ============================================================
   AUDIENCE — COMPACT (above-the-fold strip variant)
   Used when the audience section sits between trust strip
   and showcase fold. No big preview card; lighter chrome.
   ============================================================ */
.audience-compact {
  padding: 88px 0 64px;
  border-top: 0.5px solid var(--hairline);
  text-align: center;
  position: relative;
}
.audience-compact .audience-h2 {
  margin: 0 auto 36px;
  font-size: clamp(32px, 3.6vw, 48px);
  max-width: 20ch;
}
.audience-compact .aud-tabs-row {
  margin: 0 auto 40px;
  display: inline-flex;
}
.aud-panel-wrap.aud-compact {
  text-align: left;
  max-width: 1080px;
  margin: 0 auto;
}
.aud-panel-wrap.aud-compact .aud-panel {
  border-radius: 18px;
  border: 0.5px solid var(--hairline-strong);
  background:
    radial-gradient(ellipse at top right, rgba(168,85,247,0.06) 0%, transparent 55%),
    linear-gradient(180deg, rgba(20,16,38,0.40) 0%, rgba(10,8,20,0.40) 100%);
  box-shadow: 0 0 60px rgba(168,85,247,0.06), inset 0 1px 0 rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
}
/* Drop the heavy radial glows used by the original */
.aud-panel-wrap.aud-compact .aud-panel::before {
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  opacity: 0.6;
}
.aud-panel-row {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  padding: 44px 48px;
  align-items: center;
}
@media (max-width: 960px) {
  .aud-panel-row { grid-template-columns: 1fr; gap: 32px; padding: 36px 32px; }
}
.aud-panel-text { min-width: 0; }
.aud-panel-wrap.aud-compact .aud-panel-eye { margin-bottom: 18px; }
.aud-panel-wrap.aud-compact .aud-panel-h {
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.12;
  margin-bottom: 14px;
  max-width: 20ch;
}
.aud-panel-wrap.aud-compact .aud-panel-lead {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 46ch;
}
.aud-panel-cta {
  font-size: 13px; color: white; font-weight: 500;
  letter-spacing: 0.01em;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 0.5px solid rgba(255,255,255,0.40);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.aud-panel-cta:hover { color: var(--accent); border-color: var(--accent); gap: 10px; }
.aud-panel-wrap.aud-compact .aud-panel-stats {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 0;
}
.aud-panel-wrap.aud-compact .aud-panel-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 14px;
  padding: 14px 18px;
}
.aud-panel-wrap.aud-compact .aud-panel-stat-num {
  font-size: 22px;
  margin-bottom: 0;
}
.aud-panel-wrap.aud-compact .aud-panel-stat-lbl {
  font-size: 10px;
  text-align: right;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { padding: 160px 0; border-top: 0.5px solid var(--hairline); position: relative; overflow: hidden; text-align: center; }
.final-cta-glow {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 1200px; height: 700px;
  background: radial-gradient(ellipse, rgba(168,85,247,0.24) 0%, rgba(236,72,153,0.10) 40%, transparent 70%);
  filter: blur(80px); pointer-events: none;
}
.final-h2 {
  font-size: clamp(44px, 5.8vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  max-width: 18ch;
  margin-left: auto; margin-right: auto;
}
.final-sub { margin: 0 auto 40px; max-width: 56ch; }
.final-cta .cta-row { justify-content: center; }
.final-micro { margin-top: 24px; font-size: 13px; color: var(--dim); letter-spacing: 0.04em; position: relative; }

/* ============================================================
   FAQ — accordion
   ============================================================ */
.faq {
  padding: 128px 0 112px;
  border-top: 0.5px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.faq-glow {
  position: absolute; left: -150px; top: 80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168,85,247,0.10) 0%, transparent 60%);
  filter: blur(70px); pointer-events: none;
}
.faq-grid {
  position: relative;
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1000px) { .faq-grid { grid-template-columns: 1fr; gap: 48px; } }
.faq-eye {
  font-size: 11px; letter-spacing: 0.18em;
  background: linear-gradient(90deg, #C084FC 0%, #F472B6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 500;
  margin-bottom: 20px;
}
.faq-h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.024em;
  font-weight: 500;
  max-width: 18ch;
  margin-bottom: 22px;
}
.faq-sub {
  font-size: 16px; line-height: 1.65;
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 24px;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 0.5px solid var(--hairline-strong); }
.faq-item:last-child { border-bottom: 0.5px solid var(--hairline-strong); }
.faq-q {
  width: 100%;
  background: transparent; border: none;
  text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  font-size: 17px; font-weight: 500;
  color: white; letter-spacing: -0.005em;
  cursor: pointer; font-family: inherit;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q::after {
  content: '+';
  font-size: 22px; font-weight: 400;
  color: rgba(255,255,255,0.5);
  transition: transform 0.3s ease, color 0.2s;
  flex-shrink: 0;
  margin-left: 24px;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 0 28px;
  font-size: 15px; line-height: 1.7;
  color: var(--muted);
  max-width: 60ch;
}

/* ============================================================
   SECURITY & PRIVACY
   ============================================================ */
.security {
  padding: 128px 0 112px;
  border-top: 0.5px solid var(--hairline);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(168,85,247,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(99,102,241,0.08) 0%, transparent 55%),
    linear-gradient(180deg, #0a0420 0%, #08051c 100%);
}
.security::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 100px;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.security .container { text-align: center; position: relative; z-index: 1; }
.security-eye {
  font-size: 11px; letter-spacing: 0.18em;
  background: linear-gradient(90deg, #C084FC 0%, #F472B6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.security-h2 {
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.024em;
  font-weight: 500;
  max-width: 22ch;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
}
.security-lead {
  font-size: 16px; line-height: 1.65;
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}
.security-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) { .security-grid { grid-template-columns: 1fr; } }
.security-cta {
  margin-top: 56px;
  position: relative;
  z-index: 1;
}
.security-cta .btn-link {
  font-size: 13px; color: white; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: 0.04em;
  border-bottom: 0.5px solid rgba(255,255,255,0.4);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s, gap 0.2s;
}
.security-cta .btn-link:hover { color: var(--accent); border-color: var(--accent); gap: 12px; }
.sec-card {
  background: linear-gradient(180deg, rgba(20,12,40,0.6) 0%, rgba(10,6,24,0.6) 100%);
  border: 0.5px solid var(--hairline-strong);
  border-radius: 16px;
  padding: 36px 28px 32px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  backdrop-filter: blur(4px);
}
.sec-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 0 50px rgba(168,85,247,0.18);
  transform: translateY(-3px);
}
.sec-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.18) 0%, rgba(168,85,247,0.04) 60%, transparent 100%);
  border: 0.5px solid rgba(168,85,247,0.40);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 16px rgba(168,85,247,0.16), 0 0 24px rgba(168,85,247,0.18);
}
.sec-icon svg {
  width: 28px; height: 28px;
  stroke: url(#sec-grad);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sec-h { font-size: 17px; font-weight: 500; color: white; letter-spacing: -0.01em; margin-top: 4px; }
.sec-b { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 24ch; margin: 0 auto; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { padding: 96px 0 40px; border-top: 0.5px solid var(--hairline); position: relative; overflow: hidden; }
.footer-watermark { display: none; }
footer .container { position: relative; z-index: 2; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 64px;
  border-bottom: 0.5px solid var(--hairline-strong);
}
.footer-brand { display: inline-flex; align-items: center; margin-bottom: 18px; }
.footer-brand img { height: 24px; width: auto; display: block; }
.footer-recur-lockup {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--dim); letter-spacing: 0.04em;
  margin-top: 18px;
}
.footer-recur-lockup img { height: 16px; width: auto; opacity: 0.8; }
.footer-tagline { font-size: 12px; color: var(--dim); line-height: 1.6; max-width: 32ch; }
.footer-col-h { font-size: 11px; color: var(--dim); letter-spacing: 0.12em; font-weight: 500; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 13px; color: var(--muted); }
.footer-col a:hover { color: white; }
.footer-bottom {
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-meta { font-size: 12px; color: var(--dim); }
.footer-legal { display: flex; gap: 24px; font-size: 12px; }
.footer-legal a { color: var(--dim); }
.footer-legal a:hover { color: white; }

/* ============================================================
   SUBPAGE — common patterns
   ============================================================ */

/* Subpage hero — two-column, fills viewport above the fold */
.sub-hero {
  position: relative;
  padding: 112px 0 96px;
  border-bottom: 0.5px solid var(--hairline);
  overflow: hidden;
}
.sub-hero-glow {
  position: absolute; top: -200px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(168,85,247,0.20) 0%, rgba(236,72,153,0.08) 30%, transparent 65%);
  filter: blur(60px); pointer-events: none;
}
.sub-hero-glow-l {
  position: absolute; top: 200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 65%);
  filter: blur(60px); pointer-events: none;
}
.sub-hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.sub-hero-content { position: relative; }
.sub-h1 {
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.026em;
  font-weight: 500;
  margin-bottom: 22px;
  max-width: 22ch;
}
.sub-lead {
  font-size: 16px; line-height: 1.6; color: var(--muted);
  margin-bottom: 32px; max-width: 56ch;
}
.breadcrumbs { font-size: 12px; color: var(--dim); letter-spacing: 0.06em; margin-bottom: 24px; }
.breadcrumbs a:hover { color: white; }
.breadcrumbs .sep { padding: 0 8px; opacity: 0.5; }
.sub-hero-visual {
  position: relative;
}

/* Section wrapper with optional glow + glowing top hairline */
.section { padding: 128px 0; border-top: 0.5px solid var(--hairline); position: relative; overflow: hidden; }
.section::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; max-width: 800px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.45), rgba(236,72,153,0.25), transparent);
  pointer-events: none;
}
.section-glow-r {
  position: absolute; right: -100px; top: 100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168,85,247,0.16) 0%, transparent 60%);
  filter: blur(70px); pointer-events: none;
}
.section-glow-l {
  position: absolute; left: -100px; bottom: 100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.16) 0%, transparent 60%);
  filter: blur(70px); pointer-events: none;
}
.section-h2 { margin-bottom: 24px; max-width: 22ch; }
.section-sub { margin-bottom: 64px; }

/* Module/feature split layout */
.split {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 80px; align-items: start;
}
.split.reversed { grid-template-columns: 1.15fr 0.85fr; }

/* Stat tile inside subpages */
.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 0.5px solid var(--hairline-strong);
  border-bottom: 0.5px solid var(--hairline-strong);
}
.stat-tile {
  padding: 32px 28px 32px 0;
  border-right: 0.5px solid var(--hairline-strong);
}
.stat-tile:last-child { border-right: none; }
.stat-tile:not(:first-child) { padding-left: 28px; }
.stat-tile-num {
  font-size: 32px; font-weight: 500;
  letter-spacing: -0.02em; font-feature-settings: "tnum";
  margin-bottom: 6px;
}
.stat-tile-lbl { font-size: 11px; color: var(--dim); letter-spacing: 0.1em; font-weight: 500; }

/* Grid of cells */
.grid-cells {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid var(--hairline-strong);
  border-left: 0.5px solid var(--hairline-strong);
}
.grid-cell {
  padding: 36px 32px;
  border-right: 0.5px solid var(--hairline-strong);
  border-bottom: 0.5px solid var(--hairline-strong);
  transition: background 0.2s;
}
.grid-cell:hover { background: rgba(168,85,247,0.04); }
.grid-cell-num {
  font-size: 11px; color: var(--accent);
  letter-spacing: 0.1em; font-weight: 500;
  margin-bottom: 16px; font-feature-settings: "tnum";
}
.grid-cell-h { font-size: 17px; font-weight: 500; margin-bottom: 10px; }
.grid-cell-b { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Stripe rows (for problems, moat, audience lists) */
.stripe-list { padding: 0; margin: 0; }
.stripe-row {
  display: grid; grid-template-columns: 80px 1fr 1.6fr;
  gap: 48px; padding: 32px 0;
  border-top: 0.5px solid var(--hairline-strong);
  align-items: start;
}
.stripe-row:last-child { border-bottom: 0.5px solid var(--hairline-strong); }
.stripe-num {
  font-size: 13px; color: var(--accent);
  letter-spacing: 0.08em; font-weight: 500; padding-top: 6px;
  font-feature-settings: "tnum";
}
.stripe-title { font-size: 22px; font-weight: 500; letter-spacing: -0.012em; line-height: 1.2; }
.stripe-body { font-size: 15px; line-height: 1.7; color: var(--muted); }

/* Product surface (used inside subpages) — upgraded to match the audience preview widget treatment */
.prod-surface {
  position: relative;
  background: rgba(8,6,18,0.72);
  border: 0.5px solid var(--border-accent);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.40), 0 0 60px rgba(168,85,247,0.10), inset 0 1px 0 rgba(255,255,255,0.04);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.prod-head {
  font-size: 11px; color: var(--dim);
  letter-spacing: 0.12em; font-weight: 500;
  padding: 14px 20px;
  border-bottom: 0.5px solid var(--hairline-strong);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: rgba(0,0,0,0.30);
}
/* Mac-style window dots before the title */
.prod-head::before {
  content: '';
  flex-shrink: 0;
  width: 36px; height: 8px;
  background:
    radial-gradient(circle at 4px 4px, rgba(255,255,255,0.16) 3px, transparent 3.5px) 0 0/14px 8px no-repeat,
    radial-gradient(circle at 4px 4px, rgba(255,255,255,0.16) 3px, transparent 3.5px) 14px 0/14px 8px no-repeat,
    radial-gradient(circle at 4px 4px, rgba(255,255,255,0.16) 3px, transparent 3.5px) 28px 0/14px 8px no-repeat;
}
.prod-head > span:first-of-type { flex: 1; text-align: center; }
.prod-head > span:last-of-type {
  flex-shrink: 0;
  font-size: 10px; color: #22D3A5; letter-spacing: 0.14em;
  display: inline-flex; align-items: center; gap: 6px;
}
/* When second span doesn't have a live pip, give it a neutral colour */
.prod-head > span:last-of-type:not(:has(.live-pip)) { color: var(--dim); }
/* Generic horizontal padding for any direct-child block inside .prod-surface
   that ISN'T .prod-head (which has its own padding) and ISN'T .prod-row
   (which already has padding: 11px 20px). Catches inline-styled body divs. */
.prod-surface > div:not(.prod-head):not(.prod-row) {
  padding-left: 24px;
  padding-right: 24px;
}
.prod-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 20px;
  font-size: 13px;
  border-bottom: 0.5px solid var(--hairline);
}
.prod-row:first-of-type { padding-top: 16px; }
.prod-row:last-child { border-bottom: none; padding-bottom: 18px; }
.prod-row .lbl { color: var(--muted); }
.prod-row .val { color: white; font-weight: 500; display: flex; align-items: center; gap: 10px; font-feature-settings: "tnum"; }

/* Status dots */
.dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.dot-g { background: var(--live); box-shadow: 0 0 8px rgba(34,211,165,0.6); }
.dot-a { background: var(--amber); box-shadow: 0 0 8px rgba(245,158,11,0.6); }

/* Feature list inside split */
.feat-list { padding: 0; margin: 0; }
.feat-item { padding: 22px 0; border-top: 0.5px solid var(--hairline-strong); }
.feat-item:last-child { border-bottom: 0.5px solid var(--hairline-strong); }
.feat-h { font-size: 16px; font-weight: 500; margin-bottom: 6px; }
.feat-b { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
  .container { padding: 0 40px; }
  .nav-inner { padding: 16px 40px; }
  .hero-grid, .sub-hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 880px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { padding: 48px 0; }
  .sub-hero { padding: 48px 0 64px; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .split.reversed { grid-template-columns: 1fr; gap: 48px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat-tile { padding-left: 0 !important; padding-right: 24px !important; border-right: 0.5px solid var(--hairline-strong) !important; border-bottom: 0.5px solid var(--hairline-strong); }
  .stat-tile:nth-child(2n) { border-right: none !important; padding-right: 0 !important; }
  .stat-tile:nth-last-child(-n+2) { border-bottom: none; }
  .grid-cells { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stripe-row, .audience-row { grid-template-columns: 1fr; gap: 8px; }
  .aud-arrow { display: none; }
  .magic-panel { grid-template-columns: 1fr; }
  .showcase-body { padding: 20px; min-height: auto; }
  .showcase-tabs { flex-wrap: wrap; }
  .sc-meta { display: none; }
}

/* ============================================================
   CONTACT / DEMO FORM
   ============================================================ */
.contact-form {
  background: linear-gradient(180deg, var(--surface) 0%, #0E0C18 100%);
  border: 0.5px solid var(--hairline-strong);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.04);
}
.form-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
@media (max-width: 720px) {
  .form-grid-2 { grid-template-columns: 1fr; gap: 14px; }
}
.form-row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.form-row:last-of-type { margin-bottom: 24px; }
.form-row label {
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 500;
  color: var(--dim);
  text-transform: uppercase;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 0.5px solid var(--hairline-strong);
  background-color: rgba(255,255,255,0.02);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.005em;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--dim); }
.form-row input:hover,
.form-row select:hover,
.form-row textarea:hover { border-color: rgba(168,85,247,0.30); }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(168,85,247,0.55);
  background-color: rgba(168,85,247,0.04);
  box-shadow: 0 0 0 3px rgba(168,85,247,0.10), inset 0 0 0 0.5px rgba(168,85,247,0.30);
}
.form-row textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.55;
}
.form-row select {
  appearance: none;
  -webkit-appearance: none;
  /* Chevron-down icon on the right via inline SVG data URI */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23A1A1AA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-position: right 16px center;
  background-size: 14px 14px;
  background-repeat: no-repeat;
  padding-right: 42px;
  cursor: pointer;
}
.form-row select:hover {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23C084FC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
}
.form-row select:focus {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23C084FC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
}
.form-row select option {
  background: var(--surface);
  color: var(--text);
}

/* Custom radio pills */
.radio-group {
  display: flex; flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.radio-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 0.5px solid var(--hairline-strong);
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  font-size: 13px;
  color: var(--muted);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.radio-pill input[type="radio"] {
  position: absolute; opacity: 0; pointer-events: none;
  width: 0; height: 0;
}
.radio-mark {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.2px solid var(--hairline-strong);
  background: rgba(255,255,255,0.02);
  position: relative;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.radio-mark::after {
  content: '';
  position: absolute; inset: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C084FC 0%, #F472B6 100%);
  transform: scale(0);
  transition: transform 0.2s;
}
.radio-pill:hover {
  color: var(--text);
  border-color: rgba(168,85,247,0.30);
  background: rgba(168,85,247,0.04);
}
.radio-pill:hover .radio-mark { border-color: rgba(168,85,247,0.40); }
.radio-pill input[type="radio"]:checked ~ .radio-mark {
  border-color: var(--accent-solid);
  background: rgba(168,85,247,0.10);
}
.radio-pill input[type="radio"]:checked ~ .radio-mark::after { transform: scale(1); }
.radio-pill:has(input[type="radio"]:checked) {
  color: white;
  border-color: rgba(168,85,247,0.50);
  background: rgba(168,85,247,0.10);
  box-shadow: 0 0 18px rgba(168,85,247,0.10);
}

.form-radio-row { gap: 12px; }
.form-submit-row {
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-help {
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.04em;
}

/* ============================================================
   MOBILE — single consolidated pass for phones (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .container { padding: 0 16px !important; max-width: 100% !important; }

  .nav { padding: 12px 0; }
  .nav-inner { position: relative; }
  .nav-links {
    display: none;
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface-1, #0a0812);
    border: 0.5px solid var(--hairline, rgba(255,255,255,0.08));
    border-radius: 12px; padding: 8px; max-height: 80vh; overflow-y: auto;
    box-shadow: 0 16px 40px rgba(0,0,0,0.5); z-index: 60;
  }
  .nav-links.is-open { display: flex; }
  .nav-links > a, .nav-links .nav-trigger {
    display: block; padding: 12px 14px; border-radius: 8px;
    font-size: 15px; text-align: left; width: 100%;
    background: transparent; border: 0; color: var(--text); cursor: pointer;
  }
  .nav-links > a:hover, .nav-links .nav-trigger:hover { background: rgba(168,85,247,0.10); }
  .nav-item { width: 100%; }
  .nav-toggle {
    display: flex !important; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 8px;
    background: transparent; border: 0.5px solid var(--hairline-strong, rgba(255,255,255,0.12));
    color: var(--text); cursor: pointer; padding: 0;
  }
  .nav-toggle svg { width: 20px; height: 20px; }
  .nav-cta { padding: 8px 12px !important; font-size: 13px !important; }

  .nav-links.is-open .nav-trigger {
    width: 100%; text-align: left; display: flex !important;
    justify-content: space-between; align-items: center;
  }
  .nav-links.is-open .nav-trigger::after {
    content: '' !important; width: 8px !important; height: 8px !important;
    border-right: 1.5px solid currentColor !important;
    border-bottom: 1.5px solid currentColor !important;
    border-top: 0 !important; border-left: 0 !important;
    transform: rotate(45deg) !important; margin-left: 0 !important; opacity: 0.6 !important;
  }
  .nav-links.is-open .nav-dropdown {
    display: block !important; position: static !important;
    background: transparent !important; border: 0 !important;
    box-shadow: none !important; padding: 4px 0 8px 12px !important;
    margin: 0 !important; transform: none !important;
    opacity: 1 !important; visibility: visible !important;
    width: 100% !important; pointer-events: auto !important;
  }
  .nav-links.is-open .nav-dropdown-grid {
    display: grid !important; grid-template-columns: 1fr !important; gap: 4px !important;
  }
  .nav-links.is-open .nav-dropdown-link {
    padding: 10px 12px !important; border-radius: 8px;
    display: flex !important; align-items: flex-start; gap: 12px;
  }
  .nav-links.is-open .nav-dropdown-icon {
    flex-shrink: 0; width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center; font-size: 12px;
  }
  .nav-links.is-open .nav-dropdown-title { font-size: 14px; }
  .nav-links.is-open .nav-dropdown-desc { font-size: 11px; line-height: 1.4; margin-top: 2px; }
  .nav-links.is-open .nav-dropdown-foot { display: none !important; }

  h1, .h1, .hero-h1, .sub-h1, .final-h2 { font-size: 36px !important; line-height: 1.12 !important; letter-spacing: -0.02em; }
  h2, .h2 { font-size: 26px !important; line-height: 1.2 !important; }
  .lead, .sub-lead { font-size: 16px !important; line-height: 1.55 !important; }
  .eyebrow { font-size: 11px !important; }

  .split, .split.reversed, .sub-hero-grid, .footer-grid, .grid-cells, .stat-row,
  .audience-grid, .nav-dropdown-grid, .recur-investor-grid, .faq-grid,
  .security-grid, .aud-panel-stats, .showcase-fold-grid {
    display: grid !important; grid-template-columns: 1fr !important; gap: 24px !important;
  }

  section { padding: 56px 0 !important; }
  .hero { padding: 72px 0 40px !important; }
  .final-cta { padding: 64px 0 !important; }
  .logos { padding: 40px 0 !important; }

  .hero-canvas, .aurora-a, .aurora-b,
  .section-glow-r, .section-glow-l,
  .sub-hero-glow, .sub-hero-glow-l,
  .final-cta-glow, .footer-watermark, .showcase-halo { display: none !important; }

  .hero { min-height: auto !important; }
  .hero-h1-centered { font-size: 34px !important; line-height: 1.12 !important; }
  .hero-sub-centered { font-size: 15px !important; }
  .hero-stats {
    display: grid !important; grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important; margin-top: 32px !important;
  }
  .hero-stat-num { font-size: 24px !important; }
  .hero-stat-lbl { font-size: 9px !important; letter-spacing: 0.08em !important; }
  .hero-feature-row { display: none !important; }
  .hero-microcopy-centered { font-size: 11px !important; }

  .logos-track img { height: 32px !important; }

  .showcase-fold { padding: 32px 0 64px !important; }
  .showcase-fold-side { max-width: 100% !important; }
  .showcase-fold-h2 { font-size: 28px !important; max-width: 100% !important; }
  .showcase-fold-sub { font-size: 14px !important; margin-bottom: 20px !important; }
  .sc-tablist, .showcase-tabs, .showcase-tablist { display: none !important; }
  .showcase-wrap, .showcase, .showcase-body {
    width: 100% !important; max-width: 100% !important;
  }
  .showcase-body { display: flex !important; flex-direction: column; gap: 24px; }
  .sc-panel { display: block !important; margin-bottom: 0 !important; }

  .cam-panel {
    display: flex !important; flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important; min-height: auto !important;
    padding: 0 !important; overflow: visible !important;
  }
  .cam-doc { height: auto !important; max-width: 100% !important; width: 100% !important; }
  .cam-doc-body { padding: 14px !important; gap: 14px !important; }
  .cam-doc-section { padding: 12px !important; }
  .cam-doc-section-h { font-size: 11px !important; }
  .cam-doc-row { font-size: 11px !important; }
  .cam-doc-head-title { font-size: 10px !important; }

  .magic-panel { max-width: 100% !important; }
  .mu-row, .mu-row-glow, .mu-spinner, .mu-check, .mu-entity-name,
  .mu-pill, .mu-foot, .mu-app-title::before {
    animation: none !important; opacity: 1 !important; transform: none !important;
  }
  .mu-spinner { display: none !important; }
  .mu-frame { aspect-ratio: 4 / 3 !important; }
  .mu-row { padding: 6px 10px !important; }
  .mu-fname { font-size: 10px !important; }
  .mu-cell-entity { font-size: 9.5px !important; }

  .ask-panel { max-height: none !important; overflow: visible !important; }
  .ask-msg { opacity: 1 !important; transform: none !important; animation: none !important; }
  .ask-msg.aica .ask-content { opacity: 1 !important; animation: none !important; }
  .ask-typing { display: none !important; }

  .audience { padding: 64px 0 !important; }
  .audience-h2 { margin-bottom: 32px !important; max-width: 100% !important; }
  .aud-tabs-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    overflow: visible !important;
    gap: 8px !important; padding: 0 !important;
    margin-bottom: 24px !important;
  }
  .aud-tab {
    width: 100% !important; white-space: normal !important;
    padding: 12px 10px !important; font-size: 11px !important;
    line-height: 1.3 !important; text-align: left !important;
    display: flex !important; align-items: center !important;
    gap: 6px !important; min-height: 48px !important;
  }
  .aud-tab-num { font-size: 10px !important; flex-shrink: 0 !important; }
  .aud-panel { display: none !important; }
  .aud-panel.active { display: block !important; }
  .aud-panel-row { display: grid !important; grid-template-columns: 1fr !important; gap: 24px !important; }
  .aud-panel-h { font-size: 22px !important; line-height: 1.25 !important; }
  .aud-panel-lead { font-size: 14px !important; }
  .aud-panel-stats { gap: 12px !important; }
  .aud-panel-stat-num { font-size: 28px !important; }
  .aud-panel-stat-lbl { font-size: 10px !important; }

  .tabs-row { overflow-x: auto !important; -webkit-overflow-scrolling: touch; flex-wrap: nowrap !important; }
  .tabs-row::-webkit-scrollbar { display: none; }
  .tab { white-space: nowrap; }

  .magic-video-card { aspect-ratio: 4 / 3 !important; }
  .form-row input, .form-row textarea, .form-row select { font-size: 16px !important; }
  .form-grid { grid-template-columns: 1fr !important; }
  .stat-tile-num { font-size: 36px !important; }
  .stat-tile { padding: 20px !important; }
  .btn { padding: 12px 20px !important; font-size: 14px !important; }
  .cta-row { flex-wrap: wrap; gap: 10px; }
  .breadcrumbs { font-size: 11px !important; }
  .prod-surface { padding: 16px !important; }
  .prod-row { font-size: 11px !important; }
  .stat-big-num { font-size: 56px !important; }
  .quote-card { padding: 24px !important; }
  .quote-text { font-size: 16px !important; line-height: 1.5 !important; }
  .footer-recur-lockup { font-size: 13px; }
  .footer-meta { font-size: 11px; }
  table { font-size: 12px; }
}

@media (max-width: 380px) {
  .container { padding: 0 12px !important; }
  h1, .h1, .hero-h1, .sub-h1 { font-size: 30px !important; }
  h2, .h2 { font-size: 22px !important; }
}

.nav-toggle { display: none; }


/* ============================================================
   MOBILE — page-specific overrides (audit findings)
   ============================================================ */
@media (max-width: 768px) {
  .contact-card-row {
    grid-template-columns: 1fr !important;
    gap: 8px !important; padding: 20px 0 !important;
  }
  .contact-card-row > *:first-child {
    font-size: 11px !important; letter-spacing: 0.12em;
    color: var(--accent); margin-bottom: 4px;
  }
  .channels-grid { grid-template-columns: 1fr !important; padding-top: 32px !important; }

  .crm-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
  .crm-node.center { grid-column: span 1 !important; }

  .cs-stats { grid-template-columns: repeat(2, 1fr) !important; gap: 16px 0 !important; }
  .cs-stat { padding: 14px !important; }
  .cs-featured { grid-template-columns: 1fr !important; gap: 28px !important; }

  .investors-row { gap: 24px !important; padding: 20px 0 !important; }
  .investor-name { font-size: 15px !important; }
  .number-mosaic { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .num-card { padding: 18px 14px !important; }
  .num-big { font-size: 28px !important; }
  .founders-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .founder-card { padding: 24px 20px !important; }
  .founder-avatar { width: 72px !important; height: 72px !important; font-size: 22px !important; }

  .risk-grid-banner { grid-template-columns: 1fr !important; }
  .post-stats { grid-template-columns: 1fr !important; gap: 16px !important; }
}
