/* ---------- tokens ---------- */
:root {
    --accent: #2f9ee9;
    --accent-ink: #1781c8;
    --accent-deep: #0f5f99;
    --ink: #111418;
    --ink-2: #2a2f36;
    --ink-3: #000000;
    --line: #e6e8ec;
    --bg: #ffffff;
    --bg-soft: #f6f7f9;
    --bg-dark: #0e1620;
    --bg-dark-2: #18222e;
    --serif: "Inria Serif", "Times New Roman", Georgia, serif;
    --sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --max: 1240px;
    --pad: clamp(20px, 4vw, 56px);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.08;
    margin: 0;
    color: var(--ink);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
}

/* ---------- announcement bar ---------- */
.annc {
    background: var(--bg-dark);
    color: #cfd6df;
    font-size: 12.5px;
    letter-spacing: 0.04em;
    font-weight: 400;
}

.annc .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 16px;
}

.annc .left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.annc .dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #4ade80;
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18);
}

.annc .right {
    color: #8d97a3;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ---------- top nav ---------- */
.nav {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    display: block !important;
    z-index: 30;
}

.nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand .logo {
    height: 52px;
    width: auto;
    display: block;
}

.brand .divider {
    width: 1px;
    height: 22px;
    background: var(--line);
}

.brand .sub {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-2);
}

.nav .links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
}

.nav .links a {
    transition: color .15s ease;
}

.nav .links a:hover {
    color: var(--accent-ink);
}

.nav .phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
}

.nav .phone:hover {
    text-decoration: none !important;
}

.nav .phone .label {
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-3);
    font-weight: 500;
    display: block;
    line-height: 1;
    margin-bottom: 3px;
}

.nav .phone .num {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.01em;
}

.nav .phone .icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(47, 158, 233, 0.10);
    color: var(--accent-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ---------- hero ---------- */
.hero {
    padding: clamp(40px, 6vw, 40px) 0 clamp(40px, 5vw, 72px);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -200px 60% auto auto;
    width: 720px;
    height: 720px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(47, 158, 233, 0.08), rgba(47, 158, 233, 0) 65%);
    pointer-events: none;
}

.hero .grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-ink);
    background: rgba(47, 158, 233, 0.10);
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 24px;
}

h1.hero-title {
    font-size: clamp(40px, 5.4vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}

h1.hero-title .accent {
    color: var(--accent-ink);
    font-style: italic;
    font-weight: 400;
}

.lede {
    font-size: clamp(15px, 1.15vw, 17px);
    color: var(--ink-3);
    max-width: 520px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* quote form */
.quote-form-wrap {
    position: relative;
    max-width: 580px;
}

.quote-form {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 2px solid var(--accent);
    border-radius: 16px;
    padding: 10px;
    transition: border-color .2s ease;
}

.quote-form:focus-within {
    border-color: var(--accent-ink);
}

.quote-form .zip {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 18px;
}

.quote-form .zip svg {
    color: var(--accent-ink);
    flex-shrink: 0;
}

.quote-form input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    padding: 18px 0;
    min-width: 0;
    letter-spacing: 0.02em;
}

.quote-form input::placeholder {
    color: #97a0ac;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border: 0;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.02em;
    padding: 18px 32px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background .15s ease, transform .15s ease;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--accent-ink);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary svg {
    transition: transform .15s ease;
}

.btn-primary:hover svg {
    transform: translateX(3px);
}


.micro {
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--ink-3);
    letter-spacing: 0.01em;
}

.micro .lock {
    display: inline-block;
    vertical-align: -2px;
    margin-right: 6px;
    color: #6f7a86;
}

.checks {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 36px;
}

.check {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
}

.check .tick {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* hero right */
.hero-art {
    position: relative;
}

.hero-art .frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(15, 30, 55, 0.35), 0 12px 24px -16px rgba(15, 30, 55, 0.18);
    aspect-ratio: 734 / 476;
    background: var(--bg-soft);
}

.hero-art .frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* floating stat cards */
.stat-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--line);
    box-shadow: 0 20px 40px -22px rgba(15, 30, 55, 0.22);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.stat-card .num {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.stat-card .num .pct {
    color: var(--accent-ink);
}

.stat-card .lbl {
    font-size: 11.5px;
    line-height: 1.3;
    color: var(--ink-3);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-card.a {
    left: -28px;
    top: 28px;
}

.stat-card.b {
    right: -16px;
    bottom: 28px;
    padding: 16px 20px;
}

.stat-card.b .avatars {
    display: flex;
    align-items: center;
}

.stat-card.b .av {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 2px solid #fff;
    background: var(--bg-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    margin-left: -8px;
}

.stat-card.b .av:first-child {
    margin-left: 0;
}

.stat-card.b .av:nth-child(1) {
    background: #4f6b8b;
}

.stat-card.b .av:nth-child(2) {
    background: #b07d4f;
}

.stat-card.b .av:nth-child(3) {
    background: #5c8d6e;
}

.stat-card.b .av:nth-child(4) {
    background: var(--accent-ink);
}

.stat-card.b .copy {
    line-height: 1.2;
}

.stat-card.b .copy .strong {
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
}

.stat-card.b .copy .sub {
    font-size: 11.5px;
    color: var(--ink-3);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ---------- carriers ---------- */
.carriers {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fcfcfd;
    padding: 38px 0;
}

.carriers .head {
    text-align: center;
    margin-bottom: 26px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-3);
    font-weight: 600;
}

.carriers .head .line {
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--line);
    vertical-align: middle;
    margin: 0 14px;
}

.logos {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: center;
    gap: 18px;
}

.logos .cell {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.logos .cell img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform .2s ease;
}

.logos .cell:hover img {
    transform: scale(1.04);
}

/* ---------- section headers ---------- */
.section {
    padding: clamp(64px, 8vw, 110px) 0;
}

.section .head {
    max-width: 720px;
    margin: 0 auto clamp(40px, 5vw, 64px);
    text-align: center;
}

.section .head .kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-ink);
    font-weight: 600;
    margin-bottom: 14px;
}

