/* Mindova Platform V2 — shared visual language
   Frozen references: landing, auth, dashboards and workspaces designed July 2026.

   CANONICAL BREAKPOINT SCALE — use these exact values in every v2 file.
   These files are static (not run through Vite/PostCSS), so CSS custom
   properties cannot be referenced inside @media conditions — this is a
   browser limitation, not a tooling gap. Treat the numbers below as the
   single source of truth instead:
     480px  - small-phone tier (tighten decorative/dense elements further)
     640px  - mobile tier (stack to a single column)
     760px  - tablet tier (stack a two-column layout / hide a secondary panel)
     1024px - desktop-compact tier (hide a decorative side panel, switch to
              the compact app shell)
   Previously this scale was 14+ different hand-picked values across the
   v2 files (430/520/620/640/680/720/760/850/900/1024/1050/1060/1150/1220)
   — consolidated here so related pages reflow at the same point.

   THEMING: every --mv-* token below is defined twice - once under :root
   (light, the default) and once under html.dark (dark - unchanged from
   before this file supported light mode at all, so dark-mode rendering
   stays pixel-identical). Rules throughout this file read the tokens
   rather than hardcoding a color, so both themes stay in sync from one
   edit. The one deliberate exception is the .mv-window product-mockup
   "device" (see the dedicated comment near .mv-product-stage) - it stays
   visually dark in both themes on purpose. */

:root {
    --mv-bg: #f4f6fb;
    --mv-bg-deep: #e9edf6;
    --mv-surface: #ffffff;
    --mv-card: #ffffff;
    --mv-card-soft: rgba(255, 255, 255, 0.86);
    --mv-blue: #3d6fe0;
    --mv-purple: #6a4fe0;
    --mv-ai: #0f9d82;
    --mv-success: #0f9d6e;
    --mv-warning: #b9770e;
    --mv-danger: #d6365f;
    --mv-text: #10192b;
    --mv-muted: #4c5b73;
    --mv-dim: #7d8ba0;
    --mv-border: rgba(16, 25, 43, 0.09);
    --mv-border-strong: rgba(16, 25, 43, 0.16);
    --mv-shadow: 0 18px 50px rgba(16, 25, 43, 0.1);
    --mv-shadow-lg: 0 30px 90px rgba(16, 25, 43, 0.14);
    --mv-radius-sm: 12px;
    --mv-radius: 18px;
    --mv-radius-lg: 28px;
    --mv-ease: cubic-bezier(0.16, 1, 0.3, 1);
    /* Type scale - same values regardless of theme, so no html.dark copy is
       needed. Every heading/body size in this file should read from one of
       these rather than an ad-hoc clamp(), so there's one place to retune. */
    --text-display: clamp(2.25rem, 4vw, 3.75rem);
    --text-h1: clamp(2rem, 3.2vw, 3rem);
    --text-h2: clamp(1.6rem, 2.6vw, 2.4rem);
    --text-h3: 1.375rem;
    --text-body-lg: clamp(1.05rem, 1.4vw, 1.2rem);
    --text-body: 1rem;
    --text-sm: 0.875rem;
    --text-eyebrow: 0.75rem;
    /* Headline gradient: on a light surface the dark-mode stops (pale
       blue/purple/teal, tuned for a near-black background) fall well below
       4.5:1. These are separate, deeper/more saturated stops so the brand
       hues survive and every stop reads clearly on white. */
    --mv-headline-from: #16213e;
    --mv-headline-via1: #2a54ad;
    --mv-headline-via2: #5636b8;
    --mv-headline-to: #0a7a58;
}

html.dark {
    --mv-bg: #08111f;
    --mv-bg-deep: #050b14;
    --mv-surface: #101b2c;
    --mv-card: #17263a;
    --mv-card-soft: rgba(23, 38, 58, 0.72);
    --mv-blue: #4f8cff;
    --mv-purple: #7a5cff;
    --mv-ai: #28e6c4;
    --mv-success: #3ddc97;
    --mv-warning: #ffb648;
    --mv-danger: #ff5a7a;
    --mv-text: #f7f9ff;
    --mv-muted: #a8b4c7;
    --mv-dim: #718198;
    --mv-border: rgba(255, 255, 255, 0.09);
    --mv-border-strong: rgba(255, 255, 255, 0.16);
    --mv-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    --mv-shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.34);
    --mv-headline-from: #dfeaff;
    --mv-headline-via1: #7eacff;
    --mv-headline-via2: #a18bff;
    --mv-headline-to: #64ead4;
}

