/* ===========================================
   BASE OVERRIDES
   =========================================== */

.page-home.site-body {
    background: #f4f5f8;
    overflow-x: clip;
}

.page-home .site-backdrop,
.page-home .site-footer {
    display: none;
}

.page-home .site-main {
    padding: 0;
}

.page-home .site-shell {
    width: 100%;
    max-width: none;
    padding: 0;
}

.page-home #phpdebugbar,
.page-home .phpdebugbar {
    display: none !important;
}

/* ===========================================
   DESIGN TOKENS
   =========================================== */

.page-home {
    --mp-bg: #f4f5f8;
    --mp-bg-2: #eaecf2;
    --mp-surface: #ffffff;
    --mp-surface-2: #f0f1f6;
    --mp-navy: #16234e;
    --mp-navy-light: #1e2f66;
    --mp-lime: #afcd36;
    --mp-lime-dark: #8fad18;
    --mp-lime-glow: rgba(175, 205, 54, 0.12);
    --mp-lime-border: rgba(175, 205, 54, 0.32);
    --mp-text: #111827;
    --mp-text-muted: rgba(17, 24, 39, 0.56);
    --mp-text-dim: rgba(17, 24, 39, 0.36);
    --mp-border: rgba(17, 24, 39, 0.09);
    --mp-border-strong: rgba(17, 24, 39, 0.16);
    --mp-shadow: 0 4px 6px rgba(17, 24, 39, 0.04), 0 16px 48px rgba(17, 24, 39, 0.08);
    --mp-shadow-lg: 0 24px 64px rgba(17, 24, 39, 0.14);
    --mp-gutter: clamp(20px, 4vw, 56px);
}

/* ===========================================
   LAYOUT
   =========================================== */

.mp-container {
    width: min(1280px, calc(100% - (var(--mp-gutter) * 2)));
    margin-inline: auto;
}

/* ===========================================
   TOPBAR
   =========================================== */

.mp-topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--mp-border);
}

.mp-topbar__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 72px;
}

.mp-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.mp-brand img {
    height: 72px;
    width: auto;
    display: block;
}

.mp-topbar__drawer {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
}

.mp-nav {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.mp-nav a {
    padding: 8px 14px;
    color: var(--mp-text-muted);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.94rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: color 160ms ease, background 160ms ease;
}

.mp-nav a:hover {
    color: var(--mp-text);
    background: rgba(255, 255, 255, 0.06);
}

.mp-topbar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mp-link {
    color: var(--mp-text-muted);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.94rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 160ms ease;
}

.mp-link:hover {
    color: var(--mp-text);
}

/* Mobile toggle */
.mp-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: var(--mp-surface);
    border: 1px solid var(--mp-border);
    border-radius: 10px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.mp-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--mp-navy);
    border-radius: 2px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.mp-topbar.is-menu-open .mp-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mp-topbar.is-menu-open .mp-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.mp-topbar.is-menu-open .mp-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===========================================
   BUTTONS
   =========================================== */

.mp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 46px;
    padding: 0 22px;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
    white-space: nowrap;
}

.mp-btn--lg {
    height: 56px;
    padding: 0 30px;
    font-size: 1rem;
    border-radius: 14px;
}

.mp-btn--lime {
    background: var(--mp-lime);
    color: #0d1100;
}

.mp-btn--lime:hover {
    background: #c0de40;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(175, 205, 54, 0.3);
}

.mp-btn--ghost {
    background: transparent;
    color: var(--mp-navy);
    border: 1px solid rgba(22, 35, 78, 0.2);
}

.mp-btn--ghost:hover {
    border-color: rgba(22, 35, 78, 0.38);
    background: rgba(22, 35, 78, 0.04);
}

.mp-btn--dark {
    background: #0d1100;
    color: var(--mp-lime);
}

