/* ============================================================
   FUGUTRADER V3 — LIGHT FUTURISTIC THEME
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* BACKGROUNDS */
  --v2-bg-deepest: #f0f1f7;
  --v2-bg-deep: #f5f6fa;
  --v2-bg-mid: #ffffff;
  --v2-bg-card: #ffffff;

  /* BORDERS */
  --v2-border: #dfe1ea;
  --v2-border-light: #c8cad6;

  /* ACCENT — TEAL/CYAN (darker for light bg) */
  --v2-cyan: #0097a7;
  --v2-cyan-dim: #00798a;
  --v2-cyan-glow: rgba(0, 151, 167, 0.25);
  --v2-cyan-subtle: rgba(0, 151, 167, 0.07);
  --v2-cyan-bright: #00b8cc;

  /* SECONDARY — PURPLE */
  --v2-purple: #6a3de8;
  --v2-purple-glow: rgba(106, 61, 232, 0.2);

  /* TEXT */
  --v2-text-primary: #1a1b2e;
  --v2-text-secondary: #4a4c65;
  --v2-text-muted: #8a8ca0;

  /* SEMANTIC */
  --v2-green: #00a65a;
  --v2-red: #e0243e;

  /* GLASS — light variant */
  --v2-glass-bg: rgba(255, 255, 255, 0.65);
  --v2-glass-border: rgba(0, 151, 167, 0.12);
  --v2-glass-highlight: rgba(255, 255, 255, 0.8);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--v2-bg-deepest);
  color: var(--v2-text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ===== ANIMATED GRADIENT MESH (body background) ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(106, 61, 232, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0, 151, 167, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0, 151, 167, 0.02) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ===== GRAIN TEXTURE ===== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.015;
}

/* ===== GRID OVERLAY ===== */
.v2-grid-overlay {
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(200, 202, 214, 0.2) 59px, rgba(200, 202, 214, 0.2) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(200, 202, 214, 0.2) 59px, rgba(200, 202, 214, 0.2) 60px);
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.3;
  animation: gridScroll 60s linear infinite;
}

@keyframes gridScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

/* ===== PARTICLE CANVAS ===== */
.v2-particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== UTILITIES ===== */
.v2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.v2-container--sm {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 20px;
}

.v2-container--md {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.v2-text-center { text-align: center; }

.v2-text-cyan { color: var(--v2-cyan); }

.v2-text-gradient {
  background: linear-gradient(135deg, var(--v2-cyan), var(--v2-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.v2-font-mono {
  font-family: 'JetBrains Mono', monospace;
}

.v2-font-display {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */

@keyframes v2FadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes v2FadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes v2FadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes v2FadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes v2ScaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes v2BlurIn {
  from { opacity: 0; filter: blur(10px); }
  to { opacity: 1; filter: blur(0); }
}

@keyframes v2NeonPulse {
  0%, 100% { box-shadow: 0 0 16px var(--v2-cyan-glow), 0 0 32px rgba(0, 151, 167, 0.08); }
  50% { box-shadow: 0 0 24px var(--v2-cyan-glow), 0 0 48px rgba(0, 151, 167, 0.15); }
}

@keyframes v2Shimmer {
  0% { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(200%) skewX(-15deg); }
}

@keyframes v2PulseRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}

@keyframes v2DotSweep {
  0% { left: 0; }
  100% { left: 100%; }
}

@keyframes v2Float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes morphBlob {
  0%, 100% { border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%; transform: rotate(0deg) scale(1); }
  25% { border-radius: 50% 50% 40% 60% / 40% 60% 40% 60%; transform: rotate(90deg) scale(1.1); }
  50% { border-radius: 60% 40% 50% 50% / 50% 50% 60% 40%; transform: rotate(180deg) scale(1); }
  75% { border-radius: 40% 60% 60% 40% / 60% 40% 50% 50%; transform: rotate(270deg) scale(1.05); }
}

@keyframes v2TypeCursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes v2DataFlow {
  0% { background-position: 0 0; }
  100% { background-position: 0 40px; }
}

@keyframes v2ScanLine {
  0% { left: -100%; }
  100% { left: 200%; }
}

@keyframes v2DrawLine {
  from { stroke-dashoffset: 1000; }
  to { stroke-dashoffset: 0; }
}

@keyframes v2RotateBorder {
  from { --angle: 0deg; }
  to { --angle: 360deg; }
}

@keyframes v2RadarPulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(3); opacity: 0; }
}

@keyframes v2CheckDraw {
  0% { stroke-dashoffset: 60; }
  100% { stroke-dashoffset: 0; }
}

@keyframes v2ParticleBurst {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(1); opacity: 0; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes shakeBox {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

@keyframes v2HexPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 151, 167, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(0, 151, 167, 0); }
}

@keyframes v2SlideOutLeft {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-60px); }
}

@keyframes v2SlideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   SCROLL ANIMATIONS (data-v2-anim)
   ============================================================ */

