/* ============================================================
   Mankiwave — "Verdant" frontend design system
   Light editorial premium SaaS · emerald brand · Space Grotesk
   Overhauled UI/UX for the Stacklight theme (loads after Bootstrap)
   ============================================================ */

:root {
    /* Brand */
    --brand: #12B76A;
    --brand-2: #0E9C59;
    --brand-3: #0A7E47;
    --brand-soft: #E6F7EF;
    --brand-softer: #F1FBF6;
    --forest: #06311F;
    --forest-2: #0A4A30;
    --lime: #C7F94B;

    /* Ink / paper */
    --ink: #0B1512;
    --ink-2: #3C4B44;
    --ink-3: #6B7A72;
    --paper: #F5F4EE;
    --paper-2: #ECEAE1;
    --white: #FFFFFF;

    --line: rgba(11, 21, 18, 0.10);
    --line-2: rgba(11, 21, 18, 0.055);

    /* Alias used by auth inline focus handlers (do not remove) */
    --primary: #12B76A;

    /* Bootstrap primary remap */
    --bs-primary: #12B76A;
    --bs-primary-rgb: 18, 183, 106;

    --shadow-xs: 0 1px 2px rgba(11, 21, 18, 0.05);
    --shadow-sm: 0 6px 18px -8px rgba(11, 21, 18, 0.16);
    --shadow: 0 24px 60px -28px rgba(11, 21, 18, 0.26);
    --shadow-lg: 0 48px 100px -36px rgba(11, 21, 18, 0.34);
    --shadow-brand: 0 18px 40px -14px rgba(18, 183, 106, 0.45);

    --r-xs: 10px;
    --r-sm: 14px;
    --r: 20px;
    --r-lg: 30px;
    --r-pill: 999px;

    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    --container: 1200px;
}

/* ===== Base ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--paper);
    color: var(--ink);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--ink);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.08;
}
a { color: var(--brand-3); text-decoration: none; }
img { max-width: 100%; }
::selection { background: var(--lime); color: var(--ink); }

/* ===== Layout helpers ===== */
.mw-container { max-width: var(--container); margin: 0 auto; padding-inline: 24px; }
.mw-section { padding: 110px 0; position: relative; }
.mw-section-sm { padding: 70px 0; }
.mw-narrow { max-width: 760px; margin-inline: auto; }

.mw-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font); font-weight: 700;
    font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--brand-3);
    background: var(--brand-soft);
    border: 1px solid rgba(18, 183, 106, 0.18);
    padding: 7px 14px; border-radius: var(--r-pill);
}
.mw-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(18,183,106,0.18); }

