@font-face {
    font-family: Manrope;
    src: url('../fonts/Manrope-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: Manrope;
    src: url('../fonts/Manrope-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: Manrope;
    src: url('../fonts/Manrope-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: Manrope;
    src: url('../fonts/Manrope-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: Manrope;
    src: url('../fonts/Manrope-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-display: swap;
}

@property --btn-conic {
    syntax: "<angle>";
    inherits: false;
    initial-value: 200deg;
}

@property --btn-conic-alpha {
    syntax: "<number>";
    inherits: false;
    initial-value: 1;
}

@layer reset, tokens, base, layout, components;

@layer reset {

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

    * {
        margin: 0;
    }

    [hidden] {
        display: none !important;
    }

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

    html.is-franchise-jump {
        scroll-behavior: auto;
    }

    img,
    svg {
        display: block;
        max-width: 100%;
        height: auto;
    }

    button,
    input,
    textarea {
        font: inherit;
        color: inherit;
    }

    button {
        cursor: pointer;
        border: 0;
        background: none;
    }

    a {
        color: inherit;
    }

    ul,
    ol {
        padding: 0;
        list-style: none;
    }

    dialog {
        border: 0;
        padding: 0;
        color: inherit;
        max-width: none;
        max-height: none;
    }
}

@layer tokens {
    :root {
        --ink: #222a32;
        --muted: #5e6a66;
        --green: #18b653;
        --green-dark: #129246;
        --blue: #1973bf;
        --blue-dark: #145a96;
        --surface: #ffffff;
        --line: #e4ebe8;
        --well: #f4f6f5;
        --chip: #eef2f0;
        --story: #2f6a48;
        --story-bg: #d8eee1;
        --radius: 1.25rem;
        --radius-sm: 0.75rem;
        --shadow: 0 1px 2px rgb(34 42 50 / 4%), 0 18px 40px -28px rgb(34 42 50 / 16%);
        --ring: inset 0 0 0 1px rgb(34 42 50 / 8%);
        --shell: 74rem;
        --gutter: clamp(1rem, 2.4vw, 1.5rem);
        --font: Manrope, system-ui, sans-serif;
        --focus: 0 0 0 3px rgb(25 115 191 / 28%);
    }
}

@layer base {
    body {
        min-height: 100dvh;
        font-family: var(--font);
        font-size: 1rem;
        line-height: 1.55;
        color: var(--ink);
        background: #f3f5f4;
    }

    :focus-visible {
        outline: none;
        box-shadow: var(--focus);
    }

    h1,
    h2,
    h3 {
        line-height: 1.2;
        letter-spacing: -0.02em;
        font-weight: 700;
        text-wrap: balance;
    }

    p {
        text-wrap: pretty;
    }

    .skip-link {
        position: absolute;
        left: 1rem;
        top: -4rem;
        z-index: 40;
        padding: 0.6rem 0.9rem;
        border-radius: 0.6rem;
        background: var(--ink);
        color: #fff;
        text-decoration: none;
    }

    .skip-link:focus {
        top: 1rem;
    }

    .visually-hidden,
    .honeypot {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

}

@layer layout {
    .shell {
        width: min(100% - var(--gutter) * 2, var(--shell));
        margin-inline: auto;
        min-width: 0;
    }

    main {
        padding-bottom: 3rem;
    }
}

@layer components {
    .site-header {
        padding-top: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .site-header__bar,
    .site-footer__inner {
        background: rgb(255 255 255 / 94%);
        backdrop-filter: blur(16px);
        border: 1px solid rgb(34 42 50 / 6%);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .site-header__bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.85rem 1.1rem;
        flex-wrap: wrap;
        min-width: 0;
    }

    .logo {
        min-width: 0;
        flex: 0 1 auto;
    }

    .logo img {
        width: min(100%, clamp(7.25rem, 22vw, 14.5rem));
    }

    .btn {
        position: relative;
        isolation: isolate;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        min-height: 3rem;
        padding: 0.7rem 1.15rem;
        border: 2px solid transparent;
        border-radius: 0.8rem;
        font-weight: 600;
        font-size: 0.98rem;
        line-height: 1;
        text-decoration: none;
        transition: background 0.2s, transform 0.2s, box-shadow 0.2s, color 0.2s;
        white-space: nowrap;
        max-width: 100%;
    }

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

    .btn:disabled {
        opacity: 0.65;
        pointer-events: none;
    }

    .btn.is-busy:disabled {
        opacity: 1;
    }

    .btn__plus {
        width: 0.7rem;
        height: 0.7rem;
        flex: none;
    }

    .btn__arrow {
        width: 1.45rem;
        height: 0.5rem;
        flex: none;
        transition: transform 0.22s ease;
    }

    .btn__icon {
        display: grid;
        place-items: center;
        width: 1.5rem;
        height: 1.2rem;
        flex: none;
        transition: transform 0.22s ease;
    }

    .btn__icon .btn__arrow,
    .btn__icon .btn__spinner {
        grid-area: 1 / 1;
    }

    .btn__spinner {
        width: 1.2rem;
        height: 1.2rem;
        opacity: 0;
        visibility: hidden;
    }

    .btn.is-busy .btn__arrow {
        opacity: 0;
        visibility: hidden;
    }

    .btn.is-busy .btn__spinner {
        opacity: 1;
        visibility: visible;
        animation: btn-spin 0.65s linear infinite;
    }

    @keyframes btn-spin {
        to {
            transform: rotate(360deg);
        }
    }

    .btn--primary {
        color: #fff;
        background-color: var(--green);
        background-image:
            linear-gradient(180deg, rgb(255 255 255 / 22%) 0%, rgb(255 255 255 / 0%) 42%),
            linear-gradient(180deg, #2dce68 0%, var(--green) 100%);
        background-repeat: no-repeat;
        background-origin: border-box;
        background-clip: border-box;
        box-shadow:
            0 10px 22px -14px rgb(24 182 83 / 80%),
            inset 0 1px 0 rgb(255 255 255 / 30%);
    }

    .btn--primary:hover {
        transform: translateY(-2px);
        background-image:
            linear-gradient(180deg, rgb(255 255 255 / 28%) 0%, rgb(255 255 255 / 0%) 42%),
            linear-gradient(180deg, #36d56f 0%, var(--green) 100%);
        box-shadow:
            0 14px 26px -14px rgb(24 182 83 / 90%),
            inset 0 1px 0 rgb(255 255 255 / 38%);
    }

    .btn--primary:hover .btn__arrow {
        transform: translateX(0.22rem);
    }

    .btn--outline {
        color: var(--ink);
        background: var(--surface);
        border-color: rgb(34 42 50 / 16%);
    }

    .btn--outline:hover {
        transform: none;
        border-color: transparent;
        background-color: var(--surface);
        background-image:
            linear-gradient(var(--surface), var(--surface)),
            conic-gradient(
                from var(--btn-conic) at 30% 18%,
                #18b653 0%,
                #12d3ea 22%,
                #1973bf 46%,
                #f3c23a 72%,
                #18b653 100%
            );
        background-origin: padding-box, border-box;
        background-clip: padding-box, border-box;
        animation: btn-conic-spin 2.4s linear infinite;
    }

    .btn.is-cue {
        z-index: 1;
        background-image:
            linear-gradient(180deg, rgb(255 255 255 / 22%) 0%, rgb(255 255 255 / 0%) 42%),
            linear-gradient(180deg, #2dce68 0%, var(--green) 100%),
            conic-gradient(
                from var(--btn-conic) at 30% 18%,
                rgb(24 182 83 / var(--btn-conic-alpha)) 0%,
                rgb(18 211 234 / var(--btn-conic-alpha)) 22%,
                rgb(25 115 191 / var(--btn-conic-alpha)) 46%,
                rgb(243 194 58 / var(--btn-conic-alpha)) 72%,
                rgb(24 182 83 / var(--btn-conic-alpha)) 100%
            ),
            linear-gradient(180deg, #2dce68 0%, var(--green) 100%);
        background-origin: padding-box, padding-box, border-box, border-box;
        background-clip: padding-box, padding-box, border-box, border-box;
        background-repeat: no-repeat;
        animation:
            btn-conic-spin 1.7s linear 2,
            btn-conic-fade 3.4s ease forwards,
            btn-cue-lift 3.4s ease;
    }

    @keyframes btn-conic-spin {
        to {
            --btn-conic: 560deg;
        }
    }

    @keyframes btn-conic-fade {
        0% {
            --btn-conic-alpha: 0;
        }

        12%,
        58% {
            --btn-conic-alpha: 1;
        }

        100% {
            --btn-conic-alpha: 0;
        }
    }

    @keyframes btn-cue-lift {
        0%,
        100% {
            transform: none;
        }

        12%,
        58% {
            transform: translateY(-2px);
        }
    }

    .btn--accent {
        background: var(--blue);
        color: #fff;
    }

    .btn--accent:hover {
        background: var(--blue-dark);
    }

    .btn--ghost {
        background: transparent;
        color: var(--ink);
        text-decoration: underline;
        text-underline-offset: 0.2em;
    }

    .hero {
        padding-block: 2.25rem 1.5rem;
    }

    .eyebrow {
        display: inline-flex;
        margin-bottom: 0.85rem;
        padding: 0.3rem 0.7rem;
        border-radius: 999px;
        background: rgb(255 255 255 / 80%);
        color: var(--muted);
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        box-shadow: var(--ring);
    }

    .hero h1 {
        max-width: 15em;
        font-size: clamp(1.85rem, 1.15rem + 2.4vw, 3.15rem);
    }

    .hero h1 span {
        color: var(--green);
    }

    .hero__lead {
        max-width: 44.5em;
        margin-top: 1rem;
        color: var(--muted);
        font-size: clamp(1rem, 0.94rem + 0.3vw, 1.2rem);
        text-wrap: wrap;
    }

    .hero__facts {
        display: flex;
        flex-wrap: wrap;
        gap: 0.6rem;
        margin-top: 1.5rem;
    }

    .hero__facts li {
        padding: 0.55rem 0.85rem;
        border-radius: 999px;
        background: rgb(255 255 255 / 80%);
        font-size: 0.92rem;
        color: var(--muted);
        box-shadow: var(--ring);
    }

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

    .catalog__list {
        display: grid;
        gap: 1.25rem;
    }

    .catalog--popular {
        padding-top: 0;
    }

    .catalog--popular .card {
        content-visibility: visible;
    }

    .catalog--popular.is-reveal .catalog__rule,
    .catalog--popular.is-reveal .catalog__title,
    .catalog--popular.is-reveal .card {
        opacity: 0;
    }

    .catalog--popular.is-reveal .catalog__rule {
        transform: scaleX(0.18);
        transform-origin: center;
        transition: opacity 0.55s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .catalog--popular.is-reveal .catalog__title {
        transform: translateY(0.85rem);
        transition: opacity 0.55s ease 0.14s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.14s;
    }

    .catalog--popular.is-reveal .card {
        transform: translateY(1.4rem);
        transition:
            opacity 0.55s ease calc(0.22s + var(--reveal, 0) * 0.09s),
            transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) calc(0.22s + var(--reveal, 0) * 0.09s);
    }

    .catalog--popular.is-reveal .card:nth-child(1) { --reveal: 0; }
    .catalog--popular.is-reveal .card:nth-child(2) { --reveal: 1; }
    .catalog--popular.is-reveal .card:nth-child(3) { --reveal: 2; }
    .catalog--popular.is-reveal .card:nth-child(4) { --reveal: 3; }
    .catalog--popular.is-reveal .card:nth-child(5) { --reveal: 4; }
    .catalog--popular.is-reveal .card:nth-child(6) { --reveal: 5; }

    .catalog--popular.is-inview .catalog__rule,
    .catalog--popular.is-inview .catalog__title,
    .catalog--popular.is-inview .card {
        opacity: 1;
        transform: none;
    }

    [data-reveal-list] .card.is-reveal,
    [data-reveal-list] .story-wrap.is-reveal {
        opacity: 0;
        transform: translateY(1.35rem);
        transition:
            opacity 0.55s ease,
            transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    }

    [data-reveal-list] .card.is-reveal.is-inview,
    [data-reveal-list] .story-wrap.is-reveal.is-inview {
        opacity: 1;
        transform: none;
    }

    .catalog__rule {
        width: min(100%, 22rem);
        height: 1px;
        margin: 2.75rem auto 1.75rem;
        border: 0;
        background: linear-gradient(90deg, transparent, var(--line) 18%, var(--green) 50%, var(--line) 82%, transparent);
    }

    .catalog__title {
        margin: 0 0 1.5rem;
        font-size: clamp(1.4rem, 1.15rem + 0.8vw, 1.85rem);
        text-align: center;
    }

    .card {
        display: grid;
        grid-template-columns: minmax(0, 1fr) min(48%, 34rem);
        grid-template-areas:
            "brand media"
            "tags media"
            "copy media"
            "bar bar";
        gap: 0.9rem 1.4rem;
        padding: 1.25rem;
        border-radius: 1.5rem;
        background: var(--surface);
        box-shadow: var(--shadow);
        content-visibility: auto;
        contain-intrinsic-size: auto 420px;
        position: relative;
        scroll-margin-top: 1.25rem;
        min-width: 0;
    }

    .card.is-anchored,
    .card.is-scroll-sized {
        content-visibility: visible;
    }

    .card.is-anchored {
        box-shadow: 0 0 0 2px var(--green), var(--shadow);
    }

    html.is-franchise-jump {
        scroll-behavior: auto;
    }

    .card--story {
        --card-pad: 1.25rem;
        grid-template-areas:
            "headline headline"
            "brand media"
            "meta media"
            "copy media"
            "bar bar";
        padding: 0;
        overflow: hidden;
    }

    .card__brand {
        grid-area: brand;
        display: flex;
        align-items: center;
        gap: 0.95rem;
        min-width: 0;
    }

    .card__logo {
        width: 4.4rem;
        height: 4.4rem;
        object-fit: cover;
        border-radius: 1.1rem;
        flex: none;
        background: var(--well);
        box-shadow: var(--ring);
    }

    .card__title {
        font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.7rem);
        overflow-wrap: anywhere;
    }

    .card__about {
        margin-top: 0.2rem;
        color: var(--muted);
        font-size: 0.95rem;
    }

    .card__tags,
    .card__meta {
        grid-area: tags;
        display: flex;
        flex-wrap: wrap;
        gap: 0.45rem;
    }

    .card--story .card__meta {
        grid-area: meta;
    }

    .chip,
    .card__meta li {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        min-height: 1.8rem;
        padding: 0.25rem 0.7rem;
        border-radius: 999px;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--ink);
        background: var(--chip);
        box-shadow: var(--ring);
    }

    .card__meta li {
        background: var(--chip);
        color: var(--muted);
    }

    .card__meta li svg {
        flex: none;
        color: var(--muted);
    }

    .card__copy {
        grid-area: copy;
        display: grid;
        gap: 0.55rem;
        color: #4b5551;
        font-size: 0.96rem;
        overflow-wrap: anywhere;
    }

    .card__copy p+p {
        margin-top: 0.45rem;
    }

    .card__copy strong,
    .card__copy b {
        font-weight: 800;
        color: var(--ink);
    }

    .card__media {
        grid-area: media;
        min-width: 0;
    }

    .card__bar {
        grid-area: bar;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding-top: 0.15rem;
    }

    .card__bar .btn {
        flex: none;
        align-self: stretch;
        min-height: 0;
    }

    .card__bar .btn__extra {
        display: none;
    }

    .metrics {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.5rem;
        flex: 1;
        min-width: 0;
    }

    .metrics__item {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        min-width: 0;
        padding: 0.65rem 0.7rem;
        border-radius: 0.95rem;
        background:
            linear-gradient(180deg, #f8fbf9 0%, #eef3f0 100%);
        box-shadow: var(--ring);
    }

    .metrics__item>div {
        min-width: 0;
    }

    .metrics__item img {
        width: 1.85rem;
        height: 1.85rem;
        padding: 0.32rem;
        flex: none;
        box-sizing: content-box;
    }

    .metrics dt {
        color: var(--muted);
        font-size: 0.82rem;
        font-weight: 500;
    }

    .metrics dd {
        color: var(--ink);
        font-size: 1rem;
        font-weight: 800;
        letter-spacing: -0.02em;
        overflow-wrap: anywhere;
    }

    .story-wrap {
        position: relative;
        min-width: 0;
    }

    .story-head {
        grid-area: headline;
        min-width: 0;
        padding: 1.05rem 11rem 1.05rem var(--card-pad);
        background: var(--story-bg);
        box-shadow: inset 0 -1px 0 rgb(47 106 72 / 12%);
    }

    .story-heading {
        min-width: 0;
        font-size: clamp(1.2rem, 1rem + 0.8vw, 1.55rem);
        color: var(--ink);
    }

    .story-badge {
        position: absolute;
        top: 1.15rem;
        right: 1.25rem;
        z-index: 3;
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        width: fit-content;
        min-height: 1.8rem;
        margin: 0;
        padding: 0.2rem 0.7rem 0.2rem 0.55rem;
        border-radius: 999px;
        background: var(--surface);
        color: var(--story);
        font-size: 0.78rem;
        font-weight: 700;
        box-shadow: inset 0 0 0 1px rgb(61 111 84 / 16%);
    }

    .story-badge svg {
        flex: none;
    }

    .card--story .card__brand,
    .card--story .card__meta,
    .card--story .card__copy {
        padding-left: var(--card-pad);
    }

    .card--story .card__bar {
        padding: 0.15rem var(--card-pad) var(--card-pad);
    }

    .card--story .card__media {
        display: flex;
        min-height: 0;
        padding-right: var(--card-pad);
    }

    .card--story .gallery {
        flex: 1;
        display: flex;
        min-height: 0;
    }

    .card--story .gallery__viewport {
        flex: 1;
        aspect-ratio: auto;
        min-height: 12.5rem;
        height: auto;
    }

    .gallery {
        min-width: 0;
        width: 100%;
    }

    .gallery__viewport {
        position: relative;
        overflow: hidden;
        border-radius: 1.15rem;
        background: var(--well);
        aspect-ratio: 16 / 9;
        width: 100%;
    }

    .gallery__viewport::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        border-radius: inherit;
        box-shadow: var(--ring);
    }

    .gallery__track {
        position: absolute;
        inset: 0;
        display: flex;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }

    .gallery__track::-webkit-scrollbar {
        display: none;
    }

    .gallery__slide {
        flex: 0 0 100%;
        width: 100%;
        height: 100%;
        margin: 0;
        scroll-snap-align: start;
    }

    .gallery__slide--empty {
        background: var(--well);
    }

    .gallery__slide img {
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
        object-position: center;
    }

    .gallery__nav {
        position: absolute;
        z-index: 2;
        right: 0.7rem;
        bottom: 0.7rem;
        display: flex;
        gap: 0.4rem;
    }

    .gallery__btn {
        display: grid;
        place-items: center;
        width: 2.1rem;
        height: 2.1rem;
        border-radius: 999px;
        background: rgb(255 255 255 / 92%);
        color: var(--ink);
        box-shadow: 0 1px 4px rgb(34 42 50 / 10%);
    }

    .site-footer {
        padding-bottom: 1.5rem;
    }

    .site-footer__inner {
        padding: 1.25rem 1.35rem 1.1rem;
    }

    .site-footer__top {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 1rem 1.5rem;
        align-items: center;
        padding-bottom: 1.1rem;
        border-bottom: 1px solid var(--line);
    }

    .site-footer__lead {
        color: var(--muted);
        max-width: 28rem;
    }

    .disclaimers {
        display: grid;
        gap: 0.85rem;
        padding-block: 1.25rem;
        border-bottom: 1px solid var(--line);
    }

    .disclaimers__item {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0.85rem;
        align-items: start;
        color: var(--muted);
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .disclaimers__icon {
        display: grid;
        place-items: center;
        width: 2.15rem;
        height: 2.15rem;
        border-radius: 0.7rem;
        flex: none;
        background: var(--well);
        box-shadow: var(--ring);
    }

    .disclaimers__icon img {
        width: 1rem;
    }

    .site-footer__bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0.8rem 1.5rem;
        padding-top: 1rem;
    }

    .site-footer__copy {
        font-weight: 800;
        font-size: 1.05rem;
    }

    .legal-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem 1.1rem;
    }

    .legal-nav a {
        color: var(--muted);
        text-decoration: none;
        font-size: 0.92rem;
    }

    .legal-nav a:hover {
        color: var(--blue);
    }

    .legal-page {
        padding-block: 2rem 1rem;
    }

    .legal-page__card {
        padding: clamp(1.1rem, 2vw, 2rem);
        border-radius: 1.5rem;
        background: var(--surface);
        box-shadow: var(--shadow);
    }

    .legal-page__card h1 {
        font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem);
        margin-bottom: 1rem;
    }

    .legal-page__card h2 {
        margin: 1.4rem 0 0.55rem;
        font-size: 1.15rem;
    }

    .legal-page__card h3 {
        margin: 1.4rem 0 0.55rem;
        font-size: 1.08rem;
    }

    .legal-page__card p,
    .legal-page__card li {
        color: #3b4a44;
        max-width: 68ch;
    }

    .legal-page__card ul {
        display: grid;
        gap: 0.4rem;
        margin: 0.7rem 0 1rem 1.1rem;
        list-style: disc;
    }

    .legal-page__card a {
        color: var(--blue);
    }

    .modal {
        position: fixed;
        inset: 0;
        width: min(calc(100% - 1.5rem), 32rem);
        height: fit-content;
        max-height: calc(100dvh - 2rem);
        margin: auto;
        padding: 1.6rem 1.5rem 1.35rem;
        overflow: auto;
        border-radius: 1.35rem;
        background: var(--surface);
        box-shadow: 0 24px 64px rgb(16 24 20 / 22%);
    }

    .modal::backdrop {
        background: rgb(16 24 20 / 46%);
        backdrop-filter: blur(4px);
    }

    .modal h2 {
        font-size: 1.2rem;
        padding-right: 2.2rem;
        margin-bottom: 0.35rem;
        overflow-wrap: anywhere;
    }

    .modal__subtitle,
    .form-note {
        color: var(--muted);
        font-size: 0.9rem;
        margin: 0;
    }

    .form-note {
        font-size: 0.8rem;
        line-height: 1.45;
        text-align: center;
    }

    .modal__close {
        position: absolute;
        top: 0.85rem;
        right: 0.85rem;
        display: grid;
        place-items: center;
        width: 2.15rem;
        height: 2.15rem;
        border-radius: 999px;
        background: var(--well);
        box-shadow: var(--ring);
        font-size: 1.35rem;
        line-height: 1;
        color: var(--muted);
    }

    .modal__close:hover {
        color: var(--ink);
        background: #e7eeea;
    }

    .lead-form {
        display: grid;
        gap: 0.9rem;
        margin-top: 1.2rem;
    }

    .lead-form>.btn {
        width: 100%;
        margin-top: 0.2rem;
        white-space: normal;
        line-height: 1.2;
        text-wrap: balance;
    }

    .lead-form__error {
        margin: 0;
        color: #b42318;
        font-size: 0.85rem;
        font-weight: 600;
        line-height: 1.35;
    }

    .field.is-invalid input {
        border-color: #c44747;
        background: #fff8f7;
    }

    .field,
    .field-label {
        display: grid;
        gap: 0.35rem;
        margin: 0;
        font-weight: 600;
        font-size: 0.88rem;
    }

    .field input {
        width: 100%;
        min-height: 2.85rem;
        padding: 0.55rem 0.85rem;
        border: 1px solid transparent;
        border-radius: 0.8rem;
        font-weight: 500;
        background: var(--well);
        box-shadow: var(--ring);
    }

    .field input:focus {
        background: #fff;
        border-color: var(--blue);
        box-shadow: var(--focus);
    }

    .channel-picker {
        display: grid;
        gap: 0.5rem;
    }

    .channels {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.55rem;
        border: 0;
        min-width: 0;
        padding: 0;
        margin: 0;
    }

    .channel {
        cursor: pointer;
        position: relative;
        min-width: 0;
    }

    .channel input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .channel__box {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.35rem;
        min-height: 4.35rem;
        min-width: 0;
        padding: 0.7rem 0.4rem 0.6rem;
        border: 1px solid transparent;
        border-radius: 1rem;
        background: var(--well);
        box-shadow: var(--ring);
        font-size: 0.82rem;
        font-weight: 700;
        color: var(--muted);
        transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
    }

    .channel:hover .channel__box {
        background: #ecefee;
        color: var(--ink);
    }

    .channel__icon {
        width: 1.55rem;
        height: 1.55rem;
        flex: none;
    }

    .channel input:focus-visible + .channel__box {
        box-shadow: var(--focus);
    }

    .channel input:checked + .channel__box {
        background: #fff;
        border-color: var(--green);
        box-shadow: inset 0 0 0 1px var(--green);
        color: var(--ink);
    }

    .channel input:checked + .channel__box .channel__icon {
        color: var(--green);
    }

    .perks {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.55rem 1.15rem;
        color: var(--muted);
        font-size: 0.9rem;
        font-weight: 600;
    }

    .perks li {
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    .perks li::before {
        content: "";
        width: 1.15rem;
        height: 1.15rem;
        flex: none;
        border-radius: 999px;
        background: var(--green) url('../images/icons/check.webp') center / 0.42rem no-repeat;
    }

    .modal--success {
        text-align: center;
        padding-block: 1.85rem 1.5rem;
    }

    .modal--success h2,
    .modal--success p {
        text-wrap: pretty;
    }

    .modal--success h2 {
        padding-right: 2.2rem;
    }

    .success-mark {
        display: grid;
        place-items: center;
        width: 4.35rem;
        height: 4.35rem;
        margin: 0 auto 0.85rem;
        border-radius: 999px;
        background: var(--green);
    }

    .success-mark img {
        width: 2rem;
    }

    .modal--success .btn {
        width: 100%;
        margin-top: 0.35rem;
        white-space: normal;
        line-height: 1.2;
        text-wrap: balance;
    }

    .success-progress {
        display: grid;
        gap: 0.5rem;
        margin: 0.15rem 0 0.55rem;
        text-align: left;
    }

    .success-progress[hidden] {
        display: none;
    }

    .success-progress__label {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 0.75rem;
        font-size: 0.82rem;
        font-weight: 700;
    }

    .success-progress__hint {
        color: var(--muted);
        font-weight: 600;
        white-space: nowrap;
    }

    .success-progress__track {
        height: 0.65rem;
        overflow: hidden;
        border-radius: 999px;
        background: var(--well);
        box-shadow: inset 0 0 0 1px var(--line);
    }

    .success-progress__bar {
        width: var(--progress, 0%);
        height: 100%;
        border-radius: inherit;
        background: linear-gradient(90deg, var(--green), #3ecf7a);
        transition: width 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .success-progress__steps {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 0.4rem;
        list-style: none;
        padding: 0;
        color: var(--muted);
        font-size: 0.72rem;
        font-weight: 700;
    }

    .success-progress__steps li {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 1.45rem;
        border-radius: 999px;
        background: var(--well);
    }

    .success-progress__steps li.is-done {
        color: #fff;
        background: var(--green);
    }

    .cookie-bar {
        position: fixed;
        z-index: 30;
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.8rem;
        width: auto;
        max-width: 38rem;
        margin-inline: auto;
        display: grid;
        gap: 0.8rem;
        padding: 0.95rem 1rem;
        border-radius: 1rem 1rem 0.4rem 0.4rem;
        background: var(--surface);
        box-shadow: 0 -8px 32px rgb(0 0 0 / 14%);
        font-size: 0.92rem;
    }

    .cookie-bar a {
        color: var(--blue);
    }

    .cookie-bar__actions {
        display: flex;
        justify-content: space-between;
        gap: 0.7rem;
    }

    .cookie-bar__actions .btn {
        flex: 1;
    }
}

@media (max-width: 900px) {

    .card {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "brand"
            "media"
            "bar"
            "tags"
            "copy";
        contain-intrinsic-size: auto 760px;
    }

    .card--story {
        grid-template-areas:
            "headline"
            "brand"
            "media"
            "bar"
            "meta"
            "copy";
        contain-intrinsic-size: auto 920px;
    }

    .story-wrap {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        align-items: center;
        column-gap: 0.7rem;
        row-gap: 0.75rem;
        scroll-margin-top: 1.25rem;
    }

    .story-wrap::before,
    .story-wrap::after {
        content: "";
        height: 1px;
        background: var(--line);
    }

    .story-wrap::before {
        background: linear-gradient(90deg, transparent, var(--line));
    }

    .story-wrap::after {
        background: linear-gradient(90deg, var(--line), transparent);
    }

    .story-badge {
        position: static;
        grid-column: 2;
        justify-self: center;
    }

    .story-wrap .card {
        grid-column: 1 / -1;
    }

    .story-head {
        padding: 0.85rem var(--card-pad);
    }

    .story-heading {
        font-size: 1.05rem;
    }

    .card--story .card__brand,
    .card--story .card__meta,
    .card--story .card__copy,
    .card--story .card__media {
        padding-inline: var(--card-pad);
    }

    .card--story .card__bar {
        padding-bottom: 0;
    }

    .card--story .card__copy {
        padding-bottom: var(--card-pad);
    }

    .site-header__bar {
        flex-wrap: nowrap;
        gap: 0.7rem;
    }

    .site-header .btn {
        flex: none;
        width: auto;
        min-height: 2.55rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .card--story .gallery__viewport {
        flex: none;
        aspect-ratio: 16 / 9;
        min-height: 0;
        height: auto;
    }

    .card--story .metrics__item:last-child {
        grid-column: span 2;
    }

    .card__bar {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .card__bar .btn {
        max-width: none;
        white-space: normal;
        line-height: 1.2;
        text-wrap: balance;
    }

    .card__bar .btn__extra {
        display: inline;
    }

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

    .metrics__item {
        gap: 0.35rem;
        padding: 0.5rem 0.5rem;
    }

    .metrics__item img {
        width: 1.2rem;
        height: 1.2rem;
        padding: 0.2rem;
        border-radius: 0.45rem;
    }

    .metrics dt {
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .metrics__extra {
        display: none;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .site-footer__top .btn {
        width: 100%;
        justify-self: stretch;
    }

    .site-footer__lead {
        grid-column: auto;
        order: 0;
        max-width: none;
    }
}

@media (max-width: 640px) {

    :root {
        --gutter: 0.85rem;
    }

    .site-header__bar,
    .site-footer__inner {
        padding: 0.7rem;
    }

    .site-header__bar {
        flex-wrap: nowrap;
        gap: 0.55rem;
        padding: 0.6rem 0.7rem;
    }

    .site-header .logo img {
        width: min(100%, 8.25rem);
    }

    .site-header .btn {
        width: auto;
        min-height: 2.4rem;
        padding: 0.4rem 0.55rem;
        font-size: 0.76rem;
        line-height: 1.15;
        white-space: normal;
        max-width: 10.75rem;
        text-align: center;
    }

    .card__bar .btn {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .btn {
        min-height: 2.7rem;
        padding: 0.55rem 0.8rem;
        font-size: 0.88rem;
        gap: 0.45rem;
    }

    .card {
        padding: 0.95rem;
        border-radius: 1.1rem;
    }

    .card--story {
        --card-pad: 0.95rem;
        padding: 0;
    }

    .card__logo {
        width: 3.2rem;
        height: 3.2rem;
        border-radius: 0.8rem;
    }

    .metrics dd {
        font-size: 0.9rem;
    }

    .channel__box {
        min-height: 4.1rem;
        font-size: 0.75rem;
        padding: 0.55rem 0.3rem 0.5rem;
    }

    .channel__icon {
        width: 1.4rem;
        height: 1.4rem;
    }

    .perks {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.35rem 0.4rem;
        font-size: 0.72rem;
        line-height: 1.2;
        text-align: center;
    }

    .perks li {
        flex-direction: column;
        justify-content: flex-start;
        gap: 0.28rem;
    }

    .perks li::before {
        width: 0.95rem;
        height: 0.95rem;
        background-size: 0.34rem;
    }

    .hero h1 {
        max-width: none;
        font-size: clamp(1.45rem, 6.2vw, 1.85rem);
    }

    .hero__lead {
        font-size: 0.95rem;
    }

    .card__title {
        font-size: 1.12rem;
    }

    .card__about {
        font-size: 0.88rem;
    }
}

@media (max-width: 360px) {
    :root {
        --gutter: 0.65rem;
    }

    body {
        font-size: 0.94rem;
    }

    .site-header {
        padding-top: 0.5rem;
    }

    .site-header__bar,
    .site-footer__inner {
        padding: 0.5rem 0.55rem;
        border-radius: 0.9rem;
    }

    .site-header__bar {
        gap: 0.4rem;
    }

    .site-header .logo img {
        width: min(100%, 6.4rem);
    }

    .site-header .btn {
        min-height: 2.15rem;
        padding: 0.28rem 0.42rem;
        font-size: 0.68rem;
        max-width: 9rem;
        gap: 0.28rem;
    }

    .btn__plus {
        width: 0.58rem;
        height: 0.58rem;
    }

    .hero {
        padding-block: 1.35rem 1.1rem;
    }

    .hero h1 {
        font-size: 1.32rem;
    }

    .hero__lead {
        margin-top: 0.7rem;
        font-size: 0.86rem;
    }

    .eyebrow {
        margin-bottom: 0.55rem;
        font-size: 0.72rem;
        padding: 0.22rem 0.55rem;
    }

    .card {
        padding: 0.7rem;
        border-radius: 0.95rem;
        gap: 0.7rem;
    }

    .card--story {
        --card-pad: 0.7rem;
        padding: 0;
    }

    .card__logo {
        width: 2.55rem;
        height: 2.55rem;
        border-radius: 0.65rem;
    }

    .card__brand {
        gap: 0.65rem;
    }

    .card__title {
        font-size: 1rem;
    }

    .card__about {
        font-size: 0.78rem;
    }

    .card__copy {
        font-size: 0.86rem;
    }

    .chip,
    .card__meta li {
        min-height: 1.55rem;
        padding: 0.15rem 0.5rem;
        font-size: 0.72rem;
    }

    .story-wrap {
        column-gap: 0.35rem;
        row-gap: 0.55rem;
    }

    .story-badge {
        font-size: 0.68rem;
        min-height: 1.5rem;
        padding: 0.12rem 0.45rem 0.12rem 0.35rem;
        gap: 0.2rem;
    }

    .story-heading {
        font-size: 0.92rem;
    }

    .metrics {
        gap: 0.32rem;
    }

    .metrics__item {
        gap: 0.25rem;
        padding: 0.38rem 0.38rem;
        border-radius: 0.7rem;
    }

    .metrics__item img {
        width: 0.95rem;
        height: 0.95rem;
        padding: 0.12rem;
        border-radius: 0.35rem;
    }

    .metrics dt {
        font-size: 0.64rem;
    }

    .metrics dd {
        font-size: 0.78rem;
    }

    .btn {
        min-height: 2.45rem;
        padding: 0.45rem 0.65rem;
        font-size: 0.82rem;
        gap: 0.35rem;
    }

    .btn__arrow {
        width: 1.15rem;
        height: 0.4rem;
    }

    .modal {
        width: min(calc(100% - 0.7rem), 32rem);
        padding: 1.15rem 0.8rem 1.05rem;
        border-radius: 1rem;
        max-height: calc(100dvh - 1rem);
    }

    .modal h2 {
        font-size: 1.02rem;
    }

    .modal__subtitle,
    .form-note {
        font-size: 0.78rem;
    }

    .lead-form {
        gap: 0.7rem;
        margin-top: 0.9rem;
    }

    .field input {
        min-height: 2.5rem;
        padding: 0.45rem 0.7rem;
    }

    .channels {
        gap: 0.32rem;
    }

    .channel__box {
        min-height: 3.45rem;
        font-size: 0.68rem;
        padding: 0.4rem 0.15rem 0.35rem;
        border-radius: 0.75rem;
        gap: 0.22rem;
    }

    .channel__icon {
        width: 1.15rem;
        height: 1.15rem;
    }

    .perks {
        font-size: 0.62rem;
        gap: 0.22rem 0.2rem;
    }

    .perks li::before {
        width: 0.8rem;
        height: 0.8rem;
        background-size: 0.28rem;
    }

    .cookie-bar {
        left: 0.45rem;
        right: 0.45rem;
        bottom: 0.45rem;
        padding: 0.75rem 0.75rem;
        font-size: 0.8rem;
        gap: 0.55rem;
    }

    .cookie-bar__actions {
        gap: 0.4rem;
    }

    .cookie-bar__actions .btn {
        min-height: 2.3rem;
        font-size: 0.78rem;
        padding: 0.4rem 0.45rem;
    }

    .disclaimers__item {
        font-size: 0.8rem;
        gap: 0.55rem;
    }

    .legal-nav a {
        font-size: 0.8rem;
    }

    .catalog__title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .catalog--popular.is-reveal .catalog__rule,
    .catalog--popular.is-reveal .catalog__title,
    .catalog--popular.is-reveal .card,
    [data-reveal-list] .card.is-reveal,
    [data-reveal-list] .story-wrap.is-reveal {
        opacity: 1;
        transform: none;
    }

    .btn.is-cue {
        animation: btn-conic-fade 2s ease forwards !important;
    }
}