/* Legally Brief: Federal — placeholder styles (will be overwritten by AI generation) */

:root {
  --bg-primary:    #08080d;
  --bg-secondary:  #0d0d14;
  --bg-surface:    rgba(255, 255, 255, 0.03);
  --text-primary:  #eaeaf0;
  --text-secondary: #9ca3af;
  --text-muted:    #7c7c8a;
  --accent-gold:   #fbbf24;
  --accent-blue:   #60a5fa;
  --font-sans:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:     'JetBrains Mono', 'SF Mono', monospace;
}

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

html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.hero__title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #fff 0%, rgba(251, 191, 36, 0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 2rem;
  text-align: center;
}
.site-footer__brand { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; color: var(--text-muted); }
.site-footer__pulse { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-gold); margin-right: 0.5rem; }
.site-footer__regen, .site-footer__session, .site-footer__timestamp { font-size: 0.85rem; color: var(--text-muted); margin: 0.5rem 0; }
.site-footer__link { color: var(--accent-gold); text-decoration: none; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; }
.site-footer__link:hover { text-decoration: underline; }
