:root {
    --vm-bg: #05070f;
    --vm-bg-soft: #0d1220;
    --vm-paper: #f7f2e9;
    --vm-paper-soft: rgba(247, 242, 233, 0.78);
    --vm-muted: rgba(247, 242, 233, 0.64);
    --vm-line: rgba(255, 255, 255, 0.16);
    --vm-cyan: #70e4ff;
    --vm-cyan-ink: #05121a;
    --vm-rose: #ff477f;
    --vm-gold: #d8b36f;
    --vm-max: 1180px;
    --vm-radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--vm-paper);
    background: var(--vm-bg);
    font-family: "Avenir Next", "Segoe UI Variable Text", "Segoe UI", Helvetica, Arial, sans-serif;
    letter-spacing: 0;
}

body.vm-modal-open {
    overflow: hidden;
}

img,
video,
iframe {
    max-width: 100%;
}

a {
    color: inherit;
}

.skip-link {
    position: fixed;
    left: 14px;
    top: 14px;
    z-index: 1000;
    transform: translateY(-140%);
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--vm-cyan-ink);
    background: var(--vm-cyan);
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

.vm-site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 7, 15, 0.68);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.vm-nav {
    width: min(var(--vm-max), calc(100% - 36px));
    min-height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.vm-brand {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    text-decoration: none;
    font-weight: 900;
    line-height: 1;
}

.vm-brand span {
    font-size: 0.76rem;
    color: var(--vm-muted);
    font-weight: 700;
}

.vm-nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(247, 242, 233, 0.82);
    font-size: 0.88rem;
}

.vm-nav-links a {
    text-decoration: none;
}

.vm-nav-links a:hover,
.vm-nav-links a:focus-visible {
    color: var(--vm-cyan);
}

.vm-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
}

.vm-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    animation: vmHeroDrift 18s ease-out forwards;
    z-index: -3;
}

.vm-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(5, 7, 15, 0.9) 0%, rgba(5, 7, 15, 0.58) 42%, rgba(5, 7, 15, 0.24) 100%),
        linear-gradient(180deg, rgba(5, 7, 15, 0.34) 0%, rgba(5, 7, 15, 0.08) 45%, rgba(5, 7, 15, 1) 100%);
}

.vm-hero__inner {
    width: min(var(--vm-max), calc(100% - 36px));
    margin: 0 auto;
    padding: 138px 0 86px;
}

.vm-kicker {
    margin: 0 0 18px;
    color: var(--vm-cyan);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.vm-hero h1,
.vm-page-title {
    max-width: 860px;
    margin: 0;
    font-size: 5.2rem;
    line-height: 0.96;
    font-weight: 900;
    letter-spacing: 0;
}

.vm-hero__text {
    max-width: 690px;
    margin: 24px 0 0;
    color: var(--vm-paper-soft);
    font-size: 1.18rem;
    line-height: 1.58;
}

.vm-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.vm-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: var(--vm-paper);
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    font-weight: 900;
    line-height: 1.1;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.vm-button:hover,
.vm-button:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(112, 228, 255, 0.7);
    background: rgba(112, 228, 255, 0.12);
}

.vm-button--primary {
    border-color: var(--vm-cyan);
    color: var(--vm-cyan-ink);
    background: var(--vm-cyan);
}

.vm-button--primary:hover,
.vm-button--primary:focus-visible {
    color: var(--vm-cyan-ink);
    background: #99eeff;
}

.vm-button--dark {
    color: var(--vm-bg);
    background: var(--vm-paper);
    border-color: var(--vm-paper);
}

.vm-floating-cta {
    position: fixed;
    z-index: 80;
    right: 18px;
    bottom: 18px;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: var(--vm-cyan-ink);
    background: var(--vm-cyan);
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.vm-floating-cta.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.vm-section {
    position: relative;
    padding: 96px 0;
}

.vm-section--paper {
    color: var(--vm-paper);
    background:
        radial-gradient(circle at 12% 12%, rgba(112, 228, 255, 0.08), transparent 34%),
        linear-gradient(180deg, #101622, #0c1019);
}

.vm-section--soft {
    background: #0a0e18;
}

.vm-container {
    width: min(var(--vm-max), calc(100% - 36px));
    margin: 0 auto;
}

.vm-section-heading {
    display: grid;
    gap: 18px;
    max-width: 780px;
    margin-bottom: 46px;
}

.vm-section-heading h2,
.vm-split h2,
.vm-final h2 {
    margin: 0;
    font-size: 3.2rem;
    line-height: 1.02;
    letter-spacing: 0;
}

.vm-section-heading p,
.vm-split p,
.vm-final p {
    margin: 0;
    color: var(--vm-paper-soft);
    font-size: 1.06rem;
    line-height: 1.7;
}

.vm-section--paper .vm-section-heading p,
.vm-section--paper .vm-split p {
    color: var(--vm-paper-soft);
}

.vm-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.vm-service-tile {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--vm-radius);
    color: var(--vm-paper);
    text-decoration: none;
    background: #111827;
}

.vm-service-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.62;
    transition: transform 360ms ease, opacity 360ms ease;
}

