/* Cut the Crap AB — Premium Executive Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg0: #08090c;
  --bg1: #0e1015;
  --bg2: #14161d;
  --card: rgba(255,255,255,0.02);
  --card-hover: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --text: #f8f8f8;
  --text-secondary: rgba(255,255,255,0.65);
  --text-tertiary: rgba(255,255,255,0.4);
  /* Sophisticated warm palette */
  --accent-primary: #a78bfa;
  --accent-secondary: #c4b5fd;
  --accent-tertiary: #e9d5ff;
  --accent-gold: #fbbf24;
  --accent-rose: #fb7185;
  --accent-warm: #fdba74;
  /* Softer glows */
  --glow-primary: rgba(167, 139, 250, 0.25);
  --glow-secondary: rgba(196, 181, 253, 0.2);
  --glow-warm: rgba(251, 191, 36, 0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --max-width: 1280px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg0);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Animated gradient background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 20% -20%, rgba(167, 139, 250, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(251, 191, 36, 0.08), transparent),
    radial-gradient(ellipse 50% 30% at 10% 100%, rgba(251, 113, 133, 0.06), transparent);
  pointer-events: none;
  z-index: 0;
  animation: bgShift 20s ease-in-out infinite;
}

@keyframes bgShift {
  0%, 100% { opacity: 1; filter: hue-rotate(0deg); }
  50% { opacity: 0.8; filter: hue-rotate(15deg); }
}

/* ========================================
   MASSIVE BACKGROUND SYSTEM
   ======================================== */
.bg-system {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Animated Grid Background */
.grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(167, 139, 250, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 139, 250, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black, transparent);
}

@keyframes gridMove {
  0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
  100% { transform: perspective(500px) rotateX(60deg) translateY(60px); }
}

/* Geometric Floating Shapes */
.geo-shapes {
  position: absolute;
  inset: 0;
}

.geo {
  position: absolute;
  opacity: 0.15;
  transition: transform 0.3s ease-out;
}

.geo.hex {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-primary), transparent);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.geo.tri {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 52px solid var(--accent-gold);
  opacity: 0.1;
  background: none;
}

.geo.circle {
  width: 80px;
  height: 80px;
  border: 2px solid var(--accent-rose);
  border-radius: 50%;
  background: transparent;
}

.geo.square {
  width: 40px;
  height: 40px;
  border: 1px solid var(--accent-secondary);
  transform: rotate(45deg);
}

.geo.diamond {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
  transform: rotate(45deg);
  opacity: 0.1;
}

/* Position all geometric shapes */
.g1 { top: 10%; left: 5%; animation: floatGeo 15s ease-in-out infinite; }
.g2 { top: 20%; right: 10%; animation: floatGeo 18s ease-in-out infinite reverse; }
.g3 { bottom: 30%; left: 15%; animation: floatGeo 20s ease-in-out infinite 2s; }
.g4 { top: 40%; right: 5%; animation: floatGeo 12s ease-in-out infinite; }
.g5 { bottom: 20%; right: 20%; animation: floatGeo 16s ease-in-out infinite reverse; }
.g6 { top: 60%; left: 8%; animation: floatGeo 14s ease-in-out infinite 1s; }
.g7 { top: 15%; left: 40%; animation: floatGeo 22s ease-in-out infinite; }
.g8 { bottom: 40%; right: 35%; animation: floatGeo 19s ease-in-out infinite reverse; }
.g9 { top: 70%; left: 25%; animation: floatGeo 17s ease-in-out infinite 3s; }
.g10 { top: 5%; right: 30%; animation: floatGeo 21s ease-in-out infinite; }
.g11 { bottom: 10%; left: 45%; animation: floatGeo 13s ease-in-out infinite reverse; }
.g12 { top: 50%; right: 45%; animation: floatGeo 23s ease-in-out infinite 2s; }

@keyframes floatGeo {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.1; }
  25% { transform: translate(20px, -30px) rotate(90deg); opacity: 0.2; }
  50% { transform: translate(-10px, 20px) rotate(180deg); opacity: 0.15; }
  75% { transform: translate(30px, 10px) rotate(270deg); opacity: 0.2; }
}

/* Glowing Orbs */
.orbs {
  position: absolute;
  inset: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat 10s ease-in-out infinite;
}

.orb1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.3), transparent 70%);
  animation-duration: 8s;
}

.orb2 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: -50px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.25), transparent 70%);
  animation-duration: 12s;
  animation-delay: 2s;
}

.orb3 {
  width: 250px;
  height: 250px;
  top: 40%;
  right: 20%;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.2), transparent 70%);
  animation-duration: 15s;
  animation-delay: 4s;
}

.orb4 {
  width: 350px;
  height: 350px;
  bottom: -100px;
  right: 30%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.2), transparent 70%);
  animation-duration: 10s;
  animation-delay: 1s;
}

.orb5 {
  width: 200px;
  height: 200px;
  top: 60%;
  left: 20%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.2), transparent 70%);
  animation-duration: 14s;
  animation-delay: 3s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  33% { transform: translate(50px, -30px) scale(1.1); opacity: 0.8; }
  66% { transform: translate(-30px, 40px) scale(0.9); opacity: 0.5; }
}