.mp-btn--dark:hover {
    background: #151e00;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

/* ===========================================
   HERO
   =========================================== */

.mp-hero {
    position: relative;
    padding-block: 88px 80px;
    overflow: hidden;
    background-image: radial-gradient(rgba(175, 205, 54, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
}

/* Fade edges of dot grid */
.mp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, var(--mp-bg) 0%, transparent 10%, transparent 90%, var(--mp-bg) 100%),
        linear-gradient(to bottom, var(--mp-bg) 0%, transparent 16%, transparent 84%, var(--mp-bg) 100%);
    pointer-events: none;
}

/* Ambient glow right */
.mp-hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(175, 205, 54, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.mp-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(40px, 6vw, 88px);
}

.mp-hero__copy {
    display: grid;
    gap: 28px;
}

/* Tag pill */
.mp-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    height: 34px;
    padding: 0 16px;
    background: var(--mp-lime-glow);
    border: 1px solid var(--mp-lime-border);
    border-radius: 999px;
    color: var(--mp-lime);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mp-tag::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mp-lime);
    box-shadow: 0 0 8px var(--mp-lime);
    animation: mp-blink 2.4s ease-in-out infinite;
}

@keyframes mp-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.mp-hero__copy h1 {
    margin: 0;
    font-family: 'Fraunces', serif;
    font-size: clamp(3.6rem, 5.8vw, 5.8rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--mp-text);
}

.mp-hero__copy h1 em {
    font-style: normal;
    color: var(--mp-lime);
}

.mp-hero__copy > p {
    margin: 0;
    max-width: 36ch;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    line-height: 1.74;
    color: var(--mp-text-muted);
}

.mp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mp-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 4px;
}

.mp-hero__pills span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--mp-text-muted);
}

.mp-hero__pills span::before {
    content: '✓';
    color: var(--mp-lime);
    font-size: 0.8rem;
    font-weight: 800;
}

/* Hero entrance animations */
@keyframes mp-slide-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes mp-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

.mp-tag         { animation: mp-slide-up 500ms ease  80ms both; }
.mp-hero__copy h1   { animation: mp-slide-up 600ms ease 180ms both; }
.mp-hero__copy > p  { animation: mp-slide-up 500ms ease 320ms both; }
.mp-hero__actions   { animation: mp-slide-up 500ms ease 420ms both; }
.mp-hero__pills     { animation: mp-slide-up 500ms ease 500ms both; }

/* --- Dashboard visual --- */

.mp-hero__visual {
    position: relative;
    /* Padding keeps absolute float-badges inside the grid cell */
    padding: 22px 28px 8px 30px;
    will-change: transform;
    animation:
        mp-slide-up 700ms ease 260ms both,
        mp-float    6s   ease-in-out 1400ms infinite;
}

/* Lime glow behind dashboard */
.mp-hero__visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(175, 205, 54, 0.16) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.mp-dashboard {
    position: relative;
    background: #0f1428;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--mp-shadow-lg);
}

/* Lime accent top stripe */
.mp-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--mp-lime) 40%, var(--mp-lime) 60%, transparent 100%);
}

/* --- Dashboard dark-theme scoped overrides --- */
.mp-dashboard .mp-dashboard__chrome,
.mp-dashboard .mp-dashboard__balance,
.mp-dashboard .mp-dashboard__channels,
.mp-dashboard .mp-dashboard__txlist,
.mp-dashboard .mp-dashboard__footer {
    border-color: rgba(255, 255, 255, 0.07);
}

.mp-dashboard .mp-dashboard__sep {
    background: rgba(255, 255, 255, 0.07);
}

.mp-dashboard .mp-dashboard__chrome > span { color: rgba(238, 240, 248, 0.34); }
.mp-dashboard .mp-dashboard__balance > p   { color: rgba(238, 240, 248, 0.36); }
.mp-dashboard .mp-dashboard__balance > strong { color: #eef0f8; }
.mp-dashboard .mp-dashboard__channels > div > p { color: rgba(238, 240, 248, 0.36); }
.mp-dashboard .mp-dashboard__channels > div > strong { color: #eef0f8; }
.mp-dashboard .mp-dashboard__txlist > p { color: rgba(238, 240, 248, 0.36); }
.mp-dashboard .mp-dashboard__txlist li > span:nth-child(2) { color: rgba(238, 240, 248, 0.56); }
.mp-dashboard [data-type="out"] > span:last-child { color: rgba(238, 240, 248, 0.5); }
.mp-dashboard [data-type="out"] .mp-tx-icon::before { color: rgba(238, 240, 248, 0.36); }
/* --- end dark overrides --- */

.mp-dashboard__chrome {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: rgba(255, 255, 255, 0.07);
}

.mp-chrome-dots {
    display: flex;
    gap: 6px;
}

.mp-chrome-dots i {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mp-chrome-dots i:nth-child(1) { background: #ff6058; }
.mp-chrome-dots i:nth-child(2) { background: #ffbd2e; }
.mp-chrome-dots i:nth-child(3) { background: #28ca41; }

.mp-dashboard__chrome > span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--mp-text-dim);
}

.mp-dashboard__balance {
    padding: 22px 18px 18px;
    border-bottom: 1px solid var(--mp-border);
}

.mp-dashboard__balance > p {
    margin: 0 0 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--mp-text-dim);
}

.mp-dashboard__balance > strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--mp-text);
    line-height: 1;
}

.mp-dashboard__balance > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--mp-lime);
}

