/* ════════════════════════════════════════════════════════════════════
   VOLT RECRUITING v31 — GLOBAL DESIGN SYSTEM
   Electric Dark • Premium • Conversion-First
   ════════════════════════════════════════════════════════════════════ */

/* ── FONTS ──────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ── DESIGN TOKENS ──────────────────────────────────────────────── */
:root {
  /* Colors */
  --black:        #000000;
  --surface-1:    #080808;
  --surface-2:    #0d0d0d;
  --surface-3:    #111111;
  --border:       #1a1a1a;
  --border-gold:  rgba(200,168,58,.2);

  --white:        #ffffff;
  --gray-1:       #888888;
  --gray-2:       #555555;
  --gray-3:       #333333;

  --gold:         #C8A83A;
  --gold-light:   #FFD700;
  --gold-glow:    rgba(200,168,58,.15);
  --gold-glow-md: rgba(200,168,58,.3);

  --electric:     #00D4FF;
  --electric-dim: rgba(0,212,255,.08);
  --electric-glow:rgba(0,212,255,.2);

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Space Grotesk', 'Inter', sans-serif;
  --font-ui:      'Inter', sans-serif;

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 120px;
  --space-3xl: 160px;

  /* Border radius */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --radius-full:9999px;

  /* Shadows */
  --shadow-gold:    0 0 40px rgba(200,168,58,.12);
  --shadow-gold-lg: 0 0 80px rgba(200,168,58,.18);
  --shadow-elec:    0 0 40px rgba(0,212,255,.12);
  --shadow-card:    0 4px 40px rgba(0,0,0,.6);

  /* Transitions */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-both: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:  150ms;
  --dur-base:  250ms;
  --dur-slow:  450ms;
  --dur-xl:    700ms;

  /* Layout */
  --max-w: 1280px;
  --nav-h: 68px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  min-height: 100vh;
  transition: opacity 0.28s ease, filter 0.28s ease;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SCROLLBAR ──────────────────────────────────────────────────── */
html::-webkit-scrollbar { width: 6px; height: 6px; }
html::-webkit-scrollbar-track { background: #000; }
html::-webkit-scrollbar-thumb { background: #C8A83A; border-radius: 3px; }
html::-webkit-scrollbar-thumb:hover { background: #D4B84A; }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #C8A83A; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #D4B84A; }
/* Firefox */
html { scrollbar-width: thin; scrollbar-color: #C8A83A #000; }
* { scrollbar-width: thin; scrollbar-color: #C8A83A #000; }

/* ── SELECTION ──────────────────────────────────────────────────── */
::selection { background: var(--gold); color: var(--black); }

/* ── LOADING SCREEN ─────────────────────────────────────────────── */
#volt-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
#volt-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  font-family: var(--font-display);
  font-size: 72px;
  letter-spacing: 16px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.loader-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, var(--gold-light) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: loaderShimmer 1.4s var(--ease-out) 0.3s forwards;
}
@keyframes loaderShimmer {
  to { transform: translateX(200%); }
}
.loader-bolt {
  font-size: 48px;
  animation: boltPulse 0.6s ease-in-out infinite alternate;
}
@keyframes boltPulse {
  from { transform: scale(0.9); filter: drop-shadow(0 0 8px var(--gold)); opacity: 0.7; }
  to   { transform: scale(1.1); filter: drop-shadow(0 0 24px var(--gold-light)); opacity: 1; }
}
.loader-bar-track {
  width: 180px;
  height: 2px;
  background: var(--surface-3);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  border-radius: 2px;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--gold-glow-md);
}
.loader-label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gray-2);
  font-weight: 600;
}
.loader-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.loader-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--gold);
  animation: particleFly var(--dur, 2s) linear var(--delay, 0s) infinite;
  opacity: 0;
}
@keyframes particleFly {
  0%   { transform: translateY(100vh) translateX(var(--dx,0)); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-20px) translateX(var(--dx,0)); opacity: 0; }
}

