/* Performance Optimization Layer */
.bubble-node,
.node-wrapper,
.hiw-tree-level,
.hiw-tree-container,
.marketing-card,
.product-card,
.testimonial-card {
    will-change: transform, opacity;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
    -webkit-font-smoothing: subpixel-antialiased;
}

html.perf-lite .bubble-node,
html.perf-lite .node-wrapper,
html.perf-lite .hiw-tree-level,
html.perf-lite .marketing-card,
html.perf-lite .product-card,
html.perf-lite .testimonial-card {
    will-change: auto !important;
    transform: none !important;
    perspective: none !important;
    filter: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

html.perf-lite .site-bubble {
    display: none !important;
}

html.perf-lite .grain {
    display: none !important;
}

:root {
    --teal: #35B6B4;
    --aqua: #76E2DD;
    --deep-blue: #38418D;
    --coral: #DD736E;
    --bg: #0a0e27;
    --gold: #FFD700;
    --gold-light: #FFED4E;

    /* Global Fluid System */
    --container-max-w: 1280px;
    --section-pad-y: clamp(4rem, 10vh, 9rem);
    --content-pad-x: clamp(1.5rem, 5vw, 4rem);

    /* Fluid Typography Scale */
    --font-h1: clamp(2.5rem, 8vw, 4.5rem);
    --font-h2: clamp(1.34rem, 4vw, 1.875rem);
    --font-h3: clamp(1.4rem, 3vw, 2rem);
    --font-body: clamp(0.95rem, 1.2vw, 1.15rem);
    --font-sub: clamp(0.75rem, 1vw, 0.95rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
    scroll-behavior: smooth;
}


html,
body {
    scrollbar-width: none;

    -ms-overflow-style: none;

}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;

}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0e27;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-y: hidden;

}

html.loader-seen body {
    overflow-y: auto;
}

.heading-font {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}


.main_section {
    position: relative;
    overflow-x: hidden;
    z-index: 1;
}

.site-sticky-bubbles {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 3;
}

.site-bubbles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.site-bubble {
    position: absolute;
    top: 100%;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 30% 30%,
            rgba(255, 255, 255, 0.7) 0%,
            rgba(255, 255, 255, 0.3) 20%,
            rgba(118, 226, 221, 0.15) 60%,
            rgba(53, 182, 180, 0.05) 100%);
    box-shadow:
        inset -5px -5px 12px rgba(0, 0, 0, 0.1),
        inset 5px 5px 12px rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 0.6;
    animation: site-bubble-rise 10s infinite ease-in;
    filter: blur(0.6px);
    will-change: transform;
    pointer-events: none;
    background-attachment: fixed;
}

.site-bubble:nth-child(odd) {
    animation-delay: 1s;
}

.site-bubble:nth-child(even) {
    animation-delay: 2s;
}

.site-bubble:nth-child(5n),
.site-bubble:nth-child(7n) {
    animation-delay: 4s;
}

/* Small bubbles */
.site-bubble:nth-child(3n) {
    width: 19px;
    height: 19px;
    left: 10%;
    animation-duration: 6s;
}

/* Medium */
.site-bubble:nth-child(3n+1) {
    width: 22px;
    height: 22px;
    left: 30%;
    animation-duration: 8s;
}

.site-bubble:nth-child(3n+6) {
    width: 22px;
    height: 22px;
    left: 30%;
    animation-duration: 8s;
}

/* Large */
.site-bubble:nth-child(3n+2) {
    width: 35px;
    height: 35px;
    left: 60%;
    animation-duration: 10s;
}

/* Extra variation */
.site-bubble:nth-child(4n) {
    width: 45px;
    height: 45px;
    left: 80%;
    animation-duration: 12s;
}

/* Max size (rare big bubble) */
.site-bubble:nth-child(7n) {
    width: 55px;
    height: 55px;
    left: 50%;
    animation-duration: 14s;
}

@keyframes site-bubble-rise {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translate3d(-150px, -115vh, 0);
        opacity: 0;
    }
}

/* Skeleton Loading Effect */
.hero-skeleton {
    position: absolute;
    inset: 0;
    z-index: 100;
    background: #0a0e27;
    display: flex;
    flex-direction: column;
    padding: 10% 8%;
    gap: 20px;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.skeleton-loaded .hero-skeleton {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.sk-line {
    height: 20px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.03) 25%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.03) 75%);
    background-size: 200% 100%;
    animation: sk-shimmer 2s infinite linear;
    border-radius: 4px;
}

.sk-title {
    height: 60px;
    width: 60%;
}

.sk-text {
    height: 20px;
    width: 40%;
}

.sk-btn {
    height: 50px;
    width: 160px;
    border-radius: 30px;
    margin-top: 20px;
}

@keyframes sk-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.main_section>.hero-section {
    position: relative;
    z-index: 1;
    padding-bottom: var(--section-pad-y);
    border-radius: 0;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.main_section>.product-showcase-section.section-overlap {
    border-radius: 0;
    box-shadow:
        0 -4px 0 rgba(255, 255, 255, 0.07),
        0 -28px 50px rgba(0, 0, 0, 0.55),
        0 -80px 100px rgba(0, 0, 0, 0.35),
        0 24px 55px rgba(0, 0, 0, 0.42);
}

.main_section>section.section-overlap {
    margin-top: 0;
    border-radius: clamp(28px, 5vw, 52px) clamp(28px, 5vw, 52px) 0 0;
    box-shadow:
        0 -4px 0 rgba(255, 255, 255, 0.07),
        0 -28px 50px rgba(0, 0, 0, 0.55),
        0 -80px 100px rgba(0, 0, 0, 0.35);
    position: relative;
}

.main_section>section.stack-pin-panel {
    isolation: isolate;
}

.main_section>section.testimonials-section {
    position: relative;
    z-index: 12;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0;
}

.main_section>section.contact-section {
    position: relative;
    z-index: 13;
}

@media (prefers-reduced-motion: reduce) {
    .main_section>section.section-overlap {
        margin-top: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .main_section>.product-showcase-section.section-overlap {
        border-radius: 0;
        box-shadow: none;
    }
}

.nav-font {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}


.hero-section h1 {
    /* Tailwind classes on the element control sizing — no override needed */
}


.hero-section h2 {
    /* Tailwind classes on the element control sizing — no override needed */
}


.hero-section p {
    font-size: var(--font-body) !important;
}

.premium-bottles-section {
    background: linear-gradient(180deg, #1b3a8d 0%, #152a6a 50%, #0a113a 100%);
    position: relative;
    overflow: hidden;
    padding: var(--section-pad-y) 0;
}

.hero-gradient {
    background: linear-gradient(135deg, #1b1f4b 0%, #2f3790 62%, #2fa6c6 82%, #35b6b4 100%);
    position: relative;
}

.hero-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, #00d4ff 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, #00b4d8 0%, transparent 40%);
    opacity: 0.4;
    pointer-events: none;
}

.cyan-glow {
    position: absolute;
    right: -20%;
    top: 0;
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at center,
            rgba(0, 212, 255, 0.3) 0%,
            transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}


.glass-bottle {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}


.gold-text {
    background: linear-gradient(135deg,
            #ffd700 0%,
            #ffed4e 50%,
            #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold-border {
    border: 2px solid transparent;
    background:
        linear-gradient(#0a0e27, #0a0e27) padding-box,
        linear-gradient(135deg, #ffd700, #ffed4e, #ffd700) border-box;
}


.explore-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.explore-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
    opacity: 0;
    transition: opacity 0.3s;
}

.explore-btn:hover::before {
    opacity: 1;
}

.explore-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}


#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}


.content-layer {
    position: relative;
    z-index: 10;
    max-width: var(--container-max-w);
    margin: 0 auto;
    width: 100%;
}


.wave-cursor {
    position: fixed;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(0, 212, 255, 0.12) 0%,
            transparent 72%);
    pointer-events: none;
    z-index: 5;
    filter: blur(32px);
    transform: translate(-50%, -50%);
    transition: opacity 0.35s;
    will-change: left, top;
}

.wave-cursor.wave-cursor--off {
    display: none !important;
}

@media (pointer: coarse) {
    .wave-cursor {
        display: none !important;
    }
}


.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: 2;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}


.perf-lite .grain {
    display: none;
}

@media (max-width: 768px),
(pointer: coarse) {
    .grain {
        opacity: 0.018;
    }
}

/* goldShine removed — was causing background-position repaints every frame */


.gradient-text {
    background: linear-gradient(135deg,
            #a87336 0%,
            #eac636 22%,
            #f5d776 42%,
            #dbc05e 55%,
            #eac636 72%,
            #c19443 88%,
            #a87336 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}



.reveal-text {
    opacity: 0;
    transform: translateY(15px);
    /* GPU acceleration for smoother perceived performance */
    will-change: opacity, transform;
}

.reveal-text.active {
    opacity: 1;
    transform: translateY(0);
    /* Forcing ultra-fast snappy transitions, ignoring inline style delays to eliminate staggered lag */
    transition: opacity 0.4s ease-out, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    transition-delay: 0s !important;
}






html.loader-seen #page-loader {
    display: none !important;
}


.loader-bg-img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.loader-bg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60vw;
    height: auto;
    object-fit: contain;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    filter: blur(2px) grayscale(1);
    pointer-events: none;
}

.loader-bg-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 20%, #070a18 80%);
    z-index: 2;
}

@media (max-width: 768px) {
    .loader-bg-img {
        width: 120vw;
        transform: translate(-50%, -50%) rotate(90deg);
        /* Tilt for mobile aspect */
    }
}


.loader-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    transform: translateY(-5vh);
    transform: translateX(4vw);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.7));
}

@media (max-width: 768px) {
    .loader-content-wrapper {
        transform: translateY(3vh);
        transform: translateX(0vw);
    }
}

.loader-container {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.loader-ring {
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes pulse-core {

    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes drop-bounce {

    0%,
    100% {
        transform: rotate(-45deg) translateY(0);
    }

    50% {
        transform: rotate(-45deg) translateY(-8px);
    }
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes load-progress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.loader-ring-1 {
    animation: spin 2s linear infinite;
}

.loader-ring-2 {
    animation: spin-reverse 1.5s linear infinite;
}

.loader-ring-3 {
    animation: spin 1s linear infinite;
}

.loader-core {
    animation: pulse-core 1.5s ease-in-out infinite;
}

.loader-drop {
    animation: drop-bounce 1.5s ease-in-out infinite;
}

.loader-brand {
    animation: shimmer 3s linear infinite;
}

.loader-progress-bar {
    animation: load-progress 2.5s ease-out forwards;
}

#page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}



@keyframes bottleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


.bottle-img,
.bottle-video {
    width: auto;
    height: clamp(350px, 65vh, 700px);
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(36, 38, 39, 0.779));
    transition: opacity 1s ease;
}

.bottle-video {
    position: absolute;
    top: 0;
    left: 0;
}

html:not(.perf-lite) .bottle-img:not(.high-res) {
    animation: bottleFloat 5s ease-in-out infinite;
    will-change: transform;
}




body.menu-open {
    overflow: hidden;
    height: 100vh;
}


@media (max-width: 800px) {
    .content-layer {
        padding-top: 5rem;
        min-height: 100dvh;
    }

    .bottle-img {
        height: 45vh;
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .loader-text {
        font-size: 1.8rem;
    }

    .loader-bottle {
        width: 80px;
    }
}

.premium-bottles-section {
    background: linear-gradient(180deg, #1b3a8d 0%, #152a6a 50%, #0a113a 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.premium-bottles-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.05;
    pointer-events: none;
}

.golden_text_color {
    background: linear-gradient(45deg,
            #FFD700,
            #FFC107,
            #FFB000,
            #FFD700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.register-heading {
    font-family: "Playfair Display", serif;
    font-size: var(--font-h2);
    color: white;
    margin-bottom: clamp(1.5rem, 4vh, 2.5rem);
    line-height: 1.1;
    text-align: left;
}

.register-heading span {
    font-style: italic;
}

.offer-list {
    list-style: none;
    margin-bottom: clamp(2rem, 5vh, 3rem);
    max-width: 500px;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
    color: white;
    font-size: var(--font-body);
    margin-bottom: clamp(1rem, 2vh, 1.5rem);
    background: rgba(255, 255, 255, 0.03);
    padding: clamp(0.75rem, 1.5vh, 1rem) clamp(1rem, 2vw, 1.5rem);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.offer-item:hover {
    transform: translateX(15px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.offer-item .icon-wrap {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.offer-item .checkmark {
    background: #35b6b4;
    color: white;
    box-shadow: 0 0 15px rgba(53, 182, 180, 0.4);
}

.highlight-yellow {
    font-weight: 800;
}

.register-btn {
    background: linear-gradient(135deg, #DD736E 0%, #e45a52 100%);
    color: white;
    padding: clamp(0.8rem, 1.5vh, 1rem) clamp(2rem, 4vw, 3.5rem);
    border-radius: 60px;
    font-weight: 800;
    font-size: var(--font-h3);
    box-shadow: 0 10px 30px rgba(223, 66, 60, 0.4), 0 0 0 3px rgba(255, 215, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #fcbf3ce4;
    display: inline-block;
    text-align: center;
    text-transform: none;
    letter-spacing: 0.02em;
    cursor: pointer;
}

.register-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 2px 5px rgba(227, 52, 47, 0.6), 0 0 0 5px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #e45a52 0%, #ff6c65 100%);
}

.bottles-display {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.bottles-img {
    max-width: 78%;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.9));
    position: relative;
}



.bottles-display::after {
    content: "";
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%) rotateX(60deg);
    width: 90%;
    height: 120px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, transparent 70%);
    filter: blur(25px);
    z-index: 1;
}

.bottles-reflection {
    position: absolute;
    bottom: -22%;
    left: 50%;
    transform: translateX(-50%) scaleY(-0.7) skewX(-2deg);
    width: 80%;
    opacity: 0.27;
    filter: blur(4px);
    mask-image: linear-gradient(to bottom, white, transparent);
    -webkit-mask-image: linear-gradient(to bottom, white, transparent);
    pointer-events: none;
    z-index: 0;
}

.floor-shadow {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
    filter: blur(15px);
    z-index: 1;
}

@media (max-width: 768px) {
    .bottles-img {
        max-width: 100%;
    }

    .premium-bottles-section {
        padding: 4rem 1rem;
    }

    .register-heading {
        font-size: 2rem;
        text-align: center;
    }

    .offer-item {
        font-size: 1rem;
    }

    .register-btn-wrap {
        text-align: center;
    }

    .bottle-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}


.hiw-section {
    background-image: url("assets/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    z-index: 30;
    overflow: hidden;
    opacity: 1;
    isolation: isolate;

    /* Fluid Design System */
    min-height: 100vh;
    height: auto;
    --hiw-top-slot-h: clamp(100px, 15vh, 140px);
    --hiw-bubble-size: clamp(55px, 8vw, 80px);
    --hiw-node-gap-y: clamp(12px, 3vh, 24px);
    --hiw-heading-size: clamp(1.8rem, 4vw, 2.8rem);
    --hiw-subheading-size: clamp(0.75rem, 1.5vw, 0.95rem);

    will-change: auto;
    transform: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
}

.hiw-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(180deg, rgba(15, 27, 61, 0.45), rgba(7, 11, 30, 0.35));
    z-index: -1;
    pointer-events: none;
}

.hiw-heading {
    font-size: var(--hiw-heading-size);
}

.hiw-subheading {
    font-size: var(--hiw-subheading-size);
    opacity: 0.5;
    color: white;
}

.hiw-top-slot {
    position: relative;
    min-height: var(--hiw-top-slot-h);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: clamp(10px, 2.5vh, 25px) 16px 8px;
    z-index: 50;
}

.hiw-header {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#howItWorks .hiw-header.is-force-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.abn-ao-heading,
.abn-so-heading {
    position: absolute;
    left: 0;
    width: 100%;
    top: clamp(100px, 15vh, 140px);
    text-align: center;
    pointer-events: none;
    opacity: 0;
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.abn-title {
    width: 100%;
    text-align: center;
    font-family: "Playfair Display", serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 2.4vw, 2.35rem);
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 16px 45px rgba(0, 0, 0, 0.65);
}

.abn-subtitle {
    width: 100%;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: none;
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.68);
    margin-top: 2px;
    text-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
}

.abn-accent {
    background: linear-gradient(135deg, #FFD700, #FFED4E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hiw-scene-wrapper {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--hiw-top-slot-h));
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
    padding-top: clamp(10px, 4vh, 40px);
}

.hiw-dual-container {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    margin-top: -80px;
}

.hiw-column {
    position: absolute;
    /* Pulled up slightly from 41.5% to perfectly balance above the fold and give B5 breathing room */
    top: 30.5%;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-style: preserve-3d;
    padding: 0 20px 10px 20px;
}


@media (min-width: 769px) and (max-width: 1440px) {
    #howItWorks .hiw-dual-container {
        margin-top: -2px;

        transform: scale(0.95);
        transform-origin: top center;
    }


    #howItWorks .hiw-heading {
        font-size: 2.8rem;
    }


    #howItWorks .role-heading {
        font-size: 2.0rem !important;
        margin-left: 22px !important;
    }
}


@media (min-width: 1441px) {
    #howItWorks .hiw-dual-container {
        transform: scale(0.95);
        transform-origin: top center;
    }
}


@media (min-width: 769px) {
    .tree-with-heading {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
    }

    .role-heading {
        writing-mode: horizontal-tb !important;
        text-orientation: unset !important;
        transform: none !important;
        white-space: normal !important;
        padding-top: 0 !important;
        margin-bottom: 16px !important;
        margin-left: 0 !important;
        text-align: center;
    }

    /* Desktop: keep both headings aligned and slightly higher. */
    #howItWorks .tree-with-heading>.role-heading {
        transform: translateY(-10px) !important;
        margin-bottom: 6px !important;
    }

    /* Force both role headings to the exact same vertical baseline. */
    #howItWorks .sales-column .role-heading,
    #howItWorks .area-column .role-heading {
        position: relative;
        top: -12px;
        margin-top: 0 !important;
        margin-bottom: 4px !important;
        min-height: 1.2em;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        line-height: 1;
    }

    /* Desktop: lift tree block to create more breathing room below. */
    #howItWorks .tree-with-heading>.hiw-tree-container {
        margin-top: -14px;
    }

    /* Force both desktop trees to the exact same vertical baseline. */
    #howItWorks #treeSales,
    #howItWorks #treeArea {
        position: relative;
        top: -10px;
        margin-top: 0 !important;
    }

    #howItWorks .sales-column,
    #howItWorks .area-column {
        top: 30.5% !important;
        transform: translate(-50%, -50%) !important;
    }

    /* Desktop: pull bottom helper text/dots upward for viewport breathing room. */
    #howItWorks .so-infinite-hint,
    #howItWorks .ao-infinite-hint {
        top: calc(100% + clamp(8px, 2vh, 24px));
    }

    /* Lift AO dots+text so AO text sits inline with SO bottom text line. */
    #howItWorks .ao-infinite-hint {
        top: calc(100% - clamp(18px, 2.4vh, 28px));
    }
}

