:root {
  --ink: #080a1c;
  --panel: #151627;
  --orange: #fe4002;
  --orange-2: #ff5b28;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --shadow-card: 0 24px 80px rgba(0, 0, 0, 0.34);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { color-scheme: dark; background: var(--ink); }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(254, 64, 2, 0.16), transparent 28rem),
    linear-gradient(145deg, #090b20, #08091a 58%, #120a15);
  color: var(--text);
  font-family: Archivo, sans-serif;
}
a { color: inherit; }
.audit-site-header {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(22px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.audit-site-header nav,
.audit-page-footer > div {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.audit-brand img { display: block; width: 52px; height: auto; }
.audit-home-link,
.audit-secondary-link,
.audit-page-footer a {
  color: var(--muted);
  text-underline-offset: 4px;
}
.audit-primary-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  text-decoration: none;
  font-weight: 800;
}
.audit-page-main {
  width: min(1280px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 110px) 0;
}
.audit-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
}
.audit-eyebrow {
  color: var(--orange-2);
  font: 700 12px/1.4 "Space Mono", monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.audit-page-intro h1 {
  max-width: 720px;
  margin: 20px 0 24px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.audit-page-intro > p:not(.audit-eyebrow, .audit-book-copy) {
  max-width: 600px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.audit-book-copy { margin: 34px 0 10px; font-weight: 700; }
.audit-secondary-link { font-weight: 700; }
.audit-page-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 28px clamp(22px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 14px;
}

@media (max-width: 900px) {
  .audit-page-layout { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) {
  .audit-site-header,
  .audit-page-footer { align-items: flex-start; flex-direction: column; }
  .audit-site-header nav { width: 100%; justify-content: space-between; }
  .audit-page-main { width: min(100% - 32px, 1280px); padding: 44px 0 64px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