.section .head h2 {
    font-size: clamp(32px, 3.6vw, 48px);
    margin-bottom: 16px;
}

.section .head p {
    color: var(--ink-3);
    font-size: 17px;
    line-height: 1.6;
}

/* ---------- how it works ---------- */
.how {
    background: var(--bg-soft);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 36px 32px 32px;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -28px rgba(15, 30, 55, 0.25);
    border-color: #d5d9e0;
}

.step .n {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    letter-spacing: 0.04em;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.step p {
    color: var(--ink-3);
    font-size: 15px;
    line-height: 1.6;
}

.step .ico {
    position: absolute;
    top: 28px;
    right: 28px;
    color: #cdd3da;
}

/* ---------- benefits split ---------- */
.benefits .inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 6vw, 88px);
    align-items: center;
}

.benefits .head {
    text-align: left;
    margin: 0 0 0 0;
    max-width: none;
}

.benefits .head .kicker {
    margin-bottom: 16px;
}

.benefits h2 {
    font-size: clamp(34px, 3.8vw, 52px);
    margin-bottom: 18px;
}

.benefits .lede2 {
    color: var(--ink-3);
    font-size: 17px;
    line-height: 1.65;
    max-width: 480px;
    margin-bottom: 32px;
}

.ben-list {
    display: grid;
    gap: 22px;
}

.ben {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    align-items: start;
    padding: 22px 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: border-color .15s ease, transform .15s ease;
}

.ben:hover {
    border-color: var(--accent);
    transform: translateX(2px);
}

.ben .bi {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(47, 158, 233, 0.14), rgba(47, 158, 233, 0.05));
    color: var(--accent-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ben h4 {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 4px;
}

.ben p {
    font-size: 14.5px;
    color: var(--ink-3);
    line-height: 1.55;
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 32px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
}

.stat-strip .s {
    text-align: left;
    padding: 0 24px;
    border-right: 1px solid var(--line);
}

.stat-strip .s:first-child {
    padding-left: 0;
}

.stat-strip .s:last-child {
    border-right: 0;
}

.stat-strip .big {
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(32px, 3.4vw, 44px);
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.stat-strip .big .u {
    color: var(--accent-ink);
}

.stat-strip .lbl {
    font-size: 12.5px;
    color: var(--ink-3);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ---------- cta band ---------- */
.cta {
    background: var(--bg-soft);
    color: var(--ink);
    padding: clamp(56px, 7vw, 88px) 0;
    position: relative;
    overflow: hidden;
}

.cta .inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    position: relative;
}

.cta h2 {
    font-size: clamp(34px, 3.8vw, 50px);
    color: var(--ink);
    margin-bottom: 0;
    max-width: 540px;
}

.cta h2 .accent {
    color: var(--accent-ink);
    font-style: italic;
    font-weight: 400;
}

.cta-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    color: var(--ink);
    box-shadow: 0 24px 50px -28px rgba(15, 30, 55, 0.18);
}

.cta-form .ttl {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 4px;
}

.cta-form .sub {
    font-size: 13.5px;
    color: var(--ink-3);
    margin-bottom: 18px;
}

.cta-form .row {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.cta-form .cta-zip {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.cta-form .cta-zip svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-ink);
    pointer-events: none;
}

.cta-form .row input {
    flex: 1;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 10px;
    padding: 14px 16px 14px 46px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    outline: 0;
    transition: border-color .15s ease, box-shadow .15s ease;
    min-width: 0;
    width: 100%;
}

.cta-form .row input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(47, 158, 233, 0.14);
}

.cta-form .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 15px;
}

.cta-form .foot {
    font-size: 11.5px;
    color: var(--ink-3);
    text-align: center;
    margin-top: 14px;
    line-height: 1.4;
}

.cta-form .foot .lock {
    vertical-align: -2px;
    margin-right: 4px;
}

/* ---------- footer ---------- */
.foot {
    background: #ffffff;
    color: var(--ink-2);
    padding: 56px 0 32px;
    font-size: 13.5px;
    border-top: 1px solid var(--line);
}

.foot .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.foot .top .brand-f {
    display: flex;
    align-items: center;
    gap: 14px;
}