@media (max-width: 768px) {
    .hiw-dual-container {
        margin-top: -8px;
    }
}

.hiw-column-inner {
    width: 100%;
    will-change: transform;
}

.sales-column {
    left: 25%;
    top: 30.5%;
    transform: translate(-50%, -50%);
    will-change: transform, opacity;
}

.area-column {
    left: 75%;
    top: 30.5%;
    transform: translate(-50%, -50%);
    will-change: transform, opacity;
}


.cinematic-reveal-wrap {
    opacity: 0;
    position: absolute;
    left: 100%;
    top: 0;
    width: 90%;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .hiw-scene-wrapper {
        min-height: 400px;
        height: auto;
    }

    .hiw-dual-container {
        margin-top: -2px;
    }

    .hiw-column {
        max-width: clamp(350px, 45vw, 600px);
    }

    .tree-with-heading {
        gap: clamp(8px, 1.5vw, 15px);
    }

    .hiw-tree-container {
        max-width: clamp(400px, 60vw, 580px);
    }
}


.gap-l1 {
    gap: 65px;
}

.gap-l2 {
    gap: 22px;
}

.gap-l3 {
    gap: 5px;
}
}

@media (max-width: 768px) {
    .hiw-section {
        --hiw-top-slot-h: 100px;
    }

    .hiw-heading {
        font-size: 1.8rem;
    }

    .hiw-subheading {
        font-size: 0.75rem;
    }

    .hiw-section {
        height: 100vh;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .hiw-section .mb-10 {
        margin-bottom: 0.5rem !important;
        flex-shrink: 0;
    }

    .hiw-scene-wrapper {
        flex: 1;
        height: 100vh;
        min-height: 100vh;
        padding: 0;
        overflow: visible;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .hiw-dual-container {
        height: 100%;
        margin-top: 0;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        gap: 10px;
        width: 100%;
        position: relative;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .hiw-column {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        max-width: 45%;
        width: 45%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    /* Show both trees on mobile */
    .area-column {
        display: flex !important;
    }

    .sales-column,
    .area-column {
        position: relative !important;
    }

    .role-heading {
        font-size: 1.4rem;
        margin-bottom: 20px;
        padding-top: 0;
        text-align: center;
        color: #fff;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }

    .tree-with-heading {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        height: 100%;
        justify-content: center;
    }

    .hiw-tree-container {
        transform: scale(1.0);
        transform-origin: center center;
        height: 100vh;
        min-height: 100vh;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: relative;
        padding: 10vh 0;
        box-sizing: border-box;
        transition: transform 0.5s ease-in-out;
    }

    /* Initial state - tree fits viewport */
    .hiw-tree-container.fit-viewport {
        transform: scale(0.8);
        justify-content: space-between;
    }

    /* Scrolled state - tree returns to normal size */
    .hiw-tree-container.scrolled {
        transform: scale(1.5);
        justify-content: flex-start;
        padding-top: 20vh;
    }

    .hiw-tree-level {
        margin-bottom: 60px;
    }

    .gap-l1 {
        gap: 150px;
    }

    .gap-l2 {
        gap: 80px;
    }

    .cinematic-reveal-wrap {
        display: none !important;
    }

    /* Hide all extra elements on mobile */
    .b-cascade-container,
    .so-lastrow-merge,
    .so-infinite-hint,
    .tree-lines-svg,
    .node-info-box {
        display: none !important;
    }

    .tree-with-heading {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .role-heading {
        font-size: 1.8rem !important;
        margin-bottom: 25px !important;
        letter-spacing: 2px;
        color: #fff;
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    }

    .tree-extended-wrap {
        display: none !important;
    }

    /* Much larger bubble sizes for mobile */
    .bubble-node {
        width: 120px !important;
        height: 120px !important;
        font-size: 2rem !important;
    }

    .node-l0 {
        width: 140px !important;
        height: 140px !important;
        font-size: 2.5rem !important;
    }

    .node-l1 {
        width: 120px !important;
        height: 120px !important;
        font-size: 2rem !important;
    }

    .node-l2 {
        width: 100px !important;
        height: 100px !important;
        font-size: 1.8rem !important;
    }

    .bubble-amount {
        font-size: 2rem !important;
        font-weight: 900;
    }

    .level-ball {
        width: 50px !important;
        height: 50px !important;
        font-size: 0.8rem !important;
    }

    .level-row {
        gap: 10px;
    }

    .vertical-text {
        font-size: 0.65rem;
        max-height: 300px;
    }

    .bracket-line {
        width: 10px;
    }

    .node-info-box {
        display: none;
    }

    .node-info-box.active {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translate(-50%, -50%) scale(1.5) !important;
        width: min(220px, 80vw) !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }

    .node-info-box.node-info-left.active {
        transform: translateY(-50%) scale(1.5) !important;
    }

    .level-row .node-info-box.active {
        transform: translateX(-50%) scale(1.3) translateY(8px) !important;
        width: min(200px, 75vw) !important;
    }

    .hiw-top-slot {
        padding: 18px 12px 10px;
    }

    .abn-ao-heading,
    .abn-so-heading {
        width: min(560px, 94vw);
    }
}

.tree-with-heading {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
}

.role-heading {
    font-size: clamp(1.4rem, 2.5vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: clamp(6px, 1vh, 12px);
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.2vw, 2px);
    text-shadow: 0 0 20px rgba(59, 83, 160, 0.5);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
    padding-top: clamp(10px, 2vh, 20px);
}

.hiw-tree-container {
    position: relative;
    width: 100%;
    max-width: 580px;
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10px;
}

.hiw-tree-level {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 5;
    margin-bottom: var(--hiw-node-gap-y);
}

.node-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: var(--hiw-bubble-size);
    z-index: 2;
    top: calc(var(--hiw-bubble-size) * 0.25);
}

.node-wrapper:hover {
    z-index: 100;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: #3b53a0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 0 15px rgba(59, 83, 160, 0.5);
}

.user-avatar svg {
    width: 24px;
    height: 24px;
    fill: white;
}


.bubble-node,
.b-cascade-node,
.level-ball {
    width: var(--hiw-bubble-size);
    height: var(--hiw-bubble-size);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default !important;


    background: radial-gradient(circle at 30% 10%,
            rgba(255, 255, 255, 0.35),
            rgba(12, 24, 54, 0.4) 45%,
            rgba(3, 8, 26, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.06),
        inset 0 0 18px rgba(255, 255, 255, 0.22);


    overflow: hidden;
    transition:
        transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.22s ease;
}

.bubble-node::before,
.b-cascade-node::before,
.level-ball::before {
    content: "";
    position: absolute;
    inset: 10%;
    top: 6%;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 0%,
            rgba(255, 255, 255, 0.65),
            transparent 55%);
    opacity: 0.8;
    pointer-events: none;
}

.bubble-node::after,
.b-cascade-node::after,
.level-ball::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 120%,
            rgba(0, 0, 0, 0.45),
            transparent 55%);
    mix-blend-mode: multiply;
    opacity: 0.8;
    pointer-events: none;
}

.bubble-node:hover,
.b-cascade-node:hover,
.level-ball:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.6),
        0 0 18px rgba(118, 226, 221, 0.55);
}


.node-l0 {
    width: var(--hiw-bubble-size) !important;
    height: var(--hiw-bubble-size) !important;
    font-size: clamp(0.9rem, 1.2vw, 1.25rem) !important;
}

.node-l1 {
    width: calc(var(--hiw-bubble-size) * 0.82) !important;
    height: calc(var(--hiw-bubble-size) * 0.82) !important;
    font-size: clamp(0.75rem, 1vw, 1rem) !important;
}

.node-l2 {
    width: calc(var(--hiw-bubble-size) * 0.65) !important;
    height: calc(var(--hiw-bubble-size) * 0.65) !important;
    font-size: clamp(0.65rem, 0.85vw, 0.85rem) !important;
}

.node-l3 {
    width: calc(var(--hiw-bubble-size) * 0.52) !important;
    height: calc(var(--hiw-bubble-size) * 0.52) !important;
    font-size: clamp(0.55rem, 0.7vw, 0.7rem) !important;
}

.bubble-amount {
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}


.sales-column .bubble-node,
.sales-column .b-cascade-node {
    background: radial-gradient(circle at 30% 30%,
            #FFD700 0%,
            #FFC107 25%,
            #FFB000 50%,
            #FFD700 75%,
            #FFA000 100%);
    box-shadow:
        0 8px 25px rgba(255, 193, 7, 0.6),
        0 0 0 2px rgba(255, 215, 0, 0.3),
        inset 0 0 15px rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.sales-column .level-ball,
.level-ball.highlight-red {
    background: radial-gradient(circle at 25% 0%,
            rgba(255, 255, 255, 0.7),
            rgba(250, 204, 21, 0.96) 40%,
            rgba(217, 119, 6, 0.98) 72%,
            rgba(159, 18, 57, 1) 100%);
    box-shadow:
        0 14px 32px rgba(180, 83, 9, 0.8),
        0 0 0 1px rgba(255, 250, 235, 0.5),
        inset 0 0 14px rgba(255, 255, 255, 0.32);
}


.area-column .bubble-node,
.area-column .b-cascade-node {
    background: radial-gradient(circle at 30% 30%,
            #4A90E2 0%,
            #357ABD 25%,
            #2968A8 50%,
            #1E5A9E 75%,
            #1E4B8F 100%);
    box-shadow:
        0 8px 25px rgba(30, 64, 175, 0.6),
        0 0 0 2px rgba(74, 144, 226, 0.3),
        inset 0 0 15px rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(74, 144, 226, 0.5);
}

.area-column .level-ball {
    background: radial-gradient(circle at 25% 0%,
            rgba(255, 255, 255, 0.78),
            rgba(56, 189, 248, 0.96) 38%,
            rgba(37, 99, 235, 0.98) 70%,
            rgba(30, 64, 175, 1) 100%);
    box-shadow:
        0 14px 32px rgba(30, 64, 175, 0.8),
        0 0 0 1px rgba(191, 219, 254, 0.6),
        inset 0 0 16px rgba(255, 255, 255, 0.35);
}


.bubble-node>.bubble-amount,
.b-cascade-node>.bubble-amount,
.level-ball>span,
.level-ball>.bubble-amount {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-shadow:
        0 0 4px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(0, 0, 0, 0.4);
}


#howItWorks .bubble-node,
#howItWorks .b-cascade-node,
#howItWorks .level-ball {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

#howItWorks .bubble-node::after,
#howItWorks .b-cascade-node::after,
#howItWorks .level-ball::after {
    mix-blend-mode: normal;
    opacity: 0.42;
}

#howItWorks .hiw-tree-container {
    contain: layout;
}

#howItWorks .bubble-node,
#howItWorks .b-cascade-node {
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.38),
        inset 0 0 10px rgba(255, 255, 255, 0.14);
}

#howItWorks .sales-column .bubble-node,
#howItWorks .sales-column .b-cascade-node {
    box-shadow:
        0 6px 18px rgba(120, 53, 15, 0.42),
        inset 0 0 8px rgba(255, 255, 255, 0.18);
}

#howItWorks .area-column .bubble-node,
#howItWorks .area-column .b-cascade-node {
    box-shadow:
        0 6px 18px rgba(30, 64, 175, 0.42),
        inset 0 0 10px rgba(255, 255, 255, 0.16);
}

#howItWorks .sales-column .level-ball,
#howItWorks .area-column .level-ball {
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.32),
        inset 0 0 8px rgba(255, 255, 255, 0.18);
}


#howItWorks .bubble-node,
#howItWorks .b-cascade-node,
#howItWorks .level-ball,
#howItWorks .node-info-box,
#howItWorks .so-lastrow-merge,
#howItWorks .ao-lastrow-merge,
#howItWorks .so-infinite-hint,
#howItWorks .ao-infinite-hint {
    border: none !important;
    box-shadow: none !important;
}

