/* ═══════════════════════════════════════════════════════════════════
   Fidelity Check — Design System
   Dark theme · Electric blue + black · Mobile-first
   System fonts only (zero web-font load for pagespeed)
   ═══════════════════════════════════════════════════════════════════ */

:root {
    --bg:            #05070D;
    --bg-1:          #0A0F1C;
    --surface:       #0E1526;
    --surface-2:     #141C30;
    --surface-3:     #1B2540;
    --border:        rgba(148, 184, 255, 0.10);
    --border-2:      rgba(148, 184, 255, 0.18);
    --border-glow:   rgba(0, 150, 255, 0.45);

    --text:          #F8FAFC;
    --text-2:        #CBD5E1;
    --text-3:        #94A3B8;
    --text-4:        #64748B;

    --primary:       #0096FF;
    --primary-2:     #38BDF8;
    --primary-3:     #00D4FF;
    --primary-dark:  #0369A1;
    --primary-glow:  rgba(0, 150, 255, 0.45);

    --success:       #10B981;
    --success-soft:  rgba(16, 185, 129, 0.14);
    --warn:          #F59E0B;
    --danger:        #EF4444;
    --danger-soft:   rgba(239, 68, 68, 0.14);

    --radius-sm: 6px;
    --radius:    12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-md:  0 10px 30px rgba(0, 0, 0, 0.45);
    --shadow-lg:  0 20px 60px rgba(0, 0, 0, 0.55);
    --shadow-glow: 0 0 0 1px rgba(0, 150, 255, 0.35), 0 8px 32px rgba(0, 150, 255, 0.25);

    --font-sans: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-mono: ui-monospace, "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    background-color: var(--bg);
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    background-image:
        radial-gradient(1200px 600px at 50% -100px, rgba(0, 150, 255, 0.22), transparent 65%),
        radial-gradient(800px 400px at 100% 120%, rgba(56, 189, 248, 0.14), transparent 60%);
    background-repeat: no-repeat;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--primary-2); text-decoration: none; }
a:hover { color: var(--primary-3); }

button { font-family: inherit; cursor: pointer; border: 0; }

input, select, textarea { font-family: inherit; font-size: 16px; color: var(--text); }

/* ═══ Layout ═══ */
.container {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 20px;
}
.container--wide { max-width: 720px; }
.container--xwide { max-width: 960px; }

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-pad { padding-top: 32px; padding-bottom: 80px; }

/* ═══ Topbar ═══ */
.topbar {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    background: rgba(5, 7, 13, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 50;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text);
    font-size: 16px;
}
.brand__mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-3), var(--primary));
    display: grid;
    place-items: center;
    box-shadow: 0 0 16px var(--primary-glow);
}
.brand__mark svg { width: 16px; height: 16px; color: #001829; }

.topbar__badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-3);
    padding: 6px 10px;
    border: 1px solid var(--border-2);
    border-radius: 999px;
}
.topbar__badge::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    margin-right: 8px;
    vertical-align: middle;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
    animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ═══ Hero ═══ */