/* Light Beams */
.beams {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.beam {
  position: absolute;
  width: 2px;
  height: 100vh;
  background: linear-gradient(to bottom, transparent, var(--accent-primary), transparent);
  opacity: 0.1;
  animation: beamSweep 8s ease-in-out infinite;
}

.beam1 { left: 20%; animation-delay: 0s; }
.beam2 { left: 50%; animation-delay: 2.5s; background: linear-gradient(to bottom, transparent, var(--accent-gold), transparent); }
.beam3 { left: 80%; animation-delay: 5s; background: linear-gradient(to bottom, transparent, var(--accent-rose), transparent); }

@keyframes beamSweep {
  0%, 100% { transform: translateX(-100px) rotate(-15deg); opacity: 0; }
  50% { transform: translateX(100px) rotate(15deg); opacity: 0.15; }
}

/* Particles - 30 of them */
.particles {
  position: absolute;
  inset: 0;
}

.particles .p {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-primary);
  border-radius: 50%;
  opacity: 0;
  animation: particleRise 15s linear infinite;
}

.particles .p:nth-child(1) { left: 3%; animation-delay: 0s; background: var(--accent-primary); }
.particles .p:nth-child(2) { left: 7%; animation-delay: 0.5s; background: var(--accent-gold); }
.particles .p:nth-child(3) { left: 11%; animation-delay: 1s; background: var(--accent-rose); }
.particles .p:nth-child(4) { left: 15%; animation-delay: 1.5s; background: var(--accent-secondary); }
.particles .p:nth-child(5) { left: 19%; animation-delay: 2s; background: var(--accent-primary); }
.particles .p:nth-child(6) { left: 23%; animation-delay: 2.5s; background: var(--accent-gold); }
.particles .p:nth-child(7) { left: 27%; animation-delay: 3s; background: var(--accent-rose); }
.particles .p:nth-child(8) { left: 31%; animation-delay: 3.5s; background: var(--accent-secondary); }
.particles .p:nth-child(9) { left: 35%; animation-delay: 4s; background: var(--accent-primary); }
.particles .p:nth-child(10) { left: 39%; animation-delay: 4.5s; background: var(--accent-gold); }
.particles .p:nth-child(11) { left: 43%; animation-delay: 5s; background: var(--accent-rose); }
.particles .p:nth-child(12) { left: 47%; animation-delay: 5.5s; background: var(--accent-secondary); }
.particles .p:nth-child(13) { left: 51%; animation-delay: 6s; background: var(--accent-primary); }
.particles .p:nth-child(14) { left: 55%; animation-delay: 6.5s; background: var(--accent-gold); }
.particles .p:nth-child(15) { left: 59%; animation-delay: 7s; background: var(--accent-rose); }
.particles .p:nth-child(16) { left: 63%; animation-delay: 7.5s; background: var(--accent-secondary); }
.particles .p:nth-child(17) { left: 67%; animation-delay: 8s; background: var(--accent-primary); }
.particles .p:nth-child(18) { left: 71%; animation-delay: 8.5s; background: var(--accent-gold); }
.particles .p:nth-child(19) { left: 75%; animation-delay: 9s; background: var(--accent-rose); }
.particles .p:nth-child(20) { left: 79%; animation-delay: 9.5s; background: var(--accent-secondary); }
.particles .p:nth-child(21) { left: 83%; animation-delay: 10s; background: var(--accent-primary); }
.particles .p:nth-child(22) { left: 87%; animation-delay: 10.5s; background: var(--accent-gold); }
.particles .p:nth-child(23) { left: 91%; animation-delay: 11s; background: var(--accent-rose); }
.particles .p:nth-child(24) { left: 95%; animation-delay: 11.5s; background: var(--accent-secondary); }
.particles .p:nth-child(25) { left: 5%; animation-delay: 12s; background: var(--accent-primary); }
.particles .p:nth-child(26) { left: 25%; animation-delay: 12.5s; background: var(--accent-gold); }
.particles .p:nth-child(27) { left: 45%; animation-delay: 13s; background: var(--accent-rose); }
.particles .p:nth-child(28) { left: 65%; animation-delay: 13.5s; background: var(--accent-secondary); }
.particles .p:nth-child(29) { left: 85%; animation-delay: 14s; background: var(--accent-primary); }
.particles .p:nth-child(30) { left: 97%; animation-delay: 14.5s; background: var(--accent-gold); }

@keyframes particleRise {
  0% { bottom: -20px; opacity: 0; transform: scale(0); }
  5% { opacity: 0.8; transform: scale(1); }
  95% { opacity: 0.3; }
  100% { bottom: 110vh; opacity: 0; transform: scale(0.3) translateX(50px); }
}

/* Waves at bottom */
.waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  overflow: hidden;
}

.waves svg {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 100%;
}

.wave {
  fill: rgba(167, 139, 250, 0.03);
}

.w1 { animation: waveMove 25s linear infinite; }
.w2 { fill: rgba(251, 191, 36, 0.02); animation: waveMove 20s linear infinite reverse; }

@keyframes waveMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Noise Texture Overlay */
.noise {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
  mix-blend-mode: overlay;
}

/* Scanlines Effect */
.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
}

