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

:root {
  --paper: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #eef4f7;
  --ink: #13212d;
  --ink-strong: #07131f;
  --muted: #667685;
  --line: #d9e2ea;
  --line-strong: #b9c7d3;
  --blue: #195bff;
  --blue-dark: #173eb5;
  --green: #12855f;
  --green-soft: #e4f4ec;
  --violet: #6840c6;
  --warning: #a45f13;
  --shadow: 0 18px 48px rgba(19, 33, 45, 0.12);
  --radius: 8px;
  --max: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.audit-shell {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 44%, #eef4f7 100%);
}

.audit-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.audit-nav__inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.audit-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.audit-logo img {
  width: 178px;
  height: auto;
  display: block;
}

.audit-logo__mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.audit-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.audit-nav__links a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
  border-radius: var(--radius);
}

.audit-nav__links a:hover {
  color: var(--ink-strong);
  background: var(--surface-soft);
}

.audit-hero {
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(25, 91, 255, 0.08) 0%, rgba(18, 133, 95, 0.07) 45%, rgba(104, 64, 198, 0.06) 100%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.audit-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background-image:
    linear-gradient(90deg, rgba(19, 33, 45, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(19, 33, 45, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000);
  pointer-events: none;
}

.audit-hero__inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: min(760px, calc(100svh - 72px));
  margin: 0 auto;
  padding: 74px 0 62px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.78fr);
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.audit-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audit-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.audit-hero h1 {
  max-width: 790px;
  margin: 24px 0 22px;
  color: var(--ink-strong);
  font-size: clamp(2.6rem, 5.4vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.audit-hero__lead {
  max-width: 650px;
  margin: 0;
  color: #40505f;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.audit-proof-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audit-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: #334454;
  font-size: 0.86rem;
  font-weight: 640;
}

.audit-proof span {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.audit-intake {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.audit-intake__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.audit-intake__top h2 {
  margin: 0 0 6px;
  color: var(--ink-strong);
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.audit-intake__top p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.audit-seal {
  flex: 0 0 auto;
  min-width: 82px;
  padding: 8px 9px;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.audit-form {
  display: grid;
  gap: 14px;
}

.audit-field {
  display: grid;
  gap: 6px;
}

.audit-field label {
  color: #263646;
  font-size: 0.78rem;
  font-weight: 780;
}

.audit-field input,
.audit-field select,
.audit-field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 12px 12px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.audit-field textarea {
  min-height: 92px;
  resize: vertical;
}

.audit-field input:focus,
.audit-field select:focus,
.audit-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(25, 91, 255, 0.12);
}

.audit-field__help {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.audit-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.audit-button {
  appearance: none;
  border: 0;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 18px;
  font-weight: 820;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 10px 24px rgba(25, 91, 255, 0.22);
}

.audit-button:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.audit-button:disabled {
  opacity: 0.62;
  cursor: not-allowed;
  transform: none;
}

.audit-button--secondary {
  background: var(--ink);
  box-shadow: none;
}

.audit-button--secondary:hover {
  background: var(--ink-strong);
}

.audit-form__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}

.audit-success {
  display: none;
  border: 1px solid #b8dec9;
  background: #f1fbf5;
  border-radius: var(--radius);
  padding: 18px;
}

.audit-success[data-visible="true"] {
  display: block;
}

.audit-success h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 1.08rem;
}

.audit-success p {
  margin: 0;
  color: #315044;
  line-height: 1.6;
}

.audit-section {
  padding: 78px 0;
  border-bottom: 1px solid var(--line);
}

.audit-section--white {
  background: #fff;
}

.audit-section__inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.audit-section__head {
  max-width: 680px;
  margin-bottom: 38px;
}

.audit-section__eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.audit-section h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.audit-section__body {
  margin: 14px 0 0;
  color: #4a5c6d;
  font-size: 1rem;
  line-height: 1.72;
}

.audit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.audit-card,
.audit-finding,
.audit-step,
.result-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.audit-card {
  padding: 22px;
}

.audit-card__num {
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--surface-soft);
  color: var(--blue-dark);
  font-weight: 850;
  margin-bottom: 18px;
}

.audit-card h3,
.audit-finding h3,
.audit-step h3,
.result-panel h3 {
  margin: 0 0 9px;
  color: var(--ink-strong);
  font-size: 1.03rem;
  line-height: 1.25;
}

.audit-card p,
.audit-finding p,
.audit-step p,
.result-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.audit-findings {
  display: grid;
  gap: 12px;
}

.audit-finding {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  padding: 20px;
}

.audit-finding__label {
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audit-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.audit-step {
  padding: 22px;
}

.audit-step__tag {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audit-cta-band {
  padding: 74px 0;
  background: var(--ink-strong);
  color: #fff;
}

.audit-cta-band__inner {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.audit-cta-band h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: 0;
}

.audit-cta-band p {
  max-width: 650px;
  margin: 0 auto 24px;
  color: #b9c7d3;
  line-height: 1.7;
}

.audit-footer {
  background: #fff;
  padding: 54px 0 30px;
}

.audit-footer__inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.audit-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.audit-footer__brand img {
  width: 178px;
  height: auto;
  display: block;
  margin-bottom: 14px;
}

.audit-footer__brand p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.audit-footer h4 {
  margin: 0 0 13px;
  color: var(--ink-strong);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.audit-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.audit-footer a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.audit-footer a:hover {
  color: var(--ink-strong);
}

.audit-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.82rem;
}

.result-hero {
  padding: 76px 0 48px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.result-hero__inner,
.result-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.result-hero h1 {
  max-width: 780px;
  margin: 18px 0 16px;
  color: var(--ink-strong);
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.result-meta span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 7px 9px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.result-shell {
  padding: 40px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

.result-state {
  padding: 44px 0 92px;
}

.result-state[hidden] {
  display: none;
}

.result-state__inner {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.result-state h2 {
  margin: 18px 0 12px;
  color: var(--ink-strong);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.result-state p {
  max-width: 610px;
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}

body[data-result-state="not-ready"] [data-result-content] {
  display: none;
}

.result-stack {
  display: grid;
  gap: 16px;
}

.result-panel {
  padding: 22px;
}

.result-panel--accent {
  border-color: #b8dec9;
  background: #f5fbf7;
}

.result-panel__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.result-kpi {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px;
  background: #fff;
}

.result-kpi span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.result-kpi strong {
  display: block;
  margin-top: 8px;
  color: var(--ink-strong);
  font-size: 1.4rem;
}

.result-rec {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.result-rec:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.result-rec__tag {
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.result-side {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
}

.result-side .audit-button {
  width: 100%;
}

.reactivation-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.reactivation-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.reactivation-item strong {
  color: var(--ink-strong);
}

.reactivation-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.mobile-sticky-cta {
  display: none;
}

.sr-enter {
  opacity: 1;
  transform: none;
  transition: transform 0.35s ease;
}

.sr-enter[data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .audit-hero__inner,
  .result-shell {
    grid-template-columns: 1fr;
  }

  .audit-hero__inner {
    min-height: auto;
    padding-top: 52px;
  }

  .audit-grid,
  .audit-timeline,
  .result-panel__kpis {
    grid-template-columns: 1fr;
  }

  .result-side {
    position: static;
  }

  .audit-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .audit-nav__inner,
  .audit-hero__inner,
  .audit-section__inner,
  .audit-footer__inner,
  .result-hero__inner,
  .result-shell {
    width: min(100% - 28px, var(--max));
  }

  .audit-nav__inner {
    min-height: 66px;
  }

  .audit-logo img {
    width: 142px;
  }

  .audit-nav__links a:not(:last-child) {
    display: none;
  }

  .audit-hero h1,
  .result-hero h1 {
    font-size: clamp(2.15rem, 12vw, 3.25rem);
  }

  .audit-proof-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-right: -14px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .audit-proof-row::-webkit-scrollbar {
    display: none;
  }

  .audit-proof {
    flex: 0 0 auto;
  }

  .audit-form__row,
  .audit-finding,
  .result-rec,
  .reactivation-item {
    grid-template-columns: 1fr;
  }

  .audit-intake {
    padding: 18px;
  }

  .audit-section {
    padding: 56px 0;
  }

  .audit-footer__grid {
    grid-template-columns: 1fr;
  }

  .audit-footer__bottom {
    display: grid;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 50;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    justify-content: center;
  }

  .mobile-sticky-cta .audit-button {
    width: 100%;
  }

  body.audit-shell {
    padding-bottom: 82px;
  }
}

/* Homepage-matched audit funnel skin: dark tiled surface, indigo/violet gradients, and glass panels. */
:root {
  --paper: #08080f;
  --surface: rgba(22, 22, 40, 0.86);
  --surface-soft: rgba(99, 102, 241, 0.1);
  --ink: #e7e9f5;
  --ink-strong: #f7f8ff;
  --muted: #9a9ab3;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(165, 180, 252, 0.22);
  --blue: #6366f1;
  --blue-dark: #818cf8;
  --green: #34d399;
  --green-soft: rgba(52, 211, 153, 0.1);
  --violet: #a855f7;
  --pink: #f9a8d4;
  --warning: #f59e0b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34), 0 0 48px rgba(99, 102, 241, 0.08);
}

@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotateBorder {
  to { --border-angle: 360deg; }
}

body {
  background: #08080f;
}

.audit-shell {
  background:
    radial-gradient(ellipse at 30% 12%, rgba(99, 102, 241, 0.28) 0%, transparent 42%),
    radial-gradient(ellipse at 82% 32%, rgba(168, 85, 247, 0.2) 0%, transparent 44%),
    linear-gradient(180deg, #08080f 0%, #101026 48%, #08080f 100%);
}

.audit-shell::before,
.audit-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.audit-shell::before {
  z-index: 0;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 82%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 82%);
}

.audit-shell::after {
  z-index: 0;
  opacity: 0.72;
  background:
    linear-gradient(102deg, transparent 0%, transparent 14%, rgba(99, 102, 241, 0.1) 14.2%, transparent 31%),
    linear-gradient(96deg, transparent 0%, transparent 52%, rgba(168, 85, 247, 0.09) 52.2%, transparent 68%),
    linear-gradient(180deg, rgba(8, 8, 15, 0) 0%, rgba(8, 8, 15, 0.32) 100%);
}

.audit-nav,
.audit-hero,
.audit-section,
.audit-cta-band,
.audit-footer,
.result-hero,
.result-shell {
  position: relative;
  z-index: 1;
}

.audit-nav {
  background: rgba(8, 8, 15, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.audit-nav__inner {
  min-height: 104px;
}

.audit-logo img,
.audit-footer__brand img {
  width: auto;
  height: 118px;
  object-fit: contain;
  filter: brightness(1.14) drop-shadow(0 0 10px rgba(99, 102, 241, 0.34));
}

.audit-footer__brand img {
  height: 112px;
}

.audit-nav__links a:hover {
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.04);
}

.audit-hero {
  border-bottom: 1px solid rgba(99, 102, 241, 0.16);
  background:
    radial-gradient(ellipse at 74% 34%, rgba(99, 102, 241, 0.18) 0%, transparent 48%),
    linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, rgba(8, 8, 15, 0) 68%);
}

.audit-hero::after,
.audit-cta-band::before {
  background-image:
    linear-gradient(90deg, rgba(165, 180, 252, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(165, 180, 252, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}

.audit-kicker {
  border-color: rgba(99, 102, 241, 0.24);
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.1);
  color: #c7d2fe;
}

.audit-kicker--stacked {
  display: inline-grid;
  grid-template-columns: 7px auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  padding: 9px 14px;
  line-height: 1.18;
}

.audit-kicker--stacked::before {
  grid-row: 1 / span 2;
}

.audit-kicker--stacked span {
  display: block;
}

.audit-kicker--stacked span + span {
  color: #a5b4fc;
  opacity: 0.84;
}

body[data-audit-page="request"] .audit-hero h1 > span,
body[data-audit-page="reactivation"] .audit-hero h1 > span,
body[data-audit-page="result"] .result-hero h1 > span {
  display: block;
}

.audit-title-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 38%, #d946ef 72%, #f9a8d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(168, 85, 247, 0.12));
}

.audit-hero__lead,
.audit-section__body {
  color: var(--muted);
}

.audit-proof {
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #c7c7d8;
}

.audit-intake,
.audit-card,
.audit-finding,
.audit-step,
.result-panel,
.reactivation-item {
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E"),
    linear-gradient(165deg, rgba(22, 22, 40, 0.9) 0%, rgba(17, 17, 32, 0.74) 100%);
  border-color: var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 16px 42px rgba(0, 0, 0, 0.16);
}

.audit-intake {
  position: relative;
  overflow: hidden;
  border-color: var(--line-strong);
}

.audit-intake::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px circle at 88% 6%, rgba(99, 102, 241, 0.16), transparent 42%);
  pointer-events: none;
}

.audit-intake__top,
.audit-form {
  position: relative;
}

.audit-field label {
  color: #dfe4ff;
}

.audit-field input,
.audit-field select,
.audit-field textarea {
  background: rgba(8, 8, 15, 0.7);
  color: var(--ink);
}

.audit-field input:focus,
.audit-field select:focus,
.audit-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18), 0 0 24px rgba(99, 102, 241, 0.12);
}

.audit-button {
  border: 2px solid transparent;
  border-radius: 10px;
  background:
    linear-gradient(135deg, #6366f1, #818cf8) padding-box,
    conic-gradient(from var(--border-angle), #6366f1, #a855f7, #ec4899, #f59e0b, #22c55e, #6366f1) border-box;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.24), 0 10px 26px rgba(99, 102, 241, 0.24);
  animation: rotateBorder 4.8s linear infinite;
}

.audit-button:hover {
  background:
    linear-gradient(135deg, #6366f1, #818cf8) padding-box,
    conic-gradient(from var(--border-angle), #6366f1, #a855f7, #ec4899, #f59e0b, #22c55e, #6366f1) border-box;
  box-shadow: 0 0 28px rgba(99, 102, 241, 0.42), 0 12px 32px rgba(99, 102, 241, 0.28);
}

.audit-button--secondary,
.audit-button--secondary:hover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(99, 102, 241, 0.2)) border-box;
}

.audit-success {
  border-color: rgba(52, 211, 153, 0.34);
  background: rgba(52, 211, 153, 0.1);
}

.audit-success p {
  color: #c9f6e5;
}

.audit-section {
  border-bottom: 1px solid rgba(99, 102, 241, 0.12);
  background: linear-gradient(180deg, rgba(8, 8, 15, 0.3) 0%, rgba(8, 8, 15, 0.74) 100%);
}

.audit-section--white {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, rgba(8, 8, 15, 0.58) 100%);
}

.audit-section__eyebrow {
  background: linear-gradient(135deg, #a5b4fc 0%, var(--violet) 52%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.audit-card__num {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.16), rgba(168, 85, 247, 0.1));
  color: #c7d2fe;
}

.audit-finding__label,
.result-rec__tag {
  color: #a5b4fc;
}

.audit-cta-band {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(99, 102, 241, 0.18) 0%, transparent 54%),
    linear-gradient(180deg, rgba(8, 8, 15, 0.95) 0%, #08080f 100%);
  overflow: hidden;
}

.audit-cta-band::before,
.audit-cta-band::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.audit-cta-band::before {
  inset: 0;
}

.audit-cta-band::after {
  left: 50%;
  top: 50%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(99, 102, 241, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 42px rgba(99, 102, 241, 0.035), 0 0 0 86px rgba(168, 85, 247, 0.025);
}

.audit-cta-band__inner {
  position: relative;
  z-index: 1;
}

.audit-footer {
  background: #08080f;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.audit-footer__grid {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.audit-footer h4,
.audit-footer a:hover {
  color: var(--ink-strong);
}

.result-hero {
  background:
    radial-gradient(ellipse at 76% 22%, rgba(168, 85, 247, 0.18) 0%, transparent 46%),
    linear-gradient(180deg, rgba(99, 102, 241, 0.06) 0%, rgba(8, 8, 15, 0.72) 100%);
  border-bottom-color: rgba(99, 102, 241, 0.14);
}

.result-panel--accent {
  border-color: rgba(52, 211, 153, 0.32);
  background: linear-gradient(165deg, rgba(52, 211, 153, 0.1) 0%, rgba(22, 22, 40, 0.78) 100%);
}

.result-kpi {
  background: rgba(8, 8, 15, 0.48);
}

.result-kpi small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.result-kpi--grade {
  border-color: rgba(245, 158, 11, 0.42);
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 158, 11, 0.16), transparent 42%),
    rgba(8, 8, 15, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 28px rgba(245, 158, 11, 0.08);
}

.result-kpi--grade strong {
  background: linear-gradient(135deg, #fff7ed 0%, #f59e0b 46%, #f9a8d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 680px) {
  .audit-nav__inner {
    min-height: 78px;
  }

  .audit-logo img {
    height: 88px;
  }

  .audit-kicker--stacked {
    max-width: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