.vm-service-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 7, 15, 0.04), rgba(5, 7, 15, 0.9));
}

.vm-service-tile:hover img,
.vm-service-tile:focus-visible img {
    opacity: 0.86;
    transform: scale(1.06);
}

.vm-service-tile strong,
.vm-service-tile span {
    position: relative;
    z-index: 1;
}

.vm-service-tile strong {
    display: block;
    font-size: 1.2rem;
    line-height: 1.15;
}

.vm-service-tile span {
    display: block;
    margin-top: 10px;
    color: rgba(247, 242, 233, 0.74);
    line-height: 1.45;
}

.vm-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 54px;
    align-items: center;
}

.vm-split__media {
    position: relative;
    overflow: hidden;
    border-radius: var(--vm-radius);
    background: #111827;
}

.vm-split__media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.vm-list {
    display: grid;
    gap: 14px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.vm-list li {
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--vm-paper-soft);
    line-height: 1.6;
}

.vm-section--paper .vm-list li {
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--vm-paper-soft);
}

.vm-proof {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.vm-proof__item {
    padding: 28px;
    background: var(--vm-bg-soft);
}

.vm-proof__item strong {
    display: block;
    color: var(--vm-cyan);
    font-size: 1.6rem;
    line-height: 1;
}

.vm-proof__item span {
    display: block;
    margin-top: 12px;
    color: var(--vm-paper-soft);
    line-height: 1.5;
}

.vm-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.14);
}

.vm-step {
    padding: 28px;
    background: rgba(255, 255, 255, 0.06);
}

.vm-step span {
    display: block;
    color: var(--vm-rose);
    font-weight: 900;
}

.vm-step h3,
.vm-faq h3 {
    margin: 12px 0 10px;
    font-size: 1.15rem;
    line-height: 1.2;
}

.vm-step p,
.vm-faq p {
    margin: 0;
    color: var(--vm-paper-soft);
    line-height: 1.58;
}

.vm-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.vm-video-link {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 280px;
    border-radius: var(--vm-radius);
    color: var(--vm-paper);
    background: #101724;
    text-decoration: none;
}

.vm-video-link img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    display: block;
    object-fit: cover;
    opacity: 0.76;
    transition: transform 320ms ease, opacity 320ms ease;
}

.vm-video-link:hover img,
.vm-video-link:focus-visible img {
    transform: scale(1.05);
    opacity: 1;
}

.vm-video-link span {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    font-weight: 900;
}

.vm-video-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 7, 15, 0), rgba(5, 7, 15, 0.88));
}

