/**
 * Estimator landing page — ported from "Estimator Landing Page.dc.html".
 * Muncly DS: dark forest, Playfair Display headings, DM Sans body,
 * DM Mono numerals, orange #E8440A for action only.
 */

/* ── Shell (sits between the theme's standard header and footer) ── */
.mn-lp-page {
    background: #192E28;
    color: #DED5BE;
    font-family: 'DM Sans', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}
.mn-lp-page a { color: #DED5BE; }
.mn-lp-page a:hover { color: #F4ECD8; }
.mn-lp-mono { font-family: 'DM Mono', ui-monospace, monospace; font-size: 15px; color: #F4ECD8; white-space: nowrap; }
.mn-lp-mono--peach { color: #F0A881; }

/* ── Shared pieces ──────────────────────────────────────────────── */
.mn-lp-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #F0A881;
}
.mn-lp-eyebrow__tick { width: 18px; height: 3px; background: #E8440A; border-radius: 2px; }

.mn-lp-h2 {
    font-family: 'Playfair Display', Georgia, serif; font-weight: 600;
    font-size: clamp(1.75rem, 3vw, 2.4rem); line-height: 1.2; color: #DED5BE; margin: 14px 0 24px;
}
.mn-lp-h2 em { font-style: italic; font-weight: 500; color: #E8440A; }
.mn-lp-h2--wrap { max-width: 24ch; margin-bottom: 16px; }

.mn-lp-p { font-size: 17px; line-height: 1.75; color: rgba(222, 213, 190, .78); margin: 0 0 20px; max-width: 68ch; }
.mn-lp-p--strong { color: #F4ECD8; font-weight: 500; margin-bottom: 0; }
.mn-lp-p--lead { line-height: 1.7; color: rgba(222, 213, 190, .75); margin: 0 0 40px; max-width: 66ch; }

.mn-lp-btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 17px 30px; border-radius: 8px;
    background: #E8440A; color: #fff !important; font-size: 16px; font-weight: 600; text-decoration: none;
    box-shadow: 0 4px 20px rgba(232, 68, 10, .4); transition: transform .15s ease;
}
.mn-lp-btn:hover { transform: translateY(-2px); }
.mn-lp-ctastack { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.mn-lp-ctastack--center { align-items: center; }
.mn-lp-ctastack__note { font-size: 13.5px; font-style: italic; color: rgba(222, 213, 190, .55); }

.mn-lp-glass {
    position: relative; border-radius: 24px; padding: 40px;
    background: linear-gradient(150deg, #2f5a49 0%, #23362c 58%, #1b3028 100%);
    border: 1px solid rgba(222, 213, 190, .18);
    border-top-color: rgba(222, 213, 190, .38); border-left-color: rgba(222, 213, 190, .28);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .45);
}
.mn-lp-glass__topline {
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(232, 200, 160, .5) 35%, rgba(232, 68, 10, .6) 65%, transparent 100%);
}

/* ── Sections ───────────────────────────────────────────────────── */
.mn-lp-sect { position: relative; overflow: hidden; background: #192E28; padding: 88px 40px; border-top: 1px solid rgba(222, 213, 190, .10); }
.mn-lp-sect--alt { background: #213D36; }
.mn-lp-sect__inner { position: relative; max-width: 1100px; margin: 0 auto; }
.mn-lp-sect__inner--narrow { max-width: 760px; }
.mn-lp-sect__glow { position: absolute; inset: 0; pointer-events: none; }
.mn-lp-sect__glow--top { background: radial-gradient(ellipse 70% 45% at 50% -10%, rgba(232, 68, 10, .05) 0%, transparent 65%); }
.mn-lp-sect__glow--bl { background: radial-gradient(ellipse 60% 50% at 20% 110%, rgba(60, 100, 88, .35) 0%, transparent 60%); }
.mn-lp-sect__glow--soft { background: radial-gradient(ellipse 70% 45% at 50% -10%, rgba(222, 213, 190, .04) 0%, transparent 65%); }
.mn-lp-sect__glow--right { background: radial-gradient(ellipse 50% 60% at 90% 20%, rgba(60, 100, 88, .4) 0%, transparent 60%); }
.mn-lp-sect__glow--cta { background: radial-gradient(ellipse 60% 70% at 50% 30%, rgba(232, 68, 10, .07), transparent 60%); }

/* ── Hero ───────────────────────────────────────────────────────── */
.mn-lp-hero { position: relative; overflow: hidden; background: #192E28; padding: 96px 40px 88px; border-bottom: 1px solid rgba(222, 213, 190, .10); }
.mn-lp-hero__glow {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 55% 70% at 105% -5%, rgba(60, 100, 88, .55) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at -5% 110%, rgba(232, 68, 10, .08) 0%, transparent 55%);
}
.mn-lp-hero__grid { position: relative; max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.mn-lp-hero__copy { max-width: 660px; }
.mn-lp-hero__title {
    font-family: 'Playfair Display', Georgia, serif; font-weight: 600;
    font-size: clamp(2.2rem, 4.2vw, 3.4rem); line-height: 1.12; color: #DED5BE;
    margin: 18px 0 24px; text-shadow: 0 0 40px rgba(222, 213, 190, .15); text-wrap: balance;
}
.mn-lp-hero__title em { font-style: italic; font-weight: 500; color: #E8440A; white-space: nowrap; }
.mn-lp-hero__sub { font-size: 19px; line-height: 1.7; color: rgba(222, 213, 190, .75); margin: 0 0 36px; max-width: 58ch; }
.mn-lp-hero__visual { position: relative; display: flex; justify-content: center; }
.mn-lp-hero__img {
    display: block; width: min(88%, 500px); height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .5));
}
@media (max-width: 1020px) {
    .mn-lp-hero__grid { grid-template-columns: 1fr; gap: 40px; }
    .mn-lp-hero__img { width: min(80%, 400px); }
}

/* ── Two products ───────────────────────────────────────────────── */
.mn-lp-two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.mn-lp-two__card p { font-size: 15.5px; line-height: 1.7; color: rgba(222, 213, 190, .8); margin: 0; }
.mn-lp-two__card--hero { border: 1px solid rgba(232, 68, 10, .4); border-top-color: rgba(232, 68, 10, .4); border-left-color: rgba(232, 68, 10, .4); }
.mn-lp-two__price { font-size: 26px; font-weight: 500; margin-bottom: 6px; }
.mn-lp-two__name { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(222, 213, 190, .55); margin-bottom: 18px; }
.mn-lp-two__name--peach { color: #F0A881; }
.mn-lp-two__closer { font-size: 16px; line-height: 1.7; color: #F4ECD8; margin: 36px auto 0; max-width: 60ch; text-align: center; }
@media (max-width: 760px) { .mn-lp-two { grid-template-columns: 1fr; } }

/* ── What you'll see ────────────────────────────────────────────── */
.mn-lp-see { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mn-lp-see__card { border-radius: 12px; padding: 22px 24px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(222, 213, 190, .14); }
.mn-lp-see__head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 15px; font-weight: 600; color: #F4ECD8; }
.mn-lp-see__dot { flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: #E8440A; box-shadow: 0 0 6px rgba(232, 68, 10, .4); }
.mn-lp-see__card p { font-size: 14px; line-height: 1.6; color: rgba(222, 213, 190, .65); margin: 0; }
.mn-lp-see__closer { margin-top: 36px; }
@media (max-width: 1020px) { .mn-lp-see { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .mn-lp-see { grid-template-columns: 1fr; } }

/* ── Final CTA ──────────────────────────────────────────────────── */
.mn-lp-final { border-top: 1px solid rgba(232, 68, 10, .35); }
.mn-lp-final__inner { max-width: 640px; text-align: center; }
.mn-lp-final .mn-lp-h2 { margin-top: 0; margin-bottom: 22px; }
.mn-lp-final .mn-lp-p { font-size: 16.5px; margin: 0 auto 14px; }
.mn-lp-final .mn-lp-p:last-of-type { margin-bottom: 36px; }
