/* ═══════════════════════════════════════════════
   VIA — Website Stylesheet v3
   Clean · Focused · Professional
   ═══════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
  /* Brand */
  --brand: #d946ef;
  --brand-light: #f0abfc;
  --brand-dark: #c026d3;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #c026d3 0%, #e879f9 50%, #d946ef 100%);
  --grad-text: linear-gradient(135deg, #f0abfc 0%, #e879f9 40%, #c084fc 100%);
  --grad-hero: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(217,70,239,0.22) 0%, transparent 60%),
               radial-gradient(ellipse 50% 40% at 5% 80%, rgba(59,130,246,0.14) 0%, transparent 60%),
               linear-gradient(180deg, #06060e 0%, #0b0b18 50%, #090912 100%);

  /* Surfaces */
  --bg-hero: #06060e;
  --bg-page: #ffffff;
  --bg-subtle: #faf8ff;
  --bg-dark: #0b0b18;
  --surface: #ffffff;
  --border-page: rgba(0,0,0,0.08);
  --border-page-hover: rgba(0,0,0,0.14);
  --border-hero: rgba(255,255,255,0.10);
  --border-hero-soft: rgba(255,255,255,0.06);

  /* Text */
  --text-hero: rgba(255,255,255,0.92);
  --text-hero-muted: rgba(255,255,255,0.50);
  --text-primary: #0f0e17;
  --text-secondary: #555;
  --text-muted: #999;

  /* Semantic */
  --red: #ef4444;
  --amber: #f59e0b;
  --green: #22c55e;
  --blue: #3b82f6;
  --teal: #14b8a6;
  --rose: #f43f5e;
  --emerald: #10b981;

  /* Shadows */
  --shadow-hero-card:
    0 32px 80px rgba(0,0,0,0.55),
    0 8px 24px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.08);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.055);
  --shadow-card-hover: 0 8px 32px rgba(0,0,0,0.10), 0 0 0 1px rgba(0,0,0,0.08);

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --nav-h: 68px;
  --container: 1160px;
  --section-y: clamp(100px, 12vw, 160px);
}

/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
  scrollbar-color: rgba(217,70,239,0.4) transparent;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; cursor: pointer; background: none; }
img { max-width: 100%; display: block; }

/* ─── Scroll Progress ─── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--grad-brand);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 1200;
  transition: none;
}

/* ─── Section Canvas (hero-style network on dark sections) ─── */
.section-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}
/* Ensure dark sections have position:relative so canvas is contained */
.whyvia-section {
  position: relative;
  overflow: hidden;
}
/* Keep existing content above canvas */
.whyvia-section > .container,
.whyvia-section > .layer-mesh-bg {
  position: relative;
  z-index: 1;
}

/* ─── Ambient Background Effects ─── */
@keyframes ambientDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
@keyframes ambientDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-35px, 25px) scale(0.97); }
  66% { transform: translate(25px, -15px) scale(1.03); }
}

/* Light section ambient blobs — visible intensity */
.signal-section::after,
.journey-section::after,
.trust-section::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}
.signal-section::after {
  background: radial-gradient(circle, rgba(217,70,239,0.14) 0%, transparent 70%);
  top: -100px; right: -80px;
  animation: ambientDrift1 25s ease-in-out infinite;
}
.journey-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  animation: ambientDrift2 30s ease-in-out infinite;
}
.journey-section::after {
  background: radial-gradient(circle, rgba(217,70,239,0.10) 0%, transparent 70%);
  top: -60px; right: -100px;
  animation: ambientDrift1 28s ease-in-out infinite;
}
.trust-section::after {
  background: radial-gradient(circle, rgba(20,184,166,0.12) 0%, transparent 70%);
  bottom: -80px; left: -60px;
  animation: ambientDrift2 26s ease-in-out infinite;
}

.whyvia-section .layer-mesh-bg .lmb-1,
.whyvia-section .layer-mesh-bg .lmb-2 {
  animation-duration: 28s;
}

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.35s, border-bottom 0.35s, backdrop-filter 0.35s;
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.95);
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 2.5px;
}

.sound-bar {
  display: block;
  width: 3px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  animation: soundPulse 1.4s ease-in-out infinite;
}
.sound-bar:nth-child(1) { height: 7px; animation-delay: 0s; }
.sound-bar:nth-child(2) { height: 13px; animation-delay: 0.1s; }
.sound-bar:nth-child(3) { height: 9px; animation-delay: 0.2s; }
.sound-bar:nth-child(4) { height: 16px; animation-delay: 0.3s; }
.sound-bar:nth-child(5) { height: 9px; animation-delay: 0.4s; }

@keyframes soundPulse {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.45); }
}

.logo-text { font-weight: 800; letter-spacing: -0.03em; color: white; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover { color: rgba(255,255,255,0.95); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--brand);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(217,70,239,0.40), 0 0 0 1px rgba(217,70,239,0.18);
}
.nav-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(217,70,239,0.55), 0 0 0 1px rgba(217,70,239,0.25);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
}

/* Scrolled nav — white */
.nav.nav--scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.nav.nav--scrolled .nav-logo { color: var(--text-primary); }
.nav.nav--scrolled .logo-text { color: var(--text-primary); }
.nav.nav--scrolled .sound-bar { background: var(--brand); }
.nav.nav--scrolled .logo-mark .sound-bar { background: var(--brand); }
.nav.nav--scrolled .nav-links a { color: var(--text-secondary); }
.nav.nav--scrolled .nav-links a:hover { color: var(--text-primary); }

/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Canvas — waveform intelligence */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  opacity: 0.75;
  z-index: 1;
}

/* Mesh blobs */
.hero-gradient-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}
.mesh-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(217,70,239,0.20) 0%, transparent 70%);
  top: -200px; right: -150px;
  animation: meshA 22s ease-in-out infinite;
}
.mesh-2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  bottom: -180px; left: -120px;
  animation: meshB 28s ease-in-out infinite;
}
.mesh-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(232,121,249,0.08) 0%, transparent 70%);
  top: 35%; left: 38%;
  animation: meshC 19s ease-in-out infinite;
}

