:root {
    --bg: #ffffff;
    --bg-elev: #ffffff;
    --bg-elev-soft: #f6f7f9;
    --text: #1a1a1a;
    --muted: #6b7280;
    --line: #e5e7eb;
    --accent: #ed3237;
    --accent-strong: #ff4a4f;
    --accent-pressed: #d92b30;
    --hero-safe-top: max(1rem, env(safe-area-inset-top));
    --hero-safe-bottom: max(1rem, env(safe-area-inset-bottom));
    --max: 1280px;
    --max-wide: 1600px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    overflow-y: auto;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    scroll-behavior: smooth;
    overscroll-behavior-x: none;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
    margin: 0;
    padding: 0;
    font-weight: inherit;
    font-size: inherit;
}

.text-h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
}

.text-h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 600;
    line-height: 1.25;
}

.text-h3 {
    font-size: clamp(1.15rem, 2vw, 1.25rem);
    font-weight: 600;
    line-height: 1.35;
}

.text-body {
    font-size: 1rem;
    line-height: 1.6;
}

.text-small {
    font-size: 0.9rem;
}

.text-muted {
    color: var(--muted);
}

.text-center {
    text-align: center;
}

.vxr-hero .text-h1 {
    font-size: clamp(3.2rem, 6.5vw, 5.5rem) !important;
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 700;
    max-width: 17ch;
    position: relative;
    z-index: 2;
    transition: text-shadow 0.3s ease;
    text-align: center;
}

    .vxr-hero .text-h1 .vxr-headline-line {
        display: block;
        white-space: nowrap;
    }

.vxr-headline-accent {
    color: var(--accent);
    font-weight: 800;
    display: inline-block;
    white-space: nowrap;
    text-shadow: 0 0 6px rgba(237, 50, 55, 0.12), 0 0 14px rgba(237, 50, 55, 0.05);
    will-change: text-shadow;
}

.vxr-hero .text-h2 {
    font-size: clamp(1.2rem, 2.2vw, 1.8rem);
}

.vxr-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.vxr-site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding-top: env(safe-area-inset-top);
    backdrop-filter: blur(10px);
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    border-bottom: 1px solid var(--line);
}

.vxr-nav {
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.vxr-brand {
    font-weight: 700;
    letter-spacing: 0.2px;
}

.vxr-nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

    .vxr-nav-links a {
        font-size: 0.95rem;
        font-weight: 500;
        color: #4b5563;
        transition: color 0.2s ease;
    }

        .vxr-nav-links a:hover {
            color: var(--accent);
        }

.vxr-nav-cta {
    padding: 0.55rem 0.95rem;
    border: 1px solid var(--accent);
    border-radius: 0.6rem;
    color: var(--accent);
    font-weight: 600;
    transition: transform 180ms ease, background-color 180ms ease;
}

    .vxr-nav-cta:hover {
        background: rgba(237, 50, 55, 0.08);
        transform: scale(1.03);
    }

.vxr-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    --vxr-hint-opacity: 1;
    align-items: center;
    justify-content: center;
    padding: calc(2rem + var(--hero-safe-top)) 0 calc(2rem + var(--hero-safe-bottom));
    padding-left: 0;
    padding-right: 0;
    overflow: clip;
    isolation: isolate;
    touch-action: auto;
}

.vxr-hero-dim {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, calc(0.04 + var(--vxr-hero-dim-progress, 0) * 0.14)), transparent 55%), linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(15, 23, 42, calc(var(--vxr-hero-dim-progress, 0) * 0.16)));
    transition: opacity 220ms ease;
}

#vxr-particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.vxr-hero-grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    width: 100%;
    padding-inline: max(1rem, env(safe-area-inset-left)) max(1rem, env(safe-area-inset-right));
}

.vxr-hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    width: 100%;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.vxr-eyebrow {
    margin: 0;
    text-transform: none;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
    color: var(--accent);
    font-family: 'Roboto', Inter, Segoe UI, sans-serif;
    font-weight: 600;
    text-align: center;
}

.vxr-hero-copy {
    margin-top: 0.5rem;
    max-width: 58ch;
    font-size: 1.15rem;
    line-height: 1.5;
}

/* BUTTONS */
.vxr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
    cursor: pointer;
    text-decoration: none;
    transition: transform 120ms ease-out, box-shadow 120ms ease-out, background-color 120ms ease-out;
    touch-action: manipulation;
    border: none;
}

