:root {
    --mr-forest: #022c22;
    --mr-ink: #0b1f1a;
    --mr-emerald: #059669;
    --mr-emerald-dark: #047857;
    --mr-mint: #34d399;
    --mr-teal: #14b8a6;
    --mr-gold: #c9a227;
    --mr-cream: #f3f7f4;
    --mr-paper: #ffffff;
    --mr-muted: #5c6f69;
    --mr-line: rgba(15, 40, 32, 0.1);
    --mr-shadow: 0 18px 50px rgba(2, 44, 34, 0.12);
    --mr-radius: 22px;
    --nav-h: 78px;
    --wrap: 1180px;
}

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

html { scroll-behavior: smooth; }

body.mr-body {
    margin: 0;
    font-family: Outfit, "Segoe UI", system-ui, sans-serif;
    color: var(--mr-ink);
    background: var(--mr-cream);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--mr-emerald-dark); }

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    background: #fff;
    color: var(--mr-ink);
    padding: 0.6rem 1rem;
    border-radius: 10px;
    z-index: 2000;
}
.skip-link:focus { top: 1rem; }

.mr-wrap {
    width: min(var(--wrap), calc(100% - 2.4rem));
    margin-inline: auto;
}

.mr-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}
.mr-body.is-home .mr-nav:not(.is-scrolled) .mr-brand { color: #fff; }
.mr-body.is-home .mr-nav:not(.is-scrolled) .mr-menu-link {
    color: #fff;
    opacity: 0.9;
}
.mr-body.is-home .mr-nav:not(.is-scrolled) .mr-menu-link:hover,
.mr-body.is-home .mr-nav:not(.is-scrolled) .mr-menu-link.is-active {
    color: #6ee7b7;
    opacity: 1;
}
.mr-body.is-home .mr-nav:not(.is-scrolled) .mr-btn-ghost {
    border-color: rgba(255,255,255,0.55);
    color: #fff;
    background: rgba(255,255,255,0.08);
}
.mr-nav.is-scrolled,
.mr-body.is-inner .mr-nav {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 30px rgba(2, 44, 34, 0.08);
}
.mr-nav-inner {
    position: relative;
    width: min(var(--wrap), calc(100% - 2.4rem));
    margin: 0 auto;
    min-height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mr-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--mr-ink);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.03em;
}
.mr-brand img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(2, 44, 34, 0.18);
}
.mr-brand em {
    font-style: normal;
    background: linear-gradient(90deg, var(--mr-emerald), var(--mr-teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.mr-nav-end {
    display: none;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    flex-shrink: 0;
}
.mr-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.16);
}
.burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.burger i {
    display: block;
    width: 18px;
    height: 2px;
    background: #022c22;
    border-radius: 2px;
}

.mr-menu {
    display: flex;
    align-items: center;
    gap: 0.2rem 1.1rem;
}
.mr-menu-link {
    color: var(--mr-ink);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.94rem;
    padding: 0.35rem 0;
    opacity: 0.78;
}
.mr-menu-link:hover,
.mr-menu-link.is-active { opacity: 1; color: var(--mr-emerald-dark); }
.mr-menu-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-left: 0.6rem;
}

.mr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.78rem 1.25rem;
    font-weight: 650;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.mr-btn:hover { transform: translateY(-1px); }
.mr-btn-primary {
    background: linear-gradient(135deg, var(--mr-emerald), var(--mr-teal));
    color: #fff;
    box-shadow: 0 10px 24px rgba(5, 150, 105, 0.28);
}
.mr-btn-primary:hover { color: #fff; }
.mr-btn-light {
    background: #fff;
    color: var(--mr-forest);
}
.mr-btn-ghost {
    background: transparent;
    border-color: rgba(5, 150, 105, 0.35);
    color: var(--mr-emerald-dark);
}
.mr-btn-ghost:hover { background: #ecfdf5; color: var(--mr-emerald-dark); }
.mr-btn-ghost-light {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.75);
    color: #fff;
}
.mr-btn-lg { padding: 0.95rem 1.45rem; font-size: 1rem; }

.mr-hero {
    position: relative;
    min-height: min(100vh, 860px);
    padding: calc(var(--nav-h) + 2.5rem) 0 4.5rem;
    color: #fff;
    overflow: hidden;
    background:
        linear-gradient(105deg, rgba(2, 28, 22, 0.92) 0%, rgba(4, 80, 62, 0.78) 48%, rgba(2, 44, 34, 0.45) 100%),
        url('../../images/bg-background.jpg') center/cover no-repeat;
}
.mr-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}
.mr-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #ecfdf5;
    border-radius: 999px;
    padding: 0.38rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 650;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.mr-hero h1 {
    font-family: "Source Serif 4", Georgia, serif;
    font-size: clamp(2.4rem, 5.4vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 1rem 0 1rem;
    font-weight: 600;
}
.mr-hero h1 span {
    color: #6ee7b7;
}
.mr-hero .lead {
    font-size: 1.12rem;
    line-height: 1.65;
    max-width: 36rem;
    color: rgba(255,255,255,0.86);
    margin-bottom: 1.6rem;
}
.mr-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.6rem;
}
.mr-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    color: rgba(255,255,255,0.78);
    font-size: 0.9rem;
}
.mr-hero-meta strong {
    display: block;
    color: #fff;
    font-size: 1.05rem;
}