.mw-h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.mw-h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.mw-h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.mw-lead { font-size: clamp(1.05rem, 1.4vw, 1.28rem); color: var(--ink-2); line-height: 1.65; font-weight: 400; }
.mw-muted { color: var(--ink-3); }
.mw-mark { background: linear-gradient(180deg, transparent 62%, var(--lime) 62%); padding: 0 2px; }
.mw-grad-text { background: linear-gradient(120deg, var(--brand) 0%, var(--forest-2) 60%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ===== Buttons ===== */
.mw-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--font); font-weight: 700; font-size: 0.97rem;
    padding: 14px 26px; border-radius: var(--r-pill);
    border: 1px solid transparent; cursor: pointer;
    transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s, background .25s, color .25s;
    text-decoration: none; line-height: 1; white-space: nowrap;
}
.mw-btn:active { transform: translateY(1px); }
.mw-btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.mw-btn-primary:hover { background: var(--brand-2); color: #fff; transform: translateY(-2px); box-shadow: 0 24px 50px -16px rgba(18,183,106,0.55); }
.mw-btn-dark { background: var(--ink); color: #fff; }
.mw-btn-dark:hover { background: var(--forest); color: #fff; transform: translateY(-2px); }
.mw-btn-ghost { background: var(--white); color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-xs); }
.mw-btn-ghost:hover { border-color: var(--brand); color: var(--brand-3); transform: translateY(-2px); }
.mw-btn-light { background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.18); }
.mw-btn-light:hover { background: rgba(255,255,255,0.18); color: #fff; }
.mw-btn-lime { background: var(--lime); color: var(--ink); }
.mw-btn-lime:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(199,249,75,0.6); color: var(--ink); }
.mw-btn-lg { padding: 17px 34px; font-size: 1.04rem; }
.mw-btn-block { width: 100%; }

/* ===== Navbar ===== */
.mw-nav {
    position: sticky; top: 0; z-index: 1000;
    padding: 16px 0;
    background: rgba(245, 244, 238, 0.72);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid transparent;
    transition: all .35s cubic-bezier(.4,0,.2,1);
}
.mw-nav.scrolled { padding: 10px 0; background: rgba(245,244,238,0.92); border-bottom-color: var(--line); box-shadow: 0 12px 40px -24px rgba(11,21,18,0.3); }
.mw-brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--ink); letter-spacing: -0.03em; text-decoration: none; }
.mw-brand img { max-height: 40px; }
.mw-logo-badge { width: 40px; height: 40px; border-radius: 12px; background: var(--brand); display: grid; place-items: center; color: #fff; font-size: 1.2rem; box-shadow: var(--shadow-brand); }
.mw-nav .nav-link { font-family: var(--font); font-weight: 600; color: var(--ink-2) !important; padding: 9px 16px !important; border-radius: var(--r-pill); font-size: 0.94rem; transition: all .25s; }
.mw-nav .nav-link:hover { color: var(--ink) !important; background: rgba(11,21,18,0.05); }
.mw-nav .nav-link.is-accent { color: var(--brand-3) !important; }
.mw-tag {
    display: inline-block; padding: 2px 8px; font-family: var(--font); font-size: 10px; font-weight: 700;
    background: var(--ink); color: #fff; border-radius: 6px; letter-spacing: 0.04em; line-height: 16px; margin-left: 4px;
}
.navbar-toggler { border: none !important; box-shadow: none !important; }

/* ===== Cards ===== */
.mw-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r);
    box-shadow: var(--shadow-sm);
    transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s, border-color .35s;
}
.mw-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(18,183,106,0.35); }
.mw-card-pad { padding: 30px; }

.mw-pill {
    display: inline-flex; align-items: center; gap: 7px;
    font-weight: 600; font-size: 0.82rem; color: var(--ink-2);
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--r-pill); padding: 7px 14px;
}

.mw-ico {
    width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
    font-size: 1.35rem; color: var(--brand-3); background: var(--brand-soft);
    border: 1px solid rgba(18,183,106,0.16); margin-bottom: 18px;
}
.mw-ico.alt { background: rgba(11,21,18,0.05); color: var(--ink); border-color: var(--line); }