.vxr-btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 8px 20px rgba(237, 50, 55, 0.2);
}

    .vxr-btn-primary:hover {
        background: var(--accent-strong);
        transform: translateY(-2px);
        box-shadow: 0 12px 26px rgba(237, 50, 55, 0.25);
        color: white;
    }

    .vxr-btn-primary:active {
        transform: scale(0.98);
        background: var(--accent-pressed);
    }

.vxr-btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

    .vxr-btn-secondary:hover {
        background: #ffffff;
        border-color: rgba(0, 0, 0, 0.15);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    }

    .vxr-btn-secondary:active {
        transform: scale(0.98);
    }

.vxr-btn-full {
    width: 100%;
}

.vxr-hero-ctas {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
    width: 100%;
}

/* COMPATIBILITY STRIP */
.vxr-hero-strip {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(107, 114, 128, 0.9);
    padding: 0.5rem 1.2rem;
    background: rgba(243, 244, 246, 0.6);
    border: 1px solid rgba(229, 231, 235, 0.6);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* HERO PILLS */
.vxr-hero-pills {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    width: 100%;
}

.vxr-pill {
    font-size: 0.85rem;
    color: #374151;
    padding: 0.4rem 0.9rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    display: inline-flex;
    align-items: center;
}

    .vxr-pill::before {
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        background: var(--accent);
        border-radius: 50%;
        margin-right: 6px;
    }


.vxr-section {
    padding: 4rem 0;
}

    .vxr-section + .vxr-section {
        border-top: 1px solid rgba(0, 0, 0, 0.04);
    }

.vxr-alt {
    background: #f8fafc;
    border-block: 1px solid var(--line);
}

.vxr-section-title {
    margin: 0 0 1.5rem;
}

.vxr-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.vxr-demo-section {
    --vxr-demo-progress: 0;
    --vxr-demo-scale: 0.9;
    --vxr-demo-dim: 0;
    --vxr-particle-intensity: 1;
    padding: 2.5rem 0 2.5rem;
    position: relative;
    border-top: 1px solid var(--line);
    margin-bottom: clamp(40px, 6vh, 80px);
}

.vxr-models-section {
    padding: 4.5rem 0;
    border-top: 1px solid var(--line);
    background: radial-gradient(circle at 12% 18%, rgba(237, 50, 55, 0.07), transparent 30%), radial-gradient(circle at 88% 82%, rgba(60, 207, 255, 0.06), transparent 28%), linear-gradient(180deg, #ffffff, #f8fafc);
}

.vxr-models-header {
    max-width: 760px;
    margin-bottom: 2.5rem;
}

.vxr-models-copy {
    max-width: 68ch;
}

.vxr-model-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.vxr-platform-section {
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.vxr-platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.vxr-platform-card {
    position: relative;
    display: grid;
    gap: 0.6rem;
    padding: 1.6rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(237, 50, 55, 0.15);
    border-radius: 1.2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    text-align: center;
}

.vxr-light {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(120px circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.12) 35%, rgba(255, 255, 255, 0.04) 55%, transparent 75%);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 1;
}

.vxr-platform-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

    .vxr-platform-image img {
        width: auto;
        max-width: 90px;
        height: auto;
        display: block;
        margin: 0 auto;
        object-fit: contain;
        transition: transform 0.3s ease, filter 0.3s ease;
    }

.vxr-platform-content {
    position: relative;
    z-index: 2;
}

.vxr-platform-card:hover .vxr-platform-image img {
    transform: scale(1.08);
}

.vxr-platform-card:hover .vxr-light {
    opacity: 1;
}

/* Web - Blue Glow */
.vxr-platform-card:nth-child(1):hover .vxr-platform-image img {
    filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.5));
}
/* iOS - Glass Glow */
.vxr-platform-card:nth-child(2):hover .vxr-platform-image img {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 20px rgba(0, 0, 0, 0.1));
}
/* Android - Green Glow */
.vxr-platform-card:nth-child(3):hover .vxr-platform-image img {
    filter: drop-shadow(0 0 12px rgba(34, 197, 94, 0.5));
}

.vxr-platform-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12), 0 0 20px rgba(237, 50, 55, 0.12);
    border-color: rgba(237, 50, 55, 0.3);
}

    .vxr-platform-card:hover img {
        transform: scale(1.08) translateY(-2px);
    }

