/* ============================================================
   Compliance Flag — Design System
   Dark hero + light content. Slate palette, blue accent.
   ============================================================ */

:root {
    --slate-950: #0a0f1a;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --orange-500: #f97316;
    --amber-500: #eab308;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --accent: #2563eb;
    --accent-light: #3b82f6;
    --context-bar-h: 36px;
    --nav-h: 64px;
    --header-stack: calc(var(--context-bar-h) + var(--nav-h));
}

/* ----- Reset ----- */

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

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--slate-50);
    color: var(--slate-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ----- Context Bar ----- */

.cf-context-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    background: var(--slate-900);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    height: var(--context-bar-h);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-size: 13px;
    color: var(--slate-500);
}

.cf-context-bar-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cf-context-bar a {
    color: var(--slate-300);
    transition: color 0.2s;
}

.cf-context-bar a:hover {
    color: var(--white);
}

.cf-context-link {
    color: var(--accent-light) !important;
    font-weight: 600;
    font-size: 12px;
}

.cf-context-link:hover {
    color: var(--white) !important;
}

/* ----- CF Nav ----- */

.cf-nav {
    position: fixed;
    top: var(--context-bar-h);
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 15, 26, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0 32px;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cf-nav .nav-logo {
    width: 32px;
    height: 32px;
    max-width: 32px;
    border-radius: 6px;
}

.cf-nav .nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.cf-nav .nav-wordmark {
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    letter-spacing: -0.02em;
}

.cf-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cf-nav .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}

.cf-nav .nav-cta:hover {
    background: var(--accent-light);
}

/* ----- Site Main ----- */

.site-main {
    flex: 1;
}

/* ----- Hero ----- */

.cf-hero {
    padding: calc(var(--header-stack) + 76px) 32px 80px;
    background: var(--slate-950);
    position: relative;
    overflow: hidden;
}

.cf-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 100%),
        radial-gradient(ellipse 40% 40% at 80% 60%, rgba(37, 99, 235, 0.04) 0%, transparent 100%);
}

.cf-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
}

.cf-hero-inner {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.25);
    color: var(--accent-light);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--green-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.cf-hero h1 {
    font-family: 'Source Serif 4', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    max-width: 720px;
}

.cf-hero h1 em {
    font-style: italic;
    color: var(--accent-light);
}

.hero-sub {
    font-size: 18px;
    color: var(--slate-400);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--slate-300);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

/* ----- Buttons ----- */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    background: var(--accent-light);
    box-shadow: 0 0 24px 0 rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--slate-300);
    font-size: 16px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid var(--slate-700);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: var(--slate-500);
    color: var(--white);
}

/* ----- Sections ----- */

.cf-section {
    padding: 40px 32px;
}

.section-inner {
    max-width: 880px;
    margin: 0 auto;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Source Serif 4', serif;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--slate-600);
    max-width: 580px;
    margin-bottom: 48px;
    line-height: 1.7;
}

/* ----- Report Preview ----- */

.report-section {
    background: var(--white);
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
}

.report-preview {
    background: var(--slate-900);
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 4px 6px rgba(0,0,0,0.05),
        0 20px 40px rgba(0,0,0,0.1);
}

.report-chrome {
    background: var(--slate-800);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.report-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--slate-600);
}

.report-dot:nth-child(1) { background: #ef4444; }
.report-dot:nth-child(2) { background: #eab308; }
.report-dot:nth-child(3) { background: #22c55e; }

.report-url {
    flex: 1;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--slate-500);
}

.report-body {
    padding: 32px;
}

.report-header-sim {
    margin-bottom: 28px;
}

.report-header-sim h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.report-header-sim p {
    font-size: 13px;
    color: var(--slate-500);
}

.report-sample-label {
    display: inline-block;
    margin-top: 10px;
    font-size: 11px;
    font-style: italic;
    color: var(--slate-400);
    letter-spacing: 0.02em;
}

.report-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.report-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 100px;
    color: white;
}

.report-badge.critical { background: var(--red-600); }
.report-badge.high { background: #ea580c; }
.report-badge.medium { background: #ca8a04; }
.report-badge.low { background: var(--blue-500); }

.report-summary-sim {
    color: var(--slate-400);
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 16px;
}

.finding-sim {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin-bottom: 12px;
}

.finding-sim-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.finding-sim-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-200);
}

.finding-sim-rule {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--slate-500);
}

.finding-sim-desc {
    font-size: 13px;
    color: var(--slate-500);
    line-height: 1.5;
}

.finding-sim.medium { border-left-color: var(--amber-500); }

