/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #b8b0d0;
  background: #0a0520;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ===== CSS VARIABLES — Purple Shader Palette ===== */
:root {
  --navy: #0a0520;
  --navy-mid: #1a0a3e;
  --deep-navy: #06020f;
  --purple: #2d1b69;
  --purple-mid: #3d2580;
  --purple-light: #5a3d99;
  --gold: #a78bfa;
  --gold-light: #c4b5fd;
  --gold-dark: #7c3aed;
  --white: #FFFFFF;
  --soft-gray: #0e0824;
  --light-gold: #ede9fe;
  --warm-slate: #b8b0d0;
  --muted: #8a80a8;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);
  --success: #38A169;
  --trust-blue: #818cf8;
  --glow-purple: rgba(93, 63, 211, 0.3);
  --glow-gold: rgba(167, 139, 250, 0.3);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2), 0 1px 2px rgba(0,0,0,0.15);
  --shadow-md: 0 10px 25px rgba(0,0,0,0.25), 0 4px 10px rgba(0,0,0,0.15);
  --shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.4), 0 12px 24px -8px rgba(0,0,0,0.25);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.08);
}

/* ===== FLOATING NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 5, 32, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(93, 63, 211, 0.1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
}
.navbar.hidden { transform: translateY(-100%); }
.navbar.scrolled { background: rgba(6, 2, 15, 0.95); }
.nav-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span {
  background: linear-gradient(135deg, #a78bfa, #e0e0e0, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--white); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%) !important;
  color: #999 !important;
  padding: 10px 24px !important;
  border-radius: 100px;
  font-weight: 500 !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3) !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  position: relative;
  overflow: hidden;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4) !important;
  color: #ccc !important;
  border-color: rgba(255,255,255,0.15) !important;
}
.nav-cta::after { display: none !important; }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; border-radius: 2px; }

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(6, 2, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-links.open { transform: translateY(0); }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #0a0520;
}

/* WebGL Shader Canvas */
.shader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
/* Gradient overlay to darken edges and improve text readability */
.shader-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(10, 5, 20, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Floating particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(167, 139, 250, 0.4);
  border-radius: 50%;
  animation: particle-float linear infinite;
}
@keyframes particle-float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* Grid overlay */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
/* Chrome/purple shimmer text */
.text-shimmer {
  background: linear-gradient(
    90deg,
    #8b5cf6 0%,
    #a78bfa 20%,
    #e0e0e0 35%,
    #ffffff 50%,
    #e0e0e0 65%,
    #a78bfa 80%,
    #8b5cf6 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0% { background-position: 100% 50%; }
  100% { background-position: -100% 50%; }
}

/* Word rotate effect */
.word-rotate {
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 1.2em;
  vertical-align: bottom;
  min-width: 140px;
}
.word-rotate-inner {
  display: flex;
  flex-direction: column;
  animation: word-cycle 10s ease-in-out infinite;
}
.word-rotate-inner span {
  display: block;
  height: 1.2em;
  line-height: 1.2;
  background: linear-gradient(90deg, #a78bfa, #e0e0e0, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}
@keyframes word-cycle {
  0%, 18% { transform: translateY(0); }
  22%, 43% { transform: translateY(-1.2em); }
  47%, 68% { transform: translateY(-2.4em); }
  72%, 93% { transform: translateY(-3.6em); }
  97%, 100% { transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* ===== LIQUID METAL BUTTONS ===== */
@keyframes ripple-animation {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

.btn-metal-wrap {
  display: inline-block;
  perspective: 1000px;
}
.btn-metal {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.15s ease;
}
/* Sizing variants */
.btn-metal.btn-lg { width: auto; height: 50px; padding: 0 36px; }
.btn-metal.btn-md { width: auto; height: 46px; padding: 0 28px; }
.btn-metal.btn-sm { width: auto; height: 40px; padding: 0 22px; }

/* Text label floats above */
.btn-metal-label {
  position: relative;
  z-index: 30;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  text-shadow: 0px 1px 2px rgba(0,0,0,0.5);
  pointer-events: none;
  transform: translateZ(20px);
  transition: color 0.3s;
  white-space: nowrap;
}
.btn-metal:hover .btn-metal-label { color: #999; }

/* Inner dark pill */
.btn-metal-inner {
  position: absolute;
  inset: 2px;
  border-radius: 100px;
  background: linear-gradient(180deg, #202020 0%, #000000 100%);
  z-index: 20;
  transform: translateZ(10px);
  transition: box-shadow 0.15s ease;
}
.btn-metal:active .btn-metal-inner {
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.4);
}

/* Shader canvas container — the actual liquid metal surface */
.btn-metal-shader {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  overflow: hidden;
  z-index: 10;
  transform: translateZ(0);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.3),
    0 36px 14px rgba(0,0,0,0.02),
    0 20px 12px rgba(0,0,0,0.08),
    0 9px 9px rgba(0,0,0,0.12),
    0 2px 5px rgba(0,0,0,0.15);
  transition: box-shadow 0.15s ease;
}
.btn-metal-shader canvas {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  border-radius: 100px !important;
}
.btn-metal:hover .btn-metal-shader {
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.4),
    0 12px 6px rgba(0,0,0,0.05),
    0 8px 5px rgba(0,0,0,0.1),
    0 4px 4px rgba(0,0,0,0.15),
    0 1px 2px rgba(0,0,0,0.2);
}
.btn-metal:active .btn-metal-shader {
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.5),
    0 1px 2px rgba(0,0,0,0.3);
}
.btn-metal:hover { transform: translateY(-1px) scale(1.01); }
.btn-metal:active { transform: translateY(1px) scale(0.98); }

/* Fallback for secondary/outline style (no shader, just dark) */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  padding: 14px 32px;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  color: #666;
  background: linear-gradient(180deg, #181818 0%, #000 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.3), 0 2px 5px rgba(0,0,0,0.15);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.btn-secondary:hover {
  color: #999;
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.4), 0 8px 16px rgba(0,0,0,0.2);
}

/* btn-gold-outline is now also liquid metal */
.btn-gold-outline { /* Alias — use btn-metal markup instead */ }

/* Trust signals */
.trust-signals {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  animation: fadeInUp 0.8s ease-out 1s both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.trust-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(56, 161, 105, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 12px; height: 12px; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

/* ===== SECTION LAYOUTS ===== */
.section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-full {
  padding: 100px 24px;
}
.section-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--warm-slate);
  max-width: 650px;
  line-height: 1.7;
}
.text-center { text-align: center; margin-left: auto; margin-right: auto; }

/* ===== PROBLEM SECTION ===== */
.problem-section {
  background: var(--soft-gray);
  position: relative;
  overflow: visible;
}
.problem-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(93,63,211,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.problem-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(167,139,250,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.pain-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
/* Robot sits on left edge, cards on right */
.problem-layout {
  position: relative;
  margin-top: 56px;
  min-height: 520px;
}
.robot-container {
  position: absolute;
  left: -80px;
  top: -20px;
  width: 500px;
  height: 560px;
  overflow: visible;
  background: transparent;
  border: none;
  z-index: 1;
  pointer-events: auto;
}
.robot-container spline-viewer {
  --spline-viewer-background: transparent !important;
}
.pain-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: auto;
  max-width: 560px;
  position: relative;
  z-index: 3;
}
@media (max-width: 1024px) {
  .robot-container {
    left: -160px;
    width: 400px;
    height: 480px;
  }
  .pain-cards-stack { max-width: 500px; }
}
@media (max-width: 768px) {
  .robot-container { display: none; }
  .pain-cards-stack { max-width: 100%; }
}

/* 3D Card tilt effect — glass on dark */
.pain-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s;
  transform-style: preserve-3d;
  cursor: default;
}
.pain-card:hover {
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(93,63,211,0.1);
  border-color: rgba(255, 255, 255, 0.15);
}
/* Card spotlight — purple glow */
.card-spotlight {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
  background: radial-gradient(400px circle at var(--cx, 50%) var(--cy, 50%),
    rgba(93, 63, 211, 0.12) 0%, rgba(167, 139, 250, 0.04) 40%, transparent 60%);
  pointer-events: none;
  border-radius: inherit;
}
.pain-card:hover .card-spotlight,
.pricing-card:hover .card-spotlight { opacity: 1; }

.pain-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(93, 63, 211, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--purple-light);
}
.pain-icon svg { width: 28px; height: 28px; stroke: #a78bfa; }
.pain-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.4;
}
.pain-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
/* Tracing beam between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: rgba(255,255,255,0.06);
}
.tracing-beam {
  position: absolute;
  top: 40px;
  left: calc(16.66% + 28px);
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.4);
  z-index: 1;
}
.steps-grid.visible .tracing-beam {
  width: calc(100% - 33.32% - 56px);
}

.step-card {
  text-align: center;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 24px;
  transition: all 0.5s;
}
.steps-grid.visible .step-card .step-number {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 0 24px rgba(167, 139, 250, 0.4), 0 0 60px rgba(93, 63, 211, 0.2);
}
.steps-grid.visible .step-card:nth-child(3) .step-number { transition-delay: 0.3s; }
.steps-grid.visible .step-card:nth-child(4) .step-number { transition-delay: 0.6s; }

.step-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.step-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before, .tracing-beam { display: none; }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  background: linear-gradient(180deg, var(--soft-gray) 0%, #120730 100%);
  position: relative;
  overflow: hidden;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  align-items: start;
}
.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.3s;
  transform-style: preserve-3d;
}
.pricing-card:hover {
  transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(93,63,211,0.1);
  border-color: rgba(255,255,255,0.15);
}
.pricing-card .card-spotlight { border-radius: 20px; }

/* Recommended card with border beam */
.pricing-card.recommended {
  border: 2px solid var(--gold);
  transform: scale(1.04);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(93, 63, 211, 0.2), 0 0 40px rgba(167, 139, 250, 0.1);
  background: rgba(255, 255, 255, 0.06);
}
.pricing-card.recommended:hover {
  transform: scale(1.04) perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-6px);
}

/* Border beam animation */
.border-beam {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.border-beam::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(167,139,250,0.6) 0%, transparent 70%);
  border-radius: 50%;
  animation: beam-orbit 6s linear infinite;
  filter: blur(4px);
}
@keyframes beam-orbit {
  0% { top: -40px; left: 50%; }
  25% { top: 50%; left: calc(100% - 10px); }
  50% { top: calc(100% - 10px); left: 50%; }
  75% { top: 50%; left: -40px; }
  100% { top: -40px; left: 50%; }
}