.vxr-model-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem;
    border: 1px solid rgba(237, 50, 55, 0.15);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), inset 0 -1px 0 rgba(255, 255, 255, 0.3), 0 18px 40px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    isolation: isolate;
    perspective: 1000px;
    transform-style: preserve-3d;
    animation: vxr-model-rotate 7s ease-in-out infinite;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .vxr-model-card::before {
        content: '';
        position: absolute;
        inset: -12%;
        background: radial-gradient(circle at center, rgba(237, 50, 55, 0.16), transparent 42%), radial-gradient(circle at 70% 30%, rgba(60, 207, 255, 0.12), transparent 38%);
        opacity: 0;
        transition: opacity 280ms ease;
        z-index: -1;
    }

    .vxr-model-card::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: linear-gradient(120deg, rgba(255, 255, 255, 0.25), transparent 40%);
        opacity: 0.4;
        pointer-events: none;
    }

    .vxr-model-card:nth-child(2) {
        animation-delay: -1.4s;
    }

    .vxr-model-card:nth-child(3) {
        animation-delay: -2.8s;
    }

    .vxr-model-card:nth-child(4) {
        animation-delay: -4.2s;
    }

.vxr-model-media {
    border-radius: 1rem;
    overflow: hidden;
    background: #eef2f7;
    aspect-ratio: 4 / 3;
}

    .vxr-model-media img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        transform: scale(1);
        transition: transform 0.35s ease;
    }

.vxr-model-content {
    display: grid;
    gap: 0.5rem;
}