/* Mouse Follower Glow */
.mouse-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.15), rgba(251, 191, 36, 0.1) 30%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(40px);
  transition: opacity 0.3s;
}

/* Click Sparkle Effect */
.sparkle {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  pointer-events: none;
  animation: sparkleExplode 1s ease-out forwards;
  z-index: 9999;
}

@keyframes sparkleExplode {
  0% {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(100px) scale(0);
    opacity: 0;
  }
}

/* Animated mesh gradient */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: 
    radial-gradient(circle at 50% 50%, transparent 0%, var(--bg0) 70%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

a { 
  color: inherit; 
  text-decoration: none;
  transition: color var(--transition-fast);
}

img { max-width: 100%; display: block; }

/* ========================================
   LOGOS STRIP - Client Credibility
   ======================================== */
.logos-strip {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.logos-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin: 0 0 24px;
}

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.logo-placeholder {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-tertiary);
  padding: 12px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.logo-placeholder:hover {
  border-color: var(--border-hover);
  color: var(--text-secondary);
}

.logos-note {
  font-size: 11px;
  color: var(--text-tertiary);
  margin: 0;
}

/* ========================================
   SPEED BAR - Time Metrics
   ======================================== */
.speed-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.06), rgba(251, 191, 36, 0.04));
  border: 1px solid rgba(167, 139, 250, 0.15);
  border-radius: var(--radius-lg);
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.speed-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  animation: sweepGlow 8s ease-in-out infinite;
}

@keyframes sweepGlow {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

.speed-stat {
  text-align: center;
  position: relative;
  transition: transform var(--transition-fast);
}

.speed-stat:hover {
  transform: scale(1.05);
}

.speed-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--accent-primary), transparent);
}

.speed-num {
  display: block;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  transition: all var(--transition-fast);
}

.speed-stat:hover .speed-num {
  text-shadow: 0 0 30px var(--glow-warm);
}

.speed-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
}

/* ========================================
   CEO TIME BOX - Executive Respect
   ======================================== */
.ceo-time-box {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.06), rgba(251, 113, 133, 0.04));
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: var(--radius-lg);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.ceo-time-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.08), transparent 60%);
  animation: float 10s ease-in-out infinite;
}

.ceo-time-box:hover {
  border-color: rgba(251, 191, 36, 0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px var(--glow-warm);
}

.ceo-time-icon {
  font-size: 48px;
  line-height: 1;
  animation: pulse 3s ease-in-out infinite;
}

.ceo-time-content h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--accent-gold);
}

.ceo-time-content p {
  margin: 0 0 16px;
  color: var(--text-secondary);
  font-size: 15px;
}

.ceo-time-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.ceo-time-stats span {
  font-size: 13px;
  color: var(--text-tertiary);
  padding: 8px 16px;
  background: rgba(0,0,0,0.3);
  border-radius: 999px;
  transition: all var(--transition-fast);
}

.ceo-time-stats span:hover {
  background: rgba(251, 191, 36, 0.15);
  color: var(--text);
}

.ceo-time-stats strong {
  color: var(--accent-gold);
}

/* Container */
.container {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Skip link */
.skip {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--text);
  color: var(--bg0);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transform: translateY(-200%);
  transition: transform var(--transition-fast);
  z-index: 100;
}
.skip:focus { transform: translateY(0); }

/* ========================================
   HEADER - Glassmorphism Navigation
   ======================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all var(--transition-smooth);
  background: rgba(3, 4, 8, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand svg {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 20px var(--glow-primary));
  transition: filter var(--transition-fast);
}

.brand:hover svg {
  filter: drop-shadow(0 0 30px var(--glow-primary));
}

.brand .wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand strong {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.brand span {
  font-size: 11px;
  color: var(--text-tertiary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
}

.navlinks a {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.navlinks a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Buttons - Premium Design */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.button:hover {
  border-color: rgba(167, 139, 250, 0.3);
  background: rgba(167, 139, 250, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3), 0 0 30px var(--glow-primary);
}

.button:hover::before {
  opacity: 1;
}

.button:hover::after {
  width: 300px;
  height: 300px;
}

.button:active {
  transform: translateY(0);
}

.button.primary {
  border: none;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-gold) 50%, var(--accent-rose) 100%);
  background-size: 200% auto;
  box-shadow: 0 4px 30px var(--glow-primary), inset 0 1px 0 rgba(255,255,255,0.25);
  animation: gradientFlow 6s ease infinite;
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.button.primary:hover {
  box-shadow: 0 8px 50px var(--glow-primary), 0 0 60px var(--glow-warm), inset 0 1px 0 rgba(255,255,255,0.3);
  transform: translateY(-3px) scale(1.02);
}

.button.ghost {
  background: transparent;
}

.button.ghost:hover {
  background: rgba(167, 139, 250, 0.08);
  border-color: rgba(167, 139, 250, 0.25);
}

/* Mobile menu button */
.hamburger {
  display: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

/* ========================================
   HERO - Dramatic Impact Section
   ======================================== */
.hero {
  padding: 180px 0 120px;
  position: relative;
}

/* Floating orbs animation */
.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, var(--glow-primary), rgba(251, 191, 36, 0.1) 50%, transparent 70%);
  filter: blur(80px);
  animation: float 8s ease-in-out infinite, colorPulse 12s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -150px;
  background: radial-gradient(circle, var(--glow-warm), var(--glow-secondary) 50%, transparent 70%);
  filter: blur(80px);
  animation: float 10s ease-in-out infinite reverse, colorPulse 15s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-10px, 10px) scale(0.95); }
}

