  :root {
    --brand: #1622C2;
    --brand-dark: #0E18A0;
    --brand-light: #E8EAFB;
    --ink: #0B0F2C;
    --ink-soft: #3A3F5C;
    --muted: #6B7088;
    --bg: #F4F5FA;
    --card: #FFFFFF;
    --border: #E1E3EE;
    --accent: #FFB400;
    --success: #1B9A5A;
    --warn-bg: #FFF8E1;
    --warn-border: #F2C94C;
    --shadow-sm: 0 1px 2px rgba(11, 15, 44, 0.04), 0 1px 3px rgba(11, 15, 44, 0.06);
    --shadow-md: 0 4px 12px rgba(11, 15, 44, 0.06), 0 2px 4px rgba(11, 15, 44, 0.04);
    --radius: 12px;
    --radius-sm: 8px;
    --container: 1120px;
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  }

  * { box-sizing: border-box; }

  html {
    scroll-behavior: smooth;
    background: #0A0F2D;
    overflow-x: hidden;
  }

  body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    margin: 0;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  a { color: var(--brand); text-decoration: none; }
  a:hover { text-decoration: underline; }
  a:focus-visible,
  button:focus-visible,
  summary:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px var(--brand);
  }

  .skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    background: var(--ink);
    color: #fff;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    transform: translateY(-150%);
    transition: transform 0.15s ease;
  }
  .skip-link:focus {
    transform: translateY(0);
    outline: 3px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 6px var(--brand);
    text-decoration: none;
  }

  .audit-modal-open {
    overflow: hidden;
  }

  .audit-modal[hidden] {
    display: none;
  }

  .audit-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 20px;
  }

  .audit-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 24, 0.68);
  }

  .audit-modal-panel {
    position: relative;
    width: min(100%, 520px);
    background: #fff;
    border: 1px solid rgba(22, 34, 194, 0.12);
    border-radius: var(--radius-sm);
    box-shadow: 0 30px 90px rgba(5, 8, 24, 0.34);
    padding: clamp(24px, 5vw, 36px);
  }

  .audit-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #fff;
    color: var(--ink-soft);
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
  }

  .audit-modal-close:hover {
    color: var(--ink);
    border-color: var(--brand);
  }

  .image-lightbox[hidden] {
    display: none;
  }

  .image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: grid;
    place-items: start center;
    overflow: auto;
    padding: 76px clamp(16px, 6vw, 80px) 32px;
    background: rgba(88, 92, 108, 0.72);
  }

  .image-lightbox-backdrop {
    position: fixed;
    inset: 0;
    border: 0;
    background: transparent;
    cursor: zoom-out;
  }

  .image-lightbox-panel {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: var(--image-lightbox-width, min(1080px, calc(100vw - 160px)));
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .image-lightbox-panel img {
    width: 100%;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
  }

  .image-lightbox-controls {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 40px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 30px rgba(5, 8, 24, 0.22);
    transform: translateX(-50%);
  }

  .image-lightbox-control {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
  }

  .image-lightbox-control:hover,
  .image-lightbox-control:focus-visible {
    border-color: var(--brand);
    color: var(--brand);
  }

  .image-lightbox-control:disabled {
    color: var(--muted);
    cursor: not-allowed;
    opacity: 0.42;
  }

  .image-lightbox-range {
    width: min(170px, 28vw);
    accent-color: var(--brand);
    cursor: pointer;
  }

  .image-lightbox-zoom {
    min-width: 42px;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 800;
    text-align: center;
  }

  .image-lightbox-close {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: #fff;
    color: var(--ink-soft);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(5, 8, 24, 0.18);
  }

  .image-lightbox-close:hover,
  .image-lightbox-close:focus-visible {
    color: var(--ink);
    border-color: var(--brand);
  }

  .image-lightbox-caption {
    margin: 0;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
  }

  @media (max-width: 760px) {
    .image-lightbox {
      padding: 76px 16px 28px;
    }
    .image-lightbox-panel {
      width: var(--image-lightbox-width, calc(100vw - 32px));
    }
  }

  .audit-modal-eyebrow {
    margin: 0 0 8px;
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .audit-modal-panel h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.8rem, 5vw, 2.45rem);
    line-height: 1.08;
  }

  .audit-modal-copy,
  .audit-modal-note {
    color: var(--ink-soft);
  }

  .audit-modal-copy {
    margin: 12px 0 22px;
  }

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

  .audit-modal-form label {
    color: var(--ink);
    font-weight: 700;
    font-size: 0.92rem;
  }

  .audit-modal-form input:not([type="hidden"]) {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    font: inherit;
    color: var(--ink);
    background: #fff;
  }

  .audit-modal-form input:not([type="hidden"]):focus {
    outline: 3px solid rgba(22, 34, 194, 0.16);
    border-color: var(--brand);
  }

  .audit-modal-form input[name="_honey"] {
    position: absolute;
    left: -9999px;
  }

  .audit-modal-form button {
    margin-top: 10px;
    justify-content: center;
    border: 0;
    cursor: pointer;
  }

  .audit-modal-note {
    margin: 14px 0 0;
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .audit-toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1001;
    max-width: min(360px, calc(100vw - 40px));
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    box-shadow: var(--shadow-md);
    font-weight: 700;
  }

  .audit-toast-error {
    background: #7F1D1D;
  }

  /* Editorial Disclosure Banner */
  .disclosure-banner {
    background: var(--warn-bg);
    border-bottom: 1px solid var(--warn-border);
    padding: 10px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--ink-soft);
  }
  .disclosure-banner strong { color: var(--ink); }

  /* Header */
  header.site-header {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    max-width: min(1600px, 100%);
    margin: 0 auto;
    padding: 14px clamp(20px, 4vw, 52px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(18px, 2.4vw, 36px);
  }
  .logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
    flex: 0 0 auto;
  }
  .logo-img {
    height: 32px;
    width: auto;
    display: block;
  }

  nav.main-nav ul {
    display: flex;
    gap: clamp(18px, 2.2vw, 34px);
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: nowrap;
  }
  nav.main-nav a {
    color: var(--ink-soft);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.15;
    white-space: nowrap;
  }
  nav.main-nav a:hover { color: var(--brand); text-decoration: none; }
  nav.main-nav a[aria-current="page"],
  .nav-dropdown-menu a[aria-current="page"] {
    color: var(--brand);
    font-weight: 800;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 0;
    flex: 0 0 auto;
  }
  .header-signin {
    color: var(--ink-soft);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
  }
  .header-signin:hover { color: var(--brand); text-decoration: none; }
  .header-cta {
    background: var(--brand);
    color: #fff;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.15s;
    white-space: nowrap;
  }
  .header-cta:hover { background: var(--brand-dark); text-decoration: none; }
  .nav-mobile-only { display: none; }
  .nav-mobile-only .cta-link {
    color: var(--brand) !important;
    font-weight: 700;
  }

  /* Mobile CTA row is JS-injected for the mobile drawer; hide it everywhere by default */
  nav.main-nav .mobile-cta-row { display: none; }
  /* Keep CTA text white inside the drawer (defeats nav.main-nav a specificity) */
  nav.main-nav .mobile-cta-row .header-cta,
  nav.main-nav .mobile-cta-row .header-cta:hover { color: #fff; }

  .hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
  }
  .hamburger span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: all 0.2s;
  }

  @media (max-width: 1180px) {
    nav.main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--card); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); }
    nav.main-nav.open { display: block; }
    nav.main-nav ul { flex-direction: column; gap: 0; padding: 12px 20px; }
    nav.main-nav li { padding: 12px 0; border-bottom: 1px solid var(--border); }
    nav.main-nav li:last-child { border-bottom: none; }
    .hamburger { display: flex; }
    .header-actions { display: none; }
    .nav-mobile-only { display: block; }
  }

  /* Hero / Above-the-fold */
  .hero {
    padding: 64px 20px 32px;
    max-width: var(--container);
    margin: 0 auto;
  }
  .breadcrumb {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 16px;
  }
  .breadcrumb a { color: var(--muted); }
  .breadcrumb span { margin: 0 8px; }

  h1 {
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 16px;
    font-weight: 800;
  }
  .subhead {
    font-size: 1.1rem;
    color: var(--ink-soft);
    max-width: 720px;
    margin: 0 0 32px;
  }

  /* Quick Answer block */
  .quick-answer {
    background:
      radial-gradient(circle at 100% 0%, rgba(255, 180, 0, 0.14), transparent 32%),
      linear-gradient(135deg, #fff 0%, #F8F9FE 100%);
    border: 1px solid rgba(22, 34, 194, 0.14);
    border-left: 5px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 28px 32px;
    box-shadow: var(--shadow-md);
    margin-bottom: 48px;
  }
  .quick-answer .label {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 14px;
  }
  .quick-answer h2 {
    font-size: 1.35rem;
    margin: 0 0 12px;
    color: var(--ink);
    font-weight: 700;
  }
  .quick-answer p { margin: 0 0 12px; color: var(--ink-soft); font-size: 1rem; }
  .quick-answer p:last-child { margin-bottom: 0; }
  .quick-answer strong { color: var(--ink); }

  /* Main content sections */
  main {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px 80px;
  }

  .home-main {
    max-width: none;
    padding: 0;
    overflow-x: hidden;
  }

  .content-block {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, #fff 100%);
    border: 1px solid rgba(22, 34, 194, 0.12);
    border-radius: var(--radius-sm);
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
  }
  .content-block::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), var(--brand));
    opacity: 0.85;
  }

  @media (max-width: 640px) {
    .content-block { padding: 28px 20px; }
  }

  h2 {
    font-size: 1.65rem;
    color: var(--ink);
    margin: 0 0 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.25;
  }
  h3 {
    font-size: 1.2rem;
    color: var(--ink);
    margin: 28px 0 12px;
    font-weight: 700;
  }
  h4 {
    font-size: 1rem;
    color: var(--ink);
    margin: 20px 0 8px;
    font-weight: 700;
  }

  p { color: var(--ink-soft); margin: 0 0 14px; }
  p:last-child { margin-bottom: 0; }

  ul, ol { color: var(--ink-soft); margin: 0 0 16px; padding-left: 24px; }
  li { margin-bottom: 6px; }

  /* Standards comparison table */
  .compare-table-wrap {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
  }
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: var(--card);
    min-width: 720px;
  }
  .compare-table th,
  .compare-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
  }
  .compare-table thead th {
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    border-bottom: none;
  }
  .compare-table thead th:first-child { background: var(--brand-dark); }
  .compare-table tbody tr:nth-child(even) { background: #FAFBFE; }
  .compare-table tbody tr:last-child td { border-bottom: none; }
  .compare-table td:first-child {
    font-weight: 600;
    color: var(--ink);
    background: #F8F9FE;
  }
  .compare-table tbody tr:nth-child(even) td:first-child { background: #F2F4FC; }

  /* Timeline */
  .timeline {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    position: relative;
  }
  .timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--brand-light);
  }
  .timeline li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 24px;
  }
  .timeline li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--brand);
    border: 3px solid var(--card);
    box-shadow: 0 0 0 2px var(--brand);
  }
  .timeline .year {
    font-weight: 700;
    color: var(--brand);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
  }
  .timeline .event {
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 4px;
  }

  /* Decision box */
  .decision-box {
    background: var(--brand-light);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin: 16px 0;
    border-left: 4px solid var(--brand);
  }
  .decision-box .scenario {
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
  }
  .decision-box p { margin: 0; }

  /* FAQ */
  .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
  }
  .faq-item:last-child { border-bottom: none; padding-bottom: 0; }
  .faq-item:first-child { padding-top: 0; }
  .faq-item h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    color: var(--ink);
  }
  .faq-item p { margin: 0; }

  /* Related guides */
  .related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 20px;
  }
  .related-card {
    background: #F8F9FE;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    transition: all 0.2s;
    display: block;
    color: inherit;
  }
  .related-card:hover {
    background: var(--brand-light);
    border-color: var(--brand);
    transform: translateY(-2px);
    text-decoration: none;
  }
  .related-card .related-label {
    font-size: 0.75rem;
    color: var(--brand);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
  }
  .related-card .related-title {
    color: var(--ink);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
  }

  /* Editorial CTA — cinematic gradient with serif headline */
  .editorial-cta {
    background:
      radial-gradient(ellipse at 0% 0%, rgba(22, 34, 194, 0.5) 0%, transparent 60%),
      linear-gradient(135deg, var(--brand-dark) 0%, #050818 100%);
    color: #fff;
    border-radius: var(--radius);
    padding: 40px 44px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
  }
  .editorial-cta h2 {
    color: #fff;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    letter-spacing: 0.005em;
    font-size: 1.85rem;
  }
  .editorial-cta p { color: rgba(255, 255, 255, 0.92); }
  .editorial-cta .disclosure-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 14px;
  }
  .cta-btn {
    display: inline-block;
    background: #fff;
    color: var(--brand);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    margin-top: 12px;
    transition: transform 0.2s;
  }
  .cta-btn:hover { transform: translateY(-1px); text-decoration: none; }

  /* Footer */
  footer {
    background: var(--ink);
    color: #C9CCDF;
    padding: 40px 20px;
    text-align: center;
    font-size: 0.9rem;
  }
  footer a { color: #C9CCDF; }
  footer p { color: #C9CCDF; max-width: 720px; margin: 0 auto 8px; }

  /* Helpers */
  .iso-tag {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
  }
  .checklist {
    list-style: none;
    padding-left: 0;
  }
  .checklist li {
    padding-left: 26px;
    position: relative;
    margin-bottom: 8px;
  }
  .checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--success);
    font-weight: 800;
    font-size: 1.1rem;
  }

  /* Inline SVG diagrams (reusable wrapper) */
  .diagram {
    margin: 32px 0;
    padding: 28px 28px 22px;
    background: #F8F9FE;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
  }
  .diagram svg {
    display: block;
    width: 100%;
    height: auto;
    font-family: var(--font);
  }
  .diagram figcaption {
    margin-top: 14px;
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
  }
  @media (max-width: 540px) {
    .diagram { padding: 22px 18px 18px; }
  }

  /* TOC */
  .toc {
    background: linear-gradient(135deg, #F8F9FE 0%, var(--brand-light) 100%);
    border: 1px solid rgba(22, 34, 194, 0.14);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin: 0 0 32px;
  }
  .toc h2 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin: 0 0 12px;
    font-weight: 700;
  }
  .toc ol {
    margin: 0;
    padding-left: 20px;
    color: var(--ink-soft);
  }
  .toc li { margin-bottom: 4px; }
  .toc a { color: var(--ink); }

  /* ============= HOME PAGE ADDITIONS ============= */

  /* Big hero for home page */
  .home-hero {
    background: linear-gradient(135deg, #1622C2 0%, #2D3FE8 100%);
    color: #fff;
    padding: 80px 20px 100px;
    text-align: center;
  }
  .home-hero-inner {
    max-width: 820px;
    margin: 0 auto;
  }
  .home-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    color: #fff;
  }
  .home-hero .lede {
    font-size: 1.2rem;
    line-height: 1.55;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.92);
  }
  .home-hero .cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
  .btn-primary {
    background: #fff;
    color: var(--brand);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { transform: translateY(-1px); text-decoration: none; }
  .btn-ghost {
    background: transparent;
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    display: inline-block;
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.1); text-decoration: none; }
  .home-hero .pricing-line {
    margin-top: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
  }

  /* Section wrapper for home page */
  .home-section {
    max-width: var(--container);
    margin: 0 auto;
    padding: 70px 20px;
  }
  .home-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    text-align: center;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
  }
  .home-section .section-lede {
    text-align: center;
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
  }

  /* Value prop grid (3 or 4 columns) */
  .value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
  }
  .value-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
  }
  .value-card .value-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-light);
    border-radius: var(--radius-sm);
    padding: 8px;
  }
  .value-card .value-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
  }
  .value-card .value-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand);
    line-height: 1;
    margin-bottom: 8px;
  }
  .value-card h3 {
    font-size: 1.1rem;
    margin: 0 0 8px;
  }
  .value-card p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.55;
  }

  /* Service category grid (5 cards on home page) */
  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }
  .service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 26px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.15s, box-shadow 0.15s;
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .service-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
  }
  .service-card .service-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brand);
    margin-bottom: 10px;
  }
  .service-card h3 {
    font-size: 1.2rem;
    margin: 0 0 10px;
    color: var(--ink);
  }
  .service-card p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.55;
  }

  /* How it works */
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    align-items: stretch;
  }
  .step {
    text-align: center;
    min-height: 100%;
  }
  .step-num {
    width: 42px;
    height: 42px;
    background: var(--brand);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 18px;
    box-shadow: 0 8px 18px rgba(22, 34, 194, 0.22);
  }
  .step h3 {
    font-size: 1.05rem;
    margin: 0 0 12px;
  }
  .step p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin: 0;
    line-height: 1.55;
  }

  /* Pricing strip */
  .pricing-strip {
    background: var(--brand-light);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
  }
  .pricing-strip h3 {
    font-size: 1.4rem;
    margin: 0 0 12px;
  }
  .pricing-strip .big-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand);
    line-height: 1;
    margin: 16px 0 8px;
  }
  .pricing-strip .price-detail {
    color: var(--ink-soft);
    font-size: 0.95rem;
    margin: 0 0 20px;
  }

  /* Final CTA — matches cinematic hero gradient */
  .final-cta {
    background:
      radial-gradient(ellipse at 50% 30%, rgba(22, 34, 194, 0.4) 0%, transparent 60%),
      linear-gradient(180deg, #0A0F2D 0%, #050818 100%);
    border-top: 4px solid var(--accent);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta h2 {
    color: #fff;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    font-size: clamp(1.85rem, 3.5vw, 2.6rem);
    letter-spacing: 0.005em;
    margin: 0 0 14px;
  }
  .final-cta p { color: rgba(255,255,255,0.82); font-size: 1.05rem; margin: 0 0 28px; }

  /* Footer — dramatic dark navy matching cinematic style */
  footer.site-footer {
    background: #0A0F2D;
    border-top: 4px solid var(--accent);
    padding: 50px 20px 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
  }
  footer.site-footer a {
    color: rgba(255, 255, 255, 0.78);
    transition: color 0.15s;
  }
  footer.site-footer a:hover {
    color: var(--accent);
    text-decoration: none;
  }
  footer.site-footer p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto 8px;
  }
  footer.site-footer.footer-modern > p:not(.footer-bottom) {
    display: none;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(140px, 1fr));
    gap: 28px;
    max-width: var(--container);
    margin: 0 auto;
    text-align: left;
  }
  .footer-brand strong,
  .footer-col strong {
    display: block;
    color: #fff;
    font-weight: 800;
    margin-bottom: 10px;
  }
  .footer-col a {
    display: block;
    margin: 0 0 8px;
  }
  .footer-bottom {
    max-width: var(--container);
    margin: 28px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: left;
  }

  @media (max-width: 760px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
      grid-column: 1 / -1;
    }
  }

  @media (max-width: 520px) {
    .footer-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Compact hero for topic pages — dramatic dark treatment matching home */
  .topic-hero {
    background:
      radial-gradient(ellipse at 50% 30%, rgba(22, 34, 194, 0.4) 0%, transparent 60%),
      linear-gradient(180deg, #0A0F2D 0%, #0E18A0 100%);
    border-top: 4px solid var(--accent);
    border-bottom: none;
    padding: 70px 20px 50px;
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .topic-hero[data-topic="ada"] { border-top-color: var(--accent); }
  .topic-hero[data-topic="federal"] { border-top-color: var(--accent); }
  .topic-hero[data-topic="workflow"] { border-top-color: var(--accent); }
  .topic-hero[data-topic="buyers"] { border-top-color: var(--brand); }
  .topic-hero[data-topic="company"] { border-top-color: var(--accent); }
  .topic-hero[data-topic="standards"] { border-top-color: var(--brand); }
  .topic-hero[data-topic="audit"] { border-top-color: var(--accent); }

  /* Subtle blueprint grid in topic hero */
  .topic-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
  }
  .topic-hero-inner {
    position: relative;
    z-index: 2;
  }

  .topic-hero .breadcrumb {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
  }
  .topic-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.72);
  }
  .topic-hero .breadcrumb a:hover {
    color: var(--accent);
  }

  .topic-hero h1 {
    color: #fff;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    letter-spacing: 0.005em;
    text-shadow: 0 0 40px rgba(22, 34, 194, 0.4);
  }

  .topic-hero .subhead {
    color: rgba(255, 255, 255, 0.82);
  }
  .topic-hero-inner {
    max-width: 820px;
    margin: 0 auto;
  }
  .topic-hero .breadcrumb {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 14px;
  }
  .topic-hero .breadcrumb a { color: var(--muted); }
  .topic-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
  }

  .audit-hero {
    padding: 58px 20px 64px;
    background:
      linear-gradient(135deg, rgba(5, 8, 24, 0.98) 0%, rgba(14, 24, 160, 0.95) 58%, rgba(12, 20, 84, 0.98) 100%),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 84px);
  }

  .audit-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent), var(--success), var(--brand));
    z-index: 2;
  }

  .audit-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: clamp(46px, 6vw, 76px);
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
  }

  .audit-hero-copy {
    max-width: 620px;
  }

  .audit-kicker {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .audit-hero h1 {
    max-width: 610px;
    color: #fff;
    font-size: 2.35rem;
    line-height: 1.08;
    letter-spacing: 0;
    margin-bottom: 14px;
  }

  .audit-hero .subhead {
    max-width: 600px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
  }

  .audit-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 24px;
  }

  .audit-hero-actions .cta-btn {
    margin-top: 0;
  }

  .audit-secondary-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
  }

  .audit-secondary-link:hover {
    color: var(--accent);
    text-decoration: none;
  }

  .audit-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
  }

  .audit-hero-chips span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    font-weight: 800;
  }

  .audit-workbench {
    position: relative;
    overflow: hidden;
    max-width: 430px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
  }

  .audit-workbench::before {
    display: none;
  }

  .workbench-topbar,
  .workbench-pipeline,
  .workbench-output {
    position: relative;
    z-index: 1;
  }

  .workbench-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(22, 34, 194, 0.12);
    background: rgba(245, 247, 255, 0.86);
  }

  .workbench-topbar strong {
    margin-left: 6px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .workbench-light {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
  }

  .workbench-light:nth-child(2) { background: var(--success); }
  .workbench-light:nth-child(3) { background: var(--brand); }

  .workbench-pipeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 20px 4px;
  }

  .workbench-step {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 3px 12px;
    align-items: start;
    min-height: 0;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid rgba(22, 34, 194, 0.1);
    background: transparent;
    transition: none;
  }

  .workbench-step:hover {
    transform: none;
    box-shadow: none;
  }

  .workbench-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-row: 1 / span 2;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 0.74rem;
    font-weight: 900;
    margin-bottom: 0;
  }

  .workbench-step.active span {
    background: var(--accent);
    color: #050818;
  }

  .workbench-step strong {
    color: var(--ink);
    line-height: 1.15;
  }

  .workbench-step small {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .workbench-output {
    padding: 18px 20px 20px;
    background: rgba(22, 34, 194, 0.06);
  }

  .workbench-output strong {
    display: block;
    margin-bottom: 10px;
    color: var(--ink);
  }

  .workbench-output p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.5;
  }

  @keyframes auditSweep {
    0%, 45% { transform: translateX(-100%); opacity: 0; }
    58% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
  }

  @keyframes auditProgress {
    0%, 100% { transform: translateX(-12%); }
    50% { transform: translateX(108%); }
  }

  @media (max-width: 980px) {
    .audit-hero-inner,
    .audit-answer-panel,
    .audit-flow-timeline {
      grid-template-columns: 1fr;
    }

    .audit-workbench {
      max-width: 620px;
    }

    .audit-flow-timeline::before {
      top: 0;
      bottom: 0;
      left: 23px;
      right: auto;
      width: 2px;
      height: auto;
      background: linear-gradient(180deg, var(--accent), var(--brand), var(--success));
    }

    .audit-flow-step {
      min-height: 0;
      padding-left: 68px;
    }

    .audit-flow-step span {
      position: absolute;
      left: 16px;
      top: 16px;
      width: 40px;
      height: 40px;
      margin-bottom: 0;
    }
  }

  @media (max-width: 640px) {
    .audit-hero {
      padding: 48px 20px 44px;
    }

    .audit-hero h1 {
      font-size: 2.15rem;
      line-height: 1.12;
    }

    .audit-hero .subhead {
      font-size: 1rem;
    }

    .audit-hero-actions,
    .audit-hero-actions .cta-btn,
    .audit-secondary-link {
      width: 100%;
    }

    .audit-secondary-link {
      justify-content: center;
    }

    .workbench-url {
      grid-template-columns: 1fr;
    }

    .workbench-url em {
      grid-row: auto;
      grid-column: 1;
      justify-self: start;
      margin-top: 6px;
    }

    .workbench-pipeline {
      grid-template-columns: 1fr;
    }

    .workbench-step {
      min-height: 0;
    }
  }

  /* ============= MOBILE NAV TOGGLE FIX ============= */
  .menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    color: var(--ink);
    transition: background 0.15s, border-color 0.15s;
    margin-left: 8px;
  }
  .menu-toggle:hover {
    background: var(--brand-light);
    border-color: var(--brand);
  }
  .menu-toggle:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px var(--brand);
  }
  .menu-toggle svg { width: 22px; height: 22px; }
  .menu-toggle .icon-close { display: none; }
  .menu-toggle[aria-expanded="true"] .icon-open { display: none; }
  .menu-toggle[aria-expanded="true"] .icon-close { display: block; }

  #how-audit-works {
    scroll-margin-top: 120px;
  }

  @media (max-width: 1180px) {
    .menu-toggle { display: inline-flex; }
    /* Show menu-toggle inside header-actions on mobile, even though other actions are hidden */
    .header-actions { display: flex; }
    .header-actions .header-signin,
    .header-actions .header-cta { display: none; }
    /* Open-state nav: show all items + sign-in/start-free at the bottom */
    nav.main-nav.open { display: block; padding-bottom: 12px; }
    nav.main-nav.open ul { padding-bottom: 8px; }
    nav.main-nav.open::after {
      content: '';
      display: block;
      height: 1px;
      background: var(--border);
      margin: 0 20px;
    }
    nav.main-nav.open .mobile-cta-row {
      display: flex;
      gap: 12px;
      padding: 16px 20px 4px;
      align-items: center;
    }
    nav.main-nav .mobile-cta-row { display: none; }
    nav.main-nav.open .mobile-cta-row .header-signin,
    nav.main-nav.open .mobile-cta-row .header-cta { display: inline-block; }
  }

  /* ============= CONTACT ============= */

  .contact-notice {
    background: var(--warn-bg);
    border-left: 4px solid var(--warn-border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    color: var(--ink-soft);
  }
  .contact-notice strong { color: var(--ink); }

  /* ============= SAMPLE DOCUMENT (real PDF showcase) ============= */
  /* When a sample doc uses the .before-after grid, real images replace placeholders */
  .before-after-card > img {
    width: 100%;
    height: auto;
    border: 1px solid var(--border);
    border-radius: 4px;
    display: block;
    margin: 6px 0 0;
  }

  #scanned-pdf-examples .before-after-card > img {
    aspect-ratio: 461 / 602;
    object-fit: contain;
    object-position: center center;
    background: #fff;
  }

  .case-study .before-after {
    align-items: stretch;
  }

  .case-study .before-after-card {
    display: flex;
    flex-direction: column;
  }

  .case-study .before-after-card > img {
    height: clamp(520px, 62vw, 720px);
    object-fit: contain;
    background: #fff;
  }

  .case-study .before-after-card .image-caption {
    margin-top: 12px;
  }

  .sample-showcase .before-after {
    align-items: stretch;
  }

  .sample-showcase .before-after-card {
    display: flex;
    flex-direction: column;
  }

  .sample-image-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
  }

  .sample-image-trigger:focus-visible {
    outline: 3px solid var(--brand);
    outline-offset: 4px;
    border-radius: 6px;
  }

  .sample-showcase .sample-image-trigger > img {
    width: 100%;
    height: clamp(260px, 30vw, 380px);
    object-fit: contain;
    object-position: center center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    display: block;
    margin: 6px 0 0;
  }

  .sample-showcase .before-after-card .image-caption {
    margin-top: 14px;
  }

  @media (max-width: 760px) {
    .case-study .before-after-card > img {
      height: auto;
      max-height: none;
    }
    .sample-showcase .sample-image-trigger > img {
      height: auto;
      object-fit: contain;
    }
  }

  .sample-document-meta-block {
    background: linear-gradient(135deg, var(--brand-light) 0%, #F8F9FE 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 28px;
    margin: 24px 0 0;
    text-align: center;
  }
  .sample-document-meta-block h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    margin: 0 0 4px;
    font-size: 1.5rem;
    letter-spacing: 0.005em;
  }
  .sample-document-meta-block .sample-doc-subtitle {
    margin: 0 0 18px;
    color: var(--ink-soft);
    font-size: 0.95rem;
  }
  .sample-downloads {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .download-btn-secondary {
    background: transparent;
    color: var(--brand);
    border: 1.5px solid var(--brand-light);
  }
  .download-btn-secondary:hover {
    background: #fff;
    color: var(--brand-dark);
    border-color: var(--brand);
    box-shadow: none;
  }
  .first-pass-callout {
    background: var(--brand-light);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin: 24px 0 0;
    font-size: 1rem;
    color: var(--ink);
  }
  .first-pass-callout strong { color: var(--ink); }

  /* Legacy .sample-document grid (still defined for backward compat with any other usage) */
  .sample-document {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
    margin: 24px 0 8px;
  }
  .sample-document-image {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #F8F9FE;
  }
  .sample-document-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  .sample-document-meta h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    margin-top: 0;
    font-size: 1.4rem;
    letter-spacing: 0.005em;
  }
  .sample-document-meta .sample-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(255, 180, 0, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
  }
  .sample-document-meta ul {
    list-style: none;
    padding-left: 0;
    margin: 16px 0 20px;
  }
  .sample-document-meta li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
    color: var(--ink-soft);
    font-size: 0.95rem;
  }
  .sample-document-meta li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 2px;
    background: var(--accent);
  }

  .document-showcase {
    display: grid;
    grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    margin-top: 24px;
  }

  .document-showcase-image {
    background: #fff;
    border: 1px solid rgba(22, 34, 194, 0.12);
    border-radius: var(--radius-sm);
    padding: 14px;
    box-shadow: var(--shadow-sm);
  }

  .document-showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
  }

  .document-showcase-copy .sample-tag {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
  }

  .document-showcase-copy h3 {
    margin-top: 0;
  }

  .transcript-panel {
    background:
      linear-gradient(180deg, #fff 0%, #F8F9FE 100%);
    border: 1px solid rgba(22, 34, 194, 0.12);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-top: 28px;
    box-shadow: var(--shadow-sm);
  }

  .transcript-panel > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
  }

  .transcript-panel > summary::after {
    content: '';
    width: 11px;
    height: 11px;
    border-right: 2px solid var(--brand);
    border-bottom: 2px solid var(--brand);
    transform: rotate(45deg) translateY(-3px);
    transition: transform 0.2s ease;
    flex: 0 0 auto;
  }

  .transcript-panel[open] > summary {
    margin-bottom: 16px;
  }

  .transcript-panel[open] > summary::after {
    transform: rotate(-135deg) translateY(2px);
  }

  .transcript-panel .sample-tag {
    display: inline-block;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
  }

  .transcript-panel h3 {
    margin: 0;
    flex: 1;
  }

  .transcript-note {
    background: var(--warn-bg);
    border-left: 4px solid var(--warn-border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 0.92rem;
  }

  .transcript-text {
    columns: 2 320px;
    column-gap: 32px;
    margin-top: 18px;
  }

  .transcript-text p {
    break-inside: avoid;
    font-size: 0.94rem;
    line-height: 1.72;
    margin-bottom: 14px;
  }

  @media (max-width: 760px) {
    .document-showcase {
      grid-template-columns: 1fr;
    }
    .transcript-panel {
      padding: 20px;
    }
  }

  .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand);
    color: #fff;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.15s, box-shadow 0.2s, transform 0.15s;
  }
  .download-btn:hover {
    background: var(--brand-dark);
    box-shadow: 0 0 0 2px rgba(255, 180, 0, 0.55), 0 6px 16px rgba(11, 15, 44, 0.12);
    text-decoration: none;
    color: #fff;
  }
  .download-btn svg {
    width: 16px;
    height: 16px;
  }
  @media (max-width: 768px) {
    .sample-document { grid-template-columns: 1fr; gap: 24px; }
  }

  /* ============= OCR EXAMPLES ============= */

  .ocr-example {
    padding: 24px 0;
    border-top: 1px solid var(--border);
  }
  .ocr-example:first-of-type { border-top: none; padding-top: 8px; }
  .ocr-example > h3 { margin-top: 0; }
  .ocr-example > p { margin-bottom: 14px; }

  /* ============= CASE STUDIES ============= */

  .case-study { margin-bottom: 32px; }
  .case-study-meta {
    background: #F8F9FE;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin: 16px 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
  }
  .case-study-meta .meta-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 2px;
  }
  .case-study-meta .meta-value {
    color: var(--ink);
    font-weight: 600;
    font-size: 0.95rem;
  }

  .before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
  }
  .before-after-card {
    background: #F8F9FE;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px 18px;
  }
  .before-after-card .before-after-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 12px;
  }
  .before-after-card.before .before-after-label {
    color: #9B2C2C;
    background: #FCE9E8;
  }
  .before-after-card.after .before-after-label {
    color: #166534;
    background: #DDF5EA;
  }
  .before-after-card .image-caption {
    margin: 12px 0 0;
    font-size: 0.85rem;
    color: var(--muted);
  }

  .case-study-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    margin: 16px 0 0;
  }
  .case-study-stats .stat-card {
    background: var(--brand-light);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    text-align: center;
  }
  .case-study-stats .stat-num {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--brand);
    line-height: 1;
  }
  .case-study-stats .stat-label {
    font-size: 0.78rem;
    color: var(--ink-soft);
    margin-top: 4px;
  }

  @media (max-width: 640px) {
    .before-after { grid-template-columns: 1fr; }
  }

  /* ============= HOME-SECTION EYEBROWS ============= */
  .section-eyebrow {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--brand);
    text-align: center;
    margin: 0 0 4px;
    letter-spacing: 0.01em;
  }

  /* ============= HOME SECTION TYPOGRAPHY UNIFICATION ============= */
  /* Home-section h2s use the cinematic serif so editorial type carries through */
  .home-section h2,
  .home-section h2[style*="text-align"] {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    letter-spacing: 0.005em;
  }
  /* Big featured numbers across the body use the same serif */
  .value-card .value-num,
  .pricing-strip .big-price,
  .case-study-stats .stat-num {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    letter-spacing: 0.005em;
  }
  /* Pricing strip's headline + price both feel more editorial */
  .pricing-strip h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    letter-spacing: 0.005em;
    font-size: 1.6rem;
  }
  .pricing-strip .big-price {
    font-size: 3rem;
  }

  /* Primary buttons get a subtle gold ring on hover, tying body CTAs to hero gold */
  .btn-primary,
  .home-intro-cta .btn-primary,
  .pricing-strip .header-cta,
  .editorial-cta .cta-btn {
    transition: background 0.15s, transform 0.15s, box-shadow 0.2s, color 0.15s;
  }
  .btn-primary:hover,
  .home-intro-cta .btn-primary:hover,
  .pricing-strip .header-cta:hover {
    box-shadow: 0 0 0 2px rgba(255, 180, 0, 0.55), 0 6px 16px rgba(11, 15, 44, 0.12);
  }
  .editorial-cta .cta-btn:hover {
    box-shadow: 0 0 0 2px var(--accent);
  }

  /* ============= STAT MOMENT (full-bleed dark band) ============= */
  .stat-moment {
    background:
      radial-gradient(ellipse at 50% 50%, rgba(22, 34, 194, 0.5) 0%, transparent 60%),
      linear-gradient(180deg, #0A0F2D 0%, #050818 100%);
    color: #fff;
    padding: 110px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .stat-moment::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
  /* Faint concentric ring echo of cinematic hero */
  .stat-moment::after {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    max-width: 80vw;
    max-height: 80vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 180, 0, 0.15);
    border-radius: 50%;
    pointer-events: none;
  }
  .stat-moment-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
  }
  .stat-moment-eyebrow {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--accent);
    margin: 0 0 18px;
  }
  .stat-moment-number {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    font-size: clamp(4rem, 14vw, 9rem);
    line-height: 1;
    color: #fff;
    margin: 0 0 24px;
    letter-spacing: 0.005em;
    text-shadow: 0 0 80px rgba(22, 34, 194, 0.4);
  }
  .stat-moment-caption {
    font-family: var(--font);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.55;
    margin: 0;
  }

  /* ============= VALUE CARD HOVER (subtle lift + animated accent line) ============= */
  .value-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }
  .value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
    transition: width 0.45s ease;
  }
  .value-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-light);
  }
  .value-card:hover::after {
    width: 100%;
  }
  /* Service-card gets the same bottom-line treatment */
  .service-card {
    position: relative;
    overflow: hidden;
  }
  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
    transition: width 0.45s ease;
  }
  .service-card:hover::after {
    width: 100%;
  }

  /* ============= CINEMATIC HERO (home page) ============= */

  .cinematic-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    background:
      radial-gradient(ellipse at 50% 35%, rgba(22, 34, 194, 0.45) 0%, transparent 55%),
      radial-gradient(ellipse at 50% 80%, rgba(255, 180, 0, 0.06) 0%, transparent 50%),
      linear-gradient(180deg, #0A0F2D 0%, #050818 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 20px 120px;
    overflow: hidden;
  }

  /* Subtle blueprint grid overlay */
  .cinematic-hero .cinematic-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
  }

  /* Concentric rings behind text (echo of Brakebills' clock face) */
  .cinematic-hero::before,
  .cinematic-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
  }
  .cinematic-hero::before {
    width: 620px;
    height: 620px;
    max-width: 95vw;
    max-height: 95vw;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 180, 0, 0.12);
  }
  .cinematic-hero::after {
    width: 420px;
    height: 420px;
    max-width: 75vw;
    max-height: 75vw;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 180, 0, 0.18);
  }

  .cinematic-content {
    position: relative;
    z-index: 2;
  }

  .cinematic-eyebrow {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--accent);
    margin: 0 0 14px;
    letter-spacing: 0.02em;
  }

  .cinematic-title {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    font-size: clamp(3rem, 10vw, 7rem);
    letter-spacing: 0.08em;
    color: #fff;
    margin: 0;
    line-height: 1;
    text-shadow: 0 0 60px rgba(22, 34, 194, 0.35);
  }

  .cinematic-subtitle {
    font-family: var(--font);
    font-size: 0.85rem;
    letter-spacing: 0.5em;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    margin: 18px 0 0;
    font-weight: 500;
    padding-left: 0.5em; /* visual centering for letter-spacing */
  }
  .cinematic-seo-line {
    max-width: 760px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(0.92rem, 1.8vw, 1.08rem);
    line-height: 1.55;
    letter-spacing: 0;
    text-transform: none;
  }

  .cinematic-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255, 180, 0, 0.65);
    margin-top: 70px;
    color: var(--accent);
    text-decoration: none;
    transition: all 0.2s ease;
    background: transparent;
  }
  .cinematic-cta:hover {
    background: var(--accent);
    color: #050818;
    border-color: var(--accent);
    transform: scale(1.08);
    text-decoration: none;
  }
  .cinematic-cta svg {
    width: 22px;
    height: 22px;
    margin-left: 2px;
  }

  /* Bottom corners (mirroring Brakebills layout) */
  .cinematic-footer {
    position: absolute;
    bottom: 32px;
    z-index: 2;
    font-family: var(--font);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
  }
  .cinematic-footer-left {
    left: 36px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    text-align: left;
  }
  .cinematic-footer-left strong {
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 0.82rem;
  }
  .cinematic-footer-left a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
  }
  .cinematic-footer-left a:hover { color: var(--accent); }

  .cinematic-footer-right {
    right: 36px;
  }
  .cinematic-footer-right a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    padding: 8px 16px;
    border: 1px solid rgba(255, 180, 0, 0.4);
    border-radius: 24px;
    transition: all 0.2s;
  }
  .cinematic-footer-right a:hover {
    background: var(--accent);
    color: #050818;
    border-color: var(--accent);
    text-decoration: none;
  }
  .cinematic-footer-right svg {
    width: 14px;
    height: 14px;
  }

  @media (max-width: 768px) {
    .cinematic-hero { padding: 100px 20px 100px; min-height: 90vh; }
    .cinematic-footer-left,
    .cinematic-footer-right {
      position: static;
      margin-top: 36px;
    }
    .cinematic-footer-right { text-align: center; }
    .cinematic-footer-left { align-items: center; text-align: center; }
  }

  /* Header transparent mode (over dark hero) — fixed so the hero starts at body top */
  .site-header.transparent-mode {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: none;
    transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    will-change: background-color;
  }
  .site-header.transparent-mode nav.main-nav > ul > li > a,
  .site-header.transparent-mode .nav-dropdown details summary,
  .site-header.transparent-mode .header-signin {
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.2s;
  }
  .site-header.transparent-mode nav.main-nav > ul > li > a:hover,
  .site-header.transparent-mode .nav-dropdown details summary:hover,
  .site-header.transparent-mode .nav-dropdown details[open] summary,
  .site-header.transparent-mode .header-signin:hover {
    color: var(--accent);
  }
  .site-header.transparent-mode .logo-img {
    filter: brightness(0) invert(1);
  }
  .site-header.transparent-mode .menu-toggle {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
  }
  .site-header.transparent-mode .menu-toggle span,
  .site-header.transparent-mode .menu-toggle svg {
    stroke: #fff;
  }
  .site-header.transparent-mode .header-cta {
    background: var(--accent);
    color: #050818;
  }
  .site-header.transparent-mode .header-cta:hover {
    background: #fff;
    color: var(--brand);
  }
  /* Scrolled state: revert to white header */
  .site-header.transparent-mode.scrolled {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 rgba(11, 15, 44, 0.04);
  }
  .site-header.transparent-mode.scrolled nav.main-nav > ul > li > a,
  .site-header.transparent-mode.scrolled .nav-dropdown details summary,
  .site-header.transparent-mode.scrolled .header-signin {
    color: var(--ink-soft);
  }
  .site-header.transparent-mode.scrolled .logo-img { filter: none; }
  .site-header.transparent-mode.scrolled .menu-toggle {
    border-color: var(--border);
    color: var(--ink);
  }
  .site-header.transparent-mode.scrolled .menu-toggle span,
  .site-header.transparent-mode.scrolled .menu-toggle svg {
    stroke: var(--ink);
  }
  .site-header.transparent-mode.scrolled .header-cta {
    background: var(--brand);
    color: #fff;
  }

  /* Serif treatment for topic page h1 (matching cinematic typography) */
  .topic-hero h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    letter-spacing: 0.005em;
  }

  /* Intro section right after cinematic hero (replaces the lede) */
  .home-intro {
    position: relative;
    overflow: hidden;
    background:
      linear-gradient(180deg, #FFFFFF 0%, #F6F8FC 100%);
    padding: clamp(64px, 8vw, 96px) 20px;
    text-align: left;
    border-top: 1px solid rgba(22, 34, 194, 0.08);
    border-bottom: 1px solid rgba(22, 34, 194, 0.10);
  }
  .home-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, transparent 0%, rgba(255, 180, 0, 0.20) 50%, transparent 100%) top center / 100% 1px no-repeat,
      linear-gradient(180deg, rgba(22, 34, 194, 0.045) 0%, transparent 44%);
    pointer-events: none;
  }
  .home-intro-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
    gap: clamp(34px, 6vw, 72px);
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
  }

  .home-intro-copy {
    max-width: 560px;
  }

  .home-intro-kicker {
    display: inline-flex;
    margin: 0 0 18px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 180, 0, 0.28);
    border-radius: 8px;
    background: rgba(255, 180, 0, 0.12);
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .home-intro-title {
    max-width: 620px;
    margin: 0;
    color: var(--ink);
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.2rem, 4.2vw, 4rem);
    font-weight: 650;
    line-height: 1.04;
    letter-spacing: 0;
  }
  .home-intro .home-intro-lede {
    max-width: 560px;
    margin: 18px 0 0;
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    line-height: 1.62;
    color: var(--ink-soft);
  }
  .home-intro .home-intro-cta {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 26px 0 14px;
  }
  .home-intro .home-intro-cta .btn-primary {
    background: var(--brand);
    color: #fff;
  }
  .home-intro .home-intro-cta .btn-primary:hover {
    background: var(--brand-dark);
    color: #fff;
  }
  .home-intro .home-intro-cta .btn-ghost {
    background: transparent;
    color: var(--brand);
    border: 1.5px solid var(--brand-light);
  }
  .home-intro .home-intro-cta .btn-ghost:hover {
    background: var(--brand-light);
  }
  .home-intro .pricing-line {
    max-width: 540px;
    margin: 0;
    font-size: 0.86rem;
    color: var(--muted);
  }

  /* ============= PRODUCT-LED HOMEPAGE PASS ============= */

  .hero-product-grid {
    width: min(980px, calc(100vw - 44px));
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-content: center;
    align-items: center;
    justify-items: center;
    gap: clamp(28px, 4vw, 48px);
    text-align: center;
  }

  .hero-product-grid.hero-copy-only {
    grid-template-columns: minmax(0, 760px);
    justify-content: start;
  }

  .hero-copy {
    width: min(100%, 780px);
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    min-width: 0;
    text-align: center;
  }

  .hero-product-grid .cinematic-title {
    font-size: clamp(3.2rem, 7vw, 6.6rem);
    letter-spacing: 0.055em;
  }

  .hero-product-grid .cinematic-subtitle {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    letter-spacing: 0.26em;
  }

  .hero-product-grid .cinematic-seo-line {
    margin-left: auto;
    margin-right: auto;
    max-width: 620px;
  }

  .hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
  }

  .hero-cta-row .btn-primary {
    background: var(--accent);
    color: #050818;
    border-color: rgba(255, 180, 0, 0.72);
  }

  .hero-cta-row .btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
  }

  .audit-report-preview {
    color: #09152E;
    min-width: 0;
  }

  .hero-product-grid .audit-report-preview {
    width: min(860px, 100%);
    transform: scale(1);
    transform-origin: center;
  }

  .home-report-preview-section {
    position: relative;
    margin: 0;
    padding: clamp(42px, 6vw, 74px) 20px;
    background:
      radial-gradient(circle at 50% 0%, rgba(22, 34, 194, 0.08), transparent 42%),
      linear-gradient(180deg, #F5F7FF 0%, #EEF2FF 100%);
  }

  .home-report-preview-section::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(22, 34, 194, 0.22), transparent);
  }

  .home-report-preview-inner {
    width: min(920px, 100%);
    margin: 0 auto;
  }

  .home-report-preview-copy {
    width: min(760px, 100%);
    margin: 0 auto 30px;
    text-align: center;
  }

  .home-report-preview-copy .section-eyebrow {
    margin: 0 0 9px;
    color: var(--brand);
  }

  .home-report-preview-copy h2 {
    margin: 0 auto 12px;
    color: var(--ink);
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1.1;
  }

  .home-report-preview-copy p:last-child {
    max-width: 690px;
    margin: 0 auto;
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.65;
  }

  .home-report-preview-section .audit-report-preview {
    width: min(860px, 100%);
    margin: 0 auto;
  }

  .home-report-preview-section .audit-report-sheet {
    box-shadow:
      0 26px 70px rgba(11, 15, 44, 0.18),
      0 0 0 1px rgba(255, 255, 255, 0.65);
  }

  .audit-report-sheet {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(118, 98, 255, 0.24);
    border-radius: 14px;
    background: #FFFFFF;
    padding: clamp(12px, 1.7vw, 18px);
    box-shadow:
      0 28px 80px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(255, 255, 255, 0.24);
  }

  .audit-dashboard-tag {
    position: absolute;
    top: 12px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border: 1px solid rgba(79, 63, 240, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: #263752;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;
  }

  .audit-report-save {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 10px;
    background: #342E87;
    color: #FFFFFF;
    box-shadow: 0 14px 24px rgba(30, 25, 95, 0.28);
    font-size: 0.84rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .save-symbol {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 2px;
  }

  .save-symbol::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 2px;
    width: 4px;
    height: 6px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
  }

  .audit-summary-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    min-height: 112px;
    margin-bottom: clamp(22px, 3.2vw, 34px);
    padding: clamp(44px, 5.2vw, 54px) clamp(82px, 11vw, 112px) clamp(16px, 2.1vw, 22px) clamp(16px, 2.1vw, 22px);
    border: 1px solid rgba(118, 98, 255, 0.18);
    border-radius: 14px;
    background:
      linear-gradient(105deg, #FFFFFF 0%, #FFFFFF 54%, #F5F4FF 100%);
    box-shadow: 0 8px 18px rgba(34, 49, 86, 0.10);
  }

  .audit-summary-icon {
    position: relative;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #5F4BF3, #7438E8);
    box-shadow: 0 10px 18px rgba(72, 51, 218, 0.30);
  }

  .audit-summary-icon::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 13px;
    width: 14px;
    height: 18px;
    border: 2px solid #FFFFFF;
    border-radius: 3px;
  }

  .audit-summary-icon::after {
    content: "";
    position: absolute;
    left: 19px;
    top: 19px;
    width: 7px;
    height: 2px;
    background: #FFFFFF;
    box-shadow: 0 5px 0 #FFFFFF, 0 10px 0 #FFFFFF;
  }

  .audit-summary-copy {
    min-width: 0;
  }

  .report-kicker {
    display: block;
    margin-bottom: 8px;
    color: #4F3FF0;
    font-size: clamp(0.62rem, 1.05vw, 0.82rem);
    font-weight: 900;
    letter-spacing: 0.20em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .audit-summary-copy p {
    margin: 0;
    color: #172542;
    font-size: clamp(0.88rem, 1.45vw, 1.12rem);
    line-height: 1.32;
  }

  .audit-summary-copy strong {
    color: #071226;
    font-weight: 900;
  }

  .audit-summary-copy .accent-stat {
    color: #604CEF;
  }

  .audit-status-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 14px;
    color: #071226;
  }

  .audit-status-head div {
    display: flex;
    align-items: baseline;
    gap: 10px;
  }

  .audit-status-index,
  .audit-status-head > span {
    color: #647294;
    font-family: "Courier New", Courier, monospace;
    font-size: 0.78rem;
  }

  .audit-status-index {
    color: #4F3FF0;
  }

  .audit-status-head strong {
    font-size: clamp(1.15rem, 2.2vw, 1.58rem);
    line-height: 1;
  }

  .audit-status-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(10px, 2vw, 18px);
  }

  .audit-status-card {
    min-width: 0;
    min-height: 198px;
    padding: clamp(14px, 1.9vw, 20px);
    border: 1px solid #DCE2EE;
    border-radius: 14px;
    background: #F8FAFD;
    box-shadow: 0 6px 12px rgba(34, 49, 86, 0.08);
  }

  .audit-status-card.needs-action {
    border-color: rgba(255, 194, 66, 0.72);
    background: #FFFDF8;
  }

  .audit-status-card.remediated {
    border-color: rgba(106, 90, 255, 0.34);
    background: linear-gradient(105deg, #F6F7FF 0%, #F4F3FF 100%);
  }

  .audit-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 18px;
  }

  .audit-card-icon {
    position: relative;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #E6EDF7;
  }

  .audit-card-icon.warning {
    background: #FFF0BD;
  }

  .audit-card-icon.warning::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 11px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 16px solid #B65E00;
  }

  .audit-card-icon.warning::after {
    content: "!";
    position: absolute;
    left: 17px;
    top: 15px;
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 900;
  }

  .audit-card-icon.archive::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 13px;
    width: 16px;
    height: 14px;
    border-radius: 3px;
    background: #24344B;
  }

  .audit-card-icon.archive::after {
    content: "";
    position: absolute;
    left: 13px;
    top: 11px;
    width: 12px;
    height: 3px;
    border-radius: 2px;
    background: #24344B;
  }

  .audit-card-icon.shield {
    background: linear-gradient(135deg, #5F4BF3, #7438E8);
    box-shadow: 0 8px 14px rgba(72, 51, 218, 0.26);
  }

  .audit-card-icon.shield::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 10px;
    width: 12px;
    height: 16px;
    border: 2px solid #FFFFFF;
    border-radius: 8px 8px 10px 10px;
  }

  .audit-card-icon.shield::after {
    content: "";
    position: absolute;
    left: 19px;
    top: 13px;
    width: 2px;
    height: 11px;
    background: #FFFFFF;
  }

  .audit-card-label {
    min-width: 0;
    color: #BA5800;
    font-size: clamp(0.56rem, 0.9vw, 0.68rem);
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-align: right;
    text-transform: uppercase;
  }

  .audit-status-card.no-action .audit-card-label {
    color: #1C2840;
  }

  .audit-status-card.remediated .audit-card-label,
  .audit-status-card.remediated .audit-card-number,
  .audit-status-card.remediated .audit-card-details strong {
    color: #4F3FF0;
  }

  .audit-card-number {
    display: block;
    color: #8B3F11;
    font-size: clamp(2rem, 4.6vw, 3.2rem);
    font-weight: 900;
    line-height: 0.95;
  }

  .audit-status-card.no-action .audit-card-number {
    color: #1B263B;
  }

  .audit-status-card p {
    margin: 8px 0 0;
    color: #314461;
    font-size: clamp(0.72rem, 1.05vw, 0.88rem);
    line-height: 1.35;
  }

  .audit-card-rule {
    height: 1px;
    margin: 18px 0 14px;
    background: #D9E1EC;
  }

  .audit-status-card.needs-action .audit-card-rule {
    background: rgba(209, 154, 36, 0.32);
  }

  .audit-card-details {
    display: flex;
    gap: clamp(18px, 3vw, 34px);
    align-items: flex-start;
  }

  .audit-card-details span,
  .audit-card-details strong,
  .audit-card-details b {
    display: block;
  }

  .audit-card-details strong {
    margin-bottom: 6px;
    color: #5A6B86;
    font-size: clamp(0.58rem, 1vw, 0.72rem);
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .audit-status-card.needs-action .audit-card-details strong {
    color: #C15C00;
  }

  .audit-card-details b {
    color: #172542;
    font-size: clamp(1rem, 1.8vw, 1.32rem);
    line-height: 1;
  }

  .dashboard-preview {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), #F8F9FE);
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius-sm);
    box-shadow:
      0 28px 80px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(255, 180, 0, 0.12);
    overflow: hidden;
    position: relative;
  }

  .hero-product-grid .dashboard-preview {
    transform: scale(1.04);
    transform-origin: center;
  }

  .dashboard-topbar {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    border-bottom: 1px solid var(--border);
    background: #fff;
  }

  .dashboard-topbar strong {
    margin-left: 0;
    color: var(--ink);
    font-size: 0.9rem;
  }

  .dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 18px;
  }

  .dashboard-stats div {
    background: #fff;
    border: 1px solid rgba(22, 34, 194, 0.10);
    border-radius: var(--radius-sm);
    padding: 14px;
  }

  .dashboard-stats span {
    display: block;
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1;
    color: var(--brand);
  }

  .dashboard-stats small {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.78rem;
  }

  .dashboard-list {
    display: grid;
    gap: 10px;
    padding: 0 18px 18px;
  }

  .dashboard-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #fff;
    border: 1px solid rgba(22, 34, 194, 0.10);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .dashboard-row span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dashboard-row strong {
    color: var(--brand);
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .dashboard-row.muted strong {
    color: var(--success);
  }

  .dashboard-row strong.status-success { color: var(--success); }
  .dashboard-row strong.status-warn { color: #A66A00; }

  .dashboard-footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    background: var(--brand-light);
    color: var(--ink);
    font-size: 0.85rem;
    font-weight: 700;
  }

  .proof-band {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    background: transparent;
    border: 0;
    border-radius: var(--radius-sm);
    text-align: left;
  }

  .proof-band div {
    position: relative;
    min-height: 126px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 255, 0.94));
    border: 1px solid rgba(22, 34, 194, 0.11);
    border-radius: 8px;
    padding: 18px 17px 17px;
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.92) inset,
      0 16px 34px rgba(8, 15, 45, 0.07);
  }

  .proof-band div::before {
    content: "";
    display: block;
    width: 32px;
    height: 3px;
    border-radius: 3px;
    background: var(--accent);
    margin-bottom: 18px;
  }

  .proof-band div:first-child {
    grid-column: 1 / -1;
    min-height: 118px;
    background: #08113D;
    border-color: rgba(255, 180, 0, 0.28);
    box-shadow:
      0 0 0 1px rgba(255, 180, 0, 0.08),
      0 20px 46px rgba(8, 15, 45, 0.16);
  }

  .proof-band strong,
  .proof-band span {
    display: block;
  }

  .proof-band strong {
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.25;
  }

  .proof-band span {
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.35;
    margin-top: 5px;
  }

  .proof-band div:first-child strong {
    color: #fff;
    font-size: 1.25rem;
  }

  .proof-band div:first-child span {
    color: rgba(255, 255, 255, 0.72);
  }

  .trust-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin: 24px 0;
  }
  .trust-strip div {
    background: #fff;
    border: 1px solid rgba(22, 34, 194, 0.12);
    border-radius: var(--radius-sm);
    padding: 16px;
    box-shadow: var(--shadow-sm);
  }
  .trust-strip strong {
    display: block;
    color: var(--ink);
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
  .trust-strip span {
    display: block;
    color: var(--ink-soft);
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .product-dashboard-card,
  .report-preview-card {
    background: #fff;
    border: 1px solid rgba(22, 34, 194, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
  }
  .product-dashboard-card .dashboard-preview {
    border: none;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }
  .report-preview-card {
    padding: 22px;
  }
  .report-preview-header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 14px;
    margin-bottom: 16px;
  }
  .report-preview-header strong {
    color: var(--ink);
  }
  .report-badge {
    background: rgba(27, 154, 90, 0.1);
    color: var(--success);
    border: 1px solid rgba(27, 154, 90, 0.22);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
  }
  .report-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .report-list li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    color: var(--ink-soft);
    font-size: 0.93rem;
  }
  .report-list span:last-child {
    color: var(--success);
    font-weight: 800;
    white-space: nowrap;
  }

  .context-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
  }
  .context-cta-row .header-cta,
  .context-cta-row .cta-btn {
    margin-top: 0;
  }
  .claim-note {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
    margin-top: 10px;
  }

  .contact-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
  }
  .contact-choice-card {
    background: #fff;
    border: 1px solid rgba(22, 34, 194, 0.12);
    border-radius: var(--radius-sm);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-choice-card.primary {
    background:
      radial-gradient(circle at 100% 0%, rgba(255, 180, 0, 0.13), transparent 36%),
      linear-gradient(180deg, #FFFFFF 0%, #F8F9FE 100%);
    border-color: rgba(255, 180, 0, 0.45);
  }
  .contact-choice-card h3 {
    margin: 0 0 8px;
  }
  .contact-choice-card p {
    margin: 0 0 16px;
    color: var(--ink-soft);
  }
  .contact-choice-card .header-cta,
  .contact-choice-card .cta-btn {
    margin-top: auto;
  }

  .contact-form-block {
    display: grid;
    gap: 18px;
  }

  .placeholder-contact-form {
    display: grid;
    gap: 16px;
    max-width: 860px;
  }

  .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .placeholder-contact-form label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 700;
  }

  .placeholder-contact-form input,
  .placeholder-contact-form select,
  .placeholder-contact-form textarea {
    width: 100%;
    border: 2px solid rgba(22, 34, 194, 0.32);
    border-radius: var(--radius-sm);
    padding: 13px 14px;
    font: inherit;
    color: var(--ink);
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(11, 15, 44, 0.04);
  }

  .placeholder-contact-form input::placeholder,
  .placeholder-contact-form textarea::placeholder {
    color: #65708A;
    opacity: 1;
  }

  .placeholder-contact-form textarea {
    resize: vertical;
    min-height: 150px;
  }

  .placeholder-contact-form input:hover,
  .placeholder-contact-form select:hover,
  .placeholder-contact-form textarea:hover {
    border-color: rgba(22, 34, 194, 0.56);
  }

  .placeholder-contact-form input:focus,
  .placeholder-contact-form select:focus,
  .placeholder-contact-form textarea:focus {
    outline: 3px solid rgba(0, 135, 255, 0.28);
    border-color: var(--brand);
  }

  .placeholder-contact-form .btn-primary {
    justify-self: start;
  }

  .form-status {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
  }

  .product-workflow h2,
  .product-workflow .section-lede {
    text-align: left;
    margin-left: 0;
  }

  .product-workflow .section-eyebrow {
    text-align: left;
  }

  .workflow-panel {
    display: grid;
    gap: 12px;
    background:
      linear-gradient(180deg, #0A0F2D 0%, #050818 100%);
    border: 1px solid rgba(255, 180, 0, 0.16);
    border-radius: var(--radius-sm);
    padding: 18px;
    box-shadow: var(--shadow-md);
  }

  .workflow-step {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px 14px;
    align-items: start;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 15px;
  }

  .workflow-step.active {
    background: rgba(255, 180, 0, 0.12);
    border-color: rgba(255, 180, 0, 0.36);
  }

  .workflow-step span {
    grid-row: span 2;
    color: var(--accent);
    font-weight: 800;
    font-size: 0.76rem;
    letter-spacing: 0.1em;
  }

  .workflow-step strong {
    color: #fff;
    line-height: 1.2;
  }

  .workflow-step small {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.45;
  }

  .workflow-copy h2 {
    text-align: left;
  }

  .resource-section .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .resource-section .service-card {
    box-shadow: none;
  }

  @media (max-width: 980px) {
    .home-intro {
      text-align: center;
    }
    .home-intro-inner {
      grid-template-columns: 1fr;
      max-width: 760px;
    }
    .home-intro-copy,
    .home-intro-title,
    .home-intro .home-intro-lede,
    .home-intro .pricing-line {
      margin-left: auto;
      margin-right: auto;
    }
    .home-intro .home-intro-cta {
      justify-content: center;
    }
    .proof-band {
      max-width: 620px;
      margin: 0 auto;
    }
    .hero-product-grid {
      grid-template-columns: 1fr;
      text-align: center;
      padding-top: 24px;
    }
    .hero-product-grid .cinematic-seo-line {
      margin-left: auto;
      margin-right: auto;
    }
    .hero-cta-row {
      justify-content: center;
    }
    .dashboard-preview {
      width: min(640px, 100%);
      margin: 0 auto;
    }
    .audit-report-preview {
      width: min(760px, 100%);
      margin: 0 auto;
    }
    .hero-product-grid .dashboard-preview,
    .hero-product-grid .audit-report-preview {
      transform: none;
    }
    .proof-band {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .trust-strip {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .product-workflow h2,
    .product-workflow .section-lede,
    .product-workflow .section-eyebrow,
    .workflow-copy h2 {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
  }

  @media (max-width: 560px) {
    .hero-product-grid {
      width: min(100%, calc(100vw - 28px));
    }
    .dashboard-stats,
    .audit-status-grid,
    .proof-band,
    .trust-strip,
    .form-grid,
    .contact-choice-grid {
      grid-template-columns: 1fr;
    }
    .proof-band div:first-child {
      grid-column: auto;
    }
    .audit-summary-card {
      padding-right: 18px;
    }
    .audit-report-save {
      position: static;
      width: fit-content;
      margin: 0 0 12px auto;
    }
    .audit-status-head {
      align-items: flex-start;
      flex-direction: column;
      gap: 8px;
    }
    .audit-status-card {
      min-height: auto;
    }
    .dashboard-row,
    .dashboard-footer {
      align-items: flex-start;
      flex-direction: column;
      gap: 6px;
    }
  }

  /* ============= DROPDOWN NAV (Guides) ============= */

  .nav-dropdown { position: relative; }
  .nav-dropdown details summary {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    color: var(--ink-soft);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.15;
    white-space: nowrap;
    user-select: none;
    transition: color 0.15s;
  }
  .nav-dropdown details summary::-webkit-details-marker { display: none; }
  .nav-dropdown details summary:hover,
  .nav-dropdown details[open] summary { color: var(--brand); }

  .nav-dropdown details summary::after {
    content: '';
    width: 7px;
    height: 7px;
    margin-left: 1px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    flex-shrink: 0;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.15s;
  }
  .nav-dropdown details[open] summary::after {
    transform: rotate(-135deg) translateY(2px);
  }

  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: -16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    min-width: 260px;
    flex-direction: column;
    z-index: 110;
    display: none;
  }
  .nav-dropdown details[open] .nav-dropdown-menu { display: flex; }
  .nav-dropdown-menu a {
    padding: 10px 18px;
    color: var(--ink-soft);
    font-size: 0.95rem;
    text-decoration: none;
    white-space: nowrap;
  }

  .nav-dropdown-menu a:nth-child(2),
  .nav-dropdown-menu a:nth-child(6) {
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
    margin-bottom: 4px;
  }
  .nav-dropdown-menu a:hover {
    background: var(--brand-light);
    color: var(--brand);
    text-decoration: none;
  }

  /* Mobile: dropdown expands inline inside the drawer */
  @media (max-width: 1180px) {
    nav.main-nav li.nav-dropdown { padding: 0; }
    .nav-dropdown details summary {
      padding: 12px 0;
      width: 100%;
      justify-content: space-between;
      font-size: inherit;
    }
    .nav-dropdown-menu {
      position: static;
      box-shadow: none;
      border: none;
      background: transparent;
      margin: 0;
      padding: 0 0 8px 16px;
      min-width: 0;
    }
    .nav-dropdown-menu a {
      padding: 8px 0;
    }
  }

  /* ============= BUYER'S GUIDE PUBLISHER CALLOUTS ============= */

  .publisher-callout {
    background: linear-gradient(135deg, var(--brand-light) 0%, #F8F9FE 100%);
    border: 1px solid var(--border);
    border-left: 4px solid var(--brand);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin: 28px 0 32px;
  }
  .publisher-callout .publisher-tag {
    display: inline-block;
    background: var(--brand);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
  }
  .publisher-callout p { margin: 0; color: var(--ink-soft); }
  .publisher-callout p + p { margin-top: 10px; }
  .publisher-callout strong { color: var(--ink); }

  .differs-callout {
    background: var(--brand-light);
    border-left: 4px solid var(--brand);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
  }
  .differs-callout .differs-label {
    color: var(--brand);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .differs-callout p { margin: 0; font-size: 0.95rem; color: var(--ink-soft); }
  .differs-callout strong { color: var(--ink); }

  /* Place differs-callout cleanly inside vendor accordion */
  details.content-block.vendor-block > .differs-callout {
    margin: 0 40px 16px;
  }
  @media (max-width: 640px) {
    details.content-block.vendor-block > .differs-callout {
      margin: 0 20px 14px;
    }
  }

  /* ============= ACCORDIONS (details/summary) ============= */

  /* Hide native disclosure markers on every details */
  details > summary::-webkit-details-marker { display: none; }
  details > summary { list-style: none; cursor: pointer; }

  /* FAQ accordion */
  details.faq-item { padding: 0; }
  details.faq-item > summary {
    padding: 20px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.15s;
  }
  details.faq-item:first-child > summary { padding-top: 0; }
  details.faq-item[open] > summary { padding-bottom: 12px; }

  details.faq-item > summary h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--ink);
    font-weight: 700;
    flex: 1;
    line-height: 1.4;
  }

  details.faq-item > summary::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease, border-color 0.2s ease;
    margin-top: 8px;
    flex-shrink: 0;
  }

  details.faq-item[open] > summary::after {
    transform: rotate(-135deg);
    border-color: var(--brand);
  }

  details.faq-item > summary:hover h3,
  details.faq-item[open] > summary h3 { color: var(--brand); }

  details.faq-item > summary:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 4px;
    box-shadow: 0 0 0 6px var(--brand);
    border-radius: 4px;
  }

  details.faq-item > p,
  details.faq-item > ul,
  details.faq-item > ol {
    padding-bottom: 20px;
    margin: 0 0 12px;
  }
  details.faq-item > p:last-child { margin-bottom: 0; }
  details.faq-item:last-child[open] > p:last-child,
  details.faq-item:last-child[open] > ul:last-child,
  details.faq-item:last-child[open] > ol:last-child { padding-bottom: 0; }

  /* Vendor block accordion */
  details.content-block.vendor-block {
    padding: 0;
    overflow: hidden;
  }
  details.content-block.vendor-block > summary {
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background 0.15s;
  }
  details.content-block.vendor-block > summary:hover { background: #F8F9FE; }
  details.content-block.vendor-block > summary .vendor-summary {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
  }
  details.content-block.vendor-block > summary h2 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.3;
  }
  .vendor-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }
  .vendor-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    line-height: 1.4;
  }
  .vendor-tag.tag-desktop { background: #E1E3EE; color: var(--ink-soft); }
  .vendor-tag.tag-platform { background: var(--brand-light); color: var(--brand); }
  .vendor-tag.tag-service { background: #FFF8E1; color: #8B6500; }
  .vendor-tag.tag-price {
    background: transparent;
    color: var(--muted);
    padding-left: 0;
    padding-right: 0;
    letter-spacing: 0;
  }
  .vendor-best-for {
    font-size: 0.85rem;
    color: var(--ink-soft);
    line-height: 1.4;
  }
  .vendor-best-for strong {
    color: var(--ink);
    font-weight: 600;
  }
  details.content-block.vendor-block > summary::after {
    content: '';
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg) translateY(-3px);
    transition: transform 0.2s ease, border-color 0.2s ease;
    flex-shrink: 0;
  }
  details.content-block.vendor-block[open] > summary {
    border-bottom: 1px solid var(--border);
  }
  details.content-block.vendor-block[open] > summary::after {
    transform: rotate(-135deg);
    border-color: var(--brand);
  }
  details.content-block.vendor-block > summary:focus-visible {
    outline: 3px solid #fff;
    outline-offset: -2px;
    box-shadow: inset 0 0 0 4px var(--brand);
    border-radius: var(--radius);
  }
  details.content-block.vendor-block > p {
    padding: 0 40px;
    margin: 0 0 14px;
  }
  details.content-block.vendor-block > p:first-of-type { padding-top: 28px; }
  details.content-block.vendor-block > p:last-child {
    padding-bottom: 32px;
    margin-bottom: 0;
  }

  @media (max-width: 640px) {
    details.content-block.vendor-block > summary { padding: 22px 20px; }
    details.content-block.vendor-block > summary h2 { font-size: 1.25rem; }
    details.content-block.vendor-block > p { padding-left: 20px; padding-right: 20px; }
    details.content-block.vendor-block > p:first-of-type { padding-top: 22px; }
    details.content-block.vendor-block > p:last-child { padding-bottom: 22px; }
  }

  /* Decision-box accordion */
  details.decision-box > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  details.decision-box > summary .scenario {
    font-weight: 700;
    color: var(--ink);
    flex: 1;
    margin: 0;
  }
  details.decision-box[open] > summary .scenario { margin-bottom: 6px; }

  details.decision-box > summary::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--brand);
    border-bottom: 2px solid var(--brand);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
    flex-shrink: 0;
  }
  details.decision-box[open] > summary::after { transform: rotate(-135deg); }

  /* ============= BRAND COHERENCE PASS ============= */

  body {
    background:
      linear-gradient(180deg, #F8F9FE 0%, #F4F5FA 42%, #EEF1FB 100%);
  }

  .home-main .cinematic-hero {
    width: 100%;
  }

  .topic-hero {
    background:
      radial-gradient(ellipse at 50% 25%, rgba(22, 34, 194, 0.48) 0%, transparent 58%),
      radial-gradient(ellipse at 15% 10%, rgba(255, 180, 0, 0.10) 0%, transparent 34%),
      linear-gradient(180deg, #0A0F2D 0%, #050818 100%);
    border-top-color: var(--accent);
  }
  .topic-hero::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 54%;
    width: min(620px, 86vw);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 180, 0, 0.16);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
  }
  .topic-hero-inner {
    max-width: 860px;
  }
  .topic-hero .breadcrumb,
  .topic-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.68);
  }
  .topic-hero .breadcrumb a:hover {
    color: var(--accent);
  }
  .topic-hero h1 {
    color: #fff;
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.15rem, 5vw, 4.4rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    text-shadow: 0 0 44px rgba(22, 34, 194, 0.38);
  }
  .topic-hero .subhead {
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    margin-left: auto;
    margin-right: auto;
  }
  .topic-hero[data-topic="ada"] .subhead {
    margin-top: clamp(18px, 2.4vw, 30px);
  }

  .topic-hero.audit-hero {
    padding: 38px 20px 42px;
    background:
      linear-gradient(135deg, rgba(5, 8, 24, 0.98) 0%, rgba(14, 24, 160, 0.95) 58%, rgba(12, 20, 84, 0.98) 100%),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 84px);
  }

  .topic-hero.audit-hero::after {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: auto;
    height: 6px;
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
    background: linear-gradient(90deg, var(--accent), var(--success), var(--brand));
    transform: none;
  }

  .audit-hero h1 {
    max-width: 660px;
    color: #fff;
    font-size: 2.35rem;
    line-height: 1.08;
    letter-spacing: 0;
    margin-bottom: 14px;
  }

  .audit-hero .subhead {
    max-width: 640px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
  }

  @media (max-width: 640px) {
    .topic-hero.audit-hero {
      padding: 48px 20px 44px;
    }

    .audit-hero h1 {
      font-size: 2.15rem;
      line-height: 1.12;
    }

    .audit-hero .subhead {
      font-size: 1rem;
    }
  }

  main:not(.home-main) {
    padding-top: 36px;
  }

  .content-block h2,
  .content-block h3,
  .quick-answer h2,
  .toc h2 {
    letter-spacing: 0;
  }
  .content-block > h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 650;
    font-size: clamp(1.55rem, 2.4vw, 2rem);
  }
  .content-block > p,
  .content-block > ul,
  .content-block > ol,
  .content-block > details,
  .content-block > .checklist {
    max-width: 820px;
  }
  .content-block p,
  .content-block li {
    line-height: 1.72;
  }
  .content-block strong {
    color: var(--ink);
  }

  .decision-box {
    background:
      radial-gradient(circle at 100% 0%, rgba(255, 180, 0, 0.12), transparent 32%),
      #F8F9FE;
    border-left-color: var(--accent);
    box-shadow: inset 0 0 0 1px rgba(22, 34, 194, 0.06);
  }

  .related-card,
  .value-card,
  .service-card,
  .step,
  .pricing-strip {
    border-radius: var(--radius-sm);
  }

  .related-card {
    background:
      linear-gradient(180deg, #fff 0%, #F8F9FE 100%);
    border-color: rgba(22, 34, 194, 0.12);
  }

  .faq-item summary {
    cursor: pointer;
  }
  .faq-item summary h3 {
    display: inline;
  }

  .home-section h2,
  .final-cta h2,
  .pricing-strip h3 {
    letter-spacing: 0;
  }

  .value-card,
  .service-card,
  .step {
    background:
      radial-gradient(circle at 100% 0%, rgba(255, 180, 0, 0.10), transparent 34%),
      linear-gradient(180deg, #fff 0%, #F9FAFF 100%);
    border-color: rgba(22, 34, 194, 0.12);
  }

  .steps {
    margin-top: -14px;
  }
  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 24px 28px;
    border: 1px solid rgba(22, 34, 194, 0.10);
    box-shadow: var(--shadow-sm);
  }
  .step-num {
    flex: 0 0 auto;
    margin-top: -2px;
  }
  .step h3 {
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }
  .step p {
    max-width: 29ch;
  }

  .value-card h3,
  .service-card h3,
  .step h3 {
    margin-top: 0;
  }

  @media (max-width: 640px) {
    main:not(.home-main) {
      padding-top: 24px;
    }
    .topic-hero {
      padding-top: 58px;
      padding-bottom: 42px;
    }
    .cinematic-seo-line {
      padding: 0 18px;
    }
    .content-block::before {
      width: 3px;
    }
  }

  /* ============= BUTTON SYSTEM ============= */

  .header-cta,
  .btn-primary,
  .cta-btn,
  .download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 11px 20px;
    border: 1px solid rgba(255, 180, 0, 0.72);
    border-radius: var(--radius-sm);
    background:
      linear-gradient(180deg, #FFC64A 0%, var(--accent) 100%);
    color: #050818;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    text-decoration: none;
    box-shadow:
      0 0 0 1px rgba(255, 180, 0, 0.18),
      0 10px 24px rgba(11, 15, 44, 0.14);
    transition:
      transform 0.16s ease,
      box-shadow 0.16s ease,
      background 0.16s ease,
      border-color 0.16s ease;
  }

  .header-cta:hover,
  .btn-primary:hover,
  .cta-btn:hover,
  .download-btn:hover {
    background:
      linear-gradient(180deg, #FFD36A 0%, #FFB400 100%);
    color: #050818;
    border-color: #FFD36A;
    box-shadow:
      0 0 0 2px rgba(255, 180, 0, 0.28),
      0 14px 30px rgba(11, 15, 44, 0.20);
    transform: translateY(-1px);
    text-decoration: none;
  }

  .header-cta:active,
  .btn-primary:active,
  .cta-btn:active,
  .download-btn:active {
    transform: translateY(0);
  }

  .btn-ghost,
  .download-btn-secondary,
  .header-signin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(22, 34, 194, 0.18);
    background: rgba(255, 255, 255, 0.72);
    color: var(--brand);
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    transition:
      transform 0.16s ease,
      background 0.16s ease,
      border-color 0.16s ease,
      color 0.16s ease,
      box-shadow 0.16s ease;
  }

  .btn-ghost:hover,
  .download-btn-secondary:hover,
  .header-signin:hover {
    background: #fff;
    color: var(--brand-dark);
    border-color: rgba(255, 180, 0, 0.58);
    box-shadow: 0 8px 22px rgba(11, 15, 44, 0.10);
    transform: translateY(-1px);
    text-decoration: none;
  }

  .cinematic-cta {
    background: rgba(5, 8, 24, 0.34);
    border-color: rgba(255, 180, 0, 0.74);
    color: var(--accent);
    box-shadow:
      0 0 0 1px rgba(255, 180, 0, 0.18),
      0 0 36px rgba(255, 180, 0, 0.08);
  }
  .cinematic-cta:hover {
    background: var(--accent);
    color: #050818;
    box-shadow:
      0 0 0 2px rgba(255, 180, 0, 0.28),
      0 0 40px rgba(255, 180, 0, 0.18);
  }

  .site-header.transparent-mode .header-signin,
  .site-header.transparent-mode.scrolled .header-signin {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.88);
  }
  .site-header.transparent-mode.scrolled .header-signin {
    color: var(--ink-soft);
  }
  .site-header.transparent-mode .header-signin:hover,
  .site-header.transparent-mode.scrolled .header-signin:hover {
    color: var(--accent);
    transform: none;
    background: transparent;
  }

  .home-intro .home-intro-cta .btn-primary,
  .pricing-strip .header-cta,
  .pricing-strip .header-cta:hover,
  .final-cta .btn-primary,
  .final-cta .btn-primary:hover,
  .editorial-cta .cta-btn,
  .editorial-cta .cta-btn:hover {
    color: #050818;
  }

  .home-intro .home-intro-cta .btn-ghost {
    background: rgba(255, 255, 255, 0.70);
    color: var(--brand);
    border-color: rgba(22, 34, 194, 0.18);
  }
  .home-intro .home-intro-cta .btn-primary,
  .home-intro .home-intro-cta .btn-primary:hover {
    color: #fff;
  }

  .editorial-cta .cta-btn,
  .final-cta .btn-primary {
    box-shadow:
      0 0 0 1px rgba(255, 180, 0, 0.22),
      0 12px 28px rgba(0, 0, 0, 0.24);
  }

  nav.main-nav .mobile-cta-row .header-cta,
  nav.main-nav .mobile-cta-row .header-cta:hover {
    color: #050818;
  }

  details.decision-box > summary:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 4px;
    box-shadow: 0 0 0 6px var(--brand);
    border-radius: 4px;
  }

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

  /* ============= SALES / SEO PAGE COMPONENTS ============= */

  .answer-panel {
    background:
      radial-gradient(circle at 100% 0%, rgba(255, 180, 0, 0.14), transparent 34%),
      linear-gradient(135deg, #FFFFFF 0%, #F7F8FE 100%);
    border: 1px solid rgba(22, 34, 194, 0.14);
    border-left: 5px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 26px 30px;
    margin: 0 0 32px;
    box-shadow: var(--shadow-sm);
  }
  .answer-panel .answer-label {
    display: inline-block;
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .answer-panel h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.45rem, 2.4vw, 2.1rem);
    font-weight: 650;
    margin-bottom: 10px;
  }
  .answer-panel p {
    font-size: 1.03rem;
  }

  .audit-main {
    padding-top: 48px;
  }

  .audit-benefits-block,
  .audit-flow-block,
  .audit-audience-block {
    padding: clamp(56px, 7vw, 78px) 4px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .audit-benefits-block::before,
  .audit-flow-block::before,
  .audit-audience-block::before {
    display: none;
  }

  .audit-answer-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: clamp(28px, 5vw, 56px);
    align-items: start;
    padding: 8px 4px 54px;
    border: 0;
    border-bottom: 1px solid rgba(22, 34, 194, 0.12);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .audit-signal-list {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(22, 34, 194, 0.12);
  }

  .audit-signal-list span {
    display: block;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid rgba(22, 34, 194, 0.12);
    border-radius: 0;
    background: transparent;
    color: var(--ink-soft);
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .audit-signal-list strong {
    display: inline-block;
    width: 96px;
    margin-right: 14px;
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .audit-benefits-block {
    border-bottom: 1px solid rgba(22, 34, 194, 0.1);
  }

  .audit-benefits-block .trust-strip {
    gap: 0;
    margin: 28px 0 20px;
    border-top: 1px solid rgba(22, 34, 194, 0.12);
    border-bottom: 1px solid rgba(22, 34, 194, 0.12);
  }

  .audit-benefits-block .trust-strip div {
    position: relative;
    min-height: 0;
    padding: 18px 18px 18px 20px;
    border: 0;
    border-left: 1px solid rgba(22, 34, 194, 0.12);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
  }

  .audit-benefits-block .trust-strip div:first-child {
    border-left: 0;
  }

  .audit-benefits-block .trust-strip div::before {
    content: '';
    display: block;
    width: 28px;
    height: 3px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: var(--brand);
  }

  .audit-benefits-block .trust-strip div:nth-child(2)::before,
  .audit-benefits-block .trust-strip div:nth-child(5)::before {
    background: var(--accent);
  }

  .audit-benefits-block .trust-strip div:nth-child(3)::before {
    background: var(--success);
  }

  .audit-benefits-block .trust-strip div:hover {
    transform: translateY(-2px);
    border-color: rgba(22, 34, 194, 0.24);
    box-shadow: none;
  }

  .audit-flow-block {
    border-bottom: 1px solid rgba(22, 34, 194, 0.1);
  }

  .audit-flow-block .section-eyebrow {
    margin: 0 0 8px;
    color: var(--brand);
  }

  .audit-flow-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin-top: 34px;
  }

  .audit-flow-timeline::before {
    content: '';
    position: absolute;
    top: 23px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--brand), var(--success));
  }

  .audit-flow-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0 0 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .audit-flow-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border: 3px solid #fff;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(22, 34, 194, 0.2);
  }

  .audit-flow-step:nth-child(2) span {
    background: var(--accent);
    color: #050818;
  }

  .audit-flow-step:nth-child(3) span {
    background: var(--success);
  }

  .audit-flow-step h3 {
    margin: 0 0 8px;
    font-size: 1rem;
  }

  .audit-flow-step p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .audit-audience-block,
  .audit-next-block {
    display: grid;
    grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(34px, 6vw, 70px);
    align-items: start;
  }

  .audit-audience-block > *,
  .audit-next-block > * {
    position: relative;
    z-index: 1;
  }

  .audit-section-copy {
    max-width: 430px;
  }

  .audit-section-copy .section-eyebrow {
    margin: 0 0 8px;
    color: var(--brand);
  }

  .audit-section-copy h2 {
    margin: 0 0 12px;
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1.12;
  }

  .audit-section-copy p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .audit-audience-list {
    border-top: 1px solid rgba(22, 34, 194, 0.13);
  }

  .audit-audience-item {
    display: grid;
    grid-template-columns: minmax(116px, 0.32fr) minmax(0, 1fr);
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(22, 34, 194, 0.13);
  }

  .audit-audience-item > span {
    color: var(--brand);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .audit-audience-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--ink);
    font-size: 1rem;
  }

  .audit-audience-item p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .audit-next-block {
    background:
      linear-gradient(135deg, #070B24 0%, #101A48 100%);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: clamp(38px, 5vw, 56px);
    margin-top: 12px;
  }

  .audit-next-block::before {
    background: linear-gradient(180deg, var(--accent), var(--success));
  }

  .audit-next-block .audit-section-copy .section-eyebrow {
    color: var(--accent);
  }

  .audit-next-block .audit-section-copy h2 {
    color: #fff;
  }

  .audit-next-block .audit-section-copy p {
    color: rgba(255, 255, 255, 0.78);
  }

  .audit-next-steps {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .audit-next-step {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .audit-next-step > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--accent);
    color: #050818;
    font-size: 0.76rem;
    font-weight: 900;
  }

  .audit-next-step strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 1rem;
  }

  .audit-next-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.93rem;
    line-height: 1.55;
  }

  @media (max-width: 980px) {
    .audit-flow-timeline {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .audit-flow-timeline::before {
      top: 0;
      bottom: 0;
      left: 23px;
      right: auto;
      width: 1px;
      height: auto;
      background: linear-gradient(180deg, var(--accent), var(--brand), var(--success));
    }

    .audit-flow-step {
      padding: 0 0 18px 68px;
    }

    .audit-flow-step span {
      position: absolute;
      left: 0;
      top: 0;
      margin-bottom: 0;
    }

    .audit-audience-block,
    .audit-next-block {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .audit-section-copy {
      max-width: 720px;
    }
  }

  @media (max-width: 640px) {
    .audit-benefits-block .trust-strip div {
      border-left: 0;
      border-top: 1px solid rgba(22, 34, 194, 0.12);
    }

    .audit-benefits-block .trust-strip div:first-child {
      border-top: 0;
    }

    .audit-audience-item {
      grid-template-columns: 1fr;
      gap: 7px;
      padding: 16px 0;
    }

    .audit-next-step {
      grid-template-columns: 44px minmax(0, 1fr);
      gap: 12px;
    }

    .audit-next-step > span {
      width: 34px;
      height: 34px;
    }
  }

  .proof-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px;
    margin: 24px 0;
  }
  .proof-tile {
    background:
      linear-gradient(180deg, #FFFFFF 0%, #F9FAFF 100%);
    border: 1px solid rgba(22, 34, 194, 0.12);
    border-radius: var(--radius-sm);
    padding: 20px;
    box-shadow: var(--shadow-sm);
  }
  .proof-tile strong {
    display: block;
    color: var(--ink);
    font-size: 1.05rem;
    margin-bottom: 6px;
  }
  .proof-tile span {
    display: block;
    color: var(--ink-soft);
    font-size: 0.93rem;
    line-height: 1.55;
  }

  .split-proof {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 26px;
    align-items: start;
  }
  .split-proof .proof-visual {
    background:
      radial-gradient(circle at 30% 20%, rgba(255, 180, 0, 0.18), transparent 34%),
      linear-gradient(180deg, #0A0F2D 0%, #050818 100%);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 180, 0, 0.18);
    color: #fff;
    padding: 26px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
  }
  .proof-visual::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -90px;
    width: 240px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 180, 0, 0.22);
    border-radius: 50%;
  }
  .proof-visual .proof-kicker {
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .proof-visual .proof-number {
    color: #fff;
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(3rem, 9vw, 5.4rem);
    line-height: 0.9;
    margin: 28px 0 12px;
  }
  .proof-visual p {
    color: rgba(255, 255, 255, 0.86);
    position: relative;
    z-index: 1;
  }

  .source-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 18px;
  }
  .source-list a {
    display: block;
    background: #F8F9FE;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: var(--ink);
    font-weight: 650;
  }
  .source-list a:hover {
    background: var(--brand-light);
    color: var(--brand);
    text-decoration: none;
  }

  .persona-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 20px;
  }
  .persona-card {
    border: 1px solid rgba(22, 34, 194, 0.12);
    border-radius: var(--radius-sm);
    padding: 20px;
    background: #fff;
  }
  .persona-card h3 {
    margin: 0 0 8px;
    font-size: 1.02rem;
  }
  .persona-card p {
    margin: 0;
    font-size: 0.93rem;
  }

  .enterprise-flow-block h2 {
    max-width: 820px;
  }
  .enterprise-steps-label {
    display: inline-flex;
    margin: 26px 0 0;
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .enterprise-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(22, 34, 194, 0.13);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-top: 22px;
    background: #fff;
  }
  .enterprise-steps-label + .enterprise-flow {
    margin-top: 10px;
  }
  .enterprise-flow-step {
    padding: 22px;
    border-right: 1px solid rgba(22, 34, 194, 0.13);
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFF 100%);
  }
  .enterprise-flow-step:last-child {
    border-right: 0;
  }
  .enterprise-flow-step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--brand-light);
    color: var(--brand);
    font-weight: 800;
    font-size: 0.78rem;
    margin-bottom: 14px;
  }
  .enterprise-flow-step h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
  }
  .enterprise-flow-step p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.94rem;
    line-height: 1.55;
  }
  .enterprise-row-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    border-top: 1px solid rgba(22, 34, 194, 0.13);
  }
  .enterprise-row-list li {
    display: grid;
    grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(22, 34, 194, 0.13);
  }
  .enterprise-row-list strong {
    color: var(--ink);
    font-size: 0.98rem;
  }
  .enterprise-row-list span {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.55;
  }
  .enterprise-fit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
  }
  .enterprise-fit-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFF 100%);
    border: 1px solid rgba(22, 34, 194, 0.12);
    border-radius: var(--radius-sm);
    padding: 18px;
    box-shadow: var(--shadow-sm);
  }
  .enterprise-fit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
  }
  .enterprise-fit-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.96rem;
    line-height: 1.55;
  }
  .partnership-callout {
    display: block;
  }
  .partnership-callout h2 {
    max-width: 720px;
    margin-bottom: 10px;
  }
  .partnership-callout p {
    margin: 0;
    max-width: 760px;
  }
  .partnership-callout .context-cta-row {
    margin-top: 18px;
  }

  @media (max-width: 760px) {
    .enterprise-flow {
      grid-template-columns: 1fr;
    }
    .enterprise-flow-step {
      border-right: 0;
      border-bottom: 1px solid rgba(22, 34, 194, 0.13);
    }
    .enterprise-flow-step:last-child {
      border-bottom: 0;
    }
    .enterprise-row-list li {
      grid-template-columns: 1fr;
      gap: 6px;
    }
    .enterprise-fit-grid {
      grid-template-columns: 1fr;
    }
    .partnership-callout .context-cta-row {
      margin-top: 12px;
    }
  }

  .comparison-snapshot {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 24px 0;
  }
  .snapshot-card {
    background: #fff;
    border: 1px solid rgba(22, 34, 194, 0.12);
    border-radius: var(--radius-sm);
    padding: 24px;
  }
  .snapshot-card.highlight {
    background:
      radial-gradient(circle at 100% 0%, rgba(255, 180, 0, 0.12), transparent 36%),
      linear-gradient(180deg, #FFFFFF 0%, #F8F9FE 100%);
    border-color: rgba(255, 180, 0, 0.5);
  }
  .snapshot-card h2 {
    font-family: 'Fraunces', Georgia, serif;
    margin-bottom: 14px;
  }
  .snapshot-card ul {
    margin-bottom: 0;
  }

  .best-fit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 32px;
  }

  .best-fit-card {
    background: #fff;
    border: 1px solid rgba(22, 34, 194, 0.12);
    border-radius: var(--radius-sm);
    padding: 20px;
    box-shadow: var(--shadow-sm);
  }

  .best-fit-card.highlight {
    border-color: rgba(27, 154, 90, 0.32);
    background:
      radial-gradient(circle at 100% 0%, rgba(27, 154, 90, 0.10), transparent 36%),
      #fff;
  }

  .best-fit-card.caution {
    border-color: rgba(255, 180, 0, 0.5);
    background:
      radial-gradient(circle at 100% 0%, rgba(255, 180, 0, 0.14), transparent 36%),
      #fff;
  }

  .best-fit-card span {
    display: block;
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .best-fit-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Keep Fraunces for brand moments only. Normal page headings render sharper in the UI font. */
  .topic-hero h1,
  .content-block > h2,
  .answer-panel h2,
  .home-section h2,
  .home-section h2[style*="text-align"],
  .final-cta h2,
  .editorial-cta h2,
  .pricing-strip h3,
  .snapshot-card h2 {
    font-family: var(--font);
    font-weight: 800;
    letter-spacing: 0;
    text-shadow: none;
  }

  .section-eyebrow {
    font-family: var(--font);
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  @media (max-width: 760px) {
    .split-proof,
    .comparison-snapshot,
    .best-fit-grid,
    .contact-choice-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 1180px) {
    .site-header.transparent-mode nav.main-nav.open {
      background: var(--card);
      border-bottom: 1px solid var(--border);
    }

    .site-header.transparent-mode nav.main-nav.open > ul > li > a,
    .site-header.transparent-mode nav.main-nav.open .nav-dropdown details summary,
    .site-header.transparent-mode nav.main-nav.open .nav-dropdown-menu a {
      color: var(--ink-soft);
    }

    .site-header.transparent-mode nav.main-nav.open > ul > li > a:hover,
    .site-header.transparent-mode nav.main-nav.open .nav-dropdown details summary:hover,
    .site-header.transparent-mode nav.main-nav.open .nav-dropdown details[open] summary,
    .site-header.transparent-mode nav.main-nav.open .nav-dropdown-menu a:hover {
      color: var(--brand);
    }

    .site-header.transparent-mode nav.main-nav.open .mobile-cta-row {
      justify-content: flex-start;
    }

    .site-header.transparent-mode nav.main-nav.open .mobile-cta-row a.header-signin {
      color: var(--brand-dark) !important;
      background: #fff !important;
      border: 1px solid rgba(22, 34, 194, 0.30) !important;
      border-radius: var(--radius-sm);
      padding: 11px 26px;
      font-weight: 800;
      box-shadow: 0 8px 20px rgba(11, 15, 44, 0.08);
    }

    .site-header.transparent-mode nav.main-nav.open .mobile-cta-row a.header-signin:hover {
      color: #fff !important;
      background: var(--brand) !important;
      border-color: var(--brand) !important;
      text-decoration: none;
    }

    .site-header.transparent-mode nav.main-nav.open .mobile-cta-row a.header-cta {
      color: #050818 !important;
      background: var(--accent) !important;
      border: 1px solid var(--accent) !important;
      box-shadow: 0 10px 22px rgba(255, 180, 0, 0.20);
    }

    .site-header.transparent-mode nav.main-nav.open .mobile-cta-row a.header-cta:hover {
      color: #050818 !important;
      background: #FFD15A !important;
      border-color: #FFD15A !important;
      text-decoration: none;
    }
  }