/* ===== Hero ===== */
.mw-hero { position: relative; padding: 64px 0 90px; overflow: hidden; }
.mw-hero::before {
    content: ""; position: absolute; inset: -20% -10% auto -10%; height: 620px; z-index: 0;
    background:
        radial-gradient(closest-side at 20% 25%, rgba(18,183,106,0.16), transparent 70%),
        radial-gradient(closest-side at 82% 15%, rgba(199,249,75,0.18), transparent 70%);
    filter: blur(6px); pointer-events: none;
}
.mw-hero > * { position: relative; z-index: 1; }
.mw-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.mw-trustline { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; color: var(--ink-3); font-size: 0.9rem; font-weight: 500; }
.mw-avatars { display: inline-flex; }
.mw-avatars img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--paper); object-fit: cover; margin-left: -10px; }
.mw-avatars img:first-child { margin-left: 0; }
.mw-stars { color: #F5A623; letter-spacing: 1px; }

/* Chat mock */
.mw-chat {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg); padding: 18px; position: relative;
}
.mw-chat-head { display: flex; align-items: center; gap: 12px; padding: 6px 6px 16px; border-bottom: 1px solid var(--line-2); }
.mw-chat-ava { width: 44px; height: 44px; border-radius: 50%; background: var(--brand); display: grid; place-items: center; color: #fff; font-size: 1.2rem; }
.mw-chat-body { padding: 18px 6px 6px; display: flex; flex-direction: column; gap: 12px; background:
    linear-gradient(0deg, var(--brand-softer), var(--white)); border-radius: 0 0 18px 18px; }
.mw-bubble { max-width: 80%; padding: 11px 15px; border-radius: 16px; font-size: 0.92rem; line-height: 1.45; box-shadow: var(--shadow-xs); }
.mw-bubble.in { background: var(--white); border: 1px solid var(--line); border-bottom-left-radius: 5px; align-self: flex-start; }
.mw-bubble.out { background: var(--brand); color: #fff; border-bottom-right-radius: 5px; align-self: flex-end; }
.mw-bubble.bot { background: var(--ink); color: #fff; align-self: flex-start; border-bottom-left-radius: 5px; }
.mw-typing { display: inline-flex; gap: 4px; }
.mw-typing span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.7); animation: mwblink 1.2s infinite; }
.mw-typing span:nth-child(2){ animation-delay: .2s; } .mw-typing span:nth-child(3){ animation-delay: .4s; }
@keyframes mwblink { 0%,60%,100%{opacity:.25;} 30%{opacity:1;} }
.mw-float {
    position: absolute; background: var(--white); border: 1px solid var(--line); border-radius: 16px;
    box-shadow: var(--shadow); padding: 12px 16px; display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: 0.86rem;
}
.mw-float .mw-float-ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #fff; }
.mw-float.f1 { top: 24px; left: -34px; animation: mwfloat 5s ease-in-out infinite; }
.mw-float.f2 { bottom: 36px; right: -30px; animation: mwfloat 6s ease-in-out infinite reverse; }
@keyframes mwfloat { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }

/* ===== Marquee logos ===== */
.mw-marquee-wrap { padding: 26px 0; border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); background: var(--white); overflow: hidden; }
.mw-marquee { display: flex; gap: 60px; align-items: center; width: max-content; animation: mwscroll 32s linear infinite; }
.mw-marquee span { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--ink-3); opacity: 0.7; white-space: nowrap; display: inline-flex; align-items: center; gap: 10px; }
@keyframes mwscroll { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ===== Stats ===== */
.mw-stat { text-align: center; }
.mw-stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--ink); letter-spacing: -0.03em; }
.mw-stat .num b { color: var(--brand-3); }
.mw-stat .lbl { color: var(--ink-3); font-weight: 500; margin-top: 4px; }