.hero {
    padding: 56px 20px 40px;
    text-align: center;
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-2);
    padding: 8px 16px;
    background: rgba(0, 150, 255, 0.10);
    border: 1px solid rgba(0, 150, 255, 0.28);
    border-radius: 999px;
    margin-bottom: 20px;
}
.hero__title {
    font-size: clamp(32px, 7vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin: 0 0 18px;
    color: var(--text);
}
.hero__title .accent {
    background: linear-gradient(135deg, var(--primary-3), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__sub {
    font-size: clamp(16px, 4vw, 19px);
    line-height: 1.55;
    color: var(--text-2);
    max-width: 520px;
    margin: 0 auto 36px;
}
.hero__sub strong { color: var(--text); }

/* ═══ Button ═══ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: 14px;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
    background: linear-gradient(135deg, var(--primary-3) 0%, var(--primary) 100%);
    color: #00121F;
    box-shadow: 0 10px 28px rgba(0, 150, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 0;
    width: 100%;
    max-width: 380px;
    min-height: 56px;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 150, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #00121F;
}
.btn:active { transform: translateY(0); }
.btn[disabled], .btn.is-loading { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn.is-loading .btn__label { opacity: 0.4; }
.btn.is-loading::after {
    content: "";
    position: absolute;
    width: 18px; height: 18px;
    border: 2.5px solid rgba(0, 18, 31, 0.3);
    border-top-color: #00121F;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}
.btn { position: relative; }
@keyframes spin { to { transform: rotate(360deg); } }

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-2);
    box-shadow: none;
}
.btn--ghost:hover {
    background: var(--surface);
    color: var(--text);
    box-shadow: none;
    transform: translateY(-1px);
}

.btn--block { width: 100%; max-width: none; }

/* ═══ Pulsing CTA — A/B variant /de/ single hosted-checkout button ═══
   Pulses softly so the user notices it as the only call-to-action on the
   page, after we removed the form fields and Stripe Elements card. */
.btn-pulse {
    position: relative;
    animation: btnPulseScale 1.6s ease-in-out infinite;
    box-shadow:
        0 8px 24px -8px rgba(0,150,255,0.55),
        0 0 0 0 rgba(0,150,255,0.55);
    font-size: 16px;
    letter-spacing: 0.02em;
    padding: 18px 22px;
}
.btn-pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    animation: btnPulseRing 1.6s ease-out infinite;
}
.btn-pulse:hover { animation-play-state: paused; }
.btn-pulse:disabled { animation: none; box-shadow: none; opacity: 0.6; }
@keyframes btnPulseScale {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.025); }
}
@keyframes btnPulseRing {
    0%   { box-shadow: 0 0 0 0 rgba(0,150,255,0.55); }
    70%  { box-shadow: 0 0 0 14px rgba(0,150,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,150,255,0); }
}
@media (prefers-reduced-motion: reduce) {
    .btn-pulse, .btn-pulse::after { animation: none; }
}

/* ═══ Trust row ═══ */
.trust {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    justify-content: center;
    align-items: center;
    color: var(--text-3);
    font-size: 13px;
}
.trust__item { display: inline-flex; align-items: center; gap: 8px; }
.trust__item svg { width: 16px; height: 16px; color: var(--primary-2); }

/* ═══ Features grid ═══ */
.features {
    padding: 48px 20px 24px;
}
.features__title {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-2);
    margin: 0 0 24px;
}
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 560px;
    margin: 0 auto;
}
.feature {
    display: flex;
    gap: 14px;
    padding: 18px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    align-items: flex-start;
}
.feature__icon {
    flex: 0 0 40px;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(0, 150, 255, 0.12);
    display: grid; place-items: center;
    color: var(--primary-2);
}
.feature__icon svg { width: 20px; height: 20px; }
.feature__body h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
}
.feature__body p {
    margin: 0;
    font-size: 14px;
    color: var(--text-3);
    line-height: 1.55;
}

/* ═══ Card ═══ */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    box-shadow: var(--shadow-md);
}
.card__title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.card__sub {
    margin: 0 0 24px;
    color: var(--text-3);
    font-size: 15px;
}

/* ═══ Form ═══ */
.form-group { margin-bottom: 16px; }
.form-group:last-child { margin-bottom: 0; }

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 8px;
}

.input, .select {
    display: block;
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-1);
    color: var(--text);
    border: 1.5px solid var(--border-2);
    border-radius: 10px;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
    -webkit-appearance: none;
    appearance: none;
}
.input::placeholder { color: var(--text-4); }
.input:focus, .select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 150, 255, 0.20);
    background: var(--surface);
}

.select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394A3B8' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-4);
}

.form-msg {
    font-size: 14px;
    margin-top: 12px;
    min-height: 18px;
    text-align: center;
    color: var(--text-3);
}
.form-msg.is-error { color: var(--danger); }
.form-msg.is-success { color: var(--success); }