.vxr-model-tag {
    color: #6b7280;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.vxr-model-prompt {
    font-family: monospace;
    font-size: 0.75rem;
    color: #4b5563;
    background: rgba(0, 0, 0, 0.04);
    padding: 0.6rem;
    border-radius: 0.5rem;
    margin-top: 0.25rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.vxr-model-card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

    .vxr-model-card:hover::before {
        opacity: 1;
    }

    .vxr-model-card:hover .vxr-model-media img {
        transform: scale(1.04);
    }

@keyframes vxr-model-rotate {
    0%, 100% {
        transform: perspective(1200px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: perspective(1200px) rotateX(1.5deg) rotateY(-1.5deg);
    }
}

.vxr-demo-center {
    position: sticky;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 50vh;
    max-width: 1200px;
    margin: 0 auto;
    gap: 16px;
    padding: clamp(1.5rem, 4vh, 2.75rem) 0 0;
    padding-bottom: clamp(20px, 4vh, 40px);
}

.vxr-demo-content {
    margin-bottom: 8px;
}

    .vxr-demo-content .vxr-section-title {
        margin-bottom: 0.65rem;
    }

.vxr-demo-copy {
    margin: 0 auto;
    max-width: 44rem;
}

.vxr-demo-scene {
    position: relative;
    height: 60vh;
    margin-top: 0;
}

.vxr-demo-sticky {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

    .vxr-demo-sticky .vxr-container,
    .vxr-demo-wrapper {
        width: 92%;
        max-width: min(1200px, 125vh);
        margin: 0 auto;
    }

.vxr-demo-video {
    position: relative;
    width: 100%;
    max-width: min(1200px, 125vh);
    margin: 0 auto;
    padding: clamp(0.5rem, calc(0.8rem - var(--vxr-demo-progress) * 0.2rem), 0.8rem);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
    border: 1px solid color-mix(in srgb, var(--line) 78%, rgba(255, 255, 255, 0.8));
    border-radius: 16px;
    transform: translate3d(0, calc((1 - var(--vxr-demo-progress)) * 20px), 0) scale(min(var(--vxr-demo-scale), 1));
    transform-origin: center center;
    box-shadow: 0 calc(18px + var(--vxr-demo-progress) * 14px) calc(36px + var(--vxr-demo-progress) * 18px) rgba(15, 23, 42, calc(0.12 + var(--vxr-demo-progress) * 0.08)), 0 0 0 1px rgba(255, 255, 255, calc(0.55 - var(--vxr-demo-progress) * 0.18));
    will-change: transform, box-shadow;
    backface-visibility: hidden;
}

    .vxr-demo-video:hover {
        transform: translate3d(0, calc((1 - var(--vxr-demo-progress)) * 20px), 0) scale(min(calc(var(--vxr-demo-scale) + 0.01), 1));
    }

.vxr-demo-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    border-radius: 12px;
    display: block;
}

.vxr-card,
.vxr-pillar {
    padding: 1.5rem;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid var(--line);
    border-radius: 1.25rem;
}

    .vxr-card .text-h3,
    .vxr-pillar .text-h3 {
        margin: 0 0 0.65rem;
        display: flex;
        align-items: center;
    }

    .vxr-card .text-body,
    .vxr-pillar .text-body {
        margin: 0;
    }

.vxr-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.6rem;
    color: var(--accent);
}

.vxr-interactive {
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    will-change: transform;
}

    .vxr-interactive:hover {
        transform: translateY(-6px);
        border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
        box-shadow: 0 12px 30px rgba(237, 50, 55, 0.12);
    }

/* HOW IT WORKS */
.vxr-how-it-works {
    position: relative;
    padding: 4.5rem 0;
    overflow: hidden;
    border-top: 1px solid var(--line);
    background: radial-gradient(circle at 15% 15%, rgba(237, 50, 55, 0.08), transparent 40%), radial-gradient(circle at 85% 85%, rgba(60, 207, 255, 0.06), transparent 40%), linear-gradient(180deg, #ffffff, #f8fafc);
}

    .vxr-how-it-works::after {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: 0.04;
        background-image: repeating-linear-gradient(135deg, rgba(26, 26, 26, 0.12) 0, rgba(26, 26, 26, 0.12) 1px, transparent 1px, transparent 5px);
    }

.vxr-image-dual-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.vxr-premium-card {
    --vxr-card-rotate-x: 0deg;
    --vxr-card-rotate-y: 0deg;
    --vxr-card-scale: 1;
    position: relative;
    border-radius: 1.5rem;
    overflow: visible;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(15px);
    transform: perspective(1000px) translateZ(0) rotateX(var(--vxr-card-rotate-x)) rotateY(var(--vxr-card-rotate-y)) scale(var(--vxr-card-scale));
    transform-style: preserve-3d;
    perspective: 1000px;
    will-change: transform;
    transition: transform 0.18s ease-out;
}

    .vxr-premium-card::before {
        content: "";
        position: absolute;
        inset: -1px;
        padding: 1px;
        animation: vxr-glow 6s ease infinite;
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
        border-radius: inherit;
        background: linear-gradient(120deg, rgba(237, 50, 55, 0.38), rgba(60, 207, 255, 0.24), rgba(237, 50, 55, 0.38));
        background-size: 170% 170%;
    }

    .vxr-premium-card::after {
        content: attr(data-step);
        position: absolute;
        top: 12px;
        right: 18px;
        font-size: clamp(3rem, 6vw, 5rem);
        font-weight: 800;
        color: rgba(0, 0, 0, 0.05);
    }

.vxr-image-layer {
    position: relative;
    transform: translateZ(24px) scale(1.01);
    transform-style: preserve-3d;
    z-index: 1;
}

    .vxr-image-layer::before {
        content: "";
        position: absolute;
        inset: 10% 12% 8%;
        border-radius: 1.25rem;
        background: radial-gradient(circle at center, rgba(237, 50, 55, 0.26), rgba(60, 207, 255, 0.16) 45%, rgba(255, 255, 255, 0) 78%);
        filter: blur(28px);
        opacity: 0.85;
        transform: translateZ(-18px) scale(0.94);
        pointer-events: none;
    }

.vxr-premium-card img {
    position: relative;
    width: 100%;
    display: block;
    filter: drop-shadow(0 24px 32px rgba(15, 23, 42, 0.18));
    transform: translateZ(20px);
    border-radius: 1rem;
}

.vxr-premium-content {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    color: #ffffff;
    transform: translateZ(60px);
    z-index: 2;
    transition: transform 0.3s ease;
}

    .vxr-premium-content h3,
    .vxr-premium-content p {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    }

.vxr-premium-card:hover {
    --vxr-card-scale: 1.02;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

    .vxr-premium-card:hover .vxr-image-layer {
        transform: translateZ(36px) scale(1.025);
    }

        .vxr-premium-card:hover .vxr-image-layer::before {
            opacity: 1;
            filter: blur(34px);
        }

    .vxr-premium-card:hover .vxr-premium-content {
        transform: translateZ(80px);
    }

@keyframes vxr-glow {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* LISTS */
.vxr-list {
    padding-left: 1.25rem;
    display: grid;
    gap: 0.5rem;
}

.vxr-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.vxr-subtle {
    background: #f1f5f9;
    border-color: rgba(0, 0, 0, 0.05);
}

/* ALPHA FORM */
.vxr-form-container {
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
}

.vxr-alpha-form {
    display: grid;
    gap: 1.25rem;
}

.vxr-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.vxr-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

    .vxr-form-group label {
        font-size: 0.9rem;
        font-weight: 600;
        color: #374151;
    }

.vxr-input,
.vxr-select,
.vxr-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--line);
    border-radius: 0.6rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .vxr-input:focus,
    .vxr-select:focus,
    .vxr-textarea:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(237, 50, 55, 0.1);
    }

.vxr-select-wrapper {
    position: relative;
}

    .vxr-select-wrapper::after {
        content: "";
        position: absolute;
        right: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
        width: 0.6rem;
        height: 0.6rem;
        border-right: 2px solid var(--muted);
        border-bottom: 2px solid var(--muted);
        transform-origin: center;
        transform: translateY(-70%) rotate(45deg);
        pointer-events: none;
    }

.vxr-select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 2.5rem;
}

.vxr-textarea {
    resize: vertical;
    min-height: 80px;
}

.vxr-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

    .vxr-checkbox-wrapper input[type="checkbox"] {
        margin-top: 0.25rem;
        width: 1.1rem;
        height: 1.1rem;
        accent-color: var(--accent);
        cursor: pointer;
    }

    .vxr-checkbox-wrapper label {
        font-size: 0.95rem;
        color: #374151;
        cursor: pointer;
        line-height: 1.4;
    }

/* FAQ */
.vxr-faq-item {
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .vxr-faq-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    }

.vxr-site-footer {
    background: #ffffff;
    border-top: 1px solid var(--line);
    padding: 2.5rem 0;
}

.vxr-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.vxr-footer-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

    .vxr-footer-links a {
        font-size: 0.9rem;
        color: var(--muted);
        transition: color 0.2s ease;
    }

        .vxr-footer-links a:hover {
            color: var(--accent);
        }

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 1024px) {
    .vxr-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .vxr-hero {
        padding: calc(3rem + var(--hero-safe-top)) 0 calc(3rem + var(--hero-safe-bottom));
    }

        .vxr-hero .text-h2 {
            max-width: none;
        }

    .vxr-how-it-works-grid, .vxr-image-dual-premium {
        grid-template-columns: 1fr;
    }

    .vxr-nav-links {
        display: none;
    }
    /* Hide center links on mobile for simplicity */
}

