/* ============================================================
   AwaazCollect — Premium Redesign | 2026
   Design Language: Dark Glassmorphism + Neon Accents + 3D
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Palette */
  --bg-0: #03010d;
  --bg-1: #07051a;
  --bg-2: #0d0b27;
  --bg-card:   rgba(255, 255, 255, 0.04);
  --bg-card-h: rgba(255, 255, 255, 0.07);

  --cyan:    #00F5FF;
  --violet:  #BF5AF2;
  --blue:    #3B82F6;
  --green:   #00FFA3;
  --pink:    #FF2D78;

  --grad-primary:   linear-gradient(135deg, #00F5FF, #BF5AF2);
  --grad-secondary: linear-gradient(135deg, #BF5AF2, #FF2D78);
  --grad-accent:    linear-gradient(135deg, #00F5FF, #3B82F6, #BF5AF2);
  --grad-green:     linear-gradient(135deg, #00FFA3, #00F5FF);

  --text-0: #FFFFFF;
  --text-1: #C4C4E0;
  --text-2: #7B7A9E;
  --text-3: #4A4870;

  --border-0: rgba(255, 255, 255, 0.06);
  --border-1: rgba(0, 245, 255, 0.2);
  --border-2: rgba(191, 90, 242, 0.2);

  --glow-cyan:   0 0 60px rgba(0, 245, 255, 0.15);
  --glow-violet: 0 0 60px rgba(191, 90, 242, 0.15);
  --glow-combo:  0 0 80px rgba(0, 245, 255, 0.1), 0 0 80px rgba(191, 90, 242, 0.1);

  /* Sidenav */
  --sidenav-w: 80px;
  --sidenav-expanded-w: 260px;

  /* Typography */
  --font-display: 'Outfit', -apple-system, sans-serif;
  --font-body:    'Space Grotesk', -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Radii */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* Easing */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);
  --ease-inout: cubic-bezier(0.83, 0, 0.17, 1);
  --t-fast:     0.18s var(--ease-out);
  --t-normal:   0.35s var(--ease-out);
  --t-slow:     0.6s var(--ease-out);

  /* Section spacing */
  --section-py: 130px;
  --container-max: 1200px;
  --container-px: 48px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text-0);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none; /* custom cursor */
}

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

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { background: none; border: none; cursor: none; font-family: inherit; }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: screen;
}

.cursor-follower {
  position: fixed;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 245, 255, 0.4);
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear, width 0.25s, height 0.25s, opacity 0.25s;
  backdrop-filter: blur(0px);
}

body.cursor-hover .cursor { width: 18px; height: 18px; opacity: 0.6; }
body.cursor-hover .cursor-follower { width: 56px; height: 56px; border-color: rgba(191, 90, 242, 0.5); }

/* ============================================================
   UTILITY
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-alt {
  background: var(--grad-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   GLASS CARD MIXIN
   ============================================================ */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-0);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: background var(--t-normal), border-color var(--t-normal), transform var(--t-normal), box-shadow var(--t-normal);
}

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

.glass-card:hover {
  background: var(--bg-card-h);
  border-color: var(--border-1);
  box-shadow: var(--glow-combo);
  transform: translateY(-4px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--t-normal);
  position: relative;
  overflow: hidden;
  z-index: 0;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(0, 245, 255, 0.15), 0 8px 32px rgba(0, 245, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(0, 245, 255, 0.3), 0 16px 48px rgba(0, 245, 255, 0.3);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-0);
  border: 1px solid var(--border-0);
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-1);
  transform: translateY(-2px);
}

.btn-hero { padding: 16px 40px; font-size: 16px; }

.btn-sidenav {
  padding: 10px 18px;
  font-size: 13px;
  flex-direction: column;
  gap: 4px;
  border-radius: var(--r-md);
  text-align: center;
}

.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   SECTION HEADER SHARED
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--cyan);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-1);
  line-height: 1.75;
}

/* ============================================================
   GSAP REVEAL ANIMATION HOOKS
   ============================================================ */
/* GSAP controls opacity/transform via JS programmatically */

/* ============================================================
   VERTICAL SIDE NAVBAR
   ============================================================ */
.sidenav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--sidenav-w);         /* 80px collapsed */
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;

  background: rgba(5, 3, 18, 0.94);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border-left: 1px solid rgba(0, 245, 255, 0.18);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.4);
  transition: width var(--t-normal), box-shadow var(--t-normal);
  overflow: visible;               /* MUST be visible so icons don't clip */
}

