/* ═══════════════════════════════════════════════════════════════════════
   SpamZero — Design System
   Direction: Bold industrial / postal motif / warm-on-dark
   Fonts: Instrument Sans (headings) + Newsreader (body)
   ═══════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&family=Newsreader:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ─── CSS Variables ──────────────────────────────────────────────────── */

:root {
    --c-bg: #0C0E12;
    --c-bg-raised: #14171E;
    --c-bg-card: #1A1E28;
    --c-bg-card-hover: #222838;
    --c-surface: #252B38;

    --c-text: #E8E4DE;
    --c-text-muted: #A5A09A;
    --c-text-dim: #847F79;

    --c-accent: #E8A838;
    --c-accent-hover: #F0B848;
    --c-accent-dim: rgba(232, 168, 56, 0.15);

    --c-danger: #E85C4A;
    --c-danger-dim: rgba(232, 92, 74, 0.12);
    --c-success: #3EBD7C;
    --c-success-dim: rgba(62, 189, 124, 0.12);
    --c-warning: #E8A838;
    --c-warning-dim: rgba(232, 168, 56, 0.12);

    --c-border: rgba(255, 255, 255, 0.06);
    --c-border-accent: rgba(232, 168, 56, 0.3);

    --font-display: 'Instrument Sans', sans-serif;
    --font-body: 'Newsreader', Georgia, serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --radius: 4px;
    --radius-lg: 8px;

    --shadow-card: 0 2px 16px rgba(0,0,0,0.3), 0 0 0 1px var(--c-border);
    --shadow-accent: 0 4px 24px rgba(232, 168, 56, 0.2);
}

/* ─── Reset & Base ───────────────────────────────────────────────────── */

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

:focus-visible {
    outline: 2px solid var(--c-accent);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 10000;
    padding: 0.6rem 1.2rem;
    background: var(--c-accent);
    color: var(--c-bg);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--radius);
    transition: top 0.15s;
}

.skip-link:focus {
    top: 0.5rem;
}

html {
    font-size: 17px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.65;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Grain overlay — signature element */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

a { color: var(--c-accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--c-accent-hover); }

img { max-width: 100%; height: auto; }

/* ─── Typography ─────────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 { font-size: 3.2rem; font-weight: 700; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: 1em; }

.text-accent { color: var(--c-accent); }
.text-muted { color: var(--c-text-muted); }
.text-success { color: var(--c-success); }
.text-danger { color: var(--c-danger); }

/* ─── Layout ─────────────────────────────────────────────────────────── */

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container--narrow {
    max-width: 780px;
}

.section {
    padding: 5rem 0;
}

.section--alt {
    background: var(--c-bg-raised);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}

/* ─── Header / Nav ───────────────────────────────────────────────────── */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(12, 14, 18, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--c-border);
    padding: 0.8rem 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--c-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--c-accent);
    color: var(--c-bg);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 2px;
    transform: rotate(-3deg);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover .logo__mark {
    transform: rotate(0deg) scale(1.08);
}

.logo span {
    background: linear-gradient(135deg, var(--c-text), var(--c-text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav { display: flex; gap: 1.8rem; align-items: center; margin-left: 2.5rem; }

.nav a {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-accent);
    transition: width 0.3s ease;
}

.nav a:hover, .nav a[aria-current="page"] { color: var(--c-text); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; color: var(--c-text); cursor: pointer; padding: 4px; line-height: 0; }

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--c-bg-raised);
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid var(--c-border);
    }
    .nav.open { display: flex; }
}

