:root {
  --brand-navy-900: #00183C;
  --brand-navy-700: #0C2454;
  --brand-blue-600: #1878D8;
  --brand-blue-500: #2478D8;
  --brand-cyan-300: #48A8F0;
  --brand-cyan-100: #C0FCFC;
  --brand-orange-700: #C0600C;
  --brand-orange-400: #F0A83C;
}

* {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

@keyframes rotateCubeY {
  0% { transform: rotateX(-8deg) rotateY(0deg); }
  100% { transform: rotateX(-8deg) rotateY(-360deg); }
}

@keyframes ctaGlowPulse {
  0%, 100% {
    box-shadow: 0 0 12px -2px rgba(240, 168, 60, 0.45), 0 0 4px -1px rgba(240, 168, 60, 0.3);
  }
  50% {
    box-shadow: 0 0 32px 2px rgba(240, 168, 60, 0.85), 0 0 14px 2px rgba(240, 168, 60, 0.55);
  }
}

.cta-glow {
  animation: ctaGlowPulse 2.2s ease-in-out infinite;
}
