@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("/assets/fonts/manrope-latin-ext.woff2") format("woff2");
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
    color-scheme: light;

    --paper: #f7f7f3;
    --surface: #ffffff;
    --ink: #14171a;
    --ink-soft: #3d4348;
    --muted: #6a7075;
    --line: #e2e3dd;
    --line-strong: #cfd1c9;
    --red: #cc0f18;
    --red-dark: #a30b12;
    --green: #21684b;

    --gutter: 40px;
    --max-width: 1140px;
    --section-gap: clamp(64px, 6vw, 104px);
    --radius: 10px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
    font-size: 16px;
    font-synthesis-weight: none;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ============================================================
   Layout container
   ============================================================ */

.site-header,
.breadcrumbs,
main,
.site-footer {
    width: min(100% - (var(--gutter) * 2), var(--max-width));
    margin-inline: auto;
}

/* ============================================================
   Typography
   ============================================================ */

h1,
h2,
h3 {
    margin-top: 0;
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -0.022em;
    text-wrap: balance;
}

h1 {
    margin-bottom: 20px;
    font-size: clamp(2.25rem, 1.62rem + 2.1vw, 3.375rem);
    line-height: 1.06;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(1.5rem, 1.24rem + 0.9vw, 2rem);
    line-height: 1.14;
}

h3 {
    margin-bottom: 6px;
    font-size: 1.0625rem;
    letter-spacing: -0.012em;
    line-height: 1.35;
}

p {
    overflow-wrap: break-word;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 50;
    padding: 10px 16px;
    border-radius: 6px;
    background: var(--ink);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-200%);
}

.skip-link:focus {
    transform: translateY(0);
}

/* ============================================================
   Header
   ============================================================ */

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1;
    text-decoration: none;
}

.brand-mark {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: var(--red);
    color: #ffffff;
    font-size: 14px;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: color 150ms ease, background-color 150ms ease;
}

.site-nav a:hover {
    background: rgba(20, 23, 26, 0.05);
    color: var(--ink);
}

.site-nav a[aria-current="page"] {
    background: rgba(20, 23, 26, 0.07);
    color: var(--ink);
}

/* ============================================================
   Breadcrumbs
   ============================================================ */

.breadcrumbs {
    padding-top: 22px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin: 0;
    padding: 0;
    color: var(--muted);
    font-size: 12.5px;
    font-weight: 600;
    list-style: none;
}

.breadcrumbs li + li::before {
    content: "/";
    margin-right: 7px;
    color: var(--line-strong);
}

.breadcrumbs a {
    color: var(--muted);
    text-decoration: none;
    transition: color 150ms ease;
}

.breadcrumbs a:hover {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.breadcrumbs [aria-current="page"] {
    color: var(--ink-soft);
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 430px);
    gap: clamp(40px, 5vw, 76px);
    align-items: center;
    padding: clamp(44px, 5vw, 76px) 0 var(--section-gap);
}

.hero-copy {
    min-width: 0;
}

/* Pages without an offer card (e.g. About) get a single, wider column */
.hero:not(:has(.offer-selector)) {
    grid-template-columns: minmax(0, 1fr);
}

.hero:not(:has(.offer-selector)) .hero-copy {
    max-width: 760px;
}

.hero:not(:has(.offer-selector)) .hero-intro {
    max-width: 60ch;
}

.verified-stamp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 20px;
    padding: 6px 13px 6px 11px;
    border: 1px solid rgba(33, 104, 75, 0.24);
    border-radius: 999px;
    background: rgba(33, 104, 75, 0.06);
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.verified-stamp::before {
    content: "";
    flex: none;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(33, 104, 75, 0.15);
}

.hero-intro {
    max-width: 46ch;
    margin: 0;
    color: var(--ink-soft);
    font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
    line-height: 1.62;
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin: 26px 0 0;
    padding: 0;
    color: var(--green);
    font-size: 12.5px;
    font-weight: 700;
    list-style: none;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.trust-list li::before {
    content: "\2713";
    font-size: 11px;
}

/* ============================================================
   Offer card
   ============================================================ */

.offer-selector {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow:
        0 1px 2px rgba(20, 23, 26, 0.04),
        0 18px 44px -20px rgba(20, 23, 26, 0.22);
}

.selector-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    border-bottom: 1px solid var(--line);
}

.selector-heading h2 {
    margin: 0;
    font-size: 1.0625rem;
    letter-spacing: -0.015em;
}

.live-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.live-label::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(33, 104, 75, 0.16);
}

.offer-row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 16px;
    gap: 14px;
    align-items: center;
    padding: 15px 22px;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    transition: background-color 150ms ease;
}

.offer-row:hover {
    background: #f4f5f1;
}

.offer-selector > .offer-row:last-child {
    border-bottom: 0;
}

