:root {
    --bg: #f3f6fb;
    --bg-soft: #e7eef7;
    --surface: #ffffff;
    --surface-alt: #0f2742;
    --surface-alt-2: #122f50;
    --ink: #122033;
    --muted: #55657a;
    --line: #d5deea;
    --line-strong: #aebed4;
    --accent: #0d7b6c;
    --accent-strong: #085d54;
    --warm: #f4a33b;
    --warm-deep: #d7871f;
    --danger: #d64545;
    --shadow-lg: 0 26px 60px rgba(13, 31, 50, 0.14);
    --shadow-md: 0 18px 38px rgba(13, 31, 50, 0.1);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Source Sans 3", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top right, rgba(13, 123, 108, 0.1), transparent 28%),
        linear-gradient(180deg, #f7f9fc 0%, #eef3f9 55%, #f3f6fb 100%);
    line-height: 1.65;
}

body.is-locked {
    overflow: hidden;
}

a {
    color: var(--accent-strong);
    text-decoration: none;
}

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

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

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

p {
    margin: 0 0 1rem;
}

ul {
    margin: 0;
    padding-left: 20px;
}

.shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.topbar {
    background: #0b1d31;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.topbar a {
    color: #fff;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(243, 246, 251, 0.92);
    border-bottom: 1px solid rgba(174, 190, 212, 0.55);
    box-shadow: 0 10px 24px rgba(10, 23, 38, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--ink);
}

.brand-mark {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #12375d, #0d7b6c);
    color: #f7fbff;
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.brand-text strong {
    display: block;
    font-size: 22px;
}

.brand-text small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.main-nav a {
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--ink);
}

.hero {
    padding: 34px 0 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 30px;
    align-items: stretch;
}

.hero-copy,
.hero-media,
.signal-card,
.offer-card,
.review-card,
.compare-card,
.style-card-note,
.safer-panel,
.article-card,
.intro-panel {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.hero-copy {
    padding: 42px;
    background: linear-gradient(160deg, rgba(11, 29, 49, 0.98), rgba(18, 55, 93, 0.95));
    color: #f3f8fd;
}

.hero-copy h1 {
    margin-top: 18px;
    font-size: clamp(3rem, 5vw, 5.2rem);
}

.hero-lead {
    margin-top: 22px;
    max-width: 58ch;
    color: rgba(243, 248, 253, 0.82);
    font-size: 19px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #dceefe;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.page-hero .eyebrow,
.section-heading .eyebrow,
.intro-panel .eyebrow,
.style-card-note .eyebrow,
.age-card .eyebrow {
    background: rgba(13, 123, 108, 0.12);
    color: var(--accent-strong);
}

.hero-actions,
.age-actions,
.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-actions {
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    text-align: center;
}

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

.button:focus-visible,
summary:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(244, 163, 59, 0.42);
    outline-offset: 3px;
}

.button-primary {
    background: linear-gradient(135deg, var(--warm), var(--warm-deep));
    color: #1f1708;
    box-shadow: 0 14px 26px rgba(244, 163, 59, 0.24);
}

.button-primary:hover {
    color: #1f1708;
    box-shadow: 0 18px 30px rgba(244, 163, 59, 0.28);
}

.button-secondary {
    background: #ffffff;
    border-color: var(--line-strong);
    color: var(--ink);
}

.button-secondary:hover {
    background: #f8fbff;
    border-color: var(--accent);
    color: var(--ink);
}

.button-small {
    min-height: 42px;
    padding: 0 18px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.info-chip {
    padding: 11px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(243, 248, 253, 0.88);
    font-size: 14px;
}

.hero-media {
    position: relative;
    overflow: hidden;
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 580px;
    object-fit: cover;
}

.media-caption {
    position: absolute;
    right: 22px;
    bottom: 22px;
    max-width: 340px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(8, 20, 34, 0.78);
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
}

.section {
    padding: 84px 0 0;
}

.intro-panel {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
    padding: 32px;
    background: var(--surface);
    border: 1px solid var(--line);
}

.intro-panel h2 {
    margin-top: 16px;
    font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.intro-copy {
    color: var(--muted);
    font-size: 18px;
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.signal-card {
    padding: 26px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid var(--line);
}

.signal-card strong {
    display: block;
    font-family: "Space Grotesk", sans-serif;
    font-size: 38px;
    color: var(--accent-strong);
}

.signal-card span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.section-heading.compact {
    max-width: 620px;
}

.section-heading h2 {
    margin-top: 16px;
    font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.section-heading p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 18px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.offer-card {
    display: flex;
    flex-direction: column;
    padding: 26px;
    background: var(--surface);
    border: 1px solid var(--line);
    min-height: 100%;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.offer-card:hover {
    transform: translateY(-4px);
    border-color: rgba(13, 123, 108, 0.3);
    box-shadow: 0 28px 52px rgba(13, 31, 50, 0.14);
}

.offer-card-featured {
    background: linear-gradient(170deg, #0f2742, #163962);
    border-color: rgba(255, 255, 255, 0.08);
    color: #f4f8fc;
}

.offer-card-featured p,
.offer-card-featured li,
.offer-card-featured .offer-meta span,
.offer-card-featured .offer-note {
    color: rgba(244, 248, 252, 0.78);
}

.offer-card-featured .offer-meta strong,
.offer-card-featured h3 {
    color: #fff;
}

.offer-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.offer-rank {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(13, 123, 108, 0.12);
    color: var(--accent-strong);
    font-weight: 800;
}

.offer-logo {
    min-height: 68px;
    min-width: 146px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(213, 222, 234, 0.92);
}

.offer-logo img {
    max-height: 38px;
    max-width: 132px;
    object-fit: contain;
}

.offer-card h3 {
    margin-top: 20px;
    font-size: 30px;
    line-height: 1.08;
}

.offer-card p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 17px;
}

.offer-points {
    margin-top: 18px;
    color: var(--muted);
    padding-left: 18px;
}

.offer-points li + li {
    margin-top: 7px;
}

.offer-meta {
    margin: auto 0 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(174, 190, 212, 0.4);
}

.offer-meta span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    letter-spacing: 0.02em;
}

.offer-meta strong {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(13, 123, 108, 0.1);
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
    color: var(--accent-strong);
}

.offer-note {
    margin-top: 14px;
    font-size: 13px;
    color: var(--muted);
}

.offer-card .button {
    width: fit-content;
}

.split-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 26px;
    align-items: start;
}

.review-stack {
    display: grid;
    gap: 18px;
}

.review-card {
    padding: 26px;
    background: var(--surface);
    border: 1px solid var(--line);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(13, 31, 50, 0.12);
}

.review-tag {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(13, 123, 108, 0.1);
    color: var(--accent-strong);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.review-card h3 {
    margin-top: 16px;
    font-size: 28px;
}

.review-card p {
    margin-top: 12px;
    color: var(--muted);
}

.review-card a {
    display: inline-block;
    margin-top: 10px;
    font-weight: 800;
}

.section-contrast {
    padding-top: 88px;
}

.section-contrast .shell {
    padding: 42px;
    border-radius: 36px;
    background: linear-gradient(180deg, #0f2742 0%, #173b63 100%);
    color: #eff5fb;
    box-shadow: var(--shadow-lg);
}

.section-contrast .section-heading p,
.section-contrast .compare-card p {
    color: rgba(239, 245, 251, 0.76);
}

.section-contrast .eyebrow {
    background: rgba(255, 255, 255, 0.09);
    color: #d7ebff;
}

.compare-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.compare-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(8px);
}

.compare-card h3 {
    font-size: 24px;
}

.compare-card p {
    margin-top: 12px;
}

.style-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 0.9fr;
    gap: 18px;
}

.style-card-image {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.style-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 28%, rgba(8, 20, 34, 0.82));
}

.style-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style-copy {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1;
    color: #fff;
}

.style-copy h3 {
    font-size: 30px;
}

.style-copy p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.84);
}

.style-card-note {
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.style-card-note h3 {
    margin-top: 16px;
    font-size: 30px;
}

.style-card-note p {
    margin-top: 12px;
    color: var(--muted);
}

.style-card-note a {
    display: inline-block;
    margin-top: 14px;
    font-weight: 800;
}

.safer-panel {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    padding: 34px;
    background: linear-gradient(135deg, #ffffff, #eef5f3);
    border: 1px solid var(--line);
}

.safer-copy h2 {
    margin-top: 16px;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.safer-copy p {
    margin-top: 14px;
    color: var(--muted);
}

.safer-list {
    margin-top: 18px;
}

.safer-list li + li {
    margin-top: 8px;
}

.safer-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, #0f2742, #163962);
    color: #eff5fb;
}

.safer-label {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.safer-box strong {
    display: block;
    margin-top: 18px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 44px;
}

.safer-box p {
    margin-top: 12px;
    color: rgba(239, 245, 251, 0.8);
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-list details {
    padding: 22px 24px;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-list details[open] {
    border-color: rgba(13, 123, 108, 0.26);
    box-shadow: 0 22px 42px rgba(13, 31, 50, 0.11);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    list-style: none;
    font-family: "Space Grotesk", sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.faq-list summary::after {
    content: "+";
    flex: 0 0 auto;
    color: var(--accent-strong);
    font-size: 28px;
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: "–";
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list p {
    margin-top: 14px;
    color: var(--muted);
}

.legal-main {
    padding-bottom: 24px;
}

.page-hero {
    padding: 42px 0 18px;
    max-width: 760px;
}

.page-hero h1 {
    margin-top: 16px;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.page-hero p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 18px;
}

.article-meta {
    margin-top: 18px;
    font-size: 14px;
    color: var(--muted);
}

.article-card {
    padding: 34px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(13, 31, 50, 0.08);
}

.article-card h2 {
    margin-top: 28px;
    font-size: 28px;
}

.article-card h2:first-child {
    margin-top: 0;
}

.article-card p,
.article-card li {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.article-card li + li {
    margin-top: 7px;
}

.table {
    width: 100%;
    margin: 18px 0;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #fbfdff;
}

.table th,
.table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.table thead th {
    background: #f1f6fb;
    color: var(--ink);
    font-family: "Space Grotesk", sans-serif;
    font-size: 15px;
}

.table tbody tr:last-child td {
    border-bottom: 0;
}

.table tbody tr:nth-child(even) td {
    background: rgba(13, 123, 108, 0.03);
}

.callout {
    margin: 22px 0;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(13, 123, 108, 0.08);
    border: 1px solid rgba(13, 123, 108, 0.16);
    color: var(--ink);
}

.site-footer {
    margin-top: 88px;
    padding: 42px 0 28px;
    background: #0b1d31;
    color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.7fr 0.7fr;
    gap: 28px;
    align-items: start;
}

.footer-grid h4 {
    margin-bottom: 12px;
    font-size: 20px;
    color: #fff;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
}

.footer-grid li + li {
    margin-top: 9px;
}

.footer-grid a {
    color: rgba(255, 255, 255, 0.84);
}

.footer-grid a:hover {
    color: #fff;
}

.footer-brand-block p {
    margin-top: 16px;
    max-width: 44ch;
}

.footer-contact {
    margin: 0 0 8px;
}

.regulator-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding: 26px 0 18px;
}

.regulator-strip img {
    max-height: 34px;
    width: auto;
    filter: grayscale(0);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    background: #fff;
    color: #0b1d31;
    font-weight: 800;
}

.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 14px;
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(5, 12, 21, 0.72);
}

.age-gate.hidden {
    display: none;
}

.age-card {
    width: min(560px, 100%);
    padding: 34px;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(213, 222, 234, 0.9);
}

.age-card h2 {
    margin-top: 16px;
    font-size: 32px;
}

.age-card p {
    margin-top: 14px;
    color: var(--muted);
}

.microcopy {
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 30;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    max-width: 1120px;
    margin: 0 auto;
}

.cookie-banner.is-visible {
    display: flex;
}

.cookie-copy {
    color: var(--muted);
    font-size: 15px;
    max-width: 68ch;
}

@media (max-width: 1080px) {
    .hero-grid,
    .split-layout,
    .safer-panel,
    .intro-panel {
        grid-template-columns: 1fr;
    }

    .offer-grid,
    .compare-grid,
    .signal-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-media img {
        min-height: 420px;
    }
}

@media (max-width: 760px) {
    .shell {
        width: min(100% - 28px, 1180px);
    }

    .topbar-inner,
    .header-inner,
    .cookie-banner,
    .main-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-inner {
        padding: 14px 0;
    }

    .hero-copy,
    .article-card,
    .safer-panel,
    .intro-panel {
        padding: 24px;
    }

    .section {
        padding-top: 64px;
    }

    .offer-grid,
    .compare-grid,
    .signal-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .offer-logo {
        min-width: 112px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 2.6rem;
    }

    .section-heading h2,
    .intro-panel h2,
    .safer-copy h2 {
        font-size: 2.2rem;
    }

    .faq-list summary {
        font-size: 20px;
    }

    .safer-box strong {
        font-size: 34px;
    }

    .offer-card {
        padding: 22px;
    }

    .offer-card h3,
    .review-card h3,
    .style-copy h3,
    .style-card-note h3,
    .article-card h2 {
        font-size: 26px;
    }

    .offer-meta strong {
        font-size: 20px;
    }

    .cookie-banner {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 14px;
    }

    .faq-list details {
        padding: 20px;
    }

    .table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}