.report-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.03);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s;
}

.report-cta:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.06);
    transform: translateY(-1px);
}

.exposure-section {
    background: var(--white);
}

.exposure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.exposure-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 10px;
    padding: 18px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-700);
    line-height: 1.5;
    transition: all 0.2s;
}

.exposure-card:hover {
    border-color: var(--slate-300);
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.exposure-card strong {
    display: block;
    font-size: 15px;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.exposure-card p {
    font-size: 14px;
    font-weight: 400;
    color: var(--slate-600);
}

/* ----- Offer Section ----- */

.offer-section {
    background: var(--slate-50);
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
}

.offer-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

.offer-card,
.offer-details {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.offer-card-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.offer-card h3,
.offer-details h3 {
    font-family: 'Source Serif 4', serif;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--slate-900);
    margin-bottom: 12px;
}

.offer-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.offer-stat {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 14px;
}

.offer-stat-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--slate-500);
    margin-bottom: 6px;
}

.offer-stat-value {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--slate-900);
}

.offer-list-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--slate-700);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.cf-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cf-bullet-list li {
    position: relative;
    padding-left: 18px;
    font-size: 15px;
    color: var(--slate-700);
    line-height: 1.6;
}

.cf-bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.offer-list {
    margin-bottom: 24px;
}

.offer-note {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--slate-600);
    margin-bottom: 24px;
}

/* ----- How It Works ----- */

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--slate-200);
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--slate-900);
    color: var(--white);
    font-family: 'Source Serif 4', serif;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.6;
    max-width: 240px;
    margin: 0 auto;
}

/* ----- FAQ ----- */

.faq-section {
    background: var(--white);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 720px;
}

.faq-item {
    border-bottom: 1px solid var(--slate-200);
    padding: 0;
}

.faq-item:first-child {
    border-top: 1px solid var(--slate-200);
}

.faq-item summary {
    font-size: 16px;
    font-weight: 600;
    color: var(--slate-900);
    padding: 20px 32px 20px 0;
    cursor: pointer;
    list-style: none;
    position: relative;
    line-height: 1.4;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 20px;
    font-size: 20px;
    font-weight: 400;
    color: var(--slate-400);
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: '\2212';
    color: var(--accent);
}

.faq-item p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.7;
    padding: 0 0 20px 0;
}

/* ----- CTA Section ----- */

.cta-section {
    background: var(--slate-950);
    text-align: center;
}

.cta-section .section-title {
    color: var(--white);
    max-width: 600px;
    margin: 0 auto 16px;
}

.cta-section .section-desc {
    color: var(--slate-400);
    max-width: 500px;
    margin: 0 auto 40px;
    text-align: center;
}

.purchase-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 24px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
}

.purchase-card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.purchase-card-copy {
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate-300);
    text-align: left;
}

.purchase-card-copy strong {
    color: var(--white);
}

.purchase-card-support {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--slate-500);
    text-align: left;
}

/* ----- Disclaimers ----- */

.disclaimers {
    background: var(--slate-950);
    padding: 0 20px 32px;
}

.disclaimers p {
    font-size: 10px;
    color: var(--slate-600);
    line-height: 1.8;
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}

/* ----- CF Footer ----- */

.cf-footer {
    background: var(--slate-950);
    padding: 32px;
    text-align: center;
}

.cf-footer p {
    font-size: 13px;
    color: var(--slate-600);
}

.cf-footer a {
    color: var(--slate-500);
    text-decoration: none;
}

.cf-footer a:hover { color: var(--slate-300); }

/* ----- Sample Report Page ----- */

.sample-report-page {
    background: var(--slate-50);
    padding-top: calc(var(--header-stack) + 40px);
}

.sample-report-inner {
    max-width: 880px;
}

.sample-report-page .report-header {
    background: var(--slate-950);
    color: var(--slate-50);
    padding: 40px 32px;
    margin-bottom: 24px;
    border-radius: 12px 12px 0 0;
}

.sample-report-page .report-header h1 {
    font-family: 'Source Serif 4', serif;
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    margin-bottom: 4px;
}

.sample-report-page .report-header .subtitle {
    color: var(--slate-400);
    font-size: 15px;
}

.sample-report-page .report-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.14);
    border: 1px solid rgba(59, 130, 246, 0.28);
    color: #bfdbfe;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
}

.sample-report-page .header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--slate-300);
}

.sample-report-page .header-meta span {
    white-space: nowrap;
}

.sample-report-page .header-meta .label {
    color: var(--slate-500);
    margin-right: 4px;
}

