:root {
    color-scheme: dark;
    --bg: #050505;
    --surface: #0d0d0d;
    --card: #151515;
    --card-strong: #1c1c1c;
    --text: #ffffff;
    --muted: #a8a8a8;
    --soft: #d8e0ea;
    --border: #2a2a2a;
    --brand: #0096ff;
    --brand-strong: #39adff;
    --yes: #22c55e;
    --yes-bg: rgba(34, 197, 94, 0.16);
    --no: #ef4444;
    --no-bg: rgba(239, 68, 68, 0.14);
    --partial: #f59e0b;
    --partial-bg: rgba(245, 158, 11, 0.14);
    --radius: 8px;
    --shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-width: 320px;
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(0, 150, 255, 0.08) 0, rgba(0, 150, 255, 0) 420px),
        linear-gradient(180deg, #000000 0%, var(--bg) 100%);
}

a {
    color: var(--brand);
    text-underline-offset: 3px;
}

a:hover {
    color: #66bdff;
}

a:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
    border-radius: 4px;
}

.page-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 44px;
}

.top-nav {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: wrap;
    margin: 0 0 18px;
}

.pill-link,
.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    text-decoration: none;
    font-weight: 750;
}

.pill-link {
    color: var(--soft);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(15, 15, 15, 0.72);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.91rem;
}

.pill-link:hover {
    color: #fff;
    border-color: rgba(0, 150, 255, 0.55);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(230px, 340px);
    align-items: center;
    gap: clamp(22px, 4vw, 48px);
    min-height: min(600px, calc(100svh - 150px));
    padding: clamp(22px, 4vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(0, 150, 255, 0.16) 0%, rgba(0, 150, 255, 0) 42%),
        linear-gradient(180deg, rgba(21, 21, 21, 0.96) 0%, rgba(10, 10, 10, 0.96) 100%);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--brand-strong);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    letter-spacing: 0;
}

h1 {
    max-width: 780px;
    margin: 0 0 16px;
    font-size: clamp(2.25rem, 6vw, 4.7rem);
    line-height: 0.96;
}

h2 {
    margin: 0 0 14px;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    line-height: 1.1;
}

h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
    line-height: 1.2;
}

p {
    margin: 0 0 14px;
    color: var(--soft);
}

p:last-child {
    margin-bottom: 0;
}

.lede {
    max-width: 760px;
    color: #dce6f4;
    font-size: clamp(1.04rem, 2vw, 1.24rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.cta {
    border-radius: var(--radius);
    padding: 12px 18px;
}

.cta.primary {
    color: #00111d;
    background: #ffffff;
}

.cta.secondary {
    color: #ffffff;
    background: var(--brand);
}

.cta:hover {
    transform: translateY(-1px);
}

.phone-shot {
    position: relative;
    width: min(100%, 235px);
    margin: 0 auto;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    background: #050505;
    box-shadow: 0 34px 72px rgba(0, 0, 0, 0.46);
}

.phone-shot img {
    display: block;
    width: 100%;
    aspect-ratio: 1242 / 2688;
    object-fit: cover;
    border-radius: 20px;
}

.section,
.verdict,
.download-panel {
    margin-top: 16px;
    padding: clamp(20px, 4vw, 34px);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius);
    background: rgba(13, 13, 13, 0.92);
}

.verdict-grid,
.split-section,
.proof-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.verdict article,
.split-section article,
.signal-grid li {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: var(--card);
    padding: 18px;
}

.winner-badge,
.neutral-badge {
    display: inline-flex;
    margin-bottom: 12px;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 0.78rem;
    font-weight: 800;
}

.winner-badge {
    color: #bff8d2;
    background: var(--yes-bg);
}

.neutral-badge {
    color: #dce6f4;
    background: rgba(255, 255, 255, 0.1);
}

.section-heading {
    max-width: 820px;
    margin-bottom: 18px;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    background: #0a0a0a;
}

th,
td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    vertical-align: middle;
}

thead th {
    color: #fff;
    background: #151515;
    font-size: 0.92rem;
}

tbody th {
    width: 48%;
    color: #e8eef7;
    font-weight: 700;
}

tbody tr:last-child th,
tbody tr:last-child td {
    border-bottom: 0;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-width: 82px;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.84rem;
    font-weight: 850;
}

.status::before {
    display: inline-grid;
    place-items: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    color: #050505;
    font-size: 0.72rem;
    line-height: 1;
}

.status.yes {
    color: #c8f7d8;
    background: var(--yes-bg);
}

.status.yes::before {
    content: "+";
    background: var(--yes);
}

.status.no {
    color: #ffd0d0;
    background: var(--no-bg);
}

.status.no::before {
    content: "-";
    background: var(--no);
}

.status.partial {
    color: #ffe1a8;
    background: var(--partial-bg);
}

.status.partial::before {
    content: "~";
    background: var(--partial);
}

.table-note {
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.9rem;
}

.decision-list,
.signal-grid {
    display: grid;
    gap: 10px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.decision-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    color: #e8eef7;
}

.marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 22px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 850;
}

.yes-marker {
    color: #05170c;
    background: var(--yes);
}

