body {
    background-color: #050505;
    color: white;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Hide scrollbar for horizontal scrolling elements */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Upgraded Scrollytelling Base States with Spring Physics */
.fade-in-element {
    opacity: 0;
    transform: translateY(4rem) scale(0.95);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-in-element.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    /* Springy pop effect */
    transition: opacity 0.8s ease-out, transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Drawer Transitions */
#kickstarter-drawer,
#specs-drawer {
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.drawer-closed {
    transform: translateX(calc(100% - 48px));
}

.drawer-open {
    transform: translateX(0);
}

.drawer-left-closed {
    transform: translateX(calc(-100% + 48px));
}

.drawer-left-open {
    transform: translateX(0);
}

/* Spotlight & Tilt Base */
.spotlight-card,
.usecase-card,
.event-card {
    transform-style: preserve-3d;
    will-change: transform;
}

.spotlight-overlay {
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Range Slider Styling */
input[type=range] {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #d946ef;
    cursor: pointer;
    margin-top: -10px;
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.6);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

model-viewer {
    --poster-color: transparent;
    background-color: transparent;
}

/* Smooth trailing cursor orb */
#mocap-cursor {
    transition: left 0.15s ease-out, top 0.15s ease-out;
    will-change: left, top;
}

/* Smooth trailing cursor orb */
#mocap-cursor {
    transition: left 0.15s ease-out, top 0.15s ease-out;
    will-change: left, top;
}

/* --- Custom CSS Replacements for Tailwind Utility Classes --- */

/* Global / Body Elements */
body {
    position: relative;
}

::selection {
    background-color: rgba(217, 70, 239, 0.3);
    /* fuchsia-500/30 */
    color: #ffffff;
}

.mocap-cursor-effect {
    position: fixed;
    width: 30vw;
    height: 30vw;
    border-radius: 9999px;
    background-image: linear-gradient(to right, rgba(192, 38, 211, 0.1), rgba(124, 58, 237, 0.1));
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    display: none;
}

@media (min-width: 768px) {
    .mocap-cursor-effect {
        display: block;
    }
}

.parallax-orb-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 24rem;
    height: 24rem;
    background-color: rgba(88, 28, 135, 0.1);
    filter: blur(120px);
    border-radius: 9999px;
    pointer-events: none;
    z-index: 0;
}

.parallax-orb-2 {
    position: absolute;
    top: 40%;
    right: 5%;
    width: 40rem;
    height: 40rem;
    background-color: rgba(112, 26, 117, 0.1);
    filter: blur(150px);
    border-radius: 9999px;
    pointer-events: none;
    z-index: 0;
}

.parallax-orb-3 {
    position: absolute;
    top: 70%;
    left: 15%;
    width: 30rem;
    height: 30rem;
    background-color: rgba(88, 28, 135, 0.1);
    filter: blur(100px);
    border-radius: 9999px;
    pointer-events: none;
    z-index: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    mix-blend-mode: screen;
    transform: scale(1.05);
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom, transparent, rgba(5, 5, 5, 0.5), #050505);
    z-index: 0;
}

.hero-content-wrapper {
    position: relative;
    z-index: 30;
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 5rem 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    margin-bottom: 2rem;
    cursor: default;
    transition: background-color 150ms;
}

.hero-badge:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-badge-dot-container {
    display: flex;
    position: relative;
    width: 0.5rem;
    height: 0.5rem;
}

.hero-badge-dot-ping {
    position: absolute;
    display: inline-flex;
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    background-color: #e879f9;
    opacity: 0.75;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero-badge-dot-solid {
    position: relative;
    display: inline-flex;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: #d946ef;
}

.iso-led-content {
    font-size: 4.25rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: -0.05em;
    transform: skewX(-12deg);
    white-space: nowrap;
}

.iso-truss {
    position: absolute;
    width: 1rem;
    height: 16rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transform-origin: bottom;
    background-color: #171717;
}

.iso-tripod {
    position: absolute;
    transform-origin: bottom;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.iso-tripod-leg {
    width: 0.25rem;
    height: 4rem;
    background-color: #525252;
    position: relative;
}

.iso-camera {
    width: 2.5rem;
    height: 1.5rem;
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-0.25rem);
    transition: box-shadow 300ms;
}

.iso-tripod:hover .iso-camera {
    box-shadow: 0 0 20px #e879f9;
}

.iso-camera-lens {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    background-color: #f0abfc;
    box-shadow: 0 0 5px #e879f9;
}

/* Pricing Tiers */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background-image: linear-gradient(145deg, rgba(30, 30, 30, 0.5), rgba(5, 5, 5, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2.5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 15px 35px rgba(0, 0, 0, 0.5);
}

.pricing-card:hover {
    transform: translateY(-0.5rem);
    border-color: rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 30px 60px rgba(0, 0, 0, 0.7);
}

.pricing-card.featured {
    background-image: linear-gradient(145deg, rgba(88, 28, 135, 0.25), rgba(29, 0, 87, 0.8));
    border-color: rgba(217, 70, 239, 0.2);
    border-top: 1px solid rgba(217, 70, 239, 0.4);
}

.pricing-card.featured:hover {
    border-color: rgba(217, 70, 239, 0.4);
    border-top: 1px solid rgba(217, 70, 239, 0.6);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 30px 60px rgba(29, 0, 87, 0.8);
}

.pricing-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: #f0abfc;
    color: #000000;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.pricing-name {
    font-size: 1.275rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 2.55rem;
    font-weight: 900;
    color: #ffffff;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.pricing-price span {
    font-size: 1rem;
    color: #a3a3a3;
    font-weight: 500;
}

.pricing-features {
    margin: 2rem 0;
    flex-grow: 1;
    list-style: none;
    padding: 0;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d4d4d4;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.pricing-feature svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #f0abfc;
}

.pricing-button {
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    font-weight: 700;
    text-align: center;
    transition: all 300ms;
}

.pricing-button.secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.pricing-button.primary {
    background-color: #ffffff;
    color: #000000;
}

.pricing-button.primary:hover {
    transform: scale(1.02);
}

.hero-badge-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    color: #d4d4d4;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 8.16vw;
    line-height: 1;
    padding-bottom: 0.1em;
    padding-top: 0.05em;
    letter-spacing: -0.05em;
    /* text-transform: uppercase; */
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to bottom, #ffffff, #ffffff, rgba(255, 255, 255, 0.3));
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 5.44rem;
    }
}