@keyframes colorPulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 10px 14px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.12), rgba(251, 191, 36, 0.08));
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 24px;
  transition: all var(--transition-fast);
}

.kicker:hover {
  border-color: rgba(167, 139, 250, 0.4);
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.18), rgba(251, 191, 36, 0.12));
}

.kicker .dot {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-gold));
  border-radius: 50%;
  box-shadow: 0 0 15px var(--glow-primary);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 15px var(--glow-primary); transform: scale(1); }
  50% { box-shadow: 0 0 25px var(--glow-primary), 0 0 40px var(--glow-warm); transform: scale(1.1); }
}

h1 {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 28px;
  background: linear-gradient(
    135deg, 
    var(--text) 0%, 
    var(--accent-tertiary) 25%,
    var(--text) 50%, 
    var(--accent-warm) 75%,
    var(--text) 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 10s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}

.lead {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 60ch;
  margin: 0 0 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.badge:hover::before {
  transform: translateX(100%);
}

.badge:hover {
  border-color: var(--lavender);
  color: var(--lavender);
  background: rgba(167,139,250,0.1);
  box-shadow: 0 0 20px rgba(167,139,250,0.3), inset 0 0 20px rgba(167,139,250,0.1);
  transform: translateY(-2px) scale(1.05);
}

/* Hero Card - Premium Glassmorphism */
.hero-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 30px 80px -20px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.1);
  overflow: hidden;
  animation: cardFloat 6s ease-in-out infinite;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 0deg, transparent, var(--lavender), transparent 120deg);
  animation: borderSpin 4s linear infinite;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s;
}

.hero-card:hover::before {
  opacity: 1;
}

.hero-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: cardShimmer 3s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes borderSpin {
  to { transform: rotate(360deg); }
}

@keyframes cardShimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(167, 139, 250, 0.15), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.12), transparent 50%);
  filter: blur(40px);
  z-index: -1;
}

/* Hero card decorative graphic */
.hero-graphic {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.hero-graphic svg {
  width: 120px;
  height: 120px;
  animation: rotateGraphic 30s linear infinite;
}

@keyframes rotateGraphic {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-graphic circle:nth-child(3) {
  animation: pulseRing 4s ease-in-out infinite;
}

.hero-graphic circle:nth-child(4) {
  animation: pulseRing 4s ease-in-out infinite 1s;
}

.hero-graphic circle:nth-child(5) {
  animation: pulseRing 4s ease-in-out infinite 2s;
}

@keyframes pulseRing {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* Floating decorative elements */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.ring1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: -100px;
  border-color: rgba(167, 139, 250, 0.1);
  animation: floatRing 15s ease-in-out infinite;
}

.ring2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: -50px;
  border-color: rgba(251, 191, 36, 0.08);
  animation: floatRing 20s ease-in-out infinite reverse;
}

@keyframes floatRing {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, -20px) rotate(180deg); }
}

.deco-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-primary);
}

.dot1 {
  width: 6px;
  height: 6px;
  top: 30%;
  right: 15%;
  background: var(--accent-primary);
  opacity: 0.5;
  animation: twinkle 3s ease-in-out infinite;
}

.dot2 {
  width: 4px;
  height: 4px;
  top: 60%;
  right: 25%;
  background: var(--accent-gold);
  opacity: 0.4;
  animation: twinkle 4s ease-in-out infinite 1s;
}

.dot3 {
  width: 5px;
  height: 5px;
  bottom: 30%;
  left: 10%;
  background: var(--accent-rose);
  opacity: 0.4;
  animation: twinkle 3.5s ease-in-out infinite 0.5s;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.5); }
}

.mini-metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.metric:hover {
  border-color: rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.4);
  transform: translateX(4px);
}

.metric strong {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-align: right;
}

.smallnote {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

/* ========================================
   SECTION DIVIDERS & DECORATIONS
   ======================================== */
.section-divider {
  width: 100%;
  height: 60px;
  margin: 0;
  overflow: hidden;
}

.section-divider svg {
  width: 100%;
  height: 100%;
}

.section-divider-inner {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-gold), var(--accent-rose), transparent);
  margin: 40px 0;
  opacity: 0.4;
}

.section-accent {
  position: absolute;
  top: 60px;
  right: 5%;
  width: 150px;
  height: 150px;
  opacity: 0.5;
  animation: rotateGraphic 60s linear infinite;
  pointer-events: none;
}

.section-accent svg {
  width: 100%;
  height: 100%;
}

/* ========================================
   SECTIONS - Clean Modern Layout
   ======================================== */
section {
  padding: 120px 0;
  position: relative;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  max-width: 20ch;
}

.section-lead {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 65ch;
  margin: 0 0 60px;
  line-height: 1.8;
}

/* Grid Layouts */
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Cards - Premium Hover Effects */
.card {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition-smooth);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.06), rgba(251, 191, 36, 0.04));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-gold), var(--accent-rose));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  border-color: rgba(167, 139, 250, 0.2);
  transform: translateY(-8px);
  box-shadow: 
    0 30px 80px -20px rgba(0,0,0,0.4),
    0 0 50px rgba(167, 139, 250, 0.08),
    0 0 100px rgba(251, 191, 36, 0.04);
}