@keyframes meshA {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-50px, 70px) scale(1.06); }
  66% { transform: translate(60px, -40px) scale(0.96); }
}
@keyframes meshB {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(70px, -50px) scale(1.08); }
}
@keyframes meshC {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-40px, 50px) scale(1.12); }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 0%, transparent 40%, rgba(6,6,14,0.45) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Hero Content — 2-col split */
.hero-content.hero-split {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(56px, 8vw, 100px);
  align-items: center;
  padding: clamp(80px, 10vh, 130px) clamp(20px, 4vw, 48px);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(217,70,239,0.10);
  border: 1px solid rgba(217,70,239,0.20);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(196,181,253,0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
  position: relative;
  overflow: hidden;
}
.hero-badge::after {
  content: '';
  position: absolute;
  top: 0; left: -70%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
  animation: badgeScan 7s ease-in-out infinite 3s;
  pointer-events: none;
}
@keyframes badgeScan {
  0%      { left: -70%; }
  55%, 100% { left: 120%; }
}
.badge-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #f0abfc;
  box-shadow: 0 0 10px rgba(240,171,252,0.8);
  animation: pulseDot 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
@keyframes perimPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.01); }
}

/* Hero Title */
.hero-title {
  font-size: clamp(3rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--text-hero);
}
.title-line { display: block; }

.title-gradient {
  display: inline-block;          /* allows padding-bottom to work */
  padding-bottom: 0.18em;         /* stops descenders (g, y, p) from being cropped */
  background: var(--grad-text);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradShimmer 5s linear infinite;
  filter: drop-shadow(0 0 28px rgba(232,121,249,0.32));
}
@keyframes gradShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hero morph text transition */
.title-gradient.morph-exit {
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.title-gradient.morph-enter {
  animation: morphEnter 0.55s var(--ease-out) forwards;
}
@keyframes morphEnter {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1);    }
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.56);
  max-width: 440px;
  letter-spacing: 0.005em;
}
.hero-subtitle em {
  color: rgba(255,255,255,0.82);
  font-style: italic;
}

/* Hero Scroll Cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(22px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  cursor: pointer;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
/* Override cinematic-reveal so translateX(-50%) is preserved */
.hero-scroll-cue.cinematic-reveal {
  transform: translateX(-50%) translateY(22px);
}
.hero-scroll-cue.cinematic-reveal.revealed {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.hsc-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.hero-scroll-cue:hover .hsc-text { color: rgba(255,255,255,0.55); }
.hsc-chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.hsc-chevrons span {
  display: block;
  width: 10px;
  height: 5px;
  border-right: 1.5px solid rgba(255,255,255,0.22);
  border-bottom: 1.5px solid rgba(255,255,255,0.22);
  transform: rotate(45deg);
  animation: chevronPulse 2s ease-in-out infinite;
}
.hsc-chevrons span:nth-child(2) {
  animation-delay: 0.22s;
  opacity: 0.55;
}
.hsc-chevrons span:nth-child(3) {
  animation-delay: 0.44s;
  opacity: 0.28;
}
@keyframes chevronPulse {
  0%, 100% { opacity: var(--op, 0.5); transform: rotate(45deg) translate(0, 0); }
  50%       { opacity: 1;             transform: rotate(45deg) translate(2px, 2px); }
}
@media (max-width: 768px) { .hero-scroll-cue { display: none; } }

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 4px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.925rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all 0.2s var(--ease-out);
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 4px 16px rgba(217,70,239,0.4), 0 1px 4px rgba(0,0,0,0.15);
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(217,70,239,0.5), 0 2px 8px rgba(0,0,0,0.15);
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.24);
  transform: translateY(-1px);
}
/* Hero-specific CTA — stronger than a ghost, distinct from nav primary */
.btn-hero {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.22);
  color: white;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-hero:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-arrow-right { transition: transform 0.2s; }
.btn:hover .btn-arrow-right { transform: translateX(4px); }

/* ─── Hero Right (product card) ─── */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Product Card ─── */
.hero-product-card {
  width: 100%;
  max-width: 438px;
  background: #10102a;             /* solid dark — reliable across all GPUs */
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-hero-card);
  transform-style: preserve-3d;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.hpc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hpc-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(217,70,239,0.32);
  border: 1px solid rgba(240,171,252,0.45);
  display: flex; align-items: center; justify-content: center;
  color: #f5d0fe;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(217,70,239,0.30);
}
.hpc-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  letter-spacing: -0.01em;
}
.hpc-sub {
  display: block;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.42);
  margin-top: 2px;
}
.hpc-sources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.hpc-source {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  font-size: 0.70rem;
  color: rgba(255,255,255,0.50);
  transition: all 0.2s;
  cursor: default;
}
.hpc-source:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.80);
}
.hpc-source svg { opacity: 0.7; }
.hpc-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 16px;
}
.hpc-signals {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.hpc-signal-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
}
.hpc-signal-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hpc-signal-dot.risk { background: var(--red); box-shadow: 0 0 8px rgba(239,68,68,0.7); }
.hpc-signal-dot.opportunity { background: var(--amber); box-shadow: 0 0 8px rgba(245,158,11,0.7); }
.hpc-signal-dot.positive { background: var(--green); box-shadow: 0 0 8px rgba(34,197,94,0.7); }
.hpc-signal-text { flex: 1; color: rgba(255,255,255,0.72); }
.hpc-signal-badge {
  padding: 2px 9px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  white-space: nowrap;
}
.hpc-signal-badge.risk { background: rgba(239,68,68,0.15); color: #fca5a5; }
.hpc-signal-badge.opp { background: rgba(245,158,11,0.15); color: #fde68a; }
.hpc-signal-badge.pos { background: rgba(34,197,94,0.15); color: #86efac; }
.hpc-status-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(217,70,239,0.12);
  border: 1px solid rgba(217,70,239,0.22);
  border-radius: 8px;
  font-size: 0.755rem;
  color: rgba(255,255,255,0.55);
}
.hpc-status-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #f0abfc;
  box-shadow: 0 0 8px rgba(240,171,252,0.7);
  animation: pulseDot 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ════════════════════════════════════════════════ */
.cinematic-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.cinematic-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92) translateY(14px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-zoom {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible, .reveal-left.visible, .reveal-right.visible,
.reveal-scale.visible, .reveal-zoom.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ════════════════════════════════════════════════
   SECTIONS — SHARED
   ════════════════════════════════════════════════ */
.section { padding: var(--section-y) 0; }

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--brand);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.section-subtitle {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 56px;
}

/* LUX CARD */
.lux-card {
  background: var(--surface);
  border: 1px solid var(--border-page);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}
.lux-card:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-page-hover);
  transform: translateY(-2px);
}
/* Override lux-card white surface inside dark sections */
.whyvia-section .lux-card {
  background: transparent;
  border: none;
  box-shadow: none;
}
.whyvia-section .lux-card:hover {
  background: transparent;
  box-shadow: none;
  border: none;
}
/* ─── Hero product card must dominate .lux-card's light surface ─── */
.hero-product-card.lux-card {
  background: #10102a;
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: var(--shadow-hero-card);
  border-radius: 20px;
}
.hero-product-card.lux-card:hover {
  background: #10102a;
  border-color: rgba(255,255,255,0.20);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.60),
    0 12px 32px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