.hero-title-highlight {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, #d946ef, #8b5cf6);
    position: relative;
    display: inline-block;
}

.hero-title-flare {
    position: absolute;
    inset: -1rem;
    background-color: rgba(217, 70, 239, 0.2);
    filter: blur(64px);
    border-radius: 9999px;
    z-index: -10;
}

.hero-subtitle {
    margin-top: 2rem;
    max-width: 42rem;
    font-size: 1.125rem;
    color: #a3a3a3;
    font-weight: 300;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-cta-container {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-cta-container {
        flex-direction: row;
    }
}

.hero-btn-primary {
    position: relative;
    padding: 1rem 2rem;
    background-color: #ffffff;
    border-radius: 9999px;
    color: #000000;
    font-weight: 700;
    font-size: 1.125rem;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    transition: all 300ms;
}

.hero-btn-primary:hover {
    transform: scale(1.05);
}

.hero-btn-primary:active {
    transform: scale(0.95);
}

.hero-btn-shimmer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-100%);
}

.hero-btn-primary:hover .hero-btn-shimmer {
    animation: shimmer 1.5s infinite;
}

.hero-btn-primary-text {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-btn-secondary {
    padding: 1rem 2rem;
    border-radius: 9999px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.125rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 300ms;
}

.hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-btn-secondary:active {
    transform: scale(0.95);
}

/* Drawer Toggle Buttons */
.drawer-toggle-btn {
    width: 3rem;
    height: 10rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(40px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 150ms, background-color 150ms, border-color 150ms;
    cursor: pointer;
}

.drawer-toggle-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.drawer-toggle-btn.left {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 1rem 1rem 0;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
}

.drawer-toggle-btn.right {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem 0 0 1rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.drawer-toggle-text {
    transform: rotate(-90deg);
    white-space: nowrap;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #fff;
    transition: color 150ms;
}

.drawer-toggle-btn:hover .drawer-toggle-text {
    color: #f0abfc;
    /* text-fuchsia-300 */
}

@keyframes kickstarter-pulse {

    0%,
    100% {
        box-shadow: -5px 0 20px rgba(5, 206, 120, 0.4), inset -2px 0 10px rgba(5, 206, 120, 0.2);
        border-color: rgba(5, 206, 120, 0.3);
    }

    50% {
        box-shadow: -15px 0 40px rgba(5, 206, 120, 0.8), inset -4px 0 20px rgba(5, 206, 120, 0.4);
        border-color: rgba(5, 206, 120, 0.8);
    }
}

.kickstarter-btn {
    animation: kickstarter-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    background-color: rgba(5, 206, 120, 0.1);
}

.kickstarter-btn:hover {
    background-color: rgba(5, 206, 120, 0.2);
    animation-play-state: paused;
    box-shadow: -15px 0 50px rgba(5, 206, 120, 0.9), inset -4px 0 20px rgba(5, 206, 120, 0.5);
    border-color: rgba(5, 206, 120, 1);
}

.kickstarter-btn:hover .drawer-toggle-text {
    color: #05ce78;
    text-shadow: 0 0 15px rgba(5, 206, 120, 0.8);
}

/* Main Header & Nav */
.main-header {
    position: fixed;
    top: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 80rem;
    z-index: 1000;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(29, 0, 87, 0.8));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 15px 40px rgba(0, 0, 0, 0.6);

    height: 4rem;
    display: flex;
    align-items: center;
    border-radius: 9999px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-header.nav-scrolled {
    top: 2.75rem;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(85, 0, 255, 0.98));
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 15px 40px rgba(0, 0, 0, 0.6);
}

.nav-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-transform: uppercase;
}

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

@media (min-width: 1024px) {
    .nav-links-wrapper {
        display: block;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    transition: all 200ms ease;
}

.nav-link:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 14rem;
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 0.75rem;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #a3a3a3;
    text-decoration: none;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    transition: all 200ms ease;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 1023px) {
    .nav-actions {
        gap: 0.5rem;
    }
}

.nav-btn-primary {
    background-color: #ffffff;
    color: #000000;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 200ms ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

@media (max-width: 1023px) {
    .nav-btn-primary {
        display: none;
    }
}

.nav-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.nav-btn-explore {
    background-image: linear-gradient(135deg, #d946ef, #8b5cf6);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 400ms ease;
    box-shadow: 0 0 15px rgba(217, 70, 239, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 1023px) {
    .nav-btn-explore {
        display: none;
    }
}

.nav-btn-explore::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 500ms ease;
}

.nav-btn-explore:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(217, 70, 239, 0.6);
}

.nav-btn-explore:hover::before {
    left: 100%;
}

.mobile-menu-toggle {
    display: block;
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Nav Open State */
.main-header.nav-open {
    background-color: #050505;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    transform: none;
    border-radius: 0;
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
    padding: 2rem 0;
}

.main-header.nav-open .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding-top: 1rem;
}

.main-header.nav-open .nav-links-wrapper {
    display: block;
    width: 100%;
}

.main-header.nav-open .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.main-header.nav-open .nav-link {
    font-size: 1.25rem;
    padding: 0.5rem 0;
}

.main-header.nav-open .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: none;
    border: none;
    box-shadow: none;
    padding-left: 1.5rem;
    margin-top: 0;
    display: block;
}

.main-header.nav-open .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 1.5rem;
}