.sample-report-page .header-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.sample-report-page .source,
.sample-report-page .sample-guide,
.sample-report-page .executive-summary,
.sample-report-page .sample-note {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 10px;
    padding: 24px 28px;
    margin-bottom: 24px;
}

.sample-report-page .source h3,
.sample-report-page .sample-guide h3,
.sample-report-page .executive-summary h3,
.sample-report-page .sample-note h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-500);
    margin-bottom: 12px;
}

.sample-report-page .source-detail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.sample-report-page .source-title {
    font-weight: 600;
    color: var(--slate-900);
}

.sample-report-page .source-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--accent);
    word-break: break-all;
}

.sample-report-page .source-type {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    background: var(--slate-200);
    color: var(--slate-600);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 2px 8px;
    border-radius: 4px;
}

.sample-report-page .sample-guide p,
.sample-report-page .executive-summary p,
.sample-report-page .sample-note p {
    font-size: 15px;
    color: var(--slate-700);
    line-height: 1.7;
}

.sample-report-page .sample-guide p,
.sample-report-page .executive-summary p {
    margin-bottom: 16px;
}

.sample-report-page .sample-guide p:last-child,
.sample-report-page .executive-summary p:last-child {
    margin-bottom: 0;
}

.sample-report-page .sample-guide {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-color: #bfdbfe;
}

.sample-report-page .sample-guide h3 {
    color: #1d4ed8;
}

.sample-report-page .guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.sample-report-page .guide-item {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    padding: 14px 16px;
}

.sample-report-page .guide-item h4 {
    font-size: 13px;
    color: var(--slate-900);
    margin-bottom: 6px;
}

.sample-report-page .guide-item p {
    font-size: 13px;
    color: var(--slate-600);
    margin: 0;
    line-height: 1.6;
}

.sample-report-page .executive-summary {
    border-left: 4px solid var(--accent);
}

.sample-report-page .findings-header {
    font-family: 'Source Serif 4', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--slate-200);
}

.sample-report-page .finding {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-left: 3px solid var(--slate-300);
    border-radius: 0 8px 8px 0;
    padding: 20px 24px;
    margin-bottom: 16px;
    transition: box-shadow 0.2s;
}

.sample-report-page .finding:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.sample-report-page .finding-medium {
    background: #fefce8;
    border-left-color: #ca8a04;
}

.sample-report-page .finding-low {
    background: #eff6ff;
    border-left-color: var(--blue-600);
}

.sample-report-page .finding-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

.sample-report-page .finding-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.sample-report-page .finding-number {
    font-family: 'JetBrains Mono', monospace;
    color: var(--slate-400);
    font-size: 13px;
    font-weight: 500;
}

.sample-report-page .authority-badge {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
}

.sample-report-page .authority-badge.sec {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid var(--green-600);
}

.sample-report-page .authority-badge.finra {
    background: #faf5ff;
    color: #6b21a8;
    border: 1px solid #9333ea;
}

.sample-report-page .category-tag {
    font-size: 12px;
    color: var(--slate-600);
    font-weight: 500;
}

.sample-report-page .rule-info {
    margin-bottom: 4px;
}

.sample-report-page .citation {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    color: var(--slate-900);
    margin-right: 8px;
}

.sample-report-page .rule-name {
    font-size: 14px;
    color: var(--slate-600);
}

.sample-report-page .rule-description {
    font-size: 13px;
    color: var(--slate-500);
    margin-bottom: 12px;
    font-style: italic;
}

.sample-report-page .excerpt {
    background: var(--slate-50);
    border-left: 3px solid var(--slate-300);
    padding: 12px 16px;
    margin: 0 0 12px 0;
    font-size: 14px;
    color: var(--slate-700);
    border-radius: 0 6px 6px 0;
    line-height: 1.6;
}

.sample-report-page .excerpt-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    justify-content: space-between;
}

.sample-report-page .excerpt-label-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sample-report-page .tooltip-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.sample-report-page .context {
    font-size: 13px;
    color: var(--slate-500);
    margin-bottom: 12px;
    padding-left: 16px;
}

.sample-report-page .context-label {
    font-weight: 600;
    color: var(--slate-600);
}

.sample-report-page .info-tip {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--slate-300);
    color: var(--slate-500);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    flex: 0 0 auto;
    transition: border-color 0.2s, color 0.2s, box-shadow 0.2s, background 0.2s;
    white-space: nowrap;
}

.sample-report-page .info-tip:hover,
.sample-report-page .info-tip:focus-visible,
.sample-report-page .info-tip[aria-expanded="true"] {
    border-color: var(--accent-light);
    color: var(--accent);
    background: #eff6ff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.16);
    outline: none;
}