.mr-panel {
    background: rgba(255,255,255,0.96);
    color: var(--mr-ink);
    border-radius: 28px;
    padding: 1.4rem;
    box-shadow: 0 30px 70px rgba(0,0,0,0.22);
}
.mr-card-visual {
    background:
        linear-gradient(145deg, rgba(2,44,34,0.92), rgba(5,150,105,0.78)),
        url('../../images/texture-emerald.jpg') center/cover;
    color: #fff;
    border-radius: 20px;
    padding: 1.3rem 1.35rem 1.2rem;
    margin-bottom: 1rem;
}
.mr-card-visual .chip {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.8;
}
.mr-card-visual h3 {
    margin: 1.4rem 0 0.2rem;
    font-size: 0.95rem;
    font-weight: 500;
}
.mr-card-visual .balance {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}
.mr-card-visual .row {
    display: flex;
    justify-content: space-between;
    margin-top: 1.2rem;
    font-size: 0.82rem;
    opacity: 0.88;
}

.calc-label {
    font-size: 0.78rem;
    font-weight: 650;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--mr-muted);
    margin-bottom: 0.45rem;
}
.calc-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--mr-line);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}
.calc-input span {
    padding: 0 0.85rem;
    font-weight: 700;
    color: var(--mr-muted);
}
.calc-input input {
    border: 0;
    width: 100%;
    padding: 0.75rem 0.6rem;
    font-size: 1.15rem;
    font-weight: 700;
    outline: none;
}
.calc-range {
    width: 100%;
    margin: 0.85rem 0 0.6rem;
    accent-color: var(--mr-emerald);
}
.calc-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.9rem;
}
.calc-presets button {
    border: 1px solid var(--mr-line);
    background: #f8faf9;
    border-radius: 999px;
    padding: 0.28rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 600;
}
.calc-result {
    background: #ecfdf5;
    border-radius: 14px;
    padding: 0.85rem 1rem;
}
.calc-result strong {
    display: block;
    font-size: 1.45rem;
    color: var(--mr-emerald-dark);
}
.calc-result small { color: var(--mr-muted); }

#how, #tiers, #brands, #faq, #earn, #locations {
    scroll-margin-top: calc(var(--nav-h) + 18px);
}

.mr-section { padding: 5rem 0; }
.mr-section-tight { padding: 3.2rem 0; }
.mr-section h2 {
    font-family: "Source Serif 4", Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    letter-spacing: -0.03em;
    margin: 0.4rem 0 0.7rem;
}
.mr-eyebrow {
    color: var(--mr-emerald-dark);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.mr-muted { color: var(--mr-muted); }
.section-head { max-width: 40rem; margin-bottom: 2.2rem; }
.section-head.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.point-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1.4rem;
}
.point-list article {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--mr-line);
    border-radius: 18px;
    padding: 0.95rem 1rem;
}
.point-list h3 {
    margin: 0 0 0.2rem;
    font-size: 1rem;
}

.mr-logos {
    background: #fff;
    border-bottom: 1px solid var(--mr-line);
}
.mr-logo-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.9rem;
    align-items: center;
}
.mr-logo-row figure {
    margin: 0;
    background: #fff;
    border: 1px solid var(--mr-line);
    border-radius: 16px;
    padding: 0.7rem 0.6rem;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mr-logo-row img {
    max-height: 42px;
    width: auto;
    object-fit: contain;
}

.step-grid,
.benefit-grid,
.tier-grid,
.brand-grid,
.faq-grid {
    display: grid;
    gap: 1.1rem;
}
.step-grid { grid-template-columns: repeat(4, 1fr); }
.benefit-grid { grid-template-columns: repeat(3, 1fr); }
.tier-grid { grid-template-columns: repeat(3, 1fr); }
.brand-grid { grid-template-columns: repeat(3, 1fr); }
.faq-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem 1.2rem; }

.mr-card {
    background: #fff;
    border: 1px solid var(--mr-line);
    border-radius: var(--mr-radius);
    padding: 1.4rem 1.35rem;
    box-shadow: 0 10px 30px rgba(2, 44, 34, 0.04);
    height: 100%;
}
.mr-card h3 {
    font-size: 1.12rem;
    margin: 0.7rem 0 0.45rem;
}
.icon-pill {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ecfdf5;
    color: var(--mr-emerald-dark);
    font-size: 1.05rem;
}
.step-num {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mr-teal);
}

