:root {
  color-scheme: dark;
  font-family: Inter, Arial, sans-serif;
  background: #0b0b0b;
  color: #f4f4f4;
}

* {
  box-sizing: border-box;
}

body.audit-page {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 80% -10%, rgba(255, 255, 255, 0.11), transparent 32rem),
    radial-gradient(circle at -10% 48%, rgba(255, 255, 255, 0.06), transparent 26rem),
    #0b0b0b;
  color: #f4f4f4;
}

.audit-page a {
  color: inherit;
}

.audit-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(11, 11, 11, 0.82);
  backdrop-filter: blur(18px);
}

.audit-brand,
.audit-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f4f4f4;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.audit-brand img {
  width: 28px;
  height: 28px;
}

.audit-nav-link {
  color: #a8a8a8;
  font-size: 13px;
  font-weight: 700;
}

.audit-nav-link:hover {
  color: #f4f4f4;
}

.audit-shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 9vw, 112px) 0 72px;
}

.audit-shell-narrow {
  width: min(760px, calc(100% - 36px));
}

.audit-hero {
  max-width: 900px;
}

.audit-kicker,
.audit-step,
.audit-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audit-kicker,
.audit-step {
  color: #a8a8a8;
}

.audit-page h1,
.audit-page h2,
.audit-page h3,
.audit-page p {
  margin-top: 0;
}

.audit-page h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(48px, 9vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.085em;
}

.audit-start-page h1,
.audit-checkout-page h1,
.audit-intake-page h1 {
  font-size: clamp(42px, 7vw, 78px);
}

.audit-lead {
  max-width: 720px;
  color: #cfcfcf;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.5;
}

.audit-badges,
.audit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audit-badges {
  margin: 28px 0 0;
}

.audit-badge {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #f4f4f4;
  letter-spacing: 0.08em;
}

.audit-section {
  margin-top: clamp(58px, 9vw, 104px);
}

.audit-section h2 {
  margin-bottom: 12px;
  font-size: clamp(29px, 4vw, 46px);
  letter-spacing: -0.065em;
}

.audit-section-copy,
.audit-note,
.audit-card p,
.audit-delivery-list {
  color: #a8a8a8;
  font-size: 16px;
  line-height: 1.65;
}

.audit-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 25px;
}

.audit-card {
  position: relative;
  min-height: 210px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(27, 27, 27, 0.86);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2);
  color: #f4f4f4;
  text-align: left;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

button.audit-card {
  cursor: pointer;
  font: inherit;
}

.audit-card:hover,
.audit-card:focus-visible,
.audit-card.is-selected {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(38, 38, 38, 0.96);
  transform: translateY(-3px);
}

.audit-card-locked {
  cursor: not-allowed;
  opacity: 0.58;
}

.audit-card-locked:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(27, 27, 27, 0.86);
  transform: none;
}

.audit-card:focus-visible,
.audit-button:focus-visible,
.audit-nav-link:focus-visible {
  outline: 2px solid #f4f4f4;
  outline-offset: 4px;
}

.audit-card-number {
  display: block;
  margin-bottom: 34px;
  color: #a8a8a8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.audit-card h2,
.audit-card h3 {
  margin-bottom: 9px;
  font-size: 25px;
  letter-spacing: -0.045em;
}

.audit-card p {
  margin-bottom: 0;
}

.audit-card-arrow {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 23px;
}

.audit-card-status {
  max-width: calc(100% - 48px);
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #f4f4f4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.audit-choice .audit-card-arrow {
  opacity: 0;
}

.audit-choice.is-selected .audit-card-arrow {
  opacity: 1;
}

.audit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border: 1px solid #f4f4f4;
  border-radius: 999px;
  background: #f4f4f4;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  opacity: 1;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.audit-page a.audit-button {
  color: #111;
}

.audit-button:hover {
  background: #fff;
  transform: translateY(-2px);
}

.audit-button.is-disabled,
.audit-button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.46;
  transform: none;
}

.audit-button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: transparent;
  color: #f4f4f4;
}

.audit-page a.audit-button-secondary {
  color: #f4f4f4;
}

.audit-button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.audit-choice-footer,
.audit-checkout-card {
  margin-top: 24px;
}

.audit-selection-copy,
.audit-config-status {
  margin: 12px 0 0;
  color: #a8a8a8;
  font-size: 13px;
}

.audit-choice-footer > .audit-button + .audit-selection-copy {
  margin-top: 18px;
}

.audit-config-status {
  color: #f4cda6;
}

.audit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  list-style: none;
}

.audit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
  color: #d8d8d8;
  font-size: 14px;
  font-weight: 700;
}

.audit-list-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.audit-trust {
  padding: 25px;
  border-left: 2px solid #f4f4f4;
  background: rgba(255, 255, 255, 0.045);
}

.audit-trust p {
  max-width: 790px;
  margin-bottom: 0;
  color: #d5d5d5;
  font-size: 17px;
  line-height: 1.7;
}

.audit-checkout-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background: rgba(27, 27, 27, 0.88);
}

.audit-checkout-card h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.06em;
}

.audit-checkout-card .audit-actions {
  margin-top: 24px;
}

.audit-delivery-list {
  margin: 22px 0 0;
  padding-left: 18px;
}

.audit-tally-frame {
  width: 100%;
  min-height: 760px;
  margin-top: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: #171717;
}

.audit-intake-link {
  display: inline-block;
  margin-top: 15px;
  color: #d7d7d7;
  font-size: 14px;
}

.audit-footer {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 20px 0 36px;
  color: #777;
  font-size: 12px;
}

@media (max-width: 720px) {
  .audit-shell {
    padding-top: 46px;
  }

  .audit-nav {
    min-height: 62px;
    padding: 12px 18px;
  }

  .audit-card-grid,
  .audit-list {
    grid-template-columns: 1fr;
  }

  .audit-page h1 {
    letter-spacing: -0.075em;
  }

  .audit-card {
    min-height: 180px;
  }

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