.mp-dashboard__balance > span::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mp-lime);
    box-shadow: 0 0 6px var(--mp-lime);
    animation: mp-blink 2s ease-in-out infinite;
}

.mp-dashboard__channels {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid var(--mp-border);
}

.mp-dashboard__channels > div {
    display: grid;
    gap: 4px;
}

.mp-dashboard__channels > div > p {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--mp-text-dim);
}

.mp-dashboard__channels > div > strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--mp-text);
}

.mp-dashboard__sep {
    width: 1px;
    height: 34px;
    background: var(--mp-border);
    justify-self: center;
}

.mp-dashboard__txlist {
    padding: 14px 18px;
    border-bottom: 1px solid var(--mp-border);
}

.mp-dashboard__txlist > p {
    margin: 0 0 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--mp-text-dim);
}

.mp-dashboard__txlist ul {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mp-dashboard__txlist li {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 10px;
}

.mp-tx-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    position: relative;
    flex-shrink: 0;
}

[data-type="in"] .mp-tx-icon {
    background: rgba(175, 205, 54, 0.12);
}

[data-type="in"] .mp-tx-icon::before {
    content: '↑';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--mp-lime);
}

[data-type="out"] .mp-tx-icon {
    background: rgba(255, 255, 255, 0.06);
}

[data-type="out"] .mp-tx-icon::before {
    content: '↓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--mp-text-dim);
}

.mp-dashboard__txlist li > span:nth-child(2) {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--mp-text-muted);
}

.mp-dashboard__txlist li > span:last-child {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
}

[data-type="in"] > span:last-child { color: var(--mp-lime); }
[data-type="out"] > span:last-child { color: var(--mp-text-muted); }

.mp-dashboard__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    transition: background 160ms ease;
    cursor: default;
}

.mp-dashboard__footer span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--mp-lime);
}

/* Floating badges */
.mp-float-badge {
    position: absolute;
    padding: 12px 16px;
    background: var(--mp-surface-2);
    border: 1px solid var(--mp-border);
    border-radius: 14px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.mp-float-badge > span {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--mp-text-dim);
}

.mp-float-badge > strong {
    display: block;
    margin-top: 4px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.22rem;
    font-weight: 800;
    color: var(--mp-lime);
    letter-spacing: -0.02em;
}

.mp-float-badge--d1 {
    top: -18px;
    right: -22px;
    background: var(--mp-surface);
    border-color: var(--mp-lime-border);
    box-shadow: 0 8px 28px rgba(17, 24, 39, 0.14);
}

.mp-float-badge--repasse {
    bottom: 28px;
    left: -24px;
    background: var(--mp-surface);
    border-color: var(--mp-border);
}

.mp-float-badge--repasse > span {
    color: var(--mp-text-dim);
}

.mp-float-badge--repasse > strong {
    color: var(--mp-navy);
}

/* ===========================================
   PROOF STRIP (marquee ticker)
   =========================================== */

@keyframes mp-ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.mp-proof-strip {
    background: var(--mp-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    /* Fade left and right edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.mp-proof-tape {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-block: 20px;
    white-space: nowrap;
    width: max-content;
    animation: mp-ticker 32s linear infinite;
}

.mp-proof-tape span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(238, 240, 248, 0.62);
    letter-spacing: 0.01em;
    flex-shrink: 0;
}

.mp-proof-tape i {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--mp-lime);
    opacity: 0.6;
    flex-shrink: 0;
}

/* ===========================================
   FEATURES
   =========================================== */

.mp-features {
    padding-block: 88px;
    border-top: 1px solid var(--mp-border);
}

.mp-section-head {
    display: grid;
    gap: 16px;
    margin-bottom: 48px;
}

.mp-section-head > span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mp-lime);
}