.sample-report-page .tooltip-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 20;
    width: min(320px, calc(100vw - 64px));
    padding: 12px 14px;
    border-radius: 8px;
    background: var(--slate-950);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--slate-100);
    font-size: 12px;
    line-height: 1.6;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
}

.sample-report-page .tooltip-panel[hidden] {
    display: none;
}

.sample-report-page .tooltip-panel::before {
    content: "";
    position: absolute;
    top: -6px;
    right: 12px;
    width: 12px;
    height: 12px;
    background: var(--slate-950);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-left: 1px solid rgba(255,255,255,0.08);
    transform: rotate(45deg);
}

.sample-report-page .explanation {
    margin-bottom: 12px;
}

.sample-report-page .explanation h4,
.sample-report-page .remediation h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.sample-report-page .explanation h4 {
    color: var(--slate-500);
}

.sample-report-page .explanation p,
.sample-report-page .remediation p {
    font-size: 14px;
    color: var(--slate-700);
    line-height: 1.6;
}

.sample-report-page .remediation {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
    padding: 12px 16px;
}

.sample-report-page .remediation h4 {
    color: #166534;
}

.sample-report-page .remediation p {
    color: #15803d;
}

.sample-report-page .report-bottom {
    background: var(--slate-950);
    border-radius: 0 0 12px 12px;
    padding: 32px;
    margin-top: 32px;
}

.sample-report-page .sample-report-disclaimers {
    font-size: 12px;
    color: var(--slate-400);
    line-height: 1.6;
}

.sample-report-page .sample-report-disclaimers p {
    margin-bottom: 8px;
}

.sample-report-page .sample-report-disclaimers p:last-child {
    margin-bottom: 0;
}

.sample-report-page .report-footer {
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--slate-500);
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

@media print {
    body.brand-complianceflag {
        background: #fff;
        color: #0f172a;
    }

    .cf-context-bar,
    .cf-nav,
    .disclaimers,
    .cf-footer {
        display: none !important;
    }

    .site-main,
    .cf-section,
    .section-inner {
        margin: 0;
        padding: 0;
        max-width: none;
    }

    .offer-note {
        color: #0f172a;
    }

    a,
    a:visited {
        color: #0f172a;
        text-decoration: none;
    }

    @page {
        margin: 0.6in;
    }
}

/* ----- Responsive ----- */

@media (max-width: 768px) {
    .cf-hero { padding: calc(var(--header-stack) + 56px) 20px 60px; }
    .cf-section { padding: 60px 20px; }
    .steps { grid-template-columns: 1fr; gap: 40px; }
    .steps::before { display: none; }
    .cf-nav { padding: 0 16px; }
    .report-body { padding: 20px; }
    .offer-layout,
    .offer-stat-row { grid-template-columns: 1fr; }
    .hero-trust-strip { gap: 10px; }
    .trust-pill { width: 100%; justify-content: center; }
    .cf-context-bar { font-size: 12px; }
    .purchase-card-row { flex-direction: column; align-items: stretch; }
    .purchase-card-copy,
    .purchase-card-support { text-align: center; }
    .sample-report-page .report-header,
    .sample-report-page .source,
    .sample-report-page .sample-guide,
    .sample-report-page .executive-summary,
    .sample-report-page .sample-note,
    .sample-report-page .finding {
        padding: 20px;
    }
    .sample-report-page .header-meta {
        flex-direction: column;
        gap: 8px;
    }
    .sample-report-page .excerpt-label-group {
        align-items: flex-start;
        flex-direction: column;
    }
    .sample-report-page .tooltip-panel {
        right: auto;
        left: 0;
        width: min(300px, calc(100vw - 72px));
    }
    .sample-report-page .tooltip-panel::before {
        right: auto;
        left: 12px;
    }
}

@media (max-width: 640px) {
    .purchase-card .btn-primary {
        width: 100%;
        justify-content: center;
    }
    .sample-report-page .header-badges {
        gap: 6px;
    }
}

/* ----- Animations ----- */

@media (prefers-reduced-motion: no-preference) {
    .cf-hero h1, .hero-sub, .hero-badge, .hero-cta-group {
        animation: fadeUp 0.6s ease-out both;
    }
    .hero-badge { animation-delay: 0s; }
    .cf-hero h1 { animation-delay: 0.1s; }
    .hero-sub { animation-delay: 0.2s; }
    .hero-cta-group { animation-delay: 0.3s; }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
