body::-webkit-scrollbar {   width: 5px;  height: 8px;  background-color: #AAA348; }
body::-webkit-scrollbar-thumb {background:#44465E;}
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

body {
    display: flex;
    flex-direction: column; 
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 60px; 
    scroll-snap-type: y mandatory;
}




body {
    width: 100%;
    min-width: 400px;
    position: relative;
    overflow-x: clip; 
}

        body {
            font-family: 'Afacad', sans-serif;
            background-color: #EEEEEE;
            color: #1c1c1c;
            line-height: 1.5;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        a {
            color: inherit;
            text-decoration: underline;
        }

        a:hover {
            color: #A;
        }

header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #44465E;
    padding: 10px 48px; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;

}

    .gradient-bar {
		position:absolute;
        width: 100%;
		left:0 ;
		right:0;
        height: 5px;
        background: linear-gradient(90deg, #eee 0%, #44465E 50%, #eee 100%);
        background-size: 200% 100%;
        animation: moveGradientSeamless 33s linear infinite;
		z-index: 10;

    }

.gradient-top {
    top: 0;
}

.gradient-bottom {
    bottom: 0;
}

    @keyframes moveGradientSeamless {
        0% { background-position: 200% 0%; }
        100% { background-position: 0% 0%; }
    }

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-link img {
    height: 40px;
    display: block;
}

main {
    flex: 1;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
}

        section {
            padding: 20px 20px;
            display: flex;


            flex-direction: column;
            text-align: center;
            position: relative;
            background-size: cover;
            background-position: center;
        }

.hero-section, .sales-viewport, .oalco-viewport, .sales-section, .pricing-section, footer {scroll-snap-align: start; scroll-snap-stop: always; }


		/* typeout*/

        .hero-section {
            background-image: url('images/marble.jpg'); 
            background-color: #44465e;
			background-size: cover;
			background-repeat: no-repeat;
			background-position: 75% center;
            height: 80px;
        }

        .typewriter-container {
            text-align: center;
            width: 100%;
			margin-top: 3px ;
        }

        #typewriter-text {
            display: inline-block;
            font-size: 33px;
            color: #FFEC64;
            white-space: nowrap;
            overflow: hidden;
            min-height: 38px;
            line-height: 38px;
        }

        #typewriter-text::before {
            content: '\200b';
        }

        .cursor {
            display: inline-block;
            width: 0.51em;
            text-align: center;
            animation: blink-insert 1.0s step-end infinite;
        }

        #typewriter-text.is-active .cursor {
            animation: none;
            background-color: #AAA348;
            color: #44465E;
        }

        @keyframes blink-insert {
            0%, 100% { background-color: transparent; color: #FFEC64; }
            50% { background-color: #AAA348; color: #44465E; }
        }







.sales-section.responsive-split {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #EEEEEE;
    color: #44465E;
    z-index: 1;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.split-graphic-column, .split-text-column {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 900px) {
    .sales-section.responsive-split {
        display: grid;
        grid-template-columns: 35% 1px 65%;
        align-items: stretch;
    }

    .split-graphic-column {
        grid-column: 1;
        padding-top: 10vh;
        padding-bottom: 50px;
    }
    
    .split-divider {
        grid-column: 2;
        width: 1px;
        background-color: #44465E;
        opacity: 0.3;
        height: 100%;
	}
    
    .split-text-column {
        grid-column: 3;
        padding: 60px 40px;
        justify-content: flex-start;
    }
}


.split-content-wrapper {
    max-width: 800px;
    margin: 0;
    width: 100%;
    position: relative;
    z-index: 2;
}

.circuit-hand-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.sales-section h2 { font-size: 24pt; font-weight: 400; margin-bottom: 30px; }
.sales-section h2 a { text-decoration: none; color: inherit; }
.sales-section h2 a:hover { text-decoration: underline; color: #44465E; }
.sales-section h3 { font-size: 16pt; font-weight: 400; margin-bottom: 15px; }
.sales-section p { font-size: 13pt; line-height: 1.6; margin-top: 20px; margin-bottom: 20px; }


.sign-up-btn:hover {
    color: #FFEC64;
}

.split-fine-print {
    font-size: 11pt;
    display: block;
    margin-top: 30px;
    margin-bottom: 10px; 
    line-height: 1.6;
    color: #1D070E;
}









.sales-presentation-track {
    position: relative;
    width: 100%;
    background-color: transparent;
}

.stationary-grid-bg {
    position: fixed;
    top: 60px;
    width: 100%;
    height: calc(100vh - 60px);
    overflow: hidden;
    z-index: 1;
	opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.stationary-grid-bg.visible {
    opacity: 1; 
}

.stationary-grid-bg::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(238, 238, 238, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.stationary-grid-bg::before {
    content: "";
    position: absolute;
    bottom: 0; left: -50%;
    width: 200%; height: 130%;
    
background-image: 
        linear-gradient(rgba(68, 70, 94, 0.2) 2px, transparent 2px),
        linear-gradient(90deg, rgba(68, 70, 94, 0.2) 2px, transparent 2px);
    background-size: 60px 60px;
    
    transform-origin: bottom center;
    transform: perspective(700px) rotateX(60deg);
    
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at bottom center, black 15%, transparent 80%);
    mask-image: radial-gradient(ellipse 80% 50% at bottom center, black 15%, transparent 80%);
    z-index: 1;
}

.sales-scroll-overlay {
    position: relative;
    z-index: 2;
}

.sales-viewport {
	scroll-snap-stop: always;
    width: 100%;
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #44465E;
    padding: 20px;
}

.sales-content-wrapper {
    max-width: 900px;
    width: 100%;
    text-align: left;
}

.sales-viewport .text-center { text-align: center; }
.sales-viewport h2 { font-size: clamp(24pt, 4vw, 36pt); font-weight: 400; margin-bottom: 20px; }
.sales-viewport h3 { font-size: clamp(18pt, 2.5vw, 24pt); font-weight: 400; margin-bottom: 20px; color: #44465E; }
.sales-viewport p { font-size: clamp(14pt, 1.5vw, 18pt); line-height: 1.6; margin-bottom: 20px; }
.sales-viewport small { font-size: 12pt; display: block; margin-top: 40px; opacity: 0.8; }
.sales-viewport h2 a { text-decoration: none; border-bottom: 2px solid rgba(238, 238, 238, 0.4); transition: border-color 0.3s; }
.sales-viewport h2 a:hover { border-color: #FFEC64; color: #FFEC64; }





























.info-section {
    background-color: #eeeeee; 
    color: #44465e;
    width: 100%;
    
    flex-grow: 1; 
    justify-content: flex-start;
    
    padding-top: 40px; 
    padding-bottom: 10px; 
}

.info-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.info-section h2 {
    font-size: 24pt;
    font-weight: 400;
    margin-bottom: 30px;
}

.info-section h2 a {
    text-decoration: underline;
}

.info-section h3 {
    font-size: 16pt;
    font-weight: 400;
    margin-bottom: 15px;
}

.info-section p {
    font-size: 13pt;
    line-height: 1.6;
    margin-top: 30px;
    margin-bottom: 30px;
}

.info-section small {
    font-size: 11pt;
    display: block;
    margin-top: 30px;
    margin-bottom: 10px; 
    line-height: 1.6;
}

        .video-section {
            padding: 0;
            background-color: #000;
            width: 100%;
            overflow: hidden;
        }

        #main_vid {
            width: 100%;
            height: auto;
            display: block;
        }

		
.dropdown-container {
    position: relative;
    display: flex;
    align-items: center;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #AAA348;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.menu-toggle:hover {
    color: #FFEC64;
}

.dropdown-container.open .menu-icon { display: none; }
.dropdown-container.open .up-arrow { display: block !important; }

.dropdown-menu {
	visibility: hidden;
    position: absolute;
    top: calc(100% + 15px); 
    left: 0;
    width: 222px; 
    max-width: 90vw; 
    background-color: #44465EFA;
    box-shadow: 0px 0px 22px rgba(68,70,94,0.55);
    z-index: 99;
	opacity: 0;	
	clip-path: inset(0 100% 100% 0);
	transition: clip-path 0.2s ease-out, opacity 0.2s ease-out, visibility 0s 0.2s;
}

.dropdown-container.open .dropdown-menu {
    visibility: visible;
    opacity: 1;
    clip-path: inset(0 -50px -50px 0); 
    transition: clip-path 0.2s ease-out, opacity 0.2s ease-out, visibility 0s 0s; 
}

.dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* menu and effects */

/*
.dropdown-menu li a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200,200,200,0.35), transparent);
    transition: left 0.3s ease;
}
*/


.dropdown-menu li a {
    font-size: 14pt;
    font-weight: 400;
    color: #EEEEEE;
    padding: 4px 8px;
    display: block;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid transparent; 
	border-top: 0px solid #eee;
    text-decoration: none;
	position: relative;
    z-index: 1;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: radial-gradient(
        500px circle at var(--mouse-x, -1000px) var(--mouse-y, -1000px), 
        rgba(238, 238, 238, 0.25), 
        transparent 95%
    );
    opacity: 0;
    z-index: -1; 
    pointer-events: none; 
    transition: opacity 0s;
}


.dropdown-menu:hover li a::before {
    opacity: 1;
}

.dropdown-menu li a:hover {
    color: #FFEC64;
    border-left-color: #EEEEEE; 
    background-color: rgba(68, 70, 94, 0.5);
}

.dropdown-menu li a:hover::before {
    opacity: 1;
    transition: opacity 0.3s ease; 
}

.dropdown-menu li a:hover::after {
    left: 100%;
}    

.header-text {
    font-size: 18pt;
    font-weight: 400;
    color: #FFEC64;
    text-decoration: none;
    white-space: nowrap; 
    transition: color 0.3s;
}

.header-text:hover {
    color: #FFEC64; 
}

.header-phone {
font-size: 18pt;
    font-weight: 400;
    color: #AAA348;
    text-decoration: none;
    white-space: nowrap; 
    display: inline-block;
    min-width: 135px;
margin-left: auto; 
    text-align: right; 
transition: color 0.3s ease, opacity 0.2s ease;
    opacity: 1;
}

.header-phone:hover {
    color: #FFEC64;
}

.header-phone.hidden {
    opacity: 0;
}





@media (max-width: 800px) {
    body {
        min-width: 0;
    }
    
    header {
        padding: 10px 20px;
        justify-content: center;
    }
    
    .dropdown-container {
        position: absolute;
        left: 20px;
    }
    
    .header-phone {
        font-size: 14pt;
        position: absolute;
        right: 20px;
        min-width: auto;
        margin-left: 0;
    }
    
    .placard-content {
        padding: 30px 15px;
    }
    .placard h3 {
        font-size: 14pt;
    }
}



.menu-typed {
    color: #FFEC64;
}

.menu-base {
    color: #EEEEEE;
}

.menu-cursor::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0.51em;
    height: 1.1em;
    z-index: -1;
    
    animation: menu-blink-bg 1.0s step-end infinite;
}

.menu-cursor {
    position: relative;
    z-index: 1;
	animation: menu-blink-text 1.0s step-end infinite;
}



.menu-cursor.is-active::before {
    animation: none;
    background-color: #EEEEEE;
}

.menu-cursor.is-active {
    animation: none;
    color: #44465E;
}

@keyframes menu-blink-insert {
    0%, 100% { background-color: transparent; color: #FFEC64; }
    50% { background-color: #EEEEEE; color: #EEEEEE; }
}

@keyframes menu-blink-text {
    0%, 100% { color: #444A48; }
    50% { color: #FFEC64; }
}

@keyframes menu-blink-bg {
    0%, 100% { background-color: #EEEEEE; }
    50% { background-color: transparent; }
}

        footer {
            background-image: url('images/marble2.jpg');
			background-size: cover;
			background-repeat: no-repeat;			
			background-position: 75% center;
            background-color: #44465e;
            color: #FFEC64;
            text-align: left;
            padding: 200px 20px;
        }

        footer small {
            font-size: 10pt;
        }

        @media (max-width: 800px) {
            #typewriter-text {
                font-size: 16px;
                min-height: 20px;
                line-height: 20px;
				-webkit-box-reflect: below 2px linear-gradient(to bottom, transparent 30%, rgba(238, 238, 238, 0.4));
            }
            #typewriter-text::after {
                top: 1px;
                width: 0.51em;
                height: 0.8em;
            }
            .info-section h2 {
                font-size: 18pt;
            }
        }

footer {
    background-color: #44465e;
    color: #EEEEEE;
    padding: 60px 48px 30px 48px;
    font-family: 'Afacad', sans-serif;
    width: 100%;
}

.footer-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(238, 238, 238, 0.15);
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.footer-logo-area {
    display: flex;
    align-items: center;
}

.footer-logo-area .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo-area img {
    height: 40px;
    margin-right: 15px;
    display: block;
}

.footer-logo-area .header-text {
    font-size: 18pt;
    font-weight: 400;
    color: #EEEEEE;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-phone {
    font-size: 18pt;
    font-weight: 400;
    color: #EEEEEE;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-logo-area .header-text:hover,
.footer-phone:hover {
    color: #FFEC64;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 13pt;
    font-weight: 400;
    color: #EEEEEE;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col li a {
    font-size: 13pt;
    font-weight: 400;
    color: #EEEEEE;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col li a:hover {
    color: #FFEC64;
		background-color: #44465E;
		border-radius: 5px ;
		transition background-color: .3s ease; 

}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(238, 238, 238, 0.15);
    margin: 0 0 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 11pt;
}

.footer-legal .copyright {
    color: rgba(238, 238, 238, 0.6);
}

.footer-legal a {
    color: #EEEEEE;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #FFEC64;
}

.privacy-toggle-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
}

.privacy-toggle-link svg {
    transition: color 0.2s ease;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: #EEEEEE;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-socials svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-socials a:hover {
    color: #FFEC64;
    transform: translateY(-2px);
}






.modal-socials {
    display: grid;
    grid-template-columns: repeat(8, max-content);
    justify-content: center;
    gap: 4px; 
    margin-top: 20px;
    margin-bottom: 16px;
}

.modal-socials a {
    color: #AAA348;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, border-radius 0.3s ease;
}

.modal-socials svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.modal-socials a:hover {
    color: #FFEC64;
    background-color: #44465E;
    border-radius: 3px;
    transform: translateY(-5px);
}

@media screen and (max-width: 500px) {
    .modal-socials {
        grid-template-columns: repeat(4, max-content);
        gap: 15px; 
    }
}

@media (max-width: 1000px) {
    .footer-nav-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    footer {
        padding: 40px 20px 20px 20px;
background-image: 
            url('images/marble3.jpg');			
			background-position: right top;
			background-size: 100% auto;
    }
    .footer-top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
			
			.footer-logo-area .header-text {
        white-space: normal; 
        font-size: 16pt; 
        line-height: 1.2;
    }
		
}

.footer-chevron {
    display: none; 
    transition: transform 0.3s ease;
}


@media (max-width: 600px) {
    .footer-nav-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-col {
        border-bottom: 1px solid rgba(238, 238, 238, 0.15);
    }

    .footer-col h4 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0;
        padding: 20px 0;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .footer-chevron {
        display: block;
    }

    .footer-col-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.3s ease;
    }

    .footer-col-content ul {
        overflow: hidden;
        margin: 0;
    }

    .footer-col.open .footer-col-content {
        grid-template-rows: 1fr;
    }

    .footer-col.open .footer-col-content ul {
        padding-bottom: 20px;
    }

    .footer-col.open .footer-chevron {
        transform: rotate(-180deg);
    }
}



.phone-text {
    display: inline-block; 
}

.phone-icon {
    display: none; 
}

@media (max-width: 600px) {
    .phone-text {
        display: none !important; 
    }
    
    .phone-icon {
        display: block !important; 
    }
}


.pricing-section {
    background-color: #EEEEEE;
    padding: 60px 0;
    width: 100%;
    overflow: hidden;

}

.pricing-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(10px, 2vw, 30px);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px clamp(10px, 4vw, 48px);
}

.placard {
    background-color: #44465E;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1;
    cursor: pointer;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    box-shadow: 0 4px 15px rgba(68, 70, 94, 0.15);
}

.placard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        700px circle at var(--mouse-x, -1000px) var(--mouse-y, -1000px), 
        rgba(238, 238, 238, 0.10), 
        transparent 50%
    );
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.placard::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 600%;
    height: 100%;
    background: linear-gradient(
        50deg,
        transparent 20%,
        transparent 60%,
        rgba(238, 238, 238, 0.3),
        transparent 80%,
        transparent 100%
    );
    transform: translateX(-100%);
    pointer-events: none;
    z-index: 10;
}

@keyframes shineSweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.placard-content {
    padding: clamp(15px, 3vw, 40px) clamp(10px, 2vw, 30px);
    color: #EEEEEE;
    flex-grow: 1;
}

.placard h3 {
    font-size: clamp(12px, 1.8vw, 16pt);
    color: #AAA348;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.placard .price {
    font-size: clamp(24px, 4vw, 36pt);
    font-weight: 400;
    margin-bottom: clamp(15px, 3vw, 0px);
}

.placard .price span {
    font-size: clamp(10px, 1.2vw, 14pt);
    color: rgba(238, 238, 238, 0.6);
}

.placard ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.placard li {
    font-size: clamp(13px, 1.2vw, 14pt);
    padding: clamp(6px, 1vw, 12px) 0;
    border-bottom: 1px solid rgba(238, 238, 238, 0.1);
}

.placard li:last-child {
    border-bottom: none;
}

.tier-btn {
    display: block;
    text-align: center;
    background-image: url('images/clouds.jpg'); 
    background-size: cover; 
    background-position: left bottom; 
    color: #EEEEEE;
    text-decoration: none;
    font-size: clamp(10px, 1.5vw, 14pt);
    padding: clamp(10px, 2vw, 20px);
    border-top: 0px solid rgba(238, 238, 238, .5);
	box-shadow: inset 0 0 0 1000px rgba(30, 32, 44, 0); 
    transition: background-color 0.3s, color 0.3s, box-shadow 0.4s ease;}

@media (hover: hover) {
    .placard:hover {
        transform: scale(1.05) translateY(-10px);
        box-shadow: 0 20px 40px rgba(68, 70, 94, 0.4);
    }
    .placard:hover h3 {
        color: #FFEC64;
    }
    .placard:hover .tier-btn {
        color: #FFEC64;
		box-shadow: inset 0 0 0 1000px rgba(30, 32, 44, 0.7);
    }
    .placard:hover::before {
        opacity: 1; 
    }
    .placard:hover::after {
        animation: shineSweep 1.0s ease-out forwards;
    }    
}





@media (max-width: 800px) and (pointer: coarse) {
    .pricing-section {
        overflow: visible !important;
    }

    .pricing-track {
        display: flex;
        overflow-x: auto;
        padding: 15px 0 40px 0 !important; 
        gap: 15px; 
        scroll-snap-type: x mandatory; 
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; 
        align-items: center !important;
        height: auto !important;
    }

    .pricing-track::-webkit-scrollbar {
        display: none; 
    }

    .placard {
        flex: 0 0 80%; 
        margin-bottom: 20px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        height: max-content !important; 
    }
    
    .pricing-track::before,
    .pricing-track::after {
        content: '';
        flex: 0 0 calc(10% - 15px); 
    }

    .placard-content { 
        padding: 20px 20px;
    }
    
    .placard h3 { 
        font-size: 14pt;
        margin-bottom: 5px; 
    }
    
    .placard .price { 
        font-size: 32pt; 
        margin-bottom: 15px;
    }
    
    .placard .price span { 
        font-size: 12pt; 
    }
    
    .placard li { 
        font-size: 13pt;
        padding: 8px 0;
    }
    
    .tier-btn { 
        font-size: 14pt; 
        padding: 15px; 
}

.placard:hover, 
    .placard:active {
        transform: none !important;
        box-shadow: 0 4px 15px rgba(68, 70, 94, 0.15) !important;
    }
    
    .placard:hover::after {
        display: none !important;
    }

}


.placard-fine-print {
	margin-bottom: 20px;
    font-size: clamp(11px, 0.9vw, 12px);
    color: #eeeeee;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.3px;
    opacity: 0.85; 
}

.placard-fine-print p {
    margin: 2px 0;
}

.placard-fine-print strong {
    color: #FFEC64; 
    font-weight: 400;
}

.placard-content {
    display: flex;
    flex-direction: column;
}

/* dev-overlay */

#dev-overlay {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #44465E;
    color: #A99FFC;
    padding: 12px 24px;
    border-radius: 0px;
    font-size: 16pt;
    font-weight: 400;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    white-space: nowrap;
}

#dev-overlay.show {
    opacity: 1;
    visibility: visible;
}





.reveal-container {
    position: relative;
    height: 200vh;
}

.image-base {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    background-image: url('images/clouds.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.eee-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #EEEEEE;
    z-index: 2;
    
    -webkit-mask-image: url('perspective-grid.svg');
    mask-image: url('perspective-grid.svg');
    -webkit-mask-size: cover;
    mask-size: cover;
}

.sales-section.responsive-split {
    width: 100%;
	min-height: calc(100vh - 60px);    
	min-height: calc(100vh - 60px);
	display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    color: #44465E;
    z-index: 1;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.split-graphic-column, .split-text-column {
    width: 100%;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.split-divider {
    display: none;
}

@media screen and (min-width: 900px) {
    .sales-section.responsive-split {
        display: grid;
        grid-template-columns: 35% 1px 64%;
        align-items: stretch;
    }
    
	.circuit-hand-wrapper {
        justify-content: flex-end; 
    }
	
    .split-graphic-column {
        grid-column: 1;
		padding: 20px 40px 20px 20px;
        align-items: flex-end;
    }
    
    .split-divider {
        display: block;
        grid-column: 2;
        width: 0px;
        background-color: #44465E;
        opacity: 0.3;
        height: 100%;
    }
    
    .split-text-column {
        grid-column: 3;
        padding: 30px 5%;
        align-items: flex-start;
    }
}

.split-content-wrapper {
    max-width: 700px;
    width: 100%;
    text-align: left;
}

.split-content-wrapper h2,
.split-content-wrapper h3,
.split-content-wrapper p,
.split-content-wrapper small {
    text-align: left;
    display: block;
}

.circuit-hand-wrapper {
    width: 100%;
    max-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.split-content-wrapper h2 {
    font-size: 24pt;
    margin-bottom: 5px;
    color: #44465E;
}

.split-content-wrapper h3 {
    font-size: 16pt;
    margin-bottom: 15px;
    color: #44465E;
}

.split-content-wrapper .gold-text {
    font-size: 16pt;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #AAA348;
}

.sales-content-wrapper .gold-text {
    font-size: 16pt;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #AAA348;
}

.sign-up-btn {
    display: inline-block;
    padding: 10px 22px;
    font-size: 14pt;
    text-align: center;
    text-decoration: none;
    background-color: #44465E;
    color: #AAA348;
    border-radius: 3px;
	border: none;
    transition: color 0.3s ease, background-color 0.3s ease;
    margin-bottom: 5px;
    width: fit-content;
	cursor: pointer;
	font-family: Afacad;
    display: inline-block;
    padding: 12px 28px;
    font-size: 13pt;
    text-align: center;
    text-decoration: none;
    margin-top: 30px;
}

.sign-up-btn:hover {
    color: #FFEC64;
}

.split-fine-print {
    font-size: 11pt;
    line-height: 1.6;
    color: #1D070E;
    opacity: 0.9;
}

@media screen and (max-width: 899px) {
    .split-text-column {
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
}

.cyber-hand-svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

.draw-line {
    fill: none;
    stroke: #44465E;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawHand 2.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.draw-line.fast { animation-duration: 2s; }
.draw-line.mid { animation-duration: 2.4s; }
.draw-line.slow { animation-duration: 2.8s; stroke: #AAA348; stroke-width: 4; }

.icon-path {
    fill: none;
    stroke: #44465E;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-path.thin {
    stroke-width: 1.5;
    stroke: #AAA348;
}

.icon-fill {
    fill: #44465E;
}

.icon-fill.glow {
    fill: #FFEC64;
}

.icon-group {
    opacity: 0;
    transform-origin: center;
    animation: popIcon 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.7s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 0.9s; }


@keyframes drawHand {
    0% { stroke-dashoffset: 1000; }
    100% { stroke-dashoffset: 0; }
}

@keyframes popIcon {
    0% { opacity: 0; transform: scale(calc(var(--icon-scale, 1) * 0.5)); }
    100% { opacity: 1; transform: scale(var(--icon-scale, 1)); }
}




.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(30, 32, 44, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.show-modal {
    opacity: 1;
    visibility: visible;
}

.modal-portrait-card {
    background-color: #EEEEEE;
    width: 90%;
    max-width: 400px;
    padding: 50px 40px;
    border-radius: 3px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border-top: 4px solid #44465E;
}

.modal-overlay.show-modal .modal-portrait-card {
    transform: translateY(0);
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24pt;
    color: #44465E;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-modal-btn:hover {
    color: #AAA348;
}

.modal-portrait-card h3 {
    color: #44465E;
    font-size: 22pt;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-subtitle {
    color: #44465E;
    font-size: 13pt;
    margin-bottom: 30px;
    opacity: 0.8;
}

.minimal-input {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Afacad', sans-serif;
    font-size: 14pt;
    color: #44465E;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid rgba(68, 70, 94, 0.3);
    margin-bottom: 25px;
    transition: border-color 0.3s ease;
    outline: none;
}

.minimal-input:focus {
    border-bottom-color: #AAA348;
}

.modal-submit {
    width: 100%;
    margin-top: 10px;
}

.modal-fine-print {
    display: block;
    margin-top: 20px;
    font-size: 10pt;
    color: #44465E;
    opacity: 0.6;
}



.support-flex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.support-map img {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
}

.support-text {
    text-align: left;
    width: 100%;
}


@media (min-width: 768px) {
    .support-flex-container {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }

    .support-map {
        flex: 0 0 400px;
    }

    .support-map img {
        max-width: 400px;
    }

    .support-text {
        flex: 1;
    }
}


.oalco-viewport {
    width: 100%;
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #44465E;
    padding: 20px;
    background-color: transparent; 
}

.oalco-content-wrapper {
    max-width: 900px;
    width: 100%;
}

.support-text h3 { 
    font-size: clamp(18pt, 2.5vw, 24pt); 
    font-weight: 400; 
    margin-bottom: 20px; 
    color: #44465E; 
}

.support-text p { 
    font-size: clamp(14pt, 1.5vw, 18pt); 
    line-height: 1.6; 
    margin-bottom: 20px; 
}

.support-text .gold-text {
    font-size: clamp(16pt, 2vw, 20pt);
    color: #AAA348;
    text-decoration: none;
    transition: color 0.3s;
}

.support-text a {
    text-decoration: none;
}

.support-text a:hover .gold-text {
    color: #44465E;
}

.support-flex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.support-map img {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
}

.support-text {
    text-align: left;
    width: 100%;
}

@media (min-width: 768px) {
    .support-flex-container {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }

    .support-map {
        flex: 0 0 400px;
    }

    .support-map img {
        max-width: 400px;
    }

    .support-text {
        flex: 1;
    }
}

/* --- icons head --- */
.logo-group {
    display: flex;
    align-items: center;
    position: relative;
    gap: 15px;
    cursor: pointer;
}

.logo-link, .header-text {
    position: relative;
    z-index: 2;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-icon-drawer {
    position: absolute;
    left: 55px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-30px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.drawer-icon {
    display: block;
    width: 32px;
    height: 32px;
	transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.2s ease;}

.drawer-icon svg {
    width: 100%;
    height: 100%;
}

.drawer-icon:hover {
    transform: scale(1.00) translateY(0px);
filter: saturate(0) brightness(1.5);}

@media (min-width: 801px) {
    .logo-group:hover .header-text {
        opacity: 0;
        transform: translateX(15px);
        pointer-events: none;
    }
    .logo-group:hover .header-icon-drawer {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }
}

@media (max-width: 800px) {
    .header-icon-drawer {
        left: 50%;
        transform: translateX(-50%) scale(0.9);
        gap: 10px;
        opacity: 0;
        width: max-content;
    }
    
    .drawer-icon {
        width: 28px;
        height: 28px;
    }

    .logo-group.mobile-active .logo-link,
    .logo-group.mobile-active .header-text {
        opacity: 0;
        pointer-events: none;
    }
    
    .logo-group.mobile-active .header-icon-drawer {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) scale(1);
    }
}

.omega-ctx-menu {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 180px;
    background-color: #44465E;
    box-shadow: 4px 4px 15px rgba(30, 32, 44, 0.5);
    z-index: 10000;
    clip-path: inset(0 100% 100% 0);
    transition: clip-path 0.2s ease-out, opacity 0.2s ease-out, visibility 0s 0.2s;
    margin: 0;
}

.omega-ctx-menu.is-open {
    visibility: visible;
    opacity: 1;
    clip-path: inset(-500px -1000px -500px -1000px);
    transition: clip-path 0.2s ease-out, opacity 0.2s ease-out, visibility 0s 0s;
}

.omega-ctx-list, .omega-ctx-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.omega-ctx-item {
    position: relative;
}

.omega-ctx-item > a {
    font-size: 11.2pt;
    font-weight: 400;
    color: #EEEEEE;
    padding: 6px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    text-decoration: none;
    z-index: 1;
}

.omega-ctx-item > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        500px circle at var(--mouse-x, -1000px) var(--mouse-y, -1000px), 
        rgba(238, 238, 238, 0.25), 
        transparent 95%
    );
    opacity: 0;
    z-index: -1; 
    pointer-events: none; 
    transition: opacity 0.3s ease;
}

.omega-ctx-item > a:hover {
    color: #FFEC64;
    border-left-color: #EEEEEE;
    background-color: rgba(68, 70, 94, 0.5);
}

.omega-ctx-item > a:hover::before {
    opacity: 1;
}

.omega-ctx-submenu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 100%;
    width: 180px;
    background-color: #44465E;
    box-shadow: 4px 4px 15px rgba(30, 32, 44, 0.5);
    z-index: 10;
    clip-path: inset(0 100% 100% 0);
    transition: clip-path 0.2s ease-out, opacity 0.2s ease-out, visibility 0s 0.2s;
}

.omega-ctx-item.has-sub:hover > .omega-ctx-submenu {
    visibility: visible;
    opacity: 1;
    clip-path: inset(-500px -1000px -500px -1000px);
    transition: clip-path 0.2s ease-out, opacity 0.2s ease-out, visibility 0s 0s;
}

.omega-ctx-item.has-sub:hover > a {
    color: #FFEC64;
    border-left-color: #EEEEEE;
    background-color: rgba(68, 70, 94, 0.5);
}

.omega-ctx-item.has-sub:hover > a::before {
    opacity: 1;
}

.omega-ctx-item > a span {
    display: inline-block;
    transition: transform 0.2s ease;
}

.omega-ctx-item.open-left > a span {
    transform: scaleX(-1);
}

.omega-ctx-item.open-left > .omega-ctx-submenu {
    left: auto;
    right: 100%;
    clip-path: inset(0 0 100% 100%); 
    box-shadow: -4px 4px 15px rgba(30, 32, 44, 0.5);
}

.omega-ctx-item.open-left:hover > .omega-ctx-submenu {
    clip-path: inset(-500px -1000px -500px -1000px);
}

.omega-ctx-submenu.omega-ctx-light {
    background-color: #EEEEEE;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.15); 
}

.omega-ctx-item.open-left > .omega-ctx-submenu.omega-ctx-light {
    box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.15); 
}

.omega-ctx-submenu.omega-ctx-light .omega-ctx-item > a {
    color: #44465E;
    font-size: 10pt; 
    border-left-color: transparent;
}

.omega-ctx-submenu.omega-ctx-light .omega-ctx-item > a:hover {
    background-color: rgba(68, 70, 94, 0.1); 
    border-left-color: #44465E;
    color: #44465E;
}

.omega-ctx-submenu.omega-ctx-light .omega-ctx-item > a::before {
    background: radial-gradient(
        400px circle at var(--mouse-x, -1000px) var(--mouse-y, -1000px), 
        rgba(68, 70, 94, 0.08), 
        transparent 95%
    );
}

.omega-ctx-item > a.ctx-data-val {
    color: #AA3333; 
    font-weight: 500;
}

.omega-ctx-item > a.ctx-data-val:hover {
    color: #AA3333;
    background-color: transparent; 
    cursor: default;
}

.omega-ctx-submenu.omega-ctx-scrollable {
    max-height: 280px;
    overflow-y: auto;
    overflow-x: hidden;
}

.omega-ctx-submenu.omega-ctx-scrollable::-webkit-scrollbar {
    width: 6px;
}

.omega-ctx-submenu.omega-ctx-scrollable::-webkit-scrollbar-track {
    background: transparent;
}

.omega-ctx-submenu.omega-ctx-scrollable::-webkit-scrollbar-thumb {
    background: #44465E;
    border-radius: 10px;
}

.omega-ctx-submenu.omega-ctx-light.omega-ctx-scrollable::-webkit-scrollbar-track {
    background: #DDDDDD;
    border-radius: 0 0 5px 0;
}

        @keyframes shine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        } 
        
        .menu-container {
            position: fixed;
            top: 0;
            left: -144px;
            width: 166.5px;
            height: 45%;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            transition: left 0.9s ease;
            z-index: 999;
        }

        .menu-container:hover {
            left: 0;
        }

        .wheel-menu {
            cursor: pointer;
            background-color: #EEEEEE;
            border-right: 33px solid #44465E;
            border-top-right-radius: 33px;
            border-bottom-right-radius: 33px;
            position: relative;
            top: 33%;
            width: 333px;
            height: 200px;
            transform: rotate(0deg);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            perspective: 1000px;
            transform-style: preserve-3d;
            transition: all 0.3s ease-out, box-shadow 0.3s ease-out; 
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            touch-action: none;
            -webkit-tap-highlight-color: transparent;
        }

        .wheel-menu::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 999%;
            height: 100%;
            background: linear-gradient(
                33deg,
                transparent 0%,
                transparent 42%,
                rgba(255, 255, 255, 0.5),
                transparent 58%,
                transparent 100%
            );
            transform: translateX(-100%);
            pointer-events: none;
            z-index: 9999;
        }

        .wheel-menu.shine::before {
            animation: shine 3s ease-out forwards;
        }

        .wheel-menu a {
            color: #AAA348;  
            transition: all 0.3s ease-out; 
            text-decoration: none;
        }
        
        .wheel-menu a:hover {
            color: #AAA348; 
        }

        .menu-item {
            position: absolute;
            width: 200px;
            height: 30px;
            color: #AAA348;
            text-align: center;
            line-height: 30px;
            border-radius: 0px;
            transform-origin: center center;
            transition: all 0.3s ease-out; 
            pointer-events: none;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;  
        }
        
        .menu-item[style*="rotateX(180deg)"],
        .menu-item[style*="rotateX(-180deg)"] {
            opacity: 0;
        }

        .menu-item.focus {
            color: #44465E;
            transform: rotate(0deg) translateY(0) scale(1.2);
            z-index: 1;
            pointer-events: none;
            user-select: text;
            -webkit-user-select: text;
            -moz-user-select: text;
            -ms-user-select: text;
        }

        .menu-item.focus a, .menu-item.focus a:hover {
            color: #44465E;
            transform: rotate(0deg) translateY(0) scale(1.2);
            z-index: 1;
        }

        html {
            scroll-behavior: smooth;
        }