.mp-section-head > span::before {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    background: var(--mp-lime);
    border-radius: 2px;
}

.mp-section-head h2 {
    margin: 0;
    max-width: 22ch;
    font-family: 'Fraunces', serif;
    font-size: clamp(2.2rem, 3.4vw, 3.4rem);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.04em;
    color: var(--mp-text);
}

.mp-features__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.mp-feature-card {
    padding: 32px;
    background: var(--mp-surface);
    border: 1px solid var(--mp-border);
    border-radius: 18px;
    transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.mp-feature-card:hover {
    border-color: var(--mp-lime-border);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(13, 17, 23, 0.1);
}

.mp-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    background: var(--mp-lime-glow);
    border: 1px solid var(--mp-lime-border);
    border-radius: 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--mp-lime);
}

.mp-feature-card h3 {
    margin: 0 0 12px;
    font-family: 'Fraunces', serif;
    font-size: 1.48rem;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--mp-text);
}

.mp-feature-card p {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.96rem;
    line-height: 1.7;
    color: var(--mp-text-muted);
}

/* ===========================================
   HOW IT WORKS
   =========================================== */

.mp-how {
    padding-block: 88px;
    border-top: 1px solid var(--mp-border);
}

.mp-how__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(40px, 6vw, 88px);
}

.mp-how__left .mp-section-head {
    margin-bottom: 40px;
}

.mp-steps {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mp-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 20px;
    padding-block: 28px;
    border-bottom: 1px solid var(--mp-border);
}

.mp-step:first-child { padding-top: 0; }
.mp-step:last-child { border-bottom: none; padding-bottom: 0; }

.mp-step__num {
    padding-top: 3px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--mp-lime);
}

.mp-step__body h3 {
    margin: 0 0 10px;
    font-family: 'Fraunces', serif;
    font-size: 1.28rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--mp-text);
}

.mp-step__body p {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.94rem;
    line-height: 1.7;
    color: var(--mp-text-muted);
}

/* Weekly chart */
.mp-how__chart {
    position: sticky;
    top: 92px;
}

.mp-chart {
    position: relative;
    background: #0f1428;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--mp-shadow-lg);
}

.mp-chart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--mp-lime) 40%, var(--mp-lime) 60%, transparent 100%);
    pointer-events: none;
}

.mp-chart__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 22px 22px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mp-chart__header p {
    margin: 0 0 6px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(238, 240, 248, 0.36);
}

.mp-chart__header strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.72rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #eef0f8;
    line-height: 1;
}

.mp-chart__badge {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 10px;
    background: rgba(175, 205, 54, 0.1);
    border: 1px solid rgba(175, 205, 54, 0.28);
    border-radius: 999px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--mp-lime);
    flex-shrink: 0;
}

.mp-chart__bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 110px;
    margin-top: 16px;
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mp-chart__bar {
    flex: 1;
    height: 0;
    background: rgba(175, 205, 54, 0.22);
    border-radius: 5px 5px 0 0;
    transition: height 700ms cubic-bezier(0.34, 1.3, 0.64, 1) var(--bar-delay, 0ms);
}

.mp-how__chart.is-visible .mp-chart__bar {
    height: var(--h, 50%);
}

.mp-chart__bar--peak {
    background: var(--mp-lime);
    box-shadow: 0 0 20px rgba(175, 205, 54, 0.4);
}

.mp-chart__bar--dim {
    background: rgba(175, 205, 54, 0.1);
}

.mp-chart__xlabels {
    display: flex;
    gap: 6px;
    padding: 8px 22px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mp-chart__xlabels span {
    flex: 1;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(238, 240, 248, 0.28);
}

.mp-chart__footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 14px 22px;
}

.mp-chart__stat {
    display: grid;
    gap: 4px;
}

.mp-chart__stat span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(238, 240, 248, 0.36);
}

.mp-chart__stat strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #eef0f8;
}

.mp-chart__sep {
    width: 1px;
    height: 34px;
    background: rgba(255, 255, 255, 0.07);
    justify-self: center;
}

/* ===========================================
   AUDIENCE / VOLUME
   =========================================== */

.mp-volume {
    padding-block: 88px;
    border-top: 1px solid var(--mp-border);
}