[data-v2-anim] {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-v2-anim="fade-up"] { transform: translateY(40px); }
[data-v2-anim="fade-down"] { transform: translateY(-40px); }
[data-v2-anim="fade-left"] { transform: translateX(-40px); }
[data-v2-anim="fade-right"] { transform: translateX(40px); }
[data-v2-anim="scale"] { transform: scale(0.9); }
[data-v2-anim="blur"] { filter: blur(10px); transform: translateY(20px); }

[data-v2-anim].v2-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
  filter: blur(0);
}

/* ============================================================
   GLASSMORPHISM PATTERN (Light)
   ============================================================ */

.v2-glass {
  background: var(--v2-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--v2-glass-border);
  border-radius: 16px;
  position: relative;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.v2-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--v2-glass-highlight), transparent 50%);
  pointer-events: none;
}

.v2-glass:hover {
  border-color: rgba(0, 151, 167, 0.25);
  box-shadow: 0 8px 32px rgba(0, 151, 167, 0.06);
}

/* ============================================================
   NEON CTA BUTTONS
   ============================================================ */

.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.v2-btn--primary {
  background: linear-gradient(135deg, var(--v2-cyan), var(--v2-cyan-bright));
  color: #fff;
  box-shadow: 0 0 16px var(--v2-cyan-glow), 0 4px 12px rgba(0, 0, 0, 0.08);
  animation: v2NeonPulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.v2-btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-15deg);
  animation: v2Shimmer 3s ease-in-out infinite;
  z-index: -1;
}

.v2-btn--primary:hover {
  background: linear-gradient(135deg, var(--v2-cyan-bright), var(--v2-cyan));
  box-shadow: 0 0 24px var(--v2-cyan-glow), 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.v2-btn--secondary {
  background: transparent;
  color: var(--v2-cyan);
  border: 2px solid rgba(0, 151, 167, 0.35);
}

.v2-btn--secondary:hover {
  background: rgba(0, 151, 167, 0.06);
  border-color: var(--v2-cyan);
  box-shadow: 0 0 16px rgba(0, 151, 167, 0.1);
}

.v2-btn--sm { height: 40px; padding: 0 20px; font-size: 14px; }
.v2-btn--md { height: 48px; padding: 0 28px; font-size: 16px; }
.v2-btn--lg { height: 56px; padding: 0 36px; font-size: 18px; }
.v2-btn--xl { height: 64px; padding: 0 48px; font-size: 20px; border-radius: 16px; }

.v2-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  animation: none;
}

.v2-btn:disabled::before {
  animation: none;
}

/* ============================================================
   ANIMATED DIVIDER
   ============================================================ */

.v2-divider {
  position: relative;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--v2-border), transparent);
  overflow: visible;
}

.v2-divider::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--v2-cyan);
  box-shadow: 0 0 10px var(--v2-cyan), 0 0 20px var(--v2-cyan-glow);
  animation: v2DotSweep 4s ease-in-out infinite;
}

/* ============================================================
   CUSTOM CURSOR (desktop only)
   ============================================================ */

.v2-cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--v2-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.1s ease;
}

.v2-cursor-glow {
  position: fixed;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(0, 151, 167, 0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
  filter: blur(2px);
}

.v2-cursor-glow--hover {
  width: 60px;
  height: 60px;
}

/* ============================================================
   STICKY NAVBAR
   ============================================================ */

.v2-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.v2-navbar--scrolled {
  background: rgba(245, 246, 250, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--v2-border);
  padding: 12px 24px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.v2-navbar__logo {
  height: 36px;
  width: auto;
  transition: filter 0.3s ease;
}

/* Invert logo for light background */
.v2-navbar__logo,
.v2-hero__logo,
.v2-footer__logo {
  filter: brightness(0) saturate(100%) invert(15%) sepia(10%) saturate(500%) hue-rotate(200deg);
}

.v2-navbar__logo:hover {
  filter: brightness(0) saturate(100%) invert(15%) sepia(10%) saturate(500%) hue-rotate(200deg) drop-shadow(0 0 6px var(--v2-cyan-glow));
}

.v2-navbar__cta {
  display: none;
}

.v2-navbar__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.v2-navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--v2-text-secondary);
  transition: all 0.3s ease;
}

.v2-navbar__mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--v2-border);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.v2-navbar__mobile-menu--open {
  display: block;
}

/* ============================================================
   SECTION SPACING
   ============================================================ */

.v2-section {
  padding: 60px 20px;
  position: relative;
  z-index: 2;
}

.v2-section--dark {
  background: rgba(235, 237, 245, 0.5);
}

.v2-section-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--v2-text-primary);
}

.v2-section-sub {
  font-size: 18px;
  color: var(--v2-text-secondary);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ============================================================
   HERO
   ============================================================ */

.v2-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Floating orbs — softer for light theme */
.v2-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: morphBlob 20s ease-in-out infinite;
}

.v2-hero__orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 151, 167, 0.06);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.v2-hero__orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(106, 61, 232, 0.05);
  bottom: 10%;
  right: -5%;
  animation-delay: -7s;
}

.v2-hero__orb--3 {
  width: 300px;
  height: 300px;
  background: rgba(0, 151, 167, 0.04);
  top: 40%;
  left: 60%;
  animation-delay: -14s;
}