.referral-tag {
    background: linear-gradient(135deg, #ff5252, #a70000);
    padding: clamp(2px, 0.4vw, 4px) clamp(6px, 1vw, 10px);
    border-radius: 4px;
    color: white;
    font-size: clamp(0.5rem, 0.8vw, 0.65rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-top: calc(var(--hiw-bubble-size) * -0.12);
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.referral-tag .perc {
    display: block;
    font-size: 0.7rem;
}

.indirect-tag {
    background: #1a2f6b;
    border: 1px solid #3b53a0;
    color: #76e2dd;
    padding: clamp(2px, 0.4vw, 4px) clamp(6px, 1vw, 10px);
    border-radius: 4px;
    font-size: clamp(0.6rem, 1vw, 0.75rem);
    font-weight: 700;
    margin-top: calc(var(--hiw-bubble-size) * 0.08);
}


.node-info-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #060b1a;

    border: 1.5px solid #3b53a0;
    padding: 0.5rem 0.75rem;
    border-radius: 0.6rem;
    width: clamp(120px, 15vw, 160px);
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(59, 83, 160, 0.2);
}

.node-wrapper:hover .node-info-box,
.node-info-box.active {
    opacity: 1;
    visibility: visible;
}


.node-info-box.node-info-left {
    left: auto;
    right: 100%;
    transform: translateY(-50%) translateX(-10px);
    text-align: right;
}

.node-wrapper:hover .node-info-box.node-info-left {
    transform: translateY(-50%) translateX(-25px);
}


.node-info-box,
.node-wrapper:hover .node-info-box,
.node-wrapper:hover .node-info-box.node-info-left {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}


.ao-info-box,
.so-info-box {
    width: clamp(190px, 30vw, 320px);
    background: rgba(10, 18, 44, 0.5);
    border: 1px solid rgba(118, 226, 221, 0.45);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), 0 0 20px rgba(118, 226, 221, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: block !important;
    pointer-events: none;
    border-radius: 3px;
    z-index: 25;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}


#extendedSalesA .level-row .extended-a-info,
#extendedAreaA .level-row .extended-a-info {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(10, 18, 44, 0.6);
    border: 1px solid rgba(118, 226, 221, 0.5);
    padding: 10px 14px;
    border-radius: 4px;
    width: 220px;
    text-align: center;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(118, 226, 221, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: block !important;
    pointer-events: none;
}

#extendedSalesA .level-row:hover .extended-a-info,
#extendedAreaA .level-row:hover .extended-a-info {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(14px);
}

.ao-root-node .ao-info-box,
.so-root-node .so-info-box {
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%) scale(0.96);
    text-align: center;
}

.ao-l1-node .ao-info-box,
.ao-l1-node .ao-info-box.node-info-left,
.so-l1-node .so-info-box {
    left: 50%;
    right: auto;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    text-align: center;
}

.ao-root-node:hover .ao-info-box,
.ao-l1-node:hover .ao-info-box,
.ao-root-node.is-open .ao-info-box,
.ao-l1-node.is-open .ao-info-box,
.so-root-node:hover .so-info-box,
.so-l1-node:hover .so-info-box,
.so-root-node.is-open .so-info-box,
.so-l1-node.is-open .so-info-box {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
}

.ao-root-node:hover .ao-info-box,
.ao-root-node.is-open .ao-info-box {
    transform: translate(-50%, -50%) scale(1);
}

.ao-l1-node:hover .ao-info-box,
.ao-l1-node.is-open .ao-info-box {
    transform: translate(-50%, -50%) scale(1);
}

.so-root-node:hover .so-info-box,
.so-root-node.is-open .so-info-box,
.so-l1-node:hover .so-info-box,
.so-l1-node.is-open .so-info-box {
    transform: translate(-50%, -50%) scale(1);
}

.ao-highlight {
    color: #ffd700 !important;
}

.so-highlight {
    color: #ffd700 !important;
    font-weight: 800;
}

.ao-lastrow-merge {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    z-index: 1;
}

.so-lastrow-merge {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    z-index: 1;
}

.so-lastrow-merge.active {
    opacity: 1;
    visibility: visible;
}

.so-lastrow-merge-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.so-lastrow-merge-svg path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 1.5;
}

.so-merge-joint {
    fill: rgba(255, 255, 255, 0.22);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.18));
}

.so-merge-text {
    position: absolute;
    transform: translate(-50%, 6px);
    color: #fff;
    font-weight: 700;
    font-size: clamp(0.68rem, 1.6vw, 0.9rem);
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.so-infinite-hint {
    position: absolute;
    left: 50%;
    top: calc(100% + 62px);
    transform: translateX(-50%);
    text-align: center;
    z-index: 7;
}

.so-infinite-text {
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(0.66rem, 1.5vw, 0.9rem);
    font-weight: 700;
    white-space: nowrap;
    margin-top: 0;
}

.so-promo-mobile {
    display: none;
}

@media (max-width: 768px) {
    #howItWorks #soInfiniteHint {
        display: none !important;
    }

    #howItWorks #soInfiniteHintMobile {
        display: block !important;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        width: min(92vw, 420px);
        margin-top: 12px;
        text-align: center;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: none;
    }

    #howItWorks #soInfiniteHintMobile .so-infinite-text {
        margin-top: 0 !important;
        text-align: center;
        white-space: normal;
    }

    /* Keep SO bottom line visible in pre-reveal and reveal states on mobile. */
    #howItWorks #soInfiniteHintMobile.is-hidden-for-reveal,
    #howItWorks #soInfiniteHintMobile.is-hidden-on-mobile,
    #howItWorks #soInfiniteHintMobile.so-promotion-text.is-hidden-for-reveal {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .so-infinite-hint.is-hidden-on-mobile {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }
}

/* iPhone SE / 12 Pro / 14 Pro Max / phones up to 786px */
@media (min-width: 320px) and (max-width: 786px) {

    #howItWorks #soInfiniteHintMobile .so-infinite-text,
    #howItWorks #soInfiniteHint .so-infinite-text {
        font-size: clamp(0.78rem, 2.9vw, 0.9rem) !important;
        line-height: 1.35 !important;
    }

    #howItWorks #treeArea .tree-with-heading.is-pre-reveal-focus>.hiw-tree-container,
    #howItWorks #treeSales .tree-with-heading.is-pre-reveal-focus>.hiw-tree-container {
        margin-top: 14px !important;
    }

    /* Scale reveal-state A1-A7 balls for both trees */
    #howItWorks #revealArea #extendedAreaA .level-ball,
    #howItWorks #revealSales #extendedSalesA .level-ball {
        width: 52px !important;
        height: 52px !important;
        font-size: 0.82rem !important;
    }

    /* Add top spacing to SO line only in reveal state */
    #howItWorks #colSales .tree-with-heading.is-extended~#soInfiniteHintMobile .so-infinite-text {
        margin-top: 14px !important;
    }
}

.so-infinite-hint.is-hidden-for-reveal {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

#howItWorks .so-promotion-text.is-hidden-for-reveal {
    display: none !important;
}

.ao-lastrow-merge.active {
    opacity: 1;
    visibility: visible;
}

.ao-lastrow-merge-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.ao-lastrow-merge-svg path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 1.5;
}

.ao-merge-joint {
    fill: rgba(255, 255, 255, 0.22);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.18));
}

.ao-merge-text {
    position: absolute;
    transform: translate(-50%, 6px);
    color: #fff;
    font-weight: 700;
    font-size: clamp(0.7rem, 1.7vw, 0.95rem);
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.ao-infinite-hint {
    position: absolute;
    left: 50%;
    top: calc(100% + clamp(20px, 5vh, 62px));
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(4px, 1vh, 8px);
    z-index: 7;
    opacity: 1;
    visibility: visible;
}

.ao-infinite-dots {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    margin-bottom: 0;
}

.ao-infinite-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #76e2dd, #2c4893);
    box-shadow: 0 0 10px rgba(118, 226, 221, 0.85);
    animation: pulse-dot 1.5s infinite ease-in-out;
}

.ao-infinite-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.ao-infinite-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
        box-shadow: 0 0 5px rgba(118, 226, 221, 0.5);
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
        box-shadow: 0 0 15px rgba(118, 226, 221, 1);
    }
}

.ao-infinite-text {
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(0.66rem, 1.5vw, 0.9rem);
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .ao-infinite-hint {
        left: 50%;
        /* Fluid top handle by clamp in base style */
    }
}

@media (max-width: 768px) {
    .ao-info-box {
        width: min(86vw, 250px);
        max-width: calc(100vw - 22px);
        padding: 8px 10px;
        font-size: 0.74rem;
        line-height: 1.35;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .so-info-box {
        width: min(86vw, 250px);
        max-width: calc(100vw - 22px);
        padding: 8px 10px;
        font-size: 0.74rem;
        line-height: 1.35;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    #extendedSalesA .level-row .extended-a-info,
    #extendedAreaA .level-row .extended-a-info {
        width: min(88vw, 250px);
        max-width: calc(100vw - 22px);
        padding: 8px 10px;
        font-size: 0.72rem;
        line-height: 1.35;
        white-space: normal;
        overflow-wrap: anywhere;
        left: 8px !important;
        right: auto !important;
        text-align: left !important;
        transform: translateY(8px) !important;
    }

    #extendedSalesA .level-row:hover .extended-a-info,
    #extendedAreaA .level-row:hover .extended-a-info {
        transform: translateY(12px) !important;
    }

    .ao-l1-node .ao-info-box,
    .ao-l1-node .ao-info-box.node-info-left {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%) scale(0.96);
        top: 50%;
        text-align: center;
    }

    .ao-l1-node:hover .ao-info-box,
    .ao-l1-node.is-open .ao-info-box,
    .ao-l1-node:hover .ao-info-box.node-info-left,
    .ao-l1-node.is-open .ao-info-box.node-info-left {
        transform: translate(-50%, -50%) scale(1);
    }

    .so-l1-node:hover .so-info-box,
    .so-l1-node.is-open .so-info-box,
    .so-root-node:hover .so-info-box,
    .so-root-node.is-open .so-info-box {
        transform: translate(-50%, -50%) scale(1);
    }

    .ao-infinite-hint {
        left: 50%;
        top: calc(100% + 42px);
        transform: translateX(-50%);
        gap: 8px;
    }

    .ao-merge-text {
        white-space: normal;
        max-width: 70vw;
    }

    .so-infinite-hint {
        left: 50%;
        top: calc(100% + 42px);
        transform: translateX(-50%);
    }

    .so-infinite-text {
        margin-top: 42px;
    }

    .so-merge-text {
        white-space: normal;
        max-width: 70vw;
    }
}

.info-title {
    color: #76e2dd;

    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 6px;
    display: block;
}

.info-title.red {
    color: #ff5252;
}

.info-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 500;
}

.requirement-text {
    margin-top: 40px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    letter-spacing: 0.02em;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.requirement-text .highlight {
    color: #76e2dd;
    font-weight: 800;
}

.so-details-box {
    margin-top: 45px;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 35px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.so-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.so-detail-item:hover {
    opacity: 1;
}

.so-detail-icon {
    width: 20px;
    height: 20px;
    background: rgba(118, 226, 221, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.so-detail-icon svg {
    width: 12px;
    height: 12px;
    color: #76e2dd;
}

.so-detail-content {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.so-detail-content strong {
    color: #76e2dd;
    font-weight: 600;
}


.infinite-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -30px;

    padding-bottom: 20px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.long-line {
    width: 1px;
    height: 80px;

    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05), transparent);
    margin-bottom: 15px;
}

.dots-grid {
    display: flex;
    flex-direction: row;
    gap: 25px;
    justify-content: center;
    margin-bottom: 25px;
}

.dots-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0.6;
}

.dots-column span {
    width: 7px;
    height: 7px;
    background: #76e2dd;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(118, 226, 221, 0.7);
}

.infinite-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.infinite-text .highlight {
    color: #76e2dd;
    font-weight: 800;
}


.tree-extended-wrap {
    position: relative;
    margin-top: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


#revealArea {
    padding-right: 0 !important;
}

#extendedAreaA {
    gap: 30px !important;
}

#extendedAreaA .level-row {
    width: 52px !important;
}


#revealArea .diagram-bracket-container {
    width: fit-content !important;
}

#revealArea .diagram-bracket-container>div:nth-child(2) {
    width: calc(100% - 8px) !important;
    height: 11px !important;
    margin-bottom: 5px !important;
}

@media (max-width: 768px) {
    #revealArea {
        padding-right: 0 !important;
    }

    #extendedAreaA {
        gap: 16px !important;
    }

    #extendedAreaA .level-row {
        width: 38px !important;
    }

    #revealArea .diagram-bracket-container>div:nth-child(2) {
        width: calc(100% - 4px) !important;
        height: 9px !important;
        margin-bottom: 4px !important;
    }
}


#revealSales {
    padding-right: 0 !important;
}

#extendedSalesA {
    gap: 30px !important;
}

#extendedSalesA .level-row {
    width: 52px !important;
}

#revealSales .diagram-bracket-container {
    width: fit-content !important;
}

#revealSales .diagram-bracket-container>div:nth-child(2) {
    width: calc(100% - 8px) !important;
    height: 11px !important;
    margin-bottom: 5px !important;
}

@media (max-width: 768px) {
    #revealSales {
        padding-right: 0 !important;
    }

    #extendedSalesA {
        gap: 16px !important;
    }

    #extendedSalesA .level-row {
        width: 38px !important;
    }

    #revealSales .diagram-bracket-container>div:nth-child(2) {
        width: calc(100% - 4px) !important;
        height: 9px !important;
        margin-bottom: 4px !important;
    }
}

.diagonal-lines-svg {
    position: absolute;
    top: -100px;

    left: 0;
    width: 100%;
    height: 600px;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

.diagonal-lines-svg path {
    fill: none;
    stroke: rgba(118, 226, 221, 0.3);
    stroke-width: 1.5;
    stroke-dasharray: 5, 5;

}

.extended-levels-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 60px;

    padding-top: 20px;
    z-index: 2;
}

.level-row {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateX(30px);
    position: relative;
}

.level-ball {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #3b53a0, #1a2a5e);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 0 20px rgba(59, 83, 160, 0.5);
    flex-shrink: 0;
}

.level-ball.highlight-cyan {
    background: radial-gradient(circle at 30% 30%, #76e2dd, #2d7a76);
    box-shadow: 0 0 15px rgba(118, 226, 221, 0.4);
}

.level-ball.highlight-red {
    background: radial-gradient(circle at 30% 30%, #ff5252, #a70000);
    box-shadow: 0 0 15px rgba(255, 82, 82, 0.45);
}


#treeArea .b-cascade-container {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
}

.b-cascade-node {
    width: 24px !important;
    height: 24px !important;
    font-size: 0.55rem !important;
}

#treeSales .b-cascade-container {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
}


#revealArea .extended-levels-grid,
#revealArea #svgExtendedArea {
    opacity: 0;
    transform: translateY(12px);
}


#revealSales .extended-levels-grid,
#revealSales #svgExtendedSales {
    opacity: 0;
    transform: translateY(12px);
}

.level-info {
    text-align: left;
}

.level-title {
    font-size: 0.85rem;
    color: white;
    font-weight: 800;
    display: block;
    margin-bottom: 2px;
}

.level-count {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.diagram-bracket-container {
    display: flex;
    align-items: center;
    position: relative;
}

.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 15px;
    max-height: 480px;
    text-align: center;
    line-height: 1.4;
}

.bracket-line {
    width: 15px;
    height: 90%;
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    border-left: 2px solid rgba(255, 255, 255, 0.5);
    margin-right: 20px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.members-circles {
    display: flex;
    gap: 6px;
    margin-top: 6px;
    align-items: center;
}

.members-circles span {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.members-circles span.large-circle {
    width: 22px;
    height: 22px;
}

.tree-lines-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}

#howItWorks .tree-lines-svg {
    transform: translate3d(0, 0, 0);
}

.tree-lines-svg path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 1.5;
    vector-effect: non-scaling-stroke;
    shape-rendering: optimizeSpeed;
}