.sidenav:hover {
  width: var(--sidenav-expanded-w);
  box-shadow: -8px 0 60px rgba(0, 245, 255, 0.14);
}

/* ── Logo area ──────────────────────────────────────── */
.sidenav-logo {
  width: 100%;
  padding: 0 12px;
  flex-shrink: 0;
}

.sidenav-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
  overflow: hidden;
}

.sidenav:hover .sidenav-logo-link {
  justify-content: flex-start;
}

.sidenav-brand {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.5px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--t-normal), transform var(--t-normal);
  white-space: nowrap;
  pointer-events: none;
}

.sidenav:hover .sidenav-brand {
  opacity: 1;
  transform: translateX(0);
}

/* ── Nav Links ──────────────────────────────────────── */
.sidenav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 0 8px;
}

.sidenav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 4px;
  border-radius: 12px;
  color: var(--text-1);
  font-size: 13px;
  font-weight: 600;
  transition: background var(--t-fast), color var(--t-fast);
  position: relative;
  white-space: nowrap;
  /* NO overflow:hidden here — it clips icons; width handles the clipping instead */
}

.sidenav-link:hover,
.sidenav-link.active {
  color: var(--cyan);
  background: rgba(0, 245, 255, 0.07);
}

/* Icon — always visible, normal flow flex child */
.sidenav-link-icon {
  width: 44px;     /* matches collapsed sidenav link available width */
  height: 44px;
  flex: 0 0 44px;  /* never shrinks or grows */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 245, 255, 0.09);
  border: 1px solid rgba(0, 245, 255, 0.2);
  color: var(--cyan);
  transition: all var(--t-fast);
}

.sidenav-link-icon svg {
  width: 20px;
  height: 20px;
  color: inherit;
  stroke: currentColor;
}

.sidenav-link:hover .sidenav-link-icon,
.sidenav-link.active .sidenav-link-icon {
  background: rgba(0, 245, 255, 0.18);
  border-color: rgba(0, 245, 255, 0.45);
  box-shadow: 0 0 14px rgba(0, 245, 255, 0.28);
}

/* Link text — hidden in collapsed state via opacity, shown when sidenav expands */
.sidenav-link-text {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  white-space: nowrap;
}

.sidenav:hover .sidenav-link-text {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.sidenav-link:hover .sidenav-link-text,
.sidenav-link.active .sidenav-link-text {
  color: var(--cyan);
}

/* Active indicator bar */
.sidenav-link-indicator {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 24px;
  border-radius: 0 3px 3px 0;
  background: var(--grad-primary);
  transition: transform var(--t-fast);
}

.sidenav-link.active .sidenav-link-indicator {
  transform: translateY(-50%) scaleY(1);
}



/* Sidenav CTA area */
.sidenav-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 0 14px;
}

/* Scroll progress ring */
.scroll-progress-wrap {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.scroll-ring { transform: rotate(-90deg); }
.scroll-ring-bg {
  fill: none;
  stroke: rgba(255,255,255,0.08);
  stroke-width: 2;
}
.scroll-ring-fill {
  fill: none;
  stroke: url(#ring-grad);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.15s;
}

/* ============================================================
   MOBILE HEADER
   ============================================================ */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  z-index: 1000;
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 5, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-0);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-0);
  border-radius: 2px;
  transition: all var(--t-fast);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(3, 1, 13, 0.96);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-normal);
}

.mobile-nav-overlay.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 320px;
  padding: 0 24px;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-1);
  transition: color var(--t-fast);
}

.mobile-nav-link:hover { color: var(--text-0); }

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 28px;
  color: var(--text-0);
  cursor: pointer;
}

/* ============================================================
   MAIN CONTENT OFFSET
   ============================================================ */
.main-content {
  margin-right: var(--sidenav-w);
  transition: margin-right var(--t-normal);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Three.js canvas fills hero */
#three-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 150px;
  opacity: 0.025;
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0,0,0,0.5) 0%, transparent 70%);
  pointer-events: none;
}

/* Gradient overlays */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(0, 245, 255, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 30% 60%, rgba(191, 90, 242, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg-0) 0%, transparent 20%, transparent 80%, var(--bg-0) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 100vh;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Hero Content */
.hero-content { max-width: 620px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: var(--r-full);
  background: rgba(0, 245, 255, 0.06);
  border: 1px solid rgba(0, 245, 255, 0.2);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 500;
  color: var(--cyan);
  margin-bottom: 40px;
  cursor: pointer;
  transition: all var(--t-fast);
}

.hero-badge:hover {
  background: rgba(0, 245, 255, 0.1);
  border-color: rgba(0, 245, 255, 0.35);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(0, 255, 163, 0.5);
  animation: live-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 163, 0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(0, 255, 163, 0); }
}