.mp-volume__lead {
    max-width: 64ch;
    margin: 24px 0 40px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.06rem;
    line-height: 1.74;
    color: var(--mp-text-muted);
}

.mp-volume__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.mp-vstat {
    display: grid;
    gap: 8px;
    padding: 28px 24px;
    background: var(--mp-surface);
    border: 1px solid var(--mp-border);
    border-radius: 16px;
    transition: border-color 200ms ease, transform 200ms ease;
}

.mp-vstat:hover {
    border-color: var(--mp-lime-border);
    transform: translateY(-2px);
}

.mp-vstat strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.52rem;
    font-weight: 800;
    color: var(--mp-navy);
    letter-spacing: -0.03em;
    line-height: 1;
}

.mp-vstat span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--mp-text-muted);
}

/* ===========================================
   CONTACT FORM
   =========================================== */

.mp-contact {
    padding-block: 88px;
    border-top: 1px solid var(--mp-border);
}

.mp-contact__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 28px;
    align-items: start;
}

.mp-contact__intro {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 20px;
    padding: 36px;
    background: var(--mp-surface);
    border: 1px solid var(--mp-border);
    border-radius: 20px;
}

.mp-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mp-lime);
}

.mp-label::before {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    background: var(--mp-lime);
    border-radius: 2px;
}

.mp-contact__intro h2 {
    margin: 0;
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 2.8vw, 2.8rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--mp-text);
}

.mp-contact__intro > p {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--mp-text-muted);
}

.mp-checklist {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mp-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--mp-text-muted);
}

.mp-checklist li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: var(--mp-lime-glow);
    border: 1px solid var(--mp-lime-border);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.5l2.5 2.5 4.5-5' stroke='%23afcd36' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.mp-contact__panel {
    padding: 36px;
    background: var(--mp-surface);
    border: 1px solid var(--mp-border);
    border-radius: 20px;
}

/* Alerts */
.mp-alert {
    margin-bottom: 22px;
    padding: 16px 20px;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.94rem;
    line-height: 1.62;
}

.mp-alert--success {
    background: rgba(175, 205, 54, 0.08);
    border: 1px solid rgba(175, 205, 54, 0.22);
    color: var(--mp-lime);
}

.mp-alert--error {
    background: rgba(200, 40, 40, 0.05);
    border: 1px solid rgba(200, 40, 40, 0.14);
    color: #a02020;
}

.mp-alert strong { display: block; margin-bottom: 6px; }
.mp-alert ul { margin: 0; padding-left: 18px; }

/* Form */
.mp-form {
    display: grid;
    gap: 20px;
}

.mp-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.mp-field {
    display: grid;
    gap: 8px;
}

.mp-field--span-2 {
    grid-column: span 2;
}

.mp-field > span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--mp-text-dim);
}

.mp-field input,
.mp-field select {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    background: var(--mp-surface);
    border: 1px solid var(--mp-border);
    border-radius: 12px;
    font: 500 0.96rem 'Space Grotesk', sans-serif;
    color: var(--mp-text);
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.mp-field input::placeholder {
    color: var(--mp-text-dim);
}

.mp-field input:focus,
.mp-field select:focus {
    outline: none;
    border-color: rgba(175, 205, 54, 0.46);
    box-shadow: 0 0 0 3px rgba(175, 205, 54, 0.1);
}

.mp-field input[readonly] {
    opacity: 0.5;
}

.mp-field select {
    padding-right: 40px;
    cursor: pointer;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(13, 17, 23, 0.4) 50%),
        linear-gradient(135deg, rgba(13, 17, 23, 0.4) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 2px),
        calc(100% - 12px) calc(50% - 2px);
    background-size: 6px 6px;
    background-repeat: no-repeat;
}

.mp-field__hint {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    color: var(--mp-text-dim);
}

.mp-field__hint:empty { display: none; }
.mp-field__hint[data-tone="success"] { color: var(--mp-lime); }
.mp-field__hint[data-tone="error"] { color: #a02020; }

.mp-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--mp-border);
}

.mp-form__footer > p {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    color: var(--mp-text-dim);
}

/* ===========================================
   FOOTER
   =========================================== */

.mp-footer {
    position: relative;
    background: #0c1530;
}