.foot .top .brand-f img {
    height: 38px;
    opacity: 1;
}

.foot .links-f {
    display: flex;
    gap: 28px 32px;
    flex-wrap: wrap;
    font-size: 13.5px;
    color: var(--ink-2);
    font-weight: 500;
}

.foot .links-f a {
    transition: color .15s ease;
}

.foot .links-f a:hover {
    color: var(--accent-ink);
    text-decoration: none !important;
}

.foot .legal {
    font-size: 12.5px;
    color: var(--ink-3);
    line-height: 1.65;
    max-width: 1100px;
}

.foot .legal .addr {
    font-weight: 600;
    color: var(--ink);
    font-size: 13px;
    margin-bottom: 16px;
}

.foot .legal .copyright {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 11.5px;
    color: var(--ink-3);
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
    .hero .grid {
        grid-template-columns: 1fr;
    }

    .hero-art {
        order: -1;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
        min-width: 0;
    }

    .hero .grid .copy,
    .hero .grid .hero-art {
        min-width: 0;
    }

    .quote-form-wrap {
        max-width: 100%;
    }

    .stat-card.a {
        left: 0;
        top: 16px;
    }

    .stat-card.b {
        right: 0;
        bottom: 16px;
    }

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

    .benefits .inner {
        grid-template-columns: 1fr;
    }

    .cta .inner {
        grid-template-columns: 1fr;
    }

    .logos {
        grid-template-columns: repeat(4, 1fr);
    }

    .nav .links {
        display: none;
    }

    .stat-strip {
        grid-template-columns: 1fr 1fr;
    }

    .stat-strip .s:nth-child(2) {
        border-right: 0;
    }

    .stat-strip .s:last-child {
        grid-column: 1 / -1;
        border-top: 1px solid var(--line);
        padding-top: 18px;
        margin-top: 18px;
        padding-left: 0;
    }
}

@media (max-width: 707px) {
    .quote-form .zip {
        width: calc(100% - 200px);
    }
}

@media (max-width: 560px) {
    .quote-form .zip {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .annc .right {
        display: none;
    }

    .quote-form {
        flex-direction: column;
        gap: 8px;
        padding: 10px;
    }

    .quote-form .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }

    .checks {
        gap: 14px 22px;
    }

    .brand .logo {
        height: 38px;
    }

    .nav .wrap {
        padding-top: 14px;
        padding-bottom: 14px;
        gap: 12px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .wrap {
        padding-left: 18px;
        padding-right: 18px;
    }

    .nav .phone .label, .brand .divider, .brand .sub {
        display: none;
    }

    .nav .phone > span:not(.icon) {
        display: none;
    }

    .nav .phone {
        gap: 0;
    }

    h1.hero-title {
        font-size: 32px;
        line-height: 1.05;
        letter-spacing: -0.01em;
    }

    .lede {
        font-size: 15px;
        max-width: 100%;
    }

    .eyebrow {
        font-size: 11px;
        padding: 7px 12px;
    }

    .hero-art .frame {
        aspect-ratio: auto;
        box-shadow: 0 18px 40px -22px rgba(15, 30, 55, 0.25);
    }

    .hero-art .frame img {
        aspect-ratio: 734 / 476;
        object-fit: cover;
        height: auto;
    }

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

    .stat-strip {
        grid-template-columns: 1fr;
        padding: 24px 0 4px;
        gap: 0;
    }

    .stat-strip .s {
        border-right: 0;
        padding: 18px 0;
        border-bottom: 1px solid var(--line);
    }

    .stat-strip .s:first-child {
        padding-top: 6px;
    }

    .stat-strip .s:last-child {
        border-bottom: 0;
        border-top: 0;
        margin-top: 0;
        padding-top: 18px;
        padding-bottom: 6px;
    }

    .stat-strip .big {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .stat-strip .lbl {
        font-size: 13px;
    }

    /* CTA form: place icon next to input on its own row */
    .cta-form .row {
        flex-direction: row;
    }
}

/* nice select on ZIP toast */
.toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%) translateY(20px);
    background: var(--ink);
    color: #fff;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    z-index: 50;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast .ok {
    color: #4ade80;
    margin-right: 8px;
    vertical-align: -2px;
}

.policy-content p,
.tou-content p {
    margin: 15px 0;
}

.landing-footer-content {
    line-height: 30px;
}

.landing-footer-content a {
    color: var(--accent-ink);
}

.paid-content-wrap {
    position: relative;
}

.paid-content-link {
    text-decoration: underline;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-2);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.paid-content-link:hover {
    color: #444444;
}

.paid-content-popup {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 420px;
    max-width: calc(100vw - 40px);
    background: #fff;
    border: 1px solid #d0d0d0;
    border-top: 4px solid #1a3a5c;
    border-radius: 4px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.13);
    padding: 16px;
    z-index: 200;
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink);
}


.paid-content-popup.active {
    display: block;
}

.paid-content-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.paid-content-popup-title {
    font-weight: 700;
    font-size: 15px;
}

.paid-content-popup-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #555;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}