.v2-hero__logo {
  width: 180px;
  margin-bottom: 32px;
  animation: v2FadeInUp 0.6s ease forwards;
  position: relative;
  z-index: 1;
}

.v2-hero__headline {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: v2FadeInUp 0.6s ease 0.2s both;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
  color: var(--v2-text-primary);
}

.v2-hero__headline .v2-accent {
  background: linear-gradient(135deg, var(--v2-cyan), var(--v2-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Typing cursor */
.v2-typing-cursor {
  display: inline-block;
  width: 3px;
  height: 0.9em;
  background: var(--v2-cyan);
  margin-left: 4px;
  animation: v2TypeCursor 1s step-end infinite;
  vertical-align: text-bottom;
}

.v2-hero__sub {
  font-size: 17px;
  color: var(--v2-text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
  animation: v2FadeInUp 0.6s ease 0.4s both;
  position: relative;
  z-index: 1;
}

.v2-hero__cta-wrap {
  margin-bottom: 16px;
  animation: v2FadeInUp 0.6s ease 0.6s both;
  position: relative;
  z-index: 1;
}

.v2-hero__note {
  font-size: 14px;
  color: var(--v2-text-muted);
  margin-bottom: 48px;
  animation: v2FadeIn 0.6s ease 0.8s both;
  position: relative;
  z-index: 1;
}

/* Hero image with holographic border */
.v2-hero__image-wrap {
  position: relative;
  max-width: 768px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  animation: v2FadeInUp 0.8s ease 0.6s both;
  z-index: 1;
}

.v2-holo-border {
  padding: 3px;
  border-radius: 20px;
  background: conic-gradient(from var(--angle, 0deg), var(--v2-cyan), var(--v2-purple), var(--v2-cyan));
}

.v2-holo-border__inner {
  border-radius: 17px;
  overflow: hidden;
  background: var(--v2-bg-mid);
  position: relative;
}

.v2-holo-border__inner img {
  border-radius: 17px;
}

.v2-holo-border__inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(240, 241, 247, 0.8) 0%, transparent 40%);
  box-shadow: inset 0 0 40px 10px rgba(240, 241, 247, 0.3);
  border-radius: 17px;
  pointer-events: none;
}

.v2-hero__caption {
  font-size: 12px;
  color: var(--v2-text-muted);
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

/* Trust badges */
.v2-hero__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  animation: v2FadeIn 0.6s ease 1s both;
  position: relative;
  z-index: 1;
}

.v2-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--v2-border);
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.v2-trust-badge:hover {
  border-color: rgba(0, 151, 167, 0.3);
  box-shadow: 0 4px 20px rgba(0, 151, 167, 0.08);
}

.v2-trust-badge__img {
  width: 80px;
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.v2-trust-badge:hover .v2-trust-badge__img {
  filter: grayscale(0%);
  opacity: 1;
}

.v2-trust-badge__label {
  font-size: 11px;
  color: var(--v2-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Social bar */
.v2-social-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  animation: v2FadeIn 0.6s ease 1.2s both;
  position: relative;
  z-index: 1;
}

.v2-social-bar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--v2-border);
  color: var(--v2-text-muted);
  transition: all 0.3s ease;
}

.v2-social-bar__link:hover {
  border-color: var(--v2-cyan);
  color: var(--v2-cyan);
  box-shadow: 0 0 12px var(--v2-cyan-glow);
}

.v2-social-bar__icon {
  width: 20px;
  height: 20px;
}

/* ============================================================
   TRUST BAR / STATS
   ============================================================ */

.v2-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
}

/* Scan line effect */
.v2-stats-grid::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 151, 167, 0.03), transparent);
  animation: v2ScanLine 6s ease-in-out infinite;
  pointer-events: none;
}

.v2-stat-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--v2-border);
  border-top: 2px solid var(--v2-cyan);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.v2-stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 50%);
  pointer-events: none;
}

.v2-stat-card__value {
  font-size: 24px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--v2-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.v2-stat-card__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: relative;
}

.v2-stat-card__dot--green {
  background: var(--v2-green);
}

.v2-stat-card__dot--green::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--v2-green);
  animation: v2PulseRing 2s ease-out infinite;
}

.v2-stat-card__label {
  margin-top: 8px;
  font-size: 13px;
  color: var(--v2-text-muted);
}

/* ============================================================
   PHILOSOPHY PILLARS
   ============================================================ */

.v2-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}

.v2-pillars-grid::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 151, 167, 0.03), transparent 60%);
  pointer-events: none;
}

.v2-pillar-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--v2-border);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.v2-pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 50%);
  pointer-events: none;
}

.v2-pillar-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 151, 167, 0.04), transparent);
  transition: none;
  pointer-events: none;
}

.v2-pillar-card:hover::after {
  animation: v2Shimmer 1s ease forwards;
}

.v2-pillar-card:hover {
  border-color: rgba(0, 151, 167, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.v2-pillar-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: var(--v2-cyan-subtle);
  border: 1px solid rgba(0, 151, 167, 0.15);
  color: var(--v2-cyan);
  box-shadow: 0 0 16px rgba(0, 151, 167, 0.08);
}

.v2-pillar-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--v2-text-primary);
}