.badge-arrow {
  font-size: 14px;
  transition: transform var(--t-fast);
}

.hero-badge:hover .badge-arrow { transform: translateX(4px); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -3px;
  margin-bottom: 28px;
}

.title-line {
  display: block;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-1);
  margin-bottom: 44px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-stat-item { text-align: left; }

.hero-stat-val {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
}

.hero-stat-lbl {
  font-size: 13px;
  color: var(--text-2);
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-0);
  flex-shrink: 0;
}

/* Float cards */
.hero-float-cards {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  white-space: nowrap;
  transition: transform var(--t-normal);
}

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

.card-top-right {
  top: 60px;
  right: -20px;
  animation: float-card-1 5s ease-in-out infinite;
}

.card-bottom-left {
  bottom: 60px;
  left: -20px;
  animation: float-card-2 6s ease-in-out infinite 1.5s;
}

@keyframes float-card-1 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-14px) rotate(1deg); }
}

@keyframes float-card-2 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50%       { transform: translateY(14px) rotate(-1deg); }
}

.float-card-icon { font-size: 24px; }

.float-card-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-0);
}

.float-card-sub {
  font-size: 12px;
  color: var(--text-2);
  margin-top: 2px;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  animation: scroll-hint-fade 3s ease-in-out infinite 2s;
}

@keyframes scroll-hint-fade {
  0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.7; transform: translateX(-50%) translateY(6px); }
}

.scroll-hint-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--cyan));
}

.scroll-hint span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-2);
}

/* ============================================================
   TRUSTED BY
   ============================================================ */
.trusted {
  padding: 64px 0;
  border-top: 1px solid var(--border-0);
  border-bottom: 1px solid var(--border-0);
  overflow: hidden;
}

.trusted-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 36px;
}

.trusted-track { overflow: hidden; position: relative; }

.trusted-track::before,
.trusted-track::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.trusted-track::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-0), transparent);
}

.trusted-track::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-0), transparent);
}

.trusted-track-inner {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
  width: max-content;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trusted-item {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-3);
  white-space: nowrap;
  letter-spacing: 1px;
  transition: color var(--t-fast);
}

.trusted-item:hover { color: var(--text-1); }

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: var(--section-py) 0;
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(0, 245, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 36px 30px;
  transition: all var(--t-normal);
}

.feature-card-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 245, 255, 0.08), transparent 60%);
  transition: opacity var(--t-fast);
  pointer-events: none;
}

.feature-card:hover .feature-card-glow { opacity: 1; }

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--r-md);
  background: rgba(0, 245, 255, 0.06);
  border: 1px solid rgba(0, 245, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--cyan);
  transition: all var(--t-normal);
}

.feature-icon svg { width: 24px; height: 24px; }

.feature-card:hover .feature-icon {
  background: rgba(0, 245, 255, 0.12);
  border-color: rgba(0, 245, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.15);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-1);
  line-height: 1.75;
}

.feature-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: rgba(0, 245, 255, 0.06);
  border: 1px solid rgba(0, 245, 255, 0.12);
  font-size: 11px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: var(--section-py) 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 50%, var(--bg-0) 100%);
}

.steps-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.timeline-line {
  position: absolute;
  top: 36px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 2px;
  background: var(--border-0);
  z-index: 0;
}

.timeline-progress {
  height: 100%;
  width: 0%;
  background: var(--grad-primary);
  border-radius: 2px;
  transition: width 1.5s var(--ease-out);
  box-shadow: 0 0 12px rgba(0, 245, 255, 0.4);
}

.step-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.step-node {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.step-num {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--border-0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--cyan);
  transition: all var(--t-normal);
}

.step-item:hover .step-num {
  border-color: var(--cyan);
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.25);
  background: rgba(0, 245, 255, 0.05);
}

.step-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(0, 245, 255, 0.15);
  animation: step-pulse 2.5s ease-in-out infinite;
  opacity: 0;
}

.step-item:hover .step-pulse { opacity: 1; }

@keyframes step-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.2); opacity: 0; }
}

.step-content {
  padding: 24px 20px;
  width: 100%;
}

.step-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-1);
  line-height: 1.7;
}

/* ============================================================
   PLATFORM PREVIEW
   ============================================================ */