/* ── PROGRESS BAR ────────────────────────────────────────────────── */
#volt-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--electric));
  z-index: 9997;
  pointer-events: none;
  box-shadow: 0 0 8px var(--gold-glow-md);
  transition: width 0.1s linear;
}

/* ── NAVIGATION ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: background var(--dur-slow), border-color var(--dur-slow), backdrop-filter var(--dur-slow);
}
.nav.scrolled {
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 8px;
  color: var(--white);
  transition: letter-spacing var(--dur-slow) var(--ease-out),
              text-shadow var(--dur-base);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo:hover {
  letter-spacing: 11px;
  text-shadow: 0 0 30px var(--gold-glow-md);
}
.nav-logo em {
  color: var(--gold);
  font-style: normal;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  flex-shrink: 0;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-1);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--dur-base), background var(--dur-base);
  position: relative;
}
.nav-links a:hover { color: var(--white); background: var(--surface-3); }
.nav-links a.active { color: var(--gold); }
.nav-links a.section-active { color: var(--gold); }
.nav-cta {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--gold) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-sm) !important;
  transition: background var(--dur-base), box-shadow var(--dur-base), transform var(--dur-base) !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  box-shadow: 0 4px 20px var(--gold-glow-md);
  transform: translateY(-1px);
}

/* ── HAMBURGER BUTTON ────────────────────────────────────────── */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  border-radius: 50%;
  transition: background 0.3s;
  border: none;
  background: transparent;
}
.nav-hamburger:hover { background: rgba(200,168,58,0.08); }
.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.45s cubic-bezier(0.16,1,0.3,1);
  transform-origin: center;
  width: 24px;
}
.nav-hamburger span:nth-child(2) { width: 16px; margin-left: 4px; }
.nav-hamburger.open span { box-shadow: 0 0 10px rgba(200,168,58,0.5); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); width: 24px; }
.nav-hamburger.open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); width: 24px; margin-left: 0; }

/* ── FULL-SCREEN MOBILE MENU ─────────────────────────────────── */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 1000;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 20px) 40px 60px;
  overflow-x: hidden;
  overflow-y: auto;
  counter-reset: nav-counter;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,168,58,0.08);
  border: 1px solid rgba(200,168,58,0.2);
  border-radius: 50%;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  z-index: 1002;
  transition: background 0.25s, transform 0.25s;
  line-height: 1;
}
.nav-mobile-close:hover {
  background: rgba(200,168,58,0.18);
  transform: rotate(90deg);
}
.nav-mobile::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,168,58,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,168,58,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.nav-mobile::after {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  top: -250px;
  left: -250px;
  background: radial-gradient(circle, rgba(200,168,58,.07) 0%, transparent 65%);
  pointer-events: none;
}
.nav-mobile.open { opacity: 1; }

/* Nav items */
.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(34px, 6.5vw, 72px);
  font-weight: 400;
  color: rgba(255,255,255,0.15);
  line-height: 1.05;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-50px);
  position: relative;
  z-index: 1;
  text-decoration: none;
}
.nav-mobile a.nav-item-in {
  opacity: 1;
  transform: none;
  color: rgba(255,255,255,0.6);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out), color 0.25s, letter-spacing 0.25s;
}
.nav-mobile a:hover {
  color: var(--gold) !important;
  transform: translateX(16px) !important;
  letter-spacing: 1px;
}
.nav-mobile a.active { color: var(--gold) !important; }
.nav-mobile a:not(.nav-cta-mobile) {
  counter-increment: nav-counter;
}
.nav-mobile a:not(.nav-cta-mobile)::before {
  content: counter(nav-counter, decimal-leading-zero);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  opacity: 0.5;
  min-width: 28px;
  flex-shrink: 0;
  margin-top: 6px;
  display: inline-block;
  transition: opacity 0.3s;
}
.nav-mobile a:hover::before { opacity: 1; }
.nav-arrow {
  margin-left: auto;
  opacity: 0;
  color: var(--gold);
  font-size: 22px;
  transform: translateX(-10px);
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nav-mobile a:hover .nav-arrow { opacity: 1; transform: none; }

/* CTA link */
.nav-mobile a.nav-cta-mobile {
  font-family: var(--font-ui) !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--black) !important;
  background: var(--gold);
  padding: 14px 28px !important;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  margin-top: 28px;
  width: fit-content;
  justify-content: center;
  gap: 8px;
}
.nav-mobile a.nav-cta-mobile:hover {
  background: var(--gold-light);
  transform: translateY(-2px) !important;
  letter-spacing: 2px;
  color: var(--black) !important;
}
.nav-mobile a.nav-cta-mobile .nav-num { display: none; }
.nav-mobile a.nav-cta-mobile .nav-arrow { display: none; }