.v2-pillar-card__text {
  color: var(--v2-text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */

.v2-steps {
  position: relative;
}

.v2-step {
  position: relative;
  padding-left: 72px;
  padding-bottom: 48px;
}

.v2-step:last-child { padding-bottom: 0; }

.v2-step::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--v2-cyan) 0px,
    var(--v2-cyan) 4px,
    transparent 4px,
    transparent 8px
  );
  background-size: 2px 8px;
  animation: v2DataFlow 1s linear infinite;
  opacity: 0.35;
}

.v2-step:last-child::before { display: none; }

.v2-step__number {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  background: var(--v2-bg-mid);
  border: 2px solid var(--v2-cyan);
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--v2-cyan);
  font-family: 'JetBrains Mono', monospace;
  animation: v2HexPulse 3s ease-in-out infinite;
}

.v2-step__icon {
  color: var(--v2-cyan);
  margin-bottom: 8px;
}

.v2-step__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--v2-text-primary);
}

.v2-step__body {
  color: var(--v2-text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.v2-step__note {
  font-size: 12px;
  color: var(--v2-text-muted);
  margin-top: 8px;
}

.v2-step--locked {
  opacity: 0.45;
}

.v2-step--locked::after {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  pointer-events: none;
  border-radius: 8px;
}

.v2-step__lock-note {
  font-size: 12px;
  color: var(--v2-cyan-dim);
  font-style: italic;
  margin-bottom: 12px;
}

/* ============================================================
   PERFORMANCE
   ============================================================ */

.v2-perf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.v2-perf-image {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  margin-bottom: 8px;
}

.v2-perf-image .v2-holo-border {
  border-radius: 20px;
}

.v2-verified-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 166, 90, 0.25);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: var(--v2-green);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.v2-verified-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--v2-green);
  box-shadow: 0 0 6px var(--v2-green);
}

.v2-perf-caption {
  font-size: 12px;
  color: var(--v2-text-muted);
  text-align: center;
  margin-bottom: 24px;
}

.v2-verify-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--v2-border);
  border-left: 3px solid var(--v2-cyan);
  border-radius: 12px;
  transition: all 0.3s ease;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.v2-verify-card:hover {
  border-left-color: var(--v2-cyan);
  box-shadow: 0 4px 20px rgba(0, 151, 167, 0.06);
  transform: translateX(4px);
}

.v2-verify-card--purple { border-left-color: var(--v2-purple); }
.v2-verify-card--green { border-left-color: var(--v2-green); }

.v2-verify-card__img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.v2-verify-card__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--v2-bg-deepest);
  border-radius: 10px;
  color: var(--v2-cyan);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 14px;
}

.v2-verify-card__name {
  font-weight: 600;
  transition: color 0.3s ease;
  color: var(--v2-text-primary);
}

.v2-verify-card:hover .v2-verify-card__name {
  color: var(--v2-cyan);
}

.v2-verify-card__desc {
  font-size: 14px;
  color: var(--v2-text-muted);
}

/* Quote block */
.v2-quote-block {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--v2-border);
  border-radius: 16px;
  padding: 24px 28px;
  margin-top: 24px;
  position: relative;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.v2-quote-block__mark {
  position: absolute;
  top: -8px;
  left: 20px;
  font-size: 64px;
  color: var(--v2-cyan);
  opacity: 0.12;
  font-family: Georgia, serif;
  line-height: 1;
}

.v2-quote-block__text {
  color: var(--v2-text-secondary);
  font-style: italic;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.v2-quote-block__cite {
  color: var(--v2-cyan);
  font-size: 14px;
  margin-top: 12px;
  display: block;
  font-style: normal;
}

/* Ambient chart SVG */
.v2-ambient-chart {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  opacity: 0.06;
  pointer-events: none;
}

.v2-ambient-chart path {
  stroke: var(--v2-cyan);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.v2-ambient-chart.v2-visible path {
  animation: v2DrawLine 3s ease forwards;
}

/* ============================================================
   STRATEGIES — Terminal Design
   ============================================================ */

.v2-strategy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.v2-strategy-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--v2-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  perspective: 800px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.v2-strategy-card:hover {
  border-color: rgba(0, 151, 167, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.v2-strategy-card__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(240, 241, 247, 0.8);
  border-bottom: 1px solid var(--v2-border);
}

.v2-strategy-card__bar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.v2-strategy-card__bar-dot--red { background: #ff5f57; }
.v2-strategy-card__bar-dot--yellow { background: #ffbd2e; }
.v2-strategy-card__bar-dot--green { background: #28c840; }

.v2-strategy-card__bar-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--v2-text-muted);
  margin-left: 8px;
  flex: 1;
}

.v2-strategy-card__live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--v2-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.v2-strategy-card__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--v2-green);
  box-shadow: 0 0 6px var(--v2-green);
  animation: v2TypeCursor 2s ease-in-out infinite;
}

.v2-strategy-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.v2-strategy-card__body {
  padding: 24px;
}

.v2-strategy-card__tag {
  display: inline-block;
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.v2-strategy-card__tag--cyan {
  color: var(--v2-cyan);
  background: rgba(0, 151, 167, 0.08);
}

.v2-strategy-card__tag--purple {
  color: var(--v2-purple);
  background: rgba(106, 61, 232, 0.08);
}

.v2-strategy-card__tag--amber {
  color: #c77d00;
  background: rgba(199, 125, 0, 0.08);
}

.v2-strategy-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--v2-text-primary);
}

.v2-strategy-card__desc {
  color: var(--v2-text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ============================================================
   WHY FUGUTRADER
   ============================================================ */

.v2-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.v2-feature-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--v2-border);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.v2-feature-card:hover {
  border-color: rgba(0, 151, 167, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.v2-feature-card__watermark {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  color: var(--v2-cyan);
  opacity: 0.04;
  pointer-events: none;
}

.v2-feature-card__number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 700;
  color: var(--v2-cyan);
  opacity: 0.08;
  line-height: 1;
}

.v2-feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--v2-cyan-subtle);
  border: 1px solid rgba(0, 151, 167, 0.15);
  color: var(--v2-cyan);
  margin-bottom: 20px;
  box-shadow: 0 0 16px rgba(0, 151, 167, 0.06);
}

.v2-feature-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--v2-text-primary);
}