/* ===== Bento / feature grid ===== */
.mw-bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.mw-bento .span-3 { grid-column: span 3; } .mw-bento .span-2 { grid-column: span 2; } .mw-bento .span-4 { grid-column: span 4; } .mw-bento .span-6 { grid-column: span 6; }
.mw-feature h3 { font-size: 1.28rem; margin: 0 0 10px; }
.mw-feature p { color: var(--ink-2); line-height: 1.6; margin: 0; font-size: 0.96rem; }
.mw-chiplist { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.mw-chip { font-size: 0.8rem; font-weight: 600; color: var(--ink-2); background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 6px 12px; }

/* ===== Dark spotlight ===== */
.mw-dark { background: var(--forest); color: #EAF6EF; border-radius: 40px; position: relative; overflow: hidden; }
.mw-dark::before { content:""; position:absolute; inset:auto -10% -40% 30%; height: 460px; background: radial-gradient(closest-side, rgba(199,249,75,0.16), transparent 70%); }
.mw-dark h1, .mw-dark h2, .mw-dark h3, .mw-dark h4 { color: #fff; }
.mw-dark .mw-lead { color: rgba(234,246,239,0.74); }
.mw-dark .mw-eyebrow { background: rgba(199,249,75,0.12); color: var(--lime); border-color: rgba(199,249,75,0.22); }
.mw-dark .mw-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.10); box-shadow: none; }
.mw-dark .mw-card:hover { border-color: rgba(199,249,75,0.35); }
.mw-dark .mw-card h3 { color: #fff; } .mw-dark .mw-card p { color: rgba(234,246,239,0.68); }
.mw-dark .mw-ico { background: rgba(199,249,75,0.12); color: var(--lime); border-color: rgba(199,249,75,0.2); }

/* ===== Steps ===== */
.mw-step { position: relative; padding-top: 12px; }
.mw-step .n { font-family: var(--font-display); font-weight: 700; font-size: 1rem; width: 40px; height: 40px; border-radius: 12px; background: var(--ink); color: #fff; display: grid; place-items: center; margin-bottom: 18px; }
.mw-step h3 { font-size: 1.22rem; margin: 0 0 8px; }
.mw-step p { color: var(--ink-2); line-height: 1.6; margin: 0; }

/* ===== Pricing ===== */
.mw-toggle { display: inline-flex; align-items: center; gap: 4px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 5px; }
.mw-toggle button { border: none; background: transparent; font-family: var(--font); font-weight: 700; font-size: 0.9rem; color: var(--ink-2); padding: 9px 20px; border-radius: var(--r-pill); cursor: pointer; transition: all .25s; }
.mw-toggle button.active { background: var(--ink); color: #fff; }
.mw-toggle .save { font-size: 0.72rem; color: var(--brand-3); font-weight: 700; }
.mw-price-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .35s, box-shadow .35s, border-color .35s; height: 100%; }
.mw-price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.mw-price-card.featured { border-color: var(--brand); box-shadow: var(--shadow-brand); position: relative; }
.mw-price-card.featured::after { content: "Most popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 16px; border-radius: var(--r-pill); white-space: nowrap; }
.mw-price-name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.mw-price-amt { font-family: var(--font-display); font-weight: 700; font-size: 3rem; letter-spacing: -0.04em; line-height: 1; margin: 14px 0 2px; }
.mw-price-amt small { font-size: 1rem; font-weight: 600; color: var(--ink-3); letter-spacing: 0; }
.mw-feat-list { list-style: none; padding: 0; margin: 22px 0; display: flex; flex-direction: column; gap: 12px; }
.mw-feat-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-2); font-size: 0.93rem; line-height: 1.45; }
.mw-feat-list li i { color: var(--brand); margin-top: 3px; flex-shrink: 0; }
.mw-feat-list li.off { color: var(--ink-3); opacity: 0.6; } .mw-feat-list li.off i { color: var(--ink-3); }

/* ===== Testimonials ===== */
.mw-quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 28px; box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column; }
.mw-quote p { color: var(--ink); font-size: 1.02rem; line-height: 1.6; font-weight: 500; flex: 1; }
.mw-quote .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.mw-quote .who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.mw-quote .who b { display: block; font-family: var(--font-display); font-size: 0.96rem; }
.mw-quote .who span { color: var(--ink-3); font-size: 0.85rem; }

/* ===== FAQ ===== */
.mw-faq { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-sm); margin-bottom: 12px; overflow: hidden; transition: border-color .25s; }
.mw-faq.open { border-color: rgba(18,183,106,0.4); }
.mw-faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 1.04rem; color: var(--ink); }
.mw-faq-q i { color: var(--brand-3); transition: transform .3s; flex-shrink: 0; }
.mw-faq.open .mw-faq-q i { transform: rotate(45deg); }
.mw-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.mw-faq-a .inner { padding: 0 24px 22px; color: var(--ink-2); line-height: 1.7; }

/* ===== CTA band ===== */
.mw-cta { background: var(--ink); border-radius: 40px; color: #fff; padding: 70px; position: relative; overflow: hidden; }
.mw-cta::before { content:""; position:absolute; inset: -50% 40% auto auto; width: 480px; height: 480px; background: radial-gradient(closest-side, rgba(18,183,106,0.5), transparent 70%); }
.mw-cta h2 { color: #fff; }
.mw-cta .mw-lead { color: rgba(255,255,255,0.72); }

/* ===== Footer ===== */
.mw-footer { background: var(--white); border-top: 1px solid var(--line); padding: 80px 0 36px; }
.mw-footer h5 { font-family: var(--font-display); font-size: 0.95rem; margin-bottom: 20px; color: var(--ink); }
.mw-footer .links { list-style: none; padding: 0; margin: 0; }
.mw-footer .links li { margin-bottom: 11px; }
.mw-footer .links a { color: var(--ink-3); font-size: 0.92rem; font-weight: 500; transition: all .25s; }
.mw-footer .links a:hover { color: var(--brand-3); padding-left: 3px; }
.mw-soc { width: 40px; height: 40px; border-radius: 12px; background: var(--paper); border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-2); transition: all .25s; }
.mw-soc:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-3px); }
.mw-footer-bottom { margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; color: var(--ink-3); font-size: 0.88rem; }
.mw-status { display: inline-flex; align-items: center; gap: 7px; padding: 6px 14px; border-radius: var(--r-pill); background: var(--brand-soft); border: 1px solid rgba(18,183,106,0.2); color: var(--brand-3); font-size: 0.8rem; font-weight: 600; }
.mw-status .d { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); animation: mwpulse 2s infinite; }
@keyframes mwpulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(18,183,106,0.5);} 50%{ box-shadow: 0 0 0 6px rgba(18,183,106,0);} }