.card:hover::before {
  opacity: 1;
}

.card:hover::after {
  transform: scaleX(1);
}

.card > * {
  position: relative;
  z-index: 1;
}

.card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  transition: color var(--transition-fast);
}

.card:hover h3 {
  color: var(--accent-tertiary);
}

.card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* Icon boxes */
.icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(251, 191, 36, 0.08));
  border: 1px solid rgba(167, 139, 250, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition-smooth);
}

.card:hover .icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px var(--glow-primary), 0 0 20px var(--glow-warm);
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.25), rgba(251, 191, 36, 0.15));
}

.icon svg {
  width: 28px;
  height: 28px;
  opacity: 0.9;
}

/* Split Layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Steps - Timeline Style */
.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
}

.step::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 100%;
  width: 2px;
  height: 16px;
  background: linear-gradient(to bottom, var(--accent-primary), transparent);
}

.step:last-child::before {
  display: none;
}

.step:hover {
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.04);
  transform: translateX(8px);
}

.step .num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(99, 102, 241, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: var(--accent-secondary);
}

.step strong {
  display: block;
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--text);
}

.step > div:last-child {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

/* Divider */
.hr {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 60px 0;
  border: none;
}

/* ========================================
   CALCULATOR - Premium Form Design
   ======================================== */
.calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

input, select {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.3);
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  outline: none;
  transition: all var(--transition-fast);
}

input:focus, select:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

input:hover, select:hover {
  border-color: var(--border-hover);
}

.output {
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.output::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary));
}

.out-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.kpi {
  padding: 20px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.kpi:hover {
  border-color: var(--border-hover);
  transform: scale(1.02);
}

.kpi .label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.kpi .value {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--text), var(--accent-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.disclaimer {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  line-height: 1.7;
}

/* ========================================
   QUOTES - Testimonial Cards
   ======================================== */
.quote {
  position: relative;
  padding: 32px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  transition: all var(--transition-fast);
}

.quote::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 80px;
  font-weight: 900;
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.3;
  line-height: 1;
}

.quote:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.quote strong {
  color: var(--text);
  font-style: normal;
}

.quote .who {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  color: var(--text-tertiary);
}

/* ========================================
   FOOTER - Minimal Premium
   ======================================== */
.footer {
  padding: 80px 0 60px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.3));
}

.footer .cols {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.footer .tiny {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.8;
}

.footer strong {
  font-size: 15px;
  color: var(--text);
  display: block;
  margin-bottom: 12px;
}

.footer a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: var(--text);
}