/* ════════════════════════════════════════════════
   SIGNAL / OPENING STORY SECTION
   ════════════════════════════════════════════════ */
.signal-section {
  background: var(--bg-subtle);
  display: block;
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(40px, 5vw, 64px);
}
.signal-section > .container { position: relative; z-index: 1; }
/* ─── Section transition bridges ─── */
/* Dark-to-light: hero → signal */
.signal-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(6,6,14,0.18) 0%, rgba(6,6,14,0.06) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.signal-problem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(56px, 8vw, 110px);
  align-items: center;
  margin-bottom: clamp(96px, 12vw, 140px);
}

.signal-stat {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 10px;
}
.cipher-decode {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}
.signal-stat-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.signal-stat-sub {
  font-size: 0.95rem;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 28px;
}
.signal-tensions { display: flex; flex-direction: column; gap: 14px; }
.signal-tension {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.signal-tension-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.risk-dot { background: var(--red); }
.warn-dot { background: var(--amber); }
.crit-dot { background: var(--rose); }

/* Live Feed */
.sf-live-feed {
  background: #0e0e1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  font-family: 'JetBrains Mono', monospace;
  box-shadow: 0 20px 48px rgba(0,0,0,0.15);
}
.sf-feed-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.50);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.sf-live-indicator {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulseDot 1.5s ease-in-out infinite;
}
.sf-feed-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.58);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sf-feed-line:last-child { border-bottom: none; }
.sf-feed-time { color: rgba(255,255,255,0.45); min-width: 64px; font-size: 0.68rem; }
.sf-feed-ch {
  padding: 1px 7px;
  border-radius: 4px;
  font-size: 0.66rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  min-width: 42px;
  text-align: center;
}
.sf-ch-voice { background: rgba(192,38,211,0.18); color: #f5d0fe; }
.sf-ch-chat  { background: rgba(59,130,246,0.18);   color: #93c5fd; }
.sf-ch-email { background: rgba(16,185,129,0.18);  color: #6ee7b7; }
.sf-ch-sms   { background: rgba(245,158,11,0.18);  color: #fde68a; }
.sf-ch-crm   { background: rgba(239,68,68,0.18);   color: #fca5a5; }
.sf-feed-fade { opacity: 0.38; }

/* Signal Pivot */
.signal-pivot {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: clamp(96px, 12vw, 140px);
  justify-content: center;
  padding: clamp(48px, 6vw, 72px) 0;
  position: relative;
}
.signal-pivot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(217,70,239,0.07) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 20px;
}
.signal-pivot-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,70,239,0.25), transparent);
}
.signal-pivot-text {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  text-align: center;
  white-space: nowrap;
  position: relative;
}
.signal-pivot-text em {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: normal;
}

/* Signal Answer */
.signal-answer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(56px, 8vw, 110px);
  align-items: center;
  margin-bottom: clamp(96px, 12vw, 140px);
}
.signal-time-shift {
  display: flex;
  align-items: center;
  gap: 24px;
}
.signal-time { display: flex; flex-direction: column; gap: 5px; }
.signal-time-val { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.03em; }
.signal-time.old .signal-time-val { color: var(--red); text-decoration: line-through; opacity: 0.65; }
.signal-time.new .signal-time-val { color: var(--green); }
.signal-time-desc { font-size: 0.82rem; color: var(--text-secondary); }
.signal-time-arrow { color: var(--text-muted); flex-shrink: 0; }