/* Nav dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown > a { display: flex; align-items: center; gap: 0.25rem; }
.nav__chevron { transition: transform 0.2s ease; flex-shrink: 0; }
.nav__submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-bg-raised);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    padding: 12px 0.4rem 0.4rem 0.4rem;
    min-width: 150px;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.nav__dropdown:hover .nav__submenu,
.nav__dropdown:focus-within .nav__submenu { display: block; }
.nav__dropdown:hover .nav__chevron,
.nav__dropdown:focus-within .nav__chevron { transform: rotate(180deg); }
.nav__submenu a { display: block; padding: 0.4rem 0.75rem; border-radius: 5px; white-space: nowrap; }
.nav__submenu a::after { display: none; }
.nav__submenu a:hover { background: var(--c-surface); }

.nav-cta {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-accent);
    padding: 0.85rem 2.6rem;
    border: 1.5px solid var(--c-accent);
    border-radius: 3px;
    margin-left: 0.8rem;
    transition: all 0.25s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.8rem;
}

.nav-cta:hover {
    background: var(--c-accent-dim);
    color: var(--c-accent-hover);
    border-color: var(--c-accent-hover);
}

@media (max-width: 768px) {
    .nav__submenu {
        display: block;
        position: static;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 0.75rem;
        min-width: 0;
    }
    .nav__chevron { display: none; }
}

/* ─── Footer ─────────────────────────────────────────────────────────── */

.footer {
    border-top: 1px solid var(--c-border);
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer__col h4 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-text-muted);
    margin-bottom: 0.8rem;
}

.footer__col a {
    display: block;
    color: var(--c-text-muted);
    font-size: 0.9rem;
    padding: 0.2rem 0;
}

.footer__col a:hover { color: var(--c-accent); }

.footer__bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--c-border);
    text-align: center;
    color: var(--c-text-muted);
    font-size: 0.85rem;
}

/* ─── Buttons ────────────────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    padding: 0.75rem 1.6rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.25s;
}

.btn:hover::before { opacity: 1; }

.btn--primary {
    background: var(--c-text);
    color: var(--c-bg);
}

.btn--primary:hover {
    background: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255,255,255,0.15);
    color: var(--c-bg);
}

.btn--outline {
    background: transparent;
    color: var(--c-accent);
    border: 2px solid var(--c-accent);
}

.btn--outline:hover {
    background: var(--c-accent-dim);
    transform: translateY(-2px);
    color: var(--c-accent);
}

.btn--ghost {
    background: var(--c-surface);
    color: var(--c-text);
    border: 1px solid var(--c-border);
}

.btn--ghost:hover {
    background: var(--c-bg-card-hover);
    border-color: var(--c-text-dim);
}

.btn--sm { padding: 0.5rem 1rem; font-size: 0.8rem; white-space: nowrap; }
.btn--lg { padding: 1rem 2.2rem; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }

/* ─── Hero Section ───────────────────────────────────────────────────── */

.hero {
    padding: 6rem 0 4rem;
    position: relative;
}

.hero__layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-accent);
    background: var(--c-accent-dim);
    padding: 0.4rem 1rem;
    border-radius: 2px;
    border-left: 3px solid var(--c-accent);
    margin-bottom: 1.5rem;
}

.hero h1 {
    margin-bottom: 1.2rem;
}

.hero h1 .highlight {
    position: relative;
    display: inline;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: -4px;
    right: -4px;
    height: 12px;
    background: var(--c-accent);
    opacity: 0.25;
    z-index: -1;
    transform: skewX(-6deg);
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--c-text-muted);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.7;
}

/* Domain input — hero version */
.domain-form {
    display: flex;
    gap: 0;
    max-width: 520px;
}

.domain-form__input {
    flex: 1;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 1.4rem;
    background: var(--c-bg-card);
    color: var(--c-text);
    border: 2px solid var(--c-border);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    outline: 2px solid transparent;
    outline-offset: 2px;
    transition: border-color 0.3s;
}

.domain-form__input::placeholder {
    color: var(--c-text-dim);
    font-weight: 400;
}

.domain-form__input:focus {
    border-color: var(--c-accent);
}

.domain-form__input:focus-visible {
    outline-color: var(--c-accent);
}

