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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-dark);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.led-bg {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.led-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: drift 20s infinite alternate ease-in-out;
}
.orb-1 { width: 400px; height: 400px; background: rgba(255, 226, 112, 0.4); top: -10%; left: -10%; animation-delay: 0s; }
.orb-2 { width: 500px; height: 500px; background: rgba(230, 163, 60, 0.3); bottom: -20%; right: -10%; animation-delay: -5s; }
.orb-3 { width: 300px; height: 300px; background: rgba(196, 121, 35, 0.5); top: 40%; left: 60%; animation-delay: -10s; }

@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 50px) scale(1.1); }
  100% { transform: translate(-30px, -50px) scale(0.9); }
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: #CCC; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #AAA; }

::selection { background: var(--brand-accent-light); color: var(--text-primary); }

:focus-visible { outline: 2px solid var(--brand-accent); outline-offset: 2px; box-shadow: 0 0 0 4px rgba(230, 163, 60, 0.3); border-radius: 4px; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--text-primary);
  letter-spacing: -0.01em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
h1 { font-size: clamp(2rem, 5vw, var(--fs-5xl)); font-weight: var(--fw-black); }
h2 { font-size: clamp(1.5rem, 3.5vw, var(--fs-3xl)); }
h3 { font-size: clamp(1.15rem, 2vw, var(--fs-xl)); }

p { color: var(--text-secondary); line-height: var(--lh-normal); }
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); font-size: var(--fs-base); }
input, textarea, select { font-family: var(--font-body); font-size: var(--fs-base); }
ul, ol { list-style: none; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-6); }
.section { padding: var(--space-20) 0; }
.section--sm { padding: var(--space-12) 0; }

.section-header { text-align: center; margin-bottom: var(--space-12); max-width: 600px; margin-left: auto; margin-right: auto; }
.section-header .eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: var(--space-3);
}
.section-header h2 { margin-bottom: var(--space-3); }
.section-header p { font-size: var(--fs-md); color: var(--text-secondary); max-width: 520px; margin: 0 auto; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.text-center { text-align: center; }
.hidden { display: none !important; }