.platform {
  padding: var(--section-py) 0;
  position: relative;
}

.platform-showcase {
  position: relative;
  margin-top: 20px;
}

.platform-glass-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-0);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.6),
    var(--glow-combo);
  background: rgba(10, 8, 30, 0.8);
  backdrop-filter: blur(20px);
}

/* Browser chrome */
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border-0);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FEBC2E; }
.browser-dots span:nth-child(3) { background: #28C840; }

.browser-url {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-0);
  border-radius: var(--r-full);
  padding: 4px 14px;
}

/* Dashboard Mockup */
.dashboard-mockup {
  display: grid;
  grid-template-columns: 56px 1fr;
  min-height: 360px;
}

.dash-sidebar {
  background: rgba(255,255,255,0.025);
  border-right: 1px solid var(--border-0);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 24px;
}

.dash-logo-sm {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.dash-nav-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-3);
}

.dash-nav-item {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-fast);
}

.dash-nav-item:hover,
.dash-nav-item.active {
  background: rgba(0, 245, 255, 0.1);
  color: var(--cyan);
}

.dash-main {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
}

.dash-date {
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-mono);
}

.dash-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.dash-stat-box {
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-0);
  border-radius: var(--r-md);
}

.dash-stat-box.highlight { border-color: rgba(0, 245, 255, 0.15); }

.dash-stat-label {
  font-size: 11px;
  color: var(--text-3);
  margin-bottom: 6px;
}

.dash-stat-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.dash-stat-delta {
  font-size: 11px;
  margin-top: 4px;
}

.dash-stat-delta.up { color: var(--green); }
.dash-stat-delta.down { color: var(--pink); }

.dash-chart-area {
  flex: 1;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-0);
  border-radius: var(--r-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dash-chart-label {
  font-size: 12px;
  color: var(--text-3);
}

.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
}

.dash-bar {
  flex: 1;
  background: rgba(0, 245, 255, 0.1);
  border-radius: 4px 4px 0 0;
  transition: background var(--t-fast);
}

.dash-bar.active {
  background: linear-gradient(180deg, var(--cyan), var(--violet));
  box-shadow: 0 0 12px rgba(0, 245, 255, 0.3);
}

.dash-bar:hover { background: rgba(0, 245, 255, 0.2); }

/* Platform Badges */
.platform-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform var(--t-normal);
}

.platform-badge:hover { transform: translateY(-4px); }

#pbadge-1 { top: 24px; left: -60px; animation: float-card-1 5s ease-in-out infinite; }
#pbadge-2 { bottom: 120px; right: -60px; animation: float-card-2 6s ease-in-out infinite 1s; }
#pbadge-3 { bottom: 24px; left: 40px; animation: float-card-1 7s ease-in-out infinite 2s; }

.platform-badge-icon { font-size: 22px; }

.pb-val {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--text-0);
}

.pb-lbl {
  font-size: 11px;
  color: var(--text-2);
  margin-top: 2px;
}

/* ============================================================
   USE CASES
   ============================================================ */
.use-cases {
  padding: var(--section-py) 0;
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 50%, var(--bg-0) 100%);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.use-case-card {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all var(--t-normal);
}

.uc-emoji {
  font-size: 40px;
  margin-bottom: 20px;
  transition: transform var(--t-normal);
}

.use-case-card:hover .uc-emoji { transform: scale(1.15) rotate(-5deg); }

.uc-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.uc-desc {
  font-size: 15px;
  color: var(--text-1);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 24px;
}

.uc-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan);
  transition: gap var(--t-fast), color var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.uc-link:hover {
  color: var(--violet);
  gap: 10px;
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.stats-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.15;
}

.stats-bg-orb.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--cyan);
  top: -200px;
  left: -200px;
}

.stats-bg-orb.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--violet);
  bottom: -200px;
  right: -200px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  padding: 44px 32px;
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 500;
}

.stat-line {
  width: 40px;
  height: 3px;
  background: var(--grad-primary);
  border-radius: 2px;
  margin: 20px auto 0;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: var(--section-py) 0;
}

.pricing-card {
  padding: 60px;
  display: flex;
  gap: 80px;
  align-items: center;
  border-color: rgba(0, 245, 255, 0.1);
}

.pricing-glow-1,
.pricing-glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.pricing-glow-1 {
  width: 300px;
  height: 300px;
  background: var(--cyan);
  opacity: 0.05;
  top: -100px;
  left: -100px;
}