.domain-form__btn {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 1rem 1.8rem;
    background: var(--c-accent);
    color: var(--c-bg);
    border: 2px solid var(--c-accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}

.domain-form__btn:hover {
    background: var(--c-accent-hover);
    border-color: var(--c-accent-hover);
    box-shadow: var(--shadow-accent);
}

.domain-form__input:invalid:not(:placeholder-shown):not(:focus) {
    border-color: var(--c-danger, #e05252);
}

.domain-form__error {
    color: var(--c-danger, #e05252);
    font-size: 0.82rem;
    margin-top: 0.4rem;
    display: none;
}

.domain-form__error.visible {
    display: block;
}

/* Hero visual — right side */
.hero__visual {
    position: relative;
}

.hero__card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transform: rotate(2deg);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero__card:hover {
    transform: rotate(0deg);
}

.hero__card-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--c-border);
}

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

.hero__check-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
}

.hero__check-row .label { color: var(--c-text-muted); }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge--ok { background: var(--c-success-dim); color: var(--c-success); }
.badge--fail { background: var(--c-danger-dim); color: var(--c-danger); }
.badge--warn { background: var(--c-warning-dim); color: var(--c-warning); }

@media (max-width: 900px) {
    .hero__layout { grid-template-columns: 1fr; gap: 2rem; }
    .hero__visual { display: flex; justify-content: center; }
    .hero__card { transform: rotate(0deg); max-width: 400px; width: 100%; }
    h1 { font-size: 2.4rem; }
}

/* ─── Stats Bar ──────────────────────────────────────────────────────── */

.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 3rem 0;
}

.stat {
    padding: 1.8rem 2rem;
    text-align: center;
    border-right: 1px solid var(--c-border);
    background: var(--c-bg-raised);
}

.stat:last-child { border-right: none; }

.stat__number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--c-accent);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat__label {
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

@media (max-width: 600px) {
    .stats-bar { grid-template-columns: 1fr; }
    .stat { border-right: none; border-bottom: 1px solid var(--c-border); }
    .stat:last-child { border-bottom: none; }
}

/* ─── Features Grid ──────────────────────────────────────────────────── */

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--c-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature:hover {
    border-color: var(--c-border-accent);
    background: var(--c-bg-card-hover);
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature__icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.6rem;
}

.feature p {
    color: var(--c-text-muted);
    font-size: 0.95rem;
}

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

/* ─── Diagnostic Results ─────────────────────────────────────────────── */

.diagnostic {
    max-width: 820px;
    margin: 0 auto;
}

.score-card {
    text-align: center;
    padding: 3rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.score-card--green {
    background: linear-gradient(135deg, rgba(62, 189, 124, 0.08), rgba(62, 189, 124, 0.02));
    border: 2px solid rgba(62, 189, 124, 0.3);
}

.score-card--orange {
    background: linear-gradient(135deg, rgba(232, 168, 56, 0.08), rgba(232, 168, 56, 0.02));
    border: 2px solid rgba(232, 168, 56, 0.3);
}

.score-card--red {
    background: linear-gradient(135deg, rgba(232, 92, 74, 0.08), rgba(232, 92, 74, 0.02));
    border: 2px solid rgba(232, 92, 74, 0.3);
}

.score-card__score {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.score-card--green .score-card__score { color: var(--c-success); }
.score-card--orange .score-card__score { color: var(--c-warning); }
.score-card--red .score-card__score { color: var(--c-danger); }

.score-card__domain {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--c-text-muted);
    margin-bottom: 0.8rem;
}

.score-card__text {
    font-size: 1.05rem;
    color: var(--c-text);
    max-width: 500px;
    margin: 0 auto;
}

/* Protocol checks */
.checks {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.check {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.2rem;
    align-items: start;
    transition: border-color 0.3s;
}

.check:hover {
    border-color: var(--c-text-dim);
}

.check__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.check--ok .check__icon { background: var(--c-success-dim); color: var(--c-success); }
.check--fail .check__icon { background: var(--c-danger-dim); color: var(--c-danger); }

.check__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.check__explain {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.check__record {
    margin-top: 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--c-text-dim);
    background: var(--c-bg);
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius);
    word-break: break-all;
}

/* Fix box */
.fix-box {
    margin-top: 1rem;
    background: var(--c-accent-dim);
    border: 1px solid var(--c-border-accent);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
}

.fix-box__label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-accent);
    margin-bottom: 0.5rem;
}