.offer-row img {
    width: 34px;
    height: 21px;
    border-radius: 2px;
    box-shadow: inset 0 0 0 1px rgba(20, 23, 26, 0.12);
    object-fit: cover;
}

.offer-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.offer-copy strong {
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.offer-copy > span {
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.45;
}

.offer-arrow {
    color: var(--muted);
    font-size: 16px;
    line-height: 1;
    transition: transform 150ms ease, color 150ms ease;
}

.offer-row:hover .offer-arrow {
    color: var(--red);
    transform: translateX(3px);
}

.offer-note {
    margin: 0;
    padding: 14px 22px 16px;
    background: #fafaf7;
    color: var(--muted);
    font-size: 11.5px;
    line-height: 1.55;
}

/* ============================================================
   Section shell - sticky heading rail + content
   ============================================================ */

.content-section,
.steps-section,
.faq-section {
    display: grid;
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
    gap: clamp(32px, 4vw, 72px);
    padding: var(--section-gap) 0;
    border-top: 1px solid var(--line);
}

.section-heading {
    position: sticky;
    top: 36px;
    align-self: start;
}

.section-heading h2 {
    margin: 0;
    text-wrap: pretty;
}

/* ============================================================
   Prose
   ============================================================ */

.prose {
    max-width: 68ch;
    color: var(--ink-soft);
}

.prose > :first-child {
    margin-top: 0;
}

.prose > :last-child {
    margin-bottom: 0;
}

.prose p {
    margin: 0 0 16px;
    font-size: 15.5px;
    line-height: 1.7;
}

.prose h3 {
    margin: 32px 0 8px;
}

.prose ul {
    margin: 0 0 16px;
    padding-left: 0;
    list-style: none;
}

.prose li {
    position: relative;
    margin-bottom: 9px;
    padding-left: 20px;
    font-size: 15.5px;
    line-height: 1.65;
}

.prose li::before {
    content: "";
    position: absolute;
    top: 0.66em;
    left: 3px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--line-strong);
}

.prose strong {
    color: var(--ink);
    font-weight: 700;
}

.prose code {
    padding: 2px 6px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--surface);
    color: var(--ink);
    font-family: ui-monospace, "Cascadia Mono", "SFMono-Regular", Menlo, monospace;
    font-size: 0.88em;
}

.prose a:not([class]) {
    color: var(--ink);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--line-strong);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: text-decoration-color 150ms ease, color 150ms ease;
}

.prose a:not([class]):hover {
    color: var(--red-dark);
    text-decoration-color: currentColor;
}

/* ============================================================
   Table
   ============================================================ */

.benefit-table {
    width: 100%;
    margin: 0 0 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    border-collapse: separate;
    border-spacing: 0;
    background: var(--surface);
    font-size: 14px;
}

.benefit-table thead tr:first-child th:first-child {
    border-top-left-radius: calc(var(--radius) - 1px);
}

.benefit-table thead tr:first-child th:last-child {
    border-top-right-radius: calc(var(--radius) - 1px);
}

.benefit-table caption {
    padding-bottom: 10px;
    color: var(--muted);
    font-size: 12.5px;
    text-align: left;
}

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

.benefit-table thead th {
    background: #fafaf7;
    color: var(--muted);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    white-space: nowrap;
}

.benefit-table tbody th {
    width: 26%;
    color: var(--ink);
    font-weight: 700;
}

.benefit-table td {
    color: var(--ink-soft);
}

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

.benefit-table a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: var(--line-strong);
    text-underline-offset: 3px;
    transition: text-decoration-color 150ms ease;
}

.benefit-table a:hover {
    text-decoration-color: var(--red);
}

/* ============================================================
   Proof figure
   ============================================================ */

.proof-figure {
    max-width: 560px;
    margin: 0 0 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    overflow: hidden;
}

.proof-figure img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--line);
}

.proof-figure figcaption {
    padding: 12px 18px 14px;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.55;
}

/* ============================================================
   Steps
   ============================================================ */

.steps-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps-list li {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.steps-list li:first-child {
    padding-top: 0;
}

.steps-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.step-number {
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
    line-height: 1.8;
}

.steps-list p {
    max-width: 62ch;
    margin: 0;
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.62;
}

/* ============================================================
   Buttons
   ============================================================ */

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0 0;
}

.button-primary,
.button-secondary {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.005em;
    text-decoration: none;
    transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}

.button-primary {
    border: 1px solid var(--red);
    background: var(--red);
    color: #ffffff;
}

.button-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: #ffffff;
}

.button-secondary {
    border: 1px solid var(--line-strong);
    background: var(--surface);
    color: var(--ink);
}

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

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    padding: 19px 40px 19px 0;
    cursor: pointer;
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: -0.012em;
    line-height: 1.45;
    list-style: none;
    transition: color 150ms ease;
}