@media (max-width: 768px) {
    .vxr-feature-grid, .vxr-split, .vxr-platform-grid {
        grid-template-columns: 1fr;
    }

    .vxr-model-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vxr-hero {
        min-height: 100svh;
        padding: calc(1.5rem + var(--hero-safe-top)) 0 calc(1.5rem + var(--hero-safe-bottom));
    }

        .vxr-hero .text-h1 {
            font-size: clamp(2.4rem, 8vw, 3.2rem) !important;
            line-height: 1.1;
            max-width: 14ch;
            margin: 0;
        }

            .vxr-hero .text-h1 .vxr-headline-line {
                white-space: normal;
            }

    .vxr-hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .vxr-btn {
        width: 100%;
    }

    .vxr-demo-section {
        min-height: auto;
        padding: 2.5rem 0;
    }

    .vxr-demo-center {
        position: relative;
        top: auto;
        min-height: auto;
        gap: 16px;
        padding: 0;
    }

    .vxr-demo-scene {
        height: auto;
        padding-top: 0.5rem;
    }

    .vxr-demo-sticky {
        position: relative;
        top: auto;
        height: auto;
        padding: 0;
    }

        .vxr-demo-sticky .vxr-container, .vxr-demo-wrapper, .vxr-demo-video {
            width: 100%;
            max-width: 100%;
        }

    .vxr-demo-video {
        margin-inline: auto;
        padding: 0.65rem;
        transform: none;
    }

        .vxr-demo-video:hover {
            transform: none;
        }

    .vxr-form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .vxr-form-container {
        padding: 1.5rem 1rem !important;
    }

    .vxr-model-card, .vxr-platform-card, .vxr-demo-video, .vxr-premium-card, .vxr-interactive {
        animation: none;
        transition-duration: 160ms;
    }
}

@media (max-width: 480px) {
    .vxr-model-grid {
        grid-template-columns: 1fr;
    }

    .vxr-hero {
        padding: calc(1.25rem + var(--hero-safe-top)) 0 calc(1.25rem + var(--hero-safe-bottom));
    }

        .vxr-hero .text-h1 {
            font-size: clamp(2.2rem, 9vw, 2.8rem) !important;
            max-width: 100%;
        }

    .vxr-hero-strip {
        font-size: 0.75rem;
        text-align: center;
    }

    .vxr-pill {
        font-size: 0.8rem;
    }
}