.v2-feature-card__desc {
  color: var(--v2-text-secondary);
  line-height: 1.7;
}

.v2-feature-card__glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from var(--angle, 0deg), transparent 60%, var(--v2-cyan) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.v2-feature-card:hover .v2-feature-card__glow {
  opacity: 0.15;
}

/* ============================================================
   FAQ — Terminal Style
   ============================================================ */

.v2-faq {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--v2-border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.v2-faq::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 151, 167, 0.008) 2px,
    rgba(0, 151, 167, 0.008) 4px
  );
  pointer-events: none;
  border-radius: inherit;
}

.v2-faq__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--v2-border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--v2-text-muted);
}

.v2-faq__header-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: var(--v2-cyan);
  animation: v2TypeCursor 1s step-end infinite;
}

.v2-faq__list {
  padding: 0 24px;
}

.v2-faq-item {
  border-bottom: 1px solid var(--v2-border);
  position: relative;
}

.v2-faq-item:last-child { border-bottom: none; }

.v2-faq-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--v2-cyan);
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 0 6px var(--v2-cyan);
}

.v2-faq-item.v2-active::before {
  opacity: 1;
}

.v2-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--v2-text-primary);
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
}

.v2-faq-question:hover {
  color: var(--v2-cyan);
}

.v2-faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--v2-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v2-cyan);
  font-size: 18px;
  transition: all 0.3s ease;
  background: transparent;
}

.v2-faq-toggle span {
  display: inline-block;
  transition: transform 0.3s ease;
  line-height: 1;
}

.v2-faq-item.v2-active .v2-faq-toggle span {
  transform: rotate(45deg);
}

.v2-faq-item.v2-active .v2-faq-toggle {
  border-color: var(--v2-cyan);
  background: var(--v2-cyan-subtle);
}

.v2-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.v2-faq-answer__inner {
  padding-bottom: 20px;
  color: var(--v2-text-secondary);
  line-height: 1.7;
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.v2-final-cta {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  z-index: 2;
  overflow: hidden;
}

.v2-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 60%, rgba(0, 151, 167, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 30% 40%, rgba(106, 61, 232, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 70% 70%, rgba(0, 151, 167, 0.02) 0%, transparent 40%);
  pointer-events: none;
}

.v2-final-cta__headline {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  position: relative;
  color: var(--v2-text-primary);
}

.v2-final-cta__sub {
  font-size: 18px;
  color: var(--v2-text-secondary);
  margin-bottom: 40px;
  position: relative;
}

.v2-final-cta__btn-wrap {
  position: relative;
  display: inline-block;
}

.v2-radar-ring {
  position: absolute;
  inset: -20px;
  border-radius: 20px;
  border: 1px solid rgba(0, 151, 167, 0.15);
  animation: v2RadarPulse 3s ease-out infinite;
  pointer-events: none;
}

.v2-radar-ring:nth-child(2) { animation-delay: 1s; }
.v2-radar-ring:nth-child(3) { animation-delay: 2s; }

.v2-final-cta__note {
  font-size: 12px;
  color: var(--v2-text-muted);
  max-width: 480px;
  margin: 32px auto 0;
  position: relative;
}

/* ============================================================
   COMPLIANCE FOOTER
   ============================================================ */

.v2-footer {
  background: #e8e9f0;
  border-top: 1px solid var(--v2-border);
  padding: 48px 20px;
  z-index: 2;
  position: relative;
}

.v2-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--v2-border), transparent);
  overflow: visible;
}

.v2-footer__warning-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--v2-text-muted);
  margin-bottom: 16px;
}

.v2-footer__warning-title span {
  color: var(--v2-red);
}

.v2-footer__text {
  font-size: 12px;
  color: var(--v2-text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.v2-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--v2-text-muted);
  margin: 32px 0;
}