/* ═══ Step progress ═══ */
.steps {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px 0;
    max-width: 560px;
    margin: 0 auto;
}
.steps__item {
    flex: 1;
    height: 4px;
    background: var(--surface-2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.steps__item.is-done,
.steps__item.is-active {
    background: linear-gradient(90deg, var(--primary-3), var(--primary));
    box-shadow: 0 0 16px var(--primary-glow);
}
.steps__label {
    display: block;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-3);
    margin: 12px 0 4px;
    font-weight: 600;
}

/* ═══ Analyzing page ═══ */
.scan {
    padding: 24px 20px 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.scan__orb {
    width: min(260px, 64vw);
    aspect-ratio: 1;
    border-radius: 50%;
    position: relative;
    margin: 8px auto 0;
    display: grid;
    place-items: center;
}
.scan__orb::before, .scan__orb::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    opacity: 0.7;
    animation: orbRing 2.4s ease-out infinite;
}
.scan__orb::after { animation-delay: 1.2s; }
@keyframes orbRing {
    0%   { transform: scale(0.7); opacity: 0.9; }
    100% { transform: scale(1.25); opacity: 0; }
}
.scan__orb-core {
    position: relative;
    width: 58%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, var(--primary-3), var(--primary) 45%, #062137 80%);
    box-shadow: 0 0 60px rgba(0, 150, 255, 0.55), inset 0 0 40px rgba(0, 212, 255, 0.35);
    display: grid;
    place-items: center;
    color: #00121F;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}
.scan__percent {
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.03em;
}
.scan__timer {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-3);
    letter-spacing: 0.1em;
    font-variant-numeric: tabular-nums;
}
.scan__title {
    margin: 4px 0 0;
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.02em;
}
.scan__sub {
    margin: 0;
    text-align: center;
    font-size: 14px;
    color: var(--text-3);
    max-width: 360px;
}
.progress {
    width: 100%;
    max-width: 460px;
    height: 8px;
    background: var(--surface-2);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}
.progress__bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-3), var(--primary));
    width: 0%;
    border-radius: 999px;
    box-shadow: 0 0 12px rgba(0, 150, 255, 0.7);
    transition: width .3s linear;
}
.progress__bar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    animation: progressShine 1.4s linear infinite;
}
@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.scan-log {
    width: 100%;
    max-width: 460px;
    display: flex;
    /* Newest item always appears at the top — older ones push down and fade out. */
    flex-direction: column-reverse;
    gap: 8px;
    margin-top: 4px;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 calc(100% - 24px), transparent 100%);
            mask-image: linear-gradient(to bottom, #000 0%, #000 calc(100% - 24px), transparent 100%);
}
.scan-item {
    /* hidden by default — items only contribute to layout when explicitly shown */
    display: none;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-2);
    max-height: 80px;
    overflow: hidden;
    transition: opacity .45s ease, max-height .45s ease, padding .45s ease, border-color .3s ease, background .3s ease;
}
.scan-item.is-visible {
    display: flex;
    animation: scanItemIn .5s ease;
}
.scan-item.is-collapsed {
    display: flex !important;
    opacity: 0 !important;
    max-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-width: 0 !important;
}
@keyframes scanItemIn {
    0%   { opacity: 0; transform: translateY(-14px); }
    100% { opacity: 1; transform: translateY(0); }
}
.scan-item.is-visible { opacity: 1; transform: translateY(0); }
.scan-item.is-working { border-color: var(--border-glow); background: rgba(0, 150, 255, 0.08); }
.scan-item.is-done    { opacity: 0.6; }

