/* ============================================================
MERN Stack Learning Path — Standalone Page
Fonts: Space Grotesk (headings) + DM Sans (body)
Design matches frontend-learning-path.html exactly
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
    --font-h: 'Space Grotesk', sans-serif;
    --font-b: 'DM Sans', sans-serif;
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 32px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t1: var(--text);
    --t2: var(--text2);
    --t3: var(--text3);
    --card: var(--bg-card);
    --glass: var(--bg-glass);
    --bh: var(--border-h);
    --nav: var(--nav-bg);
    --sh1: var(--shadow-sm);
    --sh2: var(--shadow-md);
    --sh3: var(--shadow-lg);
}

/* Buttons */

.btn:hover::after {
    opacity: 1;
}

.btn-o {
    background: transparent;
    color: var(--t1);
    border: 1.5px solid var(--border);
}

.btn-o:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-w {
    background: #fff;
    color: #f97316;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
}

.btn-w:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}

.btn-lg {
    padding: 15px 34px;
    font-size: 15px;
}

/* Fade-in system */
.fi {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.fi.on {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: .08s;
}

.d2 {
    transition-delay: .16s;
}

.d3 {
    transition-delay: .24s;
}

.d4 {
    transition-delay: .32s;
}

.d5 {
    transition-delay: .40s;
}

/* Tags */
.tag {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 999px;
}

.tag-o {
    background: rgba(249, 115, 22, .1);
    color: var(--accent);
    border: 1px solid rgba(249, 115, 22, .2);
}

.tag-c {
    background: rgba(6, 182, 212, .1);
    color: var(--accent-2);
    border: 1px solid rgba(6, 182, 212, .2);
}

.tag-p {
    background: rgba(168, 85, 247, .1);
    color: var(--accent-3);
    border: 1px solid rgba(168, 85, 247, .2);
}

.tag-g {
    background: rgba(34, 197, 94, .1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, .2);
}

.tag-n {
    background: var(--bg3);
    color: var(--text2);
    border: 1px solid var(--border);
}

.tag-y {
    background: rgba(234, 179, 8, .1);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, .2);
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34, 197, 94, .12), transparent 70%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .4;
    background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.orb1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(34, 197, 94, .18), transparent 60%);
}

.orb2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(6, 182, 212, .14), transparent 60%);
}

.hero-in {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 600;
    color: var(--t2);
    background: var(--glass);
    backdrop-filter: blur(8px);
    margin-bottom: 24px;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 1.5s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--t2);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.stats-bar {
    display: inline-flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 24px 36px;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
}

.stat-n {
    font-family: var(--font-h);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--t1);
    display: block;
}

.stat-l {
    font-size: 12px;
    color: var(--t3);
}

@media(max-width:600px) {
    .stats-bar {
        gap: 16px;
        padding: 18px 20px;
    }

    .stat-n {
        font-size: 1.4rem;
    }
}

/* ── ANCHOR STRIP ───────────────────────────────────────── */
.anchor {
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 65px;
    z-index: 99;
}

.anchor-in {
    display: flex;
    gap: 4px;
    padding: 8px 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.anchor-in::-webkit-scrollbar {
    display: none;
}

.anchor-btn {
    flex-shrink: 0;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--t2);
    white-space: nowrap;
    transition: .2s;
    border: none;
    background: transparent;
    cursor: pointer;
}

.anchor-btn.active {
    border-bottom: 1px solid var(--accent);
    background-color: rgba(249, 115, 22, 0.08);
    color: var(--accent);
}

.anchor-btn:hover {
    background: var(--glass) !important;
    color: var(--t1) !important;
}

/* ── OVERVIEW CARDS ─────────────────────────────────────── */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
    margin-top: 44px;
}

.ov-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 26px;
    transition: all .3s var(--ease);
}

.ov-card:hover {
    transform: translateY(-5px);
    border-color: var(--bh);
    box-shadow: var(--sh2);
}

.ov-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.ov-title {
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 7px;
}

.ov-desc {
    font-size: 13px;
    color: var(--t2);
    line-height: 1.6;
    margin-bottom: 14px;
}

.ov-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* ── SKILL DIAGRAM ─────────────────────────────────────── */
.diag-wrap {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 36px 28px;
    margin-top: 44px;
    overflow: auto;
}

.diag-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: nowrap;
    padding: 6px 0;
    min-width: fit-content;
}

.diag-row+.diag-row {
    margin-top: 10px;
}

.diag-mid {
    display: flex;
    justify-content: center;
    padding: 4px 0;
    font-size: 1.3rem;
    color: var(--accent-2);
}

.dnode {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 14px 16px;
    text-align: center;
    min-width: 120px;
    max-width: 140px;
    transition: all .3s var(--ease);
}

.dnode:hover {
    transform: translateY(-3px);
    border-color: var(--bh);
    box-shadow: var(--sh2);
}