/* Vertical accent line */
.nav-mobile-line {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.25;
  transition: height 0.9s var(--ease-out) 0.1s;
  z-index: 1;
}
.nav-mobile.open .nav-mobile-line { height: 55%; }

/* Footer tagline */
.nav-mobile-tagline {
  position: absolute;
  bottom: 36px;
  right: 56px;
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--electric);
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.4s 0.55s;
  z-index: 1;
}
.nav-mobile.open .nav-mobile-tagline { opacity: 0.35; }

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base),
              background var(--dur-base),
              border-color var(--dur-base),
              color var(--dur-base);
  user-select: none;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

/* Ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  transform: scale(0);
  animation: btnRipple 0.5s ease-out forwards;
  pointer-events: none;
}
@keyframes btnRipple { to { transform: scale(4); opacity: 0; } }

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 4px 24px var(--gold-glow);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(200,168,58,0.35), 0 4px 16px rgba(0,0,0,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.2);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.04);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.btn-electric {
  background: transparent;
  color: var(--electric);
  border-color: rgba(0,212,255,.3);
}
.btn-electric:hover {
  background: var(--electric-dim);
  border-color: var(--electric);
  box-shadow: 0 0 24px var(--electric-glow);
}
.btn-sm { padding: 10px 20px; font-size: 10px; }
.btn-lg { padding: 20px 44px; font-size: 13px; }
.btn-xl { padding: 22px 52px; font-size: 14px; letter-spacing: 3px; }

/* ── BUTTON PULSE RING ───────────────────────────────────────────── */
@keyframes btnPulse {
  0%   { box-shadow: 0 0 0 0 rgba(200,168,58,0.4); }
  70%  { box-shadow: 0 0 0 14px rgba(200,168,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,168,58,0); }
}
.btn-pulse-active {
  animation: btnPulse 2.4s cubic-bezier(0.4,0,0.6,1) infinite;
}
.btn-pulse-active:hover { animation: none; }

/* ── SECTION LAYOUT ──────────────────────────────────────────────── */
.section {
  padding: var(--space-2xl) 40px;
  position: relative;
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-sm { padding: var(--space-xl) 40px; }
.section-dark { background: var(--surface-1); }
.section-surface { background: var(--surface-2); }

/* ── SECTION LABELS ──────────────────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.label-electric { color: var(--electric); }
.label-electric::before { background: var(--electric); }

/* ── HEADINGS ────────────────────────────────────────────────────── */
.h1 {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.9;
  letter-spacing: -1px;
  font-weight: 400;
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 86px);
  line-height: 0.92;
  letter-spacing: 1px;
  font-weight: 400;
}
.h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: 1px;
  font-weight: 400;
}
.h2 em, .h1 em, .h3 em {
  color: var(--gold);
  font-style: normal;
}
.h2 .elec { color: var(--electric); }

.lead {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-1);
  max-width: 600px;
}

/* ── CARDS ───────────────────────────────────────────────────────── */
.card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: border-color var(--dur-slow),
              box-shadow var(--dur-slow),
              transform var(--dur-slow) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, var(--gold-glow), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-slow);
}
.card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 0 0 1px rgba(200,168,58,.12), var(--shadow-gold);
  transform: translateY(-4px);
}
.card:hover::before { opacity: 1; }
.card-electric::before {
  background: radial-gradient(ellipse at top left, var(--electric-dim), transparent 60%);
}
.card-electric:hover {
  border-color: rgba(0,212,255,.2);
  box-shadow: 0 0 0 1px rgba(0,212,255,.1), var(--shadow-elec);
}