.footer div > div {
  padding: 6px 0;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: 
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade.in {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for children */
.fade.in .card:nth-child(1) { transition-delay: 0.1s; }
.fade.in .card:nth-child(2) { transition-delay: 0.2s; }
.fade.in .card:nth-child(3) { transition-delay: 0.3s; }
.fade.in .card:nth-child(4) { transition-delay: 0.4s; }
.fade.in .card:nth-child(5) { transition-delay: 0.5s; }
.fade.in .card:nth-child(6) { transition-delay: 0.6s; }

/* Mobile menu */
.mobile {
  display: none;
  padding: 20px 0;
}

.mobile.open {
  display: block;
}

.mobile a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.mobile a:hover {
  color: var(--text);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .grid3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .calculator {
    grid-template-columns: 1fr;
  }
  
  .footer .cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 32px);
  }
  
  header {
    padding: 12px 0;
  }
  
  .brand svg {
    width: 36px;
    height: 36px;
  }
  
  .brand strong {
    font-size: 16px;
  }
  
  .brand span {
    font-size: 10px;
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero::before,
  .hero::after {
    width: 300px;
    height: 300px;
    filter: blur(60px);
  }
  
  h1 {
    font-size: 36px;
    line-height: 1.05;
  }
  
  .kicker {
    font-size: 12px;
    padding: 8px 14px 8px 10px;
    margin-bottom: 16px;
  }
  
  .lead {
    font-size: 16px;
    margin-bottom: 28px;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }
  
  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }
  
  .badges {
    gap: 8px;
  }
  
  .badge {
    font-size: 11px;
    padding: 8px 12px;
  }
  
  .hero-card {
    padding: 24px;
    border-radius: var(--radius-md);
  }
  
  .metric {
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .metric strong {
    font-size: 22px;
  }
  
  .metric span {
    text-align: left;
    font-size: 12px;
  }
  
  .grid3, .grid2 {
    grid-template-columns: 1fr;
  }
  
  .navlinks, .cta {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-lead {
    font-size: 16px;
    margin-bottom: 40px;
  }
  
  .card {
    padding: 24px;
  }
  
  .card h3 {
    font-size: 18px;
  }
  
  .icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
  
  .icon svg {
    width: 24px;
    height: 24px;
  }
  
  .step {
    padding: 20px;
    gap: 16px;
  }
  
  .step .num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 16px;
  }
  
  .step::before {
    left: 36px;
  }
  
  .step strong {
    font-size: 15px;
  }
  
  .out-grid {
    grid-template-columns: 1fr;
  }
  
  .output {
    padding: 24px;
  }
  
  .kpi .value {
    font-size: 24px;
  }
  
  .quote {
    padding: 24px;
    font-size: 15px;
  }
  
  .quote::before {
    font-size: 60px;
    top: 12px;
    left: 16px;
  }
  
  .hr {
    margin: 40px 0;
  }
  
  .footer {
    padding: 60px 0 40px;
  }
  
  .footer .cols {
    gap: 32px;
  }
  
  /* New elements mobile styles */
  .logos {
    gap: 16px;
  }
  
  .logo-placeholder {
    font-size: 12px;
    padding: 8px 16px;
  }
  
  .speed-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 32px 24px;
    margin-bottom: 40px;
  }
  
  .speed-stat:nth-child(2)::after {
    display: none;
  }
  
  .speed-num {
    font-size: 26px;
  }
  
  .speed-label {
    font-size: 12px;
  }
  
  .ceo-time-box {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }
  
  .ceo-time-icon {
    font-size: 36px;
  }
  
  .ceo-time-content h3 {
    font-size: 18px;
  }
  
  .ceo-time-stats {
    gap: 12px;
  }
  
  .ceo-time-stats span {
    font-size: 12px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 30px;
  }
  
  .button {
    padding: 12px 20px;
    font-size: 13px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .metric strong {
    font-size: 20px;
  }
  
  .kpi .value {
    font-size: 22px;
  }
  
  .speed-bar {
    grid-template-columns: 1fr;
  }
  
  .speed-stat::after {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* ========================================
   🔥 MEGA VISUAL EFFECTS - ONE OF A KIND
   ======================================== */

/* Animated text shimmer effect */
.shimmer-text {
  position: relative;
  background: linear-gradient(90deg, var(--text) 0%, var(--accent-primary) 15%, var(--accent-gold) 30%, var(--text) 45%, var(--text) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Glitch text effect on hover */
.glitch-hover {
  position: relative;
}

.glitch-hover:hover {
  animation: glitch 0.3s ease infinite;
}

@keyframes glitch {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
}

/* Section glow pulse */
section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-gold), var(--accent-rose), transparent);
  animation: sectionGlow 4s ease-in-out infinite;
}

@keyframes sectionGlow {
  0%, 100% { opacity: 0.1; filter: blur(2px); }
  50% { opacity: 0.6; filter: blur(0px); }
}

/* Floating micro particles on sections */
section::before {
  content: '✦ ✧ ✦ ✧ ✦';
  position: absolute;
  top: 40px;
  right: 10%;
  font-size: 8px;
  letter-spacing: 8px;
  color: var(--accent-gold);
  opacity: 0.3;
  animation: twinkle 3s ease-in-out infinite;
  pointer-events: none;
}

/* Electric border effect on icons */
.icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: conic-gradient(from 0deg, var(--accent-primary), var(--accent-gold), var(--accent-rose), var(--accent-primary));
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  animation: electricPulse 2s linear infinite;
  transition: opacity 0.3s;
}

.card:hover .icon::after {
  opacity: 1;
}

@keyframes electricPulse {
  0% { transform: rotate(0deg); filter: blur(4px); }
  100% { transform: rotate(360deg); filter: blur(4px); }
}

/* Magnetic button effect */
.button.primary::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(45deg, var(--accent-primary), var(--accent-gold), var(--accent-rose), var(--accent-primary));
  background-size: 400% 400%;
  border-radius: inherit;
  z-index: -1;
  filter: blur(15px);
  opacity: 0.6;
  animation: magneticGlow 3s ease infinite;
}

@keyframes magneticGlow {
  0%, 100% { background-position: 0% 50%; opacity: 0.4; }
  50% { background-position: 100% 50%; opacity: 0.8; }
}

/* Card corner accents */
.card .corner-accent {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid transparent;
  opacity: 0;
  transition: all 0.4s ease;
}

.card:hover .corner-accent {
  opacity: 1;
}

.card .corner-accent.tl {
  top: 8px;
  left: 8px;
  border-top-color: var(--accent-primary);
  border-left-color: var(--accent-primary);
  animation: cornerPulse 2s ease-in-out infinite;
}

.card .corner-accent.br {
  bottom: 8px;
  right: 8px;
  border-bottom-color: var(--accent-gold);
  border-right-color: var(--accent-gold);
  animation: cornerPulse 2s ease-in-out infinite 1s;
}

@keyframes cornerPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* Holographic shine on numbers */
.speed-num, .kpi .value, .metric strong {
  position: relative;
}

.speed-num::after, .kpi .value::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,0.2) 50%, transparent 75%);
  background-size: 200% 100%;
  animation: holoShine 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes holoShine {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Breathing effect on CTA section */
#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(167, 139, 250, 0.08), transparent 70%);
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* Staggered fade-in for grid items */
.grid3 .card:nth-child(1) { animation: slideInUp 0.6s ease-out 0.1s both; }
.grid3 .card:nth-child(2) { animation: slideInUp 0.6s ease-out 0.2s both; }
.grid3 .card:nth-child(3) { animation: slideInUp 0.6s ease-out 0.3s both; }

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Rainbow underline on links */
.navlinks a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-gold), var(--accent-rose));
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.navlinks a:hover::after {
  width: 80%;
}