.tier-card { position: relative; overflow: hidden; }
.tier-card.featured {
    background: linear-gradient(180deg, #064e3b, #022c22);
    color: #fff;
    border: 0;
}
.tier-card.featured p,
.tier-card.featured .mr-muted { color: rgba(255,255,255,0.78); }
.tier-badge {
    display: inline-block;
    border-radius: 999px;
    padding: 0.22rem 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.tier-bronze { background: #f3e8d4; color: #8a5a18; }
.tier-silver { background: #e2e8f0; color: #334155; }
.tier-gold { background: #fde68a; color: #854d0e; }
.tier-card ul {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}
.tier-card li {
    padding: 0.38rem 0;
    border-top: 1px solid var(--mr-line);
    font-size: 0.92rem;
}
.tier-card.featured li { border-color: rgba(255,255,255,0.1); }

.brand-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mr-shadow);
    color: inherit;
}
.brand-card .logo-box {
    background: #fff;
    border: 1px solid var(--mr-line);
    border-radius: 16px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0.7rem;
}
.brand-card .logo-box img { max-height: 58px; width: auto; }
.city {
    font-size: 0.78rem;
    font-weight: 650;
    color: var(--mr-emerald-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}
.split-photo {
    border-radius: 28px;
    overflow: hidden;
    min-height: 360px;
    background: #123 url('../../images/shop-atmosphere.jpg') center/cover no-repeat;
    box-shadow: var(--mr-shadow);
}

.faq-item {
    background: #fff;
    border: 1px solid var(--mr-line);
    border-radius: 16px;
    padding: 0.15rem 1rem;
}
.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 650;
    padding: 0.95rem 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
    margin: 0 0 1rem;
    color: var(--mr-muted);
    line-height: 1.6;
}

.mr-cta {
    position: relative;
    color: #fff;
    padding: 5rem 0;
    background:
        linear-gradient(120deg, rgba(2,44,34,0.92), rgba(5,150,105,0.78)),
        url('../../images/texture-emerald.jpg') center/cover;
}
.mr-cta h2 { color: #fff; }
.mr-cta .mr-muted { color: rgba(255,255,255,0.78); }

.mr-footer {
    background: var(--mr-ink);
    color: rgba(255,255,255,0.78);
    padding: 4rem 0 1.5rem;
}
.mr-footer .mr-brand { color: #fff; }
.mr-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr;
    gap: 2rem;
}
.mr-footer h3 {
    color: #fff;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.mr-footer ul { list-style: none; padding: 0; margin: 0; }
.mr-footer li { margin-bottom: 0.5rem; }
.mr-footer a { color: rgba(255,255,255,0.82); text-decoration: none; }
.mr-footer a:hover { color: #6ee7b7; }
.mr-footer-brand p { margin: 1rem 0 1.2rem; max-width: 28rem; line-height: 1.6; }
.mr-footer-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.mr-footer-visit li { margin-bottom: 0.85rem; line-height: 1.45; }
.mr-footer-visit strong { display: block; color: #fff; }
.mr-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 2.5rem;
    padding-top: 1.2rem;
    font-size: 0.85rem;
}

.legal {
    padding: calc(var(--nav-h) + 2.5rem) 0 4rem;
}
.legal-card {
    background: #fff;
    border-radius: 28px;
    padding: 2.2rem;
    border: 1px solid var(--mr-line);
    max-width: 820px;
    margin: 0 auto;
}
.legal-card h1 {
    font-family: "Source Serif 4", Georgia, serif;
    margin-bottom: 0.4rem;
}
.legal-card h2 {
    font-size: 1.2rem;
    margin-top: 1.8rem;
}
.legal-card p, .legal-card li { color: var(--mr-muted); line-height: 1.7; }

@media (max-width: 991.98px) {
    .mr-nav-inner { width: calc(100% - 1.25rem); }
    .mr-brand img { width: 34px; height: 34px; }
    .mr-brand span { font-size: 1rem; }
    .mr-nav-end {
        display: inline-flex;
        position: fixed;
        top: 18px;
        right: 16px;
        margin: 0;
        transform: none;
    }
    .mr-brand { padding-right: 3.5rem; }
    .mr-menu {
        display: none;
        position: absolute;
        left: 1.2rem;
        right: 1.2rem;
        top: calc(var(--nav-h) - 8px);
        background: #fff;
        border-radius: 18px;
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
        box-shadow: var(--mr-shadow);
        z-index: 1002;
    }
    .mr-menu.is-open { display: flex; }
    .mr-menu-actions { margin: 0.4rem 0 0; flex-direction: column; }
    .mr-hero-grid,
    .split,
    .step-grid,
    .benefit-grid,
    .tier-grid,
    .brand-grid,
    .faq-grid,
    .mr-footer-grid,
    .mr-logo-row {
        grid-template-columns: 1fr 1fr;
    }
    .mr-hero { padding-top: calc(var(--nav-h) + 1.4rem); }
}

@media (max-width: 639.98px) {
    .mr-hero-grid,
    .split,
    .step-grid,
    .benefit-grid,
    .tier-grid,
    .brand-grid,
    .faq-grid,
    .mr-footer-grid,
    .mr-logo-row {
        grid-template-columns: 1fr;
    }
    .mr-hero { min-height: auto; }
    .mr-hero h1 { font-size: 2.15rem; }
    .mr-btn-lg { width: 100%; }
    .legal-card { padding: 1.4rem; }
}

@media (min-width: 992px) {
    .mr-nav-end { display: none; }
}