.vm-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.vm-faq {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.vm-final {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    background: var(--vm-bg);
}

.vm-final__inner {
    width: min(var(--vm-max), calc(100% - 36px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
}

.vm-footer {
    padding: 34px 0 92px;
    color: rgba(247, 242, 233, 0.58);
    background: var(--vm-bg);
}

.vm-footer__inner {
    width: min(var(--vm-max), calc(100% - 36px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.vm-footer a {
    color: rgba(247, 242, 233, 0.76);
}

.vm-modal,
.vm-cookie-banner,
.vm-cookie-panel {
    position: fixed;
    z-index: 200;
}

.vm-modal {
    inset: 0;
    display: none;
    background: rgba(3, 5, 11, 0.46);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.vm-modal.is-open {
    display: block;
}

.vm-modal__dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(980px, calc(100vw - 28px));
    height: min(760px, calc(100svh - 28px));
    transform: translate(-50%, -50%);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    background: rgba(12, 17, 30, 0.76);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
}

.vm-modal__dialog:not(.vm-modal__dialog--video) {
    width: min(1040px, calc(100vw - 24px));
    height: min(660px, calc(100svh - 30px));
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.vm-modal__dialog--video {
    height: auto;
    aspect-ratio: 16 / 9;
    background: #000;
}

.vm-modal__close {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: var(--vm-paper);
    background: rgba(5, 7, 15, 0.78);
    font-size: 1.3rem;
    cursor: pointer;
}

.vm-modal__dialog:not(.vm-modal__dialog--video) .vm-modal__close {
    top: -8px;
    right: -8px;
    width: auto;
    min-width: 46px;
    padding: 0 14px;
    font-size: 0.95rem;
    font-weight: 900;
    background: rgba(5, 7, 15, 0.94);
}

.vm-form-frame,
.vm-video-player {
    width: 100%;
    height: 100%;
    border: 0;
}

.vm-form-frame {
    background: transparent;
}

.vm-video-player {
    display: block;
    background: #000;
}

.vm-cookie-banner {
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: none;
    max-width: 760px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    color: #fff;
    background: rgba(10, 8, 22, 0.94);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(12px);
}

.vm-cookie-panel {
    inset: 0;
    display: none;
    background: rgba(0, 0, 0, 0.54);
}

.vm-cookie-banner.is-visible,
.vm-cookie-panel.is-visible {
    display: block;
}

.vm-cookie-banner h2,
.vm-cookie-panel h2 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

.vm-cookie-banner p,
.vm-cookie-panel p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.45;
}

.vm-cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vm-cookie-button {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 10px 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    font-weight: 800;
}

.vm-cookie-button--primary {
    border-color: var(--vm-cyan);
    color: var(--vm-cyan-ink);
    background: var(--vm-cyan);
}

.vm-cookie-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(92vw, 520px);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: #100b22;
    transform: translate(-50%, -50%);
}

.vm-cookie-option {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.vm-reveal {
    opacity: 1;
    transform: none;
    transition: opacity 520ms ease, transform 520ms ease;
}

.vm-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes vmHeroDrift {
    from {
        transform: scale(1.08);
    }
    to {
        transform: scale(1.02);
    }
}

@media (max-width: 1020px) {
    .vm-hero h1,
    .vm-page-title {
        font-size: 3.7rem;
    }

    .vm-section-heading h2,
    .vm-split h2,
    .vm-final h2 {
        font-size: 2.45rem;
    }

    .vm-service-grid,
    .vm-video-grid,
    .vm-faq-grid,
    .vm-proof,
    .vm-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vm-split,
    .vm-final__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .vm-nav {
        width: min(100% - 24px, var(--vm-max));
        min-height: 58px;
    }

    .vm-nav-links {
        display: none;
    }

    .vm-hero {
        min-height: 680px;
    }

    .vm-hero__inner {
        width: min(100% - 28px, var(--vm-max));
        padding: 104px 0 78px;
    }

    .vm-hero h1,
    .vm-page-title {
        font-size: 2.72rem;
        line-height: 1.02;
    }

    .vm-hero__text {
        font-size: 1rem;
    }

    .vm-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .vm-button {
        width: 100%;
    }

    .vm-section {
        padding: 68px 0;
    }

    .vm-container,
    .vm-final__inner,
    .vm-footer__inner {
        width: min(100% - 28px, var(--vm-max));
    }

    .vm-section-heading h2,
    .vm-split h2,
    .vm-final h2 {
        font-size: 2rem;
    }

    .vm-service-grid,
    .vm-video-grid,
    .vm-faq-grid,
    .vm-proof,
    .vm-process {
        grid-template-columns: 1fr;
    }

    .vm-floating-cta {
        left: 14px;
        right: 14px;
        bottom: 12px;
    }

    .vm-footer {
        padding-bottom: 84px;
    }

    .vm-modal__dialog {
        width: 100%;
        height: 100%;
        border-radius: 0;
        border: 0;
    }

    .vm-modal__dialog:not(.vm-modal__dialog--video) .vm-modal__close {
        top: 12px;
        right: 12px;
    }

    .vm-modal__dialog--video {
        width: calc(100vw - 20px);
        height: auto;
        border-radius: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .vm-hero__image,
    .vm-reveal,
    .vm-service-tile img,
    .vm-video-link img,
    .vm-button {
        animation: none;
        transition: none;
    }
}