.fix-box__record {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.fix-box__type {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    background: var(--c-surface);
    padding: 0.15rem 0.5rem;
    border-radius: 2px;
    color: var(--c-text-muted);
    flex-shrink: 0;
}

.fix-box__value {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--c-text);
    background: var(--c-bg);
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius);
    flex: 1;
    word-break: break-all;
    position: relative;
}

.fix-box__name {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--c-text-dim);
    margin-bottom: 0.3rem;
}

.fix-box__note {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Copy button */
.copy-btn {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: var(--c-accent);
    color: var(--c-bg);
    border-color: var(--c-accent);
}

.copy-btn.copied {
    background: var(--c-success);
    color: #fff;
    border-color: var(--c-success);
}

/* Copy button on <pre> blocks */
.pre-copyable {
    position: relative;
}
.pre-copyable > .copy-btn {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
}

/* Copy button on inline DNS values */
.dns-copyable {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Host detection */
.host-card {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.host-card__icon {
    width: 48px;
    height: 48px;
    background: var(--c-surface);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--c-accent);
    flex-shrink: 0;
    overflow: hidden;
}

.host-card__info h4 {
    margin-bottom: 0.2rem;
}

.host-card__info p {
    color: var(--c-text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* CTA card */
.cta-card {
    background: linear-gradient(135deg, var(--c-accent-dim), rgba(232, 168, 56, 0.05));
    border: 2px solid var(--c-border-accent);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    margin-top: 2rem;
}

.cta-card h3 {
    color: var(--c-accent);
    margin-bottom: 0.8rem;
}

.cta-card p {
    color: var(--c-text);
    margin-bottom: 1.5rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.cta-card__price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 0.3rem;
}

.cta-card__price-note {
    font-size: 0.82rem;
    color: var(--c-text-muted);
    margin-bottom: 1.5rem;
}

/* CTA inline (mid-article banner) */
.cta-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--c-accent-dim), rgba(232, 168, 56, 0.05));
    border: 1px solid var(--c-border-accent);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin: 2.5rem 0;
}

.cta-inline__text strong {
    display: block;
    color: var(--c-accent);
    font-family: var(--font-display);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.cta-inline__text span {
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

@media (max-width: 600px) {
    .cta-inline {
        flex-direction: column;
        text-align: center;
    }
}

/* ─── Forms ──────────────────────────────────────────────────────────── */

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--c-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.8rem 1rem;
    background: var(--c-bg-card);
    color: var(--c-text);
    border: 2px solid var(--c-border);
    border-radius: var(--radius);
    outline: 2px solid transparent;
    outline-offset: 2px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--c-accent);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible {
    outline-color: var(--c-accent);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group .required {
    color: var(--c-danger);
}

/* ─── Breadcrumb ─────────────────────────────────────────────────────── */

.breadcrumb {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--c-border);
}

.breadcrumb__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    color: var(--c-text-muted);
}

.breadcrumb__item a {
    color: var(--c-text-muted);
    text-decoration: none;
    transition: color 0.15s;
}

.breadcrumb__item a:hover {
    color: var(--c-text);
}

.breadcrumb__item--sep {
    opacity: 0.4;
}

.breadcrumb__item--current {
    color: var(--c-text);
}

/* ─── Guide Inter-navigation ─────────────────────────────────────────── */

.guide-nav {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--c-border);
}

.guide-nav__title {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-text-muted);
    margin-bottom: 0.75rem;
}

