/* ===================================================================
   FirmForte — Audit / instant-checker page styles
   -------------------------------------------------------------------
   Extracted from the inline <style> block in src/audit.njk. Loaded only
   on pages that set `useChecker` (see head.njk), so the ~490 lines of
   audit-page CSS don't ship on every page. Linked last, so its cascade
   order matches the old end-of-body inline block.
   =================================================================== */

  /* Audit-page-specific styles */
  .section-elev { background: var(--bg-soft); }

  .audit-preview {
    max-width: 720px;
    margin: 32px auto 0;
  }
  .audit-preview-card {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .audit-preview-head {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
  }
  .audit-preview-mono {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--ink-muted);
    margin-bottom: 6px;
  }
  .audit-preview-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
  }
  .audit-preview-body { padding: 8px 24px 24px; }
  .audit-preview-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  .audit-preview-row:last-of-type { border-bottom: none; }
  .audit-preview-label {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--ink-muted);
    text-transform: uppercase;
  }
  .audit-preview-result { font-size: 14px; font-weight: 500; }
  .audit-preview-miss { color: var(--danger); }
  .audit-preview-hit { color: var(--success); }
  .audit-preview-divider {
    height: 1px;
    background: var(--border);
    margin: 14px 0 18px;
  }
  .audit-preview-note {
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-soft);
  }
  .audit-preview-note strong { color: var(--ink); }

  @media (max-width: 640px) {
    .audit-preview-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
    }
  }

  /* ---- Instant AEO checker ---- */
  .aeo-panel {
    --aeo-track: var(--border-strong);
    max-width: 760px;
    margin: 36px auto 0;
  }
  .aeo-form {
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-md);
  }
  .aeo-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 10px;
  }
  .aeo-input-row { display: flex; gap: 10px; }
  .aeo-input-row input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 13px 14px;
    font-size: 16px;
    color: var(--ink);
    background: var(--bg);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
  }
  .aeo-input-row input:focus {
    outline: none;
    border-color: var(--accent-deep);
    box-shadow: 0 0 0 3px var(--accent-soft);
  }
  .aeo-input-row .btn { flex: 0 0 auto; white-space: nowrap; }
  .aeo-fineprint {
    font-size: 12.5px;
    color: var(--ink-muted);
    margin: 12px 0 0;
  }
  .aeo-status { margin-top: 12px; }

  .aeo-result {
    margin-top: 22px;
    background: var(--bg-elev);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 24px;
    box-shadow: var(--shadow-lg);
  }
  .aeo-scorecard {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
  }
  .aeo-ring {
    flex: 0 0 auto;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    background: conic-gradient(var(--aeo-track) 0%, var(--aeo-track) 0);
    display: grid;
    place-items: center;
  }
  .aeo-ring-inner {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--bg-elev);
    display: grid;
    place-items: center;
    text-align: center;
    line-height: 1;
  }
  .aeo-score-num {
    font-family: var(--font-mono);
    font-size: 30px;
    font-weight: 600;
    color: var(--ink);
  }
  .aeo-score-of {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink-muted);
    margin-top: 2px;
  }
  .aeo-scoremeta { flex: 1 1 240px; min-width: 0; }
  .aeo-grade {
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
  }
  .aeo-summary { font-size: 15px; color: var(--ink-soft); margin: 0 0 8px; line-height: 1.5; }
  .aeo-scanned {
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: var(--ink-muted);
    word-break: break-all;
  }

  .aeo-checks { list-style: none; margin: 22px 0 0; padding: 0; }
  .aeo-check-row {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
  }
  .aeo-dot {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 5px;
    background: var(--ink-faint);
  }
  .aeo-state-pass .aeo-dot { background: var(--success); }
  .aeo-state-partial .aeo-dot { background: #D9A441; }
  .aeo-state-fail .aeo-dot { background: var(--danger); }
  .aeo-check-main { flex: 1 1 auto; min-width: 0; }
  .aeo-check-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
  }
  .aeo-check-title { font-weight: 600; color: var(--ink); font-size: 15px; }
  .aeo-check-tag {
    flex: 0 0 auto;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-strong);
    color: var(--ink-muted);
  }
  .aeo-state-pass .aeo-check-tag { color: var(--success); border-color: var(--success); }
  .aeo-state-partial .aeo-check-tag { color: #B07A1E; border-color: #D9A441; }
  .aeo-state-fail .aeo-check-tag { color: var(--danger); border-color: var(--danger); }
  .aeo-check-found { font-size: 14px; color: var(--ink-soft); margin-top: 3px; }
  .aeo-fix {
    font-size: 14px;
    color: var(--ink);
    margin-top: 8px;
    padding: 10px 12px;
    background: var(--bg-soft);
    border-radius: var(--radius-sm);
    border-left: 2px solid var(--accent-deep);
    line-height: 1.5;
  }
  /* Gate: hide the actionable fixes until an email unlocks them */
  .aeo-result.locked .aeo-fix { display: none; }

  /* Signal-group sub-headers (Identity & Schema / Content & Structure / …) */
  .aeo-check-group {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-top: 22px;
    padding-bottom: 4px;
  }
  .aeo-check-group:first-child { margin-top: 8px; }

  /* "Couldn't check" rows: present but visibly neutral, never counted */
  .aeo-state-unknown .aeo-dot { background: var(--ink-faint); }
  .aeo-state-unknown .aeo-check-tag { color: var(--ink-muted); border-color: var(--border-strong); }

  /* CDN content-signal note under crawler access */
  .aeo-check-note {
    font-size: 13px;
    color: var(--ink-muted);
    margin-top: 6px;
    padding-left: 10px;
    border-left: 2px solid var(--border-strong);
  }

  /* Per-bot crawler-access matrix */
  .aeo-bots {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
  }
  .aeo-bot {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    background: var(--bg-soft);
    color: var(--ink-soft);
  }
  .aeo-bot-status { text-transform: uppercase; letter-spacing: 0.04em; font-size: 9.5px; }
  .aeo-bot-allowed { border-color: var(--success); color: var(--success); }
  .aeo-bot-blocked { border-color: var(--danger); color: var(--danger); }
  .aeo-bot-unspecified { color: var(--ink-muted); }
  .aeo-bot.is-training { opacity: 0.6; }

  /* Page-experience note: Google's real-world Core Web Vitals. Unweighted —
     styled quieter than a graded signal so it never reads as part of the score. */
  .aeo-experience {
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-soft);
  }
  .aeo-exp-head { display: flex; align-items: center; gap: 10px; }
  .aeo-exp-label { font-weight: 600; color: var(--ink); font-size: 14px; }
  .aeo-exp-tag {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-muted);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-pill);
    padding: 2px 8px;
  }
  .aeo-exp-intro { font-size: 13px; color: var(--ink-muted); line-height: 1.55; margin: 8px 0 12px; }
  .aeo-exp-metrics { list-style: none; margin: 0; padding: 0; }
  .aeo-exp-metric {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-top: 1px solid var(--border);
    font-size: 14px;
  }
  .aeo-exp-name { color: var(--ink-soft); flex: 1; }
  .aeo-exp-value { font-family: var(--font-mono); font-size: 13px; color: var(--ink); }
  .aeo-exp-chip {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    min-width: 74px;
    text-align: center;
  }
  .aeo-cwv-good .aeo-exp-chip { color: var(--success); border-color: var(--success); }
  .aeo-cwv-needs-improvement .aeo-exp-chip { color: #B07A1E; border-color: #D9A441; }
  .aeo-cwv-poor .aeo-exp-chip { color: var(--danger); border-color: var(--danger); }
  .aeo-exp-source { font-size: 11px; color: var(--ink-faint); margin: 12px 0 0; }

  /* Pricing bridge: the tier that fixes what the scan found. Shown free. */
  .aeo-bridge { margin-top: 22px; }
  .aeo-bridge-inner {
    padding: 18px 20px;
    border: 1px solid var(--border-strong);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
    background: var(--bg-soft);
  }
  .aeo-bridge-head {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px 12px;
    margin-bottom: 8px;
  }
  .aeo-bridge-label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-muted);
  }
  .aeo-bridge-tier { font-weight: 600; color: var(--ink); font-size: 15px; }
  .aeo-bridge-blurb { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin: 0 0 14px; }
  .aeo-bridge-cta { display: inline-flex; align-items: center; }

  /* Pre-scan transparency panel (what we check, before you run it) */
  .aeo-prescan {
    margin-top: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-soft);
  }
  .aeo-prescan > summary {
    cursor: pointer;
    padding: 12px 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-soft);
    list-style: none;
  }
  .aeo-prescan > summary::-webkit-details-marker { display: none; }
  .aeo-prescan > summary::after { content: " +"; color: var(--ink-muted); font-family: var(--font-mono); }
  .aeo-prescan[open] > summary::after { content: " –"; }
  .aeo-prescan-body { padding: 0 16px 14px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 20px; }
  .aeo-prescan-group .h4 {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin: 0 0 6px;
  }
  .aeo-prescan-group ul { list-style: none; margin: 0; padding: 0; }
  .aeo-prescan-group li { font-size: 13px; color: var(--ink-soft); padding: 2px 0; }
  .aeo-prescan-note { grid-column: 1 / -1; margin: 4px 0 0; font-size: 12.5px; color: var(--ink-muted); line-height: 1.5; }
  @media (max-width: 560px) { .aeo-prescan-body { grid-template-columns: 1fr; } }

  /* "AI-generated" disclaimer on the on-screen plan */
  .aeo-plan-disclaimer {
    font-size: 12.5px;
    color: var(--ink-muted);
    line-height: 1.5;
    margin: 20px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--border);
  }

  /* Competitor side-by-side */
  .aeo-compare {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
  }
  .aeo-compare-intro h3 { font-size: 17px; font-weight: 600; color: var(--ink); margin: 0 0 4px; }
  .aeo-compare-intro p { font-size: 14px; color: var(--ink-soft); margin: 0 0 14px; line-height: 1.5; }
  .aeo-compare-status { margin-top: 10px; }
  .aeo-compare-result { margin-top: 20px; }

  .aeo-cmp-head { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .aeo-cmp-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-soft);
  }
  .aeo-cmp-who {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-muted);
  }
  .aeo-cmp-host { font-size: 13px; color: var(--ink-soft); word-break: break-all; }
  .aeo-cmp-score { font-family: var(--font-mono); font-size: 26px; font-weight: 600; color: var(--ink); }

  .aeo-cmp-headline { font-size: 14.5px; font-weight: 600; color: var(--ink); margin: 16px 0 10px; }
  .aeo-cmp-headline.is-behind { color: var(--danger); }
  .aeo-cmp-headline.is-ahead { color: var(--success); }

  .aeo-cmp-rows { list-style: none; margin: 0; padding: 0; }
  .aeo-cmp-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 10px;
    padding: 9px 8px;
    border-top: 1px solid var(--border);
  }
  .aeo-cmp-row.is-losing { background: color-mix(in srgb, var(--danger) 7%, transparent); }
  .aeo-cmp-signal { font-size: 13.5px; color: var(--ink); }
  .aeo-cmp-cell {
    min-width: 68px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-strong);
    color: var(--ink-muted);
  }
  .aeo-cmp-cell.aeo-state-pass { color: var(--success); border-color: var(--success); }
  .aeo-cmp-cell.aeo-state-partial { color: #B07A1E; border-color: #D9A441; }
  .aeo-cmp-cell.aeo-state-fail { color: var(--danger); border-color: var(--danger); }

  .aeo-gate { margin-top: 22px; }
  .aeo-result:not(.locked) .aeo-gate { display: none; }
  .aeo-gate-inner {
    background: var(--surface-invert);
    color: var(--on-invert);
    border-radius: var(--radius);
    padding: 22px;
  }
  .aeo-gate-inner h3 { color: var(--on-invert); margin: 0 0 6px; font-size: 18px; }
  .aeo-gate-inner p { color: var(--on-invert-soft); margin: 0 0 14px; font-size: 14.5px; }
  .aeo-gate-inner strong { color: var(--on-invert); }
  .aeo-unlock input[type="email"] {
    flex: 1 1 auto;
    min-width: 0;
    padding: 13px 14px;
    font-size: 16px;
    color: var(--ink);
    background: var(--bg-elev);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
  }
  .aeo-unlock-status { margin-top: 10px; }
  .aeo-gate-inner .aeo-fineprint { color: var(--on-invert-soft); }

  .aeo-after { margin-top: 22px; }
  .aeo-after p { font-size: 15px; color: var(--ink-soft); margin: 0 0 14px; line-height: 1.55; }

  /* ---- Re-check loop (deltas + re-run control) ---- */
  .aeo-grade-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 4px;
  }
  .aeo-grade-row .aeo-grade { margin-bottom: 0; }
  .aeo-delta {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-strong);
    color: var(--ink-muted);
    white-space: nowrap;
  }
  .aeo-delta.is-up { color: var(--success); border-color: var(--success); background: var(--accent-soft); }
  .aeo-delta.is-down { color: var(--danger); border-color: var(--danger); }
  .aeo-delta.is-flat { color: var(--ink-muted); }

  .aeo-check-head .aeo-check-title { flex: 1 1 auto; }
  .aeo-check-move {
    flex: 0 0 auto;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: var(--radius-pill);
  }
  .aeo-check-move.is-up { color: var(--on-accent, #14151A); background: var(--accent); }
  .aeo-check-move.is-down { color: var(--danger); border: 1px solid var(--danger); }

  .aeo-recheck {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px dashed var(--border-strong);
  }
  .aeo-recheck-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  .aeo-recheck-copy {
    flex: 1 1 240px;
    font-size: 14px;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.5;
  }
  .aeo-recheck-btn {
    flex: 0 0 auto;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--ink);
    border-radius: var(--radius-sm);
    padding: 11px 18px;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
  }
  .aeo-recheck-btn:hover { background: var(--ink); color: var(--bg-elev); }
  .aeo-recheck-btn:disabled { opacity: 0.6; cursor: default; }
  .aeo-recheck-status { margin-top: 12px; }

  @media (max-width: 560px) {
    .aeo-input-row { flex-direction: column; }
    .aeo-input-row .btn { width: 100%; justify-content: center; }
    .aeo-scorecard { gap: 16px; }
    .aeo-recheck-btn { width: 100%; }
  }

  .aeo-turnstile { margin-top: 12px; }

  /* ---- AI action plan (post-unlock) ---- */
  .aeo-plan { margin-top: 22px; }
  .aeo-plan-headline {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.45;
    margin: 0 0 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }
  .aeo-plan h4 {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin: 22px 0 12px;
  }
  .aeo-prio { list-style: none; margin: 0; padding: 0; counter-reset: prio; }
  .aeo-prio > li {
    counter-increment: prio;
    position: relative;
    padding: 0 0 16px 38px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
  }
  .aeo-prio > li:last-child { border-bottom: none; margin-bottom: 0; }
  .aeo-prio > li::before {
    content: counter(prio);
    position: absolute;
    left: 0;
    top: -2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--on-accent, #14151A);
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    display: grid;
    place-items: center;
  }
  .aeo-prio-title { font-weight: 600; color: var(--ink); font-size: 15px; }
  .aeo-prio-why { font-size: 13.5px; color: var(--ink-muted); margin: 3px 0 8px; }
  .aeo-prio-how { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

  .aeo-schema-wrap { position: relative; margin-top: 10px; }
  .aeo-schema {
    display: block;
    background: var(--surface-invert);
    color: var(--on-invert);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.5;
    white-space: pre-wrap;
    word-break: break-word;
    overflow-x: auto;
    margin: 0;
  }
  .aeo-copy {
    position: absolute;
    top: 8px;
    right: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-strong);
    background: var(--bg-elev);
    color: var(--ink-soft);
    cursor: pointer;
  }
  .aeo-copy:hover { color: var(--ink); border-color: var(--ink-muted); }
  .aeo-faqs { list-style: none; margin: 0; padding: 0; }
  .aeo-faqs li {
    font-size: 14px;
    color: var(--ink-soft);
    padding: 9px 0 9px 20px;
    position: relative;
    border-bottom: 1px solid var(--border);
  }
  .aeo-faqs li:last-child { border-bottom: none; }
  .aeo-faqs li::before { content: "?"; position: absolute; left: 0; color: var(--accent-deep); font-weight: 700; }

  /* ---- Hero "start here" cue ---- */
  .aeo-cue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
  }
  .aeo-cue-pill {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.04em;
    font-weight: 600;
    color: var(--on-accent, #14151A);
    background: var(--accent);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    transform: rotate(-3deg);
  }
  .aeo-cue-arrow {
    width: 30px;
    height: 40px;
    color: var(--ink);
    animation: aeo-cue-bob 1.8s ease-in-out infinite;
  }
  @keyframes aeo-cue-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
  }
  @media (prefers-reduced-motion: reduce) {
    .aeo-cue-arrow { animation: none; }
  }

  /* ---- Hero instant checker (two-column) ---- */
  .aeo-hero-visual { position: relative; }
  .aeo-hero-visual > * { position: relative; z-index: 1; }
  .aeo-hero-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 440px;
    height: 440px;
    max-width: 115%;
    background: radial-gradient(circle, var(--accent-soft) 0%, transparent 62%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
  }
  .aeo-hero .aeo-panel { margin: 0; max-width: 100%; }
  .aeo-hero-alt { margin: 16px 0 0; font-size: 14px; color: var(--ink-muted); }
  .aeo-hero-alt a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }

  @media (max-width: 1024px) {
    .aeo-hero-visual { max-width: 560px; }
    .aeo-hero-visual::before { width: 340px; height: 340px; }
  }

/* ===================================================================
   Print: turn the on-screen result into a forwardable one-pager.
   Only loaded on /audit/, so these chrome selectors apply just there.
   Fixes/plan print exactly as they appear on screen (still gated —
   nothing hidden is forced visible), so an unlocked plan forwards clean.
   =================================================================== */
@media print {
  .site-nav, .site-footer, .mobile-cta-bar, .cookie-consent, .back-to-top,
  .aeo-cue, .aeo-hero-alt, #aeo-check-form, .aeo-prescan, .aeo-gate,
  .aeo-recheck, .aeo-after, .aeo-bridge-cta, .aeo-compare {
    display: none !important;
  }
  body { background: #fff !important; }
  .aeo-hero { padding: 0 !important; }
  .aeo-panel, .aeo-result { max-width: 100% !important; margin: 0 !important; }
  .aeo-check-row, .aeo-bots, .aeo-fix, .aeo-prio li, .aeo-bridge-inner { break-inside: avoid; }
}