.dnode.hi {
    border-color: var(--accent);
    background: rgba(249, 115, 22, .07);
}

.dnode-ic {
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.dnode-lb {
    font-family: var(--font-h);
    font-size: .78rem;
    font-weight: 700;
    color: var(--t1);
}

.dnode-sb {
    font-size: 10px;
    color: var(--t3);
    margin-top: 2px;
}

.dbar {
    height: 5px;
    border-radius: 999px;
    background: var(--bg3);
    margin-top: 7px;
    overflow: hidden;
}

.dbar-f {
    height: 100%;
    border-radius: 999px;
}

.darr {
    font-size: 1.2rem;
    color: #22c55e;
    flex-shrink: 0;
    padding: 0 2px;
}

@media(max-width:640px) {
    .dnode {
        min-width: 90px;
        padding: 10px;
    }

    .dnode-lb {
        font-size: .7rem;
    }

    .darr {
        font-size: 1rem;
    }
}

/* ── TIMELINE ───────────────────────────────────────────── */
.timeline {
    position: relative;
    margin-top: 56px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #22c55e, #06b6d4, #f97316, #a855f7);
    transform: translateX(-50%);
    border-radius: 2px;
}

.t-step {
    display: grid;
    grid-template-columns: 1fr 72px 1fr;
    align-items: start;
    margin-bottom: 52px;
}

.t-step:nth-child(odd) .t-card {
    grid-column: 1;
    text-align: right;
    padding-right: 36px;
}

.t-step:nth-child(odd) .t-node {
    grid-column: 2;
}

.t-step:nth-child(odd) .t-side {
    grid-column: 3;
    padding-left: 36px;
}

.t-step:nth-child(even) .t-card {
    grid-column: 3;
    text-align: left;
    padding-left: 36px;
    order: 3;
}

.t-step:nth-child(even) .t-node {
    grid-column: 2;
    order: 2;
}

.t-step:nth-child(even) .t-side {
    grid-column: 1;
    text-align: right;
    padding-right: 36px;
    order: 1;
}

.t-node {
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.t-node-dot {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 1;
    position: relative;
    box-shadow: 0 0 0 4px var(--bg), 0 0 0 6px var(--border);
    transition: all .3s var(--ease);
}

.t-step:hover .t-node-dot {
    box-shadow: 0 0 0 4px var(--bg), 0 0 0 6px #22c55e, 0 0 20px rgba(34, 197, 94, .3);
}

.t-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 22px;
    transition: all .3s var(--ease);
}

.t-card:hover {
    border-color: var(--bh);
    box-shadow: var(--sh2);
}

.t-phase {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #22c55e;
    margin-bottom: 6px;
}

.t-title {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 7px;
}

.t-desc {
    font-size: 13px;
    color: var(--t2);
    line-height: 1.6;
    margin-bottom: 12px;
}

.t-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: inherit;
}

.t-side {
    padding-top: 16px;
    font-size: 13px;
    color: var(--t3);
}

.t-side-ttl {
    font-weight: 700;
    color: var(--t2);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 5px;
}

.t-side li {
    padding: 3px 0;
}

.t-side li::before {
    content: "→ ";
    color: #22c55e;
    font-size: 11px;
}

@media(max-width:720px) {
    .timeline::before {
        left: 26px;
    }

    .t-step {
        grid-template-columns: 52px 1fr;
        margin-bottom: 36px;
    }

    .t-step:nth-child(odd) .t-card,
    .t-step:nth-child(even) .t-card {
        grid-column: 2;
        text-align: left;
        padding-left: 18px;
        padding-right: 0;
        order: 2;
    }

    .t-step:nth-child(odd) .t-node,
    .t-step:nth-child(even) .t-node {
        grid-column: 1;
        order: 1;
        padding-top: 6px;
    }

    .t-step:nth-child(odd) .t-side,
    .t-step:nth-child(even) .t-side {
        grid-column: 2;
        text-align: left;
        padding-left: 18px;
        padding-right: 0;
        order: 3;
    }

    .t-tags {
        justify-content: flex-start !important;
    }
}

/* ── OTHER PATHS ────────────────────────────────────────── */
.op-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 22px;
    margin-top: 44px;
}

.op-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 26px;
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
}