@media (hover: none), (pointer: coarse) {
    .vxr-nav-cta:hover {
        background: transparent;
        transform: none;
    }

    .vxr-btn:hover, .vxr-interactive:hover {
        transform: none;
        box-shadow: none;
    }

    .vxr-platform-card:hover, .vxr-model-card:hover, .vxr-premium-card:hover {
        transform: none;
    }

    .vxr-platform-card:hover {
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
        border-color: rgba(237, 50, 55, 0.15);
    }

        .vxr-platform-card:hover .vxr-platform-image img, .vxr-model-card:hover .vxr-model-media img, .vxr-premium-card:hover .vxr-image-layer, .vxr-premium-card:hover .vxr-premium-content {
            transform: none;
        }

        .vxr-platform-card:hover .vxr-light {
            opacity: 0;
        }

    .vxr-model-card:hover::before {
        opacity: 0;
    }
}

/* Master page design css */
.footer-div-style {
    background-color: #767676;
    padding: 100px 100px 100px 100px;
}

    .footer-div-style h2 {
        font-size: 36px;
        font-weight: 700;
    }

    .footer-div-style .page-urls a {
        font-size: 18px;
        font-weight: 700;
        color: #000000;
        display: block;
        line-height: 2;
    }

    .footer-div-style #hr_1 {
        border: 1px solid #ffffff;
        margin: 10px;
        width: 0px;
        height: 230px;
        left: 50%;
        position: absolute;
    }

    .footer-div-style #hr_2 {
        border: 1px solid #ffffff;
        margin: 10px 0 0 0;
        width: 0px;
        height: 230px;
        left: 50%;
        position: absolute;
    }

    .footer-div-style h3 {
        font-size: 18px;
        font-weight: 700;
        color: #000000;
    }

    .footer-div-style .store-icons img {
        width: 140px;
        padding: 5px;
    }

    .footer-div-style .share-icons img {
        width: 50px;
        padding: 5px;
    }

    .footer-div-style .div-align {
        text-align: left;
    }

/*tab view*/
@media screen and (max-width: 1024px) {
    .footer-div-style {
        padding: 10px 10px 10px 10px;
    }

        .footer-div-style h2 {
            font-size: 36px;
            font-weight: 700;
        }

        .footer-div-style .page-urls a {
            font-size: 18px;
            font-weight: 700;
            color: #000000;
            display: block;
            line-height: 2;
        }

        /*.footer-div-style #hr_1 {
            border: 1px solid #ffffff;
            margin: 0px;
            width: 100% !important;
            height: 0 !important;
            left: 0 !important;
            position: static !important;
        }

        .footer-div-style #hr_2 {
            border: 1px solid #ffffff;
            margin: 10px 0 0 0;
            width: 100% !important;
            height: 0 !important;
            left: 0 !important;
            position: static !important;
        }*/

        .footer-div-style h3 {
            font-size: 18px;
            font-weight: 700;
            color: #000000;
        }

        .footer-div-style .store-icons img {
            width: 140px;
            padding: 5px;
        }

        .footer-div-style .share-icons img {
            width: 50px;
            padding: 5px;
        }

        .footer-div-style .div-align {
            text-align: left;
        }
}
/*Mobile view */
@media screen and (max-width: 736px) {
    .footer-div-style {
        padding: 10px 10px 10px 10px;
    }

        .footer-div-style h2 {
            font-size: 36px;
            font-weight: 700;
        }

        .footer-div-style .page-urls a {
            font-size: 18px;
            font-weight: 700;
            color: #000000;
            display: block;
            line-height: 2;
        }

        .footer-div-style #hr_1 {
            border: 1px solid #ffffff;
            margin: 0px;
            width: 100% !important;
            height: 0 !important;
            left: 0 !important;
            position: static !important;
        }

        .footer-div-style #hr_2 {
            border: 1px solid #ffffff;
            margin: 10px 0 0 0;
            width: 100% !important;
            height: 0 !important;
            left: 0 !important;
            position: static !important;
        }

        .footer-div-style h3 {
            font-size: 18px;
            font-weight: 700;
            color: #000000;
        }

        .footer-div-style .store-icons img {
            width: 140px;
            padding: 5px;
        }

        .footer-div-style .share-icons img {
            width: 50px;
            padding: 5px;
        }

        .footer-div-style .div-align {
            text-align: center;
        }
}
