/* WHY: Design tokens keep theming centralized so the microsite can inherit new palettes quickly. */
:root {
    --vms-ink: #0a0a10;
    --vms-midnight: #101424;
    --vms-sky: #7ad6ff;
    --vms-indigo: #6a5cff;
    --vms-blush: #f168b4;
    --vms-ember: #ff9b50;
    --vms-mist: rgba(255, 255, 255, 0.08);
    --vms-surface: rgba(12, 14, 24, 0.8);
    --vms-font-display: "Space Grotesk", sans-serif;
    --vms-font-body: "Manrope", sans-serif;
}

* {
    box-sizing: border-box;
}

/* WHY: Layered gradients provide brand depth without relying on heavy imagery. */
body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(106, 92, 255, 0.24), transparent 45%),
        radial-gradient(circle at 30% 20%, rgba(241, 104, 180, 0.18), transparent 50%),
        var(--vms-ink);
    color: #f8f7ff;
    font-family: var(--vms-font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: var(--vms-font-display);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.4rem, 3.2vw, 3.6rem);
    margin: 0 0 16px;
}

h2 {
    font-size: clamp(1.8rem, 2.4vw, 2.6rem);
    margin: 0 0 12px;
}

h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

p {
    margin: 0;
}

ul {
    margin: 16px 0 0;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

/* WHY: Screen-reader-only text keeps accessibility intent without impacting the visual layout. */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* WHY: Ambient glow adds visual richness while remaining purely decorative. */
.vms-ambient {
    position: fixed;
    inset: -20% 0 auto 0;
    height: 320px;
    background: radial-gradient(circle at 20% 40%, rgba(122, 214, 255, 0.35), transparent 60%),
        radial-gradient(circle at 70% 20%, rgba(255, 155, 80, 0.3), transparent 55%);
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
}

.vms-shell {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px 24px 80px;
    display: grid;
    gap: 72px;
}

/* WHY: The hero grid keeps copy and proof balanced across viewports. */
.vms-hero {
    display: grid;
    gap: 32px;
    align-items: center;
}

@media (min-width: 960px) {
    .vms-hero {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    }
}

.vms-hero-copy {
    display: grid;
    gap: 18px;
}

.vms-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.vms-lede {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
}

.vms-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.vms-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--vms-indigo), var(--vms-blush));
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .vms-button.ghost {
        background: transparent;
        border-color: rgba(255, 255, 255, 0.25);
        color: rgba(255, 255, 255, 0.8);
    }

    .vms-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(106, 92, 255, 0.35);
    }

.vms-hero-metrics {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    padding-top: 12px;
    border-top: 1px solid var(--vms-mist);
}

    .vms-hero-metrics span {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: rgba(255, 255, 255, 0.5);
    }

    .vms-hero-metrics strong {
        display: block;
        margin-top: 6px;
        font-size: 14px;
    }

/* WHY: The panel visually packages the service pillars for fast scanning. */
.vms-hero-panel {
    background: var(--vms-surface);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(5, 4, 11, 0.55);
    backdrop-filter: blur(20px);
}

.vms-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.vms-panel-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    display: block;
}

.vms-panel-subtitle {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.vms-chip {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: rgba(122, 214, 255, 0.2);
    border: 1px solid rgba(122, 214, 255, 0.5);
    color: var(--vms-sky);
}

.vms-panel-body {
    display: grid;
    gap: 18px;
}

.vms-panel-item {
    padding: 16px;
    border-radius: 16px;
    background: rgba(10, 14, 24, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

    .vms-panel-item span {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: rgba(255, 255, 255, 0.5);
    }

    .vms-panel-item strong {
        display: block;
        margin: 6px 0 8px;
        font-size: 1.05rem;
    }

    .vms-panel-item p {
        color: rgba(255, 255, 255, 0.7);
    }

/* WHY: Consistent section spacing maintains rhythm across the marketing narrative. */
.vms-section {
    display: grid;
    gap: 32px;
}

.vms-section-head {
    max-width: 720px;
}

    .vms-section-head p {
        color: rgba(255, 255, 255, 0.75);
    }

.vms-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* WHY: Cards isolate benefits to reduce cognitive load during scanning. */
.vms-card {
    padding: 24px;
    border-radius: 20px;
    background: rgba(9, 12, 22, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 45px rgba(5, 4, 11, 0.35);
}

    .vms-card p {
        color: rgba(255, 255, 255, 0.75);
    }

.vms-split {
    gap: 48px;
}

@media (min-width: 960px) {
    .vms-split {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
        align-items: center;
    }
}

.vms-steps {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.vms-steps span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.45);
}

.vms-steps strong {
    display: block;
    margin: 8px 0 4px;
    font-size: 1.05rem;
}

.vms-steps p {
    color: rgba(255, 255, 255, 0.7);
}

/* WHY: Gradient proof block highlights outcomes without adding extra imagery assets. */
.vms-proof {
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(140deg, rgba(106, 92, 255, 0.18), rgba(241, 104, 180, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.vms-proof h3 {
    margin-bottom: 18px;
}

.vms-proof-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.vms-proof-grid strong {
    display: block;
    margin-bottom: 6px;
}

.vms-proof-grid p {
    color: rgba(255, 255, 255, 0.7);
}

/* WHY: CTA styling boosts contrast at the decision point to improve conversions. */
.vms-cta {
    padding: 36px;
    border-radius: 28px;
    background: linear-gradient(120deg, rgba(122, 214, 255, 0.18), rgba(255, 155, 80, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.vms-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

/* WHY: The interest section uses a framed layout so the form feels deliberate and easy to complete. */
.vms-interest {
    gap: 24px;
}

@media (min-width: 900px) {
    .vms-interest {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
        align-items: center;
    }
}

.vms-interest-copy p {
    color: rgba(255, 255, 255, 0.75);
}

.vms-interest-panel {
    padding: 24px;
    border-radius: 20px;
    background: rgba(9, 12, 22, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 45px rgba(5, 4, 11, 0.35);
}

.vms-interest-row {
    display: grid;
    gap: 12px;
}

@media (min-width: 600px) {
    .vms-interest-row {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }
}

.interest-form input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(5, 7, 16, 0.7);
    color: #fff;
    font-family: var(--vms-font-body);
}

.interest-form button {
    padding: 12px 18px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(120deg, var(--vms-indigo), var(--vms-blush));
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.interest-status {
    margin-top: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.vms-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}
/* Last-Modified: 2026-01-18T19:11:25.0000000Z */