/* ── STAT CARD ───────────────────────────────────────────────────── */
.stat-card {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid var(--border);
  transition: background var(--dur-base), transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: var(--surface-2); }
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width var(--dur-slow) var(--ease-out);
}
.stat-card:hover::after { width: 80%; }

/* Enhanced stat/hero card hover */
.stat-card:hover, .hero-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), var(--shadow-gold);
  transform: translateY(-6px);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s, border-color 0.3s;
}

.stat-n {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1;
  display: block;
}
.stat-l {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-2);
  font-weight: 600;
  margin-top: 8px;
  display: block;
}

/* ── TAG / BADGE ─────────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  background: rgba(200,168,58,.06);
}
.tag-electric {
  border-color: rgba(0,212,255,.2);
  color: var(--electric);
  background: var(--electric-dim);
}
.tag-green {
  border-color: rgba(78,203,113,.2);
  color: #4ECB71;
  background: rgba(78,203,113,.06);
}
.tag-red {
  border-color: rgba(212,117,106,.2);
  color: #D4756A;
  background: rgba(212,117,106,.06);
}

/* ── FORM ELEMENTS ───────────────────────────────────────────────── */
.fg {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.fg label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-2);
}
.fi {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
  appearance: none;
}
.fi::placeholder { color: var(--gray-3); }
.fi:focus {
  border-color: var(--border-gold);
  box-shadow: 0 0 0 3px rgba(200,168,58,.08);
}
.fi:focus.fi-electric {
  border-color: rgba(0,212,255,.3);
  box-shadow: 0 0 0 3px var(--electric-dim);
}
select.fi {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
textarea.fi { resize: vertical; min-height: 100px; }

/* ── MODAL ───────────────────────────────────────────────────────── */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-slow), visibility var(--dur-slow);
}
.modal-bg.open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform var(--dur-slow) var(--ease-out);
  box-shadow: 0 40px 100px rgba(0,0,0,.8), 0 0 0 1px var(--border);
}
.modal-bg.open .modal {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--gray-1);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color var(--dur-base), background var(--dur-base), border-color var(--dur-base);
}
.modal-close:hover {
  color: var(--white);
  background: var(--surface-2);
  border-color: var(--border-gold);
}
.modal-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 6px;
}
.modal-sub {
  font-size: 13px;
  color: var(--gray-2);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ── NOTIFICATION ────────────────────────────────────────────────── */
#volt-notif {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9995;
  max-width: 360px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--dur-slow) var(--ease-out), opacity var(--dur-slow), visibility var(--dur-slow);
}
#volt-notif.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
#volt-notif.notif-success { border-color: rgba(78,203,113,.3); }
#volt-notif.notif-error   { border-color: rgba(212,117,106,.3); }
#volt-notif.notif-info    { border-color: var(--border-gold); }
.notif-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.notif-body { flex: 1; }
.notif-title {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 3px;
}
.notif-msg { font-size: 12px; color: var(--gray-1); line-height: 1.5; }
.notif-x {
  background: none;
  border: none;
  color: var(--gray-2);
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: color var(--dur-base);
}
.notif-x:hover { color: var(--white); }

/* ── DIVIDER ─────────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ── GLOW ORBS (background ambiance) ────────────────────────────── */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.4;
}
.glow-orb-gold { background: radial-gradient(circle, var(--gold), transparent 70%); }
.glow-orb-electric { background: radial-gradient(circle, rgba(0,212,255,.3), transparent 70%); }