.guide-nav__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.guide-nav__link {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.guide-nav__link:hover {
    border-color: var(--c-primary);
    color: var(--c-text);
}

.guide-nav__link--active {
    border-color: var(--c-primary);
    background: color-mix(in srgb, var(--c-primary) 10%, transparent);
    color: var(--c-text);
    pointer-events: none;
}

/* ─── Guide Pages ────────────────────────────────────────────────────── */

.breadcrumb {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--c-border);
    font-size: 0.85rem;
}

.breadcrumb__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.breadcrumb__item {
    color: var(--c-text-muted);
}

.breadcrumb__item a {
    color: var(--c-text-muted);
    text-decoration: none;
}

.breadcrumb__item a:hover {
    color: var(--c-text);
}

.breadcrumb__item--sep {
    color: var(--c-text-dim);
}

.breadcrumb__item--current {
    color: var(--c-text);
}

.guide-nav {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--c-border);
}

.guide-nav__title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--c-text-muted);
    margin-bottom: 1rem;
}

.guide-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.guide-nav__link {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    color: var(--c-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: border-color 0.15s, color 0.15s;
}

.guide-nav__link:hover {
    border-color: var(--c-primary);
    color: var(--c-text);
}

.guide-nav__link--active {
    border-color: var(--c-primary);
    color: var(--c-text);
    pointer-events: none;
    background: color-mix(in srgb, var(--c-primary) 10%, transparent);
}

.guide-hero {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--c-border);
}

.guide-hero h1 {
    text-wrap: balance;
}

.guide-hero__host {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.guide-hero__logo {
    width: 56px;
    height: 56px;
    background: var(--c-surface);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.guide-steps {
    counter-reset: guide-step;
    margin: 2rem 0;
}

.guide-step {
    counter-increment: guide-step;
    padding: 2rem 0 2rem 4rem;
    border-left: 2px solid var(--c-border);
    position: relative;
    margin-left: 1rem;
}

.guide-step::before {
    content: counter(guide-step);
    position: absolute;
    left: -18px;
    top: 2rem;
    width: 34px;
    height: 34px;
    background: var(--c-accent);
    color: var(--c-bg);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.guide-step h3 {
    margin-bottom: 0.8rem;
}

.guide-step p {
    color: var(--c-text);
}

.guide-step a[target="_blank"]::after,
.article__body a[target="_blank"]::after {
    content: '';
    display: inline-block;
    width: 0.75em;
    height: 0.75em;
    margin-left: 0.2em;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%23A5A09A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 2H2a1 1 0 0 0-1 1v7a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1V7'/%3E%3Cpath d='M8 1h3v3'/%3E%3Cpath d='M5 7 11 1'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
}

.guide-step .guide-illustration {
    margin: 1.25rem 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--c-border);
}

.guide-step .guide-illustration svg {
    display: block;
    width: 100%;
    height: auto;
}

.guide-step .guide-illustration figcaption {
    background: var(--c-surface);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: var(--c-text-muted);
    text-align: center;
    font-family: var(--font-body);
}

/* ─── SEO Pages ──────────────────────────────────────────────────────── */

.article {
    padding: 3rem 0;
}

.article__header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--c-border);
}

.article__header h1 {
    margin-bottom: 1rem;
    font-size: 2.4rem;
}

.article__meta {
    color: var(--c-text-muted);
    font-size: 0.85rem;
}

.article__toc {
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
}

.article__toc-title {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-text-muted);
    margin-bottom: 0.75rem;
}

.article__toc ol {
    list-style: none;
    counter-reset: toc;
    margin: 0;
    padding: 0;
}

.article__toc li {
    counter-increment: toc;
    margin-bottom: 0.4rem;
}

.article__toc li::before {
    content: counter(toc) ".";
    color: var(--c-accent);
    font-weight: 600;
    margin-right: 0.5rem;
    font-size: 0.85rem;
}

.article__toc a {
    font-size: 0.95rem;
    color: var(--c-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.article__toc a:hover {
    color: var(--c-accent);
}

.article__body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--c-border);
    scroll-margin-top: 1.5rem;
}

.article__body h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