/* Briefing preview */
.sf-briefing-preview {
  background: #0e0e1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0,0,0,0.15);
}
.sf-bp-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.755rem;
  font-weight: 600;
  color: rgba(255,255,255,0.60);
}
.sf-bp-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.sf-bp-private-badge {
  margin-left: auto;
  font-size: 0.67rem;
  font-weight: 700;
  color: #14b8a6;
  background: rgba(20,184,166,0.12);
  border: 1px solid rgba(20,184,166,0.28);
  border-radius: 5px;
  padding: 2px 7px;
  letter-spacing: 0.04em;
}
.sf-bp-summary {
  display: flex;
  gap: 24px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sf-bp-metric { font-size: 0.77rem; color: rgba(255,255,255,0.48); }
.sf-bp-metric strong { color: rgba(255,255,255,0.85); }
.sf-bp-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.68);
  font-size: 0.79rem;
}
.sf-bp-line:last-of-type { border-bottom: none; }
.sf-bp-icon {
  width: 20px; height: 20px;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700;
  flex-shrink: 0;
}
.sf-bp-alert .sf-bp-icon { background: rgba(239,68,68,0.2); color: #fca5a5; }
.sf-bp-warn  .sf-bp-icon { background: rgba(245,158,11,0.2); color: #fde68a; }
.sf-bp-good  .sf-bp-icon { background: rgba(34,197,94,0.2);  color: #86efac; }
.sf-bp-info  .sf-bp-icon { background: rgba(217,70,239,0.2); color: #f5d0fe; }
.sf-bp-tag {
  margin-left: auto;
  padding: 2px 9px;
  border-radius: 100px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.sf-tag-urgent { background: rgba(239,68,68,0.2); color: #fca5a5; }
.sf-tag-action { background: rgba(245,158,11,0.2); color: #fde68a; }
.sf-tag-ok     { background: rgba(34,197,94,0.2);  color: #86efac; }
.sf-tag-opp    { background: rgba(217,70,239,0.2); color: #f5d0fe; }
.sf-bp-ready {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.77rem;
  color: rgba(255,255,255,0.42);
}
.sf-bp-cta { color: #f0abfc; font-weight: 600; cursor: pointer; }

/* Signal Reveal */
.signal-reveal {
  text-align: center;
  padding: clamp(72px, 9vw, 110px) 0 0;
}
.signal-reveal-title {
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1;
}
.text-grad {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.signal-reveal-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 0;
  line-height: 1.75;
}




/* ════════════════════════════════════════════════
   JOURNEY SECTION
   ════════════════════════════════════════════════ */
.journey-section {
  background: var(--bg-page);
  position: relative;
  overflow: hidden;
  padding-top: clamp(48px, 6vw, 80px);
}
/* Light-to-light bridge: signal → journey */
.journey-section::after {
  z-index: 0;
}
.journey-section::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--bg-subtle) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
/* Light-to-dark bridge: journey bottom → whyvia */
.journey-section > .container::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent 0%, rgba(11,11,24,0.06) 100%);
  pointer-events: none;
  z-index: 0;
}
.journey-section > .container { position: relative; z-index: 1; }
.journey-section .section-title,
.journey-section .section-eyebrow,
.journey-section .section-subtitle { text-align: center; }
.journey-section .section-subtitle { margin: 0 auto 48px; }

/* Tabs */
.journey-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 64px;
  overflow-x: auto;
  padding-bottom: 4px;
  gap: 0;
}
.jp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 20px;
  border-radius: 10px;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
  color: var(--text-secondary);
}
.jp-num {
  font-size: 0.68rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.jp-name {
  font-size: 0.845rem;
  font-weight: 600;
  transition: color 0.2s;
}
.jp-step:hover .jp-num  { color: var(--brand); }
.jp-step:hover .jp-name { color: var(--text-primary); }
.jp-step.active {
  background: rgba(217,70,239,0.07);
  border: 1px solid rgba(217,70,239,0.12);
}
.jp-step.active .jp-num  { color: var(--brand); }
.jp-step.active .jp-name { color: var(--text-primary); }
.jp-line {
  flex: 1;
  height: 1px;
  background: var(--border-page);
  min-width: 16px;
  max-width: 36px;
}

/* Stages */
.j-stage { display: none; }
.j-stage.active { display: block; animation: stageIn 0.35s var(--ease-out); }
@keyframes stageIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Side-by-side layout: text left, visual right */
.j-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .j-split { grid-template-columns: 1fr; gap: 20px; }
}

.j-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.j-tagline {
  font-size: 0.9rem;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 12px;
}
.j-stage[data-accent="blue"]   .j-tagline { color: #3b82f6; }
.j-stage[data-accent="emerald"].j-tagline { color: #10b981; }
.j-stage[data-accent="amber"]  .j-tagline { color: #f59e0b; }
.j-stage[data-accent="rose"]   .j-tagline { color: #f43f5e; }
.j-stage[data-accent="teal"]   .j-tagline { color: #14b8a6; }
.j-text > p {
  font-size: 0.935rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 14px;
}
.j-text > p strong { color: var(--text-primary); font-weight: 600; }
.j-visual {
  padding: 22px;
  background: #0e0e1a;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Landscape visual — dark glassmorphism treatment */
.la-grid { display: flex; flex-direction: column; gap: 10px; }
.la-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  border-left: 3px solid transparent;
  transition: background 0.25s, border-color 0.25s;
}
.la-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
.la-card-risk { border-left-color: var(--red); }
.la-card-ok   { border-left-color: var(--green); }
.la-card-warn { border-left-color: var(--amber); }
.la-card-name { font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.88); min-width: 130px; }
.la-card-vol  { font-size: 0.74rem; color: rgba(255,255,255,0.45); flex: 1; }
.la-card-bar  { width: 90px; height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.la-card-fill { height: 100%; border-radius: 2px; }
.la-fill-risk { background: var(--red); }
.la-fill-ok   { background: var(--green); }
.la-fill-warn { background: var(--amber); }
.la-card-badge {
  padding: 2px 9px;
  border-radius: 100px;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.la-card-badge.risk { background: rgba(239,68,68,0.15); color: #fca5a5; }
.la-card-badge.ok   { background: rgba(34,197,94,0.15);  color: #86efac; }
.la-card-badge.warn { background: rgba(245,158,11,0.15); color: #fde68a; }

/* Chat visual */
.chat-anim { display: flex; flex-direction: column; gap: 12px; }
.ca-msg {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.55;
  max-width: 88%;
}
.user-ca {
  background: rgba(217,70,239,0.12);
  border: 1px solid rgba(217,70,239,0.20);
  color: rgba(255,255,255,0.88);
  align-self: flex-end;
  border-radius: 12px 12px 3px 12px;
}
.ai-ca {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.60);
  border-radius: 12px 12px 12px 3px;
  padding: 12px 16px;
}
.ca-avatar {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--brand);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.ca-typing { display: flex; gap: 3px; align-items: center; min-height: 20px; }
.ca-typing span {
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typingBounce 1s ease-in-out infinite;
}
.ca-typing span:nth-child(2) { animation-delay: 0.15s; }
.ca-typing span:nth-child(3) { animation-delay: 0.30s; }
@keyframes typingBounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
}
.ca-response { display: none; font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.65); }
.ca-response.show { display: block; }

/* Pipeline visual */
.pipeline-anim {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.pa-step {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; text-align: center;
}
.pa-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(217,70,239,0.14);
  border: 1px solid rgba(217,70,239,0.22);
  display: flex; align-items: center; justify-content: center;
  color: #f0abfc;
}
.flow-ic   { background: rgba(59,130,246,0.14);  border-color: rgba(59,130,246,0.22);  color: #93c5fd; }
.action-ic { background: rgba(16,185,129,0.14);  border-color: rgba(16,185,129,0.22);  color: #6ee7b7; }
.pa-step span { font-size: 0.84rem; font-weight: 700; color: rgba(255,255,255,0.88); }
.pa-step small { font-size: 0.71rem; color: rgba(255,255,255,0.45); }
.pa-arrow { color: rgba(255,255,255,0.25); margin: 0 8px; }

/* Review visual */
.review-anim { display: flex; flex-direction: column; gap: 8px; }
.ra-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.875rem;
}
.ra-item.approved {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.18);
  color: #86efac;
}
.ra-item.pending {
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.16);
  color: rgba(255,255,255,0.78);
}
.ra-badge {
  margin-left: auto;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
}
.ra-badge.safe            { background: rgba(34,197,94,0.15);  color: #86efac; }
.ra-badge.needs-approval  { background: rgba(245,158,11,0.15); color: #fde68a; }

/* Deploy visual */
.da-progress-track {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 16px;
}
.da-progress-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--brand), #e879f9);
  width: 0%;
  transition: width 0.25s;
  box-shadow: 0 0 12px rgba(217,70,239,0.35);
}
.da-stats { display: flex; gap: 24px; margin-bottom: 16px; }
.da-stat { display: flex; flex-direction: column; gap: 2px; }
.da-label { font-size: 0.70rem; color: rgba(255,255,255,0.40); text-transform: uppercase; letter-spacing: 0.05em; }
.da-value { font-size: 1.1rem; font-weight: 700; color: rgba(255,255,255,0.90); font-family: 'JetBrains Mono', monospace; }
.da-value.accent   { color: var(--brand); }
.da-value.warn-val { color: var(--amber); }
.da-of { font-size: 0.73rem; color: var(--text-muted); }
.da-controls { display: flex; gap: 8px; }
.da-ctrl {
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 0.79rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: all 0.2s;
}
.da-ctrl:hover { border-color: rgba(217,70,239,0.40); color: #f0abfc; }
.da-ctrl.pause { border-color: rgba(245,158,11,0.40); color: #fde68a; }

/* Loop visual */
.loop-anim { text-align: center; }
.loop-infinity { width: 100%; max-width: 260px; height: 80px; }
.loop-caption { display: block; font-size: 0.79rem; color: rgba(255,255,255,0.45); margin-top: 8px; }

/* Insight */
.j-insight {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(217,70,239,0.08);
  border: 1px solid rgba(217,70,239,0.16);
  border-radius: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.6;
}
.j-insight-svg { color: #f0abfc; flex-shrink: 0; }

/* ════════════════════════════════════════════════
   LAYERS SECTION — Dark elevated advantage cards
   ════════════════════════════════════════════════ */
.whyvia-section {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

/* Mesh background blobs */
.layer-mesh-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.lmb-1 {
  position: absolute;
  width: 650px; height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 70%);
  top: -250px; right: -200px;
  animation: meshA 26s ease-in-out infinite;
}
.lmb-2 {
  position: absolute;
  width: 550px; height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,70,239,0.06) 0%, transparent 70%);
  bottom: -200px; left: -150px;
  animation: meshB 30s ease-in-out infinite;
}

/* Section header — light on dark */
.whyvia-section .section-eyebrow,
.whyvia-section .section-title,
.whyvia-section .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.whyvia-section .section-eyebrow { color: rgba(240,171,252,0.7); }
.whyvia-section .section-title { color: rgba(255,255,255,0.95); }
.whyvia-section .section-subtitle { color: rgba(255,255,255,0.50); }

/* ─── Why VIA — Interactive Tabs ─── */
.wv-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.wv-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
  font-family: inherit;
  color: rgba(255,255,255,0.50);
}
.wv-tab::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.10);
  opacity: 0;
  transition: opacity 0.35s;
}
.wv-tab:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}
.wv-tab.active {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.90);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.wv-tab.active::before { opacity: 1; }

/* Tab color accents */
.wv-tab[data-color="blue"].active    { border-color: rgba(59,130,246,0.30); }
.wv-tab[data-color="blue"].active::before    { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.wv-tab[data-color="blue"].active .wv-tab-icon { color: #60a5fa; }

.wv-tab[data-color="violet"].active  { border-color: rgba(217,70,239,0.30); }
.wv-tab[data-color="violet"].active::before  { background: linear-gradient(90deg, #d946ef, #f0abfc); }
.wv-tab[data-color="violet"].active .wv-tab-icon { color: #f0abfc; }

.wv-tab[data-color="rose"].active    { border-color: rgba(244,63,94,0.30); }
.wv-tab[data-color="rose"].active::before    { background: linear-gradient(90deg, #f43f5e, #fb7185); }
.wv-tab[data-color="rose"].active .wv-tab-icon { color: #fb7185; }

.wv-tab[data-color="emerald"].active { border-color: rgba(16,185,129,0.30); }
.wv-tab[data-color="emerald"].active::before { background: linear-gradient(90deg, #10b981, #6ee7b7); }
.wv-tab[data-color="emerald"].active .wv-tab-icon { color: #6ee7b7; }

.wv-tab[data-color="teal"].active    { border-color: rgba(20,184,166,0.30); }
.wv-tab[data-color="teal"].active::before    { background: linear-gradient(90deg, #14b8a6, #5eead4); }
.wv-tab[data-color="teal"].active .wv-tab-icon { color: #5eead4; }

.wv-tab-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.08em;
}
.wv-tab.active .wv-tab-num { color: rgba(255,255,255,0.30); }
.wv-tab-icon {
  width: 20px; height: 20px;
  color: rgba(255,255,255,0.35);
  transition: color 0.35s;
  flex-shrink: 0;
}
.wv-tab-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* ─── Detail Panel ─── */
.wv-panels {
  position: relative;
  min-height: 220px;
}
.wv-panel {
  display: none;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  padding: 40px 44px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.22);
}
.wv-panel.active {
  display: grid;
  animation: wvPanelIn 0.5s var(--ease-out) both;
}
.wv-panel.exiting {
  display: grid;
  animation: wvPanelOut 0.3s var(--ease-out) forwards;
}
@keyframes wvPanelIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes wvPanelOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to   { opacity: 0; transform: translateY(-10px) scale(0.98); }
}

/* Panel color accent top stripe */
.wv-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  opacity: 0.7;
}
.wv-panel[data-color="blue"]::before    { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.wv-panel[data-color="violet"]::before  { background: linear-gradient(90deg, #d946ef, #f0abfc); }
.wv-panel[data-color="rose"]::before    { background: linear-gradient(90deg, #f43f5e, #fb7185); }
.wv-panel[data-color="emerald"]::before { background: linear-gradient(90deg, #10b981, #6ee7b7); }
.wv-panel[data-color="teal"]::before    { background: linear-gradient(90deg, #14b8a6, #5eead4); }

.wv-panel-left h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.94);
  margin-bottom: 6px;
}
.wv-panel-tagline {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.wv-panel[data-color="blue"]    .wv-panel-tagline { color: rgba(96,165,250,0.85); }
.wv-panel[data-color="violet"]  .wv-panel-tagline { color: rgba(240,171,252,0.80); }
.wv-panel[data-color="rose"]    .wv-panel-tagline { color: rgba(251,113,133,0.85); }
.wv-panel[data-color="emerald"] .wv-panel-tagline { color: rgba(110,231,183,0.80); }
.wv-panel[data-color="teal"]    .wv-panel-tagline { color: rgba(94,234,212,0.80); }

.wv-panel-desc {
  font-size: 0.92rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.52);
}
.wv-panel-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  border-left: 1px solid rgba(255,255,255,0.06);
  padding-left: 32px;
}
.wv-panel-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.55;
}
.wv-panel-features li::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.wv-panel[data-color="blue"]    .wv-panel-features li::before { background: rgba(96,165,250,0.6); }
.wv-panel[data-color="violet"]  .wv-panel-features li::before { background: rgba(240,171,252,0.5); }
.wv-panel[data-color="rose"]    .wv-panel-features li::before { background: rgba(251,113,133,0.5); }
.wv-panel[data-color="emerald"] .wv-panel-features li::before { background: rgba(110,231,183,0.5); }
.wv-panel[data-color="teal"]    .wv-panel-features li::before { background: rgba(94,234,212,0.5); }

/* Progress dots */
.wv-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.wv-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.wv-dot:hover { background: rgba(255,255,255,0.25); }
.wv-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--brand);
}

/* ════════════════════════════════════════════════
   TRUST SECTION
   ════════════════════════════════════════════════ */
.trust-section {
  background: var(--bg-subtle);
  position: relative;
  overflow: hidden;
}
/* Dark-to-light bridge: whyvia → trust */
.trust-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(6,6,14,0.14) 0%, rgba(6,6,14,0.04) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.trust-section > .container { position: relative; z-index: 1; }
.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.trust-text .section-eyebrow { color: var(--brand); }
.trust-text .section-title { font-size: clamp(1.9rem, 3.5vw, 2.6rem); color: var(--text-primary); }
.trust-text .section-subtitle { color: var(--text-secondary); }
.trust-text .section-subtitle strong { color: var(--text-primary); }
.trust-features { display: flex; flex-direction: column; gap: 32px; }
.tf { display: flex; gap: 14px; align-items: flex-start; }
.tf-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(217,70,239,0.08);
  border: 1px solid rgba(217,70,239,0.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}
.tf h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.tf p  { font-size: 0.875rem; line-height: 1.62; color: var(--text-secondary); }

/* Trust boundary card — dark elevated */
.trust-boundary {
  background: #0c0c1a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 28px 26px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.tb-perimeter-ring {
  position: absolute;
  inset: 6px;
  border: 1.5px dashed rgba(52,211,153,0.12);
  border-radius: 16px;
  pointer-events: none;
  animation: perimPulse 5s ease-in-out infinite;
}
.tb-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 22px;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  position: relative;
  z-index: 2;
}
.tb-header svg { color: rgba(52,211,153,0.7); }
.tb-status {
  margin-left: auto;
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600; color: rgba(52,211,153,0.85);
  letter-spacing: 0.04em;
}
.tb-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(52,211,153,0.8);
  animation: pulseDot 2s infinite;
}

/* Flow steps */
.tb-flow {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.tb-step {
  display: flex;
  align-items: stretch;
  gap: 12px;
}
.tb-step-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.58rem;
  font-weight: 800;
  color: rgba(255,255,255,0.35);
  flex-shrink: 0;
  margin-top: 14px;
  font-family: 'JetBrains Mono', monospace;
}
.tb-step-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: border-color 0.3s;
}
.tb-step-card:hover { border-color: rgba(255,255,255,0.12); }

/* Step VIA accent */
.tb-step-via {
  background: rgba(217,70,239,0.05);
  border-color: rgba(217,70,239,0.14);
}
.tb-step-via:hover { border-color: rgba(217,70,239,0.25); }

/* Step icons */
.tb-step-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tb-icon-ingest {
  background: rgba(59,130,246,0.10);
  border: 1px solid rgba(59,130,246,0.16);
  color: rgba(96,165,250,0.9);
}
.tb-icon-via {
  background: var(--brand);
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 0 20px rgba(217,70,239,0.25);
}
.tb-icon-store {
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.16);
  color: rgba(110,231,183,0.9);
}

/* Step text */
.tb-step-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.tb-step-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
}
.tb-step-detail {
  font-size: 0.70rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}
.tb-step-badge {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(217,70,239,0.12);
  border: 1px solid rgba(217,70,239,0.20);
  color: rgba(240,171,252,0.8);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Pipe connectors */
.tb-pipe {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 0 3px 32px;
}
.tb-pipe-line {
  width: 1px; height: 14px;
  background: rgba(52,211,153,0.15);
}
.tb-pipe-lock {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(52,211,153,0.7);
}
.tb-pipe-label {
  font-size: 0.56rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(52,211,153,0.35);
}

/* Blocked section at bottom */
.tb-blocked {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 16px;
  background: rgba(239,68,68,0.04);
  border: 1px solid rgba(239,68,68,0.12);
  border-radius: 10px;
  position: relative;
  z-index: 2;
}
.tb-blocked-line {
  display: none;
}
.tb-blocked-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(239,68,68,0.7);
  flex-shrink: 0;
}
.tb-blocked-text {
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(239,68,68,0.65);
  line-height: 1.5;
}

/* Compliance strip — dark treatment */
.trust-compliance-strip { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.tc-item {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--border-page);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.25s;
}
.tc-item:hover { border-color: rgba(52,211,153,0.50); color: var(--text-primary); }
.tc-item svg { color: #10b981; }

/* ════════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════════ */
.cta-section {
  background: var(--bg-hero);
  padding: var(--section-y) 0;
}
.cta-block {
  padding: clamp(48px, 6vw, 80px);
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}
.cta-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-m1 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,70,239,0.18) 0%, transparent 65%);
  top: -180px; right: -120px;
  animation: ctaMesh1 18s ease-in-out infinite;
}
.cta-m2 {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,121,249,0.12) 0%, transparent 65%);
  bottom: -140px; left: -80px;
  animation: ctaMesh2 24s ease-in-out infinite;
}
@keyframes ctaMesh1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(-40px, 60px) scale(1.08); }
  66%  { transform: translate(50px,-30px) scale(0.95); }
}
@keyframes ctaMesh2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(60px,-50px) scale(1.10); }
}
.cta-block::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 35%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.025), transparent);
  animation: ctaScan 8s linear infinite;
  pointer-events: none;
}
@keyframes ctaScan {
  0%   { left: -35%; }
  100% { left: 120%; }
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: rgba(255,255,255,0.95);
  margin-bottom: 16px;
}

.cta-content > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.52);
  margin-bottom: 36px;
  line-height: 1.72;
}
.cta-form { display: flex; flex-direction: column; gap: 16px; }
.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cta-field { display: flex; flex-direction: column; gap: 6px; }
.cta-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.02em;
}
.cta-field input, .cta-field select {
  padding: 11px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 10px;
  font-size: 0.925rem;
  font-family: inherit;
  color: rgba(255,255,255,0.90);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.cta-field input::placeholder { color: rgba(255,255,255,0.45); }
.cta-field select option { background: #1a1a2e; color: white; }
.cta-field input:focus, .cta-field select:focus {
  border-color: rgba(217,70,239,0.55);
  background: rgba(255,255,255,0.09);
}
.cta-submit { align-self: flex-start; }
.cta-form-success {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: rgba(34,197,94,0.11);
  border: 1px solid rgba(34,197,94,0.24);
  border-radius: 10px;
  color: #86efac;
  font-size: 0.9rem; font-weight: 500;
}
.cta-form-error {
  padding: 14px 18px;
  background: rgba(239,68,68,0.11);
  border: 1px solid rgba(239,68,68,0.24);
  border-radius: 10px;
  color: #fca5a5;
  font-size: 0.9rem;
}
.cta-note { font-size: 0.79rem; color: rgba(255,255,255,0.45); margin-top: 12px; }

/* ─── Invalid Form Fields ─── */
.cta-field input:invalid:not(:placeholder-shown),
.cta-field select:invalid:not(:placeholder-shown) {
  border-color: rgba(239,68,68,0.50);
  background: rgba(239,68,68,0.04);
}
.cta-field input:invalid:not(:placeholder-shown):focus,
.cta-field select:invalid:not(:placeholder-shown):focus {
  border-color: rgba(239,68,68,0.65);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.08);
}
.cta-field input:valid:not(:placeholder-shown) {
  border-color: rgba(52,211,153,0.35);
}

/* ─── Left-aligned Title Utilities (subpages) ─── */
.left-title { text-align: left; }
.left-sub   { text-align: left; }

/* ─── Proof / Subpage Links ─── */
.proof-link {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(217,70,239,0.35);
  transition: color 0.2s, text-decoration-color 0.2s;
}
.proof-link:hover {
  color: var(--brand-light);
  text-decoration-color: var(--brand);
}

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
.footer {
  background: #04040a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: clamp(60px, 6vw, 80px) 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.logo-mark.sm { display: flex; align-items: center; }
.footer-tagline {
  font-size: 0.77rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}
.footer-philosophy {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
}
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.52);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.90); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p { font-size: 0.79rem; color: rgba(255,255,255,0.45); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.79rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ════════════════════════════════════════════════
   MAGNETIC BUTTON (subtle)
   ════════════════════════════════════════════════ */
.magnetic { position: relative; }

/* ════════════════════════════════════════════════
   FOCUS-VISIBLE — keyboard accessibility
   ════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Remove outline for mouse/touch users */
:focus:not(:focus-visible) {
  outline: none;
}
/* Skip-to-content (screen reader utility) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.sr-only:focus {
  position: fixed;
  top: 8px; left: 8px;
  width: auto; height: auto;
  padding: 12px 20px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--brand);
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 8px;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* ════════════════════════════════════════════════
   AUDIENCE / WHO IS VIA FOR
   ════════════════════════════════════════════════ */
.audience-section {
  background: var(--bg-page);
  position: relative;
  overflow: hidden;
}
/* Light-to-dark bridge: audience → cta */
.audience-section::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent 0%, rgba(6,6,14,0.08) 100%);
  pointer-events: none;
  z-index: 0;
}
.audience-section .section-title,
.audience-section .section-subtitle {
  text-align: center;
}
.audience-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
.audience-card {
  position: relative;
  padding: 40px 32px 36px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-page);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}