/* Logo endless rotation on hover */
.brand:hover svg {
  animation: logoSpin 2s ease-in-out;
}

@keyframes logoSpin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Data visualization pulse dots */
.pulse-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

.pulse-dot::before, .pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--accent-primary);
  animation: pulseRing 2s ease-out infinite;
}

.pulse-dot::after {
  animation-delay: 0.5s;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

/* Floating action indicator */
.float-indicator {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 10px 40px var(--glow-primary);
  animation: floatBounce 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.float-indicator:hover {
  transform: scale(1.1) rotate(45deg);
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Neon text glow */
.neon-glow {
  text-shadow: 
    0 0 5px var(--accent-primary),
    0 0 10px var(--accent-primary),
    0 0 20px var(--accent-primary),
    0 0 40px var(--accent-gold);
  animation: neonFlicker 3s ease-in-out infinite;
}

@keyframes neonFlicker {
  0%, 100% { opacity: 1; }
  92% { opacity: 1; }
  93% { opacity: 0.8; }
  94% { opacity: 1; }
  96% { opacity: 0.9; }
  97% { opacity: 1; }
}

/* Morphing blob shapes */
.morph-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.15), rgba(251, 191, 36, 0.1));
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morphBlob 8s ease-in-out infinite;
  filter: blur(40px);
}

@keyframes morphBlob {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50% { border-radius: 50% 60% 30% 60% / 30% 40% 70% 50%; }
  75% { border-radius: 40% 60% 50% 40% / 70% 30% 50% 60%; }
}

/* Interactive tilt effect */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.tilt-card:hover {
  transform: rotateX(5deg) rotateY(-5deg);
  transition: transform 0.3s ease;
}

/* Streak lines animation */
.streak-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.streak {
  position: absolute;
  width: 2px;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--accent-primary), transparent);
  animation: streak 3s ease-in-out infinite;
  opacity: 0.3;
}

.streak:nth-child(1) { left: 10%; animation-delay: 0s; }
.streak:nth-child(2) { left: 30%; animation-delay: 0.5s; }
.streak:nth-child(3) { left: 50%; animation-delay: 1s; }
.streak:nth-child(4) { left: 70%; animation-delay: 1.5s; }
.streak:nth-child(5) { left: 90%; animation-delay: 2s; }

@keyframes streak {
  0% { transform: translateY(-100vh); opacity: 0; }
  50% { opacity: 0.5; }
  100% { transform: translateY(100vh); opacity: 0; }
}

/* Radial burst on scroll */
.scroll-burst {
  position: relative;
}

.scroll-burst::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, var(--accent-primary), transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: burstIn 1s ease-out forwards;
}

@keyframes burstIn {
  0% { width: 0; height: 0; opacity: 0.5; }
  100% { width: 600px; height: 600px; opacity: 0; }
}

/* Animated gradient text for headings */
h1, h2, .section-title {
  position: relative;
}

h1::after, h2::after, .section-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-gold));
  animation: underlineExpand 2s ease-out forwards;
}

@keyframes underlineExpand {
  from { width: 0; }
  to { width: 60px; }
}

/* Testimonial quote glow */
.quote::before {
  font-size: 80px;
  animation: quoteGlow 3s ease-in-out infinite;
}

@keyframes quoteGlow {
  0%, 100% { text-shadow: 0 0 20px var(--glow-primary); }
  50% { text-shadow: 0 0 40px var(--glow-primary), 0 0 60px var(--glow-warm); }
}

/* Epic loading shimmer for cards */
.card.loading::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: loadingShimmer 1.5s infinite;
}

@keyframes loadingShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Hero dramatic entrance */
.hero .container > * {
  animation: heroEnter 1s ease-out backwards;
}

.hero .container > *:nth-child(1) { animation-delay: 0.1s; }
.hero .container > *:nth-child(2) { animation-delay: 0.2s; }
.hero .container > *:nth-child(3) { animation-delay: 0.3s; }
.hero .container > *:nth-child(4) { animation-delay: 0.4s; }
.hero .container > *:nth-child(5) { animation-delay: 0.5s; }
.hero .container > *:nth-child(6) { animation-delay: 0.6s; }

