/*
 * Movadly first theme — canonical public presentation layer.
 *
 * Adapted from the approved Movadly design handoff. The handoff's global
 * artifact selectors are intentionally not copied. Every selector is scoped
 * to the selected theme root so these rules can style public rendering and
 * the canvas preview without leaking into Website OS, CRM, Connect OS, or
 * Page Builder chrome.
 */

[data-mv-theme-root="movadly-first-theme"] {
    --mv-theme-identity: "movadly-first-theme";
    /* Canonical dark brand tokens for the default Movadly theme. */
    --theme-bg: #06090c;
    --theme-surface: #0b1015;
    --theme-surface-2: #0f161c;
    --theme-surface-3: #131c24;
    --theme-text: #eaf0f2;
    --theme-heading: #eaf0f2;
    --theme-text-muted: #9aa6ad;
    --theme-border: rgba(255, 255, 255, .09);
    --theme-accent: #6eebda;
    --theme-primary: #31d3bd;
    --theme-accent-ink: #052b27;
    --theme-gradient: linear-gradient(135deg, #7cf0e1 0%, #31d3bd 55%, #17b4a0 100%);
    --theme-button-bg: var(--theme-accent);
    --theme-button-text: #052b27;

    /* Role aliases consumed by reusable Page Builder renderers. */
    --bg: var(--theme-bg);
    --surface: var(--theme-surface);
    --surface-2: var(--theme-surface-2);
    --surface-3: var(--theme-surface-3);
    --text: var(--theme-text);
    --text-dim: var(--theme-text-muted);
    --text-mute: #66727a;
    --muted: var(--text-dim);
    --heading: var(--theme-heading);
    --accent: var(--theme-accent);
    --accent-2: var(--theme-primary);
    --accent-3: #17b4a0;
    --accent-ink: var(--theme-accent-ink);
    --accent-soft: rgba(110, 235, 218, .14);
    --gradient: var(--theme-gradient);
    --gradient-soft: linear-gradient(135deg, rgba(110, 235, 218, .16), rgba(49, 211, 189, .05));
    --line: rgba(255, 255, 255, .09);
    --line-2: rgba(255, 255, 255, .15);
    --radius: 18px;
    --radius-sm: 11px;
    --radius-pill: 999px;
    --shadow: 0 24px 70px -30px rgba(0, 0, 0, .88);
    --glow: 0 0 52px -14px rgba(49, 211, 189, .58);
    --container: min(1200px, calc(100vw - 48px));
    --section-y: clamp(76px, 9vw, 112px);
    --gap: clamp(16px, 2.2vw, 26px);
    --font: "Figtree", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --heading-font: "Figtree", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --weight-head: 800;
    --ease: cubic-bezier(.16, 1, .3, 1);
    --dur: 520ms;

    /* Legacy typography/layout aliases retained during migration. */
    --theme-font: var(--font);
    --body-font: var(--font);
    --theme-body-font: var(--font);
    --theme-heading-font: var(--heading-font);
    --theme-heading-weight: var(--weight-head);
    --theme-button-radius: var(--radius-pill);
    --theme-block-radius: var(--radius);
    --theme-input-radius: var(--radius-sm);
    --theme-page-width: 1200px;
    --theme-section-spacing: 96px;

    min-height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    overflow-x: clip;
    color-scheme: dark;
}

[data-mv-theme-root="movadly-first-theme"] main {
    background:
        radial-gradient(circle at 82% 4%, color-mix(in srgb, var(--accent-2) 8%, transparent), transparent 28rem),
        var(--bg);
    color: var(--text);
    overflow-x: clip;
}

[data-mv-theme-root="movadly-first-theme"] main img {
    max-width: 100%;
}

[data-mv-theme-root="movadly-first-theme"] main :focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

[data-mv-theme-root="movadly-first-theme"] .site-breadcrumbs,
[data-mv-theme-root="movadly-first-theme"] .site-breadcrumbs > ol > li,
[data-mv-theme-root="movadly-first-theme"] .site-breadcrumbs a {
    color: var(--text-mute);
}

[data-mv-theme-root="movadly-first-theme"] .site-breadcrumbs [aria-current="page"],
[data-mv-theme-root="movadly-first-theme"] .site-breadcrumbs a:hover {
    color: var(--accent);
}

/* Header and navigation */
[data-mv-theme-root="movadly-first-theme"] .site-header {
    background: color-mix(in srgb, var(--bg) 88%, transparent) !important;
    color: var(--text) !important;
    border-bottom: 1px solid var(--line) !important;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
}

[data-mv-theme-root="movadly-first-theme"] .site-header .brand img {
    max-height: 48px;
    max-width: 100%;
    height: auto;
}

[data-mv-theme-root="movadly-first-theme"] .site-header .nav-link,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-item > button {
    color: var(--theme-text-muted) !important;
    font-family: var(--font);
    font-weight: 500 !important;
    letter-spacing: -.01em;
}

[data-mv-theme-root="movadly-first-theme"] .site-header .nav-link:hover,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-link:focus-visible,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-item > button:hover,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-item > button:focus-visible {
    color: var(--theme-text) !important;
}

[data-mv-theme-root="movadly-first-theme"] .site-header .mobile-site-menu {
    color: var(--theme-text, var(--text)) !important;
    border-color: var(--theme-border, var(--line-2)) !important;
    box-shadow: var(--shadow), var(--glow);
}

[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default {
    background: var(--theme-surface, var(--surface)) !important;
    color: var(--theme-text, var(--text)) !important;
    border-color: var(--theme-border, var(--line)) !important;
    box-shadow: var(--shadow), var(--glow);
}

[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-intro,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-group a,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-banner-link-list a,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-card,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-card-link-list a {
    background: color-mix(in srgb, var(--theme-surface, var(--surface)) 88%, var(--theme-bg, var(--bg))) !important;
    border-color: var(--theme-border, var(--line)) !important;
    color: var(--theme-text, var(--text)) !important;
}

[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-kicker,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-intro strong,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-group h3,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-group a strong,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-banner-content strong,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-banner-link-list strong,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-card-intro strong,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-card-body strong,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-card-link-list strong {
    color: var(--theme-heading, var(--heading)) !important;
}

[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-intro span,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-group p,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-group a span,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-banner-content p,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-banner-link-list span,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-card-intro p,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-card-body span,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-card-link-list span {
    color: var(--theme-text-muted, var(--text-dim)) !important;
}

[data-mv-theme-root="movadly-first-theme"] .site-header .mobile-menu-links a,
[data-mv-theme-root="movadly-first-theme"] .site-header .mobile-sub-link {
    color: var(--text-dim) !important;
}

[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-group a:hover,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-banner-link-list a:hover,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-panel--default .mega-card-link-list a:hover,
[data-mv-theme-root="movadly-first-theme"] .site-header .mobile-menu-links a:hover,
[data-mv-theme-root="movadly-first-theme"] .site-header .mobile-sub-link:hover {
    color: var(--accent) !important;
}

[data-mv-theme-root="movadly-first-theme"] .site-header .mobile-menu-toggle {
    color: var(--text) !important;
    border-color: var(--line-2) !important;
    background: var(--surface-2) !important;
}

/* Shared section rhythm and typography */
[data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-section,
[data-mv-theme-root="movadly-first-theme"] .vb-theme-hero,
[data-mv-theme-root="movadly-first-theme"] .vb-theme-cards,
[data-mv-theme-root="movadly-first-theme"] .vb-grid-banner-section,
[data-mv-theme-root="movadly-first-theme"] .vb-connect-showcase-section,
[data-mv-theme-root="movadly-first-theme"] .vb-pricing-table-section,
[data-mv-theme-root="movadly-first-theme"] .vb-comparison-table-section,
[data-mv-theme-root="movadly-first-theme"] .vb-featured-blogs-section,
[data-mv-theme-root="movadly-first-theme"] .vb-rich-text-section,
[data-mv-theme-root="movadly-first-theme"] .vb-theme-image-text,
[data-mv-theme-root="movadly-first-theme"] .vb-theme-multicolumn,
[data-mv-theme-root="movadly-first-theme"] .vb-contact-form-section,
[data-mv-theme-root="movadly-first-theme"] .vb-theme-footer-cta {
    background-color: var(--bg) !important;
    color: var(--text) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-heading,
[data-mv-theme-root="movadly-first-theme"] .vb-theme-hero h1,
[data-mv-theme-root="movadly-first-theme"] .vb-theme-hero h2,
[data-mv-theme-root="movadly-first-theme"] .vb-theme-card-heading,
[data-mv-theme-root="movadly-first-theme"] .vb-grid-banner-title,
[data-mv-theme-root="movadly-first-theme"] .vb-grid-banner-card h3,
[data-mv-theme-root="movadly-first-theme"] .vb-connect-showcase-heading,
[data-mv-theme-root="movadly-first-theme"] .vb-pricing-table-heading,
[data-mv-theme-root="movadly-first-theme"] .vb-pricing-plan-name,
[data-mv-theme-root="movadly-first-theme"] .vb-comparison-table-heading,
[data-mv-theme-root="movadly-first-theme"] .vb-featured-blogs-heading,
[data-mv-theme-root="movadly-first-theme"] .vb-featured-blog-title,
[data-mv-theme-root="movadly-first-theme"] .vb-rich-text-heading,
[data-mv-theme-root="movadly-first-theme"] .vb-image-text-heading,
[data-mv-theme-root="movadly-first-theme"] .vb-multicolumn-header h2,
[data-mv-theme-root="movadly-first-theme"] .vb-multicolumn-card h3,
[data-mv-theme-root="movadly-first-theme"] .vb-contact-form-heading,
[data-mv-theme-root="movadly-first-theme"] .vb-contact-form-title,
[data-mv-theme-root="movadly-first-theme"] .vb-contact-sidebar-heading {
    color: var(--heading) !important;
    font-family: var(--heading-font);
    font-weight: var(--weight-head) !important;
    letter-spacing: -.035em;
}

[data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-intro,
[data-mv-theme-root="movadly-first-theme"] .vb-theme-hero p,
[data-mv-theme-root="movadly-first-theme"] .vb-theme-card-copy,
[data-mv-theme-root="movadly-first-theme"] .vb-grid-banner-copy,
[data-mv-theme-root="movadly-first-theme"] .vb-grid-banner-text,
[data-mv-theme-root="movadly-first-theme"] .vb-connect-showcase-intro,
[data-mv-theme-root="movadly-first-theme"] .vb-pricing-table-intro,
[data-mv-theme-root="movadly-first-theme"] .vb-pricing-plan-best-for,
[data-mv-theme-root="movadly-first-theme"] .vb-comparison-table-intro,
[data-mv-theme-root="movadly-first-theme"] .vb-featured-blogs-intro,
[data-mv-theme-root="movadly-first-theme"] .vb-featured-blog-excerpt,
[data-mv-theme-root="movadly-first-theme"] .vb-rich-text-body,
[data-mv-theme-root="movadly-first-theme"] .vb-image-text-copy,
[data-mv-theme-root="movadly-first-theme"] .vb-multicolumn-header p,
[data-mv-theme-root="movadly-first-theme"] .vb-multicolumn-card p,
[data-mv-theme-root="movadly-first-theme"] .vb-contact-form-subheading,
[data-mv-theme-root="movadly-first-theme"] .vb-contact-sidebar-copy {
    color: var(--text-dim) !important;
}

/* Keep legacy theme assets from repainting the visual-builder header navigation. */
[data-mv-theme-root="movadly-first-theme"] .vb-theme-header .vb-theme-header-menu {
    background: transparent !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

/* Rich-text paragraphs inherit the semantic scheme selected by the section. */
[data-mv-theme-root="movadly-first-theme"] .vb-rich-text-body p {
    color: inherit !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-eyebrow,
[data-mv-theme-root="movadly-first-theme"] .vb-theme-card-eyebrow,
[data-mv-theme-root="movadly-first-theme"] .vb-grid-banner-eyebrow,
[data-mv-theme-root="movadly-first-theme"] .vb-grid-banner-kicker,
[data-mv-theme-root="movadly-first-theme"] .vb-connect-showcase-eyebrow,
[data-mv-theme-root="movadly-first-theme"] .vb-pricing-table-eyebrow,
[data-mv-theme-root="movadly-first-theme"] .vb-comparison-table-eyebrow,
[data-mv-theme-root="movadly-first-theme"] .vb-featured-blogs-kicker,
[data-mv-theme-root="movadly-first-theme"] .vb-image-text-badge,
[data-mv-theme-root="movadly-first-theme"] .vb-image-text-subheading {
    color: var(--accent) !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* Platform hero */
[data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-section {
    position: relative;
    min-height: min(860px, calc(100vh - 82px));
    padding: clamp(80px, 10vw, 132px) 24px !important;
    background:
        radial-gradient(circle at 76% 38%, color-mix(in srgb, var(--accent-2) 18%, transparent), transparent 30rem),
        linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%) !important;
    border-bottom: 1px solid var(--line);
    overflow: clip;
}

[data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-shell {
    width: var(--container) !important;
    max-width: 1200px !important;
    margin-inline: auto;
    gap: clamp(42px, 7vw, 92px) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-copy {
    max-width: 650px;
}

[data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-heading {
    font-size: clamp(44px, 6.4vw, 82px) !important;
    line-height: .98 !important;
    text-wrap: balance;
}

[data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-highlight,
[data-mv-theme-root="movadly-first-theme"] .vb-connect-showcase-highlight {
    color: transparent !important;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

[data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-diagram {
    background: radial-gradient(circle, color-mix(in srgb, var(--accent) 11%, transparent), transparent 66%) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-core {
    background: color-mix(in srgb, var(--surface) 96%, transparent) !important;
    border-color: color-mix(in srgb, var(--accent) 52%, transparent) !important;
    box-shadow: var(--shadow), var(--glow) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-platform-node-card {
    background: color-mix(in srgb, var(--surface-2) 96%, transparent) !important;
    border-color: color-mix(in srgb, var(--accent) 28%, transparent) !important;
    color: var(--text) !important;
    box-shadow: var(--shadow) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-platform-node-card:hover {
    border-color: var(--accent) !important;
    transform: translateY(-5px);
    box-shadow: var(--shadow), var(--glow) !important;
}

/* Page hero */
[data-mv-theme-root="movadly-first-theme"] .vb-theme-hero {
    position: relative;
    padding: clamp(88px, 11vw, 150px) 24px !important;
    background:
        radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--accent-2) 13%, transparent), transparent 34rem),
        var(--bg) !important;
    border-bottom: 1px solid var(--line);
    overflow: clip;
}

[data-mv-theme-root="movadly-first-theme"] .vb-theme-hero__inner {
    width: var(--container) !important;
    max-width: 1200px !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-theme-hero__content {
    max-width: 820px !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-theme-hero--page .vb-theme-hero__content {
    margin-inline: auto;
    text-align: center;
}

[data-mv-theme-root="movadly-first-theme"] .vb-theme-hero h1,
[data-mv-theme-root="movadly-first-theme"] .vb-theme-hero h2 {
    font-size: clamp(42px, 6vw, 76px) !important;
    line-height: 1 !important;
    text-wrap: balance;
}

/* Shared buttons */
[data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-button,
[data-mv-theme-root="movadly-first-theme"] .vb-connect-showcase-button,
[data-mv-theme-root="movadly-first-theme"] .vb-pricing-plan-button,
[data-mv-theme-root="movadly-first-theme"] .vb-featured-blogs-button,
[data-mv-theme-root="movadly-first-theme"] .vb-theme-card-link,
[data-mv-theme-root="movadly-first-theme"] .vb-image-text-button,
[data-mv-theme-root="movadly-first-theme"] .vb-multicolumn-button,
[data-mv-theme-root="movadly-first-theme"] .vb-contact-button,
[data-mv-theme-root="movadly-first-theme"] .vb-theme-footer-cta a {
    border-radius: var(--radius-pill) !important;
    font-weight: 700 !important;
    transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

[data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-button--primary,
[data-mv-theme-root="movadly-first-theme"] .vb-connect-showcase-button--primary,
[data-mv-theme-root="movadly-first-theme"] .vb-pricing-plan-button,
[data-mv-theme-root="movadly-first-theme"] .vb-contact-button--primary,
[data-mv-theme-root="movadly-first-theme"] .vb-theme-footer-cta a {
    background: var(--accent) !important;
    color: var(--accent-ink) !important;
    border-color: var(--accent) !important;
    box-shadow: var(--glow);
}

[data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-button--secondary,
[data-mv-theme-root="movadly-first-theme"] .vb-connect-showcase-button--secondary {
    background: color-mix(in srgb, var(--heading) 3.5%, transparent) !important;
    color: var(--text) !important;
    border-color: var(--line-2) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-button:hover,
[data-mv-theme-root="movadly-first-theme"] .vb-connect-showcase-button:hover,
[data-mv-theme-root="movadly-first-theme"] .vb-pricing-plan-button:hover,
[data-mv-theme-root="movadly-first-theme"] .vb-featured-blogs-button:hover,
[data-mv-theme-root="movadly-first-theme"] .vb-image-text-button:hover,
[data-mv-theme-root="movadly-first-theme"] .vb-multicolumn-button:hover,
[data-mv-theme-root="movadly-first-theme"] .vb-contact-button:hover,
[data-mv-theme-root="movadly-first-theme"] .vb-theme-footer-cta a:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

/* Marquee */
[data-mv-theme-root="movadly-first-theme"] .vb-text-marquee-section {
    background: var(--surface) !important;
    color: var(--text-dim) !important;
    border-block: 1px solid var(--line);
    overflow: hidden;
}

[data-mv-theme-root="movadly-first-theme"] .vb-text-marquee-label {
    color: var(--text-mute) !important;
    letter-spacing: .15em;
    text-transform: uppercase;
}

[data-mv-theme-root="movadly-first-theme"] .vb-text-marquee-viewport {
    -webkit-mask-image: linear-gradient(90deg, transparent, var(--bg) 8%, var(--bg) 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, var(--bg) 8%, var(--bg) 92%, transparent);
}

[data-mv-theme-root="movadly-first-theme"] .vb-text-marquee-item {
    color: var(--text-dim) !important;
    font-weight: 600;
}

/* Card grids */
[data-mv-theme-root="movadly-first-theme"] .vb-theme-cards {
    padding: var(--section-y) 24px !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-theme-card-shell {
    width: var(--container) !important;
    max-width: 1200px !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-theme-card-grid {
    gap: var(--gap) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-theme-card {
    position: relative;
    background: linear-gradient(160deg, color-mix(in srgb, var(--heading) 2.5%, transparent), transparent 50%), var(--surface-2) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow) !important;
    overflow: hidden;
    transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

[data-mv-theme-root="movadly-first-theme"] .vb-theme-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--accent) 34%, transparent) !important;
    box-shadow: var(--shadow), var(--glow) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-theme-card-media {
    background: var(--gradient-soft) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-theme-card-link {
    color: var(--accent) !important;
}

/* Grid banner and bento */
[data-mv-theme-root="movadly-first-theme"] .vb-grid-banner-section {
    padding: var(--section-y) 24px !important;
    background: var(--surface) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-grid-banner-shell {
    width: var(--container) !important;
    max-width: 1200px !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-grid-banner-grid,
[data-mv-theme-root="movadly-first-theme"] .vb-grid-banner-bento {
    gap: var(--gap) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-grid-banner-card {
    position: relative;
    background:
        radial-gradient(circle at 90% 8%, color-mix(in srgb, var(--accent-2) 12%, transparent), transparent 15rem),
        var(--surface-2) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
    color: var(--text) !important;
    box-shadow: var(--shadow) !important;
    overflow: hidden;
    transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

[data-mv-theme-root="movadly-first-theme"] .vb-grid-banner-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--accent) 36%, transparent) !important;
    box-shadow: var(--shadow), var(--glow) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-grid-banner-icon {
    background: var(--gradient-soft) !important;
    color: var(--accent) !important;
    border-color: color-mix(in srgb, var(--accent) 28%, transparent) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-grid-banner-mock {
    background: color-mix(in srgb, var(--bg) 72%, transparent) !important;
    border-color: var(--line-2) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-grid-banner-mock-bar {
    background: color-mix(in srgb, var(--accent) 30%, transparent) !important;
}

/* Connect showcase */
[data-mv-theme-root="movadly-first-theme"] .vb-connect-showcase-section {
    padding: var(--section-y) 24px !important;
    background:
        linear-gradient(180deg, var(--bg), var(--surface) 54%, var(--bg)) !important;
    overflow: clip;
}

[data-mv-theme-root="movadly-first-theme"] .vb-connect-showcase-shell {
    width: var(--container) !important;
    max-width: 1200px !important;
    gap: clamp(42px, 7vw, 82px) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-connect-showcase-heading {
    font-size: clamp(36px, 4.8vw, 62px) !important;
    line-height: 1.04 !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-connect-showcase-visual,
[data-mv-theme-root="movadly-first-theme"] .vb-connect-destination,
[data-mv-theme-root="movadly-first-theme"] .vb-connect-pipeline-group {
    background: color-mix(in srgb, var(--surface) 96%, transparent) !important;
    border-color: color-mix(in srgb, var(--accent) 24%, transparent) !important;
    box-shadow: var(--shadow) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-connect-channel-card,
[data-mv-theme-root="movadly-first-theme"] .vb-connect-pipeline-stage,
[data-mv-theme-root="movadly-first-theme"] .vb-connect-metric {
    background: var(--surface-3) !important;
    border-color: var(--line) !important;
    color: var(--text) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-connect-channel-icon,
[data-mv-theme-root="movadly-first-theme"] .vb-connect-destination-symbol {
    color: var(--accent) !important;
    background: var(--gradient-soft) !important;
    border-color: color-mix(in srgb, var(--accent) 28%, transparent) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-connect-flow-connector {
    color: var(--accent) !important;
    border-color: color-mix(in srgb, var(--accent) 34%, transparent) !important;
}

/* Pricing */
[data-mv-theme-root="movadly-first-theme"] .vb-pricing-table-section {
    padding: var(--section-y) 24px !important;
    background: linear-gradient(180deg, var(--bg), var(--surface)) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-pricing-table-shell {
    width: var(--container) !important;
    max-width: 1200px !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-pricing-table-grid {
    gap: 14px !important;
    align-items: stretch;
}

[data-mv-theme-root="movadly-first-theme"] .vb-pricing-plan {
    background: var(--surface-2) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
    color: var(--text) !important;
    box-shadow: var(--shadow) !important;
    transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

[data-mv-theme-root="movadly-first-theme"] .vb-pricing-plan:hover {
    transform: translateY(-6px);
    border-color: var(--line-2) !important;
    box-shadow: var(--shadow) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-pricing-plan.is-recommended {
    background:
        radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--accent-2) 18%, transparent), transparent 18rem),
        var(--surface-3) !important;
    border-color: color-mix(in srgb, var(--accent) 46%, transparent) !important;
    box-shadow: var(--shadow), var(--glow) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-pricing-plan-badge {
    background: var(--accent) !important;
    color: var(--accent-ink) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-pricing-plan-price {
    color: var(--heading) !important;
    font-weight: 800;
    letter-spacing: -.04em;
}

[data-mv-theme-root="movadly-first-theme"] .vb-pricing-plan-check,
[data-mv-theme-root="movadly-first-theme"] .vb-pricing-plan-yearly {
    color: var(--accent) !important;
}

/* Comparison table */
[data-mv-theme-root="movadly-first-theme"] .vb-comparison-table-section {
    padding: var(--section-y) 24px !important;
    background: var(--bg) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-comparison-table-shell {
    width: var(--container) !important;
    max-width: 1200px !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-comparison-table-scroll {
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
    background: var(--surface-2) !important;
    box-shadow: var(--shadow) !important;
    scrollbar-color: var(--accent-3) var(--surface);
}

[data-mv-theme-root="movadly-first-theme"] .vb-comparison-table {
    color: var(--text) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-comparison-table-head-cell,
[data-mv-theme-root="movadly-first-theme"] .vb-comparison-table-feature,
[data-mv-theme-root="movadly-first-theme"] .vb-comparison-table-value {
    border-color: var(--line) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-comparison-table-head-cell {
    background: var(--surface-3) !important;
    color: var(--heading) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-comparison-table-head-cell.is-highlighted,
[data-mv-theme-root="movadly-first-theme"] .vb-comparison-table-value.is-highlighted {
    background: color-mix(in srgb, var(--accent) 9%, transparent) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-comparison-table-marker--included {
    color: var(--accent) !important;
}

/* Featured blogs */
[data-mv-theme-root="movadly-first-theme"] .vb-featured-blogs-section {
    padding: var(--section-y) 24px !important;
    background: var(--surface) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-featured-blogs-shell {
    width: var(--container) !important;
    max-width: 1200px !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-featured-blogs-grid {
    gap: var(--gap) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-featured-blog-card {
    background: var(--surface-2) !important;
    color: var(--text) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow) !important;
    overflow: hidden;
    transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

[data-mv-theme-root="movadly-first-theme"] .vb-featured-blog-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--accent) 34%, transparent) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-featured-blog-media-placeholder {
    background: var(--gradient-soft) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-featured-blog-link,
[data-mv-theme-root="movadly-first-theme"] .vb-featured-blogs-button {
    color: var(--accent) !important;
}

/* Statement and image/text */
[data-mv-theme-root="movadly-first-theme"] .vb-rich-text-section--statement,
[data-mv-theme-root="movadly-first-theme"] .vb-rich-text-statement {
    background:
        radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--accent-2) 12%, transparent), transparent 30rem),
        var(--bg) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-rich-text-section--statement .vb-rich-text-content,
[data-mv-theme-root="movadly-first-theme"] .vb-rich-text-statement .vb-rich-text-content {
    max-width: 940px !important;
    margin-inline: auto;
    text-align: center;
}

[data-mv-theme-root="movadly-first-theme"] .vb-rich-text-section--statement .vb-rich-text-heading,
[data-mv-theme-root="movadly-first-theme"] .vb-rich-text-statement .vb-rich-text-heading {
    font-size: clamp(36px, 5vw, 62px) !important;
    line-height: 1.06 !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-theme-image-text {
    padding: var(--section-y) 24px !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-image-text-inner {
    width: var(--container) !important;
    max-width: 1200px !important;
    gap: clamp(34px, 6vw, 78px) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-image-text-frame {
    background: var(--surface-2) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow) !important;
    overflow: hidden;
}

/* Multicolumn variants */
[data-mv-theme-root="movadly-first-theme"] .vb-theme-multicolumn {
    padding: var(--section-y) 24px !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-multicolumn-inner {
    width: var(--container) !important;
    max-width: 1200px !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-multicolumn-grid {
    gap: var(--gap) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-multicolumn-card {
    background: var(--surface-2) !important;
    color: var(--text) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow) !important;
    transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

[data-mv-theme-root="movadly-first-theme"] .vb-multicolumn-card:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--accent) 32%, transparent) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-multicolumn-marker {
    background: var(--gradient-soft) !important;
    color: var(--accent) !important;
    border-color: color-mix(in srgb, var(--accent) 28%, transparent) !important;
}

/* Contact form */
[data-mv-theme-root="movadly-first-theme"] .vb-contact-form-section {
    padding: var(--section-y) 24px !important;
    background:
        radial-gradient(circle at 88% 12%, color-mix(in srgb, var(--accent-2) 11%, transparent), transparent 26rem),
        var(--bg) !important;
    color: var(--text) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-contact-form-shell {
    width: var(--container) !important;
    max-width: 1200px !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-contact-form-divider {
    background: var(--line) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-contact-form-card,
[data-mv-theme-root="movadly-first-theme"] .vb-contact-sidebar-card {
    background: var(--surface-2) !important;
    color: var(--text) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-contact-input,
[data-mv-theme-root="movadly-first-theme"] .vb-contact-select,
[data-mv-theme-root="movadly-first-theme"] .vb-contact-textarea {
    background: color-mix(in srgb, var(--bg) 72%, transparent) !important;
    color: var(--text) !important;
    border: 1px solid var(--line-2) !important;
    border-radius: var(--radius-sm) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-contact-input::placeholder,
[data-mv-theme-root="movadly-first-theme"] .vb-contact-textarea::placeholder {
    color: var(--text-mute) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-contact-input:focus,
[data-mv-theme-root="movadly-first-theme"] .vb-contact-select:focus,
[data-mv-theme-root="movadly-first-theme"] .vb-contact-textarea:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-contact-label,
[data-mv-theme-root="movadly-first-theme"] .vb-contact-info-title {
    color: var(--text) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-contact-icon {
    background: var(--gradient-soft) !important;
    color: var(--accent) !important;
    border-color: color-mix(in srgb, var(--accent) 28%, transparent) !important;
}

/* Collapsible tabs / FAQ */
[data-mv-theme-root="movadly-first-theme"] .vb-collapsible-tabs-section {
    padding: var(--section-y) 24px !important;
    background: var(--bg) !important;
    color: var(--text) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-collapsible-tabs-shell {
    width: var(--container) !important;
    max-width: 1200px !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-collapsible-tabs-content,
[data-mv-theme-root="movadly-first-theme"] .vb-collapsible-tabs-list {
    gap: 12px !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-collapsible-tabs-heading,
[data-mv-theme-root="movadly-first-theme"] .vb-collapsible-tab-title {
    color: var(--heading) !important;
    font-family: var(--heading-font);
}

[data-mv-theme-root="movadly-first-theme"] .vb-collapsible-tabs-intro,
[data-mv-theme-root="movadly-first-theme"] .vb-collapsible-tab-panel {
    color: var(--text-dim) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-collapsible-tabs-kicker {
    color: var(--accent) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-collapsible-tab {
    background: var(--surface-2) !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius-sm) !important;
    overflow: hidden;
    transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

[data-mv-theme-root="movadly-first-theme"] .vb-collapsible-tab[open] {
    background: var(--surface-3) !important;
    border-color: color-mix(in srgb, var(--accent) 34%, transparent) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-collapsible-tab-summary {
    color: var(--text) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-collapsible-tab-toggle,
[data-mv-theme-root="movadly-first-theme"] .vb-collapsible-tab-icon {
    color: var(--accent) !important;
    border-color: var(--line-2) !important;
}

[data-mv-theme-root="movadly-first-theme"] .vb-collapsible-tabs-divider {
    background: var(--line) !important;
}

/* Footer CTA */
[data-mv-theme-root="movadly-first-theme"] .vb-theme-footer-cta {
    position: relative;
    padding: clamp(84px, 10vw, 128px) 24px !important;
    background:
        radial-gradient(circle at 50% 120%, color-mix(in srgb, var(--accent-2) 28%, transparent), transparent 32rem),
        var(--surface) !important;
    border-block: 1px solid var(--line);
    text-align: center;
    overflow: clip;
}

[data-mv-theme-root="movadly-first-theme"] .vb-theme-footer-cta h2 {
    color: var(--heading) !important;
    font-family: var(--heading-font);
    font-size: clamp(38px, 5vw, 64px) !important;
    font-weight: 800 !important;
    letter-spacing: -.04em;
    line-height: 1.04;
    text-wrap: balance;
}

[data-mv-theme-root="movadly-first-theme"] .vb-theme-footer-cta p {
    color: var(--text-dim) !important;
}

/* Public and builder footer */
[data-mv-theme-root="movadly-first-theme"] .movadly-static-footer,
[data-mv-theme-root="movadly-first-theme"] .movadly-vb-footer {
    background: var(--bg) !important;
    color: var(--text) !important;
    border-top: 1px solid var(--line) !important;
}

[data-mv-theme-root="movadly-first-theme"] .movadly-static-footer a,
[data-mv-theme-root="movadly-first-theme"] .movadly-vb-footer a {
    color: var(--text-dim) !important;
    transition: color var(--dur) var(--ease);
}

[data-mv-theme-root="movadly-first-theme"] .movadly-static-footer a:hover,
[data-mv-theme-root="movadly-first-theme"] .movadly-vb-footer a:hover {
    color: var(--accent) !important;
}

[data-mv-theme-root="movadly-first-theme"] .movadly-static-footer__social a,
[data-mv-theme-root="movadly-first-theme"] .movadly-vb-footer__social a {
    background: var(--surface-2) !important;
    border-color: var(--line-2) !important;
    color: var(--text) !important;
}

/* Responsive */
@media (max-width: 990px) {
    [data-mv-theme-root="movadly-first-theme"] {
        --container: min(100% - 40px, 760px);
        --section-y: 82px;
    }

    [data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-shell,
    [data-mv-theme-root="movadly-first-theme"] .vb-connect-showcase-shell,
    [data-mv-theme-root="movadly-first-theme"] .vb-image-text-inner {
        grid-template-columns: 1fr !important;
    }

    [data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-copy,
    [data-mv-theme-root="movadly-first-theme"] .vb-connect-showcase-copy {
        max-width: 720px;
        margin-inline: auto;
        text-align: center;
    }

    [data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-actions,
    [data-mv-theme-root="movadly-first-theme"] .vb-connect-showcase-actions {
        justify-content: center;
    }

    [data-mv-theme-root="movadly-first-theme"] .vb-pricing-table-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    [data-mv-theme-root="movadly-first-theme"] .vb-featured-blogs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 680px) {
    [data-mv-theme-root="movadly-first-theme"] {
        --container: min(100% - 32px, 560px);
        --section-y: 66px;
        --gap: 14px;
        --radius: 15px;
    }

    [data-mv-theme-root="movadly-first-theme"] .site-header {
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    [data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-section,
    [data-mv-theme-root="movadly-first-theme"] .vb-theme-hero,
    [data-mv-theme-root="movadly-first-theme"] .vb-theme-cards,
    [data-mv-theme-root="movadly-first-theme"] .vb-grid-banner-section,
    [data-mv-theme-root="movadly-first-theme"] .vb-connect-showcase-section,
    [data-mv-theme-root="movadly-first-theme"] .vb-pricing-table-section,
    [data-mv-theme-root="movadly-first-theme"] .vb-comparison-table-section,
    [data-mv-theme-root="movadly-first-theme"] .vb-featured-blogs-section,
    [data-mv-theme-root="movadly-first-theme"] .vb-theme-image-text,
    [data-mv-theme-root="movadly-first-theme"] .vb-theme-multicolumn,
    [data-mv-theme-root="movadly-first-theme"] .vb-contact-form-section {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    [data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-section {
        min-height: auto;
        padding-top: 74px !important;
    }

    [data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-heading,
    [data-mv-theme-root="movadly-first-theme"] .vb-theme-hero h1,
    [data-mv-theme-root="movadly-first-theme"] .vb-theme-hero h2 {
        font-size: clamp(38px, 12vw, 58px) !important;
    }

    [data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-visual,
    [data-mv-theme-root="movadly-first-theme"] .vb-connect-showcase-visual {
        width: 100%;
        min-width: 0;
    }

    [data-mv-theme-root="movadly-first-theme"] .vb-pricing-table-grid,
    [data-mv-theme-root="movadly-first-theme"] .vb-featured-blogs-grid,
    [data-mv-theme-root="movadly-first-theme"] .vb-multicolumn-grid {
        grid-template-columns: 1fr !important;
    }

    [data-mv-theme-root="movadly-first-theme"] .vb-comparison-table-scroll {
        max-width: 100%;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
    }

    [data-mv-theme-root="movadly-first-theme"] .vb-contact-form-grid {
        grid-template-columns: 1fr !important;
    }

    [data-mv-theme-root="movadly-first-theme"] .vb-contact-grid-fields {
        grid-template-columns: 1fr !important;
    }

    [data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-actions,
    [data-mv-theme-root="movadly-first-theme"] .vb-connect-showcase-actions {
        align-items: stretch;
        flex-direction: column;
    }

    [data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-button,
    [data-mv-theme-root="movadly-first-theme"] .vb-connect-showcase-button {
        justify-content: center;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-mv-theme-root="movadly-first-theme"] .vb-platform-node-card,
    [data-mv-theme-root="movadly-first-theme"] .vb-platform-node-orbit,
    [data-mv-theme-root="movadly-first-theme"] .vb-connect-channel-card,
    [data-mv-theme-root="movadly-first-theme"] .vb-connect-flow-connector,
    [data-mv-theme-root="movadly-first-theme"] .vb-text-marquee-track,
    [data-mv-theme-root="movadly-first-theme"] .vb-grid-banner-mock-bar {
        animation: none !important;
        transform: none !important;
    }

    [data-mv-theme-root="movadly-first-theme"] .vb-theme-card,
    [data-mv-theme-root="movadly-first-theme"] .vb-grid-banner-card,
    [data-mv-theme-root="movadly-first-theme"] .vb-pricing-plan,
    [data-mv-theme-root="movadly-first-theme"] .vb-featured-blog-card,
    [data-mv-theme-root="movadly-first-theme"] .vb-multicolumn-card,
    [data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-button,
    [data-mv-theme-root="movadly-first-theme"] .vb-connect-showcase-button {
        scroll-behavior: auto;
        transition-duration: .01ms !important;
    }
}

/* ============================================================================
   Movadly — Phase 7B corrections (scoped)
   Append to the theme core stylesheet that loads on the FRONT-END and the
   BUILDER PREVIEW iframe (e.g. resources/themes/movadly-first-theme/theme.css).
   All rules scoped under [data-mv-theme-root="movadly-first-theme"].
   Only @font-face / @keyframes are global (they are at-rules, not selectors).
   ============================================================================ */

/* --- 1. Figtree ------------------------------------------------------------- */
@font-face{
  font-family:'Figtree';
  src:url('/themes/movadly-first-theme/assets/fonts/figtree-var.woff2') format('woff2');
  font-weight:300 900;
  font-display:swap;
}
[data-mv-theme-root="movadly-first-theme"]{ --font:'Figtree',system-ui,-apple-system,'Segoe UI',sans-serif; }
[data-mv-theme-root="movadly-first-theme"] body,
[data-mv-theme-root="movadly-first-theme"] .site-main{ font-family:var(--font); }

/* --- 2. Gradient highlight helper ------------------------------------------ */
[data-mv-theme-root="movadly-first-theme"] .grad-text{
  background:var(--gradient);
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;color:transparent;
}

/* --- 3. Connect showcase: keep each channel icon beside its label ---------- */
[data-mv-theme-root="movadly-first-theme"] .vb-connect-channel-card{
  display:flex!important;
  min-width:150px;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  grid-template-columns:none!important;
  padding:12px 14px;
  text-align:left;
}
[data-mv-theme-root="movadly-first-theme"] .vb-connect-channel-icon,
[data-mv-theme-root="movadly-first-theme"] .vb-connect-channel-image{
  width:34px;
  height:34px;
  flex:0 0 34px;
}
[data-mv-theme-root="movadly-first-theme"] .vb-connect-channel-icon svg{
  width:20px;
  height:20px;
}
[data-mv-theme-root="movadly-first-theme"] .vb-connect-channel-content{
  min-width:0;
  flex:1 1 auto;
}
[data-mv-theme-root="movadly-first-theme"] .vb-connect-channel-heading,
[data-mv-theme-root="movadly-first-theme"] .vb-connect-channel-label{
  min-width:0;
  white-space:nowrap;
  overflow-wrap:normal;
  word-break:keep-all;
}

/* --- 4. grid_banner FALLBACK (only if NOT remapping the problem section) ----
   Stops the "is-feature" card from stretching so its content is no longer
   pushed to the bottom (the "empty card" symptom). */
[data-mv-theme-root="movadly-first-theme"] .vb-grid-banner-card.is-bento.is-size-feature{
  min-height:0!important;
  height:auto;
  align-self:start;
}
[data-mv-theme-root="movadly-first-theme"] .vb-grid-banner-card.is-bento.is-size-feature .vb-grid-banner-content{
  margin-top:0!important;
  justify-content:flex-start;
}

/* --- 5. Platform Hero diagram (.mv-diagram) — used by blade/platform-hero-diagram.blade.php */
[data-mv-theme-root="movadly-first-theme"] .mv-diagram{position:relative;width:100%;max-width:520px;margin:auto;aspect-ratio:1/1}
[data-mv-theme-root="movadly-first-theme"] .mv-diagram svg{width:100%;height:100%;overflow:visible}
[data-mv-theme-root="movadly-first-theme"] .mv-orbit{fill:none;stroke:color-mix(in srgb,var(--accent) 14%,transparent);stroke-width:1;stroke-dasharray:2 9;transform-box:fill-box;transform-origin:center;animation:mvSpin 48s linear infinite}
[data-mv-theme-root="movadly-first-theme"] .mv-orbit-2{stroke:color-mix(in srgb,var(--accent) 6%,transparent);animation-duration:78s;animation-direction:reverse}
[data-mv-theme-root="movadly-first-theme"] .mv-conn{fill:none;stroke:color-mix(in srgb,var(--accent) 16%,transparent);stroke-width:1.4}
[data-mv-theme-root="movadly-first-theme"] .mv-pulse{fill:none;stroke:var(--accent);stroke-width:2.4;stroke-linecap:round;stroke-dasharray:2.5 97.5;filter:drop-shadow(0 0 4px color-mix(in srgb,var(--accent) 90%,transparent));animation:mvDash 2.6s linear infinite}
[data-mv-theme-root="movadly-first-theme"] .mv-node{transform-box:fill-box;transform-origin:center;animation:mvFloat 6s ease-in-out infinite}
[data-mv-theme-root="movadly-first-theme"] .mv-node-disc{fill:var(--surface-2)}
[data-mv-theme-root="movadly-first-theme"] .mv-node-ring{fill:none;stroke:color-mix(in srgb,var(--accent) 42%,transparent);stroke-width:1.5}
[data-mv-theme-root="movadly-first-theme"] .mv-node-ico{color:var(--accent);overflow:visible}
[data-mv-theme-root="movadly-first-theme"] .mv-label{fill:var(--text-dim);font:600 12.5px var(--font)}
[data-mv-theme-root="movadly-first-theme"] .mv-core-disc{fill:var(--surface);stroke:color-mix(in srgb,var(--accent) 55%,transparent);stroke-width:2;filter:drop-shadow(0 0 16px color-mix(in srgb,var(--accent-2) 60%,transparent))}
[data-mv-theme-root="movadly-first-theme"] .mv-core-pulse{fill:none;stroke:var(--accent);stroke-width:1.4;transform-box:fill-box;transform-origin:center;animation:mvCore 3.4s ease-out infinite}
[data-mv-theme-root="movadly-first-theme"] .mv-core-label{fill:var(--text);font:700 12px var(--font)}

/* --- 6. Connect showcase: revenue counter + moving "Won" deal (Option B) ---- */
[data-mv-theme-root="movadly-first-theme"] .mv-cx-deal{position:absolute;top:24px;left:3%;width:30%;background:var(--surface-3);border:1px solid color-mix(in srgb,var(--accent) 50%,transparent);border-radius:8px;padding:8px;font:700 10px var(--font);color:var(--accent);animation:cxMove 6s ease-in-out infinite}
[data-mv-theme-root="movadly-first-theme"] .mv-cx-rev{display:flex;justify-content:space-between;align-items:center;margin-top:12px;font:12px var(--font);color:var(--text-mute)}
[data-mv-theme-root="movadly-first-theme"] .mv-cx-rev b{font:800 18px var(--font);color:var(--accent)}

/* --- keyframes (global at-rules) ------------------------------------------- */
@keyframes mvFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}
@keyframes mvDash{from{stroke-dashoffset:100}to{stroke-dashoffset:0}}
@keyframes mvCore{0%{transform:scale(.5);opacity:.6}100%{transform:scale(2.3);opacity:0}}
@keyframes mvSpin{to{transform:rotate(360deg)}}
@keyframes cxMove{0%,20%{left:3%}45%,60%{left:35%}80%,100%{left:66%}}

@media(prefers-reduced-motion:reduce){
  [data-mv-theme-root="movadly-first-theme"] .mv-node,
  [data-mv-theme-root="movadly-first-theme"] .mv-pulse,
  [data-mv-theme-root="movadly-first-theme"] .mv-core-pulse,
  [data-mv-theme-root="movadly-first-theme"] .mv-orbit,
  [data-mv-theme-root="movadly-first-theme"] .mv-cx-deal{ animation:none!important; }
}

/* Phase 7B mobile behavior. The Platform Hero's order remains data-driven by
   its mobile_layout modifier; these rules only constrain the mobile visual. */
@media (max-width: 760px) {
    [data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-shell {
        grid-template-columns: minmax(0, 1fr);
        gap: 26px;
        text-align: center;
    }

    [data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-visual {
        margin-inline: auto;
        max-width: 320px;
        width: 100%;
    }

    [data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-actions > * {
        max-width: 340px;
        width: 100%;
    }

    [data-mv-theme-root="movadly-first-theme"] .movadly-static-footer__main {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 34px;
    }

    [data-mv-theme-root="movadly-first-theme"] .movadly-static-footer__columns {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 22px 24px;
    }
}

[data-mv-theme-root="movadly-first-theme"] .mv-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
    border-radius: var(--radius-pill);
    background: color-mix(in srgb, var(--surface-2) 86%, transparent);
    box-shadow: var(--shadow);
    color: var(--accent);
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
    backdrop-filter: blur(6px);
}

[data-mv-theme-root="movadly-first-theme"] .mv-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

[data-mv-theme-root="movadly-first-theme"] .mv-to-top:hover,
[data-mv-theme-root="movadly-first-theme"] .mv-to-top:focus-visible {
    border-color: var(--accent);
    background: var(--surface-3);
}

[data-mv-theme-root="movadly-first-theme"] .mv-to-top svg {
    width: 20px;
    height: 20px;
}

@media (prefers-reduced-motion: reduce) {
    [data-mv-theme-root="movadly-first-theme"] .mv-to-top {
        transition: none;
    }
}

/* ============================================================================
   APPROVED EXACT DESIGN PORT — scoped, tokenized, external-font edition
   Source: movadly-module-spec/EXACT-CODE/theme-exact.css

   The approved dimensions, breakpoints, timing, and keyframe bodies are kept.
   Visible palette values consume the Movadly semantic token contract. Generic
   selectors are contained by the selected theme root, and animation names are
   namespaced because the inline builder shares a document with admin chrome.
   Exact renderers must expose data-theme-animate for the existing reveal
   observer; the original .sr/.sr.in states map to that runtime contract here.
   ============================================================================ */
[data-mv-theme-root="movadly-first-theme"],
[data-mv-theme-root="movadly-first-theme"] *{box-sizing:border-box;margin:0;padding:0}
[data-mv-theme-root="movadly-first-theme"]{scroll-behavior:smooth;-webkit-text-size-adjust:100%;overflow-x:hidden}
[data-mv-theme-root="movadly-first-theme"]{
  font-family:var(--font);
  background:var(--theme-bg);
  color:var(--theme-text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
[data-mv-theme-root="movadly-first-theme"] a{color:inherit;text-decoration:none}
[data-mv-theme-root="movadly-first-theme"] img,
[data-mv-theme-root="movadly-first-theme"] svg{display:block;max-width:100%}
[data-mv-theme-root="movadly-first-theme"] button{font-family:inherit;cursor:pointer}
[data-mv-theme-root="movadly-first-theme"] ::selection{background:var(--theme-accent);color:var(--theme-accent-ink)}
[data-mv-theme-root="movadly-first-theme"] .container{box-sizing:border-box;width:100%;max-width:1200px;margin:0 auto;padding:0 24px}

/* type */
[data-mv-theme-root="movadly-first-theme"] h1,
[data-mv-theme-root="movadly-first-theme"] h2,
[data-mv-theme-root="movadly-first-theme"] h3{line-height:1.05;letter-spacing:-.02em;font-weight:700}
[data-mv-theme-root="movadly-first-theme"] .eyebrow{
  display:inline-flex;align-items:center;gap:9px;
  font-size:12.5px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;
  color:var(--theme-accent);
}
[data-mv-theme-root="movadly-first-theme"] .eyebrow::before{content:"";width:22px;height:1.5px;background:var(--theme-accent);opacity:.8}
[data-mv-theme-root="movadly-first-theme"] .eyebrow.center::before{display:none}
[data-mv-theme-root="movadly-first-theme"] .grad-text{
  background:var(--theme-gradient);-webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;color:transparent;
}
[data-mv-theme-root="movadly-first-theme"] .lead{color:var(--theme-text-muted);font-size:clamp(16px,1.6vw,18.5px)}

/* buttons */
[data-mv-theme-root="movadly-first-theme"] .btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  padding:14px 26px;border-radius:100px;font-weight:600;font-size:15px;
  border:1px solid transparent;transition:transform .4s var(--ease),box-shadow .4s var(--ease),background .3s,color .3s,border-color .3s;
  white-space:nowrap;
}
[data-mv-theme-root="movadly-first-theme"] .btn svg{width:17px;height:17px}
[data-mv-theme-root="movadly-first-theme"] .btn-primary{background:var(--theme-accent);color:var(--theme-accent-ink);box-shadow:0 0 0 0 color-mix(in srgb,var(--theme-accent) 50%,transparent)}
[data-mv-theme-root="movadly-first-theme"] .btn-primary:hover{transform:translateY(-2px);box-shadow:0 14px 40px -10px color-mix(in srgb,var(--theme-accent) 55%,transparent)}
[data-mv-theme-root="movadly-first-theme"] .btn-ghost{background:color-mix(in srgb,var(--theme-text) 4%,transparent);color:var(--theme-text);border-color:var(--line-2)}
[data-mv-theme-root="movadly-first-theme"] .btn-ghost:hover{background:var(--theme-border);transform:translateY(-2px)}
[data-mv-theme-root="movadly-first-theme"] .btn-lg{padding:16px 32px;font-size:16px}

/* ============================================================
   HEADER
============================================================ */
[data-mv-theme-root="movadly-first-theme"] .site-header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  display:block;box-sizing:border-box;width:100%;max-width:none;margin:0;padding-inline:0;
  transition:background .4s,border-color .4s,backdrop-filter .4s;
  border-bottom:1px solid transparent;
}
[data-mv-theme-root="movadly-first-theme"] .site-header.scrolled{
  background:color-mix(in srgb,var(--theme-bg) 82%,transparent);
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
  border-bottom-color:var(--line);
}
[data-mv-theme-root="movadly-first-theme"] .site-header .site-header-inner{
  box-sizing:border-box;width:100%;max-width:1200px;margin:0 auto;padding:0 24px;
}
[data-mv-theme-root="movadly-first-theme"] .nav{display:flex;align-items:center;justify-content:space-between;width:100%;height:74px;gap:24px}
[data-mv-theme-root="movadly-first-theme"] .brand{display:flex;align-items:center;gap:0;flex-shrink:0}
[data-mv-theme-root="movadly-first-theme"] .brand svg{height:30px;width:auto}
[data-mv-theme-root="movadly-first-theme"] .brand .lg-icon path{fill:var(--theme-accent)}
[data-mv-theme-root="movadly-first-theme"] .brand .lg-word path{fill:var(--theme-text)}
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-menu{align-items:center;gap:4px;margin-left:14px!important;margin-right:0!important;height:74px}
[data-mv-theme-root="movadly-first-theme"] .nav-link{
  position:relative;padding:9px 15px;font-size:14.5px;font-weight:500;color:var(--theme-text-muted);
  border-radius:9px;transition:color .25s,background .25s;display:inline-flex;align-items:center;gap:6px;
}
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-menu .nav-item{display:flex;align-items:center;height:74px}
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-menu .nav-link,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-menu .nav-item>button{
  min-height:0!important;height:auto!important;padding:9px 15px!important;border-radius:9px!important;
  color:var(--theme-text-muted)!important;font-size:14.5px!important;font-weight:500!important;
}
[data-mv-theme-root="movadly-first-theme"] .nav-link:hover{color:var(--theme-text);background:color-mix(in srgb,var(--theme-text) 4%,transparent)}
[data-mv-theme-root="movadly-first-theme"] .nav-link svg{width:12px;height:12px;opacity:.6;transition:transform .3s}
[data-mv-theme-root="movadly-first-theme"] .nav-item{position:relative}
[data-mv-theme-root="movadly-first-theme"] .nav-item:hover .nav-link svg{transform:rotate(180deg)}
[data-mv-theme-root="movadly-first-theme"] .nav-right{display:flex;align-items:center;gap:8px;margin-left:auto}

@media(min-width:981px){
  [data-mv-theme-root="movadly-first-theme"] .site-header .nav-menu,
  [data-mv-theme-root="movadly-first-theme"] .site-header .main-nav{
    display:flex;
  }
  [data-mv-theme-root="movadly-first-theme"] .site-header.menu-align-right .nav-menu{
    justify-content:flex-start;margin-left:14px!important;margin-right:0!important;
  }
  [data-mv-theme-root="movadly-first-theme"] .site-header.menu-align-right .nav-right{
    margin-left:auto!important;
  }
}
[data-mv-theme-root="movadly-first-theme"] .nav-login{padding:9px 14px;font-size:14.5px;font-weight:500;color:var(--theme-text-muted)}
[data-mv-theme-root="movadly-first-theme"] .nav-login:hover{color:var(--theme-text)}
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-right{display:flex;align-items:center;gap:8px!important;margin-left:auto!important}
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-right .nav-login{
  min-height:0!important;padding:9px 14px!important;color:var(--theme-text-muted)!important;
  font-size:14.5px!important;font-weight:500!important;
}
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-right .nav-login:hover,
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-right .nav-login:focus-visible{color:var(--theme-text)!important}
[data-mv-theme-root="movadly-first-theme"] .site-header .nav-right .btn-primary{
  min-height:0!important;padding:14px 26px!important;border-radius:100px!important;
  border:1px solid transparent!important;background:var(--accent)!important;color:#04211d!important;
  font-size:15px!important;font-weight:600!important;
}

/* mega menu — full width bar */
[data-mv-theme-root="movadly-first-theme"] .mega{
  position:fixed;left:0;right:0;top:74px;
  background:color-mix(in srgb,var(--theme-bg) 98%,transparent);backdrop-filter:blur(24px) saturate(140%);
  -webkit-backdrop-filter:blur(24px) saturate(140%);
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  box-shadow:0 50px 90px -40px color-mix(in srgb,var(--theme-bg) 85%,transparent);
  opacity:0;visibility:hidden;pointer-events:none;transform:translateY(-10px);
  transition:opacity .3s var(--ease),transform .35s var(--ease),visibility .3s;
}
[data-mv-theme-root="movadly-first-theme"] .nav-item:hover .mega{opacity:1;visibility:visible;pointer-events:auto;transform:none}
[data-mv-theme-root="movadly-first-theme"] .mega-inner{display:grid;grid-template-columns:.92fr 2.08fr;gap:46px;padding:38px 24px}
[data-mv-theme-root="movadly-first-theme"] .mega-promo{border-right:1px solid var(--line);padding-right:44px;display:flex;flex-direction:column;align-items:flex-start}
[data-mv-theme-root="movadly-first-theme"] .mega-promo h4{font-size:21px;font-weight:700;letter-spacing:-.02em;margin:15px 0 11px;line-height:1.22}
[data-mv-theme-root="movadly-first-theme"] .mega-promo p{font-size:14px;color:var(--text-mute);line-height:1.55;margin-bottom:22px}
[data-mv-theme-root="movadly-first-theme"] .mega-cta{display:inline-flex;align-items:center;gap:8px;font-size:14px;font-weight:600;color:var(--theme-accent);margin-top:auto}
[data-mv-theme-root="movadly-first-theme"] .mega-cta svg{width:15px;height:15px;transition:transform .3s}
[data-mv-theme-root="movadly-first-theme"] .mega-cta:hover svg{transform:translateX(3px)}
[data-mv-theme-root="movadly-first-theme"] .mega-cols{display:grid;grid-template-columns:repeat(3,1fr);gap:4px}
[data-mv-theme-root="movadly-first-theme"] .mega-item{display:flex;gap:13px;padding:15px;border-radius:13px;transition:background .25s;align-items:flex-start}
[data-mv-theme-root="movadly-first-theme"] .mega-item:hover{background:color-mix(in srgb,var(--theme-text) 5%,transparent)}
[data-mv-theme-root="movadly-first-theme"] .mega-ico{
  width:38px;height:38px;flex-shrink:0;border-radius:10px;display:grid;place-items:center;
  background:var(--gradient-soft);border:1px solid color-mix(in srgb,var(--theme-accent) 22%,transparent);color:var(--theme-accent);
}
[data-mv-theme-root="movadly-first-theme"] .mega-ico svg{width:19px;height:19px}
[data-mv-theme-root="movadly-first-theme"] .mega-item h4{font-size:14.5px;font-weight:600;color:var(--theme-text);margin-bottom:2px;letter-spacing:-.01em}
[data-mv-theme-root="movadly-first-theme"] .mega-item p{font-size:12.7px;color:var(--text-mute);line-height:1.45}

[data-mv-theme-root="movadly-first-theme"] .menu-toggle{display:none;background:none;border:0;color:var(--theme-text);width:42px;height:42px;border-radius:10px}
[data-mv-theme-root="movadly-first-theme"] .menu-toggle:hover{background:color-mix(in srgb,var(--theme-text) 6%,transparent)}
[data-mv-theme-root="movadly-first-theme"] .menu-toggle svg{width:24px;height:24px;margin:auto}

/* mobile drawer */
[data-mv-theme-root="movadly-first-theme"].mobile-menu-open {
  overflow: hidden;
}
[data-mv-theme-root="movadly-first-theme"] .mobile-site-menu.mobile-drawer{
  position:fixed;inset:0;z-index:200;width:100vw;height:100vh;height:100dvh;max-height:none;
  padding:22px;display:flex;flex-direction:column;overflow-y:auto;
  background:var(--theme-bg,#06090c);backdrop-filter:none;isolation:isolate;
  opacity:0;visibility:hidden;transform:translateY(-6px);pointer-events:none;
  transition:opacity .35s ease,transform .35s ease,visibility .35s;
}
[data-mv-theme-root="movadly-first-theme"] .mobile-site-menu.mobile-drawer.is-open,
[data-mv-theme-root="movadly-first-theme"] .mobile-site-menu.mobile-drawer.open{
  opacity:1!important;visibility:visible!important;transform:none;pointer-events:auto;
}
@media (prefers-reduced-motion:reduce){
  [data-mv-theme-root="movadly-first-theme"] .mobile-site-menu.mobile-drawer{transition:none}
}
[data-mv-theme-root="movadly-first-theme"] .md-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:26px}
[data-mv-theme-root="movadly-first-theme"] .md-top .brand svg{height:28px}
[data-mv-theme-root="movadly-first-theme"] .md-top .brand img{display:block;width:150px;height:auto;max-width:100%;max-height:42px}
[data-mv-theme-root="movadly-first-theme"] .mobile-menu-toggle.is-open{display:none!important}
[data-mv-theme-root="movadly-first-theme"] .mobile-site-menu .md-close{
  position:relative;z-index:210;background:none;border:0;color:#fff;width:42px;height:42px;
}
[data-mv-theme-root="movadly-first-theme"] .mobile-site-menu .md-close svg{
  display:block;width:26px;height:26px;margin:auto;fill:none;
}
[data-mv-theme-root="movadly-first-theme"] .mobile-site-menu .md-close svg path{stroke:#fff!important}
[data-mv-theme-root="movadly-first-theme"] .md-links{display:flex;flex-direction:column}
[data-mv-theme-root="movadly-first-theme"] .md-links>.md-single,
[data-mv-theme-root="movadly-first-theme"] .md-links>.md-acc{border-bottom:1px solid var(--line)}
[data-mv-theme-root="movadly-first-theme"] .md-single{padding:16px 8px;font-size:19px;font-weight:600;letter-spacing:-.01em;color:var(--theme-text);display:block}
[data-mv-theme-root="movadly-first-theme"] .md-row{width:100%;padding:16px 8px;font-size:19px;font-weight:600;letter-spacing:-.01em;background:none;border:0;color:var(--theme-text);display:flex;align-items:center;justify-content:space-between;cursor:pointer;text-align:left}
[data-mv-theme-root="movadly-first-theme"] .md-plus{position:relative;width:22px;height:22px;flex-shrink:0}
[data-mv-theme-root="movadly-first-theme"] .md-plus::before,
[data-mv-theme-root="movadly-first-theme"] .md-plus::after{content:"";position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);background:var(--theme-accent);border-radius:2px}
[data-mv-theme-root="movadly-first-theme"] .md-plus::before{width:15px;height:2.5px}
[data-mv-theme-root="movadly-first-theme"] .md-plus::after{width:2.5px;height:15px;transition:transform .3s var(--ease)}
[data-mv-theme-root="movadly-first-theme"] .md-acc.open .md-plus::after{transform:translate(-50%,-50%) scaleY(0)}
[data-mv-theme-root="movadly-first-theme"] .md-sub{overflow:hidden;max-height:0;transition:max-height .4s var(--ease);padding-left:10px}
[data-mv-theme-root="movadly-first-theme"] .md-acc.open .md-sub{max-height:400px}
[data-mv-theme-root="movadly-first-theme"] .md-sub a{display:block;padding:12px 8px;font-size:16px;font-weight:500;color:var(--theme-text-muted)}
[data-mv-theme-root="movadly-first-theme"] .md-sub a:not(:last-child){border-bottom:1px solid color-mix(in srgb,var(--theme-text) 5%,transparent)}
[data-mv-theme-root="movadly-first-theme"] .md-cta{display:flex;flex-direction:column;gap:11px;margin-top:auto;padding-top:26px}
[data-mv-theme-root="movadly-first-theme"] .md-cta .btn{display:flex!important;align-items:center;justify-content:center;width:100%;min-height:50px}
[data-mv-theme-root="movadly-first-theme"] .md-cta .btn-ghost{border:1px solid var(--theme-border,var(--line));background:transparent;color:var(--theme-text)!important;border-radius:100px}
[data-mv-theme-root="movadly-first-theme"] .md-cta .btn-primary{border:1px solid transparent;background:var(--accent);color:#04211d!important;border-radius:100px}

/* ============================================================
   HERO
============================================================ */
[data-mv-theme-root="movadly-first-theme"] .hero{
  position:relative;display:block;grid-template-columns:none;min-height:auto;
  padding:150px 0 90px;overflow:hidden;
}
[data-mv-theme-root="movadly-first-theme"] .hero-bg{position:absolute;inset:0;z-index:0;pointer-events:none}
[data-mv-theme-root="movadly-first-theme"] .hero-bg::before{
  content:"";position:absolute;top:-10%;right:-5%;width:70%;height:120%;
  background:radial-gradient(circle at 70% 35%,color-mix(in srgb,var(--theme-primary) 20%,transparent),transparent 55%);
  filter:blur(10px);
}
[data-mv-theme-root="movadly-first-theme"] .hero-grid{
  position:absolute;inset:0;
  background-image:linear-gradient(var(--line) 1px,transparent 1px),linear-gradient(90deg,var(--line) 1px,transparent 1px);
  background-size:54px 54px;
  -webkit-mask-image:radial-gradient(circle at 50% 30%,var(--theme-bg) 0%,transparent 75%);
  mask-image:radial-gradient(circle at 50% 30%,var(--theme-bg) 0%,transparent 75%);
  opacity:.5;
}
[data-mv-theme-root="movadly-first-theme"] .hero-inner{position:relative;z-index:2;display:grid;grid-template-columns:1.05fr .95fr;column-gap:40px;row-gap:20px;align-items:center;grid-template-areas:"top visual" "bottom visual"}
[data-mv-theme-root="movadly-first-theme"] .hero-top{grid-area:top;max-width:600px;align-self:end}
[data-mv-theme-root="movadly-first-theme"] .hero-bottom{grid-area:bottom;max-width:600px;align-self:start}
[data-mv-theme-root="movadly-first-theme"] .hero-visual{grid-area:visual}
[data-mv-theme-root="movadly-first-theme"] .hero h1{font-size:clamp(38px,5.6vw,66px);margin:22px 0 0;color:var(--theme-heading);font-weight:800;letter-spacing:-.03em}
[data-mv-theme-root="movadly-first-theme"] .hero h1 em{font-style:normal}
[data-mv-theme-root="movadly-first-theme"] .hero-sub{font-size:clamp(16px,1.7vw,19px);color:var(--theme-text-muted);max-width:520px;margin-bottom:34px}
[data-mv-theme-root="movadly-first-theme"] .hero-cta{display:flex;gap:12px;flex-wrap:wrap}
[data-mv-theme-root="movadly-first-theme"] .hero-trust{display:flex;align-items:center;gap:14px;margin-top:34px;color:var(--text-mute);font-size:13.5px}
[data-mv-theme-root="movadly-first-theme"] .hero-trust .dots{display:flex}
[data-mv-theme-root="movadly-first-theme"] .hero-trust .dots span{width:26px;height:26px;border-radius:50%;border:2px solid var(--theme-bg);margin-left:-8px;background:var(--theme-surface-3);display:grid;place-items:center;font-size:11px;color:var(--theme-accent);font-weight:700}
[data-mv-theme-root="movadly-first-theme"] .hero-trust .dots span:first-child{margin-left:0}

/* hero visual */
[data-mv-theme-root="movadly-first-theme"] .hero-visual{position:relative;height:520px}
[data-mv-theme-root="movadly-first-theme"] .hero-orb{
  position:absolute;inset:0;margin:auto;width:88%;height:88%;top:0;bottom:0;right:0;
  border-radius:26px;overflow:hidden;
  background:radial-gradient(circle at 60% 40%,color-mix(in srgb,var(--theme-accent-ink) 72%,var(--theme-surface)),var(--theme-bg) 70%);
  border:1px solid var(--line);
  box-shadow:0 50px 120px -40px color-mix(in srgb,var(--accent-3) 50%,transparent),inset 0 0 80px color-mix(in srgb,var(--theme-bg) 60%,transparent);
}
[data-mv-theme-root="movadly-first-theme"] .hero-orb img{width:100%;height:100%;object-fit:cover;object-position:center;opacity:.96;
  -webkit-mask-image:linear-gradient(to left,var(--theme-bg) 55%,transparent 100%);
  mask-image:linear-gradient(to left,var(--theme-bg) 55%,transparent 100%);}
[data-mv-theme-root="movadly-first-theme"] .hero-orb::after{content:"";position:absolute;inset:0;background:linear-gradient(120deg,color-mix(in srgb,var(--theme-bg) 55%,transparent),transparent 45%)}
[data-mv-theme-root="movadly-first-theme"] .chip{
  position:absolute;z-index:3;display:flex;align-items:center;gap:9px;
  background:color-mix(in srgb,var(--theme-surface) 82%,transparent);backdrop-filter:blur(12px);
  border:1px solid var(--line-2);border-radius:13px;padding:10px 14px;
  box-shadow:0 20px 50px -20px color-mix(in srgb,var(--theme-bg) 70%,transparent);
  animation:mvExactFloat 6s ease-in-out infinite;
}
[data-mv-theme-root="movadly-first-theme"] .chip .ci{width:30px;height:30px;border-radius:8px;background:var(--gradient-soft);border:1px solid color-mix(in srgb,var(--theme-accent) 25%,transparent);display:grid;place-items:center;color:var(--theme-accent)}
[data-mv-theme-root="movadly-first-theme"] .chip .ci svg{width:16px;height:16px}
[data-mv-theme-root="movadly-first-theme"] .chip b{font-size:13px;font-weight:600;display:block;letter-spacing:-.01em}
[data-mv-theme-root="movadly-first-theme"] .chip small{font-size:11px;color:var(--text-mute)}
[data-mv-theme-root="movadly-first-theme"] .chip-1{top:8%;left:-4%;animation-delay:0s}
[data-mv-theme-root="movadly-first-theme"] .chip-2{top:44%;right:-6%;animation-delay:-2s}
[data-mv-theme-root="movadly-first-theme"] .chip-3{bottom:9%;left:2%;animation-delay:-4s}
@keyframes mvExactFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-14px)}}

/* hero connected-modules diagram */
[data-mv-theme-root="movadly-first-theme"] .hero-visual{display:flex;align-items:center;justify-content:center}
[data-mv-theme-root="movadly-first-theme"] .diag-glow{position:absolute;inset:6%;background:radial-gradient(circle at 50% 50%,color-mix(in srgb,var(--theme-primary) 22%,transparent),transparent 62%);filter:blur(6px);pointer-events:none;z-index:0}
[data-mv-theme-root="movadly-first-theme"] .mv-diagram{position:relative;z-index:1;width:100%;height:100%;max-width:560px;margin:auto}
[data-mv-theme-root="movadly-first-theme"] .mv-diagram svg{width:100%;height:100%;overflow:visible;display:block}
[data-mv-theme-root="movadly-first-theme"] .orbit-ring{fill:none;stroke:color-mix(in srgb,var(--theme-accent) 14%,transparent);stroke-width:1;stroke-dasharray:2 9;transform-box:fill-box;transform-origin:center;animation:mvExactSpin 48s linear infinite}
[data-mv-theme-root="movadly-first-theme"] .orbit-ring.r2{stroke:color-mix(in srgb,var(--theme-accent) 6%,transparent);animation-duration:78s;animation-direction:reverse}
[data-mv-theme-root="movadly-first-theme"] .conn{fill:none;stroke:color-mix(in srgb,var(--theme-accent) 16%,transparent);stroke-width:1.4}
[data-mv-theme-root="movadly-first-theme"] .pulse{fill:none;stroke:var(--theme-accent);stroke-width:2.4;stroke-linecap:round;stroke-dasharray:2.5 97.5;animation:mvExactDashFlow 2.6s linear infinite;filter:drop-shadow(0 0 4px color-mix(in srgb,var(--theme-accent) 90%,transparent))}
[data-mv-theme-root="movadly-first-theme"] .node{transform-box:fill-box;transform-origin:center;animation:mvExactNodeFloat 6s ease-in-out infinite}
[data-mv-theme-root="movadly-first-theme"] .node-disc{fill:color-mix(in srgb,var(--theme-surface) 72%,var(--theme-surface-2))}
[data-mv-theme-root="movadly-first-theme"] .node-ring{fill:none;stroke:color-mix(in srgb,var(--theme-accent) 42%,transparent);stroke-width:1.5}
[data-mv-theme-root="movadly-first-theme"] .node:hover .node-ring{stroke:var(--theme-accent)}
[data-mv-theme-root="movadly-first-theme"] .node-ico{color:var(--theme-accent);overflow:visible}
[data-mv-theme-root="movadly-first-theme"] .diag-label{fill:var(--theme-text-muted);font-size:12.5px;font-weight:600;font-family:var(--font);letter-spacing:.01em}
[data-mv-theme-root="movadly-first-theme"] .core-pulse{fill:none;stroke:var(--theme-accent);stroke-width:1.4;transform-box:fill-box;transform-origin:center;animation:mvExactCorePulse 3.4s ease-out infinite}
[data-mv-theme-root="movadly-first-theme"] .core-disc{fill:color-mix(in srgb,var(--theme-bg) 48%,var(--theme-surface));stroke:color-mix(in srgb,var(--theme-accent) 55%,transparent);stroke-width:2;filter:drop-shadow(0 0 16px color-mix(in srgb,var(--theme-primary) 60%,transparent))}
[data-mv-theme-root="movadly-first-theme"] .core-mark path{fill:var(--theme-accent)}
[data-mv-theme-root="movadly-first-theme"] .core-mark{overflow:visible}
@keyframes mvExactNodeFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}
@keyframes mvExactDashFlow{from{stroke-dashoffset:100}to{stroke-dashoffset:0}}
@keyframes mvExactCorePulse{0%{transform:scale(.5);opacity:.6}100%{transform:scale(2.3);opacity:0}}
@keyframes mvExactSpin{to{transform:rotate(360deg)}}

/* ============================================================
   MARQUEE
============================================================ */
[data-mv-theme-root="movadly-first-theme"] .marquee-sec{padding:30px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:var(--theme-surface)}
[data-mv-theme-root="movadly-first-theme"] .marquee-lbl{text-align:center;font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:var(--text-mute);margin-bottom:20px}
[data-mv-theme-root="movadly-first-theme"] .marquee{display:flex;overflow:hidden;-webkit-mask-image:linear-gradient(90deg,transparent,var(--theme-bg) 8%,var(--theme-bg) 92%,transparent);mask-image:linear-gradient(90deg,transparent,var(--theme-bg) 8%,var(--theme-bg) 92%,transparent)}
[data-mv-theme-root="movadly-first-theme"] .marquee-track{display:flex;gap:52px;padding-right:52px;animation:mvExactScroll 34s linear infinite;flex-shrink:0}
[data-mv-theme-root="movadly-first-theme"] .marquee:hover .marquee-track{animation-play-state:paused}
[data-mv-theme-root="movadly-first-theme"] .marquee-track span{font-size:17px;font-weight:600;color:var(--theme-text-muted);white-space:nowrap;display:flex;align-items:center;gap:52px}
[data-mv-theme-root="movadly-first-theme"] .marquee-track span::after{content:"";width:5px;height:5px;border-radius:50%;background:var(--theme-accent);opacity:.5}
@keyframes mvExactScroll{to{transform:translateX(-50%)}}

/* ============================================================
   SECTION SHELL
============================================================ */
[data-mv-theme-root="movadly-first-theme"] section{position:relative}
[data-mv-theme-root="movadly-first-theme"] .sec{padding:100px 0}
[data-mv-theme-root="movadly-first-theme"] .sec-head{max-width:680px;margin-bottom:56px}
[data-mv-theme-root="movadly-first-theme"] .sec-head.center{margin-left:auto;margin-right:auto;text-align:center}
[data-mv-theme-root="movadly-first-theme"] .sec-head h2{font-size:clamp(30px,3.8vw,46px);margin:18px 0 18px;font-weight:800}
[data-mv-theme-root="movadly-first-theme"] .sec-head p{font-size:clamp(16px,1.5vw,18px);color:var(--theme-text-muted)}

/* ============================================================
   PROBLEM (bento pain grid)
============================================================ */
[data-mv-theme-root="movadly-first-theme"] .problem{background:linear-gradient(180deg,var(--theme-bg),var(--theme-surface) 60%,var(--theme-bg))}
[data-mv-theme-root="movadly-first-theme"] .pain-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
[data-mv-theme-root="movadly-first-theme"] .pain{
  background:var(--theme-surface-2);border:1px solid var(--line);border-radius:var(--radius);padding:26px;
  transition:transform .45s var(--ease),border-color .35s,background .35s;position:relative;overflow:hidden;
}
[data-mv-theme-root="movadly-first-theme"] .pain::before{content:"";position:absolute;inset:0;background:var(--gradient-soft);opacity:0;transition:opacity .4s}
[data-mv-theme-root="movadly-first-theme"] .pain:hover{transform:translateY(-5px);border-color:color-mix(in srgb,var(--theme-accent) 30%,transparent)}
[data-mv-theme-root="movadly-first-theme"] .pain:hover::before{opacity:1}
[data-mv-theme-root="movadly-first-theme"] .pain>*{position:relative;z-index:1}
[data-mv-theme-root="movadly-first-theme"] .pain-ico{width:44px;height:44px;border-radius:11px;background:color-mix(in srgb,var(--theme-text) 5%,transparent);border:1px solid var(--line);display:grid;place-items:center;color:var(--theme-accent);margin-bottom:18px}
[data-mv-theme-root="movadly-first-theme"] .pain-ico svg{width:22px;height:22px}
[data-mv-theme-root="movadly-first-theme"] .pain h3{font-size:17.5px;font-weight:600;margin-bottom:8px;letter-spacing:-.01em}
[data-mv-theme-root="movadly-first-theme"] .pain p{font-size:14px;color:var(--text-mute);line-height:1.55}

/* ============================================================
   SOLUTION statement
============================================================ */
[data-mv-theme-root="movadly-first-theme"] .solution{text-align:center;padding:110px 0;overflow:hidden}
[data-mv-theme-root="movadly-first-theme"] .solution .halo{position:absolute;top:0;left:50%;transform:translateX(-50%);width:600px;height:400px;background:radial-gradient(circle,color-mix(in srgb,var(--theme-primary) 14%,transparent),transparent 62%);pointer-events:none}
[data-mv-theme-root="movadly-first-theme"] .solution h2{font-size:clamp(32px,5vw,58px);max-width:14ch;margin:20px auto 24px;font-weight:800;position:relative}
[data-mv-theme-root="movadly-first-theme"] .solution p{max-width:600px;margin:0 auto 38px;color:var(--theme-text-muted);font-size:clamp(16px,1.6vw,18.5px);position:relative}

/* ============================================================
   MODULES (bento)
============================================================ */
[data-mv-theme-root="movadly-first-theme"] .modules{background:var(--theme-surface)}
[data-mv-theme-root="movadly-first-theme"] .mod-grid{display:grid;grid-template-columns:repeat(6,1fr);grid-auto-rows:minmax(210px,auto);gap:16px}
[data-mv-theme-root="movadly-first-theme"] .mod{
  border:1px solid var(--line);border-radius:var(--radius);padding:26px;
  background:var(--theme-surface-2);position:relative;overflow:hidden;
  transition:transform .5s var(--ease),border-color .4s;display:flex;flex-direction:column;
}
[data-mv-theme-root="movadly-first-theme"] .mod::after{content:"";position:absolute;width:280px;height:280px;border-radius:50%;
  background:radial-gradient(circle,color-mix(in srgb,var(--theme-primary) 16%,transparent),transparent 68%);
  top:-120px;right:-100px;opacity:0;transition:opacity .5s;pointer-events:none}
[data-mv-theme-root="movadly-first-theme"] .mod:hover{transform:translateY(-6px);border-color:color-mix(in srgb,var(--theme-accent) 32%,transparent)}
[data-mv-theme-root="movadly-first-theme"] .mod:hover::after{opacity:1}
[data-mv-theme-root="movadly-first-theme"] .mod:hover .mod-arrow{transform:translate(3px,-3px);color:var(--theme-accent)}
[data-mv-theme-root="movadly-first-theme"] .mod-ico{width:46px;height:46px;border-radius:12px;background:var(--gradient-soft);border:1px solid color-mix(in srgb,var(--theme-accent) 25%,transparent);display:grid;place-items:center;color:var(--theme-accent);margin-bottom:auto}
[data-mv-theme-root="movadly-first-theme"] .mod-ico svg{width:23px;height:23px}
[data-mv-theme-root="movadly-first-theme"] .mod-body{margin-top:20px}
[data-mv-theme-root="movadly-first-theme"] .mod h3{font-size:20px;font-weight:700;margin-bottom:7px;letter-spacing:-.02em;display:flex;align-items:center;gap:8px}
[data-mv-theme-root="movadly-first-theme"] .mod h3 .tag{font-size:10.5px;font-weight:700;letter-spacing:.08em;color:var(--theme-accent);border:1px solid color-mix(in srgb,var(--theme-accent) 30%,transparent);border-radius:6px;padding:2px 7px}
[data-mv-theme-root="movadly-first-theme"] .mod p{font-size:14.3px;color:var(--theme-text-muted);line-height:1.55;margin-bottom:16px}
[data-mv-theme-root="movadly-first-theme"] .mod-link{display:inline-flex;align-items:center;gap:7px;font-size:13.5px;font-weight:600;color:var(--theme-text)}
[data-mv-theme-root="movadly-first-theme"] .mod-arrow{transition:transform .4s var(--ease),color .3s}
[data-mv-theme-root="movadly-first-theme"] .mod-arrow svg{width:15px;height:15px}
/* feature module (large) */
[data-mv-theme-root="movadly-first-theme"] .mod.feat{grid-column:span 3;grid-row:span 2;background:
  radial-gradient(120% 120% at 100% 0%,color-mix(in srgb,var(--accent-3) 16%,transparent),transparent 55%),var(--theme-surface-3);
  justify-content:flex-end}
[data-mv-theme-root="movadly-first-theme"] .mod.feat .mod-ico{width:54px;height:54px;margin-bottom:0}
[data-mv-theme-root="movadly-first-theme"] .mod.feat .mod-body{margin-top:auto;padding-top:26px}
[data-mv-theme-root="movadly-first-theme"] .mod.feat h3{font-size:27px}
[data-mv-theme-root="movadly-first-theme"] .mod.feat p{font-size:15.5px;max-width:42ch}
[data-mv-theme-root="movadly-first-theme"] .mod.feat .mock{position:absolute;top:26px;right:26px;left:26px;height:44%;
  border:1px solid var(--line);border-radius:12px;background:linear-gradient(180deg,color-mix(in srgb,var(--theme-text) 4%,transparent),transparent);
  overflow:hidden}
[data-mv-theme-root="movadly-first-theme"] .mod.feat .mock::after{content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(105deg,transparent 42%,color-mix(in srgb,var(--theme-accent) 14%,transparent) 50%,transparent 58%);
  transform:translateX(-120%);animation:mvExactMockShine 4.5s ease-in-out infinite}
@keyframes mvExactMockShine{0%,32%{transform:translateX(-120%)}56%{transform:translateX(120%)}100%{transform:translateX(120%)}}
[data-mv-theme-root="movadly-first-theme"] .mod.span-2{grid-column:span 3}
[data-mv-theme-root="movadly-first-theme"] .mod.span-hex{grid-column:span 2}

/* mini mock inside feature */
[data-mv-theme-root="movadly-first-theme"] .mock-row{display:flex;gap:6px;padding:12px}
[data-mv-theme-root="movadly-first-theme"] .mock-row i{width:9px;height:9px;border-radius:50%;background:var(--line-2)}
[data-mv-theme-root="movadly-first-theme"] .mock-bars{padding:4px 14px}
[data-mv-theme-root="movadly-first-theme"] .mock-bars b{display:block;height:8px;border-radius:4px;background:color-mix(in srgb,var(--theme-accent) 25%,transparent);margin-bottom:8px;transform-origin:left;animation:mvExactMockBar 4.5s ease-in-out infinite}
[data-mv-theme-root="movadly-first-theme"] .mock-bars b:nth-child(1){animation-delay:.2s}
[data-mv-theme-root="movadly-first-theme"] .mock-bars b:nth-child(2){width:70%;background:var(--theme-border);animation-delay:.6s}
[data-mv-theme-root="movadly-first-theme"] .mock-bars b:nth-child(3){width:45%;background:var(--theme-border);animation-delay:1s}
@keyframes mvExactMockBar{0%{transform:scaleX(0)}14%{transform:scaleX(1)}86%{transform:scaleX(1)}96%{transform:scaleX(0)}100%{transform:scaleX(0)}}
/* gentle idle glow on module icons */
[data-mv-theme-root="movadly-first-theme"] .mod-ico{animation:mvExactIcoBreathe 4.5s ease-in-out infinite}
[data-mv-theme-root="movadly-first-theme"] .mod:nth-child(2) .mod-ico{animation-delay:.6s}
[data-mv-theme-root="movadly-first-theme"] .mod:nth-child(3) .mod-ico{animation-delay:1.2s}
[data-mv-theme-root="movadly-first-theme"] .mod:nth-child(4) .mod-ico{animation-delay:1.8s}
[data-mv-theme-root="movadly-first-theme"] .mod:nth-child(5) .mod-ico{animation-delay:2.4s}
[data-mv-theme-root="movadly-first-theme"] .mod:nth-child(6) .mod-ico{animation-delay:3s}
@keyframes mvExactIcoBreathe{0%,100%{box-shadow:0 0 0 0 color-mix(in srgb,var(--theme-accent) 0%,transparent)}50%{box-shadow:0 0 20px -2px color-mix(in srgb,var(--theme-accent) 40%,transparent)}}

/* ============================================================
   CONNECT OS — channels + inbox + pipeline showcase
============================================================ */
[data-mv-theme-root="movadly-first-theme"] .cx{background:linear-gradient(180deg,var(--theme-bg),var(--theme-surface) 55%,var(--theme-bg))}
[data-mv-theme-root="movadly-first-theme"] .cx-grid{display:grid;grid-template-columns:1fr 1fr;gap:52px;align-items:center}
[data-mv-theme-root="movadly-first-theme"] .cx-copy{max-width:520px}
[data-mv-theme-root="movadly-first-theme"] .cx-copy h2{font-size:clamp(28px,3.5vw,44px);margin:16px 0 18px;font-weight:800}
[data-mv-theme-root="movadly-first-theme"] .cx-copy>p{color:var(--theme-text-muted);font-size:clamp(15.5px,1.5vw,17.5px);margin-bottom:26px}
[data-mv-theme-root="movadly-first-theme"] .cx-list{list-style:none;display:flex;flex-direction:column;gap:15px;margin-bottom:32px}
[data-mv-theme-root="movadly-first-theme"] .cx-list li{display:flex;gap:12px;align-items:flex-start;font-size:15px}
[data-mv-theme-root="movadly-first-theme"] .cx-list li svg{width:22px;height:22px;flex-shrink:0;color:var(--theme-accent);margin-top:1px}
[data-mv-theme-root="movadly-first-theme"] .cx-list li b{font-weight:600;color:var(--theme-text)}
[data-mv-theme-root="movadly-first-theme"] .cx-list li small{display:block;color:var(--text-mute);font-size:13px;font-weight:400;margin-top:2px}

[data-mv-theme-root="movadly-first-theme"] .cx-stage{position:relative;width:100%;max-width:520px;margin:0 auto;aspect-ratio:1/1}
[data-mv-theme-root="movadly-first-theme"] .cx-lines{position:absolute;inset:0;width:100%;height:100%;overflow:visible}
[data-mv-theme-root="movadly-first-theme"] .cx-base{fill:none;stroke:color-mix(in srgb,var(--theme-accent) 10%,transparent);stroke-width:.5}
[data-mv-theme-root="movadly-first-theme"] .cx-flow{fill:none;stroke:var(--theme-accent);stroke-width:1.1;stroke-linecap:round;stroke-dasharray:3 97;filter:drop-shadow(0 0 2px color-mix(in srgb,var(--theme-accent) 80%,transparent));animation:mvExactCxFlow 2.6s linear infinite}
@keyframes mvExactCxFlow{from{stroke-dashoffset:100}to{stroke-dashoffset:0}}

[data-mv-theme-root="movadly-first-theme"] .cx-ch{position:absolute;left:var(--x);top:var(--y);transform:translate(-50%,-50%);display:flex;flex-direction:column;align-items:center;gap:6px;animation:mvExactCxFloat 6s ease-in-out infinite;animation-delay:var(--d,0s)}
[data-mv-theme-root="movadly-first-theme"] .cx-tile{width:46px;height:46px;border-radius:13px;display:grid;place-items:center;background:var(--theme-surface-3);border:1px solid color-mix(in srgb,var(--theme-accent) 28%,transparent);color:var(--theme-accent);position:relative;box-shadow:0 8px 20px -10px color-mix(in srgb,var(--theme-bg) 60%,transparent)}
[data-mv-theme-root="movadly-first-theme"] .cx-tile svg{width:24px;height:24px}
[data-mv-theme-root="movadly-first-theme"] .cx-tile::after{content:"";position:absolute;inset:-4px;border-radius:16px;border:1.5px solid var(--theme-accent);opacity:0;animation:mvExactCxPing 2.6s ease-out infinite;animation-delay:var(--d,0s)}
[data-mv-theme-root="movadly-first-theme"] .cx-ch small{font-size:10.5px;font-weight:600;color:var(--text-mute);white-space:nowrap}
@keyframes mvExactCxFloat{0%,100%{transform:translate(-50%,-50%)}50%{transform:translate(-50%,calc(-50% - 6px))}}
@keyframes mvExactCxPing{0%{opacity:.5;transform:scale(1)}70%,100%{opacity:0;transform:scale(1.35)}}

[data-mv-theme-root="movadly-first-theme"] .cx-inbox{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:62%;background:color-mix(in srgb,var(--theme-surface) 98%,transparent);border:1px solid color-mix(in srgb,var(--theme-accent) 50%,transparent);border-radius:16px;padding:13px;box-shadow:0 26px 60px -18px color-mix(in srgb,var(--theme-bg) 80%,transparent),0 0 44px -8px color-mix(in srgb,var(--theme-primary) 45%,transparent);z-index:2}
[data-mv-theme-root="movadly-first-theme"] .cx-ib-head{display:flex;align-items:center;gap:7px;margin-bottom:11px}
[data-mv-theme-root="movadly-first-theme"] .cx-ib-ico{width:24px;height:24px;border-radius:7px;background:var(--gradient-soft);border:1px solid color-mix(in srgb,var(--theme-accent) 30%,transparent);display:grid;place-items:center;color:var(--theme-accent);flex-shrink:0}
[data-mv-theme-root="movadly-first-theme"] .cx-ib-ico svg{width:14px;height:14px}
[data-mv-theme-root="movadly-first-theme"] .cx-ib-head b{font-size:12.5px;font-weight:700;letter-spacing:-.01em}
[data-mv-theme-root="movadly-first-theme"] .cx-count{margin-left:auto;font-size:10px;font-weight:700;color:var(--theme-accent-ink);background:var(--theme-accent);border-radius:20px;padding:3px 8px;white-space:nowrap}
[data-mv-theme-root="movadly-first-theme"] .cx-pipe{position:relative;display:flex;gap:5px;height:80px;margin-bottom:11px}
[data-mv-theme-root="movadly-first-theme"] .cx-lane{flex:1;background:color-mix(in srgb,var(--theme-text) 2%,transparent);border:1px solid var(--line);border-radius:8px;padding:6px 3px}
[data-mv-theme-root="movadly-first-theme"] .cx-lane h6{font-size:8px;text-transform:uppercase;letter-spacing:.03em;color:var(--text-mute);text-align:center;font-weight:700}
[data-mv-theme-root="movadly-first-theme"] .cx-deal{position:absolute;top:23px;width:31%;left:3%;background:var(--theme-surface-3);border:1px solid color-mix(in srgb,var(--theme-accent) 55%,transparent);border-radius:7px;padding:7px 7px;box-shadow:0 8px 18px -8px color-mix(in srgb,var(--theme-bg) 60%,transparent);animation:mvExactCxDeal 6s ease-in-out infinite}
[data-mv-theme-root="movadly-first-theme"] .cx-deal b{font-size:9px;display:block;letter-spacing:-.01em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
[data-mv-theme-root="movadly-first-theme"] .cx-deal small{font-size:9px;color:var(--theme-accent);font-weight:700}
@keyframes mvExactCxDeal{0%,20%{left:3%}30%,50%{left:34.5%}60%,100%{left:66%}}
[data-mv-theme-root="movadly-first-theme"] .cx-rev{display:flex;align-items:center;gap:8px;position:relative}
[data-mv-theme-root="movadly-first-theme"] .cx-rev span{font-size:10.5px;color:var(--text-mute)}
[data-mv-theme-root="movadly-first-theme"] .cx-rev b{margin-left:auto;font-size:16px;font-weight:800;color:var(--theme-accent);letter-spacing:-.02em;animation:mvExactCxRevPop 6s ease-in-out infinite}
[data-mv-theme-root="movadly-first-theme"] .cx-toast{position:absolute;right:0;top:-15px;font-size:9.5px;font-weight:700;color:var(--theme-accent-ink);background:var(--theme-accent);padding:3px 8px;border-radius:20px;opacity:0;animation:mvExactCxToast 6s ease-in-out infinite}
@keyframes mvExactCxRevPop{0%,58%{transform:scale(1)}64%{transform:scale(1.14)}72%{transform:scale(1)}100%{transform:scale(1)}}
@keyframes mvExactCxToast{0%,54%{opacity:0;transform:translateY(5px)}62%{opacity:1;transform:translateY(-2px)}82%{opacity:1}92%,100%{opacity:0}}

@media(max-width:900px){
  [data-mv-theme-root="movadly-first-theme"] .cx-grid{grid-template-columns:1fr;gap:40px}
  [data-mv-theme-root="movadly-first-theme"] .cx-stage{order:-1;max-width:430px}
}
@media(max-width:560px){
  [data-mv-theme-root="movadly-first-theme"] .cx-tile{width:42px;height:42px;border-radius:12px}
  [data-mv-theme-root="movadly-first-theme"] .cx-tile svg{width:22px;height:22px}
  [data-mv-theme-root="movadly-first-theme"] .cx-ch small{font-size:9.5px}
  [data-mv-theme-root="movadly-first-theme"] .cx-inbox{width:70%}
  [data-mv-theme-root="movadly-first-theme"] .cx-deal b{font-size:8px}
}

/* ============================================================
   SHOWCASE / CTA band
============================================================ */
[data-mv-theme-root="movadly-first-theme"] .showcase{padding:0}
[data-mv-theme-root="movadly-first-theme"] .showcase-inner{
  background:radial-gradient(130% 120% at 85% 20%,color-mix(in srgb,var(--accent-3) 22%,transparent),transparent 55%),var(--theme-surface-3);
  border:1px solid var(--line);border-radius:26px;padding:60px;
  display:grid;grid-template-columns:1.1fr .9fr;gap:44px;align-items:center;overflow:hidden;position:relative;
}
[data-mv-theme-root="movadly-first-theme"] .showcase h2{font-size:clamp(28px,3.4vw,42px);margin:16px 0 18px;font-weight:800}
[data-mv-theme-root="movadly-first-theme"] .showcase p{color:var(--theme-text-muted);margin-bottom:28px;max-width:44ch}
[data-mv-theme-root="movadly-first-theme"] .showcase-visual{position:relative;height:300px}
[data-mv-theme-root="movadly-first-theme"] .showcase-visual .panel-card{
  position:absolute;background:color-mix(in srgb,var(--theme-surface) 90%,transparent);border:1px solid var(--line-2);border-radius:14px;padding:16px;
  box-shadow:0 30px 60px -25px color-mix(in srgb,var(--theme-bg) 70%,transparent);
}
[data-mv-theme-root="movadly-first-theme"] .pc-1{top:0;left:0;right:36px}
[data-mv-theme-root="movadly-first-theme"] .pc-2{bottom:0;left:44px;right:0}
[data-mv-theme-root="movadly-first-theme"] .pc-head{display:flex;align-items:center;gap:10px;margin-bottom:12px}
[data-mv-theme-root="movadly-first-theme"] .pc-head .d{width:34px;height:34px;border-radius:9px;background:var(--gradient-soft);border:1px solid color-mix(in srgb,var(--theme-accent) 25%,transparent);display:grid;place-items:center;color:var(--theme-accent)}
[data-mv-theme-root="movadly-first-theme"] .pc-head .d svg{width:17px;height:17px}
[data-mv-theme-root="movadly-first-theme"] .pc-head b{font-size:13.5px}
[data-mv-theme-root="movadly-first-theme"] .pc-head small{font-size:11px;color:var(--text-mute);display:block}
[data-mv-theme-root="movadly-first-theme"] .pc-bar{height:7px;border-radius:4px;background:color-mix(in srgb,var(--theme-text) 8%,transparent);margin-bottom:7px}
[data-mv-theme-root="movadly-first-theme"] .pc-bar.on{background:color-mix(in srgb,var(--theme-accent) 40%,transparent);width:64%}
[data-mv-theme-root="movadly-first-theme"] .pc-bar.mid{width:82%}

/* ============================================================
   STATS
============================================================ */
[data-mv-theme-root="movadly-first-theme"] .stats{background:var(--theme-bg);padding:20px 0}
[data-mv-theme-root="movadly-first-theme"] .stat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
[data-mv-theme-root="movadly-first-theme"] .stat{padding:28px 20px;text-align:center}
[data-mv-theme-root="movadly-first-theme"] .stat .num{font-size:clamp(36px,4.2vw,52px);font-weight:800;letter-spacing:-.03em;line-height:1}
[data-mv-theme-root="movadly-first-theme"] .stat .lbl{color:var(--theme-text-muted);font-size:14.5px;margin-top:14px}

/* ============================================================
   INDUSTRIES
============================================================ */
[data-mv-theme-root="movadly-first-theme"] .ind-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
[data-mv-theme-root="movadly-first-theme"] .ind{
  background:var(--theme-surface-2);border:1px solid var(--line);border-radius:15px;padding:22px;
  transition:transform .45s var(--ease),border-color .35s,background .35s;
}
[data-mv-theme-root="movadly-first-theme"] .ind:hover{transform:translateY(-5px);border-color:color-mix(in srgb,var(--theme-accent) 30%,transparent);background:var(--theme-surface-3)}
[data-mv-theme-root="movadly-first-theme"] .ind-ico{width:40px;height:40px;border-radius:10px;background:color-mix(in srgb,var(--theme-text) 5%,transparent);border:1px solid var(--line);display:grid;place-items:center;color:var(--theme-accent);margin-bottom:16px}
[data-mv-theme-root="movadly-first-theme"] .ind-ico svg{width:20px;height:20px}
[data-mv-theme-root="movadly-first-theme"] .ind h3{font-size:16px;font-weight:600;margin-bottom:6px;letter-spacing:-.01em}
[data-mv-theme-root="movadly-first-theme"] .ind p{font-size:13px;color:var(--text-mute);line-height:1.5}

/* ============================================================
   PRICING
============================================================ */
[data-mv-theme-root="movadly-first-theme"] .pricing{background:linear-gradient(180deg,var(--theme-bg),var(--theme-surface))}
[data-mv-theme-root="movadly-first-theme"] .price-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:12px;align-items:stretch}
[data-mv-theme-root="movadly-first-theme"] .price{
  background:var(--theme-surface-2);border:1px solid var(--line);border-radius:18px;padding:26px 20px;
  display:flex;flex-direction:column;transition:transform .45s var(--ease),border-color .35s;position:relative;
}
[data-mv-theme-root="movadly-first-theme"] .price:hover{transform:translateY(-6px);border-color:var(--line-2)}
[data-mv-theme-root="movadly-first-theme"] .price.pop{background:radial-gradient(130% 120% at 50% 0%,color-mix(in srgb,var(--accent-3) 18%,transparent),transparent 60%),var(--theme-surface-3);border-color:color-mix(in srgb,var(--theme-accent) 40%,transparent)}
[data-mv-theme-root="movadly-first-theme"] .price.pop::before{content:"Recommended";position:absolute;top:-11px;left:50%;transform:translateX(-50%);
  background:var(--theme-accent);color:var(--theme-accent-ink);font-size:10.5px;font-weight:700;letter-spacing:.05em;padding:5px 13px;border-radius:100px;white-space:nowrap}
[data-mv-theme-root="movadly-first-theme"] .price .pname{font-size:14px;font-weight:600;color:var(--theme-text-muted);text-transform:uppercase;letter-spacing:.08em}
[data-mv-theme-root="movadly-first-theme"] .price .pprice{font-size:34px;font-weight:800;letter-spacing:-.03em;margin:14px 0 0;line-height:1}
[data-mv-theme-root="movadly-first-theme"] .price .pprice small{font-size:14px;font-weight:500;color:var(--text-mute)}
[data-mv-theme-root="movadly-first-theme"] .price .pyear{font-size:11.5px;color:var(--theme-accent);margin:4px 0 0;min-height:15px;font-weight:500}
[data-mv-theme-root="movadly-first-theme"] .price .pdesc{font-size:12.7px;color:var(--text-mute);line-height:1.5;margin:14px 0 0;min-height:56px}
[data-mv-theme-root="movadly-first-theme"] .price .btn{width:100%;margin-top:auto;padding:12px 18px;font-size:14px}
[data-mv-theme-root="movadly-first-theme"] .price ul{list-style:none;margin:18px 0;display:flex;flex-direction:column;gap:10px}
[data-mv-theme-root="movadly-first-theme"] .price li{font-size:12.7px;color:var(--theme-text-muted);display:flex;gap:8px;align-items:flex-start;line-height:1.4}
[data-mv-theme-root="movadly-first-theme"] .price li svg{width:15px;height:15px;color:var(--theme-accent);flex-shrink:0;margin-top:1px}

/* ============================================================
   FAQ
============================================================ */
[data-mv-theme-root="movadly-first-theme"] .faq-wrap{max-width:820px;margin:0 auto}
[data-mv-theme-root="movadly-first-theme"] .faq{border:1px solid var(--line);border-radius:14px;background:var(--theme-surface-2);margin-bottom:12px;overflow:hidden;transition:border-color .3s}
[data-mv-theme-root="movadly-first-theme"] .faq[open]{border-color:color-mix(in srgb,var(--theme-accent) 30%,transparent)}
[data-mv-theme-root="movadly-first-theme"] .faq summary{
  padding:22px 24px;font-size:16.5px;font-weight:600;cursor:pointer;list-style:none;
  display:flex;align-items:center;justify-content:space-between;gap:16px;letter-spacing:-.01em;
}
[data-mv-theme-root="movadly-first-theme"] .faq summary::-webkit-details-marker{display:none}
[data-mv-theme-root="movadly-first-theme"] .faq summary .pm{width:26px;height:26px;flex-shrink:0;border-radius:8px;border:1px solid var(--line-2);display:grid;place-items:center;transition:transform .35s,background .3s,color .3s;position:relative}
[data-mv-theme-root="movadly-first-theme"] .faq summary .pm::before,
[data-mv-theme-root="movadly-first-theme"] .faq summary .pm::after{content:"";position:absolute;background:currentColor;border-radius:2px}
[data-mv-theme-root="movadly-first-theme"] .faq summary .pm::before{width:12px;height:2px}
[data-mv-theme-root="movadly-first-theme"] .faq summary .pm::after{width:2px;height:12px;transition:transform .35s}
[data-mv-theme-root="movadly-first-theme"] .faq[open] summary .pm{background:var(--theme-accent);color:var(--theme-accent-ink);border-color:var(--theme-accent)}
[data-mv-theme-root="movadly-first-theme"] .faq[open] summary .pm::after{transform:scaleY(0)}
[data-mv-theme-root="movadly-first-theme"] .faq-body{padding:0 24px 22px;color:var(--theme-text-muted);font-size:15px;line-height:1.6;max-width:66ch}

/* ============================================================
   FINAL CTA
============================================================ */
[data-mv-theme-root="movadly-first-theme"] .final{padding:120px 0}
[data-mv-theme-root="movadly-first-theme"] .final-card{
  position:relative;overflow:hidden;text-align:center;
  background:radial-gradient(120% 130% at 50% 0%,color-mix(in srgb,var(--accent-3) 28%,transparent),transparent 58%),var(--theme-surface-3);
  border:1px solid color-mix(in srgb,var(--theme-accent) 22%,transparent);border-radius:30px;padding:80px 40px;
}
[data-mv-theme-root="movadly-first-theme"] .final-card .g1{position:absolute;bottom:-40%;left:50%;transform:translateX(-50%);width:120%;height:80%;
  background:radial-gradient(circle,color-mix(in srgb,var(--theme-accent) 14%,transparent),transparent 60%);pointer-events:none}
[data-mv-theme-root="movadly-first-theme"] .final-card h2{font-size:clamp(32px,4.6vw,54px);max-width:16ch;margin:0 auto 22px;font-weight:800;position:relative}
[data-mv-theme-root="movadly-first-theme"] .final-card p{max-width:540px;margin:0 auto 36px;color:var(--theme-text-muted);font-size:17px;position:relative}
[data-mv-theme-root="movadly-first-theme"] .final-card .hero-cta{justify-content:center;position:relative}

/* ============================================================
   BLOG / RESOURCES
============================================================ */
[data-mv-theme-root="movadly-first-theme"] .blog{background:var(--theme-surface)}
[data-mv-theme-root="movadly-first-theme"] .blog-head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:44px;flex-wrap:wrap}
[data-mv-theme-root="movadly-first-theme"] .blog-head .sec-head{margin-bottom:0;max-width:560px}
[data-mv-theme-root="movadly-first-theme"] .blog-more{display:inline-flex;align-items:center;gap:8px;font-size:14.5px;font-weight:600;color:var(--theme-accent);white-space:nowrap;padding-bottom:6px}
[data-mv-theme-root="movadly-first-theme"] .blog-more svg{width:16px;height:16px;transition:transform .3s}
[data-mv-theme-root="movadly-first-theme"] .blog-more:hover svg{transform:translateX(3px)}
[data-mv-theme-root="movadly-first-theme"] .blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
[data-mv-theme-root="movadly-first-theme"] .post{background:var(--theme-surface-2);border:1px solid var(--line);border-radius:18px;overflow:hidden;display:flex;flex-direction:column;transition:transform .45s var(--ease),border-color .35s}
[data-mv-theme-root="movadly-first-theme"] .post:hover{transform:translateY(-6px);border-color:color-mix(in srgb,var(--theme-accent) 32%,transparent)}
[data-mv-theme-root="movadly-first-theme"] .post:hover .post-link svg{transform:translateX(3px)}
[data-mv-theme-root="movadly-first-theme"] .post-thumb{height:172px;position:relative;overflow:hidden;display:grid;place-items:center;background:var(--tg)}
[data-mv-theme-root="movadly-first-theme"] .post-thumb .art{color:color-mix(in srgb,var(--theme-text) 16%,transparent)}
[data-mv-theme-root="movadly-first-theme"] .post-thumb .art svg{width:74px;height:74px}
[data-mv-theme-root="movadly-first-theme"] .post:hover .post-thumb .art{color:color-mix(in srgb,var(--theme-text) 24%,transparent)}
[data-mv-theme-root="movadly-first-theme"] .post-cat{position:absolute;top:14px;left:14px;font-size:11px;font-weight:700;letter-spacing:.03em;color:var(--theme-accent-ink);background:var(--theme-accent);padding:5px 11px;border-radius:20px}
[data-mv-theme-root="movadly-first-theme"] .post-body{padding:22px;display:flex;flex-direction:column;flex:1}
[data-mv-theme-root="movadly-first-theme"] .post-meta{font-size:12px;color:var(--text-mute);margin-bottom:11px;display:flex;align-items:center;gap:8px}
[data-mv-theme-root="movadly-first-theme"] .post-meta i{width:3px;height:3px;border-radius:50%;background:var(--text-mute);display:inline-block}
[data-mv-theme-root="movadly-first-theme"] .post h3{font-size:17.5px;font-weight:700;letter-spacing:-.01em;line-height:1.32;margin-bottom:16px}
[data-mv-theme-root="movadly-first-theme"] .post-link{margin-top:auto;font-size:13.5px;font-weight:600;color:var(--theme-accent);display:inline-flex;align-items:center;gap:7px}
[data-mv-theme-root="movadly-first-theme"] .post-link svg{width:15px;height:15px;transition:transform .35s var(--ease)}
@media(max-width:900px){[data-mv-theme-root="movadly-first-theme"] .blog-grid{grid-template-columns:1fr 1fr}[data-mv-theme-root="movadly-first-theme"] .blog-grid .post:last-child{display:none}}
@media(max-width:560px){[data-mv-theme-root="movadly-first-theme"] .blog-grid{grid-template-columns:1fr}[data-mv-theme-root="movadly-first-theme"] .blog-grid .post:last-child{display:flex}}

/* ============================================================
   FOOTER
============================================================ */
[data-mv-theme-root="movadly-first-theme"] .footer{border-top:1px solid var(--line);padding:70px 0 34px;background:var(--theme-surface)}
[data-mv-theme-root="movadly-first-theme"] .foot-grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:40px;margin-bottom:52px}
[data-mv-theme-root="movadly-first-theme"] .foot-brand svg{height:30px;margin-bottom:20px}
[data-mv-theme-root="movadly-first-theme"] .foot-brand .lg-icon path{fill:var(--theme-accent)}
[data-mv-theme-root="movadly-first-theme"] .foot-brand .lg-word path{fill:var(--theme-text)}
[data-mv-theme-root="movadly-first-theme"] .foot-brand p{color:var(--text-mute);font-size:14px;max-width:32ch;line-height:1.6}
[data-mv-theme-root="movadly-first-theme"] .foot-col h5{font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:var(--text-mute);margin-bottom:18px;font-weight:600}
[data-mv-theme-root="movadly-first-theme"] .foot-col a{display:block;color:var(--theme-text-muted);font-size:14.5px;padding:6px 0;transition:color .25s}
[data-mv-theme-root="movadly-first-theme"] .foot-col a:hover{color:var(--theme-accent)}
[data-mv-theme-root="movadly-first-theme"] .foot-bottom{border-top:1px solid var(--line);padding-top:26px;display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
[data-mv-theme-root="movadly-first-theme"] .foot-bottom p{color:var(--text-mute);font-size:13.5px}
[data-mv-theme-root="movadly-first-theme"] .foot-social{display:flex;gap:10px}
[data-mv-theme-root="movadly-first-theme"] .foot-social a{width:38px;height:38px;border-radius:10px;border:1px solid var(--line);display:grid;place-items:center;color:var(--theme-text-muted);transition:all .3s}
[data-mv-theme-root="movadly-first-theme"] .foot-social a:hover{color:var(--theme-accent);border-color:color-mix(in srgb,var(--theme-accent) 35%,transparent);transform:translateY(-2px)}
[data-mv-theme-root="movadly-first-theme"] .foot-social svg{width:17px;height:17px}

/* ============================================================
   SCROLL REVEAL
============================================================ */
[data-mv-theme-root="movadly-first-theme"] [data-theme-animate]{opacity:0;transform:translateY(26px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
[data-mv-theme-root="movadly-first-theme"] [data-theme-animate].is-theme-visible{opacity:1;transform:none}
[data-mv-theme-root="movadly-first-theme"] .sr-d1{transition-delay:.08s}[data-mv-theme-root="movadly-first-theme"] .sr-d2{transition-delay:.16s}[data-mv-theme-root="movadly-first-theme"] .sr-d3{transition-delay:.24s}

/* ============================================================
   BACK TO TOP
============================================================ */
[data-mv-theme-root="movadly-first-theme"] .to-top{position:fixed;right:20px;bottom:20px;z-index:90;width:48px;height:48px;border-radius:50%;
  background:var(--theme-accent);color:var(--theme-accent-ink);border:0;display:grid;place-items:center;cursor:pointer;
  box-shadow:0 12px 30px -8px color-mix(in srgb,var(--theme-primary) 55%,transparent);opacity:0;visibility:hidden;transform:translateY(12px) scale(.9);
  transition:opacity .3s var(--ease),transform .3s var(--ease),visibility .3s,box-shadow .3s}
[data-mv-theme-root="movadly-first-theme"] .to-top.show{opacity:1;visibility:visible;transform:none}
[data-mv-theme-root="movadly-first-theme"] .to-top:hover{transform:translateY(-3px);box-shadow:0 16px 36px -8px color-mix(in srgb,var(--theme-primary) 70%,transparent)}
[data-mv-theme-root="movadly-first-theme"] .to-top:active{transform:translateY(-1px)}
[data-mv-theme-root="movadly-first-theme"] .to-top svg{width:22px;height:22px}

/* ============================================================
   RESPONSIVE
============================================================ */
@media(max-width:980px){
  [data-mv-theme-root="movadly-first-theme"] .hero{padding:90px 0 64px}
  [data-mv-theme-root="movadly-first-theme"] .hero-inner{grid-template-columns:1fr;grid-template-areas:"visual" "top" "bottom";row-gap:8px}
  [data-mv-theme-root="movadly-first-theme"] .hero-top,
[data-mv-theme-root="movadly-first-theme"] .hero-bottom{max-width:none}
  [data-mv-theme-root="movadly-first-theme"] .hero-top{align-self:auto;margin-top:6px}[data-mv-theme-root="movadly-first-theme"] .hero-bottom{align-self:auto}
  [data-mv-theme-root="movadly-first-theme"] .hero-visual{width:100vw;margin-left:calc(50% - 50vw);height:min(98vw,560px);margin-top:2px;margin-bottom:2px}
  [data-mv-theme-root="movadly-first-theme"] .hero .mv-diagram{max-width:none}
  [data-mv-theme-root="movadly-first-theme"] .mod-grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:auto}
  [data-mv-theme-root="movadly-first-theme"] .mod.feat{grid-column:span 2;grid-row:auto}
  [data-mv-theme-root="movadly-first-theme"] .mod.feat .mock{display:none}
  [data-mv-theme-root="movadly-first-theme"] .mod.span-hex,
[data-mv-theme-root="movadly-first-theme"] .mod.span-2{grid-column:span 1}
  [data-mv-theme-root="movadly-first-theme"] .showcase-inner{grid-template-columns:1fr;padding:40px}
  [data-mv-theme-root="movadly-first-theme"] .showcase-visual{height:260px}
  [data-mv-theme-root="movadly-first-theme"] .stat-grid{grid-template-columns:repeat(2,1fr)}
  [data-mv-theme-root="movadly-first-theme"] .ind-grid{grid-template-columns:repeat(2,1fr)}
  [data-mv-theme-root="movadly-first-theme"] .price-grid{grid-template-columns:repeat(3,1fr)}
  [data-mv-theme-root="movadly-first-theme"] .pain-grid{grid-template-columns:repeat(2,1fr)}
  [data-mv-theme-root="movadly-first-theme"] .site-header .nav-menu,
  [data-mv-theme-root="movadly-first-theme"] .site-header .main-nav{display:none!important}
  [data-mv-theme-root="movadly-first-theme"] .site-header .site-header-inner{
    display:flex;align-items:center;justify-content:space-between;width:100%;padding:0 24px;
  }
  [data-mv-theme-root="movadly-first-theme"] .site-header .brand{margin-right:auto}
  [data-mv-theme-root="movadly-first-theme"] .site-header .nav-right{
    display:flex!important;align-items:center;margin-left:auto!important;
  }
  [data-mv-theme-root="movadly-first-theme"] .site-header .nav-right>a,
  [data-mv-theme-root="movadly-first-theme"] .site-header .nav-right>.btn,
  [data-mv-theme-root="movadly-first-theme"] .site-header .nav-right>.nav-login{
    display:none!important;
  }
  [data-mv-theme-root="movadly-first-theme"] .site-header .menu-toggle,
  [data-mv-theme-root="movadly-first-theme"] .site-header .mobile-menu-toggle{
    display:grid!important;
  }
  [data-mv-theme-root="movadly-first-theme"] .foot-grid{grid-template-columns:1fr 1fr;gap:34px 24px}
  [data-mv-theme-root="movadly-first-theme"] .foot-brand{grid-column:1 / -1}
  [data-mv-theme-root="movadly-first-theme"] .foot-brand p{max-width:52ch}
}
@media(max-width:560px){
  [data-mv-theme-root="movadly-first-theme"] .hero .mv-diagram,
  [data-mv-theme-root="movadly-first-theme"] .vb-platform-hero-visual{max-width:min(94vw,440px);margin:0 auto}
  [data-mv-theme-root="movadly-first-theme"] .sec{padding:72px 0}
  [data-mv-theme-root="movadly-first-theme"] .hero{padding:90px 0 52px}
  [data-mv-theme-root="movadly-first-theme"] .pain-grid,
[data-mv-theme-root="movadly-first-theme"] .ind-grid,
[data-mv-theme-root="movadly-first-theme"] .price-grid{grid-template-columns:1fr}
  [data-mv-theme-root="movadly-first-theme"] .mod-grid{grid-template-columns:1fr}
  [data-mv-theme-root="movadly-first-theme"] .mod.feat{grid-column:span 1}
  [data-mv-theme-root="movadly-first-theme"] .stat-grid{grid-template-columns:repeat(2,1fr)}
  [data-mv-theme-root="movadly-first-theme"] .showcase-inner,
[data-mv-theme-root="movadly-first-theme"] .final-card{padding:34px 22px}
  [data-mv-theme-root="movadly-first-theme"] .final-card{border-radius:22px}
  [data-mv-theme-root="movadly-first-theme"] .chip-1{left:0}[data-mv-theme-root="movadly-first-theme"] .chip-2{right:0}
  [data-mv-theme-root="movadly-first-theme"] .hero-cta .btn{flex:1}
  [data-mv-theme-root="movadly-first-theme"] .foot-grid{gap:30px 20px}
}
@media(prefers-reduced-motion:reduce){
  [data-mv-theme-root="movadly-first-theme"],
[data-mv-theme-root="movadly-first-theme"] *{animation:none!important;transition-duration:.01ms!important;scroll-behavior:auto!important}
  [data-mv-theme-root="movadly-first-theme"] [data-theme-animate]{opacity:1;transform:none}
}
/* renderer-c exact branch bridge */
[data-mv-theme-root="movadly-first-theme"] .post--art-1{
  --tg:linear-gradient(135deg,color-mix(in srgb,var(--theme-accent) 22%,var(--theme-surface-3)),color-mix(in srgb,var(--theme-accent-ink) 35%,var(--theme-bg)));
}
[data-mv-theme-root="movadly-first-theme"] .post--art-2{
  --tg:linear-gradient(135deg,color-mix(in srgb,var(--theme-primary) 18%,var(--theme-surface-2)),color-mix(in srgb,var(--theme-primary) 7%,var(--theme-bg)));
}
[data-mv-theme-root="movadly-first-theme"] .post--art-3{
  --tg:linear-gradient(135deg,color-mix(in srgb,var(--accent-3) 16%,var(--theme-surface-3)),color-mix(in srgb,var(--theme-accent-ink) 18%,var(--theme-bg)));
}
[data-mv-theme-root="movadly-first-theme"] .post-excerpt{
  margin:0 0 16px;
  color:var(--theme-text-muted);
  font-size:14px;
  line-height:1.6;
}
[data-mv-theme-root="movadly-first-theme"] .foot-logo{
  display:block;
  width:auto;
  max-width:min(220px,100%);
  height:30px;
  margin-bottom:20px;
  object-fit:contain;
  object-position:left center;
}
[data-mv-theme-root="movadly-first-theme"] .foot-bottom-tools{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:16px;
  flex-wrap:wrap;
}
[data-mv-theme-root="movadly-first-theme"] .foot-legal{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}
[data-mv-theme-root="movadly-first-theme"] .foot-legal a{
  color:var(--theme-text-muted);
  font-size:13.5px;
  transition:color .25s ease;
}
[data-mv-theme-root="movadly-first-theme"] .foot-legal a:hover,
[data-mv-theme-root="movadly-first-theme"] .foot-legal a:focus-visible{
  color:var(--theme-accent);
}
@media(max-width:560px){
  [data-mv-theme-root="movadly-first-theme"] .foot-bottom-tools{
    width:100%;
    justify-content:flex-start;
  }
  [data-mv-theme-root="movadly-first-theme"] .foot-legal{
    gap:10px 16px;
  }
}
/* ========================= END APPROVED EXACT DESIGN PORT ================== */

/* Keep the drawer's own close control above the header toggle. */
[data-mv-theme-root="movadly-first-theme"] .mobile-menu-toggle.is-open{display:none!important}