.article__body ul, .article__body ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.article__body li {
    margin-bottom: 0.5rem;
    color: var(--c-text);
}

.article__body li strong {
    color: var(--c-text);
}

.article__body blockquote {
    border-left: 4px solid var(--c-accent);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--c-surface);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--c-text);
}

.article__body code {
    font-family: var(--font-mono);
    font-size: 0.85em;
    background: var(--c-surface);
    padding: 0.15rem 0.4rem;
    border-radius: 2px;
    color: var(--c-accent);
}

.article__body pre {
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.article__body pre code {
    background: none;
    padding: 0;
    color: var(--c-text);
}

@media (max-width: 768px) {
    .article__body pre,
    .guide-step pre {
        white-space: pre-wrap;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

.inline-diagnostic {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--c-bg-card);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
}

.inline-diagnostic h3 {
    margin-bottom: 1rem;
    color: var(--c-accent);
}

/* ─── Success / Error Messages ───────────────────────────────────────── */

.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.alert--success {
    background: var(--c-success-dim);
    border: 1px solid rgba(62, 189, 124, 0.3);
    color: var(--c-success);
}

.alert--error {
    background: var(--c-danger-dim);
    border: 1px solid rgba(232, 92, 74, 0.3);
    color: var(--c-danger);
}

/* ─── Legal Pages ────────────────────────────────────────────────────── */

.legal {
    padding: 3rem 0;
}

.legal h1 { margin-bottom: 2rem; }
.legal h2 { margin-top: 2rem; margin-bottom: 0.8rem; font-size: 1.3rem; }
.legal p, .legal li { color: var(--c-text); }
.legal ul { padding-left: 1.5rem; margin: 0.8rem 0; }
.legal li { margin-bottom: 0.4rem; }
.legal__back-to-top { margin-top: 3rem; text-align: right; }
.legal__back-to-top a { color: var(--c-text-muted); font-size: 0.875rem; text-decoration: none; }
.legal__back-to-top a:hover { color: var(--c-text); }
.legal__table { width: 100%; border-collapse: collapse; margin: 1rem 0; font-size: 0.875rem; }
.legal__table th, .legal__table td { padding: 0.6rem 0.8rem; text-align: left; border: 1px solid var(--c-border); }
.legal__table th { background-color: var(--c-bg-raised); color: var(--c-text); font-weight: 600; }
.legal__table td { color: var(--c-text-muted); }
.legal__table code { font-family: var(--font-mono); font-size: 0.8rem; color: var(--c-accent); }

/* ─── Animations ─────────────────────────────────────────────────────── */

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

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

@keyframes stampDrop {
    0% { transform: rotate(-15deg) scale(1.5); opacity: 0; }
    60% { transform: rotate(3deg) scale(0.95); opacity: 1; }
    100% { transform: rotate(2deg) scale(1); opacity: 1; }
}

.anim-fade-up {
    animation: fadeInUp 0.7s ease both;
}

.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }
.anim-delay-5 { animation-delay: 0.5s; }
.anim-delay-6 { animation-delay: 0.6s; }

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-delay: 0.01ms !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Stamp — signature element on score card */
.stamp {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.4rem 1rem;
    border: 3px solid;
    border-radius: 4px;
    animation: stampDrop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
    opacity: 0.85;
}

.stamp--green {
    color: var(--c-success);
    border-color: var(--c-success);
    transform: rotate(2deg);
}

.stamp--orange {
    color: var(--c-warning);
    border-color: var(--c-warning);
    transform: rotate(-3deg);
}

.stamp--red {
    color: var(--c-danger);
    border-color: var(--c-danger);
    transform: rotate(4deg);
}

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--c-text-dim);
    border-top-color: var(--c-accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ─── Diagonal stripe bg — used on section backgrounds ───────────────── */

.bg-stripes {
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(232, 168, 56, 0.02) 10px,
        rgba(232, 168, 56, 0.02) 20px
    );
}

/* ─── DNS placeholder highlight ──────────────────────────────────────── */

