:root {
    --ink: #14213d;
    --ink-2: #26324f;
    --muted: #667085;
    --paper: #fbf7ef;
    --paper-2: #fffaf1;
    --panel: #ffffff;
    --line: rgba(20, 33, 61, .12);
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --mint: #63d2a4;
    --apricot: #ffb86b;
    --rose: #ff6b8a;
    --shadow: 0 24px 70px rgba(20, 33, 61, .12);
    --shadow-soft: 0 14px 36px rgba(20, 33, 61, .09);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shell: min(1160px, calc(100vw - 36px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(99, 210, 164, .24), transparent 32rem),
        radial-gradient(circle at 88% 10%, rgba(255, 184, 107, .26), transparent 26rem),
        linear-gradient(180deg, #f7fbff 0%, var(--paper) 45%, #f6efe4 100%);
    line-height: 1.65;
    min-height: 100vh;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .34;
    background-image: linear-gradient(rgba(20, 33, 61, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 33, 61, .045) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, #000, transparent 70%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
.shell { width: var(--shell); margin-inline: auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(247, 251, 255, .78);
    border-bottom: 1px solid rgba(20, 33, 61, .08);
}
.site-header__inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 850;
    letter-spacing: -.02em;
}
.brand__mark {
    border-radius: 16px;
    padding: 8px;
    background: linear-gradient(135deg, var(--ink), #243b80);
    box-shadow: 0 10px 24px rgba(37, 99, 235, .22);
}
.brand small {
    display: block;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 650;
    letter-spacing: .02em;
}
.main-nav { display: flex; gap: 8px; align-items: center; }
.main-nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--ink-2);
    font-weight: 750;
    font-size: .94rem;
}
.main-nav a:hover, .main-nav a.is-active {
    background: var(--ink);
    color: #fff;
}
.nav-toggle { display: none; }

.hero, .review-hero, .page-hero { position: relative; overflow: hidden; }
.hero {
    padding: 76px 0 56px;
}
.hero::after, .review-hero::after, .page-hero::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 999px;
    right: -140px;
    top: 40px;
    background: radial-gradient(circle, rgba(37, 99, 235, .20), transparent 70%);
    pointer-events: none;
}
.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, .78fr);
    gap: 58px;
    align-items: center;
}
.hero__copy h1, .review-hero h1, .page-hero h1 {
    font-family: "DM Serif Display", Georgia, serif;
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.045em;
    margin: .1rem 0 1.35rem;
    font-size: clamp(3rem, 7vw, 6.8rem);
}
.review-hero h1, .page-hero h1 { font-size: clamp(2.7rem, 6vw, 5.7rem); }
.lead {
    font-size: clamp(1.08rem, 1.7vw, 1.38rem);
    color: var(--ink-2);
    max-width: 720px;
}
.eyebrow {
    margin: 0 0 .7rem;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: .78rem;
    font-weight: 850;
    color: var(--blue-dark);
}
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.button, .retailer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    font-weight: 850;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(37, 99, 235, .24);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover, .retailer-button:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(37, 99, 235, .28); }
.button--ghost {
    background: rgba(255,255,255,.72);
    color: var(--ink);
    border: 1px solid var(--line);
    box-shadow: none;
}
.hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}
.hero__facts span {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.68);
    border-radius: 999px;
    padding: 9px 13px;
    color: var(--muted);
    font-weight: 750;
    font-size: .9rem;
}
.hero__image {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 22px;
    background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(236, 243, 255, .78));
    box-shadow: var(--shadow);
    transform: rotate(1.3deg);
}
.hero__image::before {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 28px;
    border: 1px dashed rgba(20,33,61,.18);
}
.hero__image img { position: relative; border-radius: 24px; }

.section { padding: 72px 0; }
.section--paper {
    background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,250,241,.92));
    border-block: 1px solid rgba(20,33,61,.08);
}
.section-heading { max-width: 780px; margin-bottom: 30px; }
.section-heading h2, .editorial-note h2, .review-content h2 {
    font-family: "DM Serif Display", Georgia, serif;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -.035em;
    margin: 0;
    font-size: clamp(2.1rem, 4vw, 4rem);
}
.section-heading--split {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}
.decision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.decision-grid article, .product-card, .spec-card, .editorial-note, .legal-content section, .table-shell {
    background: rgba(255,255,255,.82);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}