.scan-item__dot {
    width: 14px; height: 14px;
    border-radius: 50%;
    flex: 0 0 14px;
    background: var(--surface-3);
    border: 1.5px solid var(--border-2);
    position: relative;
}
.scan-item.is-working .scan-item__dot {
    border-color: var(--primary);
    background: radial-gradient(circle, var(--primary-3), var(--primary));
    animation: dotPulse 1.2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 150, 255, 0.7); }
    50% { box-shadow: 0 0 0 6px rgba(0, 150, 255, 0); }
}
.scan-item.is-done .scan-item__dot {
    background: var(--success);
    border-color: var(--success);
}
.scan-item.is-done .scan-item__dot::after {
    content: "";
    position: absolute;
    left: 3px; top: 1px;
    width: 4px; height: 8px;
    border: solid #00121F;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.scan-item__label { flex: 1; }
.scan-item__meta { font-size: 12px; color: var(--text-4); font-family: var(--font-mono); }

/* ═══ Checkout ═══ */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.order-summary {
    padding: 20px;
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
}
.order-summary__title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-2);
    margin: 0 0 12px;
}
.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 15px;
}
.order-item:last-child { border-bottom: none; font-weight: 700; font-size: 17px; padding-top: 16px; }
.order-item__old {
    color: var(--text-4);
    text-decoration: line-through;
    margin-right: 8px;
    font-size: 14px;
    font-weight: 400;
}

.includes {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.includes li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.45;
}
.includes li svg {
    flex: 0 0 16px;
    width: 16px; height: 16px;
    color: var(--success);
    margin-top: 3px;
}

#stripe-express-checkout { min-height: 54px; margin-bottom: 8px; }
.express-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    color: var(--text-4);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.express-divider::before, .express-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

#stripe-payment-element {
    padding: 4px;
    border-radius: 10px;
    background: var(--bg-1);
    border: 1.5px solid var(--border-2);
    transition: border-color .15s;
}
#stripe-payment-element.is-focused { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0, 150, 255, 0.18); }

.checkout-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    justify-content: center;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-3);
}
.checkout-trust span { display: inline-flex; align-items: center; gap: 6px; }
.checkout-trust svg { width: 14px; height: 14px; color: var(--primary-2); }

/* ═══ Report ═══ */
.report-header {
    text-align: center;
    padding: 24px 20px 12px;
}
.report-header__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary-2);
    margin-bottom: 12px;
}
.report-header__title {
    font-size: clamp(24px, 5.5vw, 32px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
}
.report-header__sub {
    margin: 0;
    color: var(--text-3);
    font-size: 14px;
}

.report-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 20px 0;
}
.report-meta__item {
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
}
.report-meta__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-4);
    margin-bottom: 4px;
}
.report-meta__value { font-size: 16px; font-weight: 700; color: var(--text); }

.score-card {
    padding: 28px 22px;
    background: radial-gradient(circle at 70% 0%, rgba(0, 150, 255, 0.28), transparent 55%), var(--surface);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glow);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.score-card__label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--primary-2);
    margin-bottom: 14px;
}
.score-ring {
    margin: 0 auto 16px;
    position: relative;
    width: 180px;
    height: 180px;
}
.score-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.score-ring__track { stroke: var(--surface-3); }
.score-ring__bar   { stroke: url(#scoreGrad); stroke-linecap: round; transition: stroke-dashoffset 1.2s cubic-bezier(.65,.05,.36,1); }
.score-ring__inner {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
}
.score-ring__num {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--text);
}
.score-ring__den {
    font-size: 14px;
    color: var(--text-3);
    margin-top: 4px;
}

.score-verdict {
    display: inline-block;
    padding: 6px 14px;
    background: var(--success-soft);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.35);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.score-summary {
    color: var(--text-2);
    font-size: 15px;
    line-height: 1.6;
    margin: 10px 0 0;
}

.section-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary-2);
    margin: 32px 0 12px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.stat {
    padding: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
}
.stat__num {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}
.stat__label {
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 2px;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.chip {
    display: inline-block;
    padding: 6px 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 12px;
    color: var(--text-2);
}
.chip--ok { border-color: rgba(16, 185, 129, 0.35); color: #6ee7b7; background: var(--success-soft); }

.flag-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.flag-list li {
    display: flex;
    gap: 10px;
    padding: 12px 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-2);
    align-items: flex-start;
}
.flag-list li::before {
    content: "";
    flex: 0 0 14px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--success);
    margin-top: 4px;
    position: relative;
}

.bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bar {
    display: grid;
    grid-template-columns: 1fr 50px;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    color: var(--text-2);
}
.bar__label { font-weight: 500; }
.bar__track {
    grid-column: 1 / -1;
    height: 6px;
    background: var(--surface-2);
    border-radius: 999px;
    overflow: hidden;
    margin-top: -2px;
}
.bar__fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--success), #6ee7b7);
    transition: width 1.2s cubic-bezier(.65,.05,.36,1);
}
.bar__fill.is-medium { background: linear-gradient(90deg, var(--warn), #fcd34d); }
.bar__pct { font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; text-align: right; }

.disclosure {
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-left: 3px solid var(--primary);
    border-radius: 10px;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.65;
}
.disclosure strong { color: var(--text); }

.report-footer {
    padding: 32px 20px 64px;
    text-align: center;
    color: var(--text-4);
    font-size: 12px;
    line-height: 1.6;
}
.report-footer a { color: var(--text-3); }

/* ═══ Video testimonials (UGC grid, 9:16 cards) ═══ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 8px;
}
@media (min-width: 640px) {
    .testimonial-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (min-width: 960px) {
    .testimonial-grid { grid-template-columns: repeat(5, 1fr); gap: 14px; }
}

.testimonial-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .15s ease, border-color .2s ease, box-shadow .2s ease;
}
.testimonial-card:hover {
    border-color: var(--border-2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.testimonial-card__video {
    position: relative;
    width: 100%;
    padding-top: 177.777%; /* 9:16 portrait */
    background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
    overflow: hidden;
}
.testimonial-card__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


.testimonial-card__meta {
    padding: 10px 12px 12px;
}
.testimonial-card__rating {
    color: #FFB648;
    letter-spacing: 2px;
    font-size: 11px;
    line-height: 1;
    margin-bottom: 4px;
}
.testimonial-card__name {
    font-size: 12px;
    color: var(--text-3);
    font-weight: 600;
    line-height: 1.35;
}

/* ═══ Starfield (subtle ambient) ═══ */
.stars {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    opacity: 0.6;
}
.stars::before, .stars::after {
    content: "";
    position: absolute;
    inset: -50%;
    background-image:
        radial-gradient(1px 1px at 25% 30%, rgba(255,255,255,0.7), transparent 100%),
        radial-gradient(1px 1px at 10% 70%, rgba(255,255,255,0.5), transparent 100%),
        radial-gradient(1px 1px at 75% 15%, rgba(255,255,255,0.6), transparent 100%),
        radial-gradient(1px 1px at 60% 85%, rgba(255,255,255,0.4), transparent 100%),
        radial-gradient(1px 1px at 40% 50%, rgba(0, 212, 255, 0.6), transparent 100%),
        radial-gradient(1px 1px at 90% 40%, rgba(255,255,255,0.5), transparent 100%);
    background-size: 600px 600px;
}
.stars::after {
    background-size: 800px 800px;
    animation: twinkle 6s ease-in-out infinite alternate;
    opacity: 0.5;
}
@keyframes twinkle { to { opacity: 0.2; } }

/* ═══ Utility ═══ */
.hidden { display: none !important; }
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* ═══ Responsive ═══ */
@media (min-width: 640px) {
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .report-meta { grid-template-columns: 1fr 1fr; }
    .stat-grid   { grid-template-columns: repeat(4, 1fr); }
    .hero { padding: 80px 20px 60px; }
    .page-pad { padding-top: 56px; padding-bottom: 96px; }
}
@media (min-width: 960px) {
    .checkout-grid { grid-template-columns: 1.1fr 1fr; gap: 24px; }
    .checkout-grid .order-summary { position: sticky; top: 80px; align-self: start; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