.main-header.nav-open .nav-btn-primary,
.main-header.nav-open .nav-btn-explore {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1.125rem;
}

/* Drawer Panels */
.drawer-panel {
    width: 20rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-panel.left {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(64px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.8);
}

.drawer-panel.right {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(64px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.8);
}

/* Reusable Delay Classes */
.delay-0 {
    transition-delay: 0ms;
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-150 {
    transition-delay: 150ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

/* Orbiting Nodes (Ecosystem Section) */
.orbit-node-1 {
    left: 20%;
    top: 25%;
    animation-delay: -1s;
}

.orbit-line-1 {
    transform: rotate(39.8deg);
}

.orbit-node-2 {
    left: 80%;
    top: 20%;
    animation-delay: -2s;
}

.orbit-line-2 {
    transform: rotate(135deg);
}

.orbit-node-3 {
    left: 15%;
    top: 75%;
    animation-delay: -3s;
}

.orbit-line-3 {
    transform: rotate(-35.5deg);
}

.orbit-node-4 {
    left: 75%;
    top: 70%;
    animation-delay: -4s;
}

.orbit-line-4 {
    transform: rotate(-141.3deg);
}

/* Isometric Camera Rig (Camera Setup Section) */
.iso-rig-section {
    perspective: 1500px;
}

.iso-rig-container {
    transform-style: preserve-3d;
    transform: rotateX(60deg) rotateZ(-45deg) scale(0.85);
    transform-origin: center;
}

.iso-rig-text {
    transform: rotateX(-90deg) translateZ(10px);
}

.iso-rig-actor-blur {
    transform: rotateX(-90deg) translateZ(0px);
}

.iso-rig-actor-solid {
    transform: rotateX(-90deg) translateZ(0px);
}

.iso-rig-led-wall {
    transform: rotateX(-90deg);
}

.iso-rig-truss {
    transform: rotateX(-90deg) translateZ(0);
}

.iso-rig-tripod {
    transform: rotateX(-90deg);
}

.iso-rig-camera-high {
    transform: rotateX(-90deg) translateZ(180px);
}

.iso-rig-camera-low {
    transform: rotateX(-90deg) translateZ(80px);
}

/* Sections */
.section-wrapper {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 8rem;
    overflow: hidden;
    background-color: #050505;
}

.section-heading-container {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.9125rem;
    line-height: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.1875rem;
        line-height: 1;
    }
}

.section-subtitle {
    color: #a3a3a3;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
    line-height: 1.75rem;
}

/* Ecosystem / Orbit Nodes */
.orbit-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 3rem;
    background-image: linear-gradient(145deg, rgba(30, 30, 30, 0.4), rgba(5, 5, 5, 0.9));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 25px 50px rgba(0, 0, 0, 0.6);
}

.orbit-bg-glow {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at center, rgba(232, 121, 249, 0.15), transparent 50%);
    opacity: 0.6;
    transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

.orbit-container:hover .orbit-bg-glow {
    opacity: 1;
}

.orbit-center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10rem;
    height: 10rem;
    border-radius: 9999px;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 0 0 50px rgba(0, 0, 0, 1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

.orbit-center-ping {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: ping 4s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.orbit-center-ping-delayed {
    position: absolute;
    inset: -20px;
    border-radius: 9999px;
    border: 1px solid rgba(217, 70, 239, 0.2);
    animation: ping 4s cubic-bezier(0, 0, 0.2, 1) infinite 1s;
}

.orbit-center-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.orbit-satellite {
    position: absolute;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.orbit-satellite .orbit-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(12px);
}

.orbit-satellite:hover .orbit-icon-wrapper {
    background-color: #ffffff;
    color: #000000;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.orbit-satellite svg {
    width: 1.5rem;
    height: 1.5rem;
}

.orbit-tooltip {
    position: absolute;
    top: 5rem;
    width: 12rem;
    opacity: 0;
    transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(1rem);
    pointer-events: none;
    text-align: center;
}

.orbit-satellite:hover .orbit-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.orbit-tooltip-inner {
    background-color: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.orbit-tooltip-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.orbit-tooltip-desc {
    color: #a3a3a3;
    font-size: 0.75rem;
}

.orbit-connection-line {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 200px;
    height: 1px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    z-index: -10;
    transform-origin: left;
    opacity: 0;
    transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.orbit-satellite:hover .orbit-connection-line {
    opacity: 1;
}

/* Video Comparison Slider */
.comparison-section {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #050505;
    overflow: hidden;
}

.comparison-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 1.5rem;
    overflow: hidden;
    background-image: linear-gradient(145deg, rgba(30, 30, 30, 0.5), rgba(5, 5, 5, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 25px 50px rgba(0, 0, 0, 0.6);
}

@media (min-width: 768px) {
    .comparison-container {
        border-radius: 3rem;
    }
}

.comparison-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-overlay-left {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-right: 2px solid #ffffff;
    z-index: 20;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.3);
}

.comparison-label {
    position: absolute;
    top: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(12px);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 30;
}

.comparison-label.left {
    left: 1.5rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-label.right {
    right: 1.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000000;
}

.comparison-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: #ffffff;
    transform: translateX(-50%);
    z-index: 40;
    cursor: ew-resize;
}

.comparison-handle-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3rem;
    height: 3rem;
    background-color: #ffffff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    color: #000000;
}

/* Pipeline / Steps Section */
.pipeline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pipeline-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pipeline-card {
    position: relative;
    padding: 2.5rem;
    border-radius: 2.5rem;
    background-image: linear-gradient(145deg, rgba(30, 30, 30, 0.5), rgba(5, 5, 5, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 15px 35px rgba(0, 0, 0, 0.5);
}

.pipeline-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-0.5rem);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 30px 60px rgba(0, 0, 0, 0.7);
}

.pipeline-number {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.pipeline-card:hover .pipeline-number {
    -webkit-text-stroke: 1px rgba(217, 70, 239, 0.3);
}

.pipeline-title {
    font-size: 1.275rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.pipeline-desc {
    color: #a3a3a3;
    line-height: 1.625;
}

/* 3D Viewer */
.viewer-card {
    position: relative;
    height: 500px;
    background-image: linear-gradient(145deg, rgba(30, 30, 30, 0.4), rgba(5, 5, 5, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), inset 0 0 50px rgba(0, 0, 0, 0.8), 0 20px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    overflow: hidden;
    transition: all 300ms;
}

.viewer-card:active {
    cursor: grabbing;
}

.viewer-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent);
    transition: opacity 700ms;
    pointer-events: none;
}

.viewer-card:hover .viewer-glow {
    opacity: 1;
}

.viewer-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #f0abfc;
    background-color: rgba(112, 26, 117, 0.2);
    width: fit-content;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(217, 70, 239, 0.3);
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.1);
    margin-top: 1.5rem;
}

/* Pipeline Visualizer Nodes */
.pipeline-node {
    position: relative;
    z-index: 10;
    padding: 1.5rem;
    border-radius: 2rem;
    background-color: #111111;
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 14rem;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: transform 300ms;
}

.pipeline-node:hover {
    transform: scale(1.05);
}

.pipeline-node.center {
    padding: 2rem;
    background-image: linear-gradient(to bottom, rgba(112, 26, 117, 0.4), #111111);
    border-color: rgba(217, 70, 239, 0.3);
    width: 16rem;
    box-shadow: 0 0 40px rgba(232, 121, 249, 0.2);
}

.pipeline-node.center:hover {
    transform: scale(1.1);
}

.pipeline-icon-circle {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pipeline-node.center .pipeline-icon-circle {
    width: 4rem;
    height: 4rem;
    background-color: rgba(217, 70, 239, 0.2);
    color: #f0abfc;
    border: none;
}

.pipeline-connector {
    display: none;
    width: 4rem;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.05);
    margin: 0 0.5rem;
    border-radius: 9999px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .pipeline-connector {
        display: block;
    }
}

.pipeline-connector-shimmer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, transparent, #e879f9, transparent);
    animation: shimmer 1.5s infinite;
}

/* Usecase Cards */
.usecases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .usecases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.usecase-card {
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    background-image: linear-gradient(145deg, rgba(30, 30, 30, 0.5), rgba(5, 5, 5, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 15px 35px rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.usecase-card:hover {
    transform: translateY(-0.5rem);
    border-color: rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 30px 60px rgba(0, 0, 0, 0.7);
}

.usecase-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.usecase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}

.usecase-card:hover .usecase-image {
    transform: scale(1.1);
}

.usecase-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
}

.usecase-content {
    padding: 2rem;
    flex-grow: 1;
}

.usecase-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: #f0abfc;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}

.usecase-title {
    font-size: 1.275rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.usecase-desc {
    color: #a3a3a3;
    font-size: 0.875rem;
    line-height: 1.6;
}

.usecase-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 300ms;
}

.usecase-link:hover {
    color: #f0abfc;
}

/* Bento Grid / Compatibility */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bento-box {
    background-image: linear-gradient(145deg, rgba(30, 30, 30, 0.5), rgba(5, 5, 5, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2.5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 15px 35px rgba(0, 0, 0, 0.5);
}

.bento-box:hover {
    border-color: rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 25px 50px rgba(0, 0, 0, 0.7);
    transform: translateY(-0.25rem);
}

.bento-box.highlight {
    background-image: linear-gradient(145deg, rgba(88, 28, 135, 0.3), rgba(29, 0, 87, 0.8));
    border-color: rgba(217, 70, 239, 0.2);
    border-top: 1px solid rgba(217, 70, 239, 0.4);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 15px 35px rgba(0, 0, 0, 0.6);
}

.bento-box.highlight:hover {
    border-color: rgba(217, 70, 239, 0.4);
    border-top: 1px solid rgba(217, 70, 239, 0.6);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 25px 50px rgba(29, 0, 87, 0.8);
}

.bento-tag {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #a3a3a3;
}

.bento-box.highlight .bento-tag {
    color: #f0abfc;
}

.bento-pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.bento-pill {
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 300ms;
    cursor: default;
}

.bento-pill:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.bento-format-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-family: inherit;
    font-size: 1.875rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.8);
}

.bento-format {
    transition: color 300ms;
    cursor: default;
}

.bento-format:hover {
    color: #ffffff;
}

.bento-divider {
    color: rgba(255, 255, 255, 0.3);
}

/* Accordion Usecases (Expanding Cards) */
.accordion-container {
    display: flex;
    flex-direction: column;
    height: 600px;
    gap: 0.5rem;
    width: 100%;
}

@media (min-width: 768px) {
    .accordion-container {
        flex-direction: row;
        gap: 1rem;
    }
}

.accordion-item {
    position: relative;
    flex: 1;
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 700ms cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .accordion-item:hover {
        flex: 2.5;
        box-shadow: 0 0 40px rgba(217, 70, 239, 0.2);
    }
}

.accordion-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: all 1000ms;
    mix-blend-mode: luminosity;
}

.accordion-item:hover .accordion-img {
    opacity: 0.8;
    mix-blend-mode: normal;
    transform: scale(1.05);
}

.accordion-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to top, #000000, rgba(0, 0, 0, 0.5), transparent);
}

.accordion-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    width: 100%;
}

@media (min-width: 768px) {
    .accordion-content {
        padding: 2rem;
    }
}

.accordion-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
    .accordion-title {
        font-size: 1.275rem;
    }
}