/* ===== Auth ===== */
.mw-auth { padding: 60px 0 80px; }
.mw-auth-card { max-width: 1040px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden; }
.mw-auth-visual { background: var(--forest); color: #fff; position: relative; overflow: hidden; padding: 48px; display: flex; flex-direction: column; }
.mw-auth-visual::before { content:""; position:absolute; inset: auto -20% -30% auto; width: 380px; height: 380px; background: radial-gradient(closest-side, rgba(199,249,75,0.2), transparent 70%); }
.mw-auth-visual h3 { color: #fff; font-size: 1.9rem; }
.mw-auth-visual p { color: rgba(234,246,239,0.74); }
.mw-auth-form { padding: 44px; }
.mw-label { font-family: var(--font); font-weight: 700; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 7px; display: block; }
.mw-input, .mw-auth-form .form-control, .mw-auth-form .form-select {
    width: 100%; height: 52px; border-radius: var(--r-xs); border: 2px solid var(--line) !important;
    background: var(--paper); color: var(--ink); font-size: 0.95rem; padding: 0 16px;
    transition: border-color .2s, background .2s; font-family: var(--font);
}
.mw-input:focus, .mw-auth-form .form-control:focus, .mw-auth-form .form-select:focus { outline: none; border-color: var(--brand) !important; background: #fff; box-shadow: none; }
.mw-input-ic { position: relative; }
.mw-input-ic i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--ink-3); }
.mw-input-ic .mw-input, .mw-input-ic .form-control { padding-left: 44px; }

/* ===== Generic prose (legal pages) ===== */
.mw-prose { color: var(--ink-2); line-height: 1.8; font-size: 1.02rem; }
.mw-prose h1, .mw-prose h2, .mw-prose h3 { margin: 1.6em 0 0.6em; }
.mw-prose h2 { font-size: 1.5rem; } .mw-prose h3 { font-size: 1.2rem; }
.mw-prose a { color: var(--brand-3); text-decoration: underline; }
.mw-prose ul, .mw-prose ol { padding-left: 1.3em; }
.mw-prose li { margin-bottom: 0.5em; }

/* ===== Bootstrap remaps so legacy .btn-primary/.text-primary stay on-brand ===== */
.text-primary { color: var(--brand-3) !important; }
.btn-primary { --bs-btn-bg: var(--brand); --bs-btn-border-color: var(--brand); --bs-btn-hover-bg: var(--brand-2); --bs-btn-hover-border-color: var(--brand-2); --bs-btn-active-bg: var(--brand-3); }
.bg-brand { background: var(--brand) !important; }
.text-brand { color: var(--brand-3) !important; }

/* utility shims used by some auth markup */
.fw-800 { font-weight: 800 !important; }
.fw-900 { font-weight: 900 !important; }
.ls-1 { letter-spacing: 1px; }
.b-r-10 { border-radius: 10px; } .b-r-12 { border-radius: 12px; } .b-r-24 { border-radius: 24px; }

/* ===== Reveal (works with or without AOS) ===== */
.mw-reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.4,0,.2,1); }
.mw-reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .mw-section { padding: 80px 0; }
    .mw-hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .mw-hero-visual { max-width: 460px; margin: 0 auto; }
    .mw-bento { grid-template-columns: repeat(2, 1fr); }
    .mw-bento .span-3, .mw-bento .span-2, .mw-bento .span-4, .mw-bento .span-6 { grid-column: span 1; }
    .mw-cta { padding: 48px 28px; border-radius: 30px; }
    .mw-dark { border-radius: 28px; }
    .mw-nav .navbar-collapse { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 16px; margin-top: 12px; box-shadow: var(--shadow); }
    .mw-auth-form { padding: 32px 24px; }
}
@media (max-width: 575px) {
    .mw-container { padding-inline: 18px; }
    .mw-section { padding: 64px 0; }
    .mw-bento { grid-template-columns: 1fr; }
    .mw-float { display: none !important; }
    .mw-price-card, .mw-cta { padding: 28px; }
}