.pricing-glow-2 {
  width: 300px;
  height: 300px;
  background: var(--violet);
  opacity: 0.05;
  bottom: -100px;
  right: -100px;
}

.pricing-left { flex: 1; }
.pricing-right { flex: 1; }

.pricing-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--r-full);
  background: var(--grad-primary);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.pricing-unit {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 36px;
}

/* Animated waveform */
.audio-waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 50px;
}

.wave-bar {
  flex: 1;
  border-radius: 4px;
  background: var(--grad-primary);
  animation: wave-dance 1.2s ease-in-out infinite;
}

.wave-bar:nth-child(odd)  { animation-delay: 0s; }
.wave-bar:nth-child(even) { animation-delay: 0.15s; }
.wave-bar:nth-child(3n)   { animation-delay: 0.3s; }
.wave-bar:nth-child(5n)   { animation-delay: 0.1s; }
.wave-bar:nth-child(7n)   { animation-delay: 0.25s; }

@keyframes wave-dance {
  0%, 100% { height: 20%; }
  25%       { height: 80%; }
  50%       { height: 40%; }
  75%       { height: 95%; }
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-1);
}

.pf-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 255, 163, 0.12);
  border: 1px solid rgba(0, 255, 163, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--green);
  flex-shrink: 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: var(--section-py) 0;
  position: relative;
}

.cta-bg-canvas {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0, 245, 255, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 30% 70%, rgba(191, 90, 242, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  padding: 80px 80px;
  text-align: center;
  border-color: rgba(0, 245, 255, 0.12);
}

.cta-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(0, 245, 255, 0.05), transparent);
  pointer-events: none;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 24px;
  line-height: 1.1;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--text-1);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 48px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-0);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--bg-card);
  border: 1px solid var(--border-0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: all var(--t-fast);
}

.footer-social svg { width: 16px; height: 16px; }

.footer-social:hover {
  background: rgba(0, 245, 255, 0.08);
  border-color: var(--border-1);
  color: var(--cyan);
  transform: translateY(-2px);
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-0);
}

.footer-column a {
  display: block;
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 12px;
  transition: color var(--t-fast);
}

.footer-column a:hover { color: var(--text-0); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border-0);
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-3);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-3);
  transition: color var(--t-fast);
}

.footer-legal a:hover { color: var(--text-1); }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1100px) {
  .sidenav { display: none; }
  .mobile-header { display: flex; }
  .main-content { margin-right: 0; padding-top: 64px; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding-top: 80px;
  }

  .hero-content { max-width: 700px; }

  .hero-badge,
  .hero-actions,
  .hero-stats { justify-content: center; }

  .hero-subtitle { margin-left: auto; margin-right: auto; }

  .hero-float-cards { display: none; }

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

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

  .steps-timeline { grid-template-columns: repeat(2, 1fr); }

  .timeline-line { display: none; }

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

  .pricing-card {
    flex-direction: column;
    gap: 40px;
    padding: 40px;
  }

  #pbadge-1, #pbadge-2, #pbadge-3 { display: none; }
}

@media (max-width: 768px) {
  :root {
    --section-py: 80px;
    --container-px: 24px;
  }

  .hero-title { font-size: clamp(38px, 10vw, 56px); }

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

  .use-cases-grid { grid-template-columns: 1fr; }

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

  .steps-timeline { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }

  .cta-inner { padding: 48px 32px; }

  .pricing-card { padding: 32px 24px; }

  .dash-stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb {
  background: var(--border-0);
  border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover { background: var(--border-1); }

/* ============================================================
   3D UPGRADE ADDITIONS — Full Suite
   ============================================================ */

/* ── Section background canvas (shared) ──────────────────── */
.section-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}
.how-it-works, .stats-section { position: relative; overflow: hidden; }
.how-it-works .container, .stats-section .container { position: relative; z-index: 1; }

/* ── 3D Flip Cards — Use Cases ────────────────────────────── */
.use-cases-grid { perspective: 1200px; }
.use-case-card-wrap { perspective: 1000px; }

.use-case-card.card-3d {
  position: relative;
  width: 100%;
  height: 320px;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  padding: 0;
  background: transparent;
  border: none;
}
.use-case-card.card-3d:hover { transform: rotateY(180deg); }

.card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.card-front {
  background: var(--bg-card);
  border: 1px solid var(--border-0);
  backdrop-filter: blur(20px);
}
.card-front::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0,245,255,0.05) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}
.card-back {
  background: linear-gradient(135deg, rgba(0,245,255,0.08), rgba(191,90,242,0.08));
  border: 1px solid rgba(0,245,255,0.25);
  backdrop-filter: blur(24px);
  transform: rotateY(180deg);
  justify-content: space-between;
}
.card-back::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 80%, rgba(191,90,242,0.12) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}
.uc-flip-hint {
  font-size: 11px;
  color: var(--text-2);
  letter-spacing: 0.05em;
  margin-top: auto;
  opacity: 0.7;
}
.cb-icon { font-size: 36px; line-height: 1; }
.cb-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text-0); margin: 0; }
.cb-stats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.cb-stats li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}
.cb-stat-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.cb-stat-lbl { font-size: 12px; color: var(--text-2); }
.cb-cta { font-size: 13px; padding: 10px 20px; width: 100%; justify-content: center; text-align: center; }