.audience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.audience-card--ops::before { background: radial-gradient(ellipse at 30% 0%, rgba(59,130,246,0.06) 0%, transparent 70%); }
.audience-card--qa::before  { background: radial-gradient(ellipse at 30% 0%, rgba(16,185,129,0.06) 0%, transparent 70%); }
.audience-card--cx::before  { background: radial-gradient(ellipse at 30% 0%, rgba(217,70,239,0.06) 0%, transparent 70%); }
.audience-card:hover::before { opacity: 1; }

/* Gradient accent bar */
.aud-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.35s;
}
.audience-card--ops .aud-accent { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.audience-card--qa  .aud-accent { background: linear-gradient(90deg, #10b981, #34d399); }
.audience-card--cx  .aud-accent { background: linear-gradient(90deg, #d946ef, #f0abfc); }
.audience-card:hover .aud-accent { opacity: 1; }

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.06);
  border-color: var(--border-page-hover);
}
.audience-card--ops:hover { box-shadow: 0 12px 40px rgba(59,130,246,0.10), 0 0 0 1px rgba(59,130,246,0.12); }
.audience-card--qa:hover  { box-shadow: 0 12px 40px rgba(16,185,129,0.10), 0 0 0 1px rgba(16,185,129,0.12); }
.audience-card--cx:hover  { box-shadow: 0 12px 40px rgba(217,70,239,0.10), 0 0 0 1px rgba(217,70,239,0.12); }

.aud-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: box-shadow 0.35s;
}
.aud-icon-ops {
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.16);
  color: #3b82f6;
}
.audience-card--ops:hover .aud-icon-ops { box-shadow: 0 4px 16px rgba(59,130,246,0.18); }
.aud-icon-qa {
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.16);
  color: #10b981;
}
.audience-card--qa:hover .aud-icon-qa { box-shadow: 0 4px 16px rgba(16,185,129,0.18); }
.aud-icon-cx {
  background: rgba(217,70,239,0.08);
  border: 1px solid rgba(217,70,239,0.16);
  color: var(--brand);
}
.audience-card--cx:hover .aud-icon-cx { box-shadow: 0 4px 16px rgba(217,70,239,0.18); }

