:root {
    --bg: #f6f4f1;
    --surface: #ffffff;
    --surface-2: #fbfaf8;
    --line: #e7e2db;
    --line-2: #d8d1c7;
    --text: #181715;
    --muted: #666057;
    --soft: #8a8379;
    --accent: #1c1b19;
    --tag: #f0ece6;
    --active: #264a32;
    --active-bg: #eaf2ec;
    --upcoming: #7a5a18;
    --upcoming-bg: #f6eed9;
    --radius: 22px;
    --shadow: 0 10px 30px rgba(24, 23, 21, .06);
    --container: 1240px;
}

html {
    scroll-behavior: smooth;
}

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

.page {
    min-height: 100vh;
}

.hero {
    padding: 20px 0;
}

.hero-card {
    display: block;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 32px;
    padding: 42px;
    box-shadow: var(--shadow);
}

.eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--soft);
    margin-bottom: 16px;
}

h1 {
    margin: 0 0 18px;
    font-size: 48px;
    line-height: 1.02;
    letter-spacing: -.04em;
    max-width: 28ch;
}

.lead p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 16px;
}

.hero-actions {
    margin-top: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 22px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    /* width: max-content; */
}

.cta:active,
.cta:focus-visible,
.cta:hover {
    color: #fff !important;
    border: none !important;
}

.note {
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 20px;
}

.note-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--soft);
    margin-bottom: 12px;
}

.note p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

section {
    padding: 18px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 18px;
}

h2 {
    margin: 0;
    font-size: 28px;
    letter-spacing: -.03em;
}

.section-sub {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    max-width: 60ch;
}

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

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.mechanic-kicker {
    font-size: 34px;
    line-height: 1;
    letter-spacing: -.05em;
    margin-bottom: 14px;
}

.card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    letter-spacing: -.02em;
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

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

.list {
    display: grid;
    gap: 12px;
}

.list-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.list-item:first-child {
    border-top: none;
    padding-top: 0;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 8px;
    flex: 0 0 auto;
}

.accordion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px 24px;
    box-shadow: var(--shadow);
}

.accordion small {
    display: block;
    color: var(--soft);
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 6px;
}

.accordion p {
    margin: 0;
    color: var(--muted);
}

.accordion .plus {
    font-size: 24px;
    color: var(--muted);
}

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

.promo-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 22px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.promo-top,
.promo-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.brand-name {
    font-size: 22px;
    letter-spacing: -.03em;
    margin: 0;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.tag.active {
    background: var(--active-bg);
    color: var(--active);
}

.tag.upcoming {
    background: var(--upcoming-bg);
    color: var(--upcoming);
}

.meta-col small,
.field small {
    display: block;
    color: var(--soft);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 6px;
}

.meta-col div,
.field div {
    font-size: 14px;
    color: var(--text);
}

.promo-fields {
    display: grid;
    gap: 14px;
}

.field {
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.mobile-preview {
    margin-top: 24px;
    display: none;
}

.mobile-shell {
    width: 390px;
    max-width: 100%;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 34px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.m-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.m-logo {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .18em;
}

.m-burger {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--muted);
}

.m-hero h1 {
    font-size: 34px;
    max-width: none;
}

.m-hero p {
    font-size: 15px;
    color: var(--muted);
}

.m-stack {
    display: grid;
    gap: 12px;
}

.m-card,
.m-promo {
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
}

.m-promo {
    background: #fff;
}

.m-footer {
    padding-top: 18px;
    border-top: 1px solid var(--line);
    margin-top: 16px;
}

.section-bottom {
    margin-bottom: 60px;
}

.hero-side {
    margin-top: 18px;
}

.mb18 {
    margin-bottom: 18px;
}

.mb36 {
    margin-bottom: 36px;
}

@media (max-width: 1024px) {

    .hero-card,
    .conditions,
    .promo-grid,
    .mechanics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .hero-card {
        padding: 22px;
        border-radius: 24px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 24px;
    }

    .mobile-preview {
        display: block;
    }
}

@media (max-width: 767px) {
    h1.header {
        margin-bottom: 20px !important;
    }
}