.mv-page {
    min-height: 100vh;
    color: var(--mv-text);
    background:
        radial-gradient(circle at 14% 6%, rgba(61, 111, 224, 0.08), transparent 28rem),
        radial-gradient(circle at 82% 18%, rgba(106, 79, 224, 0.07), transparent 26rem),
        linear-gradient(180deg, var(--mv-bg-deep), var(--mv-bg));
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}
html.dark .mv-page {
    background:
        radial-gradient(circle at 14% 6%, rgba(79, 140, 255, 0.16), transparent 28rem),
        radial-gradient(circle at 82% 18%, rgba(122, 92, 255, 0.14), transparent 26rem),
        linear-gradient(180deg, var(--mv-bg-deep), var(--mv-bg));
}

.mv-page *, .mv-page *::before, .mv-page *::after { box-sizing: border-box; }
.mv-container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.mv-section { padding-block: 160px; position: relative; }
.mv-section-tight { padding-block: 96px; }
.mv-section-band { background: var(--mv-surface); border-block: 1px solid var(--mv-border); }
.mv-grid-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .1;
    background-image:
        linear-gradient(rgba(16,25,43,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,25,43,.08) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
}
html.dark .mv-grid-lines {
    opacity: .28;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
}

/* Nav is now the unified .site-nav component (see app.css) - shared,
   token-driven, identical container on every route. Rules that used to
   live here for the landing page's own floating-pill nav are gone. */

.mv-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding-inline: 18px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: var(--mv-text);
    font-size: 14px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    transition: transform .2s var(--mv-ease), border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.mv-btn:hover { transform: translateY(-2px); }
.mv-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--mv-blue), var(--mv-purple));
    box-shadow: 0 10px 28px rgba(79, 140, 255, .26);
}
.mv-btn-primary:hover { box-shadow: 0 16px 36px rgba(79, 140, 255, .34); }
.mv-btn-secondary { background: var(--mv-card-soft); border-color: var(--mv-border-strong); }
.mv-btn-secondary:hover { border-color: rgba(79,140,255,.4); }
html.dark .mv-btn-secondary { background: rgba(255,255,255,.045); }
html.dark .mv-btn-secondary:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.24); }
.mv-btn-ghost { color: var(--mv-muted); }
.mv-btn-ghost:hover { color: var(--mv-text); background: var(--mv-border); }

.mv-hero { min-height: 850px; display: flex; align-items: center; padding-block: 64px 92px; position: relative; }
/* The hero needs more room than the 1180px measure the rest of the page
   uses for text-heavy sections - at 1920px that cap was squeezing the copy
   column to ~510px (27% of viewport), forcing a 90px headline into a
   column meant for ~8 characters per line and pushing the subhead/CTAs
   below the fold. Widen the hero's own container only. */