.accordion-item:hover .accordion-title {
    transform: translateY(-0.5rem);
}

.accordion-details {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item:hover .accordion-details {
    grid-template-rows: 1fr;
}

.accordion-item:hover .accordion-desc {
    opacity: 1;
}

/* Timeline Comparison */
.timeline-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.timeline-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

@media (max-width: 767px) {
    .timeline-divider {
        display: none;
    }
}

.timeline-col {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.timeline-col.traditional {
    text-align: right;
}

.timeline-col.moverse {
    text-align: left;
}

.timeline-step {
    position: relative;
    cursor: default;
}

.timeline-dot {
    position: absolute;
    top: 0.25rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    background-color: #525252;
    border: 4px solid #050505;
    transition: transform 300ms;
}

.timeline-col.traditional .timeline-dot {
    right: -1.4rem;
}

@media (min-width: 768px) {
    .timeline-col.traditional .timeline-dot {
        right: -2.3125rem;
    }
}

.timeline-col.moverse .timeline-dot {
    left: -1.375rem;
    background-color: #f0abfc;
    box-shadow: 0 0 10px #e879f9;
}

@media (min-width: 768px) {
    .timeline-col.moverse .timeline-dot {
        left: -2.3125rem;
    }
}

.timeline-step:hover .timeline-dot {
    transform: scale(1.5);
}

.timeline-step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

.timeline-step-time {
    font-size: 0.875rem;
    color: #737373;
    margin-top: 0.25rem;
}

.moverse .timeline-step-time {
    color: rgba(232, 121, 249, 0.8);
}

/* Isometric Camera Rig */
.iso-section {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .iso-section {
        flex-direction: row;
    }
}

.iso-content {
    flex: 1;
}

.iso-visual {
    flex: 1.2;
    position: relative;
    height: 400px;
    width: 100%;
    perspective: 1000px;
}

@media (min-width: 768px) {
    .iso-visual {
        height: 550px;
    }
}

.iso-container {
    position: absolute;
    inset: 0;
    transition: transform 700ms ease-out;
    transform-style: preserve-3d;
}

.iso-floor {
    position: absolute;
    inset: -20%;
    background-image:
        linear-gradient(rgba(232, 121, 249, 0.1) 2px, transparent 2px),
        linear-gradient(90deg, rgba(232, 121, 249, 0.1) 2px, transparent 2px);
    background-size: 40px 40px;
    border: 1px solid rgba(232, 121, 249, 0.2);
    box-shadow: inset 0 0 50px rgba(232, 121, 249, 0.1);
}

.iso-capture-area {
    position: absolute;
    top: 15%;
    left: 15%;
    right: 15%;
    bottom: 15%;
    border: 2px dashed rgba(232, 121, 249, 0.5);
    background-color: rgba(232, 121, 249, 0.05);
}

.iso-target {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4rem;
    height: 4rem;
    transform: translate(-50%, -50%);
    border: 2px solid #f0abfc;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(232, 121, 249, 0.2);
    box-shadow: 0 0 30px rgba(232, 121, 249, 0.5);
}

.iso-target-ping {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #f5d0fe;
    border-radius: 9999px;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.iso-actor-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2rem;
    height: 8rem;
    transform: translate(-50%, -50%);
    background-image: linear-gradient(to top, #d946ef, transparent);
    filter: blur(4px);
    transform-origin: bottom;
}

.iso-actor-solid {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 6rem;
    transform: translate(-50%, -50%);
    background-color: #f5d0fe;
    border-radius: 9999px;
    opacity: 0.8;
    transform-origin: bottom;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.iso-led-wall {
    position: absolute;
    top: 0;
    left: -20%;
    width: 140%;
    height: 12rem;
    background-image: linear-gradient(to right, rgba(76, 29, 149, 0.8), rgba(112, 26, 117, 0.8), rgba(88, 28, 135, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform-origin: top;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.iso-led-content {
    font-size: 3.4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    letter-spacing: -0.05em;
    transform: skewX(-12deg);
    white-space: nowrap;
}

.iso-truss {
    position: absolute;
    width: 1rem;
    height: 16rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transform-origin: bottom;
    background-color: #171717;
}

.iso-tripod {
    position: absolute;
    transform-origin: bottom;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.iso-tripod-leg {
    width: 0.25rem;
    height: 4rem;
    background-color: #525252;
    position: relative;
}

.iso-camera {
    width: 2.5rem;
    height: 1.5rem;
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-0.25rem);
    transition: box-shadow 300ms;
}

.iso-tripod:hover .iso-camera {
    box-shadow: 0 0 20px #e879f9;
}

.iso-camera-lens {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    background-color: #f0abfc;
    box-shadow: 0 0 5px #e879f9;
}

/* Pricing & Events */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2.5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-0.5rem);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured {
    background-image: linear-gradient(to bottom right, rgba(112, 26, 117, 0.2), #111111);
    border-color: rgba(217, 70, 239, 0.3);
}

.pricing-card.plan-studio {
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.plan-pro.featured {
    background-image: linear-gradient(to bottom right, rgba(214, 0, 221, 0.2), #111111);
    border-color: rgba(214, 0, 221, 0.4);
}

.pricing-card.plan-pro.featured .pricing-badge {
    background-color: rgb(214, 0, 221);
}

.pricing-banner {
    height: 100px;
    width: calc(100% + 5rem);
    margin: -2.5rem -2.5rem 2rem -2.5rem;
    object-fit: cover;
    opacity: 0.6;
    filter: saturate(0.8) contrast(1.1) brightness(0.8);
    transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover .pricing-banner {
    opacity: 1;
    filter: saturate(1.1) contrast(1.2) brightness(1.1);
    height: 110px;
}

.pricing-card.plan-max {
    background-image: linear-gradient(to bottom right, rgba(0, 119, 255, 0.15), #111111);
    border-color: rgba(0, 119, 255, 0.3);
}

.pricing-card.plan-max svg {
    color: rgb(0, 119, 255);
}

.pricing-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background-color: #f0abfc;
    color: #000000;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.pricing-card.plan-studio .pricing-name {
    color: #ffffff;
}

.pricing-card.plan-pro .pricing-name {
    color: rgb(214, 0, 221);
}

.pricing-card.plan-max .pricing-name {
    color: rgb(0, 119, 255);
}

.pricing-card.plan-max .pricing-badge {
    background-color: rgb(0, 119, 255);
}

.pricing-price {
    font-size: 2.55rem;
    font-weight: 900;
    color: #ffffff;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.pricing-price span {
    font-size: 1rem;
    color: #a3a3a3;
    font-weight: 500;
}

.pricing-features {
    margin: 2rem 0;
    flex-grow: 1;
    list-style: none;
    padding: 0;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #d4d4d4;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.pricing-feature svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #f0abfc;
    flex-shrink: 0;
}

.pricing-button {
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    font-weight: 700;
    text-align: center;
    transition: all 300ms;
}

.pricing-button.secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.pricing-button.primary {
    background-color: #ffffff;
    color: #000000;
}

.pricing-button.primary:hover {
    transform: scale(1.02);
}

.event-card {
    position: relative;
    width: 300px;
    border-radius: 1.5rem;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #0a0a0a;
    cursor: pointer;
    transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .event-card {
        width: 380px;
    }
}

.event-card:hover {
    transform: translateY(-0.5rem);
    background-color: #111111;
    border-color: rgba(217, 70, 239, 0.3);
}

.event-img {
    display: none;
}

.event-overlay {
    display: none;
}

.event-content {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-line {
    width: 3rem;
    height: 0.25rem;
    background-image: linear-gradient(to right, #d946ef, #8b5cf6);
    margin-bottom: 1rem;
    border-radius: 9999px;
}

.event-title {
    font-size: 1.275rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
}

.event-location {
    color: #f0abfc;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.event-desc {
    color: #a3a3a3;
    font-size: 0.875rem;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* CTA Section */
.cta-container {
    background-image: linear-gradient(145deg, rgba(88, 28, 135, 0.25), rgba(29, 0, 87, 0.8));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(217, 70, 239, 0.2);
    border-top: 1px solid rgba(217, 70, 239, 0.4);
    border-radius: 3rem;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 30px 60px rgba(29, 0, 87, 0.8);
}

@media (min-width: 768px) {
    .cta-container {
        padding: 6rem;
    }
}

.cta-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at top, rgba(217, 70, 239, 0.1), transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: 2.55rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 4.25rem;
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    background-color: #ffffff;
    color: #000000;
    border-radius: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    transition: all 300ms;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

/* ROI Calculator */
.roi-card {
    background-image: linear-gradient(145deg, rgba(30, 30, 30, 0.6), rgba(5, 5, 5, 0.95));
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3rem;
    padding: 2rem;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 30px 60px rgba(0, 0, 0, 0.7);
    transition: all 500ms;
}

@media (min-width: 768px) {
    .roi-card {
        padding: 3rem;
    }
}

.roi-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.slider-container {
    margin-bottom: 3rem;
}

.slider-label-row {
    display: flex;
    justify-content: space-between;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.slider-value {
    color: #f0abfc;
    font-size: 1.25rem;
    font-family: 'Inter', sans-serif;
}

.roi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .roi-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.cost-box {
    padding: 1.5rem;
    border-radius: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: background-color 300ms;
}

.cost-box:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cost-box.highlight {
    background-image: linear-gradient(to bottom, rgba(112, 26, 117, 0.3), transparent);
    border-color: rgba(217, 70, 239, 0.3);
    opacity: 0.9;
}

.cost-box.highlight:hover {
    opacity: 1;
}

.cost-label {
    color: #a3a3a3;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.cost-box.highlight .cost-label {
    color: #f0abfc;
}

.cost-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
}

@media (min-width: 768px) {
    .cost-amount {
        font-size: 1.9125rem;
    }
}

.savings-container {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.savings-label {
    color: #a3a3a3;
    margin-bottom: 0.5rem;
}

.savings-amount {
    font-size: 2.55rem;
    font-weight: 900;
    color: transparent;
    background-clip: text;
    background-image: linear-gradient(to right, #f0abfc, #d946ef);
    display: inline-block;
}

@media (min-width: 768px) {
    .savings-amount {
        font-size: 3.825rem;
    }
}

/* Testimonials */
.testimonial-card {
    background-image: linear-gradient(145deg, rgba(30, 30, 30, 0.5), rgba(5, 5, 5, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2.5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    width: 350px;
    flex-shrink: 0;
    transition: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 15px 35px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .testimonial-card {
        width: 450px;
    }
}

.testimonial-card:hover {
    transform: translateY(-0.5rem);
    border-color: rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 30px 60px rgba(0, 0, 0, 0.7);
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background-image: linear-gradient(to bottom right, #d946ef, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(217, 70, 239, 0.3);
}

.author-name {
    font-weight: 700;
    color: #ffffff;
}

.author-title {
    color: #f0abfc;
    font-size: 0.875rem;
}

/* Color-coded avatars */
.author-avatar.pink {
    background-image: linear-gradient(to bottom right, #f472b6, #db2777);
}

.author-avatar.purple {
    background-image: linear-gradient(to bottom right, #a78bfa, #7c3aed);
}

.author-avatar.violet {
    background-image: linear-gradient(to bottom right, #8b5cf6, #5b21b6);
}

.author-avatar.fuchsia {
    background-image: linear-gradient(to bottom right, #d946ef, #a21caf);
}

.testimonial-overlay {
    position: absolute;
    inset: -1px;
    background-image: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(217, 70, 239, 0.1), transparent 40%);
    opacity: 0;
    transition: opacity 500ms;
    z-index: 0;
    pointer-events: none;
}

.testimonial-card:hover .testimonial-overlay {
    opacity: 1;
}

.testimonial-content {
    position: relative;
    z-index: 10;
    pointer-events: none;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Footer Custom Styles */
.footer {
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.footer-logo-square {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.275rem;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.footer-description {
    color: #a3a3a3;
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a3a3a3;
    transition: all 300ms;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-0.25rem);
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-link {
    display: inline-block;
    color: #a3a3a3;
    font-size: 0.875rem;
    transition: color 300ms;
    line-height: 2;
    text-decoration: none;
}

.footer-link:hover {
    color: #f0abfc;
}

.logo-img {
    height: 40px;
    width: auto;
}

/* Motion Philosophy Section â€” Workflow Pills */
.workflow-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    color: #e5e5e5;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 300ms, border-color 300ms;
}

.workflow-pill:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
}

.workflow-pill-dot {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.workflow-arrow {
    width: 1.1rem;
    height: 1.1rem;
    color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.partner-img {
    height: 90px;
    width: auto;
}

/* ============================================================
   SHARED PRICING & REWARD CARD STYLES
   Used in: capture/index.html, vrchat/index.html, pricing/index.html
   ============================================================ */

/* --- Moverse Capture â€” Subscription Pricing Cards --- */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    display: flex;
    flex-direction: column;
    border-radius: 1.5rem;
    background-color: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    transition: transform 300ms, border-color 300ms, box-shadow 300ms;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 70, 239, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
    border-color: rgba(217, 70, 239, 0.4);
    box-shadow: 0 0 40px rgba(217, 70, 239, 0.12);
    transform: scale(1.03);
    position: relative;
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.pricing-banner {
    width: 100%;
    aspect-ratio: 16/7;
    object-fit: cover;
    display: block;
}

.pricing-name {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #a3a3a3;
    padding: 1.5rem 1.75rem 0;
}

.pricing-badge {
    display: inline-block;
    background-image: linear-gradient(135deg, #d946ef, #8b5cf6);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin: 0.5rem 1.75rem 0;
    width: fit-content;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    padding: 0.5rem 1.75rem;
    line-height: 1.2;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: #737373;
}

.pricing-features {
    list-style: none;
    padding: 0 1.75rem 1.75rem;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #d4d4d4;
}

.pricing-feature svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: #a855f7;
}

.pricing-button {
    display: block;
    margin: 0 1.75rem 1.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    text-align: center;
    text-decoration: none;
    transition: all 300ms;
}

.pricing-button.primary {
    background-image: linear-gradient(135deg, #d946ef, #8b5cf6);
    color: #fff;
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.3);
}

.pricing-button.primary:hover {
    box-shadow: 0 0 30px rgba(217, 70, 239, 0.5);
    transform: translateY(-2px);
}

.pricing-button.secondary {
    background-color: rgba(255, 255, 255, 0.07);
    color: #e5e5e5;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

/* --- Moverse Capture for VRChat â€” Kickstarter Reward Cards --- */
.rewards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .rewards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .rewards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .rewards-grid.two-col {
        grid-template-columns: 1fr 1fr;
        max-width: 900px;
        margin: 0 auto;
    }
}

.reward-card {
    background-color: #211f37;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.reward-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(182, 1, 199, 0.76);
}

.reward-image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #2d2a4a 0%, #1a182b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.reward-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reward-content {
    padding: 1.75rem;
    flex-grow: 1;
}

.reward-price {
    font-size: 2rem;
    font-weight: 900;
    color: #10b981;
    margin-bottom: 0.25rem;
    display: block;
}

.reward-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: white;
}

.reward-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(182, 1, 199, 0.76);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    display: block;
}

.reward-description {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.5;
}

.reward-badge-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #10b981;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.reward-price-container {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
    flex-wrap: wrap;
}

.reward-price-original {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.7;
}

.reward-save-highlight {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reward-tag {
    font-size: 0.72em;
    color: rgba(255, 0, 170, 1);
    font-weight: 700;
    vertical-align: middle;
    margin-left: 4px;
}

/* Kickstarter CTA Button */
.btn-kickstarter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 520px;
    margin: 1rem auto 1.5rem;
    padding: 16px 30px;
    background-color: rgba(182, 1, 199, 0.76);
    color: #f3f4f6;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(182, 1, 199, 0.4);
    transition: all 0.3s ease;
    text-align: center;
    gap: 0.75rem;
}

.btn-kickstarter:hover {
    background-color: rgba(133, 0, 167, 0.76);
    box-shadow: 0 6px 30px rgba(182, 1, 199, 0.55);
    transform: translateY(-2px);
}

.kickstarter-icon {
    height: 1.4em;
    width: auto;
    fill: currentColor;
    flex-shrink: 0;
}

/* --- Schedule Demo Page Styles --- */

:root {
    --demo-primary: #f0abfc;
    /* fuchsia-400 */
    --demo-primary-glow: rgba(232, 121, 249, 0.4);
    --demo-bg-dark: #050505;
    --demo-card-bg: rgba(15, 15, 15, 0.9);
    --demo-border-subtle: rgba(255, 255, 255, 0.08);
}

.demo-shell {
    background:
        radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.15), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(217, 70, 239, 0.1), transparent 40%),
        var(--demo-bg-dark);
    min-height: 100vh;
    padding: 160px 24px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.demo-card {
    width: 100%;
    max-width: 800px;
    background: var(--demo-card-bg);
    border: 1px solid var(--demo-border-subtle);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2.5rem;
    padding: 3rem;
    backdrop-filter: blur(24px);
    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.demo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--demo-primary), transparent);
    opacity: 0.3;
}

.demo-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--demo-primary);
    margin-bottom: 0.75rem;
}

.demo-input,
.demo-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    color: white;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.demo-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1rem;
}

.demo-input:focus,
.demo-select:focus {
    outline: none;
    border-color: var(--demo-primary);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 4px rgba(232, 121, 249, 0.12);
}

.demo-select option {
    background: #111;
    color: white;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.choice-card {
    position: relative;
}

.choice-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-card label {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.choice-card label:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(232, 121, 249, 0.3);
    transform: translateY(-4px);
}

.choice-card input:checked+label {
    background: rgba(232, 121, 249, 0.08);
    border-color: var(--demo-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.choice-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.5rem;
}

.choice-copy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.demo-submit {
    width: 100%;
    margin-top: 2rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, white 0%, var(--demo-primary) 100%);
    color: black;
    font-weight: 950;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 1.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.demo-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.demo-submit:hover:not(:disabled) {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 40px rgba(232, 121, 249, 0.3);
}

.demo-submit:hover::after {
    transform: translateX(100%);
}

.demo-submit:disabled {
    opacity: 0.3;
    filter: grayscale(1);
    cursor: not-allowed;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (max-width: 768px) {
    .demo-card {
        padding: 2rem;
        border-radius: 2rem;
    }

    .demo-shell {
        padding-top: 120px;
    }

    .choice-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Interactive Feature Tabs --- */

.feature-tabs-wrapper {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-bottom: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.feature-tab {
    padding: 0.75rem 1.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    border-radius: 9999px;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
}

.feature-tab:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.feature-tab.active {
    color: #f0abfc;
    /* fuchsia-400 */
    background: rgba(232, 121, 249, 0.1);
    border-color: rgba(232, 121, 249, 0.3);
    box-shadow: 0 0 20px rgba(232, 121, 249, 0.05);
}

/* Animations for tab switching */
.tab-pane {
    display: none;
    animation: tabFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.tab-pane.active {
    display: grid;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .feature-tabs-wrapper {
        gap: 0.5rem;
    }

    .feature-tab {
        padding: 0.6rem 1.25rem;
        font-size: 0.75rem;
    }
}


/* --- Integration Graph --- */

.graph-wrapper {
    position: relative;
    padding: 4rem 0;
    min-height: 500px;
}

.graph-view-switcher {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.graph-view-btn {
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9999px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.graph-view-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.graph-view-btn.active {
    color: white;
    background: rgba(232, 121, 249, 0.1);
    border-color: #f0abfc;
    box-shadow: 0 0 30px rgba(232, 121, 249, 0.15);
}

.graph-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.graph-node {
    position: relative;
    z-index: 10;
    padding: 1.5rem;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: scale(0.9) translateY(20px);
}

.graph-node.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.graph-node-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #f0abfc;
    border: 1px solid rgba(232, 121, 249, 0.1);
}

.graph-node-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.graph-tag {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(232, 121, 249, 0.1);
    color: #f0abfc;
    border-radius: 9999px;
    border: 1px solid rgba(232, 121, 249, 0.2);
    margin: 0.25rem;
}

.graph-bullet-list {
    text-align: left;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.graph-bullet {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.375rem;
}

.graph-bullet::before {
    content: " \;
 width: 4px;
    height: 4px;
    background: #f0abfc;
    border-radius: 50%;
}

.graph-connector-line {
    position: absolute;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
    transition: all 0.6s ease;
    overflow: hidden;
}

.graph-connector-line::after {
    content: \\;
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #f0abfc, transparent);
    animation: connectorShimmer 3s linear infinite;
}

@keyframes connectorShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@media (max-width: 1024px) {
    .graph-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .graph-connector-line {
        display: none;
    }
}