@media (max-width: 1024px) {
    .hiw-dual-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .hiw-column {
        width: 100%;
        max-width: 100%;
    }

    .role-heading {
        font-size: 1.8rem;
        margin-bottom: 8px;
        padding-top: 12px;
    }

    .tree-with-heading {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .hiw-tree-container {
        transform: scale(0.7);
        height: auto;
        min-height: 400px;
        margin-bottom: -40px;
    }
}

@media (max-width: 480px) {
    #howItWorks .node-info-box {
        transform: translate(-50%, -50%) scale(0.5);
    }
}

.hiw-subheading {
    font-size: 0.7rem;
}

.hiw-tree-container {
    transform: scale(0.55);
    min-height: 380px;
    margin-bottom: -180px;
    margin-top: -40px;
}

#treeArea {
    transform: scale(0.6);
    margin-bottom: -120px;
}

.role-heading {
    font-size: 1.2rem;
    margin-bottom: 6px !important;
    padding-top: 8px;
}

.tree-with-heading {
    gap: 5px;
}

.hiw-section .mb-10 {
    margin-bottom: 0.25rem !important;
}

.bubble-node {
    width: 50px;
    height: 50px;
}

.node-wrapper {
    width: 60px;
}

.hiw-tree-level {
    margin-bottom: 8px;
}

.hiw-scene-wrapper {
    padding: 40px 0 10px;
}
}


.gap-l1 {
    gap: 100px;
}

.gap-l2 {
    gap: 32px;
}

.gap-l3 {
    gap: 12px;
}

@media (max-width: 1200px) {
    .gap-l1 {
        gap: 65px;
    }

    .gap-l2 {
        gap: 20px;
    }

    .gap-l3 {
        gap: 6px;
    }
}


.product-showcase-section {
    background: linear-gradient(135deg, #0a0e27 0%, #0f1435 100%);
    position: relative;
    overflow: hidden;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--section-pad-y) 0;
}

.product-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.product-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.product-orb.orb-1 {
    width: clamp(250px, 40vw, 400px);
    height: clamp(250px, 40vw, 400px);
    background: radial-gradient(circle, rgba(53, 182, 180, 0.4), transparent 70%);
    top: 10%;
    left: 15%;
    animation: floatOrb1 8s ease-in-out infinite;
}

.product-orb.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(192, 132, 252, 0.35), transparent 70%);
    top: 20%;
    right: 15%;
    animation: floatOrb2 10s ease-in-out infinite;
}

.product-orb.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.3), transparent 70%);
    bottom: 10%;
    left: 40%;
    animation: floatOrb3 12s ease-in-out infinite;
}

@keyframes floatOrb1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(40px, 30px);
    }
}

@keyframes floatOrb2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, 40px);
    }
}

@keyframes floatOrb3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -30px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-orb {
        animation: none !important;
    }
}

.product-showcase-section .max-w-7xl {
    position: relative;
    z-index: 1;
}

.product-carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 2rem 0;
}

.product-track {
    display: flex;
    gap: 2rem;
    width: fit-content;
}