.v2-footer__links a {
  transition: color 0.3s ease;
}

.v2-footer__links a:hover {
  color: var(--v2-cyan);
}

.v2-footer__links span {
  color: var(--v2-border);
}

.v2-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.v2-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--v2-border);
  color: var(--v2-text-muted);
  transition: all 0.3s ease;
}

.v2-footer__social a:hover {
  border-color: var(--v2-cyan);
  color: var(--v2-cyan);
  box-shadow: 0 0 10px var(--v2-cyan-glow);
}

.v2-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.v2-footer__logo {
  width: 96px;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.v2-footer__logo:hover {
  opacity: 0.8;
}

.v2-footer__copy {
  font-size: 12px;
  color: var(--v2-text-muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 767px) {
  .v2-grid-overlay { display: none; }
  .v2-cursor-dot, .v2-cursor-glow { display: none; }
  .v2-hero__orb--1 { width: 300px; height: 300px; }
  .v2-hero__orb--2 { width: 200px; height: 200px; }
  .v2-hero__orb--3 { display: none; }
}

@media (min-width: 768px) {
  .v2-section { padding: 80px 20px; }
  .v2-section-title { font-size: 40px; }
  .v2-hero__headline { font-size: 48px; }
  .v2-hero__sub { font-size: 18px; }
  .v2-stats-grid { grid-template-columns: repeat(4, 1fr); }
  .v2-stat-card__value { font-size: 28px; }
  .v2-pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .v2-perf-grid { grid-template-columns: 1fr 1fr; }
  .v2-strategy-grid { grid-template-columns: 1fr 1fr; }
  .v2-features-grid { grid-template-columns: 1fr 1fr; }
  .v2-faq__list { padding: 0 32px; }
  .v2-faq__header { padding: 16px 32px; }
  .v2-navbar__cta { display: inline-flex; }
  .v2-navbar__hamburger { display: none; }
}

@media (min-width: 1024px) {
  .v2-section { padding: 100px 20px; }
  .v2-section-title { font-size: 48px; }
  .v2-hero__headline { font-size: 64px; }
  .v2-strategy-grid { grid-template-columns: repeat(3, 1fr); }
  .v2-final-cta__headline { font-size: 48px; }
}

@media (min-width: 1280px) {
  .v2-section { padding: 120px 20px; }
  .v2-hero { padding: 140px 20px 100px; }
  .v2-hero__headline { font-size: 72px; }
  .v2-stat-card__value { font-size: 32px; }
  .v2-final-cta { padding: 140px 20px; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-v2-anim] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .v2-grid-overlay { animation: none; }
  .v2-particle-canvas { display: none; }
}

/* ============================================================
   WIZARD (signup-v3.html)
   ============================================================ */

.v2-wizard {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.v2-wizard__header {
  text-align: center;
  margin-bottom: 48px;
}

.v2-wizard__logo {
  width: 140px;
  display: inline-block;
  filter: brightness(0) saturate(100%) invert(15%) sepia(10%) saturate(500%) hue-rotate(200deg);
  transition: filter 0.3s ease;
}

.v2-wizard__logo:hover {
  filter: brightness(0) saturate(100%) invert(15%) sepia(10%) saturate(500%) hue-rotate(200deg) drop-shadow(0 0 6px var(--v2-cyan-glow));
}

.v2-wizard__progress {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 48px;
}

.v2-wizard__progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.v2-wizard__progress-dot {
  width: 48px;
  height: 48px;
  background: var(--v2-bg-mid);
  border: 2px solid var(--v2-border);
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--v2-text-muted);
  transition: all 0.4s ease;
}

.v2-wizard__progress-step--active .v2-wizard__progress-dot,
.v2-wizard__progress-step--completed .v2-wizard__progress-dot {
  background: var(--v2-cyan);
  border-color: var(--v2-cyan);
  color: #fff;
  box-shadow: 0 0 12px var(--v2-cyan-glow);
}

.v2-wizard__progress-label {
  font-size: 12px;
  color: var(--v2-text-muted);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.v2-wizard__progress-step--active .v2-wizard__progress-label {
  color: var(--v2-cyan);
  font-weight: 600;
}

.v2-wizard__progress-step--completed .v2-wizard__progress-label {
  color: var(--v2-text-secondary);
}

.v2-wizard__progress-line {
  flex: 1;
  height: 2px;
  background: var(--v2-border);
  margin: 23px 16px 0;
  position: relative;
  max-width: 120px;
  min-width: 40px;
}

.v2-wizard__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--v2-cyan), var(--v2-purple));
  transition: width 0.5s ease;
  box-shadow: 0 0 6px var(--v2-cyan-glow);
}

.v2-wizard__step { display: none; }

.v2-wizard__step--active {
  display: block;
  animation: v2SlideInRight 0.4s ease;
}

.v2-wizard__step-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--v2-text-primary);
}

.v2-wizard__step-desc {
  color: var(--v2-text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.v2-wizard__action-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--v2-border);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.v2-wizard__action-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 50%);
  pointer-events: none;
}