.op-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.op-card.c-o::before {
    background: linear-gradient(90deg, #f97316, #ec4899);
}

.op-card.c-c::before {
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
}

.op-card.c-p::before {
    background: linear-gradient(90deg, #a855f7, #ec4899);
}

.op-card.c-g::before {
    background: linear-gradient(90deg, #22c55e, #06b6d4);
}

.op-card.c-y::before {
    background: linear-gradient(90deg, #eab308, #f97316);
}

.op-card:hover {
    transform: translateY(-6px);
    border-color: var(--bh);
    box-shadow: var(--sh3);
}

.op-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.op-icon {
    font-size: 2.2rem;
}

.op-lv {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--bg3);
    color: var(--t3);
}

.op-title {
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 7px;
}

.op-desc {
    font-size: 13px;
    color: var(--t2);
    line-height: 1.6;
    margin-bottom: 14px;
}

.op-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.op-meta {
    font-size: 12px;
    color: var(--t3);
}

.op-btn {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: .2s;
    padding: 0;
}

.op-btn:hover {
    gap: 8px;
}

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
    border-radius: var(--r-xl);
    overflow: hidden;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #f97316 0%, #ec4899 50%, #a855f7 100%);
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, .15), transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-h);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.cta-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 28px;
    line-height: 1.7;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

@media(max-width:600px) {
    .cta-banner {
        padding: 40px 24px;
    }
}

/* ── MODAL ──────────────────────────────────────────────── */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    transform: translateY(24px) scale(.97);
    transition: transform .4s var(--spring);
}

.overlay.open .modal {
    transform: none;
}

.modal-x {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--t2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: .2s;
}

.modal-x:hover {
    border-color: var(--bh);
    color: var(--t1);
}

.m-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    text-align: center;
}

.m-title {
    font-family: var(--font-h);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-align: center;
}

.m-sub {
    font-size: 13px;
    color: var(--t2);
    text-align: center;
    margin-bottom: 22px;
    line-height: 1.6;
}

.fg {
    margin-bottom: 14px;
}

.fl {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--t2);
    margin-bottom: 5px;
}

.fi-inp {
    width: 100%;
    padding: 12px 14px;
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    background: var(--bg3);
    color: var(--t1);
    font-size: 14px;
    outline: none;
    transition: .25s;
    font-family: var(--font-b);
}

.fi-inp:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, .14);
}

.m-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, #f97316, #ec4899);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: .25s;
    margin-top: 6px;
    font-family: var(--font-h);
}

.m-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(249, 115, 22, 0.45);
}

.m-note {
    font-size: 12px;
    color: var(--t3);
    text-align: center;
    margin-top: 12px;
}

.m-success {
    display: none;
    text-align: center;
}

.m-success.show {
    display: block;
}

.suc-ic {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.suc-title {
    font-family: var(--font-h);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.suc-sub {
    font-size: 13px;
    color: var(--t2);
    margin-bottom: 20px;
    line-height: 1.6;
}


/* ── MODAL STEPS ────────────────────────────────────────── */
/* Shared modal step entry animation */
#mStep_form,
#mStep_sending,
#mStep_success {
    animation: stepFadeUp .35s var(--ease-out) both;
}

@keyframes stepFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Progress bar */
.m-progress-bar {
    height: 6px;
    background: var(--bg3);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 28px;
}

.m-progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, #22c55e, #06b6d4, #3b82f6);
    background-size: 200% 100%;
    animation: gradShift 2s linear infinite;
    transition: width .4s ease;
}

/* Sending step spinner emoji */
@keyframes spinPop {
    from {
        transform: rotate(-15deg) scale(0.9);
    }

    to {
        transform: rotate(15deg) scale(1.1);
    }
}

/* Success checkmark circle */
.suc-check {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    animation: popIn .5s var(--ease-spring) both;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .4);
    animation: popIn .5s var(--ease-spring) both, glowPulse 2s ease 1s infinite;
}

@keyframes popIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, .35);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(34, 197, 94, 0);
    }
}

/* Confetti burst emoji */
.suc-confetti {
    font-size: 2.8rem;
    display: block;
    text-align: center;
    margin-bottom: 12px;
    animation: confettiBurst .6s var(--ease-spring) both;
}

@keyframes confettiBurst {
    0% {
        transform: scale(0) rotate(-30deg);
        opacity: 0;
    }

    60% {
        transform: scale(1.25) rotate(10deg);
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Success title & sub */
.suc-title {
    font-family: var(--font-h);
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 8px;
    animation: stepFadeUp .4s .1s var(--ease-out) both;
}

.suc-sub {
    font-size: 13px;
    color: var(--t2);
    line-height: 1.65;
    margin-bottom: 18px;
    animation: stepFadeUp .4s .18s var(--ease-out) both;
}

/* Info box inside success */
.suc-info-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgb(249, 115, 22, .2);
    border-radius: var(--r-md);
    padding: 12px 14px;
    font-size: 13px;
    color: var(--t2);
    text-align: left;
    margin-bottom: 20px;
    animation: stepFadeUp .4s .26s var(--ease-out) both;
}

.suc-info-box span:first-child {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Close text button below download */
.m-close-btn {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: transparent;
    color: var(--t2);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: .2s;
    animation: stepFadeUp .4s .42s var(--ease-out) both;
}

.m-close-btn:hover {
    border-color: var(--bh);
    color: var(--t1);
}

/* Inline validation error */
#mError {
    animation: stepFadeUp .25s var(--ease-out) both;
}