.decision-grid article {
    padding: 24px;
    position: relative;
    overflow: hidden;
}
.decision-grid article::after {
    content: "";
    position: absolute;
    width: 92px;
    height: 92px;
    border-radius: 999px;
    right: -28px;
    top: -28px;
    background: var(--mint);
    opacity: .28;
}
.decision-grid strong { display: block; font-size: 1.1rem; margin-bottom: 8px; }
.decision-grid p { color: var(--muted); margin: 0; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.product-card__image, .product-card > img {
    background: linear-gradient(135deg, #e9f2ff, #fff3dd 55%, #f4fbf5);
    min-height: 235px;
    display: grid;
    place-items: center;
}
.product-card img { width: 100%; object-fit: contain; }
.product-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product-card h2, .product-card h3 {
    margin: 0 0 12px;
    line-height: 1.05;
    letter-spacing: -.03em;
    font-size: 1.55rem;
}
.product-card p { color: var(--muted); }
.product-card ul { padding-left: 1.1rem; color: var(--ink-2); margin: 0 0 20px; }
.card-actions { margin-top: auto; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.text-link { font-weight: 850; color: var(--blue-dark); }
.retailer-button { background: var(--ink); font-size: .94rem; box-shadow: none; }
.retailer-button--small { min-height: 40px; padding: 9px 13px; }

.editorial-note { padding: clamp(28px, 5vw, 54px); position: relative; overflow: hidden; }
.editorial-note::before {
    content: "";
    position: absolute;
    inset: auto 30px 30px auto;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--apricot), var(--rose));
    opacity: .18;
}
.editorial-note p:last-child { max-width: 760px; color: var(--ink-2); font-size: 1.08rem; }

.review-hero, .page-hero { padding: 66px 0 44px; }
.review-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 44px;
    align-items: center;
}
.review-hero img {
    background: rgba(255,255,255,.84);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 18px;
    box-shadow: var(--shadow);
}
.review-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 24px;
    align-items: start;
}
.review-content {
    background: rgba(255,255,255,.68);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: clamp(24px, 4vw, 48px);
}
.content-block { margin-top: 34px; }
.content-block h3 { margin: 0 0 10px; font-size: 1.35rem; letter-spacing: -.02em; }
.content-block p { color: var(--ink-2); }
.check-list, .plain-list { padding: 0; margin: 0; list-style: none; display: grid; gap: 10px; }
.check-list li, .plain-list li {
    padding: 12px 14px 12px 42px;
    border-radius: 15px;
    background: rgba(247,251,255,.86);
    border: 1px solid var(--line);
    position: relative;
}
.check-list li::before, .plain-list li::before {
    position: absolute;
    left: 15px;
    top: 12px;
    font-weight: 900;
}
.check-list li::before { content: "✓"; color: #16825a; }
.plain-list li::before { content: "–"; color: var(--rose); }
.review-aside { position: sticky; top: 104px; display: grid; gap: 18px; }
.spec-card { padding: 24px; }
.spec-card h2 { margin: 0 0 14px; font-size: 1.25rem; }
.spec-card dl { display: grid; grid-template-columns: 95px 1fr; gap: 10px 12px; margin: 0; }
.spec-card dt { color: var(--muted); font-weight: 800; }
.spec-card dd { margin: 0; font-weight: 650; }
.retailer-list { display: grid; gap: 10px; }

.table-shell { overflow-x: auto; padding: 8px; }
.comparison-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 820px; }
.comparison-table th, .comparison-table td { padding: 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.comparison-table th { color: var(--blue-dark); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; }
.comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table a { color: var(--blue-dark); font-weight: 850; }
.product-grid--compact .product-card__body { min-height: 260px; }

.legal-content { display: grid; gap: 18px; max-width: 880px; }
.legal-content section { padding: 26px; }
.legal-content h2 { margin: 0 0 10px; font-size: 1.45rem; }
.legal-content p { color: var(--ink-2); }
.updated { color: var(--muted); font-weight: 750; }
.legal-action { background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(99,210,164,.14)) !important; }

.site-footer {
    background: var(--ink);
    color: #fff;
    padding: 54px 0 24px;
    margin-top: 46px;
}
.site-footer .brand__mark { background: rgba(255,255,255,.12); box-shadow: none; }
.site-footer p, .site-footer small { color: rgba(255,255,255,.72); }
.site-footer__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 36px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.footer-links a {
    padding: 9px 12px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    color: rgba(255,255,255,.86);
}
.site-footer__bottom { margin-top: 32px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.6); }

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    width: min(940px, calc(100vw - 28px));
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255,255,255,.94);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner h2 { margin: 0 0 4px; }
.cookie-banner p { margin: 0; color: var(--muted); }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 900px) {
    .hero__grid, .review-hero__grid, .review-layout, .site-footer__grid { grid-template-columns: 1fr; }
    .decision-grid, .product-grid { grid-template-columns: 1fr; }
    .section-heading--split { align-items: flex-start; flex-direction: column; }
    .review-aside { position: static; }
    .footer-links { justify-content: flex-start; }
    .hero { padding-top: 44px; }
}
@media (max-width: 720px) {
    .site-header__inner { min-height: 70px; }
    .nav-toggle {
        display: inline-grid;
        gap: 4px;
        width: 42px;
        height: 42px;
        place-content: center;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: rgba(255,255,255,.8);
    }
    .nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 3px; }
    .main-nav {
        position: absolute;
        left: 18px;
        right: 18px;
        top: 72px;
        padding: 12px;
        flex-direction: column;
        align-items: stretch;
        background: rgba(255,255,255,.96);
        border: 1px solid var(--line);
        border-radius: 20px;
        box-shadow: var(--shadow-soft);
        display: none;
    }
    .main-nav.is-open { display: flex; }
    .main-nav a { text-align: center; }
    .hero__copy h1 { font-size: clamp(2.65rem, 16vw, 4rem); }
    .hero__image { transform: none; padding: 14px; }
    .cookie-banner { grid-template-columns: 1fr; }
    .cookie-banner__actions .button { flex: 1 1 180px; }
}