/* ── REVEAL ANIMATIONS — cinematic ──────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(48px);
  filter: blur(6px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1),
              filter 0.8s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal="left"]  { transform: translateX(-48px) translateY(0); }
[data-reveal="right"] { transform: translateX(48px) translateY(0); }
[data-reveal="scale"] { transform: scale(0.85) translateY(24px); }
[data-reveal="fade"]  { transform: none; opacity: 0; }
[data-reveal].revealed {
  opacity: 1;
  transform: none;
  filter: blur(0);
  position: relative;
}
[data-reveal][data-delay="50"]  { transition-delay: 50ms; }
[data-reveal][data-delay="100"] { transition-delay: 100ms; }
[data-reveal][data-delay="150"] { transition-delay: 150ms; }
[data-reveal][data-delay="200"] { transition-delay: 200ms; }
[data-reveal][data-delay="250"] { transition-delay: 250ms; }
[data-reveal][data-delay="300"] { transition-delay: 300ms; }
[data-reveal][data-delay="400"] { transition-delay: 400ms; }
[data-reveal][data-delay="500"] { transition-delay: 500ms; }
[data-reveal][data-delay="600"] { transition-delay: 600ms; }
[data-reveal][data-delay="700"] { transition-delay: 700ms; }

/* ── SECTION SHIMMER ON REVEAL ───────────────────────────────────── */
@keyframes sectionShimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.revealed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(200,168,58,0.03) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: sectionShimmer 0.8s ease forwards;
  pointer-events: none;
}

/* ── PARALLAX BASE ───────────────────────────────────────────────── */
[data-parallax] {
  will-change: transform;
}

/* ── CURSOR GLOW — enhanced ──────────────────────────────────────── */
#volt-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 400px !important;
  height: 400px !important;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,58,0.08) 0%, transparent 70%) !important;
  pointer-events: none;
  z-index: 9990;
  transition: width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: screen;
}
#volt-cursor.expand {
  width: 460px !important;
  height: 460px !important;
  background: radial-gradient(circle, rgba(200,168,58,0.12) 0%, transparent 70%) !important;
}
#volt-cursor.electric {
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%) !important;
}
#volt-cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50%;
  background: var(--gold) !important;
  pointer-events: none;
  z-index: 9991;
  box-shadow: 0 0 12px var(--gold) !important;
}

/* ── CTA SHARED CLASSES (used across pages) ──────────────────────── */
.cta-h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.9;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 24px;
}
.cta-h2 em { color: var(--gold); font-style: normal; }
.cta-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 300;
  color: var(--gray-1);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 48px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BACK TO TOP ─────────────────────────────────────────────────── */
#volt-btt {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9980;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s, border-color 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
}
#volt-btt:hover {
  background: var(--surface-3);
  border-color: var(--gold);
  box-shadow: 0 0 24px var(--gold-glow-md);
}

/* ── ADDITIONAL KEYFRAMES ────────────────────────────────────────── */
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes shimmerSlide {
  0%   { transform: translateX(-100%) skewX(-12deg); }
  100% { transform: translateX(300%) skewX(-12deg); }
}
@keyframes pulseGold {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,168,58,0); }
  50%      { box-shadow: 0 0 0 12px rgba(200,168,58,0); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes slideInUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes scaleIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

/* ── SHIMMER BUTTON EFFECT ───────────────────────────────────────── */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: translateX(-100%) skewX(-12deg);
  pointer-events: none;
}
.btn-primary:hover::after {
  animation: shimmerSlide 0.7s var(--ease-out) forwards;
}

