/* 4HERTZ — Shared Styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #080C12;
  --bg2:       #0D1420;
  --bg3:       #121A28;
  --gold:      #C8963A;
  --gold-dim:  #9B6E25;
  --blue:      #3A6EA8;
  --text:      #F0EDE8;
  --text-mid:  #B8B4AF;
  --text-dim:  #6A6560;
  --border:    #1E2535;
  --border-mid:#2A3448;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 32px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(8, 12, 18, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 18px;
  letter-spacing: 0.06em; color: var(--text);
  text-decoration: none;
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo span {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 0.15em;
  color: var(--text-dim); margin-top: 2px;
}
.nav-links {
  display: flex; align-items: center; gap: 40px; list-style: none;
}
.nav-links a {
  font-size: 14px; color: var(--text-mid);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: 0.04em;
  background: var(--gold); color: #0a0805;
  border: none; border-radius: 4px;
  padding: 12px 24px; cursor: pointer;
  text-decoration: none; transition: background 0.2s;
  white-space: nowrap;
}
.btn:hover { background: #D9A845; }

/* ── LEGAL PAGE LAYOUT ── */
.legal-page { padding: 140px 0 100px; }
.legal-page h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.02em; line-height: 1.1;
  margin-bottom: 12px;
}
.legal-meta {
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: 0.15em;
  color: var(--text-dim); margin-bottom: 64px;
}
.legal-content { max-width: 720px; }
.legal-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 20px;
  margin-top: 52px; margin-bottom: 16px;
  color: var(--text);
}
.legal-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500; font-size: 16px;
  margin-top: 28px; margin-bottom: 10px;
  color: var(--text-mid);
}
.legal-content p {
  font-size: 15px; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 16px;
}
.legal-content ul {
  margin: 0 0 16px 20px;
}
.legal-content ul li {
  font-size: 15px; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 6px;
}
.legal-content a {
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid var(--gold-dim);
}
.legal-content a:hover { color: #D9A845; }
.legal-content strong { color: var(--text); font-weight: 500; }
.legal-content .placeholder {
  background: rgba(200,150,58,0.15);
  border: 1px dashed var(--gold-dim);
  border-radius: 3px; padding: 2px 8px;
  color: var(--gold); font-family: 'Space Mono', monospace;
  font-size: 12px; letter-spacing: 0.05em;
}
.legal-divider {
  border: none; border-top: 1px solid var(--border);
  margin: 40px 0;
}

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 64px;
}
.footer-brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 20px;
  letter-spacing: 0.06em; margin-bottom: 6px;
}
.footer-claim {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.15em;
  color: var(--text-dim); margin-bottom: 16px;
}
.footer-desc { font-size: 13px; color: var(--text-dim); line-height: 1.7; }
.footer-col h4 {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--text-dim); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px; color: var(--text-dim);
  text-decoration: none; transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-mid); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--text-dim); gap: 16px; flex-wrap: wrap;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  nav { padding: 16px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .legal-page { padding: 100px 0 72px; }
}