/* ── Feature Cards — spring tilt ──────────────────────────── */
.features-grid { perspective: 1400px; }
.feature-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(300px circle at var(--mx,50%) var(--my,50%), rgba(0,245,255,0.09) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border-radius: inherit;
}
.feature-card:hover::after { opacity: 1; }

.feature-icon {
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1);
}
.feature-card:hover .feature-icon { transform: rotateY(20deg) rotateX(-10deg) scale(1.1); }

/* ── Scanline on Platform ─────────────────────────────────── */
.platform-glass-frame { position: relative; transform-style: preserve-3d; }
.platform-glass-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,245,255,0.013) 2px, rgba(0,245,255,0.013) 4px);
  pointer-events: none;
  z-index: 5;
  animation: scanlineScroll 12s linear infinite;
}
@keyframes scanlineScroll { 0% { background-position: 0 0; } 100% { background-position: 0 100%; } }

/* Dashboard bar init state */
.dash-bar { transition: height 1.4s cubic-bezier(0.34,1.56,0.64,1); transform-origin: bottom; }
.dash-bar-init { height: 0 !important; }

/* ── Platform badge tilt ──────────────────────────────────── */
.platform-badge { transform-style: preserve-3d; will-change: transform; }

/* ── Pricing — neon pulse + 3D depth ─────────────────────── */
.pricing-card { position: relative; transform-style: preserve-3d; }
.pricing-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: var(--grad-primary);
  opacity: 0;
  z-index: -1;
  animation: neonPulseBorder 3s ease-in-out infinite;
}
@keyframes neonPulseBorder { 0%,100% { opacity: 0.0; } 50% { opacity: 0.28; filter: blur(2px); } }
.pricing-card::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 6px;
  right: 6px;
  height: 100%;
  background: rgba(0,245,255,0.03);
  border-radius: 24px;
  z-index: -2;
  border: 1px solid rgba(0,245,255,0.06);
}
.pricing-waveform-canvas { width: 100%; height: 80px; border-radius: 12px; margin-top: 12px; }

/* ── Use case card orbit bobbing ─────────────────────────── */
@keyframes cardBob { 0%,100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } }
.use-case-card-wrap { animation: cardBob 4s ease-in-out infinite; }
.use-case-card-wrap:nth-child(1) { animation-delay: 0s; }
.use-case-card-wrap:nth-child(2) { animation-delay: 1s; }
.use-case-card-wrap:nth-child(3) { animation-delay: 2s; }
.use-case-card-wrap:nth-child(4) { animation-delay: 0.5s; }
.use-case-card-wrap:hover { animation-play-state: paused; }

/* ── Step pulse ring ─────────────────────────────────────── */
@keyframes stepPulseRing { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(2.2); opacity: 0; } }
.step-pulse { animation: stepPulseRing 2s ease-out infinite; }

/* ── Gradient text glow pulse ────────────────────────────── */
@keyframes glowPulseText { 0%,100% { filter: brightness(1); } 50% { filter: brightness(1.15) drop-shadow(0 0 12px rgba(0,245,255,0.35)); } }
.gradient-text { animation: glowPulseText 4s ease-in-out infinite; }

/* ── Float cards hero tilt ───────────────────────────────── */
.float-card { transform-style: preserve-3d; will-change: transform; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .use-case-card.card-3d { height: auto; min-height: 280px; }
  .card-face { padding: 24px 20px; }
  .use-case-card-wrap { animation: none; }
  .features-grid { perspective: none; }
  .pricing-card::after { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .use-case-card.card-3d,
  .use-case-card-wrap,
  .feature-card,
  .pricing-card::before,
  .platform-glass-frame::after,
  .gradient-text,
  .step-pulse { animation: none !important; transition: none !important; transform: none !important; }
}