/* Lime gradient top stripe — same visual language as dashboard / chart cards */
.mp-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--mp-lime) 30%, var(--mp-lime) 70%, transparent 100%);
}

.mp-footer__top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(32px, 5vw, 72px);
    align-items: start;
    padding-block: 60px 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Logo white on dark footer */
.mp-footer__logo img {
    height: 34px;
    filter: brightness(0) invert(1);
    opacity: 0.88;
}

.mp-footer__brand {
    display: grid;
    gap: 20px;
    max-width: 380px;
}

.mp-footer__brand p {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.96rem;
    line-height: 1.74;
    color: rgba(238, 240, 248, 0.42);
}

.mp-footer__links {
    display: flex;
    gap: 52px;
}

.mp-footer__col {
    display: grid;
    gap: 12px;
    align-content: start;
}

.mp-footer__col > span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mp-lime);
    margin-bottom: 6px;
}

.mp-footer__col a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(238, 240, 248, 0.48);
    text-decoration: none;
    transition: color 160ms ease;
}

.mp-footer__col a:hover {
    color: rgba(238, 240, 248, 0.9);
}

.mp-footer__bar {
    padding-block: 22px;
}

.mp-footer__bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.mp-footer__bar p {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    color: rgba(238, 240, 248, 0.24);
}

/* ===========================================
   SCROLL ANIMATIONS
   =========================================== */

.mp-section-head,
.mp-feature-card,
.mp-step,
.mp-vstat,
.mp-how__chart,
.mp-contact__intro,
.mp-contact__panel {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 600ms ease, transform 600ms ease;
    transition-delay: var(--delay, 0ms);
}

.mp-section-head.is-visible,
.mp-feature-card.is-visible,
.mp-step.is-visible,
.mp-vstat.is-visible,
.mp-how__chart.is-visible,
.mp-contact__intro.is-visible,
.mp-contact__panel.is-visible {
    opacity: 1;
    transform: none;
}

/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 1100px) {
    .mp-hero__inner,
    .mp-how__inner,
    .mp-contact__inner {
        grid-template-columns: 1fr;
    }

    .mp-contact__intro {
        position: static;
    }

    .mp-hero__visual {
        max-width: 540px;
        margin-inline: auto;
    }

    .mp-how__chart {
        position: static;
        max-width: 540px;
        margin-inline: auto;
    }
}

@media (max-width: 900px) {
    .mp-features__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .mp-topbar__inner {
        grid-template-columns: 1fr auto;
    }

    .mp-topbar__drawer {
        position: absolute;
        top: calc(100% + 8px);
        left: var(--mp-gutter);
        right: var(--mp-gutter);
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--mp-border);
        border-radius: 16px;
        box-shadow: 0 24px 56px rgba(17, 24, 39, 0.12);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .mp-topbar.is-menu-open .mp-topbar__drawer {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mp-nav {
        flex-direction: column;
        gap: 4px;
    }

    .mp-nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .mp-topbar__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .mp-topbar__actions .mp-btn,
    .mp-topbar__actions .mp-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mp-menu-toggle {
        display: flex;
    }
}

@media (max-width: 680px) {
    .mp-hero {
        padding-block: 52px 44px;
    }

    .mp-features,
    .mp-how,
    .mp-volume,
    .mp-contact {
        padding-block: 56px;
    }

    .mp-volume__stats {
        grid-template-columns: 1fr;
    }

    .mp-form__grid {
        grid-template-columns: 1fr;
    }

    .mp-field--span-2 {
        grid-column: span 1;
    }

    .mp-form__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .mp-form__footer .mp-btn {
        width: 100%;
    }

    .mp-float-badge {
        display: none;
    }

    .mp-contact__intro,
    .mp-contact__panel {
        padding: 24px;
    }

    .mp-footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-block: 44px 36px;
    }

    .mp-footer__brand {
        max-width: none;
    }

    .mp-footer__links {
        gap: 32px;
    }

    .mp-footer__bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .mp-section-head,
    .mp-feature-card,
    .mp-step,
    .mp-vstat,
    .mp-how__chart,
    .mp-contact__intro,
    .mp-contact__panel {
        opacity: 1;
        transform: none;
    }

    .mp-how__chart .mp-chart__bar {
        height: var(--h, 50%);
    }

    .mp-proof-tape {
        animation: none;
    }
}
