:root {
  --gold-strike: #FFB800;
  --gold-core:   #B8952A;
  --gold-burnt:  #5A450F;
  --gradient-h:  linear-gradient(90deg, #FFB800 0%, #B8952A 50%, #5A450F 100%);
  --black:       #080808;
  --surface:     #111111;
  --surface-2:   #191919;
  --surface-3:   #202020;
  --border:      #252525;
  --border-lit:  #3A3A3A;
  --text:        #FFFFFF;
  --text-mid:    #B0B0B0;
  --text-dim:    #6A6A6A;
  --green:       #4CAF7D;
  --red:         #C0392B;
  --glow-soft:   rgba(255,184,0,0.15);
  --glow-med:    rgba(255,184,0,0.35);
  --glow-hard:   rgba(255,184,0,0.65);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif;
  --font-mono:    'SF Mono', Menlo, monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  padding-bottom: 4rem;
}
::selection { background: var(--gold-strike); color: var(--black); }

.audit-header {
  background: var(--surface);
  padding: 4rem 2rem 3rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.audit-header::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--glow-med) 0%, transparent 60%);
  pointer-events: none;
}
.audit-header::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient-h);
  opacity: 0.7;
}
.brand {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-strike);
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.brand-bullet {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold-strike);
  border-radius: 50%;
  margin-right: 0.6rem;
  box-shadow: 0 0 12px var(--glow-hard);
  vertical-align: middle;
}
.audit-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 0.5rem;
  background: var(--gradient-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative; z-index: 1;
}
.audit-header .sub {
  color: var(--text-mid);
  font-size: 1rem;
  position: relative; z-index: 1;
  margin-bottom: 2rem;
}
.score-badge {
  display: inline-block;
  border: 1px solid var(--border-lit);
  background: var(--surface-2);
  padding: 1.5rem 2.5rem;
  position: relative; z-index: 1;
}
.score-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold-strike);
  line-height: 1;
}
.score-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.4rem;
}

main.audit-body {
  max-width: 760px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}
section { margin-bottom: 3rem; }
section h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-lit);
  margin-bottom: 1.25rem;
  position: relative;
}
section h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 60px; height: 1px;
  background: var(--gold-strike);
  box-shadow: 0 0 8px var(--glow-hard);
}
section p { color: var(--text-mid); margin-bottom: 1rem; }
section ul.findings, section ol.deliverables {
  list-style: none;
  padding: 0;
}
section ul.findings li, section ol.deliverables li {
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold-strike);
  margin-bottom: 0.6rem;
  color: var(--text-mid);
}
section ul.findings li strong, section ol.deliverables li strong {
  color: var(--text);
  font-weight: 600;
}
section.cta {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  margin-top: 3rem;
}
.cta-btn {
  display: inline-block;
  background: var(--gold-strike);
  color: var(--black);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  padding: 1rem 2rem;
  margin-top: 1rem;
  transition: all 0.15s;
}
.cta-btn:hover {
  background: #fff;
  box-shadow: 0 0 24px var(--glow-hard);
}

.audit-footer {
  text-align: center;
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  color: var(--text-dim);
  font-size: 0.8rem;
}
.audit-footer a { color: var(--gold-strike); text-decoration: none; }
.audit-footer p { margin-bottom: 0.4rem; }