/* ── MARQUEE ─────────────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  display: flex;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  gap: 48px;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── TRUST BAR (shared, CSS-only marquee) ────────────────────────── */
.trust-bar {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.trust-bar::before { left: 0;  background: linear-gradient(90deg, var(--surface-2), transparent); }
.trust-bar::after  { right: 0; background: linear-gradient(-90deg, var(--surface-2), transparent); }
.trust-track {
  display: inline-flex;
  gap: 64px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.trust-track:hover { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-2);
}
.trust-item-dot { color: var(--gold); font-size: 6px; }

/* ── SCROLL-SCALE INIT ───────────────────────────────────────────── */
[data-scroll-scale] {
  will-change: transform, opacity;
}

/* ── DATA-TILT ───────────────────────────────────────────────────── */
[data-tilt] {
  will-change: transform;
}

/* ── SPLIT UNIT — blur support ───────────────────────────────────── */
.split-unit {
  display: inline-block;
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
              transform 0.6s cubic-bezier(0.16,1,0.3,1),
              filter 0.6s cubic-bezier(0.16,1,0.3,1) !important;
}

/* ── DATA-LIGHTNING ──────────────────────────────────────────────── */
[data-lightning] {
  position: relative;
  overflow: hidden;
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  padding: 80px 40px 40px;
  position: relative;
  z-index: 0;
  isolation: isolate;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand-logo {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 10px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand-logo em { color: var(--gold); font-style: normal; }
.footer-brand-tagline { font-size: 13px; color: var(--gray-2); line-height: 1.7; max-width: 260px; }
.footer-contact {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact a {
  font-size: 13px;
  color: var(--gray-2);
  transition: color var(--dur-base);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact a:hover { color: var(--gold); }
.footer-col-title {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: var(--gray-2);
  transition: color var(--dur-base), padding-left var(--dur-base);
  display: block;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 11px;
  color: var(--gray-3);
  letter-spacing: 1px;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 11px;
  color: var(--gray-3);
  transition: color var(--dur-base);
}
.footer-legal a:hover { color: var(--gold); }

/* ── UTILITIES ───────────────────────────────────────────────────── */
.text-gold    { color: var(--gold); }
.text-electric{ color: var(--electric); }
.text-muted   { color: var(--gray-1); }
.text-dim     { color: var(--gray-2); }
.text-center  { text-align: center; }
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm       { gap: var(--space-sm); }
.gap-md       { gap: var(--space-md); }
.gap-lg       { gap: var(--space-lg); }
.mt-sm        { margin-top: var(--space-sm); }
.mt-md        { margin-top: var(--space-md); }
.mt-lg        { margin-top: var(--space-lg); }
.mb-sm        { margin-bottom: var(--space-sm); }
.mb-md        { margin-bottom: var(--space-md); }
.mb-lg        { margin-bottom: var(--space-lg); }
.w-full       { width: 100%; }
.hidden       { display: none !important; }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .section { padding: 80px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  :root {
    --nav-h: 60px;
  }
  .section { padding: 60px 20px; }
  .nav { padding: 0 16px; }
  .nav-logo { font-size: 20px; letter-spacing: 4px; gap: 6px; }
  .nav-logo-img { height: 28px; }
  .footer { padding: 60px 20px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modal { padding: 28px 20px; }
}

/* ── MAGNETIC CURSOR (desktop) ──────────────────────────────────── */
@media (hover: hover) {
  .btn-primary, .btn-ghost, .btn-electric, .btn-xl, .btn-lg {
    will-change: transform;
  }
}

/* ── SHARED HERO CARD COMPONENTS ─────────────────────────────────
   Used by index, case-studies, team, pricing, blog — hero side card
   ──────────────────────────────────────────────────────────────── */
.hero-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.03);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s, border-color 0.3s;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,168,58,.4), rgba(0,212,255,.2), transparent);
}
.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hero-card-title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-2);
}
.hero-card-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #4ECB71;
  font-weight: 600;
  letter-spacing: 1px;
}
.hero-card-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ECB71;
  box-shadow: 0 0 8px #4ECB71;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.3); }
}
.hero-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(200,168,58,.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}
.hero-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-stat {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.hero-stat-n {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}
.hero-stat-l {
  font-size: 10px;
  color: var(--gray-2);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}
.hero-activity {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-activity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--gray-1);
}
.hero-activity-icon { font-size: 16px; flex-shrink: 0; }
.hero-activity-name { color: var(--white); font-weight: 500; flex: 1; }
.hero-activity-time { font-size: 10px; color: var(--gray-2); }
.hero-card-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}
.hero-card-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--gray-1);
  border-bottom: 1px solid var(--border);
}
.hero-card-check-item:last-child { border-bottom: none; }
.hero-card-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(200,168,58,.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--gold);
  flex-shrink: 0;
}
.hero-card-article-preview {
  padding: 16px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.hero-card-article-cat {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.hero-card-article-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-card-article-excerpt {
  font-size: 12px;
  color: var(--gray-2);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.hero-card-article-link {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-decoration: none;
}
.hero-card-article-link:hover { color: var(--gold-light); }
