:root {
    --bg-main: #E4E9ED;
    --bg-card: #F2F5F7;
    --text-primary: #18191A;
    --text-secondary: #6B6D70;
    --text-tertiary: #8E9499;
    --border-subtle: #D8DEE3;
    --border-light: #E4E9ED;
    --brand-primary: #2F6FA3;
    --brand-hover: #275D8A;
    --brand-dark: #1F4E79;
    --accent-steel: #7C96AB;
    --accent-gold: #CFAF7A;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
  }

  body {
    background: var(--bg-main);
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* ========== NAV ========== */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(228, 233, 237, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
  }

  .nav-logo {
    font-family: 'Merriweather', serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.3px;
    color: var(--text-primary);
    text-decoration: none;
  }
  .nav-logo span { color: var(--brand-primary); }

  .nav-links { display: flex; gap: 24px; align-items: center; }
  .nav-links a {
    font-size: 14px; font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
  }
  .nav-links a:hover { color: var(--text-primary); }

  .nav-cta {
    font-size: 14px; font-weight: 500;
    color: var(--bg-card) !important;
    background: var(--brand-primary);
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  .nav-cta:hover {
    background: var(--brand-hover);
    transform: translateY(-1px);
  }

  .nav-login {
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-primary) !important;
    border: 1px solid rgba(47, 111, 163, 0.35);
    padding: 9px 18px;
    border-radius: 6px;
  }
  .nav-login:hover {
    border-color: var(--brand-primary);
    background: rgba(47, 111, 163, 0.06);
  }

  /* ========== INTERIOR PAGES ========== */
  .page-main {
    min-height: 100vh;
    padding: 140px 48px 80px;
  }

  .page-shell {
    max-width: 980px;
    margin: 0 auto;
  }

  .page-shell-wide {
    max-width: 1220px;
  }

  .page-kicker {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.8px;
    color: var(--accent-steel);
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .page-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(36px, 4.2vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.5px;
    max-width: 760px;
    margin-bottom: 24px;
  }

  .page-lede {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 40px;
  }

  .page-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(24, 25, 26, 0.04);
  }

  .page-card h2 {
    font-family: 'Merriweather', serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 14px;
  }

  .page-card p,
  .page-card li {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
  }

  .page-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 20px 0 0;
  }

  .page-card li {
    padding-left: 18px;
    border-left: 2px solid var(--accent-gold);
  }

  .page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 32px;
  }

  .research-stack {
    display: grid;
    gap: 28px;
  }

  .research-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 22px;
  }

  .research-stat {
    background: var(--bg-main);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 18px;
    text-align: center;
  }

  .research-stat-title {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--accent-steel);
    margin-bottom: 14px;
  }

  .score-ring {
    width: 118px;
    height: 118px;
    margin: 0 auto 14px;
    position: relative;
  }

  .score-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
  }

  .score-ring-bg {
    fill: none;
    stroke: var(--border-subtle);
    stroke-width: 8;
  }

  .score-ring-fill {
    fill: none;
    stroke: var(--brand-primary);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: var(--score) 100;
  }

  .score-ring.low .score-ring-fill {
    stroke: #B8795E;
  }

  .score-ring.mid .score-ring-fill {
    stroke: var(--accent-gold);
  }

  .score-ring-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Merriweather', serif;
    font-size: 32px;
    line-height: 1;
    color: var(--brand-primary);
  }

  .score-ring.low .score-ring-value {
    color: #9F6249;
  }

  .score-ring.mid .score-ring-value {
    color: #9A7A43;
  }

  .research-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-secondary);
  }

  .research-table-wrap {
    overflow-x: auto;
    margin-top: 20px;
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
  }

  .research-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
  }

  .research-table th,
  .research-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-light);
    text-align: left;
  }

  .research-table th {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--text-tertiary);
    background: var(--bg-main);
  }

  .research-table td {
    color: var(--text-secondary);
  }

  .research-table tr:last-child td {
    border-bottom: none;
  }

  .research-note {
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-tertiary);
  }

  .distribution-visual {
    margin-top: 22px;
    background: var(--bg-main);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 18px;
  }

  .distribution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .distribution-card {
    background: var(--bg-main);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    min-height: 190px;
    padding: 22px 20px;
    display: grid;
    grid-template-columns: 315px 1fr;
    gap: 12px;
    align-items: center;
  }

  .distribution-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
  }

  .distribution-card-meta {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-tertiary);
  }

  .metric-ring-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 18px;
  }

  .mini-metric-ring {
    text-align: center;
  }

  .mini-metric-ring .score-ring {
    width: 54px;
    height: 54px;
    margin: 0 auto 6px;
  }

  .mini-metric-ring .score-ring-bg,
  .mini-metric-ring .score-ring-fill {
    stroke-width: 7;
  }

  .mini-metric-ring .score-ring-value {
    font-size: 15px;
  }

  .mini-metric-ring .score-ring.neutral .score-ring-fill {
    stroke: var(--text-tertiary);
  }

  .mini-metric-ring .score-ring.neutral .score-ring-value {
    color: var(--text-tertiary);
  }

  .mini-metric-label {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    line-height: 1.2;
    color: var(--text-tertiary);
  }

  .mini-distribution {
    width: 100%;
    max-width: 620px;
    justify-self: end;
  }

  .mini-distribution svg {
    width: 100%;
    height: auto;
    display: block;
  }

  .distribution-visual svg {
    width: 100%;
    height: auto;
    display: block;
  }

  .distribution-label {
    font-family: 'Inter', sans-serif;
    font-size: 8.5px;
    font-weight: 500;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    fill: var(--text-tertiary);
  }

  .distribution-text {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    fill: var(--text-secondary);
  }

  .url-audit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
  }

  .url-audit-group {
    background: var(--bg-main);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 18px;
  }

  .url-audit-group h3 {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--accent-steel);
    margin-bottom: 10px;
  }

  .url-audit-group p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-secondary);
    overflow-wrap: anywhere;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.35fr);
    gap: 36px;
    align-items: start;
  }

  .calendar-frame {
    width: 100%;
    min-height: 760px;
    border: none;
    overflow: hidden;
    display: block;
  }

  .contact-methods {
    display: grid;
    gap: 14px;
  }

  .contact-method {
    padding: 18px 20px;
    background: var(--bg-main);
    border-left: 2px solid var(--accent-gold);
    border-radius: 0 6px 6px 0;
  }

  .contact-method-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--accent-steel);
    margin-bottom: 6px;
  }

  .contact-method a,
  .contact-method span {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-primary);
    text-decoration: none;
  }

  .contact-method a:hover { color: var(--brand-primary); }

  /* ========== HERO ========== */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 48px 60px;
    position: relative;
    overflow: hidden;
  }

  /* Soft fade at bottom of hero so the layered stack doesn't cut off sharply */
  .hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: linear-gradient(
      to bottom,
      rgba(228, 233, 237, 0) 0%,
      rgba(228, 233, 237, 0.6) 55%,
      rgba(228, 233, 237, 1) 100%
    );
    pointer-events: none;
    z-index: 3;
  }

  .hero-grid {
    display: block;
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    position: relative;
  }

  /* Text content sits on top */
  .hero-content {
    position: relative;
    z-index: 5;
    max-width: 560px;
  }

  /* Soft gradient fade behind text to ensure readability over the stack */
  .hero-content::before {
    content: '';
    position: absolute;
    inset: -80px -320px -80px -80px;
    background: radial-gradient(
      ellipse 70% 85% at 25% 50%,
      var(--bg-main) 0%,
      var(--bg-main) 30%,
      rgba(228, 233, 237, 0.9) 50%,
      rgba(228, 233, 237, 0.55) 68%,
      rgba(228, 233, 237, 0.25) 82%,
      transparent 100%
    );
    z-index: -1;
    pointer-events: none;
  }

  /* ========== LEFT: COPY ========== */
  .hero-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.8px;
    color: var(--accent-steel);
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.7s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s forwards;
  }

  .hero-label::after {
    content: '';
    display: block;
    width: 0;
    height: 1.5px;
    background: var(--accent-gold);
    margin-top: 16px;
    animation: drawLine 1.8s cubic-bezier(0.25, 0.1, 0.25, 1) 0.8s forwards;
  }

  .hero-headline {
    font-family: 'Merriweather', serif;
    font-size: clamp(36px, 4.2vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.7s cubic-bezier(0.25, 0.1, 0.25, 1) 0.5s forwards;
  }
  .hero-headline em {
    font-style: italic;
    color: var(--brand-primary);
  }

  .hero-tagline {
    font-family: 'Merriweather', serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-secondary);
    letter-spacing: -0.1px;
    max-width: 480px;
    margin-top: -12px;
    margin-bottom: 28px;
    padding-left: 14px;
    border-left: 1.5px solid var(--accent-gold);
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.7s cubic-bezier(0.25, 0.1, 0.25, 1) 0.6s forwards;
  }

  .hero-support {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.7s cubic-bezier(0.25, 0.1, 0.25, 1) 0.7s forwards;
  }

  .hero-ctas {
    display: flex;
    align-items: center;
    gap: 24px;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.7s cubic-bezier(0.25, 0.1, 0.25, 1) 0.9s forwards;
  }

  .btn-primary {
    font-size: 15px; font-weight: 500;
    color: var(--bg-card);
    background: var(--brand-primary);
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(47, 111, 163, 0.15);
  }
  .btn-primary:hover {
    background: var(--brand-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(47, 111, 163, 0.25);
  }

  .btn-secondary {
    font-size: 15px; font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease, gap 0.3s ease;
  }
  .btn-secondary:hover { color: var(--brand-primary); gap: 12px; }
  .btn-secondary svg { transition: transform 0.3s ease; }
  .btn-secondary:hover svg { transform: translateX(2px); }

  /* ========== RIGHT: LAYERED STACK ========== */
  .hero-visual {
    position: absolute;
    top: 50%;
    right: -4%;
    transform: translateY(-42%) scale(1);
    transform-origin: center right;
    width: 58%;
    height: 560px;
    perspective: 2400px;
    opacity: 0;
    animation: fadeIn 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.6s forwards;
    z-index: 1;
    pointer-events: auto;
  }

  .stack {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  /* ========== ISOMETRIC MODE ========== */
  /* Tilt the whole stack when in isometric mode */
  .stack[data-mode="iso"] {
    transform: rotateX(42deg) rotateZ(-22deg) translateX(-3%);
  }

  .layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    box-shadow:
      0 1px 2px rgba(24, 25, 26, 0.04),
      0 8px 24px rgba(24, 25, 26, 0.06),
      0 24px 48px rgba(24, 25, 26, 0.08);
    overflow: hidden;
    transition: transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1),
                opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.9s ease;
    will-change: transform, opacity;
    backface-visibility: hidden;
  }

  /* Non-focused iso layers are clickable to jump focus */
  .stack[data-mode="iso"] .layer:not([data-iso-pos="0"]) {
    cursor: pointer;
  }
  .stack[data-mode="iso"] .layer[data-iso-pos="0"] {
    cursor: default;
  }

  /* ISOMETRIC layer positions — driven by data-iso-pos (relative to focused layer) */
  /* Focused layer sits forward */
  .stack[data-mode="iso"] .layer[data-iso-pos="0"] {
    transform: translateZ(210px);
    opacity: 1;
    z-index: 10;
    box-shadow:
      0 24px 48px rgba(24, 25, 26, 0.16),
      0 48px 96px rgba(47, 111, 163, 0.08);
  }
  /* One behind */
  .stack[data-mode="iso"] .layer[data-iso-pos="1"] {
    transform: translateZ(70px);
    opacity: 0.82;
    z-index: 9;
    box-shadow: 0 14px 32px rgba(24, 25, 26, 0.1);
  }
  /* Two behind */
  .stack[data-mode="iso"] .layer[data-iso-pos="2"] {
    transform: translateZ(-70px);
    opacity: 0.68;
    z-index: 8;
    box-shadow: 0 10px 22px rgba(24, 25, 26, 0.08);
  }
  /* Three behind */
  .stack[data-mode="iso"] .layer[data-iso-pos="3"] {
    transform: translateZ(-210px);
    opacity: 0.54;
    z-index: 7;
    box-shadow: 0 6px 14px rgba(24, 25, 26, 0.06);
  }
  /* One in front (layers above the focused one) */
  .stack[data-mode="iso"] .layer[data-iso-pos="-1"] {
    transform: translateZ(350px) translateY(-30px);
    opacity: 0;
    z-index: 11;
    box-shadow: none;
    pointer-events: none;
  }
  /* Two in front */
  .stack[data-mode="iso"] .layer[data-iso-pos="-2"] {
    transform: translateZ(490px) translateY(-60px);
    opacity: 0;
    z-index: 12;
    box-shadow: none;
    pointer-events: none;
  }
  /* Three in front */
  .stack[data-mode="iso"] .layer[data-iso-pos="-3"] {
    transform: translateZ(630px) translateY(-90px);
    opacity: 0;
    z-index: 13;
    box-shadow: none;
    pointer-events: none;
  }

  /* Subtle drift animation on isometric layers */
  @keyframes isoDrift {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.02); }
  }
  .stack[data-mode="iso"] .layer {
    animation: isoDrift 6s ease-in-out infinite;
  }
  .stack[data-mode="iso"] .layer[data-layer="1"] { animation-delay: 0.5s; }
  .stack[data-mode="iso"] .layer[data-layer="2"] { animation-delay: 1s; }
  .stack[data-mode="iso"] .layer[data-layer="3"] { animation-delay: 1.5s; }

  /* ========== FLAT FOCUS MODE ========== */
  /* Layer positions relative to active */
  .stack[data-mode="flat"] .layer[data-state="active"] {
    transform: translateZ(0) translateY(0) scale(1);
    opacity: 1;
    z-index: 4;
    pointer-events: auto;
  }
  .stack[data-mode="flat"] .layer[data-state="next-1"] {
    transform: translateZ(-60px) translateY(18px) scale(0.96);
    opacity: 0.55;
    z-index: 3;
    pointer-events: none;
  }
  .stack[data-mode="flat"] .layer[data-state="next-2"] {
    transform: translateZ(-120px) translateY(36px) scale(0.92);
    opacity: 0.3;
    z-index: 2;
    pointer-events: none;
  }
  .stack[data-mode="flat"] .layer[data-state="next-3"] {
    transform: translateZ(-180px) translateY(54px) scale(0.88);
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
  }
  .stack[data-mode="flat"] .layer[data-state="past"] {
    transform: translateZ(80px) translateY(-60px) scale(1.04);
    opacity: 0;
    z-index: 5;
    pointer-events: none;
  }

  /* ========== LAYER 1 — WEBSITE ========== */
  .layer-site {
    display: flex;
    flex-direction: column;
    container-type: size;
    container-name: sitelayer;
  }

  .browser-bar {
    height: 30px;
    background: #EAEEF1;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 6px;
    flex-shrink: 0;
  }
  .browser-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #D8DEE3;
  }
  .browser-url {
    margin-left: 14px;
    font-size: 10px;
    color: var(--text-tertiary);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
  }

  .site-content {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  /* Site navigation — light bar above dark hero */
  .site-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(10px, 2.4cqh, 14px) clamp(16px, 4.5cqh, 28px);
    background: var(--bg-card);
    border-bottom: 2px solid var(--brand-primary);
    flex-shrink: 0;
  }
  .site-logo {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .site-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(18px, 3.8cqh, 22px);
    height: clamp(18px, 3.8cqh, 22px);
    border-radius: 4px;
    background: var(--brand-primary);
    color: var(--bg-card);
    font-family: 'Inter', sans-serif;
    font-size: clamp(9px, 1.9cqh, 11px);
    font-weight: 700;
    letter-spacing: 0.2px;
  }
  .site-logo-name {
    font-family: 'Merriweather', serif;
    font-size: clamp(11px, 2.4cqh, 14px);
    color: var(--text-primary);
    letter-spacing: -0.1px;
  }
  .site-nav-links {
    display: flex;
    gap: clamp(8px, 2.2cqh, 14px);
    align-items: center;
  }
  .site-nav-links span {
    font-family: 'Inter', sans-serif;
    font-size: clamp(8px, 1.7cqh, 10px);
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.2px;
  }
  .site-nav-cta {
    font-size: clamp(8px, 1.7cqh, 10px);
    color: var(--bg-card) !important;
    background: var(--brand-primary);
    padding: clamp(4px, 1.1cqh, 6px) clamp(8px, 2.2cqh, 12px);
    border-radius: 4px;
    letter-spacing: 0.2px;
    font-weight: 600 !important;
  }

  /* Hero — dark, full-bleed, two-column. Dominates the layer. */
  .site-hero {
    position: relative;
    overflow: hidden;
    flex: 0 0 66%;
    display: flex;
    align-items: center;
  }
  .site-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #18191A 0%, #262c33 50%, #18191A 100%);
  }
  .site-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(47, 111, 163, 0.25), transparent 55%),
      radial-gradient(circle at 80% 70%, rgba(47, 111, 163, 0.12), transparent 55%);
  }
  .site-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 18px 18px;
  }
  .site-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 100%);
  }
  .site-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 58% 42%;
    gap: clamp(12px, 3cqh, 20px);
    padding: clamp(18px, 5cqh, 32px) clamp(16px, 4.5cqh, 28px);
    width: 100%;
    align-items: center;
  }

  .site-hero-left {
    display: flex;
    flex-direction: column;
  }
  .site-hero-label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(7px, 1.5cqh, 9px);
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: clamp(6px, 2cqh, 12px);
  }
  .site-hero-label::after {
    content: '';
    display: block;
    width: clamp(18px, 4.5cqh, 28px);
    height: 1px;
    background: var(--accent-gold);
    margin-top: clamp(4px, 1cqh, 7px);
  }
  .site-headline {
    font-family: 'Merriweather', serif;
    font-size: clamp(16px, 4.2cqh, 26px);
    line-height: 1.15;
    letter-spacing: -0.4px;
    color: #ffffff;
    margin-bottom: clamp(6px, 2cqh, 12px);
    font-weight: 400;
  }
  .site-headline em {
    font-style: normal;
    background: linear-gradient(135deg, var(--brand-primary), #6FA3C9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .site-sub {
    font-family: 'Inter', sans-serif;
    font-size: clamp(9px, 2cqh, 12px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
    margin-bottom: clamp(8px, 2.5cqh, 16px);
  }
  .site-cta-row {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1.8cqh, 10px);
    flex-wrap: wrap;
    margin-bottom: clamp(6px, 2cqh, 12px);
  }
  .site-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-primary);
    color: var(--bg-card);
    padding: clamp(7px, 1.8cqh, 10px) clamp(11px, 2.8cqh, 16px);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: clamp(8.5px, 1.9cqh, 11px);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(47, 111, 163, 0.4);
    transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
  }
  .site-cta-secondary {
    font-family: 'Inter', sans-serif;
    font-size: clamp(8.5px, 1.9cqh, 11px);
    color: #ffffff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    padding: clamp(6px, 1.6cqh, 9px) clamp(10px, 2.6cqh, 15px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 4px;
  }
  .site-hero-trust {
    font-family: 'Inter', sans-serif;
    font-size: clamp(7.5px, 1.7cqh, 10px);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
  }

  /* Hero visual — dark panel with icon */
  .site-hero-visual {
    position: relative;
    background: linear-gradient(135deg, #2d343c 0%, #1a1d21 100%);
    border-radius: 6px;
    overflow: hidden;
    min-height: clamp(110px, 28cqh, 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  }
  .site-hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 70% 30%, rgba(47, 111, 163, 0.35), transparent 55%),
      radial-gradient(circle at 20% 80%, rgba(207, 175, 122, 0.12), transparent 50%);
  }
  .site-hero-visual svg {
    position: relative;
    z-index: 1;
    width: clamp(42px, 11cqh, 68px);
    height: clamp(42px, 11cqh, 68px);
    color: rgba(255, 255, 255, 0.55);
  }

  /* Trust bar */
  .site-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(8px, 2cqh, 12px) clamp(16px, 4.5cqh, 28px);
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-subtle);
    gap: clamp(10px, 3cqh, 18px);
    flex-shrink: 0;
  }
  .site-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
  }
  .site-trust-item strong {
    font-family: 'Inter', sans-serif;
    color: var(--brand-primary);
    font-size: clamp(10px, 2.2cqh, 13px);
    font-weight: 700;
    letter-spacing: -0.1px;
    line-height: 1.15;
  }
  .site-trust-desc {
    font-family: 'Inter', sans-serif;
    font-size: clamp(6.5px, 1.4cqh, 8px);
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.4px;
  }
  .site-trust-divider {
    width: 1px;
    height: clamp(16px, 4cqh, 24px);
    background: var(--border-subtle);
  }

  /* Problem section — barely peeks at the bottom, content overflows (clipped by parent) */
  .site-problem {
    padding: clamp(12px, 3cqh, 18px) clamp(16px, 4.5cqh, 28px) 0;
    background: var(--bg-main);
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(10px, 3cqh, 18px);
    align-items: start;
  }
  .site-problem-body {
    display: flex;
    flex-direction: column;
  }
  .site-problem-headline {
    font-family: 'Merriweather', serif;
    font-size: clamp(12px, 2.6cqh, 15px);
    line-height: 1.25;
    letter-spacing: -0.2px;
    color: var(--text-primary);
    margin-bottom: clamp(6px, 1.5cqh, 8px);
    font-weight: 400;
  }
  .site-problem-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(8px, 1.7cqh, 10px);
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 6px;
  }
  .site-problem-visual {
    position: relative;
    background: linear-gradient(135deg, #18191A 0%, #2d343c 100%);
    border-radius: 4px;
    min-height: clamp(60px, 14cqh, 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .site-problem-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(47, 111, 163, 0.28), transparent 60%);
  }
  .site-problem-visual span {
    position: relative;
    z-index: 1;
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    padding: 0 8px;
  }

  /* ========== LAYER 2 — STRUCTURE ========== */
  .layer-wireframe {
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    container-type: size;
    container-name: wflayer;
    overflow: hidden;
  }

  /* Top header strip with title + tag */
  .wf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(10px, 2.4cqh, 14px) clamp(16px, 4.5cqh, 28px);
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-subtle);
    flex-shrink: 0;
  }
  .wf-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(11px, 2.4cqh, 14px);
    color: var(--text-primary);
    letter-spacing: -0.1px;
  }
  .wf-tag {
    font-family: 'Inter', sans-serif;
    font-size: clamp(8px, 1.7cqh, 10px);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-steel);
    font-weight: 500;
  }

  /* Canvas holds the mockup-structured wireframe, with grid backdrop */
  .wf-canvas {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    background-image:
      linear-gradient(rgba(124, 150, 171, 0.09) 1px, transparent 1px),
      linear-gradient(90deg, rgba(124, 150, 171, 0.09) 1px, transparent 1px);
    background-size: 16px 16px;
    background-position: -1px -1px;
    overflow: hidden;
  }

  /* All blocks are pure outlines — no fills, no shadows */
  .wf-block {
    border: 1.25px solid var(--accent-steel);
    border-radius: 3px;
    background: transparent;
  }

  /* Navigation bar — matches site-nav structure */
  .wf-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(8px, 2cqh, 12px) clamp(12px, 3.5cqh, 22px);
    margin: clamp(8px, 2cqh, 12px) clamp(8px, 2cqh, 12px) 0;
    flex-shrink: 0;
  }
  .wf-nav-logo-group {
    display: flex;
    align-items: center;
    gap: clamp(5px, 1.4cqh, 8px);
  }
  .wf-nav-logo-mark {
    width: clamp(16px, 3.5cqh, 20px);
    height: clamp(16px, 3.5cqh, 20px);
    border-radius: 3px;
    border: 1.25px solid var(--accent-steel);
  }
  .wf-nav-logo-text {
    height: clamp(7px, 1.6cqh, 9px);
    width: clamp(54px, 14cqh, 86px);
    border: 1px solid var(--accent-steel);
    border-radius: 2px;
  }
  .wf-nav-items {
    display: flex;
    align-items: center;
    gap: clamp(8px, 2.2cqh, 14px);
  }
  .wf-nav-dot {
    width: clamp(14px, 3.5cqh, 22px);
    height: 2px;
    background: var(--accent-steel);
    opacity: 0.5;
    border-radius: 1px;
  }
  .wf-nav-cta {
    width: clamp(44px, 11cqh, 68px);
    height: clamp(14px, 3.2cqh, 20px);
    border: 1.25px solid var(--brand-primary);
    border-radius: 3px;
  }

  /* Hero — dominates 2/3 of layer, matches site-hero */
  .wf-hero {
    position: relative;
    flex: 0 0 66%;
    display: grid;
    grid-template-columns: 58% 42%;
    gap: clamp(10px, 3cqh, 18px);
    padding: clamp(16px, 4.5cqh, 28px);
    border: 1.25px solid var(--accent-steel);
    border-radius: 3px;
    margin: clamp(8px, 2cqh, 12px);
    align-items: center;
    background: transparent;
  }
  .wf-hero-left {
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 1.8cqh, 10px);
  }
  .wf-hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: clamp(7px, 1.5cqh, 9px);
    color: var(--accent-steel);
    letter-spacing: 1.6px;
    text-transform: uppercase;
    font-weight: 500;
  }
  .wf-hero-eyebrow::after {
    content: '';
    display: block;
    width: clamp(18px, 4.5cqh, 28px);
    height: 1px;
    background: var(--accent-gold);
    margin-top: clamp(4px, 1cqh, 6px);
  }
  .wf-hero-bar {
    height: clamp(10px, 2.5cqh, 14px);
    border: 1px solid var(--accent-steel);
    border-radius: 2px;
  }
  .wf-hero-bar.wide { width: 92%; }
  .wf-hero-bar.mid { width: 70%; }
  .wf-hero-sub {
    display: flex;
    flex-direction: column;
    gap: clamp(3px, 0.8cqh, 5px);
    margin-top: clamp(2px, 0.6cqh, 4px);
  }
  .wf-hero-sub-line {
    height: clamp(4px, 1cqh, 6px);
    border: 1px solid var(--accent-steel);
    opacity: 0.6;
    border-radius: 2px;
  }
  .wf-hero-sub-line.l1 { width: 100%; }
  .wf-hero-sub-line.l2 { width: 88%; }
  .wf-hero-sub-line.l3 { width: 72%; }

  /* CTA row — primary filled outline + secondary outlined */
  .wf-hero-cta-row {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1.8cqh, 10px);
    margin-top: clamp(4px, 1.2cqh, 8px);
  }
  .wf-hero-cta-primary {
    height: clamp(22px, 5.2cqh, 32px);
    width: clamp(92px, 22cqh, 140px);
    border: 1.25px solid var(--brand-primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .wf-hero-cta-primary::before {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1px dashed var(--brand-primary);
    opacity: 0.4;
    border-radius: 2px;
  }
  .wf-hero-cta-secondary {
    height: clamp(22px, 5.2cqh, 32px);
    width: clamp(72px, 18cqh, 110px);
    border: 1.25px solid var(--accent-steel);
    border-radius: 4px;
  }
  .wf-hero-trust-line {
    height: clamp(4px, 1cqh, 6px);
    border: 1px solid var(--accent-steel);
    opacity: 0.5;
    border-radius: 2px;
    width: 78%;
    margin-top: clamp(4px, 1.2cqh, 8px);
  }

  /* Hero visual — dashed frame with diagonal cross */
  .wf-hero-visual {
    position: relative;
    border: 1.25px dashed var(--accent-gold);
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    min-height: clamp(100px, 24cqh, 160px);
  }
  .wf-hero-visual-cross {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .wf-hero-visual-cross line {
    stroke: var(--accent-gold);
    stroke-width: 1;
    opacity: 0.4;
  }
  .wf-hero-visual-label {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: clamp(7px, 1.6cqh, 9px);
    color: var(--accent-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--bg-card);
    padding: clamp(2px, 0.6cqh, 4px) clamp(5px, 1.4cqh, 8px);
  }

  /* Trust bar — 4 items (number + label stacked) + dividers */
  .wf-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 3cqh, 18px);
    padding: clamp(6px, 1.6cqh, 10px) clamp(12px, 3.5cqh, 22px);
    margin: 0 clamp(8px, 2cqh, 12px);
    flex-shrink: 0;
    border-style: dashed;
  }
  .wf-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2px, 0.6cqh, 3px);
  }
  .wf-trust-num {
    height: clamp(8px, 1.9cqh, 11px);
    width: clamp(26px, 7cqh, 44px);
    border: 1px solid var(--brand-primary);
    border-radius: 2px;
  }
  .wf-trust-label {
    height: clamp(4px, 1cqh, 5px);
    width: clamp(36px, 9cqh, 56px);
    border: 1px solid var(--accent-steel);
    opacity: 0.55;
    border-radius: 1.5px;
  }
  .wf-trust-divider {
    width: 1px;
    height: clamp(14px, 3.6cqh, 22px);
    background: var(--accent-steel);
    opacity: 0.45;
  }

  /* Problem section — two-column, peeks at the bottom */
  .wf-problem {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(10px, 3cqh, 18px);
    padding: clamp(12px, 3cqh, 18px);
    margin: clamp(8px, 2cqh, 12px) clamp(8px, 2cqh, 12px) 0;
    flex: 0 0 auto;
    align-items: start;
  }
  .wf-problem-body {
    display: flex;
    flex-direction: column;
    gap: clamp(4px, 1.2cqh, 6px);
  }
  .wf-problem-label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(7px, 1.5cqh, 9px);
    color: var(--accent-steel);
    letter-spacing: 1.6px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: clamp(2px, 0.6cqh, 4px);
  }
  .wf-problem-headline-bar {
    height: clamp(10px, 2.3cqh, 13px);
    border: 1px solid var(--accent-steel);
    border-radius: 2px;
    width: 88%;
  }
  .wf-problem-body-line {
    height: clamp(4px, 1cqh, 6px);
    border: 1px solid var(--accent-steel);
    opacity: 0.55;
    border-radius: 2px;
    margin-top: clamp(3px, 0.8cqh, 5px);
  }
  .wf-problem-body-line.l1 { width: 100%; }
  .wf-problem-body-line.l2 { width: 92%; }
  .wf-problem-body-line.l3 { width: 80%; }
  .wf-problem-body-line.l4 { width: 88%; }

  .wf-problem-visual {
    position: relative;
    border: 1.25px dashed var(--accent-gold);
    border-radius: 3px;
    overflow: hidden;
    min-height: clamp(60px, 14cqh, 90px);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wf-problem-visual-cross {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .wf-problem-visual-cross line {
    stroke: var(--accent-gold);
    stroke-width: 1;
    opacity: 0.4;
  }
  .wf-problem-visual-label {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: clamp(6.5px, 1.4cqh, 8px);
    color: var(--accent-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--bg-card);
    padding: clamp(2px, 0.5cqh, 3px) clamp(4px, 1.2cqh, 6px);
  }

  /* Annotation — floating margin note */
  .wf-annotation {
    position: absolute;
    font-size: clamp(7px, 1.6cqh, 9px);
    color: var(--text-secondary);
    font-style: italic;
    font-family: 'Merriweather', serif;
    line-height: 1.4;
    padding: 4px 6px 4px 10px;
    border-left: 1.5px solid var(--accent-gold);
    max-width: 130px;
    background: var(--bg-card);
    border-radius: 0 3px 3px 0;
    box-shadow: 0 1px 4px rgba(24, 25, 26, 0.06);
  }
  .wf-annotation-1 {
    top: clamp(40px, 10cqh, 64px);
    right: -6px;
    z-index: 2;
  }

  /* ========== LAYER 3 — BRAND REPORT ========== */
  /* ========== LAYER 3 — BRAND REPORT ========== */
  .layer-report {
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    container-type: size;
    container-name: reportlayer;
    overflow: hidden;
  }

  /* Page header — section-number + section-label + h2 + gold rule (template signature) */
  .report-page-header {
    padding: clamp(14px, 3.5cqh, 26px) clamp(22px, 5.5cqh, 36px) clamp(8px, 2cqh, 14px);
    flex-shrink: 0;
    position: relative;
  }
  .report-section-number {
    font-family: 'Inter', sans-serif;
    font-size: clamp(7.5px, 1.6cqh, 9.5px);
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--accent-steel);
    display: block;
    margin-bottom: clamp(3px, 0.8cqh, 5px);
  }
  .report-section-label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(6.5px, 1.5cqh, 8.5px);
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-steel);
    display: block;
    margin-bottom: clamp(4px, 1.2cqh, 8px);
  }
  .report-h2 {
    font-family: 'Merriweather', serif;
    font-size: clamp(13px, 3cqh, 20px);
    font-weight: 400;
    letter-spacing: -0.3px;
    color: var(--text-primary);
    margin-bottom: clamp(6px, 1.5cqh, 10px);
    line-height: 1.2;
  }
  .report-gold-rule {
    width: clamp(24px, 6cqh, 40px);
    height: 1.5px;
    background: var(--accent-gold);
    border: none;
    margin: 0;
  }
  .report-page-num {
    position: absolute;
    top: clamp(14px, 3.5cqh, 26px);
    right: clamp(22px, 5.5cqh, 36px);
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: clamp(9px, 2cqh, 12px);
    color: var(--text-tertiary);
  }

  /* 2x2 grid of visual cells */
  .report-grid {
    flex: 1 1 auto;
    padding: 0 clamp(22px, 5.5cqh, 36px) clamp(10px, 2.5cqh, 16px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: clamp(10px, 2.5cqh, 18px);
    min-height: 0;
  }
  .report-cell {
    position: relative;
    background: var(--bg-white, #F8F9FA);
    border-radius: 4px;
    border: 0.5px solid var(--border-subtle);
    padding: clamp(8px, 2cqh, 14px) clamp(10px, 2.5cqh, 16px);
    display: flex;
    flex-direction: column;
    min-height: 0;
    min-width: 0;
    overflow: hidden;
  }
  .report-cell-label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(5.5px, 1.3cqh, 7.5px);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-steel);
    margin-bottom: clamp(4px, 1.2cqh, 8px);
    flex-shrink: 0;
  }

  /* ---- Cell 1: Trust Score ring ---- */
  .report-trust-body {
    flex: 1;
    display: flex;
    align-items: center;
    gap: clamp(8px, 2.2cqh, 14px);
    min-height: 0;
  }
  .report-trust-ring {
    position: relative;
    width: clamp(52px, 13cqh, 78px);
    height: clamp(52px, 13cqh, 78px);
    flex-shrink: 0;
  }
  .report-trust-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
  }
  .report-trust-ring-bg {
    fill: none;
    stroke: var(--border-subtle);
    stroke-width: 3;
  }
  .report-trust-ring-fill {
    fill: none;
    stroke: var(--brand-primary);
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 0.6s ease;
  }
  .report-trust-ring-number {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  .report-trust-ring-number .num {
    font-family: 'Merriweather', serif;
    font-size: clamp(14px, 3.4cqh, 22px);
    font-weight: 400;
    color: var(--brand-primary);
    letter-spacing: -0.5px;
  }
  .report-trust-ring-number .out-of {
    font-family: 'Inter', sans-serif;
    font-size: clamp(5px, 1.1cqh, 6.5px);
    color: var(--text-tertiary);
    letter-spacing: 0.5px;
    margin-top: 2px;
  }
  .report-trust-meta {
    display: flex;
    flex-direction: column;
    gap: clamp(3px, 0.8cqh, 5px);
    min-width: 0;
  }
  .report-trust-grade {
    font-family: 'Merriweather', serif;
    font-size: clamp(11px, 2.6cqh, 16px);
    color: var(--text-primary);
    letter-spacing: -0.2px;
    line-height: 1.1;
  }
  .report-trust-desc {
    font-family: 'Inter', sans-serif;
    font-size: clamp(6.5px, 1.4cqh, 8.5px);
    color: var(--text-secondary);
    line-height: 1.45;
  }

  /* ---- Cell 2: Quadrant chart ---- */
  .report-quadrant-chart {
    position: relative;
    flex: 1 1 auto;
    border-radius: 3px;
    border: 0.5px solid var(--border-subtle);
    background: var(--bg-card);
    overflow: hidden;
    min-height: 0;
  }
  .report-quadrant-grid {
    position: absolute;
    top: clamp(10px, 2.5cqh, 18px);
    right: clamp(8px, 2cqh, 14px);
    bottom: clamp(10px, 2.5cqh, 18px);
    left: clamp(14px, 3.5cqh, 24px);
  }
  .report-quadrant-axis-x,
  .report-quadrant-axis-y {
    position: absolute;
    background: var(--border-subtle);
  }
  .report-quadrant-axis-x {
    left: 0; right: 0; top: 50%;
    height: 0.5px;
  }
  .report-quadrant-axis-y {
    top: 0; bottom: 0; left: 50%;
    width: 0.5px;
  }
  .report-quadrant-label {
    position: absolute;
    font-family: 'Inter', sans-serif;
    font-size: clamp(4.5px, 1cqh, 6.5px);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-tertiary);
    opacity: 0.6;
    white-space: nowrap;
  }
  .report-quadrant-label.top-right { top: 3px; right: 3px; }
  .report-quadrant-label.top-left { top: 3px; left: 3px; }
  .report-quadrant-label.bottom-right { bottom: 3px; right: 3px; }
  .report-quadrant-label.bottom-left { bottom: 3px; left: 3px; }
  .report-quadrant-target-zone {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 46%;
    height: 46%;
    border: 1px dashed var(--accent-gold);
    border-radius: 2px;
    opacity: 0.5;
  }
  .report-quadrant-dot {
    position: absolute;
    width: clamp(5px, 1.3cqh, 8px);
    height: clamp(5px, 1.3cqh, 8px);
    border-radius: 50%;
    transform: translate(-50%, 50%);
    z-index: 2;
  }
  .report-quadrant-dot.comp-dot {
    background: var(--accent-steel);
    opacity: 0.75;
  }
  .report-quadrant-dot.client-dot {
    width: clamp(7px, 1.8cqh, 11px);
    height: clamp(7px, 1.8cqh, 11px);
    background: var(--brand-primary);
    box-shadow: 0 0 0 2px rgba(47, 111, 163, 0.18);
    z-index: 3;
  }

  /* ---- Cell 3: Score bars ---- */
  .report-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: clamp(4px, 1cqh, 7px);
    min-height: 0;
    padding-top: 2px;
  }
  .report-bar-row {
    display: grid;
    grid-template-columns: 1fr clamp(40px, 10cqh, 64px) clamp(14px, 3cqh, 20px);
    gap: clamp(5px, 1.4cqh, 8px);
    align-items: center;
  }
  .report-bar-label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(6px, 1.3cqh, 8px);
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .report-bar-track {
    height: clamp(4px, 1cqh, 6px);
    background: var(--border-subtle);
    border-radius: 2px;
    overflow: hidden;
  }
  .report-bar-fill {
    height: 100%;
    background: var(--brand-primary);
    border-radius: 2px;
  }
  .report-bar-fill.mid {
    background: var(--accent-gold);
  }
  .report-bar-fill.low {
    background: var(--accent-steel);
    opacity: 0.7;
  }
  .report-bar-value {
    font-family: 'Merriweather', serif;
    font-size: clamp(6.5px, 1.4cqh, 8.5px);
    color: var(--text-secondary);
    text-align: right;
    font-weight: 400;
  }

  /* ---- Cell 4: 90-day timeline ---- */
  .report-timeline {
    flex: 1;
    display: flex;
    align-items: stretch;
    gap: clamp(3px, 0.8cqh, 5px);
    min-height: 0;
  }
  .report-timeline-phase {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(3px, 0.8cqh, 5px);
    justify-content: center;
    min-width: 0;
  }
  .report-timeline-days {
    font-family: 'Inter', sans-serif;
    font-size: clamp(5px, 1.1cqh, 6.5px);
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-tertiary);
  }
  .report-timeline-bar {
    height: clamp(5px, 1.4cqh, 8px);
    border-radius: 2px;
  }
  .report-timeline-phase.phase-1 .report-timeline-bar {
    background: var(--brand-primary);
  }
  .report-timeline-phase.phase-2 .report-timeline-bar {
    background: var(--accent-gold);
  }
  .report-timeline-phase.phase-3 .report-timeline-bar {
    background: var(--accent-steel);
  }
  .report-timeline-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(7.5px, 1.7cqh, 10px);
    color: var(--text-primary);
    letter-spacing: -0.1px;
    line-height: 1.2;
  }

  /* Page footer strip */
  .report-page-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(8px, 1.8cqh, 12px) clamp(22px, 5.5cqh, 36px);
    border-top: 0.5px solid var(--border-subtle);
    flex-shrink: 0;
  }
  .report-footer-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(6px, 1.3cqh, 8px);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-tertiary);
  }
  .report-footer-page {
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: clamp(6.5px, 1.4cqh, 8.5px);
    color: var(--text-tertiary);
  }


  /* ========== LAYER 4 — FOUNDATION ========== */
  /* ========== LAYER 4 — FOUNDATION ========== */
  .layer-foundation {
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    container-type: size;
    container-name: foundlayer;
    overflow: hidden;
  }

  .found-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: clamp(14px, 3.5cqh, 24px) clamp(22px, 5.5cqh, 32px) clamp(10px, 2.4cqh, 14px);
    border-bottom: 1px solid var(--border-subtle);
    flex-shrink: 0;
  }
  .found-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(12px, 2.8cqh, 16px);
    letter-spacing: -0.2px;
    color: var(--text-primary);
  }
  .found-tag {
    font-family: 'Inter', sans-serif;
    font-size: clamp(7px, 1.6cqh, 9px);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-steel);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: clamp(4px, 1cqh, 6px);
  }
  .found-tag-dot {
    width: clamp(4px, 1cqh, 6px);
    height: clamp(4px, 1cqh, 6px);
    border-radius: 50%;
    background: #3BA776;
    box-shadow: 0 0 0 2px rgba(59, 167, 118, 0.22);
    animation: foundPulse 2s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
  }
  @keyframes foundPulse {
    0%, 100% { box-shadow: 0 0 0 2px rgba(59, 167, 118, 0.22); }
    50% { box-shadow: 0 0 0 5px rgba(59, 167, 118, 0.08); }
  }

  /* Main body — flex so uptime strip anchors at bottom */
  .found-body {
    flex: 1 1 auto;
    padding: clamp(12px, 3cqh, 20px) clamp(22px, 5.5cqh, 32px) 0;
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 2.5cqh, 18px);
    min-height: 0;
  }

  /* Compact Lighthouse rings in a row */
  .found-rings {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(8px, 2cqh, 14px);
    padding: clamp(10px, 2.5cqh, 16px) clamp(6px, 1.5cqh, 10px);
    background: rgba(228, 233, 237, 0.4);
    border-radius: 8px;
    flex-shrink: 0;
  }
  .found-ring-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(4px, 1cqh, 7px);
  }
  .found-ring {
    position: relative;
    width: clamp(42px, 10cqh, 58px);
    height: clamp(42px, 10cqh, 58px);
  }
  .found-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
  }
  .found-ring-track {
    fill: none;
    stroke: var(--border-subtle);
    stroke-width: 4;
  }
  .found-ring-fill {
    fill: none;
    stroke: var(--brand-primary);
    stroke-width: 4;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  .found-ring-num {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Merriweather', serif;
    font-size: clamp(10px, 2.4cqh, 14px);
    color: var(--text-primary);
  }
  .found-ring-label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(6.5px, 1.5cqh, 8.5px);
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: clamp(3px, 0.7cqh, 4px);
    white-space: nowrap;
  }
  .found-ring-live-dot {
    width: clamp(3px, 0.7cqh, 4.5px);
    height: clamp(3px, 0.7cqh, 4.5px);
    border-radius: 50%;
    background: #3BA776;
    flex-shrink: 0;
    animation: foundPulse 2s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
  }

  /* Foundation pillars: grouped categories */
  .found-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(8px, 2cqh, 14px);
    flex: 1 1 auto;
    min-height: 0;
  }
  .found-pillar {
    padding: clamp(9px, 2.2cqh, 14px) clamp(10px, 2.5cqh, 16px);
    background: rgba(228, 233, 237, 0.3);
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    min-width: 0;
  }
  .found-pillar-head {
    display: flex;
    align-items: center;
    gap: clamp(5px, 1.4cqh, 8px);
    margin-bottom: clamp(6px, 1.6cqh, 10px);
    padding-bottom: clamp(5px, 1.3cqh, 8px);
    border-bottom: 1px solid var(--border-light);
  }
  .found-pillar-icon {
    width: clamp(16px, 3.8cqh, 22px);
    height: clamp(16px, 3.8cqh, 22px);
    border-radius: 4px;
    background: rgba(47, 111, 163, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    flex-shrink: 0;
  }
  .found-pillar-icon svg {
    width: clamp(9px, 2.1cqh, 12px);
    height: clamp(9px, 2.1cqh, 12px);
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .found-pillar-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(9px, 2.1cqh, 12px);
    color: var(--text-primary);
    letter-spacing: -0.1px;
  }
  .found-pillar-items {
    display: flex;
    flex-direction: column;
    gap: clamp(4px, 1.1cqh, 7px);
  }
  .found-pillar-item {
    display: flex;
    align-items: center;
    gap: clamp(4px, 1.1cqh, 7px);
    font-family: 'Inter', sans-serif;
    font-size: clamp(7.5px, 1.7cqh, 9.5px);
    color: var(--text-secondary);
    line-height: 1.3;
  }
  .found-check {
    width: clamp(8px, 1.9cqh, 11px);
    height: clamp(8px, 1.9cqh, 11px);
    border-radius: 50%;
    background: rgba(47, 111, 163, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .found-check svg {
    width: clamp(5px, 1.2cqh, 7px);
    height: clamp(5px, 1.2cqh, 7px);
    stroke: var(--brand-primary);
    stroke-width: 2.5;
    fill: none;
  }

  /* Uptime strip — anchors at bottom, reinforces "foundation" metaphor */
  .found-uptime {
    padding: clamp(10px, 2.5cqh, 16px) clamp(22px, 5.5cqh, 32px) clamp(12px, 2.8cqh, 18px);
    background: rgba(228, 233, 237, 0.55);
    border-top: 1px solid var(--border-subtle);
    flex-shrink: 0;
  }
  .found-uptime-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: clamp(6px, 1.5cqh, 9px);
    gap: 8px;
  }
  .found-uptime-label {
    font-family: 'Inter', sans-serif;
    font-size: clamp(6.5px, 1.4cqh, 8.5px);
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--text-tertiary);
    white-space: nowrap;
  }
  .found-uptime-pct {
    font-family: 'Merriweather', serif;
    font-size: clamp(10px, 2.3cqh, 13px);
    color: var(--text-primary);
    letter-spacing: -0.2px;
  }
  .found-uptime-pct em {
    font-style: normal;
    color: var(--brand-primary);
  }
  .found-uptime-status {
    font-family: 'Inter', sans-serif;
    font-size: clamp(6.5px, 1.4cqh, 8.5px);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #3BA776;
    display: flex;
    align-items: center;
    gap: clamp(3px, 0.8cqh, 5px);
    white-space: nowrap;
  }
  .found-uptime-status-dot {
    width: clamp(5px, 1.1cqh, 7px);
    height: clamp(5px, 1.1cqh, 7px);
    border-radius: 50%;
    background: #3BA776;
    box-shadow: 0 0 0 2px rgba(59, 167, 118, 0.22);
    animation: foundPulse 2s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
  }

  /* The strip itself — 30 vertical segments */
  .found-uptime-strip {
    display: grid;
    grid-template-columns: repeat(30, 1fr);
    gap: clamp(1.5px, 0.4cqh, 2.5px);
    height: clamp(12px, 3cqh, 18px);
  }
  .found-uptime-seg {
    background: #3BA776;
    border-radius: 1.5px;
    opacity: 0.85;
  }
  .found-uptime-seg.dim {
    opacity: 0.5;
  }

  /* Bottom caption under strip */
  .found-uptime-range {
    display: flex;
    justify-content: space-between;
    margin-top: clamp(5px, 1.2cqh, 7px);
    font-family: 'Inter', sans-serif;
    font-size: clamp(5.5px, 1.2cqh, 7px);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-tertiary);
  }

  /* ========== CONTROLS ========== */
  .stack-controls {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%) scale(1);
    transform-origin: right center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 20;
    align-items: center;
  }

  .stack-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
  }
  .stack-btn:hover:not(:disabled) {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(47, 111, 163, 0.15);
  }
  .stack-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }
  .stack-btn svg {
    width: 14px; height: 14px;
  }
  .stack-btn.btn-overview {
    margin-top: 12px;
    border-color: var(--border-subtle);
  }
  .stack-btn.btn-overview.active {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: var(--bg-card);
  }
  .stack-btn.btn-overview svg { width: 15px; height: 15px; }

  .stack-indicator {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    min-height: 18px;
    transition: opacity 0.4s ease;
  }
  .stack-indicator-num {
    font-family: 'Merriweather', serif;
    font-size: 12px;
    color: var(--text-secondary);
    font-style: italic;
  }

  .stack-caption {
    position: absolute;
    left: 0;
    bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: opacity 0.4s ease;
    transform: scale(1);
    transform-origin: left bottom;
    z-index: 20;
  }
  .stack-caption-num {
    color: var(--accent-gold);
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
  }
  .stack-caption-label {
    color: var(--text-secondary);
    transition: opacity 0.5s ease;
  }

  /* Overview caption — shown only in iso mode */
  .overview-caption {
    position: absolute;
    left: 0;
    bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-secondary);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    transform: scale(1);
    transform-origin: left bottom;
    z-index: 20;
  }
  .overview-caption-num {
    color: var(--accent-gold);
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
  }

  /* Show/hide captions based on mode */
  .stack[data-mode="iso"] ~ .stack-caption { opacity: 0; }
  .stack[data-mode="iso"] ~ .overview-caption { opacity: 1; }

  /* Iso-mode hint pulse on arrow */
  @keyframes pulseHint {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(2px); }
  }
  .stack-btn.hint {
    animation: pulseHint 1.6s ease-in-out infinite;
    border-color: var(--brand-primary);
    color: var(--brand-primary);
  }

  /* ========== ANIMATIONS ========== */
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    to { opacity: 1; }
  }
  @keyframes drawLine {
    to { width: 44px; }
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.2s !important;
    }
    .layer, .stack {
      transition: opacity 0.2s !important;
    }
    .stack[data-mode="iso"] { transform: none; }
    .stack[data-mode="iso"] .layer { animation: none; }
  }

  /* ========== MOBILE ========== */
  @media (max-width: 900px) {
    .nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .page-main { padding: 110px 24px 64px; }
    .contact-grid { grid-template-columns: 1fr; }
    .hero { padding: 100px 24px 60px; }
    .hero-grid {
      display: flex;
      flex-direction: column;
      gap: 120px;
    }
    .hero-content { max-width: 100%; }
    .hero-content::before { display: none; }
    .hero-visual {
      position: relative;
      top: auto;
      right: auto;
      transform: none;
      width: 100%;
      height: 440px;
    }
    .stack[data-mode="iso"] {
      transform: rotateX(36deg) rotateZ(-18deg);
    }
    .stack-controls {
      right: auto;
      left: 50%;
      top: auto;
      bottom: -72px;
      transform: translateX(-50%);
      flex-direction: row;
    }
    .stack-controls .stack-btn.btn-overview { margin-top: 0; margin-left: 4px; }
    .stack-indicator {
      margin-top: 0;
      margin-left: 10px;
      flex-direction: row;
      align-items: center;
      gap: 8px;
    }
    .stack-caption, .overview-caption {
      transform: translateX(-50%) scale(1);
      left: 50%;
      bottom: -120px;
      white-space: nowrap;
    }
    .hero { padding-bottom: 180px; }
    .found-rings { gap: 6px; }
    .found-pillars { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  }

  /* ==========================================================
     PROBLEM SECTION — "What's actually happening"
     ========================================================== */

  .problem {
    padding: 80px 48px 100px;
    background: var(--bg-main);
    position: relative;
  }

  .problem-inner {
    max-width: 1320px;
    margin: 0 auto;
  }

  /* ---- Section header ---- */
  .problem-header {
    max-width: 720px;
    margin-bottom: 96px;
  }

  .problem-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--accent-steel);
    margin-bottom: 28px;
  }
  .problem-label::after {
    content: '';
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--accent-gold);
    margin-top: 16px;
  }

  .problem-headline {
    font-family: 'Merriweather', serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 28px;
  }
  .problem-headline em {
    font-style: italic;
    color: var(--text-primary);
  }

  .problem-support {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 620px;
  }

  /* ---- Hero visual: the phone ---- */
  .visual-hero {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 56px;
    margin-bottom: 120px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Left/right annotation columns */
  .phone-annotations {
    display: flex;
    flex-direction: column;
    gap: 44px;
  }
  .phone-annotations.left { align-items: flex-end; text-align: right; }
  .phone-annotations.right { align-items: flex-start; text-align: left; }

  .phone-ann {
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    max-width: 220px;
  }
  .phone-ann.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .phone-ann-time {
    font-family: 'Merriweather', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    line-height: 1;
    margin-bottom: 8px;
  }
  .phone-ann-time sup {
    font-size: 14px;
    color: var(--text-tertiary);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    margin-left: 2px;
    vertical-align: super;
  }
  .phone-ann-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
  }
  .phone-ann-text strong {
    color: var(--text-primary);
    font-weight: 500;
  }

  /* Small connector line from annotation toward the phone */
  .phone-annotations.left .phone-ann::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--border-subtle);
    margin-top: 14px;
    margin-left: auto;
    margin-right: -40px;
  }
  .phone-annotations.right .phone-ann::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--border-subtle);
    margin-bottom: 14px;
    margin-left: -40px;
  }

  /* Phone frame */
  .phone-frame {
    position: relative;
    width: 280px;
    height: 560px;
    background: #18191A;
    border-radius: 42px;
    padding: 10px;
    box-shadow:
      0 40px 80px -20px rgba(24, 25, 26, 0.18),
      0 12px 24px -8px rgba(24, 25, 26, 0.12),
      inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    flex-shrink: 0;
  }

  .phone-notch {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 22px;
    background: #18191A;
    border-radius: 14px;
    z-index: 3;
  }

  .phone-screen {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  /* Browser chrome inside phone */
  .phone-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 40px 14px 10px;
    background: #F4F4F6;
    border-bottom: 1px solid #E8E8ED;
    flex-shrink: 0;
  }
  .phone-browser-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D1D1D6;
    flex-shrink: 0;
  }
  .phone-browser-url {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: #6B6B70;
    background: #FFFFFF;
    border-radius: 6px;
    padding: 5px 10px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
  }
  /* Thin loading progress inside URL bar */
  .phone-browser-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1.5px;
    width: 0;
    background: #2F6FA3;
    border-radius: 0 1px 1px 0;
  }
  .phone-browser-progress.playing {
    animation: phoneProgress 4.2s linear forwards;
  }
  @keyframes phoneProgress {
    0%   { width: 0; }
    24%  { width: 18%; }   /* 1.0s */
    48%  { width: 42%; }   /* 2.0s */
    71%  { width: 68%; }   /* 3.0s */
    95%  { width: 92%; }   /* 4.0s */
    100% { width: 100%; }  /* 4.2s */
  }

  /* Phone content — blank/loading state vs. resolved state */
  .phone-content {
    flex: 1;
    position: relative;
    background: #FFFFFF;
    overflow: hidden;
  }

  /* Blank loading overlay */
  .phone-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 2;
  }
  .phone-loading.hidden { opacity: 0; pointer-events: none; }

  .phone-spinner {
    width: 24px;
    height: 24px;
    border: 2px solid #E8E8ED;
    border-top-color: #8E9499;
    border-radius: 50%;
    animation: phoneSpin 0.9s linear infinite;
  }
  @keyframes phoneSpin {
    to { transform: rotate(360deg); }
  }

  /* Resolved mock site */
  .phone-site {
    position: absolute;
    inset: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .phone-site.visible { opacity: 1; }
  .phone-site-logo {
    font-family: 'Merriweather', serif;
    font-size: 13px;
    color: #18191A;
    font-weight: 700;
    letter-spacing: -0.2px;
  }
  .phone-site-hero {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .phone-site-line {
    height: 8px;
    background: #E8E8ED;
    border-radius: 2px;
  }
  .phone-site-line.w70 { width: 70%; }
  .phone-site-line.w90 { width: 90%; }
  .phone-site-line.w55 { width: 55%; }
  .phone-site-btn {
    margin-top: 16px;
    width: 90px;
    height: 22px;
    background: #2F6FA3;
    border-radius: 4px;
  }
  .phone-site-img {
    margin-top: 16px;
    height: 80px;
    background: linear-gradient(135deg, #E4E9ED, #D8DEE3);
    border-radius: 4px;
  }
  .phone-site-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .phone-site-footer-line {
    height: 5px;
    background: #EDEBE3;
    border-radius: 2px;
  }

  /* Replay button */
  .phone-replay {
    position: absolute;
    bottom: -52px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 8px 12px;
    transition: color 0.2s ease;
  }
  .phone-replay:hover { color: var(--text-secondary); }
  .phone-replay svg { transition: transform 0.4s ease; }
  .phone-replay:hover svg { transform: rotate(-90deg); }

  /* Caption under the phone visual */
  .visual-hero-caption {
    max-width: 720px;
    margin: 40px auto 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-tertiary);
    font-style: italic;
  }

  .visual-hero-counterpoint {
    max-width: 720px;
    margin: 16px auto 0;
    text-align: center;
    font-family: 'Merriweather', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.5;
    color: var(--text-primary);
    letter-spacing: -0.1px;
    position: relative;
    padding-top: 16px;
  }
  .visual-hero-counterpoint::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 1px;
    background: var(--accent-gold);
  }

  /* ---- Flanking visuals ---- */
  .flanking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 0;
  }

  .flanking-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 44px 40px 36px;
    display: flex;
    flex-direction: column;
  }

  .flanking-marker {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-steel);
    margin-bottom: 20px;
  }

  .flanking-title {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--text-primary);
    margin-bottom: 28px;
    letter-spacing: -0.2px;
  }

  /* Visual 1: scatter distribution */
  .scatter-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
    margin-bottom: 24px;
  }
  .scatter-svg {
    width: 100%;
    height: auto;
    max-height: 200px;
    display: block;
  }

  /* Visual 1 (v4): platform comparison bars */
  .platform-bars-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
    margin-bottom: 24px;
  }
  .platform-bars-svg {
    width: 100%;
    height: auto;
    max-height: 360px;
    display: block;
  }

  /* Visual 3: copy dissection */
  .dissect-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
    margin-bottom: 24px;
  }

  /* Each Before/After block */
  .dissect-block {
    padding: 4px 0;
  }

  /* Small label row at the top of each block */
  .dissect-block-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .dissect-block-tag {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 3px;
    background: #F2E4D9;
    color: #A36B3F;
  }
  .dissect-block-tag-good {
    background: var(--brand-primary);
    color: #FFFFFF;
  }
  .dissect-block-source {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--text-tertiary);
    letter-spacing: 0.2px;
  }

  /* Divider between Before and After */
  .dissect-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 28px 0 24px;
  }
  .dissect-divider::before,
  .dissect-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
  }
  .dissect-divider span {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--accent-steel);
  }

  .dissect-headline {
    font-family: 'Merriweather', serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-primary);
    letter-spacing: -0.1px;
    text-align: center;
    padding: 8px 0 0;
  }
  .dissect-headline .dw-weak {
    color: var(--text-primary);
    background-image: linear-gradient(to bottom, transparent 85%, rgba(207, 175, 122, 0.55) 85%, rgba(207, 175, 122, 0.55) 100%);
    padding: 0 1px;
  }
  /* "Good" highlight: brand blue underline */
  .dissect-headline .dw-good {
    color: var(--text-primary);
    background-image: linear-gradient(to bottom, transparent 85%, rgba(47, 111, 163, 0.45) 85%, rgba(47, 111, 163, 0.45) 100%);
    padding: 0 1px;
  }

  .dissect-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
    position: relative;
  }
  .dissect-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
  }
  /* Thin vertical connector from the underlined word down to the annotation */
  .dissect-col::before {
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    background: var(--accent-gold);
    opacity: 0.55;
    margin-bottom: 10px;
  }
  /* Good variant — connector in brand blue */
  .dissect-columns-good .dissect-col::before {
    background: var(--brand-primary);
    opacity: 0.45;
  }
  .dissect-col-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    line-height: 1.45;
    color: var(--text-secondary);
    font-style: italic;
    max-width: 140px;
  }

  /* Chart eyebrow — names the metric, explains why */
  .chart-eyebrow {
    margin: 4px 0 24px;
    padding: 14px 16px;
    background: rgba(228, 233, 237, 0.55);
    border-left: 2px solid var(--accent-gold);
    border-radius: 0 2px 2px 0;
  }
  .chart-eyebrow-metric {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 6px;
  }
  .chart-eyebrow-note {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-secondary);
  }

  /* One-line takeaway under the chart */
  .chart-takeaway {
    font-family: 'Merriweather', serif;
    font-size: 15px;
    font-style: italic;
    line-height: 1.55;
    color: var(--text-primary);
    margin: 8px 0 24px;
    letter-spacing: -0.1px;
  }

  /* Caption under flanking visuals */
  .flanking-caption {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-tertiary);
    border-top: 1px solid var(--border-subtle);
    padding-top: 20px;
  }
  .flanking-caption-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 500;
    margin-top: 4px;
    transition: color 0.2s ease;
  }
  .flanking-caption-link:hover { color: var(--brand-hover); }
  .flanking-caption-link svg { transition: transform 0.2s ease; }
  .flanking-caption-link:hover svg { transform: translateX(2px); }

  /* ---- Closing transition line ---- */
  .problem-close {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
  }
  .problem-close-text {
    font-family: 'Merriweather', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.3px;
    color: var(--text-primary);
  }
  .problem-close-text em {
    color: var(--brand-primary);
    font-style: italic;
  }

  /* ---- Responsive ---- */
  @media (max-width: 1024px) {
    .visual-hero {
      grid-template-columns: 1fr;
      gap: 40px;
      justify-items: center;
    }
    .phone-annotations {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px 32px;
      max-width: 560px;
    }
    .phone-annotations.left { align-items: center; text-align: center; order: 2; }
    .phone-annotations.right { align-items: center; text-align: center; order: 3; }
    .phone-frame { order: 1; }
    .phone-annotations.left .phone-ann::after,
    .phone-annotations.right .phone-ann::before { display: none; }
    .phone-ann { max-width: 160px; }
    .flanking-grid { grid-template-columns: 1fr; gap: 32px; }
  }

  @media (max-width: 640px) {
    .problem { padding: 80px 24px 100px; }
    .problem-headline { font-size: 36px; }
    .problem-header { margin-bottom: 64px; }
    .visual-hero { margin-bottom: 80px; }
    .flanking-grid { margin-bottom: 0; }
    .flanking-card { padding: 32px 24px 28px; }
    .flanking-title { font-size: 21px; }
    .problem-close-text { font-size: 24px; }
    .dissect-headline { font-size: 16px; }
    .dissect-columns { grid-template-columns: 1fr; gap: 14px; }
    .dissect-col::before { height: 14px; margin-bottom: 6px; }
  }

  @media (prefers-reduced-motion: reduce) {
    .phone-ann { opacity: 1; transform: none; transition: none; }
    .phone-browser-progress.playing { animation: none; width: 100%; }
    .phone-spinner { animation: none; }
    .phone-loading { opacity: 0; }
    .phone-site { opacity: 1; }
  }

  /* ==========================================================
     SYSTEM SECTION — "The three deliverables"
     ========================================================== */

  .system {
    padding: 80px 48px 80px;
    background: var(--bg-main);
    position: relative;
  }

  .system-inner {
    max-width: 1320px;
    margin: 0 auto;
  }

  /* ---- Section header ---- */
  .system-header {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
  }

  .system-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--accent-steel);
    margin-bottom: 28px;
    display: inline-block;
  }
  .system-label::after {
    content: '';
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--accent-gold);
    margin: 16px auto 0;
  }

  .system-headline {
    font-family: 'Merriweather', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    margin-bottom: 32px;
  }
  .system-headline em {
    font-style: italic;
  }

  .system-support {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
  }

  /* ---- Deliverables overview (three-up summary) ---- */
  .deliverables-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
  }

  .deliverable-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
  }
  .deliverable-card:hover {
    border-color: var(--accent-steel);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 25, 26, 0.06);
  }

  .dc-marker {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 22px;
    padding-left: 36px;
    position: relative;
  }
  .dc-marker::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 24px;
    height: 1px;
    background: var(--accent-gold);
  }
  .dc-marker-num {
    font-family: 'Merriweather', serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1;
    color: var(--brand-primary);
    letter-spacing: -1px;
  }
  .dc-marker-phase {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-steel);
  }

  .dc-title {
    font-family: 'Merriweather', serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.2px;
    color: var(--text-primary);
    margin-bottom: 16px;
  }

  .dc-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 22px;
    flex: 1;
  }

  .dc-spec {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 14px;
    background: rgba(228, 233, 237, 0.55);
    border-left: 2px solid var(--accent-gold);
    border-radius: 0 2px 2px 0;
    margin-bottom: 22px;
  }
  .dc-spec-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
  }
  .dc-spec-label {
    color: var(--text-tertiary);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 10px;
  }
  .dc-spec-value {
    color: var(--text-primary);
    font-weight: 500;
    text-align: right;
  }

  .dc-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease, color 0.2s ease;
  }
  .deliverable-card:hover .dc-link {
    color: var(--brand-hover);
    gap: 10px;
  }
  .dc-link svg { transition: transform 0.2s ease; }
  .deliverable-card:hover .dc-link svg { transform: translateX(2px); }

  /* ---- Bridge between overview and deep-dive sections ---- */
  .deliverables-bridge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto 96px;
  }
  .deliverables-bridge-line {
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
    max-width: 200px;
  }
  .deliverables-bridge-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-steel);
  }

  /* ---- Deliverable rows ---- */
  .deliverable {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
    max-width: 1180px;
    margin: 0 auto 140px;
  }
  .deliverable:last-child { margin-bottom: 0; }

  /* Alternating visual/copy order */
  .deliverable.visual-left .deliverable-visual { order: 1; }
  .deliverable.visual-left .deliverable-copy { order: 2; }
  .deliverable.visual-right .deliverable-visual { order: 2; }
  .deliverable.visual-right .deliverable-copy { order: 1; }

  .deliverable-copy {
    max-width: 460px;
  }

  .deliverable-marker {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-steel);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .deliverable-marker::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--accent-gold);
  }

  .deliverable-title {
    font-family: 'Merriweather', serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.3px;
    color: var(--text-primary);
    margin-bottom: 24px;
  }

  .deliverable-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 20px;
  }
  .deliverable-text:last-child { margin-bottom: 0; }
  .deliverable-text strong {
    color: var(--text-primary);
    font-weight: 500;
  }

  .deliverable-kicker {
    font-family: 'Merriweather', serif;
    font-size: 15px;
    font-style: italic;
    line-height: 1.55;
    color: var(--text-primary);
    letter-spacing: -0.1px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    margin-top: 28px;
  }

  /* ==========================================================
     VISUAL 1 — BRAND REPORT PDF
     ========================================================== */
  .deliverable-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 440px;
  }

  .report-stack {
    position: relative;
    width: 320px;
    height: 420px;
  }

  /* Two back pages fanning out */
  .report-page-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(24, 25, 26, 0.04);
  }
  .report-page-back.layer-2 {
    transform: rotate(2.5deg) translate(10px, 6px);
    background: #EDEFF2;
    z-index: 1;
  }
  .report-page-back.layer-3 {
    transform: rotate(5deg) translate(18px, 12px);
    background: #E8ECF0;
    z-index: 0;
  }

  .report-cover {
    position: relative;
    width: 100%;
    height: 100%;
    background: #FDFCF9;
    border: 1px solid var(--border-subtle);
    border-radius: 3px;
    box-shadow:
      0 16px 40px -8px rgba(24, 25, 26, 0.12),
      0 4px 12px -2px rgba(24, 25, 26, 0.06);
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    z-index: 2;
  }

  .report-cover-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--accent-steel);
    margin-bottom: 20px;
  }

  .report-cover-title {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    margin-bottom: 12px;
  }

  .report-cover-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-tertiary);
    font-style: italic;
    margin-bottom: 32px;
  }

  .report-cover-gold {
    width: 40px;
    height: 1.5px;
    background: var(--accent-gold);
    margin-bottom: 28px;
  }

  .report-cover-contents-label {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 14px;
  }

  .report-cover-contents {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .report-toc-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--text-secondary);
  }
  .report-toc-num {
    color: var(--text-tertiary);
    font-weight: 500;
    min-width: 14px;
  }
  .report-toc-dots {
    flex: 1;
    border-bottom: 1px dotted var(--border-subtle);
    transform: translateY(-3px);
  }
  .report-toc-page {
    color: var(--text-tertiary);
    font-size: 10px;
  }

  .report-cover-footer {
    margin-top: auto;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    color: var(--text-tertiary);
    letter-spacing: 0.3px;
    display: flex;
    justify-content: space-between;
  }

  /* Floating annotations around the report */
  .report-annotation {
    position: absolute;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-style: italic;
    color: var(--text-secondary);
    background: var(--bg-main);
    padding: 6px 12px;
    border: 1px solid var(--border-subtle);
    border-radius: 2px;
    white-space: nowrap;
    z-index: 3;
  }
  .report-annotation::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 1px;
    background: var(--accent-gold);
  }
  .report-ann-1 {
    top: 40px;
    right: -60px;
  }
  .report-ann-1::before { left: -24px; top: 50%; }
  .report-ann-2 {
    top: 50%;
    right: -60px;
  }
  .report-ann-2::before { left: -24px; top: 50%; }
  .report-ann-3 {
    bottom: 50px;
    right: -60px;
  }
  .report-ann-3::before { left: -24px; top: 50%; }

  /* ==========================================================
     VISUAL 2 — WEBSITE ANATOMY
     ========================================================== */
  .anatomy-frame {
    width: 380px;
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    box-shadow:
      0 20px 48px -10px rgba(24, 25, 26, 0.12),
      0 4px 12px -2px rgba(24, 25, 26, 0.06);
    position: relative;
  }

  .anatomy-browser {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #F4F4F6;
    border-bottom: 1px solid var(--border-subtle);
  }
  .anatomy-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1D1D6;
  }

  .anatomy-stack {
    display: flex;
    flex-direction: column;
  }

  .anatomy-section {
    position: relative;
    padding: 20px 24px;
    border-bottom: 1px dashed #E8E8ED;
  }
  .anatomy-section:last-child { border-bottom: none; }

  .anatomy-section-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .anatomy-line {
    height: 6px;
    background: #E8E8ED;
    border-radius: 2px;
  }
  .anatomy-line.dark { background: #C9CCD1; }
  .anatomy-line.w90 { width: 90%; }
  .anatomy-line.w75 { width: 75%; }
  .anatomy-line.w55 { width: 55%; }
  .anatomy-line.w40 { width: 40%; }
  .anatomy-btn {
    width: 80px;
    height: 18px;
    background: var(--brand-primary);
    border-radius: 3px;
    margin-top: 4px;
  }
  .anatomy-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4px;
    margin-top: 4px;
  }
  .anatomy-tile {
    height: 28px;
    background: linear-gradient(135deg, #E4E9ED, #D8DEE3);
    border-radius: 2px;
  }
  .anatomy-quote {
    height: 36px;
    background: var(--bg-card);
    border-left: 2px solid var(--accent-gold);
    border-radius: 0 2px 2px 0;
    margin-top: 4px;
    display: flex;
    align-items: center;
    padding: 0 10px;
  }
  .anatomy-quote-line {
    height: 4px;
    width: 70%;
    background: #E8E8ED;
    border-radius: 2px;
  }

  /* Anatomy section label — appears to the right of each section */
  .anatomy-section-label {
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--text-secondary);
    white-space: nowrap;
    padding: 4px 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 2px;
  }
  .anatomy-section-label::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    width: 12px;
    height: 1px;
    background: var(--accent-gold);
  }

  /* ==========================================================
     VISUAL 3 — WEBSITE REPORT (ANNOTATED SECTION)
     ========================================================== */
  .annot-report {
    width: 420px;
    background: #FDFCF9;
    border: 1px solid var(--border-subtle);
    border-radius: 3px;
    box-shadow:
      0 16px 40px -8px rgba(24, 25, 26, 0.12),
      0 4px 12px -2px rgba(24, 25, 26, 0.06);
    padding: 32px 28px;
    position: relative;
  }

  .annot-report-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 20px;
  }
  .annot-report-title {
    font-family: 'Merriweather', serif;
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 400;
  }
  .annot-report-page {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    color: var(--text-tertiary);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .annot-section-heading {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-steel);
    margin-bottom: 14px;
  }

  /* The mini rendered website section */
  .annot-body {
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 16px;
    align-items: start;
  }

  .annot-preview {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: 3px;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
  }
  .annot-preview-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--accent-steel);
  }
  .annot-preview-headline {
    font-family: 'Merriweather', serif;
    font-size: 11px;
    line-height: 1.3;
    color: var(--text-primary);
    letter-spacing: -0.1px;
  }
  .annot-preview-line {
    height: 4px;
    background: #E8E8ED;
    border-radius: 1px;
  }
  .annot-preview-line.w80 { width: 80%; }
  .annot-preview-line.w60 { width: 60%; }
  .annot-preview-btn {
    width: 60px;
    height: 14px;
    background: var(--brand-primary);
    border-radius: 2px;
    margin-top: 2px;
  }

  /* Annotation column */
  .annot-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 4px;
  }
  .annot-item {
    position: relative;
    padding-left: 12px;
  }
  .annot-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 1px;
    background: var(--accent-gold);
  }
  .annot-item-label {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 3px;
  }
  .annot-item-text {
    font-family: 'Inter', sans-serif;
    font-size: 9.5px;
    line-height: 1.5;
    color: var(--text-secondary);
    font-style: italic;
  }

  .annot-report-footer {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    color: var(--text-tertiary);
    display: flex;
    justify-content: space-between;
    letter-spacing: 0.3px;
  }

  /* ==========================================================
     SYSTEM CLOSING TRANSITION
     ========================================================== */
  .system-close {
    max-width: 860px;
    margin: 80px auto 0;
    text-align: center;
    padding-top: 48px;
    border-top: 1px solid var(--border-subtle);
  }
  .system-close-text {
    font-family: 'Merriweather', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.3px;
    color: var(--text-primary);
  }
  .system-close-text em {
    color: var(--brand-primary);
    font-style: italic;
  }

  /* ==========================================================
     SYSTEM SECTION RESPONSIVE
     ========================================================== */
  @media (max-width: 1100px) {
    .deliverables-overview {
      grid-template-columns: 1fr;
      gap: 20px;
      max-width: 560px;
    }
    .deliverable-card { padding: 28px 24px 24px; }
    .deliverables-bridge { margin-bottom: 72px; }

    .deliverable {
      grid-template-columns: 1fr;
      gap: 60px;
      max-width: 560px;
    }
    /* On narrow screens, always put visual first, copy second */
    .deliverable.visual-left .deliverable-visual,
    .deliverable.visual-right .deliverable-visual { order: 1; }
    .deliverable.visual-left .deliverable-copy,
    .deliverable.visual-right .deliverable-copy { order: 2; }
    .deliverable-copy { max-width: 100%; }
    .deliverable-visual { min-height: auto; }

    /* Pull annotations in close on smaller screens */
    .report-ann-1, .report-ann-2, .report-ann-3 {
      right: -40px;
    }

    /* Anatomy section labels move below each section inline */
    .anatomy-section-label {
      position: static;
      transform: none;
      display: block;
      margin-top: 10px;
      width: fit-content;
    }
    .anatomy-section-label::before { display: none; }
  }

  @media (max-width: 720px) {
    .system { padding: 80px 24px 100px; }
    .system-header { margin-bottom: 56px; }
    .system-headline { font-size: 34px; }
    .deliverables-overview { margin-bottom: 56px; }
    .dc-title { font-size: 20px; }
    .deliverable { margin-bottom: 90px; gap: 44px; }
    .deliverable-title { font-size: 24px; }
    .deliverable-text { font-size: 15px; }

    .report-stack { width: 280px; height: 380px; }
    .report-cover { padding: 32px 26px; }
    .report-cover-title { font-size: 20px; }
    /* Hide floating annotations on mobile — too cluttered */
    .report-ann-1, .report-ann-2, .report-ann-3 { display: none; }

    .anatomy-frame { width: 100%; max-width: 360px; }
    .annot-report { width: 100%; max-width: 380px; padding: 24px 20px; }
    .annot-body { grid-template-columns: 1fr; }

    .system-close-text { font-size: 24px; }
  }

  /* =================================================================
     PROOF SECTION — WEBSITE SHOWCASE
     Ported from hero prototype, copy refined for the new narrative.
     ================================================================= */
  .section-proof {
    padding: 120px 48px;
    max-width: 1320px;
    margin: 0 auto;
    border-top: 1px solid var(--border-light);
    position: relative;
  }

  .section-proof::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
  }

  .proof-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 60px;
  }

  .proof-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--accent-steel);
    margin-bottom: 18px;
  }

  .proof-headline {
    font-family: 'Merriweather', serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.3px;
    color: var(--text-primary);
    margin-bottom: 14px;
  }

  .proof-support {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-secondary);
  }

  .proof-showcase {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: stretch;
    background: var(--bg-card);
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(24, 25, 26, 0.06);
    max-width: 1060px;
    margin: 0 auto;
  }

  .proof-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .proof-industry-badge {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--accent-steel);
    background: var(--bg-main);
    padding: 5px 14px;
    border-radius: 14px;
    display: inline-block;
    margin-bottom: 16px;
    width: fit-content;
  }

  .proof-client-title {
    font-family: 'Merriweather', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .proof-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 28px;
  }

  .proof-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
  }

  .proof-stat {
    text-align: center;
    flex: 1;
    padding: 14px 8px;
    background: var(--bg-main);
    border-radius: 8px;
  }

  .proof-stat-value {
    font-family: 'Merriweather', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--brand-primary);
    line-height: 1;
    margin-bottom: 6px;
  }

  .proof-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0.3px;
  }

  .proof-gold-line {
    height: 1px;
    background: var(--accent-gold);
    opacity: 0.35;
    margin-bottom: 24px;
  }

  .proof-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .proof-detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
  }

  .proof-detail-row svg { flex-shrink: 0; }

  /* Browser mockup */
  .proof-visual {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .pv-browser {
    background: var(--bg-main);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(24, 25, 26, 0.08);
    border: 1px solid var(--border-subtle);
  }

  .pv-browser-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
  }

  .pv-browser-dots {
    display: flex;
    gap: 6px;
  }

  .pv-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }

  .pv-dot-red    { background: #E8736C; }
  .pv-dot-yellow { background: #F5C04F; }
  .pv-dot-green  { background: #6BC66B; }

  .pv-browser-address {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-main);
    padding: 5px 12px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-tertiary);
  }

  .pv-viewport {
    position: relative;
    height: 360px;
    overflow: hidden;
  }

  .pv-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .pv-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  .pv-slide.active { opacity: 1; }

  .pv-slide-indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
  }

  .pv-slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--border-subtle);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .pv-slide-dot.active {
    background: var(--brand-primary);
    transform: scale(1.2);
  }

  .pv-caption {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-tertiary);
    text-align: center;
    font-style: italic;
  }

  /* Placeholder wireframe site */
  .pv-placeholder { width: 100%; height: 100%; background: #f8f9fb; }
  .pv-nav         { height: 36px; background: #ffffff; border-bottom: 1px solid #ebedf0; }
  .pv-hero        {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 32px 28px;
    align-items: center;
    height: calc(100% - 36px);
  }
  .pv-hero-text   { display: flex; flex-direction: column; }
  .pv-hero-img    {
    background: linear-gradient(135deg, #e2e6ea 0%, #d0d6dc 100%);
    border-radius: 8px;
    height: 180px;
  }
  .pv-line        { height: 8px; border-radius: 4px; margin-bottom: 6px; }
  .pv-tall        { height: 14px; margin-bottom: 8px; }
  .pv-w50         { width: 50%; }
  .pv-w60         { width: 60%; }
  .pv-w70         { width: 70%; }
  .pv-w75         { width: 75%; }
  .pv-w80         { width: 80%; }
  .pv-w85         { width: 85%; }
  .pv-w90         { width: 90%; }
  .pv-dark        { background: #2a2d31; }
  .pv-light       { background: #d0d4d9; }
  .pv-light-dark  { background: rgba(255,255,255,0.25); }
  .pv-spacer-sm   { height: 8px; }
  .pv-btn         {
    width: 120px; height: 32px;
    background: var(--brand-primary);
    border-radius: 6px;
    margin-top: 4px;
  }
  .pv-btn-light   {
    width: 140px; height: 34px;
    background: var(--bg-card);
    border-radius: 6px;
    margin: 4px auto 0;
  }
  .pv-section-alt {
    padding: 32px 28px; height: 100%;
    display: flex; align-items: center;
    background: #ffffff;
  }
  .pv-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px; width: 100%;
  }
  .pv-card-block {
    background: #f4f5f7;
    border-radius: 8px;
    padding: 20px 16px;
  }
  .pv-card-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--brand-primary);
    opacity: 0.2;
    margin-bottom: 12px;
  }
  .pv-section-dark {
    background: #1e2024;
    height: 100%;
    display: flex; align-items: center; justify-content: center;
  }
  .pv-cta-block { text-align: center; padding: 40px; }

  /* Proof mobile */
  @media (max-width: 1024px) {
    .proof-showcase {
      grid-template-columns: 1fr;
      gap: 32px;
      padding: 32px;
    }
    .section-proof { padding: 80px 32px; }
    .proof-headline { font-size: 30px; }
  }

  @media (max-width: 640px) {
    .section-proof { padding: 60px 20px; }
    .proof-showcase { padding: 24px; }
    .proof-client-title { font-size: 19px; }
    .proof-stats { gap: 12px; }
    .proof-stat-value { font-size: 22px; }
    .proof-headline { font-size: 26px; }
    .pv-viewport { height: 260px; }
    .pv-hero { grid-template-columns: 1fr; padding: 20px; }
    .pv-hero-img { height: 100px; }
    .pv-grid-3 { grid-template-columns: 1fr; gap: 10px; }
  }

  /* =================================================================
     WEBSITE REPORT SECTION — Strategy report preview
     Mirrors the brand report layout, with the visual on the right.
     ================================================================= */
  .section-homepage-report {
    padding: 120px 48px;
    max-width: 1320px;
    margin: 0 auto;
    border-top: 1px solid var(--border-light);
    position: relative;
  }

  .section-homepage-report::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
  }

  .hr-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--accent-steel);
    margin-bottom: 20px;
  }

  .hr-headline {
    font-family: 'Merriweather', serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.3px;
    color: var(--text-primary);
    margin-bottom: 20px;
  }

  .hr-support {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
  }

  .hr-showcase {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .hr-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hr-industry-badge {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--accent-steel);
    background: var(--bg-main);
    padding: 5px 14px;
    border-radius: 14px;
    display: inline-block;
    margin-bottom: 16px;
    width: fit-content;
  }

  .hr-client-title {
    font-family: 'Merriweather', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .hr-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 28px;
  }

  .hr-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 22px;
    background: var(--bg-card);
    border-left: 2px solid var(--accent-gold);
    border-radius: 4px;
    margin-bottom: 28px;
  }
  .hr-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
  }
  .hr-meta-key {
    color: var(--text-tertiary);
    letter-spacing: 0.3px;
  }
  .hr-meta-val {
    color: var(--text-primary);
    font-weight: 500;
    text-align: right;
  }

  .hr-gold-line {
    height: 1px;
    background: var(--accent-gold);
    opacity: 0.35;
    margin-bottom: 20px;
  }

  .hr-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hr-detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
  }
  .hr-detail-row svg { flex-shrink: 0; }

  /* Right: website report mockup */
  .hr-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .website-report-mockup {
    position: relative;
    width: min(100%, 560px);
    aspect-ratio: 8.5 / 11;
    background: #F8F9FA;
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    box-shadow:
      0 1px 2px rgba(24, 25, 26, 0.04),
      0 10px 30px rgba(24, 25, 26, 0.10),
      0 30px 60px -20px rgba(24, 25, 26, 0.16);
    overflow: hidden;
    padding: 38px 42px;
  }

  .wr-section-number {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--accent-steel);
    margin-bottom: 4px;
  }

  .wr-section-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-steel);
    margin-bottom: 8px;
  }

  .wr-title {
    font-family: 'Merriweather', serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.2px;
    color: var(--text-primary);
    margin-bottom: 10px;
  }

  .wr-gold-rule {
    width: 48px;
    height: 2px;
    background: var(--accent-gold);
    margin-bottom: 18px;
  }

  .wr-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
  }

  .wr-screenshot {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 9px;
  }

  .wr-browser {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    overflow: hidden;
  }

  .wr-browser-bar {
    height: 18px;
    background: #EAEEF1;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 8px;
  }

  .wr-browser-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #D8DEE3;
  }

  .wr-site-hero {
    min-height: 150px;
    padding: 18px 16px;
    background: linear-gradient(135deg, #18191A 0%, #2D343C 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .wr-site-label {
    width: 58%;
    height: 5px;
    background: rgba(207, 175, 122, 0.55);
    border-radius: 2px;
  }

  .wr-site-line {
    height: 8px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.88);
  }
  .wr-site-line.w90 { width: 90%; }
  .wr-site-line.w72 { width: 72%; }
  .wr-site-sub {
    height: 5px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.38);
  }
  .wr-site-sub.w84 { width: 84%; }
  .wr-site-sub.w66 { width: 66%; }
  .wr-site-button {
    width: 72px;
    height: 18px;
    background: var(--brand-primary);
    border-radius: 4px;
    margin-top: 4px;
  }

  .wr-screenshot-label {
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-tertiary);
    text-align: center;
    margin-top: 7px;
  }

  .wr-reasoning-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    background: rgba(207, 175, 122, 0.12);
    padding: 3px 8px;
    border-radius: 999px;
    margin-bottom: 10px;
  }

  .wr-reasoning-title {
    font-family: 'Merriweather', serif;
    font-size: 13px;
    line-height: 1.35;
    color: var(--text-primary);
    margin-bottom: 8px;
  }

  .wr-copy-line {
    height: 5px;
    border-radius: 2px;
    background: #D8DEE3;
    margin-bottom: 5px;
  }
  .wr-copy-line.w100 { width: 100%; }
  .wr-copy-line.w92 { width: 92%; }
  .wr-copy-line.w78 { width: 78%; }
  .wr-copy-line.w64 { width: 64%; }

  .wr-element-list {
    margin-top: 12px;
    border-top: 1px solid var(--border-light);
  }

  .wr-element-item {
    display: flex;
    gap: 8px;
    align-items: start;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
  }

  .wr-element-marker {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    font-weight: 500;
  }

  .wr-element-label {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 3px;
  }

  .wr-element-text {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    line-height: 1.45;
    color: var(--text-secondary);
  }

  .wr-callout {
    background: var(--bg-card);
    border-left: 2px solid var(--brand-primary);
    border-radius: 0 4px 4px 0;
    padding: 10px 12px;
    margin-top: 12px;
  }

  .wr-callout-label {
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 5px;
  }

  .wr-callout-text {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    line-height: 1.5;
    color: var(--text-secondary);
  }

  .wr-source-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-steel);
    background: rgba(124, 150, 171, 0.10);
    padding: 3px 7px;
    border-radius: 999px;
    margin-top: 10px;
  }

  .wr-page-footer {
    position: absolute;
    left: 42px;
    right: 42px;
    bottom: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-subtle);
    padding-top: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    color: var(--text-tertiary);
    letter-spacing: 0.4px;
  }

  .hr-caption {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-tertiary);
    text-align: center;
    font-style: italic;
  }

  /* Website Report mobile */
  @media (max-width: 1024px) {
    .hr-showcase {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .section-homepage-report { padding: 80px 32px; }
    .hr-headline { font-size: 32px; }
  }

  @media (max-width: 640px) {
    .section-homepage-report { padding: 60px 20px; }
    .hr-headline { font-size: 26px; }
    .hr-support { font-size: 15px; }
    .website-report-mockup { padding: 28px 24px; }
    .wr-breakdown { grid-template-columns: 1fr; }
    .wr-page-footer { left: 24px; right: 24px; }
  }

  /* =================================================================
     PRICING + FAQ + FOOTER (sourced from service-boss-hero.html)
     ================================================================= */
  /* =================================================================
     SECTION HEADER UTILITIES (used by pricing + FAQ headers)
     ================================================================= */
  .pricing-header .section-label,
  .faq-inner .section-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.8px;
    color: var(--accent-steel);
    margin-bottom: 20px;
  }

  .pricing-header .section-headline,
  .faq-inner .section-headline {
    font-family: 'Merriweather', serif;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.3px;
    color: var(--text-primary);
    margin-bottom: 16px;
  }

  .pricing-header .section-support {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
  }

  /* ========== PRICING SECTION ========== */
  .section-pricing {
    padding: 120px 48px;
    max-width: 1320px;
    margin: 0 auto;
    border-top: 1px solid var(--border-light);
    position: relative;
  }

  .section-pricing::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
  }

  .pricing-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 60px;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    max-width: 920px;
    margin: 0 auto;
    align-items: start;
  }

  .pricing-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 40px 36px;
    position: relative;
    box-shadow: 0 4px 24px rgba(26, 26, 25, 0.06);
  }

  .pricing-card-top-border {
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-primary) 0%, var(--accent-gold) 100%);
    border-radius: 0 0 3px 3px;
  }

  .pricing-badge {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--brand-primary);
    background: rgba(47, 111, 163, 0.08);
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 20px;
  }

  .pricing-tier-name {
    font-family: 'Merriweather', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 24px;
  }

  .pricing-amount {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 12px;
  }

  .pricing-dollar {
    font-family: 'Merriweather', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1;
  }

  .pricing-setup-label,
  .pricing-monthly-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-tertiary);
    display: block;
    margin-top: 4px;
  }

  .pricing-divider-v {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
  }

  .pricing-daily {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
  }

  .pricing-daily strong {
    color: var(--brand-primary);
  }

  .pricing-infra-note {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0 0 24px;
  }

  .pricing-gold-line {
    height: 1px;
    background: var(--accent-gold);
    opacity: 0.4;
    margin-bottom: 24px;
  }

  .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .pricing-features li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
  }

  .pricing-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
  }

  .pricing-cta {
    width: 100%;
    text-align: center;
    display: block;
  }

  /* Growth side */
  .pricing-growth {
    padding: 36px 0 0;
  }

  .growth-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--accent-steel);
    margin-bottom: 12px;
  }

  .growth-title {
    font-family: 'Merriweather', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 12px;
  }

  .growth-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 28px;
  }

  .growth-tiers {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }

  .growth-tier {
    padding: 16px 20px;
    border-left: 2px solid var(--accent-gold);
    background: var(--bg-card);
    border-radius: 0 8px 8px 0;
  }

  .growth-tier-name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
  }

  .growth-tier-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-tertiary);
    line-height: 1.5;
  }

  .growth-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: italic;
    color: var(--text-tertiary);
  }

  /* ========== FAQ SECTION ========== */
  .section-faq {
    padding: 100px 48px;
    max-width: 1320px;
    margin: 0 auto;
  }

  .faq-inner {
    max-width: 680px;
    margin: 0 auto;
  }

  .faq-inner .section-label {
    text-align: center;
  }

  .faq-inner .section-headline {
    text-align: center;
    margin-bottom: 48px;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .faq-item {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(26, 26, 25, 0.03);
  }

  .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    gap: 16px;
  }

  .faq-chevron {
    flex-shrink: 0;
    color: var(--text-tertiary);
    transition: transform 0.3s ease;
  }

  .faq-item.open .faq-chevron {
    transform: rotate(180deg);
  }

  .faq-answer {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }

  .faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px;
  }

  /* ========== FINAL CTA ========== */
  .section-contact {
    padding: 110px 48px;
    background: var(--text-primary);
  }

  .contact-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
  }

  .contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.8px;
    color: var(--accent-steel);
    text-transform: uppercase;
    margin-bottom: 18px;
  }

  .contact-headline {
    font-family: 'Merriweather', serif;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.4px;
    color: var(--bg-card);
    margin-bottom: 20px;
  }

  .contact-support {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(242, 245, 247, 0.72);
    max-width: 620px;
    margin: 0 auto 34px;
  }

  .contact-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* ========== FOOTER ========== */
  .site-footer {
    background: var(--text-primary);
    border-top: 1px solid rgba(247, 246, 242, 0.08);
    padding: 48px 48px;
  }

  .footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-logo {
    font-family: 'Merriweather', serif;
    font-size: 18px;
    color: var(--bg-card);
  }

  .footer-logo span { color: var(--brand-primary); }

  .footer-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-tertiary);
  }

  .footer-links {
    display: flex;
    gap: 24px;
  }

  .footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-links a:hover { color: var(--bg-card); }

  .footer-copy {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-tertiary);
    opacity: 0.6;
  }

  /* ========== PRICING / FAQ / FOOTER MOBILE ========== */
  @media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .section-pricing, .section-faq, .section-contact {
      padding: 80px 32px;
    }
    .site-footer { padding-left: 32px; padding-right: 32px; }
  }

  @media (max-width: 640px) {
    .section-pricing, .section-faq, .section-contact {
      padding: 60px 20px;
    }
    .site-footer { padding: 36px 20px; }
    .pricing-amount { flex-direction: column; gap: 12px; align-items: flex-start; }
    .pricing-divider-v { width: 40px; height: 1px; }
    .pricing-card { padding: 32px 24px; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .footer-links { flex-wrap: wrap; gap: 16px; }
    .page-card { padding: 24px; }
    .research-grid,
    .url-audit-grid { grid-template-columns: 1fr; }
    .distribution-card { grid-template-columns: 1fr; }
    .calendar-frame { min-height: 680px; }
  }

  /* =================================================================
     BRAND REPORT SECTION — MOCKUP CAROUSEL
     The deliverable teased: real structure, blurred specifics.
     ================================================================= */
  .section-report {
    padding: 120px 48px;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
  }

  .report-showcase {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Copy column (right side) */
  .report-copy {
    order: 2;
    padding-left: 8px;
  }

  .report-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--accent-steel);
    margin-bottom: 20px;
  }

  .report-headline {
    font-family: 'Merriweather', serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.3px;
    color: var(--text-primary);
    margin-bottom: 20px;
  }

  .report-lede {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
  }

  .report-body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 28px;
  }

  .report-body em {
    font-style: normal;
    color: var(--text-primary);
    font-weight: 500;
  }

  .report-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 22px;
    background: var(--bg-card);
    border-left: 2px solid var(--accent-gold);
    border-radius: 4px;
    margin-bottom: 28px;
  }

  .report-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
  }

  .report-meta-key {
    color: var(--text-tertiary);
    letter-spacing: 0.3px;
  }

  .report-meta-val {
    color: var(--text-primary);
    font-weight: 500;
    text-align: right;
  }

  .report-cta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-tertiary);
  }

  .report-cta-row a {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
  }

  .report-cta-row a:hover { color: var(--brand-hover); }

  /* Mockup column (left side) */
  .report-visual {
    order: 1;
    position: relative;
  }

  .report-mockup {
    position: relative;
    aspect-ratio: 8.5 / 11;
    background: var(--bg-card);
    border-radius: 10px;
    box-shadow:
      0 1px 2px rgba(24, 25, 26, 0.04),
      0 10px 30px rgba(24, 25, 26, 0.10),
      0 30px 60px -20px rgba(24, 25, 26, 0.16);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    max-width: 520px;
    margin: 0 auto;
  }

  .report-mockup::after {
    /* subtle paper grain */
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(24,25,26,0.02) 0%, transparent 12%, transparent 88%, rgba(24,25,26,0.02) 100%);
  }

  .report-pages {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .report-page {
    position: absolute;
    inset: 0;
    padding: 34px 30px 46px;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
  }

  .report-page.active { opacity: 1; }

  /* Report typographic primitives (scaled for mockup) */
  .rp-section-num {
    display: inline-block;
    font-family: 'Merriweather', serif;
    font-size: 10px;
    font-weight: 400;
    color: var(--accent-steel);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
  }

  .rp-section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-left: 8px;
    vertical-align: 2px;
  }

  .rp-title {
    font-family: 'Merriweather', serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.2px;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .rp-gold-rule {
    height: 1px;
    background: var(--accent-gold);
    opacity: 0.55;
    margin-bottom: 14px;
    border: 0;
    width: 56px;
  }

  .rp-foot {
    position: absolute;
    left: 30px; right: 30px; bottom: 18px;
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    color: var(--text-tertiary);
    letter-spacing: 0.4px;
    padding-top: 8px;
    border-top: 1px solid var(--border-subtle);
  }

  /* Blur-lines — the "redacted" treatment */
  .rp-blur {
    display: inline-block;
    height: 9px;
    border-radius: 2px;
    background: linear-gradient(90deg,
      #c4cad0 0%,
      #dadfe4 45%,
      #c9cfd5 100%);
    vertical-align: middle;
    position: relative;
    overflow: hidden;
  }

  .rp-blur::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(255,255,255,0.4) 50%,
      transparent 100%);
    transform: translateX(-100%);
    animation: rpShimmer 3.8s ease-in-out infinite;
  }

  @keyframes rpShimmer {
    0%   { transform: translateX(-100%); }
    55%  { transform: translateX(100%); }
    100% { transform: translateX(100%); }
  }

  .rp-blur-line {
    display: block;
    height: 7px;
    border-radius: 2px;
    background: #d0d5da;
    margin-bottom: 5px;
  }

  .rp-blur-line.dim {
    background: #dee2e6;
  }

  .rp-blur-line.w90 { width: 90%; }
  .rp-blur-line.w80 { width: 80%; }
  .rp-blur-line.w70 { width: 70%; }
  .rp-blur-line.w60 { width: 60%; }
  .rp-blur-line.w50 { width: 50%; }
  .rp-blur-line.w45 { width: 45%; }
  .rp-blur-line.w40 { width: 40%; }
  .rp-blur-line.w30 { width: 30%; }

  /* ==================== PAGE 1: TABLE OF CONTENTS ==================== */
  .rp-toc-group {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-top: 10px;
    margin-bottom: 4px;
  }

  .rp-toc-group:first-of-type { margin-top: 0; }

  .rp-toc-item {
    display: grid;
    grid-template-columns: 20px 1fr 22px;
    align-items: baseline;
    gap: 8px;
    padding: 4px 0;
    border-bottom: 1px dotted var(--border-subtle);
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: var(--text-primary);
  }

  .rp-toc-num {
    font-family: 'Merriweather', serif;
    font-size: 9px;
    color: var(--accent-steel);
  }

  .rp-toc-title { color: var(--text-secondary); }
  .rp-toc-title.emphasis { color: var(--text-primary); }

  .rp-toc-page {
    color: var(--text-tertiary);
    font-size: 9px;
    text-align: right;
  }

  /* ==================== PAGE 2: BRAND TRUST AUDIT ==================== */
  .rp-trust-hero {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 16px;
    align-items: center;
    padding: 10px 0 12px;
  }

  .rp-trust-circle {
    position: relative;
    width: 78px;
    height: 78px;
  }

  .rp-trust-circle svg {
    width: 100%; height: 100%;
    transform: rotate(-90deg);
  }

  .rp-trust-score-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .rp-trust-num {
    font-family: 'Merriweather', serif;
    font-size: 20px;
    color: var(--text-primary);
    line-height: 1;
  }

  .rp-trust-out {
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    color: var(--text-tertiary);
    letter-spacing: 0.3px;
    margin-top: 2px;
  }

  .rp-trust-grade-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .rp-trust-grade {
    font-family: 'Merriweather', serif;
    font-size: 13px;
    color: var(--brand-primary);
    line-height: 1;
  }

  .rp-bars {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 4px;
  }

  .rp-bar-row {
    display: grid;
    grid-template-columns: 1fr 80px 18px;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    color: var(--text-secondary);
  }

  .rp-bar-track {
    height: 5px;
    background: var(--bg-main);
    border-radius: 3px;
    overflow: hidden;
  }

  .rp-bar-fill {
    height: 100%;
    background: var(--brand-primary);
    border-radius: 3px;
  }

  .rp-bar-fill.mid { background: var(--accent-gold); }
  .rp-bar-fill.low { background: #C4705A; }

  .rp-bar-val {
    text-align: right;
    font-size: 8px;
    color: var(--text-primary);
    font-weight: 500;
  }

  .rp-insight-box {
    margin-top: 8px;
    padding: 8px 10px;
    background: var(--bg-main);
    border-left: 2px solid var(--accent-gold);
    border-radius: 2px;
  }

  .rp-insight-label {
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 4px;
  }

  /* ==================== PAGE 3: COMPETITIVE LANDSCAPE ==================== */
  .rp-quad {
    position: relative;
    height: 180px;
    background: var(--bg-main);
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
  }

  .rp-quad-axis {
    position: absolute;
    background: var(--border-subtle);
  }

  .rp-quad-axis.x { left: 0; right: 0; top: 50%; height: 1px; }
  .rp-quad-axis.y { top: 0; bottom: 0; left: 50%; width: 1px; }

  .rp-quad-label {
    position: absolute;
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    font-weight: 500;
    letter-spacing: 1.2px;
    color: var(--text-tertiary);
    padding: 3px 6px;
  }

  .rp-quad-label.tr { top: 6px;    right: 6px; }
  .rp-quad-label.tl { top: 6px;    left: 6px; }
  .rp-quad-label.br { bottom: 6px; right: 6px; }
  .rp-quad-label.bl { bottom: 6px; left: 6px; }

  .rp-quad-target {
    position: absolute;
    top: 6%; right: 6%;
    width: 38%; height: 38%;
    border: 1px dashed var(--accent-gold);
    border-radius: 4px;
    opacity: 0.5;
  }

  .rp-quad-dot {
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
    transform: translate(-50%, 50%);
  }

  .rp-quad-dot.client {
    background: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(47, 111, 163, 0.15);
    z-index: 2;
  }

  .rp-quad-dot.comp { background: var(--accent-steel); }

  .rp-quad-pill {
    position: absolute;
    left: 14px;
    top: -2px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 2px 5px;
    display: inline-block;
  }

  .rp-quad-pill .rp-blur {
    height: 6px; width: 28px;
  }

  /* Comp table for competitive page */
  .rp-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    margin-bottom: 4px;
  }

  .rp-table th {
    text-align: left;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0.5px;
    padding: 4px 4px;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 7px;
    text-transform: uppercase;
  }

  .rp-table td {
    padding: 4px 4px;
    border-bottom: 1px dotted var(--border-subtle);
    color: var(--text-secondary);
  }

  .rp-table tr.client-row td {
    background: rgba(47, 111, 163, 0.05);
    color: var(--text-primary);
    font-weight: 500;
  }

  .rp-rating-cell {
    color: var(--accent-gold);
    letter-spacing: 0.5px;
  }

  /* ==================== PAGE 4: AUDIENCE ARCHITECTURE ==================== */
  .rp-intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 10px;
  }

  .rp-persona {
    background: var(--bg-main);
    border-radius: 4px;
    padding: 10px 12px;
    margin-bottom: 8px;
  }

  .rp-persona-header {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 8px;
  }

  .rp-persona-icon {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--accent-steel);
    opacity: 0.7;
    flex-shrink: 0;
  }

  .rp-persona-name {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .rp-persona-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .rp-persona-item {
    padding: 5px 0;
  }

  .rp-persona-item-label {
    font-family: 'Inter', sans-serif;
    font-size: 6.5px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 3px;
  }

  /* ==================== PAGE 5: MARKET AWARENESS MAPPING ==================== */
  .rp-aware-intro {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    line-height: 1.55;
    color: var(--text-secondary);
    margin-bottom: 12px;
  }

  .rp-aware-spectrum {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    margin-bottom: 10px;
  }

  .rp-stage {
    background: var(--bg-main);
    border: 1px solid var(--border-subtle);
    border-radius: 3px;
    padding: 8px 4px;
    text-align: center;
    position: relative;
  }

  .rp-stage.customer {
    background: rgba(47, 111, 163, 0.10);
    border-color: var(--brand-primary);
  }

  .rp-stage.messaging {
    background: rgba(207, 175, 122, 0.18);
    border-color: var(--accent-gold);
  }

  .rp-stage-num {
    font-family: 'Merriweather', serif;
    font-size: 11px;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 3px;
  }

  .rp-stage-name {
    font-family: 'Inter', sans-serif;
    font-size: 6.5px;
    color: var(--text-secondary);
    line-height: 1.2;
  }

  .rp-aware-legend {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 10px;
  }

  .rp-legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    color: var(--text-secondary);
  }

  .rp-legend-swatch {
    width: 9px; height: 9px;
    border-radius: 2px;
  }

  .rp-legend-swatch.customer { background: var(--brand-primary); }
  .rp-legend-swatch.messaging {
    background: var(--accent-gold);
    opacity: 0.8;
  }

  .rp-aware-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 8px;
  }

  .rp-aware-card-label {
    font-family: 'Inter', sans-serif;
    font-size: 6.5px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 3px;
  }

  .rp-aware-card-stage {
    font-family: 'Merriweather', serif;
    font-size: 10px;
    color: var(--text-primary);
    margin-bottom: 3px;
  }

  /* ==================== PAGE 6: DIGITAL PRESENCE SNAPSHOT ==================== */
  .rp-gauges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 10px;
  }

  .rp-gauge {
    text-align: center;
    padding: 6px 2px;
  }

  .rp-gauge-ring {
    position: relative;
    width: 48px;
    height: 48px;
    margin: 0 auto 4px;
  }

  .rp-gauge-ring svg {
    width: 100%; height: 100%;
    transform: rotate(-90deg);
  }

  .rp-gauge-num {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Merriweather', serif;
    font-size: 11px;
    color: var(--text-primary);
  }

  .rp-gauge-label {
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    font-weight: 500;
    letter-spacing: 0.4px;
    color: var(--text-secondary);
  }

  .rp-platform-head {
    display: grid;
    grid-template-columns: 60px 60px 40px 1fr;
    gap: 6px;
    padding: 4px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-family: 'Inter', sans-serif;
    font-size: 6.5px;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 2px;
  }

  .rp-platform-row {
    display: grid;
    grid-template-columns: 60px 60px 40px 1fr;
    gap: 6px;
    padding: 4px 0;
    border-bottom: 1px dotted var(--border-subtle);
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    color: var(--text-secondary);
    align-items: center;
  }

  .rp-platform-name {
    color: var(--text-primary);
    font-weight: 500;
  }

  .rp-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .rp-status-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
  }

  .rp-status-dot.good { background: #6BC66B; }
  .rp-status-dot.mid  { background: var(--accent-gold); }
  .rp-status-dot.low  { background: #C4705A; }

  /* Report carousel chrome — arrows, counter, dots */
  .report-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 520px;
    margin: 18px auto 0;
    padding: 0 4px;
  }

  .report-arrow {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
  }

  .report-arrow:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #ffffff;
  }

  .report-arrow:active { transform: scale(0.94); }

  .report-counter {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-tertiary);
    letter-spacing: 0.3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .report-counter-num {
    color: var(--text-primary);
    font-weight: 500;
  }

  .report-dots {
    display: flex;
    gap: 6px;
  }

  .report-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: var(--border-subtle);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .report-dot.active {
    background: var(--brand-primary);
    transform: scale(1.3);
  }

  /* Report section mobile */
  @media (max-width: 960px) {
    .report-showcase {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .report-copy { order: 2; padding-left: 0; }
    .report-visual { order: 1; }
    .report-headline { font-size: 32px; }
    .section-report { padding: 80px 32px; }
  }

  @media (max-width: 640px) {
    .section-report { padding: 60px 20px; }
    .report-headline { font-size: 26px; }
    .report-lede { font-size: 15px; }
    .report-mockup { max-width: 360px; }
  }

  /* =================================================================
     BRAND REPORT SAMPLE PAGE — Interactive 19-page preview
     ================================================================= */
  .brand-report-page .page-shell-wide {
    max-width: 1240px;
  }

  .brand-report-page .section-report {
    padding: 0;
    max-width: none;
  }

  .brand-report-page .report-showcase {
    grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
    gap: 56px;
    align-items: center;
    max-width: none;
  }

  .brand-report-page .report-copy {
    order: 1;
    padding-left: 0;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .brand-report-page .report-copy.is-changing {
    opacity: 0;
    transform: translateY(6px);
  }

  .brand-report-page .report-visual {
    order: 2;
  }

  .brand-report-page .report-mockup {
    max-width: 560px;
  }

  .brand-report-page .report-body {
    min-height: 104px;
  }

  .brand-report-page .report-meta {
    background: var(--bg-main);
  }

  .brand-report-page .report-controls {
    max-width: 560px;
  }

  .brand-report-page .report-dots {
    max-width: 176px;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 8px;
  }

  .rp-cover-page {
    justify-content: space-between;
    padding-top: 42px;
  }

  .rp-cover-brand {
    font-family: 'Merriweather', serif;
    font-size: 18px;
    color: var(--brand-dark);
  }

  .rp-cover-heading {
    font-family: 'Merriweather', serif;
    font-size: 30px;
    line-height: 1.12;
    color: var(--brand-dark);
    max-width: 82%;
  }

  .rp-cover-meta {
    display: grid;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    color: var(--text-tertiary);
  }

  .rp-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .rp-mini-card {
    background: var(--bg-main);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 10px;
  }

  .rp-mini-label {
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 5px;
  }

  .rp-roadmap {
    display: grid;
    gap: 8px;
  }

  .rp-roadmap-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 10px;
    align-items: start;
    padding: 10px;
    background: var(--bg-main);
    border-radius: 4px;
  }

  .rp-roadmap-days {
    font-family: 'Merriweather', serif;
    font-size: 12px;
    color: var(--brand-primary);
  }

  .rp-roadmap-title {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
  }

  .rp-leak-list {
    display: grid;
    gap: 8px;
  }

  .rp-leak-item {
    display: grid;
    grid-template-columns: 26px 1fr 46px;
    gap: 8px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dotted var(--border-subtle);
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    color: var(--text-secondary);
  }

  .rp-leak-num {
    font-family: 'Merriweather', serif;
    color: var(--accent-steel);
  }

  .rp-leak-impact {
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
  }

  @media (max-width: 960px) {
    .brand-report-page .report-showcase {
      grid-template-columns: 1fr;
      gap: 42px;
    }
    .brand-report-page .report-copy { order: 1; }
    .brand-report-page .report-visual { order: 2; }
  }
