:root {
    --bg: #f3f7f3;
    --bg-raised: #e6eee8;
    --surface: #ffffff;
    --surface-2: #eef3ef;
    --gold: #c49a3c;
    --gold-soft: #9a7530;
    --accent: #1e8c7a;
    --accent-dim: #167062;
    --text: #1c2822;
    --muted: #4d5c55;
    --faint: #6d7d74;
    --line: rgba(154, 117, 48, 0.28);
    --shadow: 0 24px 60px rgba(28, 40, 34, 0.12);
    --serif: ui-serif, Iowan Old Style, Palatino Linotype, Palatino, Georgia, serif;
    --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, sans-serif;
    --max: 1120px;
    color-scheme: light;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--gold-soft); }

.skip {
    position: absolute;
    left: 12px;
    top: -40px;
    background: var(--gold);
    color: #1a1408;
    padding: 8px 12px;
    z-index: 100;
    font-weight: 700;
}
.skip:focus { top: 12px; }

.wrap {
    width: min(var(--max), calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(243, 247, 243, 0.9);
    border-bottom: 1px solid var(--line);
}

.nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 16px;
}

.brand {
    font-family: var(--serif);
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gold);
    font-size: 15px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

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

.nav-links a.btn-gold,
.nav-links a.btn-gold:hover { color: #1a1408; }

.nav-toggle {
    display: none;
}

.nav-toggle-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: transparent;
    color: var(--text);
    cursor: pointer;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 40px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -20% -10% auto;
    height: 70%;
    background:
        radial-gradient(ellipse at 70% 10%, rgba(30, 140, 122, 0.16), transparent 50%),
        radial-gradient(ellipse at 20% 0%, rgba(196, 154, 60, 0.18), transparent 46%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.eyebrow {
    color: var(--gold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 16px;
}

h1, h2, h3 { font-family: var(--serif); line-height: 1.12; letter-spacing: -0.02em; }

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    margin: 0 0 18px;
    max-width: 11ch;
}

.lede {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 38rem;
    margin: 0 0 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-actions.center { justify-content: center; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid transparent;
}

.btn-gold {
    background: #d1ad61;
    color: #1a1408;
}
.btn-gold:hover { color: #1a1408; filter: brightness(1.05); }

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: rgba(28, 40, 34, 0.18);
}
.btn-ghost:hover { color: var(--gold-soft); border-color: var(--gold); }

.fine {
    color: var(--faint);
    font-size: 14px;
    margin: 0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 12px 0 72px;
}

.stat {
    border: 1px solid var(--line);
    background: var(--bg-raised);
    border-radius: 18px;
    padding: 22px 22px 20px;
}

.stat strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.7rem;
    color: var(--gold);
    margin-bottom: 6px;
}

.stat span { color: var(--muted); font-size: 14px; }

.section { padding: 72px 0; }

.section-muted { background: var(--bg-raised); }

.section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 12px;
}

.section-intro {
    color: var(--muted);
    max-width: 40rem;
    margin: 0 0 40px;
}

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 72px;
}

.feature:last-child { margin-bottom: 0; }

.feature.reverse .copy { order: 2; }

.kicker {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.feature h3 {
    font-size: 1.8rem;
    margin: 0 0 12px;
}

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

.panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    min-height: 280px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.panel-label {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.panel-value {
    font-family: var(--serif);
    font-size: 4.2rem;
    line-height: 1;
    margin: 18px 0 8px;
    color: var(--accent);
}

.panel-rating {
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
}

.panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
}

.panel li + li { margin-top: 8px; }
.panel strong { color: var(--gold-soft); }

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

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

.step b {
    display: block;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

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

.split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.faq details {
    border-top: 1px solid var(--line);
    padding: 16px 0;
}

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

.faq summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

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

.faq summary::after {
    content: "+";
    color: var(--gold);
    font-size: 1.3rem;
}

.faq details[open] summary::after { content: "–"; }

.faq p {
    color: var(--muted);
    margin: 12px 0 4px;
    max-width: 46rem;
}

.download {
    text-align: center;
    padding: 88px 0;
}

.download h2 { margin-bottom: 12px; }

.download .lede {
    margin-inline: auto;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 48px 0 28px;
    background: #1f3329;
    color: #dce6df;
}

.site-footer .fine,
.site-footer .legal-row { color: #9aada2; }

.site-footer a { color: #c5d4cb; }
.site-footer a:hover { color: #e4c88a; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 36px;
}

.site-footer h4 {
    margin: 0 0 12px;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #d1ad61;
}

.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 8px 0; }
.site-footer .brand { display: inline-block; margin-bottom: 10px; color: #d1ad61; }

.legal-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--faint);
    font-size: 13px;
    border-top: 1px solid rgba(209, 173, 97, 0.2);
    padding-top: 18px;
}

.phone {
    width: min(320px, 100%);
    margin-inline: auto;
    background: #070c0a;
    border: 8px solid #1a2420;
    border-radius: 36px;
    box-shadow: var(--shadow), inset 0 0 0 1px #2a3a33;
    overflow: hidden;
    line-height: 0;
}

.phone img {
    width: 100%;
    height: auto;
    display: block;
}

.legal-main {
    width: min(760px, calc(100% - 40px));
    margin: 40px auto 80px;
}

.legal-main h1 { font-size: 2.2rem; margin-bottom: 8px; }
.legal-main .updated { color: var(--muted); margin-bottom: 28px; }
.legal-main h2 { font-size: 1.2rem; color: var(--gold); margin: 28px 0 10px; }
.legal-main p { color: var(--muted); margin: 0 0 12px; }

@media (max-width: 860px) {
    .hero-grid,
    .feature,
    .split,
    .stats,
    .steps,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .feature.reverse .copy { order: 0; }

    .hero { padding-top: 36px; }

    .nav-toggle-btn { display: grid; place-items: center; }

    .nav-links {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 72px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: #ffffff;
        border-bottom: 1px solid var(--line);
        padding: 8px 20px 16px;
    }

    .nav-links a { display: block; padding: 12px 0; }

    .nav-toggle:checked ~ .nav-links { display: flex; }
}
