.web-scanner-page {
    --fc-accent: #22d3ee;
    --fc-accent-2: #7e8fa6;
    --fc-good: #00d4aa;
    background:
        radial-gradient(circle at 18% -8%, rgba(34, 211, 238, .06), transparent 30rem),
        radial-gradient(circle at 88% 3%, rgba(79, 70, 229, .04), transparent 28rem),
        linear-gradient(180deg, #070b14 0%, #080d18 48%, #050812 100%);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.web-scanner-page main { flex: 1; }

.web-scanner-page .reveal { opacity: 1; transform: none; }

.check-hero { padding: 120px 0 28px; transition: opacity .35s ease, max-height .45s ease, padding .45s ease, margin .45s ease; overflow: hidden; }
.check-hero.collapse-hero {
    opacity: 0;
    max-height: 0 !important;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    pointer-events: none;
}
.check-hero-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .14);
    border-radius: 22px;
    background: rgba(16, 24, 39, .78);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .14);
    padding: clamp(22px, 3.5vw, 36px);
}
.check-hero-card::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -170px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, .04), transparent 68%);
    pointer-events: none;
}
.check-hero h1 {
    margin: 0;
    max-width: 860px;
    font-size: clamp(1.5rem, 3.2vw, 2.1rem);
    line-height: 1.15;
    letter-spacing: -.035em;
}
.check-hero p {
    margin: 14px 0 0;
    max-width: 760px;
    color: #b7c4d7;
    font-size: .94rem;
    line-height: 1.6;
}
.check-form {
    position: relative;
    z-index: 1;
    margin-top: 30px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    max-width: 790px;
}
.check-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 6px 8px 6px 16px;
    border: 1px solid rgba(148, 163, 184, .4);
    border-radius: 18px;
    background: rgba(5, 10, 20, .78);
}
.check-input-wrap span { color: var(--fc-muted-2); font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.check-input-wrap input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--fc-text); font: inherit; font-size: 1rem; }
.check-primary-btn {
    min-height: 58px;
    border: 0;
    border-radius: 12px;
    padding: 0 28px;
    color: #ffffff;
    font-weight: 850;
    font-size: 1rem;
    letter-spacing: -0.02em;
    background: #0F6E56;
    box-shadow: 0 18px 42px rgba(15, 110, 86, .24), 0 4px 12px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.check-primary-btn:hover {
    transform: translateY(-2px);
    background: #1D9E75;
    box-shadow: 0 22px 52px rgba(29, 158, 117, .32), 0 6px 16px rgba(0, 0, 0, 0.22);
}
.check-primary-btn:active {
    transform: translateY(0);
    box-shadow: 0 8px 22px rgba(15, 110, 86, .2), 0 2px 8px rgba(0, 0, 0, 0.12);
}
.check-primary-btn:disabled { 
    cursor: wait; 
    opacity: .6; 
    transform: none; 
    box-shadow: none;
    filter: grayscale(0.3);
}
.check-primary-btn:focus-visible, .check-input-wrap:focus-within { 
    outline: 3px solid rgba(29, 158, 117, .38); 
    outline-offset: 3px; 
}
.check-form-error { min-height: 22px; margin-top: 10px; color: #ff5c5c; font-weight: 750; }

.check-workspace { padding: 0 0 86px; transition: padding .45s ease; }
.web-scanner-page .collapse-hero + .check-workspace { padding-top: 108px; }
.progress-card, .blocked-card, .report-card, .summary-card, .grade-panel, .cta-card {
    border: 1px solid var(--fc-border);
    background: linear-gradient(180deg, rgba(16, 24, 39, .9), rgba(11, 18, 32, .86));
    box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
}
.progress-card, .blocked-card { border-radius: 28px; padding: 28px; margin-top: 24px; scroll-margin-top: 100px; }
.progress-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 24px; }
.progress-head h2, .blocked-card h2 { margin: 12px 0 8px; letter-spacing: -.035em; }
.progress-head p, .blocked-card p { margin: 0; color: var(--fc-muted); line-height: 1.6; }
.failure-retry-link { color: var(--fc-accent); text-decoration: underline; cursor: pointer; }
.failure-retry-link:hover { color: #7dd3fc; }
.check-spinner { width: 42px; height: 42px; border-radius: 50%; border: 3px solid rgba(148, 163, 184, .18); border-top-color: var(--fc-accent); animation: fc-spin 1s linear infinite; }
@keyframes fc-spin { to { transform: rotate(360deg); } }
.progress-line {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(148,163,184,.14);
    background: rgba(8, 13, 24, .55);
    border-radius: 16px;
    padding: 15px 17px;
    color: #dbe7f7;
    line-height: 1.45;
}
.mini-spinner {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    border-radius: 50%;
    border: 2px solid rgba(148,163,184,.22);
    border-top-color: var(--fc-accent);
    animation: fc-spin .85s linear infinite;
}
.progress-line strong { font-weight: 760; }

.result-view { margin-top: 24px; }
.report-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 24px; align-items: start; }
.main-stack, .side-stack { display: grid; gap: 18px; }
.side-stack { position: sticky; top: 92px; }
.report-card { border-radius: 20px; overflow: hidden; }
.report-card.pad { padding: 22px; }
.report-card h2, .report-card h3 { margin: 0; letter-spacing: -.035em; }
.section-sub { color: var(--fc-muted); opacity: .6; margin: 8px 0 0; line-height: 1.55; font-size: .82rem; }
.result-header { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px; border-bottom: 1px solid var(--fc-border); background: radial-gradient(circle at 16% 0%, rgba(56, 189, 248, .13), transparent 28rem); }
.domain-title { display: flex; gap: 14px; align-items: center; }
.domain-icon { width: 48px; height: 48px; border-radius: 16px; object-fit: contain; background: rgba(108, 92, 231, .12); border: 1px solid rgba(108, 92, 231, .22); }
.domain-title h2 { font-size: 1.55rem; }
.meta-line { color: var(--fc-muted); margin-top: 6px; font-size: .82rem; }
/* ── Score bar (replaces old verdict text) ── */
.verdict { padding: 24px; display: flex; align-items: center; gap: 16px; }
.verdict-grade {
    font-size: 40px; line-height: 1; font-weight: 800; letter-spacing: -.04em;
    min-width: 44px; text-align: center; flex-shrink: 0;
    color: #f5a623;
}
.verdict-grade.gc-a { color: #00d4aa; }
.verdict-grade.gc-b { color: #38bdf8; }
.verdict-grade.gc-c { color: #f5a623; }
.verdict-grade.gc-d { color: #f97316; }
.verdict-grade.gc-e { color: #ef4444; }
.verdict-body { flex: 1; min-width: 0; }
.verdict-label { font-size: 18px; font-weight: 700; color: var(--fc-text); margin-bottom: 8px; }
.verdict-track {
    height: 4px;
    background: rgba(255,255,255,.07);
    border-radius: 4px;
    overflow: hidden;
}
.verdict-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, #00d4aa 0%, #f5a623 100%);
}
/* dynamic width classes (0-100) injected by JS to avoid inline styles blocked by CSP */
.verdict-fill-0{width:0}.verdict-fill-1{width:1%}.verdict-fill-2{width:2%}.verdict-fill-3{width:3%}.verdict-fill-4{width:4%}.verdict-fill-5{width:5%}.verdict-fill-6{width:6%}.verdict-fill-7{width:7%}.verdict-fill-8{width:8%}.verdict-fill-9{width:9%}.verdict-fill-10{width:10%}.verdict-fill-11{width:11%}.verdict-fill-12{width:12%}.verdict-fill-13{width:13%}.verdict-fill-14{width:14%}.verdict-fill-15{width:15%}.verdict-fill-16{width:16%}.verdict-fill-17{width:17%}.verdict-fill-18{width:18%}.verdict-fill-19{width:19%}.verdict-fill-20{width:20%}.verdict-fill-21{width:21%}.verdict-fill-22{width:22%}.verdict-fill-23{width:23%}.verdict-fill-24{width:24%}.verdict-fill-25{width:25%}.verdict-fill-26{width:26%}.verdict-fill-27{width:27%}.verdict-fill-28{width:28%}.verdict-fill-29{width:29%}.verdict-fill-30{width:30%}.verdict-fill-31{width:31%}.verdict-fill-32{width:32%}.verdict-fill-33{width:33%}.verdict-fill-34{width:34%}.verdict-fill-35{width:35%}.verdict-fill-36{width:36%}.verdict-fill-37{width:37%}.verdict-fill-38{width:38%}.verdict-fill-39{width:39%}.verdict-fill-40{width:40%}.verdict-fill-41{width:41%}.verdict-fill-42{width:42%}.verdict-fill-43{width:43%}.verdict-fill-44{width:44%}.verdict-fill-45{width:45%}.verdict-fill-46{width:46%}.verdict-fill-47{width:47%}.verdict-fill-48{width:48%}.verdict-fill-49{width:49%}.verdict-fill-50{width:50%}.verdict-fill-51{width:51%}.verdict-fill-52{width:52%}.verdict-fill-53{width:53%}.verdict-fill-54{width:54%}.verdict-fill-55{width:55%}.verdict-fill-56{width:56%}.verdict-fill-57{width:57%}.verdict-fill-58{width:58%}.verdict-fill-59{width:59%}.verdict-fill-60{width:60%}.verdict-fill-61{width:61%}.verdict-fill-62{width:62%}.verdict-fill-63{width:63%}.verdict-fill-64{width:64%}.verdict-fill-65{width:65%}.verdict-fill-66{width:66%}.verdict-fill-67{width:67%}.verdict-fill-68{width:68%}.verdict-fill-69{width:69%}.verdict-fill-70{width:70%}.verdict-fill-71{width:71%}.verdict-fill-72{width:72%}.verdict-fill-73{width:73%}.verdict-fill-74{width:74%}.verdict-fill-75{width:75%}.verdict-fill-76{width:76%}.verdict-fill-77{width:77%}.verdict-fill-78{width:78%}.verdict-fill-79{width:79%}.verdict-fill-80{width:80%}.verdict-fill-81{width:81%}.verdict-fill-82{width:82%}.verdict-fill-83{width:83%}.verdict-fill-84{width:84%}.verdict-fill-85{width:85%}.verdict-fill-86{width:86%}.verdict-fill-87{width:87%}.verdict-fill-88{width:88%}.verdict-fill-89{width:89%}.verdict-fill-90{width:90%}.verdict-fill-91{width:91%}.verdict-fill-92{width:92%}.verdict-fill-93{width:93%}.verdict-fill-94{width:94%}.verdict-fill-95{width:95%}.verdict-fill-96{width:96%}.verdict-fill-97{width:97%}.verdict-fill-98{width:98%}.verdict-fill-99{width:99%}.verdict-fill-100{width:100%}
.verdict-counts { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; }
.verdict-count {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 14px; color: var(--fc-muted);
}
.verdict-count .vc-num { font-weight: 600; font-variant-numeric: tabular-nums; }
.verdict-count.vc-good .vc-num { color: #00d4aa; }
.verdict-count.vc-warn .vc-num { color: #f5a623; }
.verdict-count.vc-bad  .vc-num { color: #ff5c5c; }
.verdict-caveat {
    margin-top: 12px; font-size: .8rem; color: var(--fc-muted); line-height: 1.5;
}
.check-badge { display: inline-flex; align-items: center; justify-content: center; gap: 7px; border-radius: 20px; padding: 3px 9px; min-width: 68px; font-size: 11px; font-weight: 600; border: 0.5px solid transparent; color: var(--fc-muted); white-space: nowrap; }
.check-badge.good { color: #00d4aa; background: rgba(0, 212, 170, .12); border: 0.5px solid rgba(0, 212, 170, .28); }
.check-badge.warn { color: #f5a623; background: rgba(245, 166, 35, .12); border: 0.5px solid rgba(245, 166, 35, .28); }
.check-badge.bad { color: #ff5c5c; background: rgba(255, 92, 92, .12); border: 0.5px solid rgba(255, 92, 92, .28); }
.check-badge.info { color: #93c5fd; background: rgba(96, 165, 250, .13); border: 0.5px solid rgba(96, 165, 250, .28); }
.summary-pair { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.summary-card { border-radius: 20px; padding: 22px; }
.summary-card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; }
.summary-card ul { padding: 0; margin: 16px 0 0; list-style: none; display: grid; gap: 11px; }
.summary-card li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; color: #c9d5e6; line-height: 1.42; }
.check-mark { color: var(--fc-good); font-weight: 950; }
.alert-mark { color: #ef4444; font-weight: 950; }
.category-list { display: grid; gap: 10px; padding: 20px; }
details.category-row {
    border: 1px solid var(--fc-border);
    background: rgba(8, 13, 24, .58);
    border-radius: 16px;
    overflow: clip;
    transition: border-color .16s ease, background .16s ease;
}
details.category-row[open] { border-color: rgba(56, 189, 248, .30); background: rgba(12, 23, 41, .74); }
details.category-row.nested-category {
    margin-left: 12px;
    border-color: rgba(148, 163, 184, .14);
    background: rgba(15, 23, 42, .55);
}
details.category-row.nested-category summary { padding: 13px 15px; }
details.category-row.nested-category .category-name { font-size: .92rem; }
details.category-row.cat-border-red    { border: 1px solid rgba(255, 92, 92, .35); }
details.category-row.cat-border-red[open] { border: 1px solid rgba(255, 92, 92, .40); }
details.category-row.cat-border-orange { border: 1px solid rgba(251, 146, 60, .35); }
details.category-row.cat-border-orange[open] { border: 1px solid rgba(251, 146, 60, .40); }
details.category-row.cat-border-yellow { border: 1px solid rgba(250, 204, 21, .35); }
details.category-row.cat-border-yellow[open] { border: 1px solid rgba(250, 204, 21, .40); }
details.category-row.cat-border-green  { border: 1px solid rgba(0, 212, 170, .35); }
details.category-row.cat-border-green[open] { border: 1px solid rgba(0, 212, 170, .40); }
details.category-row summary {
    cursor: pointer;
    list-style: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 14px;
    align-items: center;
    padding: 15px 17px;
}
details.category-row summary::-webkit-details-marker { display: none; }
.category-name { font-weight: 820; letter-spacing: -.02em; }
.category-note { display: block; margin-top: 4px; color: var(--fc-muted); font-size: .82rem; line-height: 1.4; font-weight: 450; opacity: .65; }
.score-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 68px;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}
.score-pill-strong { color: #00d4aa; background: rgba(0, 212, 170, .12); border: 0.5px solid rgba(0, 212, 170, .28); }
.score-pill-good { color: #5eead4; background: rgba(20, 184, 166, .14); border: 0.5px solid rgba(20, 184, 166, .30); }
.score-pill-fair { color: #f5a623; background: rgba(245, 166, 35, .12); border: 0.5px solid rgba(245, 166, 35, .28); }
.score-pill-weak { color: #f5a623; background: rgba(245, 166, 35, .12); border: 0.5px solid rgba(245, 166, 35, .28); }
.score-pill-poor { color: #ff5c5c; background: rgba(255, 92, 92, .12); border: 0.5px solid rgba(255, 92, 92, .28); }
.score-pill-na { color: var(--fc-muted); background: rgba(148, 163, 184, .08); border: 0.5px solid rgba(148, 163, 184, .18); font-style: normal; font-weight: 500; }
.chevron {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--fc-muted-2);
    font-size: 0;
    line-height: 1;
}
.chevron::before {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform .16s ease;
}
details.category-row[open] > summary .chevron::before,
details.check-item[open] > summary .chevron::before,
details.cookie-inventory-card[open] > summary .chevron::before {
    transform: rotate(-135deg);
}
.check-list { padding: 0 17px 17px; display: grid; gap: 8px; }
details.check-item {
    border: 1px solid rgba(148, 163, 184, .12);
    border-radius: 13px;
    background: rgba(30, 41, 59, .55);
    overflow: hidden;
}
details.check-item.card-warn { border-color: rgba(245, 166, 35, .22); }
details.check-item.card-bad { border-color: rgba(255, 92, 92, .22); }
details.check-item.card-good { border-color: rgba(0, 212, 170, .22); }
details.check-item.card-info { border-color: rgba(96, 165, 250, .22); }
.domain-registration-card {
    border: 1px solid rgba(148, 163, 184, .12);
    border-radius: 13px;
    background: rgba(30, 41, 59, .55);
    overflow: hidden;
}
.domain-registration-card.card-warn { border-color: rgba(245, 166, 35, .22); }
.domain-registration-card.card-info { border-color: rgba(96, 165, 250, .22); }
.domain-registration-card.card-good { border-color: rgba(0, 212, 170, .22); }
.domain-registration-card .check-detail {
    border-top: 0;
}
.domain-registration-grid div {
    grid-template-columns: auto minmax(0, 1fr);
    white-space: nowrap;
}
.domain-registration-grid dt {
    min-width: 200px;
}
.domain-registration-grid dd {
    color: #c9d5e6;
}
.dr-good { color: #00d4aa; font-weight: 600; }
.dr-warn { color: #f5a623; font-weight: 600; }
.dr-muted { color: #7e8fa6; font-weight: 500; }
.redirect-chain { margin-top: 4px; padding-left: 10px; }
.redirect-chain-line { padding: 3px 0; font-size: 13px; color: #b8c5d6; line-height: 1.6; }
.rc-url { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; }
.rc-redirect { color: #f5a623; font-weight: 600; }
.rc-reachable { color: #00d4aa; font-weight: 600; }
.rc-arrow { color: #7e8fa6; margin: 0 2px; }
.email-bl-result-table { width: calc(100% - 10px); margin-left: 10px; border-collapse: collapse; }
.email-bl-section table td { padding: 4px 0; }
.email-bl-section .email-bl-source { padding-right: 28px; }
.email-bl-section .email-bl-result-cell { padding-left: 28px; text-align: left; }
.email-bl-target-group { margin-top: 10px; }
.email-bl-target-group + .email-bl-target-group { margin-top: 18px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08); }
.email-bl-result-clean { color: #00d4aa; font-weight: 700; }
.email-bl-result-listed { color: #ff5c5c; font-weight: 700; }
.email-bl-result-unavailable { color: #94a3b8; font-weight: 700; }
.email-bl-target-line { margin: 3px 0; }
.email-bl-target-note { opacity: .55; font-size: .85em; }
details.check-item summary {
    cursor: pointer;
    list-style: none;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
}
details.check-item summary::-webkit-details-marker { display: none; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dot-good { background: #00d4aa; box-shadow: 0 0 6px rgba(0, 212, 170, .5); }
.dot-warn { background: #f5a623; box-shadow: 0 0 6px rgba(245, 166, 35, .5); }
.dot-bad { background: #ff5c5c; box-shadow: 0 0 6px rgba(255, 92, 92, .5); }
.dot-info { background: #93c5fd; box-shadow: 0 0 6px rgba(147, 197, 253, .4); }
.card-info { min-width: 0; }
.check-title { font-weight: 720; }
.check-hint { display: block; color: var(--fc-muted); font-size: .76rem; margin-top: 3px; line-height: 1.35; font-weight: 450; }
.check-desc { display: block; color: #7e8fa6; font-size: .72rem; margin-top: 2px; line-height: 1.35; font-weight: 400; }
details.check-item[open] { border-color: rgba(148, 163, 184, .18); }
details.check-item.card-warn[open] { border-color: rgba(245, 166, 35, .28); }
details.check-item.card-bad[open] { border-color: rgba(255, 92, 92, .28); }
details.check-item.card-good[open] { border-color: rgba(0, 212, 170, .28); }
details.check-item.card-info[open] { border-color: rgba(96, 165, 250, .28); }
.check-detail { border-top: 1px solid rgba(148, 163, 184, .10); padding: 13px 14px 14px; color: #c9d5e6; line-height: 1.55; font-size: .82rem; background: rgba(15, 23, 42, .35); }
.check-detail dl { display: grid; gap: 10px; margin: 0; }
.check-detail > dl > div { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 12px; }
.check-detail dt { color: var(--fc-muted-2); font-weight: 750; text-transform: uppercase; letter-spacing: .07em; font-size: .7rem; white-space: nowrap; }
.check-detail dd { margin: 0; overflow-wrap: anywhere; min-width: 0; }

/* Card body sections (Claude-style mockup) */
.body-section { margin-top: 16px; display: block; }
.body-section:first-child { margin-top: 0; }
.check-detail > .body-section { display: block; }
.check-detail .body-label,
.check-detail .body-text,
.check-detail .rec-block { display: block; }
.body-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--fc-muted-2, #4e5c72);
    margin-bottom: 7px;
}
.body-text {
    font-size: 13px;
    color: #8892a4;
    line-height: 1.65;
    margin: 0 0 0 10px;
}
.current-value {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    gap: 7px;
    background: rgba(8, 13, 24, .6);
    border: 1px solid rgba(148, 163, 184, .10);
    border-radius: 6px;
    padding: 6px 10px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 12px;
    color: #b8c5d6;
}
.current-value i { color: var(--fc-muted); font-size: 13px; }
.check-detail .tls-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
}
.check-detail .tls-summary-grid > div {
    grid-template-columns: 110px minmax(0, 1fr) !important;
    gap: 10px;
}
.tls-info-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tls-info-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(96, 165, 250, .10);
    border: 1px solid rgba(96, 165, 250, .18);
    color: #cfe2ff;
    font-size: 12px;
    line-height: 1.4;
}
.tls-body-text {
    margin-left: 0;
    color: #9eacc0;
}
.tls-list-block {
    margin-left: 14px;
    line-height: 1.7;
}
.spf-mechanism-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(148, 163, 184, .12);
    border-radius: 12px;
    background: rgba(8, 13, 24, .32);
}
.spf-mechanism-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    line-height: 1.55;
}
.spf-mechanism-table thead {
    background: rgba(16, 24, 39, .7);
}
.spf-mechanism-table th {
    text-align: left;
    padding: 9px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--fc-muted-2);
    border-bottom: 1px solid rgba(148, 163, 184, .12);
}
.spf-mechanism-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(148, 163, 184, .08);
    vertical-align: top;
    color: #9eacc0;
}
.spf-mechanism-table tbody tr:last-child td {
    border-bottom: 0;
}
.spf-mechanism-table td:first-child {
    width: 34%;
    min-width: 180px;
}
.spf-mechanism-table code {
    color: #cfe2ff;
    font-size: 11px;
    overflow-wrap: anywhere;
}
.tls-more-link {
    display: inline;
    margin-top: 0;
    color: #b9d8ff !important;
    font-weight: 500 !important;
}
.tls-more-link:hover {
    color: #d7e9ff !important;
}
.cookie-inventory-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-left: 10px;
    margin-top: 10px;
}
.cookie-inventory-groups {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cookie-group-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    padding: 14px 14px 14px 18px;
    border: 1px solid rgba(148, 163, 184, .14);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(15, 23, 42, .56), rgba(8, 13, 24, .42));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.cookie-group-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 3px;
    border-radius: 999px;
    background: rgba(148, 163, 184, .24);
}
.cookie-group-security::before { background: linear-gradient(180deg, rgba(245, 166, 35, .85), rgba(245, 166, 35, .35)); }
.cookie-group-csrf::before { background: linear-gradient(180deg, rgba(96, 165, 250, .85), rgba(96, 165, 250, .35)); }
.cookie-group-analytics::before { background: linear-gradient(180deg, rgba(168, 85, 247, .85), rgba(168, 85, 247, .35)); }
.cookie-group-identification::before { background: linear-gradient(180deg, rgba(56, 189, 248, .85), rgba(56, 189, 248, .35)); }
.cookie-group-preferences::before { background: linear-gradient(180deg, rgba(45, 212, 191, .85), rgba(45, 212, 191, .35)); }
.cookie-group-unknown::before { background: linear-gradient(180deg, rgba(148, 163, 184, .70), rgba(148, 163, 184, .25)); }
.cookie-group-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}
.cookie-group-heading {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cookie-group-title {
    color: #e6edf7;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}
.cookie-group-description {
    margin: 0;
    color: #91a1b8;
    font-size: 12px;
    line-height: 1.5;
    max-width: 72ch;
}
.cookie-group-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(148, 163, 184, .12);
    border: 1px solid rgba(148, 163, 184, .20);
    color: #d7e2f0;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}
.cookie-group-security .cookie-group-count { background: rgba(245, 166, 35, .12); border-color: rgba(245, 166, 35, .24); color: #f7c874; }
.cookie-group-csrf .cookie-group-count { background: rgba(96, 165, 250, .10); border-color: rgba(96, 165, 250, .24); color: #98c7ff; }
.cookie-group-analytics .cookie-group-count { background: rgba(168, 85, 247, .10); border-color: rgba(168, 85, 247, .22); color: #d3b4ff; }
.cookie-group-identification .cookie-group-count { background: rgba(56, 189, 248, .10); border-color: rgba(56, 189, 248, .22); color: #9bdffc; }
.cookie-group-preferences .cookie-group-count { background: rgba(45, 212, 191, .10); border-color: rgba(45, 212, 191, .22); color: #91f1e0; }
.cookie-inventory-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 12px;
}
.cookie-inventory-card {
    border: 1px solid rgba(148, 163, 184, .12);
    border-radius: 10px;
    background: rgba(8, 13, 24, .40);
    overflow: hidden;
}
.cookie-inventory-card summary {
    cursor: pointer;
    list-style: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
}
.cookie-inventory-card summary::-webkit-details-marker { display: none; }
.cookie-inventory-title {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.cookie-inventory-title strong {
    color: #e6edf7;
    font-size: 13px;
    overflow-wrap: anywhere;
}
.cookie-inventory-title span {
    color: #8892a4;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.cookie-inventory-body {
    border-top: 1px solid rgba(148, 163, 184, .10);
    padding: 12px 14px 14px;
}
.cookie-inventory-body .check-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
}
.cookie-inventory-body .check-detail-grid div {
    grid-template-columns: 100px minmax(0, 1fr);
}
.cookie-inventory-body .check-detail-grid dt {
    font-size: 12px;
    white-space: normal;
    overflow-wrap: anywhere;
}
.cookie-inventory-card .check-badge {
    justify-self: end;
    width: auto;
    max-width: fit-content;
    min-width: unset;
    font-size: 10px;
    padding: 2px 8px;
}
.cookie-scope-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
    border: 0.5px solid transparent;
}
.cookie-scope-badge.good {
    color: #6de2a6;
    background: rgba(34, 197, 94, .10);
    border-color: rgba(34, 197, 94, .26);
}
.cookie-scope-badge.warn {
    color: #f7c874;
    background: rgba(245, 166, 35, .10);
    border-color: rgba(245, 166, 35, .26);
}
.cookie-scope-badge.info {
    color: #9fb0c5;
    background: rgba(148, 163, 184, .10);
    border-color: rgba(148, 163, 184, .20);
}
.cookie-inventory-findings {
    margin: 0 0 0 22px;
    padding: 0;
    color: #b8c5d6;
    font-size: 13px;
    line-height: 1.6;
}
@media (max-width: 720px) {
    .cookie-group-section {
        padding: 12px 12px 12px 15px;
    }
    .cookie-group-header {
        flex-wrap: wrap;
    }
    .cookie-group-description {
        max-width: none;
    }
    .cookie-inventory-list {
        padding-left: 6px;
    }
    .check-detail .tls-summary-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .check-detail .tls-summary-grid > div {
        grid-template-columns: 110px minmax(0, 1fr) !important;
    }
    .cookie-inventory-body .check-detail-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .cookie-inventory-body .check-detail-grid div {
        grid-template-columns: 88px minmax(0, 1fr);
    }
    .cookie-inventory-card summary {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
        align-items: start;
    }
    .cookie-inventory-card summary .chevron { display: none; }
    .cookie-inventory-title span {
        overflow-wrap: anywhere;
        line-height: 1.4;
    }
    .cookie-inventory-findings {
        margin-left: 18px;
    }
}
@media (max-width: 480px) {
    .cookie-group-section {
        gap: 10px;
    }
    .cookie-group-title {
        font-size: 13px;
    }
    .cookie-group-description {
        font-size: 11px;
    }
    .cookie-inventory-body {
        padding: 10px 12px 12px;
    }
    .cookie-inventory-body .check-detail-grid div {
        grid-template-columns: 1fr;
        gap: 2px;
    }
    .cookie-inventory-body .check-detail-grid dt {
        font-size: 11px;
    }
    .cookie-inventory-card .check-badge {
        font-size: 9px;
        padding: 2px 7px;
    }
}
.tech-fingerprint-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tech-fingerprint-row {
    display: grid;
    grid-template-columns: minmax(120px, 180px) 1fr;
    gap: 10px;
    align-items: start;
}
.tech-fingerprint-category {
    color: #8892a4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: none;
    padding-top: 2px;
}
.tech-fingerprint-values {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 1px;
}
.tech-fingerprint-value {
    color: #b8c5d6;
    font-size: 13px;
    line-height: 1.5;
}
@media (max-width: 640px) {
    .tech-fingerprint-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}
.missing-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 9px;
    border-radius: 20px;
    background: rgba(255, 92, 92, .12);
    color: #ff5c5c;
    border: 0.5px solid rgba(255, 92, 92, .28);
}
.missing-chip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    color: currentColor;
}
.missing-chip-bad {
    background: rgba(255, 92, 92, .12);
    color: #ff5c5c;
    border: 0.5px solid rgba(255, 92, 92, .28);
}
.missing-chip-warn {
    background: rgba(245, 166, 35, .12);
    color: #f5a623;
    border: 0.5px solid rgba(245, 166, 35, .28);
}
.missing-chip-good {
    background: rgba(0, 212, 170, .12);
    color: #00d4aa;
    border: 0.5px solid rgba(0, 212, 170, .28);
}
.missing-chip-info {
    background: rgba(96, 165, 250, .13);
    color: #93c5fd;
    border: 0.5px solid rgba(96, 165, 250, .28);
}
.rec-block {
    background: rgba(8, 13, 24, .5);
    border-left: 2px solid #00d4aa;
    border-radius: 0 6px 6px 0;
    padding: 11px 13px;
}
.rec-block.rec-warn { border-left-color: #f5a623; }
.rec-block.rec-bad { border-left-color: #ff5c5c; }
.rec-block.rec-info { border-left-color: #93c5fd; }
.rec-block p {
    font-size: 13px;
    color: #00d4aa;
    line-height: 1.6;
    margin: 0;
}
.rec-block.rec-warn p { color: #f5a623; }
.rec-block.rec-bad p { color: #ff5c5c; }
.rec-block.rec-info p { color: #93c5fd; }
.check-detail dl.check-detail-grid { display: grid; gap: 7px; margin: 0; padding-left: 10px; box-sizing: border-box; }
.check-detail-grid div { display: grid; grid-template-columns: 200px minmax(0, 1fr); gap: 10px; align-items: start; }
.check-detail-grid dt { color: #8892a4; font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 13px; line-height: 1.65; white-space: nowrap; overflow-wrap: anywhere; max-width: 220px; }
.check-detail-grid dt::after { content: ':'; }
.check-detail-grid dd { margin: 0; overflow-wrap: anywhere; color: #8892a4; font-size: 13px; line-height: 1.65; min-width: 0; }
.detail-link-plain {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(136, 146, 164, .55);
    text-underline-offset: 2px;
    overflow-wrap: anywhere;
    word-break: break-word;
}
.detail-link-plain:hover,
.detail-link-plain:focus-visible {
    color: #c9d5e6;
    text-decoration-color: rgba(201, 213, 230, .8);
}
.sri-detail-grid div { grid-template-columns: 28px minmax(0, 1fr); }
.sri-detail-grid dt { text-align: right; }
.sri-detail-grid dt::after { content: ''; }
.detail-preview-lines { display: block; }
.detail-more-toggle { display: none; }
.detail-more-label { cursor: pointer; color: #00d4aa; font-weight: 700; }
.detail-more-label:hover { color: #80ffe0; }
.detail-full-lines { display: none; color: inherit; }
.detail-more-toggle:checked + .detail-more-label { display: none; }
.detail-more-toggle:checked + .detail-more-label + .detail-full-lines { display: inline; }
.checks { display: grid; gap: 10px; }
.evidence { margin-top: 12px; background: #07111f; border: 1px solid rgba(56, 189, 248, .16); border-radius: 14px; padding: 14px; color: #c7d7ea; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: .76rem; line-height: 1.55; white-space: pre-wrap; overflow-x: auto; }
.grade-panel { padding: 26px; text-align: center; border-color: rgba(0, 212, 170, .28); border-radius: 28px; background: radial-gradient(circle at 50% 0%, rgba(0, 212, 170, .20), transparent 18rem), linear-gradient(180deg, rgba(16, 24, 39, .98), rgba(8, 13, 24, .98)); }
.grade-panel.grade-b { border-color: rgba(56, 189, 248, .28); background: radial-gradient(circle at 50% 0%, rgba(56, 189, 248, .18), transparent 18rem), linear-gradient(180deg, rgba(16, 24, 39, .98), rgba(8, 13, 24, .98)); }
.grade-panel.grade-c { border-color: rgba(245, 166, 35, .28); background: radial-gradient(circle at 50% 0%, rgba(245, 166, 35, .14), transparent 18rem), linear-gradient(180deg, rgba(16, 24, 39, .98), rgba(8, 13, 24, .98)); }
.grade-panel.grade-d { border-color: rgba(249, 115, 22, .28); background: radial-gradient(circle at 50% 0%, rgba(249, 115, 22, .16), transparent 18rem), linear-gradient(180deg, rgba(16, 24, 39, .98), rgba(8, 13, 24, .98)); }
.grade-panel.grade-e { border-color: rgba(239, 68, 68, .28); background: radial-gradient(circle at 50% 0%, rgba(239, 68, 68, .16), transparent 18rem), linear-gradient(180deg, rgba(16, 24, 39, .98), rgba(8, 13, 24, .98)); }
.grade-letter { font-size: 6.5rem; line-height: .9; font-weight: 950; letter-spacing: -.08em; background: linear-gradient(135deg, #80ffe0, #00d4aa 42%, #38bdf8 90%); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 10px; }
.grade-b .grade-letter { background: linear-gradient(135deg, #7dd3fc, #38bdf8 42%, #06b6d4 90%); -webkit-background-clip: text; background-clip: text; }
.grade-c .grade-letter { background: linear-gradient(135deg, #fde68a, #f5a623 44%, #fb7185 90%); -webkit-background-clip: text; background-clip: text; }
.grade-d .grade-letter { background: linear-gradient(135deg, #fdba74, #f97316 42%, #ef4444 90%); -webkit-background-clip: text; background-clip: text; }
.grade-e .grade-letter { background: linear-gradient(135deg, #fca5a5, #ef4444 42%, #dc2626 90%); -webkit-background-clip: text; background-clip: text; }
.score { font-size: 1.75rem; font-weight: 900; letter-spacing: -.04em; }
.grade-label { color: #80ffe0; font-weight: 850; margin-top: 7px; }
.grade-b .grade-label { color: #38bdf8; }
.grade-c .grade-label { color: #f5a623; }
.grade-d .grade-label { color: #f97316; }
.grade-e .grade-label { color: #ef4444; }
.limitations { color: var(--fc-muted); font-size: .82rem; line-height: 1.55; margin-top: 14px; }
.metadata-list { display: grid; gap: 10px; margin-top: 16px; }
.meta-item { display: flex; justify-content: space-between; gap: 14px; color: var(--fc-muted); font-size: .82rem; }
.meta-item strong { color: var(--fc-muted); text-align: right; overflow-wrap: anywhere; }
.cta-card {
    padding: 24px;
    border: 1px solid rgba(108, 92, 231, .35);
    border-radius: 20px;
    background: radial-gradient(circle at 100% 0%, rgba(108, 92, 231, .18), rgba(8, 145, 178, .08) 60%, rgba(16, 24, 39, .92));
    box-shadow: 0 0 24px rgba(108, 92, 231, .12), 0 0 48px rgba(8, 145, 178, .06), 0 18px 60px rgba(0, 0, 0, .2);
}
.cta-card h3 {
    font-size: 1.15rem;
    font-weight: 850;
    color: var(--fc-text);
    margin: 0 0 4px;
    letter-spacing: -.02em;
}
.cta-card p { color: var(--fc-muted); line-height: 1.55; margin: 8px 0 14px; font-size: .9rem; }
.cta-divider { border: 0; border-top: 1px solid rgba(148, 163, 184, .18); margin: 22px 0 18px; }
.scan-report-request { display: grid; gap: 12px; margin-bottom: 4px; }
.scan-report-form { display: grid; gap: 12px; }
.scan-report-label { font-size: .9rem; font-weight: 700; color: var(--fc-text); }
.scan-report-input { width: 100%; border-radius: 14px; border: 1px solid rgba(148, 163, 184, .24); background: rgba(15, 23, 42, .72); color: var(--fc-text); padding: 13px 14px; font: inherit; }
.scan-report-input:focus { outline: 2px solid rgba(56, 189, 248, .55); outline-offset: 2px; border-color: rgba(56, 189, 248, .45); }
.check-secondary-btn { display: inline-flex; align-items: center; justify-content: center; width: 100%; min-height: 48px; border-radius: 14px; border: 1px solid rgba(56, 189, 248, .42); background: rgba(8, 145, 178, .08); color: #dff7ff; font-weight: 780; letter-spacing: -.01em; cursor: pointer; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.check-secondary-btn:hover { transform: translateY(-1px); border-color: rgba(56, 189, 248, .65); background: rgba(8, 145, 178, .14); }
.scan-report-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.scan-report-cancel { border: 0; background: transparent; color: var(--fc-muted); font-weight: 700; cursor: pointer; padding: 10px 0; }
.scan-report-cancel:hover { color: var(--fc-text); }
.scan-report-help { margin: 0; font-size: .84rem; color: var(--fc-muted); }
.scan-report-feedback { margin: 0; font-size: .9rem; line-height: 1.5; }
@keyframes ctaGlow { 0%, 100% { box-shadow: 0 0 24px rgba(108, 92, 231, .12), 0 0 48px rgba(8, 145, 178, .06), 0 18px 60px rgba(0, 0, 0, .2); } 50% { box-shadow: 0 0 32px rgba(108, 92, 231, .2), 0 0 60px rgba(8, 145, 178, .1), 0 18px 60px rgba(0, 0, 0, .2); } }
.cta-card { animation: ctaGlow 4s ease-in-out infinite; }
.cta-secondary h3 { font-size: 1.15rem; font-weight: 850; color: var(--fc-text); letter-spacing: -.02em; }
.cta-enquiry-form .check-primary-btn.cta-btn-full { background: #6C5CE7; box-shadow: 0 4px 20px rgba(108, 92, 231, .35); }
.cta-enquiry-form .check-primary-btn.cta-btn-full:hover { background: #7c6df0; box-shadow: 0 6px 28px rgba(108, 92, 231, .45); }
.cta-enquiry-form { margin: 16px 0 0; }
.cta-form-row { display: flex; gap: 12px; margin-bottom: 12px; }
.cta-form-two-col .cta-form-field { flex: 1; }
.cta-form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--fc-dim); margin-bottom: 4px; }
.cta-form-field input { width: 100%; padding: 10px 12px; border: 1px solid var(--fc-border); border-radius: 8px; font-size: 14px; background: rgba(15, 23, 42, .72); color: var(--fc-text); outline: none; }
.cta-form-field input:focus { border-color: rgba(56, 189, 248, .55); box-shadow: 0 0 0 2px rgba(56, 189, 248, .15); }
.cta-submit-btn { margin-top: 4px; min-height: 52px; font-size: .95rem; background: #6C5CE7; border: 0; border-radius: 12px; box-shadow: 0 4px 20px rgba(108, 92, 231, .35); }
.cta-submit-btn:hover { background: #7c6df0; box-shadow: 0 6px 28px rgba(108, 92, 231, .45); }
.cta-form-note { font-size: 12px; color: var(--fc-dim); margin: 8px 0 0; }
.cta-form-success { margin-top: 12px; padding: 10px 14px; background: rgba(34, 197, 94, .08); border: 1px solid rgba(34, 197, 94, .25); border-radius: 8px; color: #4ade80; font-size: 14px; }
.cta-form-success p { margin: 0; color: #4ade80; }
.cta-form-error { margin-top: 12px; padding: 10px 14px; background: rgba(239, 68, 68, .08); border: 1px solid rgba(239, 68, 68, .25); border-radius: 8px; color: #f87171; font-size: 14px; }
.cta-form-error p { margin: 0; color: #f87171; }
.cta-modal-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, .6); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; z-index: 9999; padding: 20px; }
.cta-modal { background: #0f172a; border: 1px solid rgba(108, 92, 231, .4); border-radius: 20px; padding: 32px; max-width: 480px; width: 100%; position: relative; box-shadow: 0 0 40px rgba(108, 92, 231, .15), 0 24px 80px rgba(0, 0, 0, .4); }
.cta-modal h3 { font-size: 1.2rem; font-weight: 850; color: #fff; margin: 0 0 6px; letter-spacing: -.02em; }
.cta-modal-sub { color: var(--fc-muted); font-size: .88rem; line-height: 1.5; margin: 0 0 18px; }
.cta-modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; color: var(--fc-muted); font-size: 1.5rem; cursor: pointer; line-height: 1; padding: 4px; }
.cta-modal-close:hover { color: #fff; }
.cta-modal-prefilled { background: rgba(108, 92, 231, .08); border: 1px solid rgba(108, 92, 231, .2); border-radius: 12px; padding: 14px 16px; margin-bottom: 20px; }
.cta-modal-row { font-size: .85rem; color: var(--fc-muted); margin-bottom: 6px; line-height: 1.5; }
.cta-modal-row:last-child { margin-bottom: 0; }
.cta-modal-label { color: var(--fc-dim); }
.cta-modal-row strong { color: var(--fc-text); font-weight: 600; }
.cta-modal-form { display: grid; gap: 14px; }
.scan-report-feedback.is-success { color: #7ef7c7; }
.scan-report-feedback.is-error { color: #ff8f8f; }
.secondary-link { display: inline-flex; margin-top: 14px; color: var(--fc-accent); text-decoration: none; font-weight: 780; }

/* CSP-safe replacements for removed inline styles */
.report-card.pad.results-header { border: 0; border-radius: 0; box-shadow: none; background: transparent; padding-bottom: 0; }
.cta-btn-full { display: flex; align-items: center; justify-content: center; text-decoration: none; width: 100%; }
.limitations-heading { color: var(--fc-text); margin-bottom: 10px; }
ul.skipped-list { margin-top: 12px; padding-left: 18px; }

/* Partial result banner */
.partial-banner {
    border: 1px solid rgba(245, 166, 35, .28);
    border-radius: 20px;
    padding: 22px;
    background: radial-gradient(circle at 50% 0%, rgba(245, 166, 35, .10), transparent 18rem),
                linear-gradient(180deg, rgba(16, 24, 39, .95), rgba(8, 13, 24, .95));
}
.partial-banner h3 {
    margin: 12px 0 8px;
    letter-spacing: -.035em;
    color: #f5a623;
}
.partial-banner p {
    margin: 0;
    color: var(--fc-muted);
    line-height: 1.6;
}

/* Grade caveat */
.grade-caveat {
    color: #f5a623;
    font-size: .82rem;
    font-weight: 700;
    margin-top: 8px;
    line-height: 1.45;
}
.verdict .grade-caveat {
    color: #f5a623;
    font-size: .86rem;
    font-weight: 700;
    margin-top: 10px;
    line-height: 1.5;
}

/* Experimental badge */
.exp-badge {
    display: inline-block;
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--fc-muted-2);
    background: rgba(100, 116, 139, .12);
    border: 1px solid rgba(100, 116, 139, .22);
    border-radius: 6px;
    padding: 2px 6px;
    vertical-align: middle;
    margin-left: 4px;
}


.snapshot-banner {
    background: rgba(99, 102, 241, .1);
    border: 1px solid rgba(99, 102, 241, .25);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: .85rem;
    color: var(--fc-text);
}
.snapshot-banner .rescan-link {
    color: var(--fc-accent);
    text-decoration: underline;
    margin-left: 4px;
}
.snapshot-banner .rescan-btn {
    color: var(--fc-accent);
    text-decoration: underline;
}
.snapshot-banner .rescan-btn:hover {
    opacity: .85;
}

@media (max-width: 980px) {
    .report-grid { grid-template-columns: 1fr; }
    .side-stack { position: static; order: -1; }
    details.category-row summary { grid-template-columns: minmax(0, 1fr) auto; }
    }
@media (max-width: 680px) {
    .check-hero { padding: 56px 0 16px; }
    .check-hero-card { padding: 18px; }
    .check-form, .summary-pair { grid-template-columns: 1fr; }
    .check-primary-btn { width: 100%; }
    .result-header { grid-template-columns: 1fr; align-items: start; }
    .verdict { flex-direction: column; align-items: stretch; text-align: center; }
    .verdict-grade { margin-bottom: 4px; }
    .verdict-counts { justify-content: center; }
    .grade-letter { font-size: 5rem; }
    details.category-row.nested-category { margin-left: 0; }
    details.category-row summary { grid-template-columns: 1fr auto 0; gap: 10px; }
    details.check-item summary { grid-template-columns: auto 1fr auto 0; gap: 10px; }
    details.category-row summary .chevron, details.check-item summary .chevron { display: none; }
    .check-badge, .score-pill { min-width: fit-content; padding: 3px 8px; white-space: nowrap; justify-content: center; text-align: center; }
    .check-detail > dl > div { grid-template-columns: 120px minmax(0, 1fr); gap: 8px; }
    .check-detail-grid div { grid-template-columns: 120px minmax(0, 1fr); gap: 8px; }
    .check-detail dt { white-space: normal; font-size: .65rem; }
    .domain-registration-grid div { white-space: normal; grid-template-columns: 100px minmax(0, 1fr); }
    .domain-registration-grid dt { min-width: 0; font-size: .65rem; }
    .grade-panel { padding: 20px; }
    .grade-panel .grade-letter { font-size: 5rem; }
    .grade-panel .score { font-size: 1.4rem; }
    .sample-report { max-width: 100%; }
    .sample-report-header { padding: 12px 14px 0; }
    .sample-score-label { padding: 6px 14px 0; }
    .sample-section { padding: 6px 14px; }
    .sample-list li { padding: 3px 0; font-size: .78rem; }
    .section-heading h2 { font-size: 1.15rem; }
    .section-heading p { font-size: .82rem; }
    .web-scanner-page footer.footer { padding: 36px 0 20px; }
    .web-scanner-page .footer-content { gap: 24px; margin-bottom: 28px; }
    .web-scanner-page .footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; }
    .web-scanner-page .footer-brand { display: none; }
    .web-scanner-page .footer-col { min-width: 0; }
    .web-scanner-page .footer-col h4 { font-size: .72rem; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .06em; }
    .web-scanner-page .footer-col a { font-size: .75rem; line-height: 1.7; }
    .web-scanner-page .footer-bottom { padding-top: 16px; margin-top: 16px; }
    .web-scanner-page .footer-bottom p { font-size: .72rem; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
.dkim-unknown {
    color: #999;
}
.check-badge.skipped { color: #e67e22; background: rgba(230, 126, 34, .12); border: 0.5px solid rgba(230, 126, 34, .28); }
.score-pill-skipped { color: #e67e22; background: rgba(230, 126, 34, .12); border: 0.5px solid rgba(230, 126, 34, .28); font-style: normal; font-weight: 500; }
details.check-item.skipped-card { border-color: rgba(230, 126, 34, .22); }
details.check-item.skipped-card[open] { border-color: rgba(230, 126, 34, .28); }
.skipped-card .check-detail { border-left-color: rgba(230, 126, 34, .28); }
.skipped-card .rec-block { border-left-color: #e67e22; }
.skipped-card .rec-block p { color: #e67e22; }

/* ── Hero badge ──────────────────────────────────────────── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 100px;
    background: rgba(34, 211, 238, .08);
    border: 1px solid rgba(34, 211, 238, .18);
    color: #22d3ee;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .02em;
    margin-bottom: 18px;
}

/* ── Hero two-column layout ──────────────────────────────── */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: clamp(24px, 3vw, 40px);
    align-items: start;
}
.hero-left { min-width: 0; }
.hero-right {
    position: sticky;
    top: 100px;
}

/* ── Sample report preview ───────────────────────────────── */
.sample-report {
    border-radius: 16px;
    background: #0F172A;
    border: 1px solid rgba(100, 130, 180, .18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(148, 163, 184, .1);
    padding: 0;
    overflow: hidden;
}
.sample-report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 0;
}
.sample-domain {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .82rem;
    font-weight: 600;
    color: #c9d5e6;
}
.sample-domain svg { color: #5a6a80; }
.sample-grade {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f5a623, #e67e22);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -.02em;
}
.sample-score-bar {
    margin: 14px 20px 0;
    height: 6px;
    border-radius: 3px;
    background: rgba(148, 163, 184, .1);
    overflow: hidden;
}
.sample-score-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #f5a623, #e67e22);
    transition: width .6s ease;
}
.sample-score-fill--62 { width: 62%; }
.sample-score-label {
    padding: 6px 20px 0;
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.sample-score-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: #f5a623;
    letter-spacing: -.03em;
}
.sample-score-of {
    font-size: .78rem;
    color: #5a6a80;
    font-weight: 500;
}
.sample-section {
    padding: 14px 20px 0;
}
.sample-section:last-child {
    padding-bottom: 20px;
}
.sample-section-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px;
}
.sample-section-title--bad  { color: #ff5c5c; }
.sample-section-title--good { color: #00d4aa; }
.sample-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sample-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: .76rem;
    color: #9fb4cc;
    line-height: 1.4;
}
.sample-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}
.sample-dot--bad  { background: #ff5c5c; }
.sample-dot--warn { background: #f5a623; }
.sample-dot--good { background: #00d4aa; }
.sample-cta {
    margin-top: 14px;
    padding: 12px 20px;
    background: rgba(108, 92, 231, .06);
    border-top: 1px solid rgba(108, 92, 231, .1);
    text-align: center;
}
.sample-cta span {
    font-size: .72rem;
    color: #7c6df0;
    font-weight: 600;
}

/* ── Section headings ────────────────────────────────────── */
.section-heading {
    text-align: center;
    margin-bottom: clamp(28px, 4vw, 48px);
}
.section-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(108, 92, 231, .1);
    border: 1px solid rgba(108, 92, 231, .2);
    color: #a29bfe;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px;
}
.section-heading h2 {
    margin: 0 0 8px;
    font-size: clamp(1.3rem, 2.6vw, 1.7rem);
    font-weight: 800;
    letter-spacing: -.03em;
    color: #f1f5f9;
}
.section-heading p {
    margin: 0;
    color: #7e8fa6;
    font-size: .92rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 980px) {
    .hero-layout { grid-template-columns: 1fr; gap: 20px; }
    .hero-right { position: static; }
    .sample-report { max-width: 400px; }
}
@media (max-width: 680px) {
    .sample-report { max-width: 100%; }
    .hero-badge { margin-bottom: 12px; }
    .check-hero h1 { font-size: 1.35rem; }
    .check-hero p { font-size: .85rem; margin-top: 10px; }
}