.faq-list summary:hover {
    color: var(--red-dark);
}

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

.faq-list summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4px;
    width: 11px;
    height: 11px;
    color: var(--red);
    background:
        linear-gradient(currentColor, currentColor) center / 11px 1.5px no-repeat,
        linear-gradient(currentColor, currentColor) center / 1.5px 11px no-repeat;
    transform: translateY(-50%);
    transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
    background: linear-gradient(currentColor, currentColor) center / 11px 1.5px no-repeat;
    transform: translateY(-50%) rotate(180deg);
}

.faq-list details p {
    max-width: 68ch;
    margin: 0;
    padding: 0 40px 22px 0;
    color: var(--ink-soft);
    font-size: 14.5px;
    line-height: 1.7;
}

/* ============================================================
   Related regions
   ============================================================ */

.related-regions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.related-regions a {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    text-decoration: none;
    transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.related-regions a:hover {
    border-color: var(--line-strong);
    box-shadow: 0 12px 26px -18px rgba(20, 23, 26, 0.35);
    transform: translateY(-2px);
}

.related-regions strong {
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: -0.012em;
    line-height: 1.35;
}

.related-regions span {
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.5;
}

/* ============================================================
   Disclosure
   ============================================================ */

.disclosure {
    margin: 0;
    padding: clamp(28px, 3.4vw, 44px);
    border-radius: var(--radius);
    background: var(--ink);
    color: #ffffff;
}

.disclosure h2 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 1.25rem;
}

.disclosure > p {
    max-width: 78ch;
    margin: 0;
    color: #b9bfc3;
    font-size: 14px;
    line-height: 1.7;
}

.disclosure > p a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.terms-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.terms-links a {
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    transition: color 150ms ease;
}

.terms-links a:hover {
    color: #b9bfc3;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-top: clamp(48px, 4vw, 68px);
    padding: 34px 0 52px;
    border-top: 1px solid var(--line);
}

.footer-brand {
    margin-bottom: 12px;
}

.site-footer p {
    max-width: 54ch;
    margin: 0;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    color: var(--muted);
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    transition: color 150ms ease;
}

.footer-links a:hover {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.share-button {
    flex: none;
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    background: var(--surface);
    color: var(--ink);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}

.share-button:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: #ffffff;
}

/* ============================================================
   Motion
   ============================================================ */

@media (prefers-reduced-motion: no-preference) {
    .hero-copy,
    .offer-selector {
        animation: reveal 480ms cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .offer-selector {
        animation-delay: 90ms;
    }

    @keyframes reveal {
        from {
            opacity: 0;
            transform: translateY(12px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1080px) {
    .content-section,
    .steps-section,
    .faq-section {
        grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
    }
}

@media (max-width: 900px) {
    :root {
        --gutter: 28px;
    }

    .hero {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
    }

    .hero-intro,
    .prose {
        max-width: none;
    }

    .content-section,
    .steps-section,
    .faq-section {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .section-heading {
        position: static;
    }

    .offer-selector {
        max-width: 480px;
    }
}

@media (max-width: 620px) {
    :root {
        --gutter: 20px;
    }

    .site-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        min-height: 0;
        padding: 20px 0 18px;
    }

    .site-nav {
        margin-left: -12px;
    }

    .offer-selector {
        max-width: none;
    }

    .selector-heading,
    .offer-row,
    .offer-note {
        padding-inline: 18px;
    }

    .benefit-table {
        display: block;
        border: 0;
        border-radius: 0;
        background: none;
        font-size: 14px;
    }

    .benefit-table caption {
        display: block;
        width: 100%;
        padding-bottom: 12px;
    }

    .benefit-table thead {
        display: none;
    }

    .benefit-table tbody {
        display: grid;
        gap: 10px;
    }

    .benefit-table tr {
        display: block;
        padding: 15px 17px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--surface);
    }

    .benefit-table th,
    .benefit-table td {
        display: block;
        width: auto;
        padding: 0;
        border: 0;
    }

    .benefit-table tbody th {
        margin-bottom: 10px;
        font-size: 15px;
    }

    .benefit-table td + td {
        margin-top: 10px;
    }

    .benefit-table td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 1px;
        color: var(--muted);
        font-size: 10.5px;
        font-weight: 800;
        letter-spacing: 0.07em;
        text-transform: uppercase;
    }

    .steps-list li {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 14px;
    }

    .cta-row .button-primary,
    .cta-row .button-secondary {
        width: 100%;
    }

    .site-footer {
        align-items: stretch;
        flex-direction: column;
        gap: 26px;
    }

    .share-button {
        width: 100%;
    }
}