.v2-wizard__action-icon { color: var(--v2-cyan); margin-bottom: 20px; }

.v2-wizard__action-text {
  color: var(--v2-text-secondary);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.v2-wizard__action-hint { font-size: 13px; color: var(--v2-text-muted); margin-top: 16px; }

.v2-wizard__confirm {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid var(--v2-border);
  border-radius: 12px;
  margin-bottom: 28px;
  cursor: pointer;
  transition: border-color 0.3s ease;
  user-select: none;
}

.v2-wizard__confirm:hover { border-color: var(--v2-cyan-dim); }

.v2-wizard__confirm-checkbox { position: absolute; opacity: 0; width: 0; height: 0; }

.v2-wizard__confirm-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--v2-text-muted);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.v2-wizard__confirm-check::after {
  content: '';
  display: block;
  width: 6px;
  height: 11px;
  border: solid transparent;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: border-color 0.2s ease;
}

.v2-wizard__confirm-checkbox:checked ~ .v2-wizard__confirm-check {
  background: var(--v2-cyan);
  border-color: var(--v2-cyan);
}

.v2-wizard__confirm-checkbox:checked ~ .v2-wizard__confirm-check::after { border-color: #fff; }

.v2-wizard__confirm-checkbox:checked ~ .v2-wizard__confirm-label { color: var(--v2-text-primary); }

.v2-wizard__confirm-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--v2-text-muted);
  transition: color 0.2s ease;
}

.v2-wizard__instructions {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--v2-border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.v2-wizard__instructions-title { font-size: 18px; font-weight: 700; margin-bottom: 16px; color: var(--v2-cyan); }

.v2-wizard__instructions-list { padding-left: 20px; color: var(--v2-text-secondary); line-height: 2.2; }
.v2-wizard__instructions-list li { padding-left: 8px; }
.v2-wizard__instructions-list li::marker { color: var(--v2-cyan); font-weight: 700; }

.v2-wizard__nav { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* Lead capture */
.v2-wizard__lead-phase--hidden { display: none; }

.v2-wizard__lead-form { display: flex; flex-direction: column; gap: 20px; text-align: left; max-width: 400px; margin: 0 auto; }
.v2-wizard__form-group { display: flex; flex-direction: column; gap: 6px; }
.v2-wizard__form-label { font-size: 14px; font-weight: 600; color: var(--v2-text-secondary); }

.v2-wizard__form-input {
  height: 48px;
  padding: 0 16px;
  border-radius: 10px;
  border: 2px solid var(--v2-border);
  background: var(--v2-bg-mid);
  color: var(--v2-text-primary);
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.v2-wizard__form-input::placeholder { color: var(--v2-text-muted); }
.v2-wizard__form-input:focus { border-color: var(--v2-cyan); box-shadow: 0 0 10px rgba(0, 151, 167, 0.1); }
.v2-wizard__form-input--error { border-color: var(--v2-red); }
.v2-wizard__form-error { font-size: 13px; color: var(--v2-red); min-height: 18px; }

.v2-wizard__send-code-btn, .v2-wizard__verify-btn { width: 100%; max-width: 400px; margin: 8px auto 0; }

.v2-wizard__btn-spinner[hidden] { display: none !important; }

.v2-wizard__btn-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}

.v2-wizard__code-sent-msg { color: var(--v2-text-secondary); font-size: 15px; margin-bottom: 24px; }
.v2-wizard__code-sent-msg strong { color: var(--v2-cyan); }

.v2-wizard__code-inputs { display: flex; justify-content: center; gap: 10px; margin-bottom: 8px; }

.v2-wizard__code-box {
  width: 52px;
  height: 60px;
  border-radius: 10px;
  border: none;
  border-bottom: 3px solid var(--v2-border);
  background: var(--v2-bg-deepest);
  color: var(--v2-text-primary);
  font-size: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  text-align: center;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  caret-color: var(--v2-cyan);
}

.v2-wizard__code-box:focus { border-bottom-color: var(--v2-cyan); box-shadow: 0 4px 10px rgba(0, 151, 167, 0.1); }
.v2-wizard__code-box--filled { border-bottom-color: var(--v2-text-muted); }
.v2-wizard__code-box--error { border-bottom-color: var(--v2-red); animation: shakeBox 0.4s ease; }
.v2-wizard__code-box--success { border-bottom-color: var(--v2-green); box-shadow: 0 4px 10px rgba(0, 166, 90, 0.15); }

.v2-wizard__code-error { display: block; text-align: center; margin-bottom: 16px; }

.v2-wizard__resend { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 20px; font-size: 14px; }
.v2-wizard__resend-sep { color: var(--v2-text-muted); }

.v2-wizard__resend-btn, .v2-wizard__change-email-btn {
  background: none; border: none; color: var(--v2-cyan); font-size: 14px;
  font-family: 'Inter', sans-serif; font-weight: 600; cursor: pointer; padding: 0; transition: color 0.2s ease;
}

.v2-wizard__resend-btn:hover, .v2-wizard__change-email-btn:hover { color: var(--v2-cyan-bright); }
.v2-wizard__resend-btn:disabled { color: var(--v2-text-muted); cursor: not-allowed; }

/* Success */
.v2-wizard__success { text-align: center; padding: 48px 0; }
.v2-wizard__success-icon { margin-bottom: 32px; }
.v2-wizard__success-icon svg circle { fill: var(--v2-cyan); }
.v2-wizard__success-icon svg path { stroke: #fff; stroke-dasharray: 60; stroke-dashoffset: 60; animation: v2CheckDraw 0.8s ease 0.3s forwards; }

.v2-wizard__success-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 36px; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; color: var(--v2-text-primary);
}

.v2-wizard__success-desc { color: var(--v2-text-secondary); margin-bottom: 32px; line-height: 1.7; max-width: 500px; margin-left: auto; margin-right: auto; }

.v2-wizard__success-summary { display: flex; flex-direction: column; gap: 12px; max-width: 400px; margin: 0 auto 32px; }

.v2-wizard__summary-item {
  display: flex; align-items: center; gap: 12px; padding: 14px 20px;
  background: rgba(255, 255, 255, 0.7); border: 1px solid var(--v2-border); border-radius: 10px;
  text-align: left; opacity: 0; animation: v2FadeInUp 0.4s ease forwards;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03); color: var(--v2-text-primary);
}

.v2-wizard__summary-item:nth-child(1) { animation-delay: 0.5s; }
.v2-wizard__summary-item:nth-child(2) { animation-delay: 0.7s; }
.v2-wizard__summary-item:nth-child(3) { animation-delay: 0.9s; }
.v2-wizard__summary-item:nth-child(4) { animation-delay: 1.1s; }

.v2-wizard__summary-check { color: var(--v2-green); font-weight: 700; font-size: 20px; flex-shrink: 0; }

.v2-wizard__success-note { color: var(--v2-text-muted); font-size: 14px; margin-bottom: 40px; line-height: 1.7; max-width: 500px; margin-left: auto; margin-right: auto; }

.v2-wizard__particle-burst { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.v2-wizard__particle-burst span {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--v2-cyan); top: 50%; left: 50%; animation: v2ParticleBurst 1s ease forwards;
}

@media (max-width: 400px) {
  .v2-wizard__code-inputs { gap: 6px; }
  .v2-wizard__code-box { width: 44px; height: 52px; font-size: 20px; }
}

@media (max-width: 520px) { .v2-wizard__progress-line { max-width: 60px; } }

@media (min-width: 768px) {
  .v2-wizard { padding: 60px 20px 100px; }
  .v2-wizard__step-title { font-size: 36px; }
  .v2-wizard__action-card { padding: 48px 32px; }
  .v2-wizard__instructions { padding: 32px; }
  .v2-wizard__success-title { font-size: 44px; }
}

/* ============================================================
   LEGAL PAGES (privacy, terms, risk, cookies)
   ============================================================ */

.v2-legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 20px 80px;
  position: relative;
  z-index: 2;
}