code .dns-placeholder {
    background: var(--c-warning-bg, #fff3cd);
    color: var(--c-warning-text, #856404);
    padding: 0.1em 0.3em;
    border-radius: 3px;
    border-bottom: 2px dashed var(--c-warning, #e8a838);
    font-style: inherit;
    font-weight: 600;
}

/* ─── Cookie Banner ─────────────────────────────────────────────────── */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(20, 23, 30, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--c-border);
    padding: 0.5rem 1rem;
    transform: translateY(100%);
    animation: cookieSlideUp 0.3s ease forwards;
}

.cookie-banner[hidden] { display: none !important; }

@keyframes cookieSlideUp {
    to { transform: translateY(0); }
}

.cookie-banner__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

.cookie-banner__text a {
    color: var(--c-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__text a:hover {
    color: var(--c-accent-hover);
}

.cookie-banner__actions {
    display: flex;
    gap: 0.4rem;
    flex-shrink: 0;
}

.cookie-banner__btn {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.cookie-banner__btn--accept {
    background: var(--c-accent);
    color: #0C0E12;
    border-color: var(--c-accent);
}

.cookie-banner__btn--accept:hover {
    background: var(--c-accent-hover);
    border-color: var(--c-accent-hover);
}

.cookie-banner__btn--refuse {
    background: transparent;
    color: var(--c-text-muted);
    border-color: var(--c-border);
}

.cookie-banner__btn--refuse:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--c-text);
}

.cookie-banner__btn--settings {
    background: transparent;
    color: var(--c-text-muted);
    border-color: var(--c-border);
}

.cookie-banner__btn--settings:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--c-text);
    border-color: var(--c-accent);
}

/* ─── Cookie Modal ──────────────────────────────────────────────────── */

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal[hidden] { display: none !important; }

.cookie-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
}

.cookie-modal__dialog {
    position: relative;
    background: var(--c-bg-raised);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 480px;
    max-height: 85vh;
    overflow-y: auto;
}

.cookie-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--c-border);
}

.cookie-modal__header h2 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-text);
    margin: 0;
}

.cookie-modal__close {
    background: none;
    border: none;
    color: var(--c-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 0.25rem;
    line-height: 1;
    transition: color 0.15s;
}

.cookie-modal__close:hover {
    color: var(--c-text);
}

.cookie-modal__body {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-modal__category {
    padding: 0.75rem;
    background: var(--c-bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--c-border);
}

.cookie-modal__category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.35rem;
}

.cookie-modal__category-name {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-text);
}

.cookie-modal__category-badge {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--c-success);
    background: var(--c-success-dim);
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
}

.cookie-modal__category-desc {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--c-text-muted);
    line-height: 1.4;
    margin: 0;
}

/* Toggle switch */
.cookie-modal__toggle {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.cookie-modal__toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.cookie-modal__toggle-track {
    position: absolute;
    inset: 0;
    background: var(--c-surface);
    border-radius: 20px;
    transition: background 0.2s;
}

.cookie-modal__toggle-track::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: var(--c-text-muted);
    border-radius: 50%;
    transition: transform 0.2s, background 0.2s;
}

.cookie-modal__toggle input:checked + .cookie-modal__toggle-track {
    background: var(--c-accent-dim);
}

.cookie-modal__toggle input:checked + .cookie-modal__toggle-track::after {
    transform: translateX(16px);
    background: var(--c-accent);
}

.cookie-modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--c-border);
}

/* ─── Cookie banner responsive ──────────────────────────────────────── */

@media (max-width: 600px) {
    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    .cookie-banner__actions {
        justify-content: center;
    }
}

/* ─── Print ──────────────────────────────────────────────────────────── */

@media print {
    body::before { display: none; }
    .header, .footer, .cta-card, .nav, .cookie-banner, .cookie-modal { display: none; }
    body { background: #fff; color: #000; }
    .score-card, .check, .host-card { border-color: #ccc; }
}