.recommended-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pricing-card .price {
  font-size: clamp(40px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card .price-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}
.pricing-card .desc {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.feature-list {
  list-style: none;
  margin-bottom: 32px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--muted);
}
.feature-list .check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(56, 161, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-list .check svg { width: 12px; height: 12px; color: var(--success); }

.pricing-anchor {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  color: var(--muted);
}
.pricing-anchor strong { color: var(--navy); }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-card.recommended { transform: none; order: -1; }
  .pricing-card.recommended:hover { transform: translateY(-6px); }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(180deg, #120730 0%, #0a0520 100%);
  padding: 56px 24px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(93, 63, 211, 0.15);
  border-bottom: 1px solid rgba(93, 63, 211, 0.15);
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(93,63,211,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(167,139,250,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.stat-item::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 12px auto 0;
  opacity: 0.4;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== INDUSTRIES ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.industry-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: all 0.3s;
  cursor: default;
}
.industry-chip:hover {
  border-color: rgba(93,63,211,0.4);
  box-shadow: 0 4px 20px rgba(93, 63, 211, 0.15);
  transform: translateY(-2px);
  background: rgba(255,255,255,0.06);
}
.industry-chip .chip-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(93, 63, 211, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
}
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  line-height: 1.4;
  font-family: inherit;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  color: var(--muted);
  font-size: 18px;
  margin-left: 16px;
}
.faq-item.open .faq-icon {
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding-bottom: 24px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.cta-section {
  background: linear-gradient(180deg, #0a0520 0%, #1a0a3e 50%, #0a0520 100%);
  text-align: center;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
/* Lamp effect — purple */
.lamp {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 350px;
  background: conic-gradient(
    from 180deg at 50% 0%,
    transparent 0deg,
    rgba(93, 63, 211, 0.12) 50deg,
    rgba(167, 139, 250, 0.15) 80deg,
    rgba(93, 63, 211, 0.2) 90deg,
    rgba(167, 139, 250, 0.15) 100deg,
    rgba(93, 63, 211, 0.12) 130deg,
    transparent 180deg
  );
  pointer-events: none;
  filter: blur(50px);
}
.cta-section .section-heading { color: var(--white); }
.cta-section p { color: rgba(255,255,255,0.7); }
.cta-risk {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

/* ===== FOOTER ===== */
.footer {
  background: #06020f;
  padding: 64px 24px 32px;
  color: rgba(255,255,255,0.4);
  border-top: 1px solid rgba(93, 63, 211, 0.1);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p {
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.6;
  max-width: 300px;
}
.footer h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer a {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ===== CUSTOM CURSOR ===== */
@media (hover: hover) {
  .custom-cursor {
    width: 24px; height: 24px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, border-color 0.2s, transform 0.08s;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    opacity: 0;
  }
  .custom-cursor.active { opacity: 1; }
  .custom-cursor.hovering {
    width: 48px; height: 48px;
    border-color: var(--gold-light);
    background: rgba(167, 139, 250, 0.08);
  }
}
@media (hover: none) {
  .custom-cursor { display: none; }
}
