  :root {
    --bg: #111118;
    --bg-card: #1a1a24;
    --bg-card-hover: #22222e;
    --text: #f0f0f4;
    --text-muted: #cdcde0;
    --text-dim: #a0a0b8;
    --accent: #4d7fff;
    --accent-hover: #6b93ff;
    --accent-glow: rgba(77, 127, 255, 0.15);
    --red: #ff4d6a;
    --green: #4dff91;
    --orange: #ff9f4d;
    --border: #44445a;
    --radius: 12px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  .score-page { position: relative; }

  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
  }

  /* ---- NAV (minimal) ---- */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .nav-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.5px;
  }
  .nav-logo span { color: var(--accent); }
  .nav-cta {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--accent-hover); }

  /* ---- HERO ---- */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    animation: glow-breathe 6s ease-in-out infinite;
  }
  @keyframes glow-breathe {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.6; transform: translateX(-50%) scale(1.1); }
  }
  .hero-floor-glow { display: none; }

  /* Floating glow that drifts down the page */
  .scroll-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transition: left 1.4s cubic-bezier(0.22, 1, 0.36, 1),
                top 1.4s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1.4s cubic-bezier(0.22, 1, 0.36, 1),
                background 2s ease;
    will-change: left, top, transform;
    opacity: 1;
    background: radial-gradient(circle, rgba(77, 127, 255, 0.12) 0%, transparent 70%);
    top: -100px;
    left: calc(50% - 350px);
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 32px;
  }
  .hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-dot 2s infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }
  .hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    max-width: 800px;
    margin-bottom: 24px;
  }
  .hero h1 .highlight {
    background: linear-gradient(135deg, var(--accent) 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    max-width: 580px;
    margin-bottom: 40px;
    line-height: 1.6;
  }
  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: var(--accent);
    padding: 16px 40px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 0 40px var(--accent-glow);
  }
  .hero-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(77, 127, 255, 0.25);
  }
  .hero-cta svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s;
  }
  .hero-cta:hover svg { transform: translateX(3px); }
  .hero-micro {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-dim);
  }
  /* Hero feature list */
  .hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 700px;
    margin-top: 48px;
    text-align: left;
  }
  @media (max-width: 600px) {
    .hero-features { grid-template-columns: 1fr; }
  }
  .hero-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s;
  }
  .hero-feature:hover {
    border-color: rgba(77, 127, 255, 0.3);
  }
  .hero-feature svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .hero-feature strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
  }
  .hero-feature span {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.5;
  }

  /* Hero radar preview */
  .hero-radar-preview {
    max-width: 520px;
    margin: 48px auto 0;
  }
  .hero-radar-chart {
    width: 100%;
  }
  .hero-radar-chart .radar-data-polygon {
    transition: points 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .hero-radar-chart .radar-data-dot {
    transition: cx 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                cy 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.4s ease;
  }
  .hero-radar-caption {
    text-align: center;
    font-size: 14px;
    color: var(--text-dim);
    margin-top: 8px;
    line-height: 1.6;
  }
  .hero-radar-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    background: rgba(77, 127, 255, 0.1);
    border: 1px solid rgba(77, 127, 255, 0.2);
    border-radius: 6px;
    padding: 2px 8px;
    margin-right: 8px;
  }
  @media (max-width: 600px) {
    .hero-radar-preview { max-width: 360px; }
  }

  /* Mid-page CTA */
  .mid-cta {
    text-align: center;
    padding: 48px 24px;
    border-top: 1px solid var(--border);
    max-width: 1100px;
    margin: 0 auto;
  }

  /* Legacy screenshot styles (unused but kept for reference) */
  .screenshot-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dim);
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .hero-trust {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dim);
  }
  .hero-trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
  }

  /* ---- SECTIONS ---- */
  section {
    padding: 100px 24px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }
  .section-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 16px;
    text-align: center;
  }
  .section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin: 0 auto 20px;
    max-width: 100%;
    text-align: center;
  }
  .section-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 100%;
    line-height: 1.7;
    margin: 0 auto 48px;
    text-align: center;
  }

  /* ---- CHAOS SECTION (The Measurement Zoo) ---- */
  .chaos {
    border-top: 1px solid var(--border);
  }
  .chaos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  @media (max-width: 768px) {
    .chaos-grid { grid-template-columns: 1fr; }
  }
  .chaos-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
  }
  .chaos-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .chaos-card:hover {
    border-color: rgba(77, 127, 255, 0.3);
    background: var(--bg-card-hover);
  }
  .chaos-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.06);
  }
  .chaos-card-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
    fill: none;
  }
  .chaos-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .chaos-card .vendors {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 12px;
  }
  .chaos-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
  }
  .chaos-punchline {
    margin-top: 48px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(77, 127, 255, 0.08) 0%, rgba(167, 139, 250, 0.05) 100%);
    border: 1px solid rgba(77, 127, 255, 0.15);
    border-radius: var(--radius);
    text-align: center;
  }
  .chaos-punchline p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
  }
  .chaos-punchline .stat {
    color: var(--accent);
    font-weight: 800;
  }

  /* ---- MATURITY LEVELS ---- */
  .levels {
    border-top: 1px solid var(--border);
  }
  .levels-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .level-row {
    display: flex;
    align-items: stretch;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s;
  }
  .level-row.visible {
    opacity: 1;
    transform: translateX(0);
  }
  .level-row:hover {
    border-color: rgba(77, 127, 255, 0.2);
  }
  .level-indicator {
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
  }
  .level-content {
    flex: 1;
    padding: 24px 28px;
  }
  .level-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
  }
  .level-content .tagline {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
  }
  .level-content .detail {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
  }
  .level-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding: 24px 28px;
    flex-shrink: 0;
    min-width: 140px;
    text-align: right;
  }
  .level-meta .spend {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
  }
  .level-meta .pct {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 4px;
  }
  .level-callout {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 77, 106, 0.12);
    border: 1px solid rgba(255, 77, 106, 0.25);
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 6px;
    margin-top: 8px;
  }
  @media (max-width: 768px) {
    .level-row { flex-direction: column; }
    .level-meta { align-items: flex-start; padding: 0 28px 24px; min-width: auto; text-align: left; }
    .level-indicator { width: 100%; height: 40px; }
  }

  /* Dropbox callout */
  .evidence-callout {
    margin-top: 24px;
    padding: 24px 28px;
    background: var(--bg-card);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
  }
  .evidence-callout p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
  }
  .evidence-callout .source {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 8px;
  }

  /* ---- WHAT YOU GET ---- */
  .deliverables {
    border-top: 1px solid var(--border);
  }
  .deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 768px) {
    .deliverables-grid { grid-template-columns: 1fr; }
  }
  .deliverable-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    transition: all 0.3s;
  }
  .deliverable-card:hover {
    border-color: rgba(77, 127, 255, 0.3);
    transform: translateY(-4px);
  }
  .deliverable-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 14px;
    background: rgba(77, 127, 255, 0.08);
    border: 1px solid rgba(77, 127, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
  }
  .deliverable-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent);
    stroke-width: 1.5;
    fill: none;
  }
  .deliverable-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .deliverable-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* ---- HOW IT WORKS ---- */
  .how-it-works {
    border-top: 1px solid var(--border);
  }
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
  }
  @media (max-width: 768px) {
    .steps { grid-template-columns: 1fr; gap: 24px; }
  }
  .step {
    text-align: center;
    position: relative;
  }
  .step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-glow);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
    margin: 0 auto 16px;
  }
  .step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .step p {
    font-size: 14px;
    color: var(--text-muted);
  }

  /* ---- RESEARCH BACKING ---- */
  .research {
    border-top: 1px solid var(--border);
  }
  .research-sources {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  @media (max-width: 768px) {
    .research-sources { grid-template-columns: 1fr; }
  }
  .research-source {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }
  .research-source .icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(77, 127, 255, 0.08);
    border: 1px solid rgba(77, 127, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
  }
  .research-source .icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent);
    stroke-width: 1.5;
    fill: none;
  }
  .research-source .meta {
    flex: 1;
  }
  .research-source .meta strong {
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
  }
  .research-source .meta span {
    font-size: 12px;
    color: var(--text-dim);
  }

  /* ---- FAQ ---- */
  .faq {
    border-top: 1px solid var(--border);
  }
  .faq-list {
    max-width: 100%;
  }
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-q {
    padding: 20px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
  }
  .faq-q:hover { color: var(--accent); }
  .faq-q .chevron {
    transition: transform 0.3s;
    font-size: 20px;
    color: var(--text-dim);
  }
  .faq-item.open .chevron { transform: rotate(180deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
  }
  .faq-item.open .faq-a {
    max-height: 200px;
    padding-bottom: 20px;
  }

  /* ---- FINAL CTA ---- */
  .final-cta {
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 100px 24px 120px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
  }
  .final-cta .section-title {
    max-width: 600px;
    margin: 0 auto 16px;
    text-align: center;
  }
  .final-cta .section-desc {
    max-width: 500px;
    margin: 0 auto 40px;
    text-align: center;
  }

  /* ---- FOOTER ---- */
  .footer {
    padding: 32px;
    text-align: center;
    font-size: 13px;
    color: var(--text-dim);
    border-top: 1px solid var(--border);
  }
  .footer a {
    color: var(--text-muted);
    text-decoration: none;
  }
  .footer a:hover { color: var(--accent); }

  /* ---- ASSESSMENT OVERLAY ---- */
  .assessment-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
  }
  .assessment-overlay.active { display: flex; }
  /* When results are showing, the content is taller than the viewport — flow from
     the top so the scrollbar lives on the viewport edge instead of mid-screen. */
  .assessment-overlay:has(.results-container.active) { justify-content: flex-start; }

  .assessment-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
  }
  .assessment-progress-bar {
    height: 100%;
    background: var(--accent);
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 12px rgba(77, 127, 255, 0.4);
  }
  .assessment-counter {
    position: absolute;
    top: 20px;
    right: 32px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
  }
  .assessment-close {
    position: absolute;
    top: 16px;
    left: 32px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px 12px;
    border-radius: 6px;
    transition: all 0.2s;
  }
  .assessment-close:hover { color: var(--text); background: rgba(255,255,255,0.05); }

  /* Question transition animation */
  .question-container {
    max-width: 640px;
    width: 100%;
    text-align: center;
    animation: question-enter 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .question-container.exiting {
    animation: question-exit 0.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  @keyframes question-enter {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
  }
  @keyframes question-exit {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(-40px); }
  }
  .question-text {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    color: var(--text);
  }
  .answers {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .answer-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 24px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 16px;
    color: var(--text);
    line-height: 1.5;
  }
  .answer-card:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
  }
  .answer-card.selected {
    border-color: var(--accent);
    background: rgba(77, 127, 255, 0.12);
    box-shadow: 0 0 20px rgba(77, 127, 255, 0.1);
  }

  /* Insight interstitial */
  .insight-interstitial {
    display: none;
    max-width: 520px;
    text-align: center;
    animation: question-enter 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .insight-interstitial .insight-continue {
    margin-top: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    background: none;
    border: 1px solid rgba(77, 127, 255, 0.3);
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .insight-interstitial .insight-continue:hover {
    background: rgba(77, 127, 255, 0.1);
    border-color: var(--accent);
  }
  .insight-interstitial.active { display: block; }
  .insight-interstitial .insight-icon {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .insight-interstitial p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
  }
  .insight-interstitial .insight-source {
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 12px;
  }

  /* Context questions */
  .context-label {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 8px;
  }
  .context-skip {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-dim);
    cursor: pointer;
    background: none;
    border: none;
    text-decoration: underline;
  }
  .context-skip:hover { color: var(--text-muted); }

  /* ---- RESULTS ---- */
  .results-container {
    display: none;
    max-width: 720px;
    width: 100%;
    text-align: center;
    padding: 40px 24px 80px;
    animation: question-enter 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .results-container.active { display: block; }

  .result-level-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 16px;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
  }
  .result-insight {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 40px;
  }

  /* Radar chart */
  .radar-container {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto 40px;
  }
  .radar-container svg {
    width: 100%;
    height: 100%;
  }
  .radar-container svg text {
    font-family: 'Inter', sans-serif;
  }

  /* Result CTA block (above radar) */
  .result-cta-block {
    margin: 32px 0;
  }
  .result-cta-block .hero-cta {
    margin-bottom: 8px;
  }
  .result-cta-sub {
    font-size: 14px;
    color: var(--text-dim);
  }

  /* Result insight text — brighter */
  .result-insight {
    font-size: 18px;
    color: var(--text);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
  }

  /* Teaser cards */
  .result-teasers {
    margin-top: 48px;
    text-align: left;
  }
  .result-teasers h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
  }
  .teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  @media (max-width: 600px) {
    .teaser-grid { grid-template-columns: 1fr; }
  }
  .teaser-card {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }
  .teaser-card .teaser-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(77, 127, 255, 0.08);
    border: 1px solid rgba(77, 127, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }
  .teaser-card .teaser-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent);
  }
  .teaser-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
  }
  .teaser-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
  }

  /* Article links */
  .result-articles {
    margin-top: 40px;
    text-align: left;
  }
  .result-articles h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
  }
  .article-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .article-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s;
  }
  .article-link:hover {
    border-color: var(--accent);
    color: var(--text);
  }
  .article-link span {
    color: var(--accent);
    font-size: 16px;
  }

  /* Result share */
  .result-share {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }

  /* Results actions */
  .results-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 40px;
  }
  .share-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .share-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  .share-btn:hover {
    border-color: var(--accent);
    color: var(--text);
  }
  .results-actions .primary-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: var(--accent);
    padding: 14px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
  }
  .results-actions .primary-action:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
  }
  .results-actions .secondary-action {
    font-size: 14px;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
  }
  .results-actions .secondary-action:hover {
    border-color: var(--accent);
    color: var(--text);
  }

  /* Dimension breakdown */
  .dimension-breakdown {
    margin-top: 40px;
    text-align: left;
  }
  .dimension-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .dimension-name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
  }
  .dimension-bar-bg {
    width: 200px;
    height: 8px;
    background: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
  }
  .dimension-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
  }
  .dimension-score {
    font-size: 14px;
    font-weight: 700;
    width: 60px;
    text-align: right;
  }

  /* Loading animation */
  .loading-screen {
    display: none;
    text-align: center;
  }
  .loading-screen.active { display: block; }
  .loading-text {
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
  }
  .loading-sub {
    font-size: 14px;
    color: var(--text-dim);
    margin-top: 8px;
  }
  .spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 0.8s linear infinite;
  }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* ---- UTILITY ---- */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