.v2-legal__title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--v2-text-primary);
  margin-bottom: 8px;
}

.v2-legal__effective {
  font-size: 14px;
  color: var(--v2-text-muted);
  margin-bottom: 40px;
}

.v2-legal__body h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--v2-text-primary);
  margin: 40px 0 12px;
  letter-spacing: -0.01em;
}

.v2-legal__body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--v2-text-primary);
  margin: 24px 0 8px;
}

.v2-legal__body p {
  color: var(--v2-text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.v2-legal__body ul,
.v2-legal__body ol {
  color: var(--v2-text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 24px;
}

.v2-legal__body li {
  margin-bottom: 6px;
}

.v2-legal__body li::marker {
  color: var(--v2-cyan);
}

.v2-legal__body a {
  color: var(--v2-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.v2-legal__body a:hover {
  color: var(--v2-cyan-bright);
}

.v2-legal__body strong {
  color: var(--v2-text-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .v2-legal { padding: 140px 20px 100px; }
  .v2-legal__title { font-size: 40px; }
  .v2-legal__body h2 { font-size: 26px; }
}

/* ============================================================
   404 PAGE
   ============================================================ */

.v2-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.v2-404__code {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 120px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--v2-cyan), var(--v2-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.v2-404__title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--v2-text-primary);
  margin-bottom: 12px;
}

.v2-404__desc {
  color: var(--v2-text-secondary);
  max-width: 400px;
  margin-bottom: 32px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .v2-404__code { font-size: 180px; }
  .v2-404__title { font-size: 36px; }
}

/* ============================================================
   SIGNUP COMPACT FOOTER
   ============================================================ */

.v2-signup-footer {
  text-align: center;
  padding: 32px 20px;
  position: relative;
  z-index: 2;
}

.v2-signup-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--v2-text-muted);
  margin-bottom: 12px;
}

.v2-signup-footer__links a {
  transition: color 0.3s ease;
}

.v2-signup-footer__links a:hover {
  color: var(--v2-cyan);
}

.v2-signup-footer__links span {
  color: var(--v2-border);
}

.v2-signup-footer__copy {
  font-size: 12px;
  color: var(--v2-text-muted);
}