.mv-hero > .mv-container { width: min(1600px, calc(100% - 80px)); }
.mv-hero-grid { display: grid; grid-template-columns: minmax(0, 10fr) minmax(560px, 11fr); align-items: center; gap: 72px; }
.mv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 11px;
    margin-block-end: 24px;
    border: 1px solid rgba(15, 157, 130, .3);
    border-radius: 999px;
    color: #0a6d5c;
    background: rgba(15, 157, 130, .08);
    font-size: var(--text-eyebrow);
    font-weight: 750;
    letter-spacing: .04em;
    text-transform: uppercase;
}
html.dark .mv-eyebrow { border-color: rgba(40, 230, 196, .25); color: #bff9ef; background: rgba(40, 230, 196, .07); }
.mv-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--mv-ai); box-shadow: 0 0 15px var(--mv-ai); }
.mv-display {
    margin: 0;
    max-width: 18ch;
    color: var(--mv-text);
    font-size: var(--text-display);
    line-height: 1.05;
    letter-spacing: -.02em;
    font-weight: 800;
    text-wrap: balance;
}
.mv-gradient-text {
    background: linear-gradient(110deg, var(--mv-headline-from) 0%, var(--mv-headline-via1) 37%, var(--mv-headline-via2) 68%, var(--mv-headline-to) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.mv-lead { max-width: 65ch; margin: 26px 0 0; color: var(--mv-muted); font-size: var(--text-body-lg); line-height: 1.75; }
.mv-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-block-start: 34px; }
.mv-hero-note { display: flex; flex-wrap: wrap; gap: 18px; margin-block-start: 26px; color: var(--mv-muted); font-size: 12px; }
.mv-hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.mv-hero-note i { width: 5px; height: 5px; border-radius: 50%; background: var(--mv-ai); }

/* ── Product mockup ("device") ──────────────────────────────────────────
   Deliberately stays visually dark in BOTH themes: it's a screenshot of
   the product's dark workspace, not a themeable UI surface. Its internal
   rgba(255,255,255,X) treatments are calibrated for its own dark
   background and are intentionally NOT run through the light/dark
   tokens above. In light mode it's framed like a physical device sitting
   on the page - stronger border + shadow - rather than rebuilt in light,
   which would double this task for no user benefit. */
.mv-product-stage { position: relative; min-height: 565px; }
.mv-product-glow { position: absolute; inset: 8% 2% 0; border-radius: 42%; background: radial-gradient(circle, rgba(79,140,255,.25), transparent 67%); filter: blur(35px); }
.mv-window {
    position: relative;
    z-index: 2;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 24px;
    background: linear-gradient(160deg, rgba(21,35,54,.94), rgba(8,17,31,.94));
    box-shadow: 0 24px 80px rgba(0,0,0,.34), inset 0 1px rgba(255,255,255,.07);
    transform: perspective(1200px) rotateY(-3deg) rotateX(1.5deg);
}
.mv-window {
    /* Extra outer presence so the always-dark device reads as an
       intentional frame rather than a leftover, specifically when it's
       sitting on the light page. */
    box-shadow: 0 24px 80px rgba(0,0,0,.34), inset 0 1px rgba(255,255,255,.07), 0 0 0 1px rgba(16,25,43,.06), var(--mv-shadow-lg);
}
html.dark .mv-window { box-shadow: 0 24px 80px rgba(0,0,0,.34), inset 0 1px rgba(255,255,255,.07); }
.mv-window-bar { height: 50px; border-bottom: 1px solid rgba(255,255,255,.09); display: flex; align-items: center; justify-content: space-between; padding-inline: 18px; background: rgba(255,255,255,.018); }
.mv-window-dots { display: flex; gap: 6px; }
.mv-window-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.18); }
.mv-window-title { color: #cfd9e9; font-size: 11px; font-weight: 700; letter-spacing: .02em; }
.mv-window-body { display: grid; grid-template-columns: 122px 1fr; min-height: 470px; }
.mv-mini-sidebar { padding: 20px 14px; border-inline-end: 1px solid rgba(255,255,255,.09); background: rgba(5,11,20,.42); }
.mv-mini-brand { height: 27px; margin-block-end: 26px; border-radius: 8px; background: linear-gradient(90deg, rgba(79,140,255,.32), rgba(122,92,255,.12)); }
.mv-mini-nav { display: grid; gap: 11px; }
.mv-mini-nav span { height: 27px; border-radius: 8px; background: rgba(255,255,255,.035); }
.mv-mini-nav span:nth-child(2) { background: linear-gradient(90deg, rgba(79,140,255,.22), rgba(122,92,255,.08)); border: 1px solid rgba(79,140,255,.22); }
.mv-product-content { padding: 22px; }
.mv-product-heading { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-block-end: 20px; }
.mv-product-heading strong { display: block; font-size: 18px; color: #f7f9ff; }
.mv-product-heading small { display: block; color: #a8b4c7; margin-block-start: 5px; }
.mv-status-pill { padding: 7px 10px; border-radius: 999px; border: 1px solid rgba(61,220,151,.25); background: rgba(61,220,151,.08); color: #9af0c5; font-size: 10px; font-weight: 750; }
.mv-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-block-end: 14px; }
.mv-kpi, .mv-panel { border: 1px solid rgba(255,255,255,.09); background: rgba(255,255,255,.028); border-radius: 14px; }
.mv-kpi { padding: 13px; }
.mv-kpi small { color: #8190a5; font-size: 9px; text-transform: uppercase; letter-spacing: .06em; }
.mv-kpi strong { display: block; margin-block-start: 7px; font-size: 19px; color: #f7f9ff; }
.mv-product-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 12px; }
.mv-panel { padding: 15px; min-height: 168px; }
.mv-panel-title { display: flex; align-items: center; justify-content: space-between; margin-block-end: 14px; font-size: 11px; color: #cbd6e7; }
.mv-chart { height: 105px; display: flex; align-items: flex-end; gap: 7px; }
.mv-chart span { flex: 1; min-width: 8px; border-radius: 5px 5px 2px 2px; background: linear-gradient(180deg, #4f8cff, rgba(79,140,255,.18)); animation: mv-bars 5s var(--mv-ease) infinite alternate; transform-origin: bottom; }
.mv-chart span:nth-child(2n) { background: linear-gradient(180deg, #28e6c4, rgba(40,230,196,.14)); animation-delay: -.9s; }
.mv-chart span:nth-child(3n) { background: linear-gradient(180deg, #7a5cff, rgba(122,92,255,.15)); animation-delay: -1.8s; }
.mv-team-stack { display: grid; gap: 10px; }
.mv-team-row { display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 8px; }
.mv-avatar { width: 26px; height: 26px; border-radius: 9px; background: linear-gradient(135deg, #4f8cff, #7a5cff); }
.mv-team-lines b, .mv-team-lines i { display: block; height: 5px; border-radius: 999px; background: rgba(255,255,255,.14); }
.mv-team-lines b { width: 62px; margin-block-end: 5px; }
.mv-team-lines i { width: 42px; background: rgba(255,255,255,.06); }
.mv-team-row em { color: #28e6c4; font-size: 9px; font-style: normal; }
.mv-mindy-float { position: absolute; z-index: 3; inset-inline-end: -28px; inset-block-end: 46px; width: 230px; padding: 15px; border: 1px solid rgba(40,230,196,.22); border-radius: 16px; background: rgba(12,25,40,.92); backdrop-filter: blur(16px); box-shadow: 0 18px 46px rgba(0,0,0,.3); animation: mv-float 5s ease-in-out infinite; }
.mv-mindy-head { display: flex; align-items: center; gap: 9px; margin-block-end: 8px; font-size: 11px; font-weight: 800; color: #f7f9ff; }
.mv-mindy-icon { width: 25px; height: 25px; border-radius: 9px; display: grid; place-items: center; background: rgba(40,230,196,.12); color: #28e6c4; }
.mv-mindy-float p { margin: 0; color: #a8b4c7; font-size: 10px; line-height: 1.55; }
/* ── End of always-dark product mockup ────────────────────────────────── */

.mv-trust-strip { position: relative; z-index: 3; margin-block-start: -28px; }
.mv-trust-shell { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--mv-border); border-radius: 18px; background: var(--mv-border); box-shadow: var(--mv-shadow); }
.mv-trust-item { padding: 22px; background: var(--mv-card); }
.mv-trust-item strong { display: block; margin-block-end: 6px; font-size: 14px; color: var(--mv-text); }
.mv-trust-item span { color: var(--mv-muted); font-size: 12px; line-height: 1.55; }

.mv-section-header { max-width: 760px; margin-block-end: 64px; }
.mv-section-header.center { margin-inline: auto; text-align: center; }
.mv-kicker { color: var(--mv-ai); font-size: var(--text-eyebrow); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.mv-h2 { margin: 12px 0 0; max-width: 20ch; color: var(--mv-text); font-size: var(--text-h2); line-height: 1.15; letter-spacing: -.03em; text-wrap: balance; }
.mv-copy { margin: 16px 0 0; max-width: 65ch; color: var(--mv-muted); font-size: var(--text-body-lg); line-height: 1.75; }

.mv-audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
/* display:flex + margin-top:auto on the link (not position:absolute +
   min-height) - equal card height comes from the grid stretching each
   card to the row's tallest, so content never overlaps regardless of how
   long any one card's copy runs. */
.mv-audience-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--mv-border);
    border-radius: 22px;
    background: var(--mv-card);
    box-shadow: var(--mv-shadow);
    transition: transform .3s var(--mv-ease), border-color .3s ease;
}
html.dark .mv-audience-card { background: linear-gradient(145deg, rgba(23,38,58,.78), rgba(11,22,36,.75)); box-shadow: none; }
.mv-audience-card:hover { transform: translateY(-6px); border-color: rgba(79,140,255,.3); }
.mv-audience-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-block-end: 35px; border-radius: 16px; color: var(--mv-blue); background: rgba(79,140,255,.1); border: 1px solid rgba(79,140,255,.18); flex-shrink: 0; }
.mv-audience-card:nth-child(2) .mv-audience-icon { color: var(--mv-ai); background: rgba(40,230,196,.08); border-color: rgba(40,230,196,.17); }
.mv-audience-card:nth-child(3) .mv-audience-icon { color: var(--mv-purple); background: rgba(122,92,255,.1); border-color: rgba(122,92,255,.2); }
.mv-audience-card h3 { margin: 0 0 11px; color: var(--mv-text); font-size: var(--text-h3); }
.mv-audience-card p { margin: 0 0 24px; color: var(--mv-muted); line-height: 1.7; }
.mv-audience-card a { margin-top: auto; color: var(--mv-text); text-decoration: none; font-size: var(--text-sm); font-weight: 750; }

.mv-journey { position: relative; padding: 30px; border: 1px solid var(--mv-border); border-radius: 24px; background: var(--mv-card-soft); overflow: hidden; }
.mv-journey-track { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; align-items: center; position: relative; }
.mv-journey-track::before { content: ''; position: absolute; z-index: 0; inset-inline: 7%; inset-block-start: 35px; height: 1px; background: linear-gradient(90deg, var(--mv-blue), var(--mv-purple), var(--mv-ai)); opacity: .65; }
.mv-journey-step { position: relative; z-index: 1; text-align: center; }
.mv-journey-icon { width: 70px; height: 70px; margin-inline: auto; display: grid; place-items: center; border: 1px solid rgba(79,140,255,.24); border-radius: 21px; background: var(--mv-surface); color: var(--mv-blue); box-shadow: var(--mv-shadow); }
html.dark .mv-journey-icon { background: #0f1d2e; box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.mv-journey-step:nth-child(3n) .mv-journey-icon { color: var(--mv-purple); border-color: rgba(122,92,255,.25); }
.mv-journey-step:nth-child(4n) .mv-journey-icon { color: var(--mv-ai); border-color: rgba(40,230,196,.23); }
.mv-journey-step strong { display: block; margin-block-start: 14px; color: var(--mv-text); font-size: 12px; }
.mv-journey-step span { display: block; margin-block-start: 4px; color: var(--mv-muted); font-size: 10px; }

.mv-platform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.mv-feature-list { display: grid; gap: 17px; margin-block-start: 28px; }
.mv-feature { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: start; }
.mv-feature-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: var(--mv-ai); background: rgba(40,230,196,.08); border: 1px solid rgba(40,230,196,.15); }
.mv-feature strong { display: block; color: var(--mv-text); font-size: 14px; }
.mv-feature span { display: block; margin-block-start: 4px; color: var(--mv-muted); font-size: 13px; line-height: 1.55; }
.mv-preview-stack { position: relative; min-height: 470px; }
.mv-preview-card { position: absolute; border: 1px solid var(--mv-border); border-radius: 20px; background: var(--mv-card); box-shadow: var(--mv-shadow); color: var(--mv-text); }
html.dark .mv-preview-card { background: linear-gradient(145deg, rgba(23,38,58,.96), rgba(9,19,32,.96)); }
.mv-preview-main { inset: 25px 20px 20px 0; padding: 24px; }
.mv-preview-side { width: 220px; inset-inline-end: -24px; inset-block-start: 0; padding: 18px; transform: rotate(2deg); }
.mv-preview-cert { width: 250px; inset-inline-start: -32px; inset-block-end: 0; padding: 20px; transform: rotate(-2deg); }
.mv-preview-lines { display: grid; gap: 10px; margin-block-start: 24px; }
.mv-preview-lines span { display: block; height: 10px; border-radius: 999px; background: var(--mv-border-strong); }
.mv-preview-lines span:nth-child(2) { width: 73%; }
.mv-preview-lines span:nth-child(3) { width: 88%; }
.mv-preview-score { width: 94px; height: 94px; margin: 18px auto; border-radius: 50%; display: grid; place-items: center; color: var(--mv-text); border: 8px solid rgba(40,230,196,.16); border-top-color: var(--mv-ai); font-size: 25px; font-weight: 800; }

.mv-enterprise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.mv-enterprise-card { padding: 22px; border: 1px solid var(--mv-border); border-radius: 18px; background: var(--mv-card); }
.mv-enterprise-card strong { display: block; margin-block-start: 20px; color: var(--mv-text); }
.mv-enterprise-card p { color: var(--mv-muted); font-size: 13px; line-height: 1.6; }

.mv-cta { padding-block: 40px 110px; }
.mv-cta-shell {
    padding: 64px;
    border: 1px solid rgba(79,140,255,.23);
    border-radius: 28px;
    text-align: center;
    color: var(--mv-text);
    background:
        radial-gradient(circle at 20% 20%, rgba(61,111,224,.08), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(106,79,224,.07), transparent 33%),
        var(--mv-card);
    box-shadow: var(--mv-shadow);
}
html.dark .mv-cta-shell {
    background:
        radial-gradient(circle at 20% 20%, rgba(79,140,255,.16), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(122,92,255,.14), transparent 33%),
        rgba(16,27,44,.86);
}
.mv-cta-shell h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.8rem); letter-spacing: -.04em; }
.mv-cta-shell p { max-width: 650px; margin: 17px auto 0; color: var(--mv-muted); line-height: 1.7; }
.mv-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-block-start: 28px; }

.mv-footer { border-top: 1px solid var(--mv-border); background: var(--mv-card-soft); }
.mv-footer-inner { min-height: 105px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.mv-footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.mv-footer a { color: var(--mv-muted); text-decoration: none; font-size: 13px; }
.mv-footer a:hover { color: var(--mv-text); }
.mv-footer-copy { color: var(--mv-muted); font-size: 12px; }

@keyframes mv-bars { from { transform: scaleY(.72); opacity: .75; } to { transform: scaleY(1); opacity: 1; } }
@keyframes mv-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

@media (max-width: 1024px) {
    .mv-nav-links { display: none; }
    .mv-hero-grid, .mv-platform-grid { grid-template-columns: 1fr; }
    .mv-hero-grid { gap: 52px; }
    .mv-hero-copy { text-align: center; }
    .mv-lead { margin-inline: auto; }
    .mv-hero-actions, .mv-hero-note { justify-content: center; }
    .mv-section-header { text-align: center; margin-inline: auto; }
    .mv-product-stage { width: min(720px, 100%); margin-inline: auto; }
    .mv-journey-track { grid-template-columns: repeat(4, 1fr); row-gap: 30px; }
    .mv-journey-track::before { display: none; }
}

@media (max-width: 760px) {
    .mv-container { width: min(100% - 28px, 1180px); }
    .mv-section { padding-block: 70px; }
    .mv-hero { min-height: auto; padding-block: 48px 70px; }
    .mv-display { font-size: clamp(2.7rem, 14vw, 4.2rem); }
    .mv-product-stage { min-height: 500px; }
    .mv-window { min-height: 470px; transform: none; }
    .mv-window-body { grid-template-columns: 86px 1fr; }
    .mv-mini-sidebar { padding-inline: 10px; }
    .mv-product-content { padding: 15px; }
    .mv-product-grid { grid-template-columns: 1fr; }
    .mv-product-grid .mv-panel:last-child { display: none; }
    .mv-mindy-float { inset-inline-end: 8px; inset-block-end: -20px; width: 210px; }
    .mv-trust-strip { margin-block-start: 12px; }
    .mv-trust-shell, .mv-audience-grid, .mv-enterprise-grid { grid-template-columns: 1fr 1fr; }
    .mv-journey-track { grid-template-columns: repeat(2, 1fr); }
    .mv-preview-stack { min-height: 420px; }
    .mv-cta-shell { padding: 46px 24px; }
    .mv-footer-inner { padding-block: 28px; flex-direction: column; text-align: center; }
    .mv-footer-links { justify-content: center; }
}

@media (max-width: 480px) {
    .mv-hero-actions .mv-btn { width: 100%; }
    .mv-trust-shell, .mv-audience-grid, .mv-enterprise-grid { grid-template-columns: 1fr; }
    .mv-window-body { grid-template-columns: 1fr; }
    .mv-mini-sidebar { display: none; }
    .mv-kpis { grid-template-columns: 1fr 1fr; }
    .mv-kpis .mv-kpi:last-child { display: none; }
    .mv-journey { padding: 22px 14px; }
    .mv-preview-main { inset-inline: 0; }
    .mv-preview-side { inset-inline-end: 0; width: 185px; }
    .mv-preview-cert { inset-inline-start: 0; width: 210px; }
}

@media (prefers-reduced-motion: reduce) {
    .mv-page *, .mv-page *::before, .mv-page *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