.product-card {
    flex: 0 0 clamp(240px, 20vw, 280px);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(53, 182, 180, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(53, 182, 180, 0.3);
}

.product-image {
    width: clamp(140px, 15vw, 210px);
    height: clamp(140px, 15vw, 210px);
    object-fit: contain;
    margin: 0 auto clamp(0.5rem, 1vh, 1rem);
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1) rotate(5deg);
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFED4E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-cart-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(53, 182, 180, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pc-card-image-wrap .product-cart-icon {
    top: 0.6rem !important;
    right: 0.6rem !important;
    bottom: auto !important;
    z-index: 4;
}

.product-card:hover .product-cart-icon,
.pc-card:hover .product-cart-icon {
    background: #35B6B4;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(53, 182, 180, 0.6);
}


@media (max-width: 768px) {
    .product-card {
        flex: 0 0 240px;
        padding: 1rem;
    }

    .product-image {
        width: 140px;
        height: 140px;
    }

    .product-title {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.2rem;
    }
}


.explore-more-btn {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.5px;
}

.explore-more-btn:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}


.director-section {
    background: linear-gradient(135deg, #0a0e27 0%, #0f1435 100%);
    position: relative;
    overflow: hidden;
    padding: var(--section-pad-y) 0;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.marketing-glass-panel {
    margin: 0 auto;
    max-width: 100%;
    padding: clamp(0.8rem, 2vh, 1.25rem) clamp(0.5rem, 2vw, 1rem);
    border-radius: 24px;
    background: rgba(6, 10, 32, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 8px 48px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.marketing-scroll-container {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    touch-action: pan-x;
}

.marketing-scroll-container.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.marketing-scroll-container.is-dragging * {
    pointer-events: none;
}

.marketing-scroll-container::-webkit-scrollbar {
    display: none;
}

.marketing-track {
    display: flex;
    gap: 1.25rem;
    padding: 0.65rem 0.5rem 0.85rem;
    width: fit-content;
    align-items: stretch;
    /* All cards match the tallest one */
}

/* ============================================================
   ABOUT US SECTION — Layout & 3D Card
   ============================================================ */
.about-us-section {
    padding: var(--section-pad-y) var(--content-pad-x);
    position: relative;
    z-index: 10;
    overflow: visible;
}

.about-us-bleed-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-us-lanyard {
    position: relative;
    width: 100%;
    height: clamp(400px, 60vh, 580px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.about-us-text-column {
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .about-us-bleed-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-us-lanyard {
        height: 480px;
        min-height: 400px;
    }
}

/* Lanyard canvas — now inherits dimensions from .about-us-lanyard */
.lanyard-canvas {
    width: 100%;
    height: 100%;
    min-height: 480px;
    position: relative;
    z-index: 5;
    display: block;
    cursor: grab;
    overflow: visible;
}

.lanyard-loading,
.lanyard-error {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.marketing-card.reward-pc-card {
    --reward-accent: #76e2dd;
    flex: 0 0 min(320px, 58vw);
    width: min(320px, 58vw);
    height: auto;
    min-height: 320px;
    /* Minimal base height */
    border-radius: 28px;
    background: transparent;
    overflow: visible;
    contain: layout paint style;
    transform-style: preserve-3d;
    user-select: none;
    display: flex;
}

.marketing-card.reward-pc-card .border-glow-card {
    height: 100%;
    min-height: 100%;
    display: grid;
    background:
        radial-gradient(120% 95% at 100% 0%, color-mix(in srgb, var(--reward-accent) 78%, #ffffff 22%) 0%, color-mix(in srgb, var(--reward-accent) 92%, #0b1020 8%) 44%, color-mix(in srgb, var(--reward-accent) 86%, #0b1020 14%) 72%),
        linear-gradient(165deg, color-mix(in srgb, var(--reward-accent) 84%, #11162a 16%) 0%, color-mix(in srgb, var(--reward-accent) 72%, #0f1426 28%) 52%, color-mix(in srgb, var(--reward-accent) 62%, #0b1020 38%) 100%) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid color-mix(in srgb, var(--reward-accent) 70%, #ffffff 30%);
    box-shadow:
        0 18px 55px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.marketing-card.reward-pc-card:hover .border-glow-card {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    background:
        radial-gradient(120% 95% at 100% 0%, color-mix(in srgb, var(--reward-accent) 84%, #ffffff 16%) 0%, color-mix(in srgb, var(--reward-accent) 94%, #0b1020 6%) 44%, color-mix(in srgb, var(--reward-accent) 88%, #0b1020 12%) 72%),
        linear-gradient(165deg, color-mix(in srgb, var(--reward-accent) 88%, #10162a 12%) 0%, color-mix(in srgb, var(--reward-accent) 78%, #0d1425 22%) 52%, color-mix(in srgb, var(--reward-accent) 68%, #0a1020 32%) 100%) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}


.marketing-card.reward-pc-card .border-glow-card::before,
.marketing-card.reward-pc-card .border-glow-card::after,
.marketing-card.reward-pc-card .border-glow-card>.edge-light {
    display: none !important;
}

.marketing-card.reward-pc-card .border-glow-inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
}

.reward-pc-card-content {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.reward-pc-icon-wrap {
    height: 150px;
    margin-top: 4px;
}

.reward-pc-icon-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #ffffff;
    transition: transform 420ms ease;
}

.marketing-card.reward-pc-card:hover .reward-pc-icon-slot {
    transform: scale(1.06) rotate(3deg);
}

.reward-pc-icon-slot .marketing-card-icon-svg {
    width: 4rem;
    height: 4rem;
    filter:
        drop-shadow(0 0 14px rgba(0, 0, 0, 0.25)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.18));
}

.reward-pc-meta {
    margin-top: auto;
    padding-bottom: 4px;
}

.reward-pc-title {
    text-align: center;
    font-size: 1.12rem;
    line-height: 1.28;
    margin-bottom: 0.35rem;
}

.marketing-reward-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.reward-pc-list {
    margin-top: 2px;
}

.marketing-reward-bullet {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    font-size: 0.9rem;
    line-height: 1.4;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marketing-reward-bullet:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.marketing-reward-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    margin-top: 0.4em;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.78));
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}

.marketing-reward-text {
    flex: 1;
    min-width: 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.35;
}

.commission-percent {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700, #FFED4E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.direct-badge {
    background: linear-gradient(135deg, #DD736E, #c95a55);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.indirect-badge {
    background: rgba(53, 182, 180, 0.2);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal);
}

.person-list {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.person-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.person-name {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.person-commission {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
}

@media (max-width: 1024px) {
    .marketing-card.reward-pc-card {
        flex: 0 0 min(280px, 70vw);
        width: min(280px, 70vw);
        height: auto;
        min-height: 300px;
    }

    .lanyard-canvas {
        height: 500px;
        min-height: 400px;
    }
}

@media (max-width: 640px) {
    .marketing-glass-panel {
        padding: 1rem 0.55rem 1.05rem;
        border-radius: 20px;
    }

    .marketing-card.reward-pc-card {
        flex: 0 0 min(260px, 85vw);
        width: min(260px, 85vw);
        height: auto;
        min-height: 280px;
        /* Let it grow naturally with the content */
    }

    .lanyard-canvas {
        height: 450px;
        min-height: 350px;
    }

    .commission-percent {
        font-size: 1.8rem;
    }

    .reward-pc-title {
        font-size: 1rem;
    }

    .reward-pc-icon-wrap {
        height: 120px;
    }

    .reward-pc-icon-slot .marketing-card-icon-svg {
        width: 3.2rem;
        height: 3.2rem;
    }

    .reward-pc-card-content {
        padding: 16px 16px 14px;
    }
}


.about-us-section {
    background: linear-gradient(180deg, #0f1435 0%, #0a0e27 100%);
    padding: 6rem 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}


.about-us-bleed-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 36rem);
    gap: clamp(1.25rem, 4vw, 3rem);
    align-items: center;
    width: 100%;
}


.about-us-lanyard {
    position: relative;
    width: 100%;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding-left: 0;
    margin-left: 0;
}


.about-us-text-column {
    padding: 1.5rem;
    min-width: 0;
}

/* .lanyard-canvas base styles are defined in the About Us section above */

.lanyard-wrapper {
    width: 100%;
    height: 100%;
}

.lanyard-wrapper canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
    cursor: grab;
}

.lanyard-error {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 0.02em;
    background: rgba(10, 14, 39, 0.7);
}

.lanyard-canvas:active {
    cursor: grabbing;
}

.about-us-content {
    padding: 1rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(53, 182, 180, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700, #FFED4E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

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

    .about-us-lanyard {
        min-height: 420px;
        justify-content: center;
        order: -1;
        padding-left: 0;
    }

    .about-us-text-column {
        padding-left: max(1.5rem, calc((100vw - min(100vw, 80rem)) / 2 + 0.75rem));
        padding-right: max(1.5rem, calc((100vw - min(100vw, 80rem)) / 2 + 0.75rem));
    }

    .lanyard-canvas {
        width: min(680px, 100%);
        height: 420px;
    }

    .about-us-content {
        text-align: center;
    }

    .stats-grid {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .about-us-section {
        padding: 4rem 0;
    }

    .about-us-bleed-grid {
        gap: 2rem;
    }

    .about-us-text-column {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .about-us-lanyard {
        min-height: 380px;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        box-sizing: border-box;
    }

    .lanyard-canvas {
        width: 100%;
        max-width: 100%;
        height: 380px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}


.company-card-section {
    background: linear-gradient(180deg, #0f1435 0%, #0a0e27 100%);
    padding: 5rem 0;
    overflow-x: hidden;
}

.company-card {
    background: linear-gradient(135deg, rgba(53, 182, 180, 0.15), rgba(221, 115, 110, 0.1));
    backdrop-filter: blur(16px);
    border-radius: 32px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
}

.company-card:hover {
    transform: scale(1.02);
    border-color: rgba(53, 182, 180, 0.4);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}


.testimonials-section {
    --testimonial-marquee-gap: clamp(1rem, 3vw, 2rem);

    background: linear-gradient(180deg, #0a0e27 0%, #0f1435 100%);
    padding: var(--section-pad-y) 0;
    overflow: hidden;
}

.testimonial-scroll-container {
    position: relative;
    width: 100%;
}

.testimonials-marquee-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonials-marquee-train {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    width: max-content;
    padding: 1rem 0;
    will-change: transform;
}

.testimonials-marquee-set {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    flex-shrink: 0;
    align-items: stretch;
    gap: var(--testimonial-marquee-gap);
    padding-inline-end: var(--testimonial-marquee-gap);
    box-sizing: border-box;
}


.testimonial-card {
    flex: 0 0 clamp(260px, 22vw, 320px);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: clamp(1.2rem, 3vh, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-card:hover {
    border-color: rgba(53, 182, 180, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--teal);
}

.testimonial-earning {
    font-size: 0.8rem;
    color: var(--gold);
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .testimonials-marquee-train {
        will-change: transform;
    }

    .testimonials-marquee-viewport {
        overflow: hidden;
        touch-action: pan-y;
    }
}

@media (max-width: 640px) {
    .testimonial-card {
        flex: 0 0 min(280px, calc(100vw - 2.5rem));
        padding: 1rem;
    }
}


.contact-section {
    background: linear-gradient(135deg, #0f1435 0%, #0a0e27 100%);
    padding: var(--section-pad-y) var(--content-pad-x);
    position: relative;
    overflow: hidden;
}

.contact-card {
    background: linear-gradient(135deg, rgba(53, 182, 180, 0.12), rgba(221, 115, 110, 0.08));
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: clamp(2rem, 8vh, 4rem) clamp(1rem, 5vw, 3.5rem);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    max-width: var(--container-max-w);
    margin: 0 auto;
}

.contact-now-btn {
    background: linear-gradient(135deg, var(--teal), #2a8a88);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.contact-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(53, 182, 180, 0.4);
}


.product-showcase-section {
    padding: 4rem 0;
    position: relative;
    overflow-x: hidden;
}

.product-carousel-container {
    width: 100%;
    overflow: visible;

    position: relative;
    padding: 2rem 0;
    perspective: 2000px;

    transform-style: preserve-3d;
}


.tilt-card {
    transform-style: preserve-3d;
    will-change: transform;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.tilt-card:hover {
    box-shadow: 0 45px 85px rgba(0, 0, 0, 0.6);
    border-color: rgba(53, 182, 180, 0.6) !important;
    background: rgba(30, 38, 62, 1) !important;
}


.tilt-card .pop-3d-lg {
    transform: translateZ(80px);
    transition: transform 0.3s ease;
}

.tilt-card .pop-3d-md {
    transform: translateZ(50px);
    transition: transform 0.3s ease;
}

.tilt-card .pop-3d-sm {
    transform: translateZ(30px);
    transition: transform 0.3s ease;
}

.product-card {
    background: rgba(26, 32, 53, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    width: 280px;
    text-align: center;
    cursor: pointer;
}

.product-image {
    width: 210px;
    height: 210px;
    object-fit: contain;
    margin: 0 auto 20px;
}


.reward-pc-card .pc-card-title,
.testimonial-author {
    color: white !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
}

.product-card-wrapper {
    will-change: transform;
    flex-shrink: 0;
}


@media (min-width: 1920px) {
    .max-w-7xl {
        max-width: 1536px !important;
    }

    .max-w-5xl {
        max-width: 1280px !important;
    }

    .max-w-4xl {
        max-width: 1024px !important;
    }

    .hiw-heading {
        font-size: 3.5rem;
    }

    .heading-font.text-4xl {
        font-size: 3.5rem !important;
    }

    .product-card {
        flex: 0 0 350px;
    }

    .product-image {
        width: 220px;
        height: 220px;
    }

    .marketing-card {
        flex: 0 0 400px;
    }

    .testimonial-card {
        flex: 0 0 350px;
    }

    .contact-card {
        padding: 5rem;
    }

    .company-card {
        padding: 4rem;
    }
}

@media (min-width: 2560px) {
    html {
        font-size: 18px;
    }

    .max-w-7xl {
        max-width: 1800px !important;
    }

    .hiw-heading {
        font-size: 4rem;
    }
}


@media (max-width: 1440px) {
    .hiw-heading {
        font-size: 2.5rem;
    }

    .product-card {
        flex: 0 0 260px;
    }

    .marketing-card {
        flex: 0 0 300px;
    }
}


@media (max-width: 1024px) {
    .product-showcase-section {
        padding: 3rem 0;
    }

    .director-section {
        padding: 4rem 0;
    }

    .testimonials-section {
        padding: 4rem 0;
    }

    .contact-section {
        padding: 4rem 1.5rem;
    }

    .company-card-section {
        padding: 4rem 0;
    }

    .contact-card {
        padding: 2.5rem;
        border-radius: 30px;
    }

    .company-card {
        padding: 2rem;
    }


    .hiw-section {
        height: auto !important;
        min-height: auto !important;
        padding: 3rem 1rem;
    }

    .hiw-scene-wrapper {
        height: auto !important;
        min-height: auto !important;
        padding: 1rem 0;
    }

    .hiw-dual-container {
        display: flex !important;
        flex-direction: row !important;
        gap: 2rem !important;
        position: relative !important;
        margin-top: 0 !important;
        height: auto !important;
    }

    .hiw-column {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 48% !important;
        max-width: 48% !important;
        flex-shrink: 0;
    }

    .hiw-column-inner {
        width: 100%;
    }

    .role-heading {
        font-size: 1.4rem;
        writing-mode: horizontal-tb !important;
        transform: none !important;
        text-align: center;
        padding-top: 0;
        margin-bottom: 1rem;
    }

    .tree-with-heading {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }


    .hiw-tree-container {
        transform: none !important;
        margin-bottom: 0 !important;
        max-width: 100%;
    }

    .hiw-tree-level {
        margin-bottom: 14px;
    }

    .node-wrapper {
        width: 60px !important;
    }

    .bubble-node {
        width: 50px !important;
        height: 50px !important;
    }

    .node-l0 {
        width: 60px !important;
        height: 60px !important;
        font-size: 0.95rem !important;
    }

    .node-l1 {
        width: 48px !important;
        height: 48px !important;
        font-size: 0.8rem !important;
    }

    .node-l2 {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.7rem !important;
    }

    .bubble-amount {
        font-size: 0.85rem !important;
    }

    .gap-l1 {
        gap: 60px !important;
    }

    .gap-l2 {
        gap: 18px !important;
    }

    .gap-l3 {
        gap: 4px !important;
    }

    .b-cascade-container {
        transform: scale(0.85) !important;
        transform-origin: top left !important;
    }

    .cinematic-reveal-wrap {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 100% !important;
        padding-top: 1rem !important;
        padding-right: 0 !important;
    }

    .extended-levels-grid {
        padding-left: 30px !important;
    }

    .level-ball {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.7rem !important;
    }

    .level-row {
        gap: 12px !important;
    }

    .vertical-text {
        font-size: 0.65rem !important;
        max-height: 200px !important;
    }
}


@media (min-width: 900px) and (max-width: 1024px) {
    #howItWorks.hiw-section {
        height: 100vh !important;
        min-height: 100vh !important;
        padding: 0 !important;
    }

    #howItWorks .hiw-scene-wrapper {
        height: calc(100vh - var(--hiw-top-slot-h)) !important;
        min-height: calc(100vh - var(--hiw-top-slot-h)) !important;
        padding-top: 0 !important;
        overflow: visible !important;
    }

    #howItWorks .hiw-dual-container {
        display: block !important;
        height: 100% !important;
        margin-top: -2px !important;
    }

    #howItWorks .hiw-column {
        position: absolute !important;
        top: 41.5% !important;
        left: auto !important;
        width: 100% !important;
        max-width: 600px !important;
        padding: 0 20px 10px 20px !important;
        transform-style: preserve-3d !important;
        transform: none !important;
    }

    #howItWorks .sales-column {
        left: 25% !important;
        transform: translate(-50%, -50%) !important;
    }

    #howItWorks .area-column {
        left: 75% !important;
        transform: translate(-50%, -50%) !important;
    }

    #howItWorks .tree-with-heading {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }

    #howItWorks .role-heading {
        font-size: 2.0rem !important;
        writing-mode: vertical-rl !important;
        text-orientation: mixed !important;
        transform: rotate(180deg) !important;
        text-align: left !important;
        padding-top: 20px !important;
        margin-bottom: 8px !important;
        margin-left: 22px !important;
    }

    #howItWorks .cinematic-reveal-wrap {
        opacity: 0;
        position: absolute !important;
        left: 100% !important;
        top: 0 !important;
        width: 90% !important;
        bottom: auto !important;
        transform: none !important;
        pointer-events: none !important;
        padding-top: 0 !important;
    }
}

@media (max-width: 834px) {
    .product-card {
        flex: 0 0 240px;
    }

    .product-image {
        width: 140px;
        height: 140px;
    }

    .marketing-card {
        flex: 0 0 280px;
    }

    .testimonial-card {
        flex: 0 0 260px;
    }


    .hiw-section {
        padding: 2.5rem 0.75rem;
    }

    .hiw-dual-container {
        flex-direction: column !important;
        gap: 2.5rem !important;
    }

    .hiw-column {
        width: 100% !important;
        max-width: 100% !important;
    }

    .hiw-tree-container {
        max-width: 100%;
    }

    .node-wrapper {
        width: 55px !important;
    }

    .bubble-node {
        width: 46px !important;
        height: 46px !important;
    }

    .node-l0 {
        width: 55px !important;
        height: 55px !important;
        font-size: 0.9rem !important;
    }

    .node-l1 {
        width: 44px !important;
        height: 44px !important;
        font-size: 0.75rem !important;
    }

    .node-l2 {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.65rem !important;
    }

    .bubble-amount {
        font-size: 0.8rem !important;
    }

    .gap-l1 {
        gap: 45px !important;
    }

    .gap-l2 {
        gap: 12px !important;
    }

    .gap-l3 {
        gap: 2px !important;
    }

    .hiw-tree-level {
        margin-bottom: 10px;
    }

    .b-cascade-container {
        transform: scale(0.75) !important;
        transform-origin: top left !important;
    }

    .role-heading {
        font-size: 1.3rem;
    }
}


@media (max-width: 768px) {
    .product-showcase-section {
        padding: 3rem 0;
    }

    .product-showcase-section h2 {
        font-size: 2rem !important;
    }

    .product-card {
        flex: 0 0 220px;
        padding: 1rem;
    }

    .product-image {
        width: 120px;
        height: 120px;
    }

    .pc-card.pc-slot-1 {
        box-shadow: 0 45px 85px rgba(0, 0, 0, 0.6) !important;
        border-color: rgba(67, 115, 199, 0.6) !important;
        backdrop-filter: blur(8px) saturate(90%) !important;
        background: rgba(67, 115, 199, 0.09) !important;
    }

    .product-title {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.2rem;
    }

    .director-section {
        padding: 3rem 0;
    }

    .director-section h2 {
        font-size: 2rem !important;
    }

    .marketing-card {
        flex: 0 0 85vw;
        padding: 1.2rem;
    }

    .commission-percent {
        font-size: 1.8rem;
    }

    .reward-pc-title {
        font-size: 1.05rem;
    }

    .company-card-section {
        padding: 3rem 1rem;
    }

    .company-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .company-card .flex.flex-col.md\:flex-row {
        flex-direction: column !important;
        text-align: center;
    }

    .company-card .w-full.md\:w-1\/3,
    .company-card .w-full.md\:w-2\/3 {
        width: 100% !important;
    }

    .company-card .flex.flex-wrap.gap-4 {
        justify-content: center;
    }

    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonials-section h2 {
        font-size: 2rem !important;
    }

    .testimonial-card {
        flex: 0 0 min(280px, calc(100vw - 2.5rem));
        padding: 1.2rem;
    }

    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    .contact-card h2 {
        font-size: 2rem !important;
    }

    .contact-card .flex.flex-col.md\:flex-row {
        flex-direction: column !important;
    }

    .contact-now-btn {
        width: 100%;
        max-width: 280px;
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }

    #site-footer .flex.flex-col.md\:flex-row {
        flex-direction: column !important;
        text-align: center;
        gap: 1rem !important;
    }

    #site-footer .flex.items-center.gap-4 {
        flex-wrap: wrap;
        justify-content: center;
    }

    .wave-cursor {
        display: none;
    }


    .hiw-section {
        height: auto !important;
        min-height: auto !important;
        padding: 2rem 0.5rem;
        overflow: visible !important;
    }

    .hiw-section .mb-10 {
        margin-bottom: 0.5rem !important;
        flex-shrink: 0;
    }

    .hiw-scene-wrapper {
        height: auto !important;
        min-height: auto !important;
        padding: 0.5rem 0;
        overflow: visible !important;
    }

    .hiw-dual-container {
        flex-direction: column !important;
        gap: 2rem !important;
        position: relative !important;
        margin-top: 0 !important;
        height: auto !important;
    }

    .hiw-column {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 0;
        padding: 0 0.5rem;
    }

    .hiw-column-inner {
        width: 100%;
        overflow: visible !important;
    }

    .role-heading {
        writing-mode: horizontal-tb !important;
        transform: none !important;
        font-size: 1.2rem;
        text-align: center;
        padding-top: 0;
        margin-bottom: 0.75rem;
        white-space: normal;
    }

    .tree-with-heading {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.25rem !important;
    }


    .hiw-tree-container {
        transform: none !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        max-width: 100%;
        padding: 0;
        overflow: visible !important;
    }

    .hiw-tree-level {
        margin-bottom: 8px;
        justify-content: center;
    }

    .node-wrapper {
        width: 48px !important;
        top: 0 !important;
    }

    .bubble-node {
        width: 42px !important;
        height: 42px !important;
    }

    .node-l0 {
        width: 50px !important;
        height: 50px !important;
        font-size: 0.85rem !important;
    }

    .node-l1 {
        width: 40px !important;
        height: 40px !important;
        font-size: 0.7rem !important;
    }

    .node-l2 {
        width: 34px !important;
        height: 34px !important;
        font-size: 0.6rem !important;
    }

    .bubble-amount {
        font-size: 0.75rem !important;
    }

    .gap-l1 {
        gap: 30px !important;
    }

    .gap-l2 {
        gap: 6px !important;
    }

    .gap-l3 {
        gap: 0px !important;
    }


    .b-cascade-container {
        transform: scale(0.65) !important;
        transform-origin: top left !important;
        top: 45px !important;
        left: -15px !important;
    }

    .b-cascade-node {
        width: 16px !important;
        height: 16px !important;
        font-size: 0.4rem !important;
    }


    .cinematic-reveal-wrap {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100% !important;
        padding-top: 0.5rem !important;
        padding-right: 0 !important;
        overflow: visible !important;
    }

    .tree-extended-wrap {
        margin-top: 10px !important;
    }

    .extended-levels-grid {
        padding-left: 15px !important;
        gap: 15px !important;
    }

    .level-ball {
        width: 45px !important;
        height: 45px !important;
        font-size: 0.75rem !important;
    }

    .level-row {
        gap: 8px !important;
    }

    .vertical-text {
        font-size: 0.55rem !important;
        max-height: 150px !important;
        writing-mode: horizontal-tb !important;
        transform: none !important;
        margin-right: 0 !important;
        margin-bottom: 5px !important;
    }

    .bracket-line {
        width: 8px !important;
    }

    .diagonal-lines-svg {
        height: 400px !important;
        top: -60px !important;
    }
}


@media (max-width: 640px) {
    .product-showcase-section h2 {
        font-size: 1.8rem !important;
    }

    .product-card {
        flex: 0 0 200px;
    }

    .product-image {
        width: 100px;
        height: 100px;
    }

    .product-title {
        font-size: 0.9rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .director-section h2 {
        font-size: 1.8rem !important;
    }

    .marketing-card {
        flex: 0 0 90vw;
    }

    .testimonials-section h2 {
        font-size: 1.8rem !important;
    }

    .testimonial-card {
        flex: 0 0 min(280px, calc(100vw - 2.5rem));
    }

    .contact-card h2 {
        font-size: 1.8rem !important;
    }

    .contact-card p.text-white\/70 {
        font-size: 0.9rem;
    }

    .company-card h3 {
        font-size: 1.5rem;
    }

    .company-card .bg-white\/5 p.text-2xl {
        font-size: 1.5rem;
    }


    .hiw-section {
        padding: 1.5rem 0.25rem;
    }

    .hiw-heading {
        font-size: 1.5rem;
    }

    .hiw-subheading {
        font-size: 0.75rem;
    }

    .hiw-dual-container {
        gap: 1.5rem !important;
    }

    .hiw-column {
        padding: 0 0.25rem;
    }

    .role-heading {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .hiw-tree-container {
        max-width: 100%;
    }

    .hiw-tree-level {
        margin-bottom: 6px;
    }

    .node-wrapper {
        width: 42px !important;
    }

    .bubble-node {
        width: 38px !important;
        height: 38px !important;
    }

    .node-l0 {
        width: 44px !important;
        height: 44px !important;
        font-size: 0.8rem !important;
    }

    .node-l1 {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.65rem !important;
    }

    .node-l2 {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.55rem !important;
    }

    .bubble-amount {
        font-size: 0.7rem !important;
    }

    .gap-l1 {
        gap: 22px !important;
    }

    .gap-l2 {
        gap: 3px !important;
    }

    .gap-l3 {
        gap: 0px !important;
    }

    .b-cascade-container {
        transform: scale(0.55) !important;
        top: 38px !important;
        left: -10px !important;
    }

    .extended-levels-grid {
        padding-left: 10px !important;
        gap: 10px !important;
    }

    .level-ball {
        width: 26px !important;
        height: 26px !important;
        font-size: 0.55rem !important;
    }

    .level-row {
        gap: 5px !important;
    }

    .diagonal-lines-svg {
        height: 350px !important;
        top: -50px !important;
    }
}


@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .product-showcase-section {
        padding: 2.5rem 0;
    }

    .product-showcase-section h2 {
        font-size: 1.5rem !important;
    }

    .product-showcase-section p.text-white\/60 {
        font-size: 0.85rem;
    }

    .product-card {
        flex: 0 0 180px;
        padding: 0.8rem;
        border-radius: 16px;
    }

    .product-image {
        width: 90px;
        height: 90px;
    }

    .product-title {
        font-size: 0.85rem;
    }

    .product-price {
        font-size: 1rem;
    }

    .product-cart-icon {
        width: 32px;
        height: 32px;
        top: 0.7rem;
        bottom: auto;
        right: 0.7rem;
    }

    .director-section {
        padding: 2.5rem 0;
    }

    .director-section h2 {
        font-size: 1.5rem !important;
    }

    .director-section p.text-white\/60 {
        font-size: 0.85rem;
    }

    .marketing-card {
        flex: 0 0 92vw;
        padding: 1rem;
        border-radius: 20px;
    }

    .commission-percent {
        font-size: 1.5rem;
    }

    .reward-pc-title {
        font-size: 0.98rem;
    }

    .direct-badge,
    .indirect-badge {
        font-size: 0.75rem;
        padding: 0.2rem 0.7rem;
    }

    .company-card-section {
        padding: 2.5rem 0.75rem;
    }

    .company-card {
        padding: 1.2rem;
        border-radius: 16px;
    }

    .company-card h3 {
        font-size: 1.3rem;
    }

    .company-card .bg-white\/5 {
        padding: 0.8rem;
    }

    .company-card .bg-white\/5 p.text-2xl {
        font-size: 1.3rem;
    }

    .company-card .bg-white\/5 p.text-sm {
        font-size: 0.7rem;
    }

    .testimonials-section {
        padding: 2.5rem 0;
    }

    .testimonials-section h2 {
        font-size: 1.5rem !important;
    }

    .testimonials-section p.text-white\/60 {
        font-size: 0.85rem;
    }

    .testimonial-card {
        flex: 0 0 min(280px, calc(100vw - 2.5rem));
        padding: 1rem;
        border-radius: 16px;
    }

    .testimonial-text {
        font-size: 0.8rem;
    }

    .testimonial-author {
        font-size: 0.9rem;
    }

    .testimonial-earning {
        font-size: 0.75rem;
    }

    .contact-section {
        padding: 2.5rem 0.75rem;
    }

    .contact-card {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .contact-card h2 {
        font-size: 1.5rem !important;
    }

    .contact-card p.text-white\/70 {
        font-size: 0.85rem;
    }

    .contact-card .flex.items-center.gap-2 {
        font-size: 0.85rem;
    }

    .contact-now-btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
        width: 100%;
        max-width: 250px;
    }

    #site-footer {
        padding: 1.5rem 0.5rem;
    }

    #site-footer p.text-sm {
        font-size: 0.75rem;
    }

    #site-footer .flex.items-center.gap-4 a {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    .loader-brand {
        font-size: 1.3rem !important;
    }

    .loader-tagline {
        font-size: 0.6rem !important;
    }

    .loader-container {
        width: 120px;
        height: 120px;
    }

    .loader-progress {
        width: 120px;
    }

    #navbar .max-w-7xl {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    #navbar img.h-16 {
        height: 2.5rem !important;
    }


    .hiw-section {
        padding: 1.25rem 0.25rem;
    }

    .hiw-heading {
        font-size: 1.3rem;
    }

    .hiw-subheading {
        font-size: 0.7rem;
    }

    .hiw-dual-container {
        gap: 1.25rem !important;
    }

    .role-heading {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .hiw-tree-level {
        margin-bottom: 4px;
    }

    .node-wrapper {
        width: 38px !important;
    }

    .bubble-node {
        width: 34px !important;
        height: 34px !important;
    }

    .node-l0 {
        width: 40px !important;
        height: 40px !important;
        font-size: 0.75rem !important;
    }

    .node-l1 {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.6rem !important;
    }

    .node-l2 {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.5rem !important;
    }

    .bubble-amount {
        font-size: 0.65rem !important;
    }

    .gap-l1 {
        gap: 16px !important;
    }

    .gap-l2 {
        gap: 1px !important;
    }

    .gap-l3 {
        gap: 0px !important;
    }

    .b-cascade-container {
        transform: scale(0.5) !important;
        top: 32px !important;
        left: -5px !important;
    }

    .extended-levels-grid {
        padding-left: 5px !important;
        gap: 8px !important;
    }

    .level-ball {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.5rem !important;
    }

    .level-row {
        gap: 3px !important;
    }

    .vertical-text {
        font-size: 0.5rem !important;
    }

    .diagonal-lines-svg {
        height: 300px !important;
        top: -40px !important;
    }
}


@media (max-width: 360px) {
    html {
        font-size: 13px;
    }

    .product-card {
        flex: 0 0 160px;
    }

    .product-image {
        width: 80px;
        height: 80px;
    }

    .marketing-card {
        flex: 0 0 95vw;
    }

    .testimonial-card {
        flex: 0 0 min(280px, calc(100vw - 2.5rem));
    }

    .contact-card {
        padding: 1.2rem 0.8rem;
    }


    .hiw-heading {
        font-size: 1.2rem;
    }

    .hiw-dual-container {
        gap: 1rem !important;
    }

    .node-wrapper {
        width: 34px !important;
    }

    .bubble-node {
        width: 30px !important;
        height: 30px !important;
    }

    .node-l0 {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.7rem !important;
    }

    .node-l1 {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.55rem !important;
    }

    .node-l2 {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.45rem !important;
    }

    .bubble-amount {
        font-size: 0.6rem !important;
    }

    .gap-l1 {
        gap: 12px !important;
    }

    .gap-l2 {
        gap: 0px !important;
    }

    .b-cascade-container {
        transform: scale(0.45) !important;
    }

    .level-ball {
        width: 40px !important;
        height: 40px !important;
        font-size: 0.7rem !important;
    }
}


@media (max-width: 320px) {
    html {
        font-size: 12px;
    }

    .product-card {
        flex: 0 0 140px;
    }

    .product-image {
        width: 70px;
        height: 70px;
    }


    .hiw-heading {
        font-size: 1.1rem;
    }

    .node-wrapper {
        width: 30px !important;
    }

    .bubble-node {
        width: 26px !important;
        height: 26px !important;
    }

    .node-l0 {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.65rem !important;
    }

    .node-l1 {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.5rem !important;
    }

    .node-l2 {
        width: 20px !important;
        height: 20px !important;
        font-size: 0.4rem !important;
    }

    .bubble-amount {
        font-size: 0.55rem !important;
    }

    .gap-l1 {
        gap: 8px !important;
    }

    .b-cascade-container {
        transform: scale(0.4) !important;
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    .product-card {
        flex: 0 0 240px;
    }

    .marketing-card {
        flex: 0 0 280px;
    }
}


@media (max-height: 500px) and (orientation: landscape) {
    .hiw-section {
        height: auto !important;
        min-height: auto !important;
    }

    .hiw-scene-wrapper {
        height: auto !important;
    }

    .hiw-column {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
    }

    .loader-content-wrapper {
        transform: translateY(0) !important;
    }
}


@media (min-width: 800px) and (max-width: 1200px) and (max-height: 1000px) {
    .max-w-7xl {
        max-width: 90% !important;
    }
}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .product-track,
    .marketing-track,
    .testimonials-marquee-train {
        animation: none !important;
    }
}


@media (prefers-contrast: high) {

    .product-card,
    .marketing-card,
    .testimonial-card,
    .offer-item,
    .company-card,
    .contact-card {
        border-width: 2px;
        border-color: rgba(255, 255, 255, 0.5);
    }

    .text-white\/60,
    .text-white\/70,
    .text-white\/50 {
        color: rgba(255, 255, 255, 0.9) !important;
    }
}


.premium-card-carousel-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.premium-card-carousel {
    width: 100%;
    max-width: 1120px;
    height: 520px;
    position: relative;
    perspective: 1600px;
    perspective-origin: 50% 45%;
    transform-style: preserve-3d;
    cursor: grab;
}

.premium-card-stage {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    pointer-events: auto;
    touch-action: pan-y;
}

.pc-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(320px, 58vw);
    height: 380px;
    border-radius: 28px;
    background: transparent;
    overflow: visible;
    transform-style: preserve-3d;
    user-select: none;
    contain: layout paint style;
    will-change: transform, opacity;


    --x: 0px;
    --y: 0px;
    --z: 0px;
    --rx: 0deg;
    --ry: 0deg;
    --rz: 0deg;
    --scale: 1;
    --hover-rx: 0deg;
    --hover-ry: 0deg;
    --hover-scale-add: 0;
    --slot-opacity: 1;
    --slot-blur: 0px;

    opacity: var(--slot-opacity);
    transition:
        transform 750ms cubic-bezier(0.2, 0.9, 0.2, 1),
        opacity 750ms cubic-bezier(0.2, 0.9, 0.2, 1),
        box-shadow 320ms ease;

    transform: translate(-50%, -50%) translate3d(var(--x), var(--y), var(--z)) rotateX(calc(var(--rx) + var(--hover-rx))) rotateY(calc(var(--ry) + var(--hover-ry))) rotateZ(var(--rz)) scale(calc(var(--scale) + var(--hover-scale-add)));
}


.pc-card[aria-hidden="true"] {
    pointer-events: auto;
    cursor: pointer;
}

.pc-card:hover {
    --hover-scale-add: 0.045;
    will-change: transform;
}

.pc-card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pc-card-image-wrap {
    position: relative;
    z-index: 1;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.pc-card-image {
    width: 165px;
    /* Enhanced size for focal impact */
    height: 165px;
    object-fit: contain;
    box-shadow: none;
    transform: translateZ(50px);
    /* Increased 3D depth */
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Smoother interaction */
    -webkit-user-drag: none;
    user-select: none;
}

.product-image,
.pc-card-image {
    -webkit-user-drag: none;
    user-select: none;
}


.border-glow-card {
    --edge-proximity: 0;
    --cursor-angle: 45deg;
    --edge-sensitivity: 30;
    --color-sensitivity: calc(var(--edge-sensitivity) + 20);
    --border-radius: 28px;
    --glow-padding: 40px;
    --cone-spread: 25;

    position: relative;
    border-radius: var(--border-radius);
    isolation: isolate;
    transform: translate3d(0, 0, 0.01px);
    display: grid;

    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(200%) !important;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.25);
    transition:
        box-shadow 320ms ease,
        background-color 320ms ease,
        backdrop-filter 320ms ease,
        -webkit-backdrop-filter 320ms ease;
}

.pc-card.pc-slot-2 {
    backdrop-filter: blur(5px) saturate(90%) !important;
    background: rgba(67, 115, 199, 0.087) !important;
}

@media (min-width: 769px) {
    .pc-card.pc-slot-2 .border-glow-card {
        background: rgba(255, 255, 255, 0.08) !important;
        backdrop-filter: blur(12px) saturate(200%) !important;
        -webkit-backdrop-filter: blur(12px) saturate(200%) !important;
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
        box-shadow:
            0 18px 55px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.15),
            inset 0 -1px 0 rgba(255, 255, 255, 0.05) !important;
    }
}

@media (max-width: 768px) {

    .pc-card-content {
        padding: 12px !important;
    }

    .pc-card.pc-slot-1 .border-glow-card {
        background: rgba(255, 255, 255, 0.08) !important;
        backdrop-filter: blur(12px) saturate(200%) !important;
        -webkit-backdrop-filter: blur(12px) saturate(200%) !important;
        border: 1px solid rgba(255, 255, 255, 0.25) !important;
        box-shadow:
            0 18px 55px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.15),
            inset 0 -1px 0 rgba(255, 255, 255, 0.05) !important;
    }

    .pc-card.pc-slot-2 {
        backdrop-filter: blur(5px) saturate(90%) !important;
        background: transparent !important;
    }
}

.pc-card .border-glow-card::before,
.pc-card .border-glow-card::after,
.pc-card .border-glow-card>.edge-light {
    display: none !important;
}

.pc-card:hover .border-glow-card {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.12) !important;
}

.pc-card:focus-visible .border-glow-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.border-glow-card::before,
.border-glow-card::after,
.border-glow-card>.edge-light {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    transition: opacity 0.25s ease-out;
    z-index: -1;
}

.border-glow-card:not(:hover):not(.sweep-active)::before,
.border-glow-card:not(:hover):not(.sweep-active)::after,
.border-glow-card:not(:hover):not(.sweep-active)>.edge-light {
    opacity: 0;
    transition: opacity 0.75s ease-in-out;
}

.border-glow-card::before {
    border: 1px solid transparent;
    background:
        linear-gradient(var(--card-bg, #060010) 0 100%) padding-box,
        linear-gradient(rgb(255 255 255 / 0%) 0% 100%) border-box,
        var(--gradient-one, radial-gradient(at 80% 55%, #c084fc 0px, transparent 50%)) border-box,
        var(--gradient-two, radial-gradient(at 69% 34%, #f472b6 0px, transparent 50%)) border-box,
        var(--gradient-three, radial-gradient(at 8% 6%, #38bdf8 0px, transparent 50%)) border-box,
        var(--gradient-four, radial-gradient(at 41% 38%, #c084fc 0px, transparent 50%)) border-box,
        var(--gradient-five, radial-gradient(at 86% 85%, #f472b6 0px, transparent 50%)) border-box,
        var(--gradient-six, radial-gradient(at 82% 18%, #38bdf8 0px, transparent 50%)) border-box,
        var(--gradient-seven, radial-gradient(at 51% 4%, #f472b6 0px, transparent 50%)) border-box,
        var(--gradient-base, linear-gradient(#c084fc 0 100%)) border-box;

    opacity: calc((var(--edge-proximity) - var(--color-sensitivity)) / (100 - var(--color-sensitivity)));

    mask-image:
        conic-gradient(from var(--cursor-angle) at center,
            black calc(var(--cone-spread) * 1%),
            transparent calc((var(--cone-spread) + 15) * 1%),
            transparent calc((100 - var(--cone-spread) - 15) * 1%),
            black calc((100 - var(--cone-spread)) * 1%));
}

.border-glow-card::after {
    border: 1px solid transparent;
    background:
        var(--gradient-one, radial-gradient(at 80% 55%, #c084fc 0px, transparent 50%)) padding-box,
        var(--gradient-two, radial-gradient(at 69% 34%, #f472b6 0px, transparent 50%)) padding-box,
        var(--gradient-three, radial-gradient(at 8% 6%, #38bdf8 0px, transparent 50%)) padding-box,
        var(--gradient-four, radial-gradient(at 41% 38%, #c084fc 0px, transparent 50%)) padding-box,
        var(--gradient-five, radial-gradient(at 86% 85%, #f472b6 0px, transparent 50%)) padding-box,
        var(--gradient-six, radial-gradient(at 82% 18%, #38bdf8 0px, transparent 50%)) padding-box,
        var(--gradient-seven, radial-gradient(at 51% 4%, #f472b6 0px, transparent 50%)) padding-box,
        var(--gradient-base, linear-gradient(#c084fc 0 100%)) padding-box;

    mask-image:
        linear-gradient(to bottom, black, black),
        radial-gradient(ellipse at 50% 50%, black 40%, transparent 65%),
        radial-gradient(ellipse at 66% 66%, black 5%, transparent 40%),
        radial-gradient(ellipse at 33% 33%, black 5%, transparent 40%),
        radial-gradient(ellipse at 66% 33%, black 5%, transparent 40%),
        radial-gradient(ellipse at 33% 66%, black 5%, transparent 40%),
        conic-gradient(from var(--cursor-angle) at center, transparent 5%, black 15%, black 85%, transparent 95%);

    mask-composite: subtract, add, add, add, add, add;
    opacity: calc(var(--fill-opacity, 0.5) * (var(--edge-proximity) - var(--color-sensitivity)) / (100 - var(--color-sensitivity)));
    mix-blend-mode: soft-light;
}

.border-glow-card>.edge-light {
    inset: calc(var(--glow-padding) * -1);
    pointer-events: none;
    z-index: 1;
    mask-image: conic-gradient(from var(--cursor-angle) at center, black 2.5%, transparent 10%, transparent 90%, black 97.5%);
    opacity: calc((var(--edge-proximity) - var(--edge-sensitivity)) / (100 - var(--edge-sensitivity)));
    mix-blend-mode: plus-lighter;
}

.border-glow-card>.edge-light::before {
    content: "";
    position: absolute;
    inset: var(--glow-padding);
    border-radius: inherit;
    box-shadow:
        inset 0 0 0 1px var(--glow-color, hsl(40deg 80% 80% / 100%)),
        inset 0 0 1px 0 var(--glow-color-60, hsl(40deg 80% 80% / 60%)),
        inset 0 0 3px 0 var(--glow-color-50, hsl(40deg 80% 80% / 50%)),
        inset 0 0 6px 0 var(--glow-color-40, hsl(40deg 80% 80% / 40%)),
        inset 0 0 15px 0 var(--glow-color-30, hsl(40deg 80% 80% / 30%)),
        inset 0 0 25px 2px var(--glow-color-20, hsl(40deg 80% 80% / 20%)),
        inset 0 0 50px 2px var(--glow-color-10, hsl(40deg 80% 80% / 10%));
}


.marketing-track .marketing-card.reward-pc-card .border-glow-card {
    background:
        radial-gradient(115% 90% at 100% 0%, color-mix(in srgb, var(--reward-accent) 24%, #1a223d 76%) 0%, #141b33 56%, #0f152b 100%),
        linear-gradient(165deg, #1b233d 0%, #151c34 52%, #101629 100%) !important;
    border: 1px solid color-mix(in srgb, var(--reward-accent) 34%, rgba(255, 255, 255, 0.14)) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.marketing-track .marketing-card.reward-pc-card:hover .border-glow-card {
    background:
        radial-gradient(115% 90% at 100% 0%, color-mix(in srgb, var(--reward-accent) 30%, #1b2440 70%) 0%, #151d36 56%, #10172d 100%),
        linear-gradient(165deg, #1d2643 0%, #17203a 52%, #111930 100%) !important;
}

.marketing-track .marketing-card.reward-pc-card .border-glow-card::before,
.marketing-track .marketing-card.reward-pc-card .border-glow-card::after,
.marketing-track .marketing-card.reward-pc-card .border-glow-card>.edge-light {
    display: none !important;
}


.marketing-track .marketing-card.reward-pc-card .border-glow-card::before,
.marketing-track .marketing-card.reward-pc-card .border-glow-card::after,
.marketing-track .marketing-card.reward-pc-card .border-glow-card>.edge-light {
    display: block !important;
}


.marketing-track .marketing-card.reward-pc-card.reward-role-sales-officer .border-glow-card,
.marketing-track .marketing-card.reward-pc-card.reward-role-Area-officer .border-glow-card {
    background:
        radial-gradient(115% 90% at 100% 0%, color-mix(in srgb, #B63E4B 28%, #1b223a 72%) 0%, #161d33 56%, #11172a 100%),
        linear-gradient(165deg, #1c2339 0%, #171d31 52%, #101629 100%) !important;
}

.marketing-track .marketing-card.reward-pc-card.reward-role-sales-officer .reward-pc-icon-wrap,
.marketing-track .marketing-card.reward-pc-card.reward-role-Area-officer .reward-pc-icon-wrap {
    height: 126px;
}

.marketing-track .marketing-card.reward-pc-card.reward-role-sales-officer .reward-pc-meta,
.marketing-track .marketing-card.reward-pc-card.reward-role-Area-officer .reward-pc-meta {
    margin-top: 0.35rem;
}

.border-glow-inner {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: calc(var(--border-radius) - 1px);
}

.pc-card:hover .pc-card-image {
    transform: translateZ(60px) scale(1.06) rotate(3deg);
}

.pc-card-meta {
    position: relative;
    z-index: 1;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-bottom: 8px;
}

.pc-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.pc-card-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.35;
    min-height: 42px;
}

.pc-card-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
    font-weight: 900;
    margin-top: 6px;
    background: linear-gradient(135deg, #FFD700, #FFED4E, #76E2DD);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.pc-card.pc-slot-0 {
    --x: -640px;
    --y: 72px;
    --z: -240px;
    --rx: 12deg;
    --ry: 40deg;
    --rz: -12deg;
    --scale: 0.84;
    --slot-opacity: 0.55;
    z-index: 1;
}

.pc-card.pc-slot-1 {
    --x: -320px;
    --y: 36px;
    --z: -120px;
    --rx: 6deg;
    --ry: 20deg;
    --rz: -6deg;
    --scale: 0.92;
    --slot-opacity: 0.78;
    z-index: 2;
}

.pc-card.pc-slot-2 {
    --x: 0px;
    --y: 0px;
    --z: 90px;
    --rx: -2deg;
    --ry: 0deg;
    --rz: 0deg;
    --scale: 1.0;
    --slot-opacity: 1;
    --slot-blur: 0px;
    z-index: 6;
}

.pc-card.pc-slot-3 {
    --x: 320px;
    --y: 36px;
    --z: -120px;
    --rx: 6deg;
    --ry: -20deg;
    --rz: 6deg;
    --scale: 0.92;
    --slot-opacity: 0.78;
    z-index: 2;
}

.pc-card.pc-slot-4 {
    --x: 640px;
    --y: 72px;
    --z: -240px;
    --rx: 12deg;
    --ry: -40deg;
    --rz: 12deg;
    --scale: 0.84;
    --slot-opacity: 0.55;
    z-index: 1;
}


@media (max-width: 768px) {
    .premium-card-carousel {
        height: 410px;
        max-width: 720px;
    }

    .pc-card {
        width: min(260px, 78vw);
        height: 310px;
    }

    .pc-card.pc-slot-0 {
        --x: -180px;
        --y: 30px;
        --z: -90px;
        --rx: 6deg;
        --ry: 18deg;
        --rz: -4deg;
        --scale: 0.92;
        --slot-opacity: 0.78;
        z-index: 2;
    }

    .pc-card.pc-slot-1 {
        --x: 0px;
        --y: 0px;
        --z: 60px;
        --rx: -2deg;
        --ry: 0deg;
        --rz: 0deg;
        --scale: 1.0;
        --slot-opacity: 1;
        --slot-blur: 0px;
        z-index: 6;
    }

    .pc-card.pc-slot-2 {
        --x: 180px;
        --y: 30px;
        --z: -90px;
        --rx: 6deg;
        --ry: -18deg;
        --rz: 4deg;
        --scale: 0.92;
        --slot-opacity: 0.78;
        z-index: 2;
    }
}

@media (pointer: coarse) {
    .pc-card:hover {
        --hover-scale-add: 0;
    }

    .pc-card:hover::before,
    .pc-card:hover::after {
        opacity: 0;
    }
}


@media (max-width: 1024px) {

    #howItWorks .bubble-node::before,
    #howItWorks .b-cascade-node::before,
    #howItWorks .level-ball::before {
        display: none;
    }
}

@media (min-width: 769px) {
    #howItWorks .hiw-tree-container {
        max-width: 490px;
    }

    #howItWorks .hiw-tree-level {
        margin-bottom: 28px;
    }

    #howItWorks .node-wrapper {
        width: 68px;
        top: 30px;
    }

    #howItWorks .gap-l1 {
        gap: 88px;
    }

    #howItWorks .gap-l2 {
        gap: 22px;
    }
}


@media (max-width: 768px) {
    #howItWorks .hiw-scene-wrapper {
        contain: layout style;
    }

    #howItWorks .hiw-dual-container {
        position: relative !important;
        display: block !important;
        min-height: min(92vh, 880px) !important;
        gap: 0 !important;
        flex-direction: unset !important;
    }

    #howItWorks .hiw-column {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 0.5rem !important;
        transform: none !important;
    }

    #howItWorks .hiw-column-inner {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: min(88vh, 760px) !important;
        padding: 6px 0 !important;
        margin-top: -42px !important;
    }


    #howItWorks .tree-with-heading {
        position: relative !important;
        display: grid !important;
        grid-template-columns: auto minmax(132px, 1fr) !important;
        grid-template-rows: auto auto !important;
        grid-template-areas:
            "hwRole hwRole"
            "hwReveal hwTree" !important;
        gap: 8px 10px !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: min(500px, 78vh) !important;
    }

    #howItWorks .tree-with-heading.is-pre-reveal-focus {
        grid-template-columns: minmax(0, 1fr) !important;
        grid-template-areas:
            "hwRole"
            "hwTree" !important;
        justify-items: center !important;
        row-gap: 12px !important;
    }

    #howItWorks .tree-with-heading.is-pre-reveal-focus>.cinematic-reveal-wrap {
        display: none !important;
    }

    #howItWorks .tree-with-heading.is-pre-reveal-focus>.hiw-tree-container {
        max-width: min(320px, 88vw) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    #howItWorks .tree-with-heading>.role-heading {
        grid-area: hwRole !important;
        justify-self: center !important;
        width: 100% !important;
        transform: scale(1.25) !important;
        transform-origin: center !important;
    }

    #howItWorks .tree-with-heading>.cinematic-reveal-wrap {
        grid-area: hwReveal !important;
        justify-self: start !important;
        align-self: center !important;
        width: 100% !important;
        max-width: 112px !important;
        min-width: 0 !important;
        margin-top: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        z-index: 3 !important;
    }

    #howItWorks .tree-with-heading>.hiw-tree-container {
        grid-area: hwTree !important;
        justify-self: center !important;
        align-self: center !important;
        width: 100% !important;
        max-width: min(280px, 72vw) !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        transform: scale(1.02) translate3d(0, 0, 0) !important;
        transform-origin: center center !important;
        z-index: 2 !important;
    }


    #howItWorks .tree-with-heading>.diagonal-lines-svg {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        z-index: 6 !important;
        pointer-events: none !important;
        overflow: visible !important;
    }

    #howItWorks #revealArea,
    #howItWorks #revealSales {
        padding-top: 0 !important;
        padding-right: 0 !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    #howItWorks .hiw-tree-container {
        max-width: min(340px, 94vw);
        margin-left: auto;
        margin-right: auto;
        transform: none !important;
        padding-bottom: clamp(170px, 42vw, 220px);
        min-height: 360px;
    }

    #howItWorks .tree-with-heading>.hiw-tree-container {
        padding-bottom: clamp(150px, 40vw, 200px) !important;
        min-height: 340px !important;
    }

    #howItWorks #treeArea .node-l0,
    #howItWorks #treeSales .node-l0 {
        width: 58px !important;
        height: 58px !important;
        font-size: 0.96rem !important;
    }

    #howItWorks #treeArea .node-l1,
    #howItWorks #treeSales .node-l1 {
        width: 46px !important;
        height: 46px !important;
        font-size: 0.82rem !important;
    }

    #howItWorks #treeArea .node-l2,
    #howItWorks #treeSales .node-l2 {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.72rem !important;
    }

    #howItWorks #treeArea .node-l0>.bubble-amount,
    #howItWorks #treeSales .node-l0>.bubble-amount {
        font-size: 0.92rem !important;
    }

    #howItWorks #treeArea .node-l1>.bubble-amount,
    #howItWorks #treeSales .node-l1>.bubble-amount {
        font-size: 0.8rem !important;
    }

    #howItWorks #treeArea .node-l2>.bubble-amount,
    #howItWorks #treeSales .node-l2>.bubble-amount {
        font-size: 0.74rem !important;
    }

    #howItWorks #treeArea .hiw-tree-level.gap-l1,
    #howItWorks #treeSales .hiw-tree-level.gap-l1 {
        gap: 24px !important;
    }

    #howItWorks #treeArea .hiw-tree-level.gap-l2,
    #howItWorks #treeSales .hiw-tree-level.gap-l2 {
        gap: 8px !important;
    }

    #howItWorks #treeArea .hiw-tree-level,
    #howItWorks #treeSales .hiw-tree-level {
        margin-bottom: 18px !important;
    }

    #howItWorks .hiw-tree-level {
        margin-bottom: 14px !important;
    }

    #howItWorks .gap-l1 {
        gap: 22px !important;
    }

    #howItWorks .gap-l2 {
        gap: 4px !important;
    }


    #howItWorks .b-cascade-container {
        display: block !important;
        transform: none !important;
        transform-origin: top center !important;
        top: 48px !important;
        left: 4px !important;
    }

    #howItWorks .b-cascade-container>.node-wrapper:nth-child(1) {
        top: 0 !important;
        left: 0 !important;
    }

    #howItWorks .b-cascade-container>.node-wrapper:nth-child(2) {
        top: 44px !important;
        left: 0 !important;
    }

    #howItWorks .b-cascade-container>.node-wrapper:nth-child(3) {
        top: 88px !important;
        left: 0 !important;
    }

    #howItWorks .b-cascade-container>.node-wrapper:nth-child(4) {
        top: 132px !important;
        left: 0 !important;
    }

    #howItWorks .b-cascade-container>.node-wrapper:nth-child(5) {
        top: 176px !important;
        left: 0 !important;
    }


    #howItWorks .diagram-bracket-container {
        display: grid !important;
        grid-template-columns: 22px minmax(0, 1fr) !important;
        grid-template-rows: auto 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        column-gap: 6px !important;
        row-gap: 6px !important;
        align-items: stretch !important;
    }

    #howItWorks .diagram-bracket-container .vertical-text {
        grid-column: 1 !important;
        grid-row: 2 !important;
        writing-mode: vertical-rl !important;
        transform: rotate(180deg) !important;
        white-space: nowrap !important;
        text-align: center !important;
        font-size: 0.68rem !important;
        justify-self: center !important;
        align-self: center !important;
        margin: 0 !important;
        margin-top: 140px !important;
        line-height: 1 !important;
    }

    #howItWorks .diagram-bracket-container>div:nth-child(2) {
        display: none !important;
    }

    #howItWorks #extendedAreaA,
    #howItWorks #extendedSalesA {
        grid-column: 2 !important;
        grid-row: 2 !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        padding: 0 !important;
        width: 100% !important;
    }

    #howItWorks #extendedAreaA .level-row,
    #howItWorks #extendedSalesA .level-row {
        width: auto !important;
    }

    #howItWorks #extendedAreaA .level-ball,
    #howItWorks #extendedSalesA .level-ball {
        font-size: 0.9rem !important;
        font-weight: 700 !important;
    }

    #howItWorks .b-cascade-node>.bubble-amount {
        font-size: 0.86rem !important;
        font-weight: 700 !important;
    }

    #howItWorks .tree-extended-wrap {
        width: 100% !important;
        align-items: flex-start !important;
    }


    #howItWorks .ao-infinite-hint {
        top: calc(100% + 44px) !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: max-content !important;
        max-width: calc(100% - 8px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        align-items: center !important;
    }

    #howItWorks .ao-infinite-dots {
        align-items: center !important;
    }

    #howItWorks .ao-infinite-text {
        width: 100% !important;
        text-align: center !important;
    }

    #howItWorks #treeArea .tree-with-heading.is-pre-reveal-focus #aoInfiniteHint {
        display: flex !important;
        opacity: 1 !important;
        visibility: inherit !important;
        position: relative !important;
        top: auto !important;
        margin-top: 30px !important;
    }

    #howItWorks #treeArea .tree-with-heading.is-pre-reveal-focus #aoInfiniteHint .ao-infinite-dots,
    #howItWorks #treeArea .tree-with-heading.is-pre-reveal-focus #aoInfiniteHint .ao-infinite-text {
        display: flex !important;
        opacity: 1 !important;
        visibility: inherit !important;
    }

    #howItWorks #treeArea .tree-with-heading.is-extended #aoInfiniteHint {
        display: flex !important;
        opacity: 1 !important;
        visibility: inherit !important;
    }

    #howItWorks #aoInfiniteHint {
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }

    @media (max-width: 768px) {
        .ao-infinite-hint {
            position: relative !important;
            display: flex !important;
            opacity: 1 !important;
            visibility: visible !important;
            width: 100% !important;
            text-align: center !important;
            margin-top: -130px !important;
            margin-bottom: 30px !important;
        }

        .ao-infinite-dots {
            display: flex !important;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .ao-infinite-text {
            display: block !important;
            opacity: 1 !important;
            visibility: visible !important;
        }

        #howItWorks #aoInfiniteHint {
            display: flex !important;
            opacity: 1 !important;
            visibility: visible !important;
            position: relative !important;
            bottom: auto !important;
            left: auto !important;
            transform: none !important;
            margin-top: -130px !important;
            margin-bottom: 30px !important;
        }

        #howItWorks #colArea #aoInfiniteHint {
            display: flex !important;
            opacity: 1 !important;
            visibility: visible !important;
            position: relative !important;
            width: 100% !important;
            text-align: center !important;
            margin-top: -130px !important;
            margin-bottom: 30px !important;
        }

        #howItWorks .hiw-column.area-column #aoInfiniteHint {
            display: flex !important;
            opacity: 1 !important;
            visibility: visible !important;
        }

        #howItWorks [id="aoInfiniteHint"] {
            display: flex !important;
            opacity: 1 !important;
            visibility: visible !important;
        }
    }

    .ao-infinite-dots {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .ao-infinite-text {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    #howItWorks #aoInfiniteHint {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
    }

    #howItWorks #colArea #aoInfiniteHint {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        width: 100% !important;
        text-align: center !important;
        margin-top: 20px !important;
    }

    #howItWorks .hiw-column.area-column #aoInfiniteHint {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    #howItWorks [id="aoInfiniteHint"] {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    @media (max-width: 768px) {
        #howItWorks .hiw-top-slot {
            min-height: 96px !important;
        }

        #howItWorks .hiw-header {
            transform: translateY(-10px);
        }

        #howItWorks .hiw-heading {
            font-size: clamp(2.2rem, 8.3vw, 2.85rem) !important;
            line-height: 1.08 !important;
        }

        #howItWorks .hiw-subheading {
            font-size: clamp(1rem, 3.7vw, 1.2rem) !important;
            line-height: 1.25 !important;
        }

        #howItWorks .node-l0 {
            width: 23vw !important;
            height: 23vw !important;
            max-width: calc(var(--hiw-bubble-size) * 1.2) !important;
        }

        #howItWorks .node-l1 {
            width: 19vw !important;
            height: 19vw !important;
            max-width: var(--hiw-bubble-size) !important;
        }

        #howItWorks .node-l2 {
            width: 17vw !important;
            height: 17vw !important;
            max-width: calc(var(--hiw-bubble-size) * 0.8) !important;
        }

        #howItWorks .hiw-column-inner {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        #howItWorks .tree-with-heading {
            width: 100%;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 10px !important;
            transform-origin: 50% 35% !important;
        }

        #howItWorks .role-heading-wrap {
            width: 100%;
            min-height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 4px;
            margin-bottom: 12px;
        }

        #howItWorks .role-heading {
            writing-mode: horizontal-tb !important;
            text-orientation: mixed !important;
            transform: none !important;
            text-align: center !important;
            width: 100%;
            padding-top: 0 !important;
            margin: 0 !important;
            line-height: 1.05;
            font-size: clamp(1.95rem, 8.5vw, 2.5rem) !important;
            font-weight: 900 !important;
            letter-spacing: 2.8px !important;
            text-transform: uppercase;
            text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32), 0 0 16px rgba(140, 190, 255, 0.22);
        }

        #howItWorks .hiw-tree-container {
            width: min(94vw, 580px) !important;
            margin-left: auto !important;
            margin-right: auto !important;
            display: flex;
            justify-content: center;
        }
    }

    /* Force sync: fly mobile How It Works */
    @media (max-width: 768px) {
        #howItWorks .hiw-scene-wrapper {
            contain: layout style;
        }

        #howItWorks .hiw-dual-container {
            position: relative !important;
            display: block !important;
            min-height: min(92vh, 880px) !important;
            gap: 0 !important;
            flex-direction: unset !important;
        }

        #howItWorks .hiw-column {
            position: absolute !important;
            left: 0 !important;
            right: 0 !important;
            top: 0 !important;
            width: 100% !important;
            max-width: 100% !important;
            margin: 0 !important;
            padding: 0 0.5rem !important;
            transform: none !important;
        }

        #howItWorks .hiw-column-inner {
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            justify-content: center !important;
            min-height: min(88vh, 760px) !important;
            padding: 6px 0 !important;
            margin-top: -42px !important;
        }

        #howItWorks .tree-with-heading {
            position: relative !important;
            display: grid !important;
            grid-template-columns: auto minmax(132px, 1fr) !important;
            grid-template-rows: auto auto !important;
            grid-template-areas:
                "hwRole hwRole"
                "hwReveal hwTree" !important;
            gap: 20px 10px !important;
            align-items: center !important;
            width: 100% !important;
            max-width: 100% !important;
            min-height: min(500px, 78vh) !important;
        }

        #howItWorks .tree-with-heading>.role-heading {
            grid-area: hwRole !important;
            justify-self: center !important;
            width: 100% !important;
            transform-origin: center !important;
            font-size: clamp(1rem, 4vw, 1.3rem) !important;
            letter-spacing: 1px !important;
            line-height: 1.1 !important;
            margin-top: 90px !important;
        }

        #howItWorks .tree-with-heading.is-extended>.role-heading {
            font-size: clamp(1.2rem, 5vw, 1.6rem) !important;
            margin-top: 5px !important;
        }

        #howItWorks .tree-with-heading>.cinematic-reveal-wrap {
            grid-area: hwReveal !important;
            justify-self: start !important;
            align-self: center !important;
            width: 100% !important;
            max-width: 112px !important;
            min-width: 0 !important;
            margin-top: 0 !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
            z-index: 3 !important;
        }

        #howItWorks .tree-with-heading>.hiw-tree-container {
            grid-area: hwTree !important;
            justify-self: center !important;
            align-self: center !important;
            width: 100% !important;
            max-width: min(280px, 72vw) !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            transform: scale(1.02) translate3d(0, 0, 0) !important;
            transform-origin: center center !important;
            z-index: 2 !important;
        }

        #howItWorks .tree-with-heading>.diagonal-lines-svg {
            position: absolute !important;
            inset: 0 !important;
            width: 100% !important;
            height: 100% !important;
            min-height: 100% !important;
            z-index: 6 !important;
            pointer-events: none !important;
            overflow: visible !important;
        }

        #howItWorks #revealArea,
        #howItWorks #revealSales {
            padding-top: 0 !important;
            padding-right: 0 !important;
            align-items: flex-start !important;
            justify-content: flex-start !important;
        }

        #howItWorks .hiw-tree-container {
            max-width: min(340px, 94vw);
            margin-left: auto;
            margin-right: auto;
            transform: none !important;
            padding-bottom: clamp(170px, 42vw, 220px);
            min-height: 360px;
        }

        #howItWorks .tree-with-heading>.hiw-tree-container {
            padding-bottom: clamp(150px, 40vw, 200px) !important;
            min-height: 340px !important;
        }

        #howItWorks #treeArea .node-l0,
        #howItWorks #treeSales .node-l0 {
            width: 58px !important;
            height: 58px !important;
            font-size: 0.96rem !important;
        }

        #howItWorks #treeArea .node-l1,
        #howItWorks #treeSales .node-l1 {
            width: 46px !important;
            height: 46px !important;
            font-size: 0.82rem !important;
        }

        #howItWorks #treeArea .node-l2,
        #howItWorks #treeSales .node-l2 {
            width: 38px !important;
            height: 38px !important;
            font-size: 0.72rem !important;
        }

        #howItWorks #treeArea .node-l0>.bubble-amount,
        #howItWorks #treeSales .node-l0>.bubble-amount {
            font-size: 0.92rem !important;
        }

        #howItWorks #treeArea .node-l1>.bubble-amount,
        #howItWorks #treeSales .node-l1>.bubble-amount {
            font-size: 0.8rem !important;
        }

        #howItWorks #treeArea .node-l2>.bubble-amount,
        #howItWorks #treeSales .node-l2>.bubble-amount {
            font-size: 0.74rem !important;
        }

        #howItWorks #treeArea .tree-with-heading.is-pre-reveal-focus>.hiw-tree-container .node-wrapper,
        #howItWorks #treeSales .tree-with-heading.is-pre-reveal-focus>.hiw-tree-container .node-wrapper {
            margin-top: 35px !important;
            margin-bottom: 35px !important;
        }

        #howItWorks #treeArea .tree-with-heading.is-pre-reveal-focus>.hiw-tree-container .hiw-tree-level.gap-l1,
        #howItWorks #treeSales .tree-with-heading.is-pre-reveal-focus>.hiw-tree-container .hiw-tree-level.gap-l1 {
            gap: 90px !important;
        }

        #howItWorks #treeArea .tree-with-heading.is-pre-reveal-focus>.hiw-tree-container .hiw-tree-level.gap-l2,
        #howItWorks #treeSales .tree-with-heading.is-pre-reveal-focus>.hiw-tree-container .hiw-tree-level.gap-l2 {
            gap: 70px !important;
        }

        #howItWorks #treeArea .tree-with-heading.is-pre-reveal-focus>.hiw-tree-container .hiw-tree-level,
        #howItWorks #treeSales .tree-with-heading.is-pre-reveal-focus>.hiw-tree-container .hiw-tree-level {
            margin-bottom: 60px !important;
            padding-top: 20px !important;
            padding-bottom: 20px !important;
        }

        #howItWorks #treeArea .tree-with-heading.is-pre-reveal-focus>.hiw-tree-container .b-cascade-container,
        #howItWorks #treeSales .tree-with-heading.is-pre-reveal-focus>.hiw-tree-container .b-cascade-container {
            height: 400px !important;
        }

        #howItWorks #treeArea .tree-with-heading.is-pre-reveal-focus>.hiw-tree-container,
        #howItWorks #treeSales .tree-with-heading.is-pre-reveal-focus>.hiw-tree-container {
            padding-top: 30px !important;
        }

        #howItWorks #treeArea .tree-with-heading.is-extended>.hiw-tree-container .hiw-tree-level.gap-l1,
        #howItWorks #treeSales .tree-with-heading.is-extended>.hiw-tree-container .hiw-tree-level.gap-l1 {
            gap: 24px !important;
        }

        #howItWorks #treeArea .tree-with-heading.is-extended>.hiw-tree-container .hiw-tree-level.gap-l2,
        #howItWorks #treeSales .tree-with-heading.is-extended>.hiw-tree-container .hiw-tree-level.gap-l2 {
            gap: 8px !important;
        }

        #howItWorks #treeArea .tree-with-heading.is-extended>.hiw-tree-container .hiw-tree-level,
        #howItWorks #treeSales .tree-with-heading.is-extended>.hiw-tree-container .hiw-tree-level {
            margin-bottom: 18px !important;
            padding-top: 0 !important;
            padding-bottom: 0 !important;
        }

        #howItWorks #treeArea .tree-with-heading.is-extended>.hiw-tree-container .node-wrapper,
        #howItWorks #treeSales .tree-with-heading.is-extended>.hiw-tree-container .node-wrapper {
            margin-top: 0 !important;
            margin-bottom: 0 !important;
        }

        #howItWorks #treeArea .tree-with-heading.is-extended>.hiw-tree-container .b-cascade-container,
        #howItWorks #treeSales .tree-with-heading.is-extended>.hiw-tree-container .b-cascade-container {
            height: 160px !important;
        }

        #howItWorks .gap-l1 {
            gap: 22px !important;
        }

        #howItWorks .gap-l2 {
            gap: 4px !important;
        }
    }

    /* Fixed How It Works section height independent of viewport */
    #howItWorks.hiw-section {
        --hiw-top-slot-h: 128px !important;
        height: 960px !important;
        min-height: 960px !important;
    }

    #howItWorks .hiw-top-slot {
        min-height: var(--hiw-top-slot-h) !important;
    }

    #howItWorks .hiw-scene-wrapper {
        height: calc(960px - var(--hiw-top-slot-h)) !important;
        min-height: calc(960px - var(--hiw-top-slot-h)) !important;
    }

    @media (max-width: 768px) {
        #howItWorks.hiw-section {
            --hiw-top-slot-h: 108px !important;
            height: 880px !important;
            min-height: 880px !important;
        }

        #howItWorks .hiw-scene-wrapper {
            height: calc(880px - var(--hiw-top-slot-h)) !important;
            min-height: calc(880px - var(--hiw-top-slot-h)) !important;
        }
    }

    /* Mobile tooltip size boost */
    @media (max-width: 768px) {
        #howItWorks .node-info-box.active {
            width: min(270px, 88vw) !important;
            padding: 0.95rem 1.15rem !important;
            border-radius: 14px !important;
        }

        #howItWorks .node-info-box.active .info-title {
            font-size: 1.02rem !important;
        }

        #howItWorks .node-info-box.active .info-desc {
            font-size: 0.9rem !important;
            line-height: 1.45 !important;
        }
    }

    /* Extra tooltip scaling for iPhone sizes + normal phones up to 786px */
    @media (min-width: 320px) and (max-width: 786px) {
        #howItWorks .node-info-box.active {
            width: min(300px, 90vw) !important;
            padding: 1.05rem 1.25rem !important;
        }

        #howItWorks .node-info-box.active .info-title {
            font-size: 1.08rem !important;
        }

        #howItWorks .node-info-box.active .info-desc {
            font-size: 0.94rem !important;
        }
    }

    /* About Us & Lanyard Section - Unified Visibility Hardening */
    .about-us-section {
        padding: var(--section-pad-y) 0;
        background: #0B102E;
        position: relative;
        z-index: 10;
        overflow: visible;
    }

    .about-us-bleed-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 40px;
    }

    @media (max-width: 1024px) {
        .about-us-bleed-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }

    .about-us-lanyard {
        position: relative;
        width: 100%;
        height: clamp(480px, 60vh, 580px);
        display: flex !important;
        justify-content: center;
        align-items: center;
        overflow: visible;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .lanyard-canvas {
        width: 100%;
        height: 100%;
        min-height: 480px;
        cursor: grab;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 5;
    }

    .lanyard-canvas:active {
        cursor: grabbing;
    }

    .about-us-content {
        color: white;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .stat-card {
        background: rgba(255, 255, 255, 0.05);
        padding: 1.5rem;
        border-radius: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    .stat-number {
        font-size: clamp(1.1rem, 2vw, 1.5rem);
        font-weight: 700;
        color: var(--teal);
        margin-bottom: 0.25rem;
    }

    .stat-label {
        font-size: clamp(0.7rem, 1.2vw, 0.85rem);
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.2;
    }

    @media (max-width: 768px) {
        .stats-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .stat-card {
            padding: 0.85rem 0.5rem;
            border-radius: 0.75rem;
        }
    }

    /* Lanyard Skeleton Loader */
    .lanyard-placeholder {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 5;
        background: rgba(11, 16, 46, 0.4);
        backdrop-filter: blur(5px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }

    .lanyard-canvas.is-loaded .lanyard-placeholder,
    .lanyard-canvas.is-static-only .lanyard-placeholder {
        opacity: 0;
        visibility: hidden;
    }


    /* Smooth entry for the real canvas */
    .lanyard-canvas canvas {
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .lanyard-canvas.is-loaded canvas {
        opacity: 1;
    }

    .lanyard-skeleton-card {
        width: 220px;
        height: 340px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 18px;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .skeleton-shimmer {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, 0.05),
                transparent);
        animation: shimmer 1.8s infinite;
    }

    @keyframes shimmer {
        100% {
            left: 100%;
        }
    }
}