@keyframes heroEnter {
  from { opacity: 0; transform: translateY(30px) scale(0.95); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* Cosmic dust effect */
.cosmic-dust {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background-image: 
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 40% 70%, rgba(167, 139, 250, 0.4), transparent),
    radial-gradient(1px 1px at 60% 20%, rgba(251, 191, 36, 0.3), transparent),
    radial-gradient(1px 1px at 80% 60%, rgba(251, 113, 133, 0.3), transparent),
    radial-gradient(2px 2px at 10% 50%, rgba(255,255,255,0.2), transparent),
    radial-gradient(2px 2px at 90% 40%, rgba(167, 139, 250, 0.3), transparent);
  background-size: 250px 250px;
  animation: dustFloat 60s linear infinite;
}

@keyframes dustFloat {
  from { transform: translateY(0) rotate(0deg); }
  to { transform: translateY(-250px) rotate(360deg); }
}

/* Metallic shine effect */
.metallic {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 25%, #1a1a2e 50%, #2d2d44 75%, #1a1a2e 100%);
  background-size: 400% 100%;
  animation: metallicShine 8s linear infinite;
}

@keyframes metallicShine {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Aurora wave effect */
.aurora {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(180deg, 
    rgba(167, 139, 250, 0.1) 0%,
    rgba(251, 191, 36, 0.05) 50%,
    transparent 100%
  );
  animation: aurora 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes aurora {
  0%, 100% { opacity: 0.3; transform: translateY(-20px); }
  50% { opacity: 0.6; transform: translateY(0); }
}

/* Prism light effect */
.prism {
  position: relative;
}

.prism::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(125deg, 
    rgba(255,0,0,0.03) 0%, 
    rgba(255,127,0,0.03) 14%, 
    rgba(255,255,0,0.03) 28%, 
    rgba(0,255,0,0.03) 42%, 
    rgba(0,0,255,0.03) 57%, 
    rgba(75,0,130,0.03) 71%, 
    rgba(148,0,211,0.03) 85%, 
    rgba(255,0,0,0.03) 100%
  );
  background-size: 300% 300%;
  animation: prismShift 8s ease infinite;
  pointer-events: none;
}

@keyframes prismShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ========================================
   🎬 EPIC LOADING SCREEN
   ======================================== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  /* CSS-only fallback: auto-hide after 2.5s */
  animation: loaderAutoHide 0.8s ease 2s forwards;
}

@keyframes loaderAutoHide {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  margin-bottom: 30px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-circle {
  animation: loaderDraw 2s ease-in-out infinite;
}

@keyframes loaderDraw {
  0% { stroke-dashoffset: 125; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -125; }
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px var(--glow-primary)); }
  50% { transform: scale(1.1); filter: drop-shadow(0 0 40px var(--glow-primary)); }
}

.loader-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 20px;
  animation: loaderTextPulse 1.5s ease-in-out infinite;
}

@keyframes loaderTextPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-gold), var(--accent-rose));
  border-radius: 3px;
  animation: loaderProgress 1.5s ease-in-out infinite;
}

@keyframes loaderProgress {
  0% { width: 0%; transform: translateX(0); }
  50% { width: 100%; transform: translateX(0); }
  100% { width: 100%; transform: translateX(100%); }
}

/* Page loaded state animations */
body.page-loaded .hero h1 {
  animation: revealUp 1s ease-out forwards;
}

body.page-loaded .hero .lead {
  animation: revealUp 1s ease-out 0.2s forwards;
  opacity: 0;
}

body.page-loaded .hero-actions {
  animation: revealUp 1s ease-out 0.4s forwards;
  opacity: 0;
}

body.page-loaded .badges {
  animation: revealUp 1s ease-out 0.6s forwards;
  opacity: 0;
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Click ring effect */
.click-ring {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: clickRingExpand 0.6s ease-out forwards;
  z-index: 9998;
}

@keyframes clickRingExpand {
  0% { width: 20px; height: 20px; opacity: 1; border-width: 3px; }
  100% { width: 100px; height: 100px; opacity: 0; border-width: 1px; }
}

/* Scroll reveal animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger reveal for grid children */
.grid3 .reveal-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.grid3 .reveal-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.grid3 .reveal-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.grid3 .reveal-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.grid3 .reveal-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.grid3 .reveal-on-scroll:nth-child(6) { transition-delay: 0.6s; }

/* Fixed nav link positioning for underline */
.navlinks a {
  position: relative;
}

/* Improved float indicator */
.float-indicator {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 10px 40px var(--glow-primary), 0 0 0 0 rgba(167, 139, 250, 0.4);
  animation: floatBounce 3s ease-in-out infinite, pulseRipple 2s ease-out infinite;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.float-indicator:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 15px 50px var(--glow-primary), 0 0 60px var(--glow-warm);
}

@keyframes pulseRipple {
  0% { box-shadow: 0 10px 40px var(--glow-primary), 0 0 0 0 rgba(167, 139, 250, 0.4); }
  70% { box-shadow: 0 10px 40px var(--glow-primary), 0 0 0 20px rgba(167, 139, 250, 0); }
  100% { box-shadow: 0 10px 40px var(--glow-primary), 0 0 0 0 rgba(167, 139, 250, 0); }
}

/* Magnetic button transition fix */
.button.primary {
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
}

/* Enhanced counter animation styling */
.counter {
  display: inline-block;
  min-width: 100px;
}

/* Text cursor for typing effect */
.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--accent-primary);
  margin-left: 2px;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* Improved sparkle with colors */
.sparkle {
  box-shadow: 0 0 6px currentColor, 0 0 12px currentColor;
}

/* Hover glow for interactive elements */
.metric:hover strong,
.kpi:hover .value {
  text-shadow: 0 0 30px var(--glow-primary), 0 0 60px var(--glow-warm);
}

/* 3D card tilt improvements */
.tilt-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tilt-card:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-8px);
  box-shadow: 
    0 30px 80px -20px rgba(0,0,0,0.5),
    0 0 50px rgba(167, 139, 250, 0.1),
    10px 10px 0 rgba(0,0,0,0.1);
}

/* Footer glow line */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-gold), var(--accent-rose), transparent);
}