/* Label above title */
.aud-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.audience-card--ops .aud-label { color: #3b82f6; }
.audience-card--qa  .aud-label { color: #10b981; }
.audience-card--cx  .aud-label { color: var(--brand); }

.audience-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.audience-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

/* Feature highlights */
.aud-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border-page);
  padding-top: 16px;
}
.aud-highlights li {
  position: relative;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-secondary);
  padding-left: 18px;
  margin-bottom: 6px;
}
.aud-highlights li:last-child { margin-bottom: 0; }
.aud-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px; height: 6px;
  border-radius: 50%;
}
.audience-card--ops .aud-highlights li::before { background: #3b82f6; }
.audience-card--qa  .aud-highlights li::before { background: #10b981; }
.audience-card--cx  .aud-highlights li::before { background: var(--brand); }

/* ─── Industry Strip ─── */
.industry-strip {
  text-align: center;
  margin-top: 56px;
  margin-bottom: 72px;
}
.industry-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-page);
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.industry-tag svg {
  color: var(--brand);
  flex-shrink: 0;
}
.industry-tag:hover {
  border-color: rgba(217,70,239,0.25);
  box-shadow: 0 2px 12px rgba(217,70,239,0.08);
  transform: translateY(-1px);
}

/* ─── FAQ ─── */
.faq-block {
  max-width: 720px;
  margin: 0 auto;
}
.faq-heading {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 32px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--bg-subtle);
  border: 1px solid var(--border-page);
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover {
  border-color: var(--border-page-hover);
}
.faq-item[open] {
  border-color: rgba(217,70,239,0.18);
  box-shadow: 0 2px 12px rgba(217,70,239,0.06);
}
/* Smooth accordion animation */
.faq-item .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
}
.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
}
.faq-item .faq-answer > div {
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: '\2212';
  color: var(--brand);
}
.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.875rem;
  line-height: 1.72;
  color: var(--text-secondary);
}
.faq-item p a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-item p a:hover {
  color: var(--brand-dark);
}

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .wv-tabs { gap: 6px; }
  .wv-tab { padding: 10px 14px; }
  .wv-tab-label { font-size: 0.74rem; }
  .wv-panel { grid-template-columns: 1fr; gap: 28px; padding: 32px 28px; }
  .wv-panel-features { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; }
  .trust-layout { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }

  .hero-content.hero-split {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 48px;
    padding-bottom: 60px;
  }
  .hero-right { order: -1; }
  .hero-product-card { max-width: 100%; }

  .signal-problem, .signal-answer { grid-template-columns: 1fr; gap: 40px; }
  .signal-pivot-text { white-space: normal; font-size: 1.5rem; }
  .signal-pivot { gap: 16px; }
  .wv-tabs { flex-direction: column; align-items: stretch; }
  .wv-tab { justify-content: flex-start; }
  .wv-tab-label { white-space: normal; }

  .journey-progress { justify-content: flex-start; }

  .audience-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-form-row { grid-template-columns: 1fr; }

  /* Mobile: replace lost canvas effects with subtle gradient pulses */
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(217,70,239,0.08) 0%, transparent 70%);
    animation: mobilePulse 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
  }
  @keyframes mobilePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }
  /* Reinforce journey visuals on mobile */
  .j-visual {
    border-color: rgba(255,255,255,0.13);
    box-shadow: 0 8px 32px rgba(0,0,0,0.20);
  }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.6rem; }
}

/* ════════════════════════════════════════════════
   REDUCED MOTION
   ════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-canvas, .section-canvas { display: none !important; }
  .reveal, .cinematic-reveal, .reveal-scale, .reveal-left, .reveal-right, .reveal-zoom { opacity: 1 !important; transform: none !important; }
  .morph-exit, .morph-enter { opacity: 1 !important; transform: none !important; }
  .scroll-progress { display: none !important; }
}
