@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Mono:wght@300;400;500&display=swap');

:root {
  --honey: #F5C400;
  --honey-light: #FFD93D;
  --honey-dark: #D4A017;
  --honey-dim: rgba(245, 196, 0, 0.12);
  --honey-glow: rgba(245, 196, 0, 0.25);
  --onyx: #0A0A07;
  --onyx-2: #111109;
  --onyx-3: #1A1A14;
  --onyx-4: #252520;
  --cream: #F5F0DC;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Syne', sans-serif;
  background-color: var(--onyx);
  color: var(--cream);
  overflow-x: hidden;
}

/* Typography override for mono elements */
.font-mono-bee {
  font-family: 'DM Mono', monospace;
}

/* Glass panel - warm tinted */
.glass-panel {
  background-color: rgba(245, 196, 0, 0.03);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(245, 196, 0, 0.08);
  border-radius: 1rem;
}

.glass-panel-light {
  background-color: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
}

/* Honey glow */
.honey-glow {
  box-shadow: 0 0 80px rgba(245, 196, 0, 0.2);
}

.honey-glow-sm {
  box-shadow: 0 0 30px rgba(245, 196, 0, 0.15);
}

/* Scrollbar hide */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* Perspective */
.perspective-1000 { perspective: 1000px; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: none;
}

/* Honeycomb noise overlay */
.noise-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  border-radius: inherit;
}

/* Gradient text */
.text-honey-gradient {
  background: linear-gradient(135deg, var(--honey-light) 0%, var(--honey) 50%, var(--honey-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Badge pill */
.badge-honey {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(245, 196, 0, 0.1);
  border: 1px solid rgba(245, 196, 0, 0.2);
  color: var(--honey);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Animated scan line */
@keyframes scan {
  0% { top: 0%; }
  100% { top: 100%; }
}

/* Floating */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.floating-element {
  animation: float 3s ease-in-out infinite;
}

/* Hexagon pattern background */
.hex-bg {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%23F5C400' fill-opacity='0.04' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Card hover */
.card-hover {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-hover:hover {
  border-color: rgba(245, 196, 0, 0.25) !important;
  transform: translateY(-4px);
}

/* Progress bar shimmer */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer {
  background: linear-gradient(90deg, var(--honey-dark) 0%, var(--honey-light) 50%, var(--honey-dark) 100%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* Nav glass */
.nav-glass {
  background: rgba(10, 10, 7, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 196, 0, 0.06);
}