.no-marker {
    color: #2a0505;
    background: var(--no);
}

.decision-list.muted li {
    color: #cbd5e1;
}

.proof-section {
    align-items: start;
}

.signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.signal-grid strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
}

.signal-grid span {
    color: var(--muted);
}

.faq-section details {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 0;
}

.faq-section details:last-child {
    padding-bottom: 0;
}

summary {
    cursor: pointer;
    color: #fff;
    font-weight: 800;
}

details p {
    margin-top: 10px;
    color: #cbd5e1;
}

.download-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    background:
        linear-gradient(135deg, rgba(0, 150, 255, 0.18), rgba(0, 150, 255, 0.02)),
        #101010;
}

.key-difference {
    border-color: rgba(0, 150, 255, 0.28);
    background:
        linear-gradient(135deg, rgba(0, 150, 255, 0.12), rgba(0, 150, 255, 0.02)),
        rgba(13, 13, 13, 0.92);
}

.key-difference-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.key-difference-grid article {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: var(--card);
    padding: 18px;
}

.key-difference-grid h3 {
    margin-bottom: 8px;
}

.alternative-proof .proof-points {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.alternative-proof .proof-points li {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: var(--card);
    padding: 14px 16px;
    color: #e8eef7;
}

.alternative-proof .proof-points strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
}

.contextual-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    border-color: rgba(34, 197, 94, 0.28);
    background:
        linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.02)),
        rgba(13, 13, 13, 0.92);
}

.resource-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 12px;
}

.resource-links a {
    font-weight: 700;
}

.related-section {
    padding-top: 22px;
    padding-bottom: 22px;
}

.footer {
    margin-top: 28px;
    text-align: center;
    color: var(--muted);
    font-size: 0.92rem;
}

@media (max-width: 860px) {
    .hero,
    .verdict-grid,
    .split-section,
    .proof-section,
    .key-difference-grid,
    .contextual-cta,
    .download-panel {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 0;
    }

    .phone-shot {
        width: min(72vw, 270px);
    }

    .download-panel .hero-actions {
        margin-top: 0;
    }
}

@media (max-width: 560px) {
    .page-shell {
        width: min(100% - 24px, 1120px);
        padding-top: 12px;
    }

    .top-nav {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 2px;
    }

    .pill-link {
        white-space: nowrap;
    }

    .hero,
    .section,
    .verdict,
    .download-panel {
        padding: 18px;
    }

    .hero {
        gap: 16px;
    }

    .phone-shot {
        width: min(29vw, 110px);
        padding: 6px;
        border-radius: 20px;
    }

    .phone-shot img {
        border-radius: 14px;
    }

    .hero-actions,
    .cta {
        width: 100%;
    }

    .signal-grid {
        grid-template-columns: 1fr;
    }
}


/* === Grouped site navigation === */
.site-nav{display:flex;align-items:center;justify-content:space-between;gap:10px 18px;flex-wrap:wrap;margin-bottom:18px;position:relative;z-index:50;}
.site-nav .brand{display:inline-flex;align-items:center;gap:9px;text-decoration:none;color:#e6edf8;font-weight:700;font-size:1.02rem;}
.site-nav .brand img{border-radius:7px;display:block;}
.site-nav .menu{display:flex;align-items:center;gap:6px;flex-wrap:wrap;}
.site-nav .nav-item{display:inline-flex;align-items:center;min-height:40px;padding:8px 14px;border-radius:999px;color:#5ea3ff;background:rgba(20,31,52,.72);border:1px solid rgba(94,163,255,.26);font-size:.92rem;text-decoration:none;cursor:pointer;white-space:nowrap;list-style:none;transition:background-color .2s ease,color .2s ease;}
.site-nav .nav-item:hover{color:#fff;background:#5ea3ff;}
.site-nav summary.nav-item{list-style:none;}
.site-nav summary.nav-item::-webkit-details-marker{display:none;}
.site-nav summary.nav-item::after{content:"";width:6px;height:6px;margin-left:8px;border-right:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(45deg) translateY(-1px);transition:transform .2s ease;}
.site-nav .nav-group{position:relative;}
.site-nav .nav-group[open]>summary.nav-item::after{transform:rotate(-135deg) translateY(1px);}
.site-nav .nav-drop{position:absolute;top:calc(100% + 6px);left:0;min-width:210px;display:flex;flex-direction:column;gap:2px;padding:8px;background:#0f1728;border:1px solid #2b3a57;border-radius:12px;box-shadow:0 18px 44px rgba(0,0,0,.42);z-index:60;}
.site-nav .nav-drop a{padding:9px 12px;border-radius:8px;color:#e6edf8;text-decoration:none;font-size:.92rem;white-space:nowrap;}
.site-nav .nav-drop a:hover{background:rgba(94,163,255,.16);color:#fff;}
@media (max-width:640px){
.site-nav{gap:10px;}
.site-nav .menu{width:100%;}
.site-nav .nav-group{position:static;}
.site-nav .nav-drop{position:static;min-width:0;width:100%;margin-top:4px;box-shadow:none;background:rgba(94,163,255,.06);border-color:rgba(94,163,255,.18);}
}
