/* 
  Finans Static Build - Global Styles (Ultra-Premium Edition)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* @property definitions for advanced animations */
@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@property --gradient-angle-offset {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@property --gradient-percent {
    syntax: "<percentage>";
    initial-value: 5%;
    inherits: false;
}

:root {
    /* Design Tokens */
    --primary-purple: #8B00FF;
    --primary-blue: #0055FF;
    --primary-pink: #FF0080;
    --primary-yellow: #FFD700;
    --primary-cyan: #00D1FF;
    --accent-orange: #FF6D00;
    --accent-violet: #8B00FF;

    /* Backgrounds - Vibrant Purple (Match Requested #8000ff) */
    --bg-dark-950: #8000ff;
    --bg-dark-900: #8000ff;
    --bg-dark-800: #7000e0;
    --bg-dark-700: #6000c0;
    --bg-dark-600: #5000a0;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Gradients */
    --hero-gradient: linear-gradient(135deg, #8000ff 0%, #8b00ff 100%);
    --cyan-gradient: linear-gradient(to right, #00D1FF 0%, #00F2FE 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

/* Base resets */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg-dark-950);
    color: #FFFFFF;
    min-height: 100vh;
    overflow-x: clip;
    /* changed from hidden to clip to fix sticky scroll */
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    transition: background-color var(--transition-normal);
}

body.light-theme {
    background-color: #F8F7FF;
    color: #8000ff;
}

/* Dark Theme - Base styles */
body.dark-theme {
    background: var(--bg-dark-950);
    color: #FFFFFF;
}

/* Preserve gradient text colors in dark theme */
body.dark-theme .text-gradient,
body.dark-theme .text-gradient-cyan,
body.dark-theme .text-gradient-purple,
body.dark-theme .text-gradient-pink,
body.dark-theme .bg-clip-text {
    color: transparent !important;
    -webkit-text-fill-color: transparent;
}

body.light-theme .text-white,
body.light-theme .text-white\/90,
body.light-theme .text-white\/80,
body.light-theme .text-white\/70,
body.light-theme .text-white\/60,
body.light-theme .text-white\/50,
body.light-theme .text-white\/40,
body.light-theme .text-white\/30,
body.light-theme .text-white\/20 {
    color: #8000ff !important;
}

body.light-theme .text-white\/70,
body.light-theme .text-white\/60,
body.light-theme .text-white\/50 {
    color: rgba(128, 0, 255, 0.7) !important;
}

body.light-theme .bg-\[\#8000ff\],
body.light-theme .bg-\[\#654FA1\],
body.light-theme .bg-white\/10,
body.light-theme .bg-white\/5,
body.light-theme .bg-black\/10 {
    background-color: #FFFFFF !important;
}

/* Force White Text ONLY for specific cards that maintain dark backgrounds in Light Mode */
body.light-theme .compare-card,
body.light-theme .feature-card,
body.light-theme .trust-card,
body.light-theme .ethical-card,
body.light-theme .gamification-card {
    color: #FFFFFF !important;
}

body.light-theme .compare-card h1,
body.light-theme .compare-card h2,
body.light-theme .compare-card h3,
body.light-theme .compare-card p,
body.light-theme .compare-card span,
body.light-theme .compare-card i,
body.light-theme .feature-card h1,
body.light-theme .feature-card h2,
body.light-theme .feature-card h3,
body.light-theme .feature-card p,
body.light-theme .feature-card span,
body.light-theme .feature-card i,
body.light-theme .trust-card h1,
body.light-theme .trust-card h2,
body.light-theme .trust-card h3,
body.light-theme .trust-card p,
body.light-theme .trust-card span,
body.light-theme .trust-card i,
body.light-theme .ethical-card h1,
body.light-theme .ethical-card h2,
body.light-theme .ethical-card h3,
body.light-theme .ethical-card p,
body.light-theme .ethical-card span,
body.light-theme .ethical-card i,
body.light-theme .gamification-card h1,
body.light-theme .gamification-card h2,
body.light-theme .gamification-card h3,
body.light-theme .gamification-card p,
body.light-theme .gamification-card span,
body.light-theme .gamification-card i {
    color: #FFFFFF !important;
}

body.light-theme [class*="card"] h1,
body.light-theme [class*="card"] h2,
body.light-theme [class*="card"] h3,
body.light-theme [class*="card"] h4,
body.light-theme [class*="card"] p,
body.light-theme [class*="card"] span,
body.light-theme [class*="card"] i,
body.light-theme [class*="card"] div {
    color: #FFFFFF !important;
}

/* Exception for glass cards which might need dark text if intended to be light */
body.light-theme .glass-card {
    color: #8000ff !important;
}

/* Re-assert exception for light-themed specific cards like FAQ if they have light backgrounds */
/* Re-assert exception for light-themed specific cards like FAQ if they have light backgrounds */
body.light-theme .faq-card {
    color: #8000ff !important;
}

body.light-theme .faq-card h4,
body.light-theme .faq-card p,
body.light-theme .faq-card i {
    color: #8000ff !important;
}

body.light-theme .faq-card * {
    color: #8000ff !important;
}

/* Generic cards should follow the theme (dark purple text on white background) */
body.light-theme .blog-card,
body.light-theme .glass-card:not(.feature-card) {
    color: #8000ff !important;
}

/* Fix for Waitlist Card (Glass Card) */
body.light-theme #waitlist-form-container {
    color: #8000ff !important;
}

body.light-theme #waitlist-form-container h2,
body.light-theme #waitlist-form-container p,
body.light-theme #waitlist-form-container span,
body.light-theme #waitlist-form-container label {
    color: #8000ff !important;
}

/* Ensure input placeholders are visible too */
body.light-theme #waitlist-form-container input::placeholder {
    color: rgba(128, 0, 255, 0.6) !important;
}

body.light-theme #waitlist-form-container input,
body.light-theme #waitlist-form-container select {
    color: #8000ff !important;
    border-color: rgba(128, 0, 255, 0.3) !important;
}

body.light-theme #waitlist-form-container select option {
    background-color: #FFFFFF !important;
    color: #8000ff !important;
}

/* Fix for Hero Badge */
body.light-theme .glass-card .hero-badge {
    color: #8000ff !important;
}

body.light-theme section {
    background-color: #FFFFFF !important;
    background-image: none !important;
}

body.light-theme #hero-section {
    background: #F8F7FF !important;
}

body.light-theme .border-white\/20,
body.light-theme .border-white\/10 {
    border-color: rgba(139, 0, 255, 0.1) !important;
}

body.light-theme footer {
    background: linear-gradient(to right, #2563eb 0%, #7c3aed 100%) !important;
    border-top: 1px solid rgba(139, 0, 255, 0.1);
}

body.light-theme footer * {
    color: #FFFFFF !important;
}

body.light-theme footer a {
    color: #FFFFFF !important;
}

body.light-theme footer a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

body.light-theme footer i {
    color: #FFFFFF !important;
}

body.light-theme footer p,
body.light-theme footer div,
body.light-theme footer span,
body.light-theme footer h1,
body.light-theme footer h2,
body.light-theme footer h3,
body.light-theme footer h4 {
    color: #FFFFFF !important;
}

body.light-theme footer .text-white\/60,
body.light-theme footer .text-white\/70,
body.light-theme footer .text-white\/80 {
    color: #FFFFFF !important;
}

body.light-theme .faq-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F0FF 100%) !important;
    border: 1px solid rgba(139, 0, 255, 0.1) !important;
    box-shadow: 0 10px 30px rgba(139, 0, 255, 0.05) !important;
}

body.light-theme .faq-card:hover {
    background: linear-gradient(135deg, #F8F7FF 0%, #FFFFFF 100%) !important;
}

body.light-theme .faq-card.active {
    background: #FFFFFF !important;
    border-color: var(--primary-purple) !important;
}

body.light-theme .hiw-icon {
    background: #F0EEFF !important;
}

body.light-theme .nav-header {
    background: rgba(255, 255, 255, 0.8) !important;
    border-bottom: 1px solid rgba(139, 0, 255, 0.1) !important;
}

body.light-theme .nav-header.is-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}

body.light-theme .nav-link {
    color: #8000ff !important;
}

body.light-theme .nav-link::after {
    background: var(--primary-purple);
}

body.light-theme .bg-black\/20 {
    background-color: rgba(45, 27, 77, 0.05) !important;
}

body.light-theme .nav-dropdown,
body.light-theme .lang-dropdown {
    background: #FFFFFF !important;
    border: 1px solid rgba(139, 0, 255, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .nav-dropdown a,
body.light-theme .lang-native {
    color: #8000ff !important;
}

body.light-theme .nav-dropdown a:hover,
body.light-theme .lang-item:hover {
    background: rgba(139, 0, 255, 0.05) !important;
}

body.light-theme .lang-english {
    color: rgba(128, 0, 255, 0.5) !important;
}

body.light-theme .custom-translate-btn {
    background: rgba(139, 0, 255, 0.05) !important;
    border-color: rgba(139, 0, 255, 0.1) !important;
    color: #8000ff !important;
}

body.light-theme #scroll-indicator span {
    color: var(--primary-purple) !important;
}

body.light-theme .mouse-indicator {
    border-color: rgba(139, 0, 255, 0.3) !important;
}

body.light-theme .mouse-indicator::before {
    background: var(--primary-purple) !important;
}

body.light-theme .cookie-banner {
    background: #FFFFFF !important;
    border: 1px solid rgba(139, 0, 255, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .cookie-banner .bg-white\/20 {
    background: rgba(139, 0, 255, 0.1) !important;
}

body.light-theme .cookie-banner i {
    color: var(--primary-purple) !important;
}

body.light-theme #accept-cookies {
    background: var(--primary-purple) !important;
    color: #FFFFFF !important;
}


/* Premium Shine Border Utility */
.shine-border {
    --border-width: 1.5px;
    position: relative;
    z-index: 0;
}

.shine-border::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: var(--border-width);
    background: linear-gradient(var(--gradient-angle, 0deg), #00ff41, #8000ff, #00d1ff, #00ff41);
    background-size: 300% 300%;
    border-radius: inherit;
    z-index: 10;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: gradient-angle 4s linear infinite;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.shine-border:hover::before {
    opacity: 1;
    animation: gradient-angle 2s linear infinite;
    --border-width: 2.5px;
}

/* Day Mode Adaptive Shine */
body.light-theme .shine-border::before {
    background: linear-gradient(var(--gradient-angle, 0deg), #8000ff, #00d1ff, #ff0080, #8000ff);
    opacity: 0.4;
}

@keyframes gradient-angle {
    0% {
        --gradient-angle: 0deg;
    }

    100% {
        --gradient-angle: 360deg;
    }
}

/* Typography */
h1,
h2,
h3,
h4,
.font-heading {
    font-family: 'Outfit', sans-serif;
}

/* Text Gradient Animation */
.text-gradient-cyan {
    background: var(--cyan-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradient-shift 3s linear infinite;
}

@keyframes gradient-shift {
    to {
        background-position: 200% center;
    }
}

/* Navbar - Premium Glassmorphism */
.nav-header {
    height: 6.5rem;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(128, 0, 255, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-header.is-scrolled {
    background: rgba(128, 0, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: 55px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    padding: 0.5rem 1.1rem;
    border-radius: 0.5rem;
    position: relative;
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-cyan);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 40%;
}

.nav-link:hover {
    color: #FFFFFF;
}

#logo-img-desktop {
    height: 4rem !important;
    width: auto !important;
    max-width: 12rem !important;
    object-fit: contain;
    object-position: left center;
    display: block;
    margin: auto 0;
    transition: all 0.3s ease;
}

.logo-white {
    filter: brightness(0) invert(1) !important;
}

#rotating-text {
    transition: opacity 0.5s ease;
}

.nav-link:hover {
    color: #FFFFFF;
}

/* Light Theme Overrides */
body.light-theme .nav-header.is-scrolled {
    background: rgba(245, 245, 250, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-theme .nav-link {
    color: #2D3436;
}

body.light-theme .nav-link:hover {
    color: var(--primary-purple);
}

body.light-theme .nav-header #mobile-menu-toggle {
    color: #2D3436;
}

body.light-theme .nav-header a[href="/login"] {
    color: #2D3436;
    border-color: rgba(0, 0, 0, 0.1);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: rgba(101, 79, 161, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 0.5rem;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.group:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    display: block;
}

.nav-dropdown a:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Overlay - positioned below navbar */
.mobile-menu {
    position: fixed;
    top: 6.5rem;
    /* Matches .nav-header height */
    left: 0;
    right: 0;
    bottom: 0;
    /* height: calc(100vh - 6.5rem); handled by bottom:0 */
    background: #8000ff;
    z-index: 9999;
    /* Increased to ensure it overlays hero section */
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* Start from top of menu area */
    padding: 3rem 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow-y: auto;
    /* Allow scrolling if menu is tall */
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

@keyframes menu-slide-down {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hidden {
    display: none;
}

/* Shiny Button (The CTA) - Vibrant Gradient & Glow */
.shiny-button {
    isolation: isolate;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 1.25rem;
    color: #FFFFFF;
    background: linear-gradient(to right, #FF0080, #8B00FF, #0055FF);
    background-size: 200% auto;
    box-shadow: 0 4px 20px rgba(139, 0, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2.8rem;
    line-height: 1;
    font-size: 1.05rem;
}

.shiny-button.nav-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    border-radius: 999px;
}

.shiny-button:hover {
    transform: translateY(-2px) scale(1.02);
    background-position: right center;
    box-shadow: 0 10px 25px rgba(255, 0, 128, 0.5), 0 0 15px rgba(0, 209, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.shiny-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.75s ease;
}

.shiny-button:hover::before {
    left: 150%;
}

@keyframes gradient-angle {
    to {
        --gradient-angle: 360deg;
    }
}

/* SkyToggle (High-Fidelity) */
.theme-switch {
    --sw-w: 5.2rem;
    --sw-h: 2.2rem;
    --sw-c: 1.7rem;
    --sw-off: 0.25rem;
    --night-bg: #1e2235;
    --light-bg: #89b4fa;
    /* Vibrant Blue Sky */
}

.theme-switch__container {
    width: var(--sw-w);
    height: var(--sw-h);
    background-color: var(--night-bg);
    border-radius: 10rem;
    cursor: pointer;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    display: block;
    /* Strong Inner Bevel */
    box-shadow:
        inset 0 4px 8px rgba(0, 0, 0, 0.6),
        inset 0 -2px 4px rgba(255, 255, 255, 0.1);
}

/* Concentric Rings Background */
.sky-rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sky-rings span {
    position: absolute;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Default (Night) Rings - Centered on Moon (Right) */
.sky-rings span:nth-child(1) {
    width: 140%;
    height: 320%;
    top: 50%;
    left: 80%;
    background-color: rgba(255, 255, 255, 0.05);
}

.sky-rings span:nth-child(2) {
    width: 110%;
    height: 260%;
    top: 50%;
    left: 80%;
    background-color: rgba(255, 255, 255, 0.03);
}

.sky-rings span:nth-child(3) {
    width: 80%;
    height: 180%;
    top: 50%;
    left: 80%;
    background-color: rgba(255, 255, 255, 0.02);
}

/* Day Position Overrides - Centered on Sun (Left) */
.theme-switch__checkbox:not(:checked)+.theme-switch__container .sky-rings span {
    left: 20%;
}

.theme-switch__checkbox:not(:checked)+.theme-switch__container .sky-rings span:nth-child(1) {
    background-color: rgba(255, 255, 255, 0.15);
}

.theme-switch__checkbox:not(:checked)+.theme-switch__container .sky-rings span:nth-child(2) {
    background-color: rgba(255, 255, 255, 0.1);
}

.theme-switch__checkbox:not(:checked)+.theme-switch__container .sky-rings span:nth-child(3) {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Animated Stars for Night */
.sky-stars span {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: twinkle var(--t-dur, 3s) infinite ease-in-out;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.sky-stars span:nth-child(1) {
    width: 2px;
    height: 2px;
    top: 25%;
    left: 15%;
    --t-dur: 2s;
    box-shadow: 0 0 4px #fff;
}

.sky-stars span:nth-child(2) {
    width: 3px;
    height: 3px;
    top: 55%;
    left: 30%;
    --t-dur: 3.5s;
}

.sky-stars span:nth-child(3) {
    width: 2px;
    height: 2px;
    top: 15%;
    left: 45%;
    --t-dur: 2.5s;
}

.sky-stars span:nth-child(4) {
    width: 4px;
    height: 4px;
    top: 45%;
    left: 10%;
    --t-dur: 4s;
    opacity: 0.3;
}

.sky-stars span:nth-child(5) {
    width: 2px;
    height: 2px;
    top: 70%;
    left: 40%;
    --t-dur: 3s;
}

/* Bubbly Clouds for Day */
.sky-clouds {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sky-clouds span {
    position: absolute;
    background: #fff;
    border-radius: 50%;
}

@keyframes drift {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.sky-clouds span:nth-child(1) {
    width: 3rem;
    height: 3rem;
    bottom: -1.2rem;
    right: -0.2rem;
}

.sky-clouds span:nth-child(2) {
    width: 2.2rem;
    height: 2.2rem;
    bottom: -0.8rem;
    right: 2.2rem;
    opacity: 0.9;
}

.sky-clouds span:nth-child(3) {
    width: 1.6rem;
    height: 1.6rem;
    bottom: -0.5rem;
    right: 4.2rem;
    opacity: 0.7;
}

/* The Circle (Sun/Moon) */
.theme-switch__circle-container {
    width: var(--sw-c);
    height: var(--sw-c);
    background-color: #f1f3f6;
    /* Subtle white for moon */
    position: absolute;
    left: calc(var(--sw-w) - var(--sw-c) - var(--sw-off));
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    overflow: hidden;
}

/* Moon Surface */
.moon-spots span {
    position: absolute;
    background: #cbd5e1;
    border-radius: 50%;
    opacity: 0.6;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.moon-spots span:nth-child(1) {
    width: 0.6rem;
    height: 0.6rem;
    top: 22%;
    left: 42%;
}

.moon-spots span:nth-child(2) {
    width: 0.4rem;
    height: 0.4rem;
    top: 58%;
    left: 18%;
}

.moon-spots span:nth-child(3) {
    width: 0.3rem;
    height: 0.3rem;
    top: 68%;
    left: 72%;
}

/* LIGHT MODE OVERRIDES */
.theme-switch__checkbox:not(:checked)+.theme-switch__container {
    background-color: var(--light-bg);
}

.theme-switch__checkbox:not(:checked)+.theme-switch__container .theme-switch__circle-container {
    left: var(--sw-off);
    background: linear-gradient(135deg, #FFEA00, #FFAB00);
    box-shadow: 0 4px 15px rgba(255, 171, 0, 0.5), inset 0 -2px 5px rgba(0, 0, 0, 0.05);
}

.theme-switch__checkbox:not(:checked)+.theme-switch__container .moon-spots {
    opacity: 0;
}

.theme-switch__checkbox:not(:checked)+.theme-switch__container .sky-rings span {
    left: 20%;
}

.theme-switch__checkbox:not(:checked)+.theme-switch__container .sky-rings span:nth-child(1) {
    background-color: rgba(255, 255, 255, 0.15);
}

.theme-switch__checkbox:not(:checked)+.theme-switch__container .sky-rings span:nth-child(2) {
    background-color: rgba(255, 255, 255, 0.1);
}

.theme-switch__checkbox:not(:checked)+.theme-switch__container .sky-rings span:nth-child(3) {
    background-color: rgba(255, 255, 255, 0.05);
}

.theme-switch__checkbox:not(:checked)+.theme-switch__container .sky-stars {
    opacity: 0;
    transform: scale(0.5);
}

.theme-switch__checkbox:not(:checked)+.theme-switch__container .sky-clouds {
    opacity: 1;
    transform: translateY(0);
}

/* Utils */
.theme-switch__checkbox {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

/* Mouse Wheel Animation */
.mouse-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 99px;
    padding: 6px;
    display: flex;
    justify-content: center;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mouse-indicator::before {
    content: '';
    width: 6px;
    height: 6px;
    background: linear-gradient(to bottom, #4facfe, #8B00FF);
    border-radius: 50%;
    animation: mouse-scroll 1.5s infinite;
    box-shadow: 0 0 10px rgba(79, 172, 254, 0.8);
}

@keyframes mouse-scroll {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    50% {
        transform: translateY(12px);
        opacity: 1;
    }

    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

/* Glass & Utility */
.glass-pills {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.glass-pills:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dot-green {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4ade80;
    position: relative;
}

.dot-green::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #4ade80;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.indicator-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 9999px;
    background-color: #10b981;
    box-shadow: 0 0 12px #10b981;
    position: relative;
}

.indicator-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background-color: #10b981;
    animation: indicator-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes indicator-ping {

    75%,
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Cookie Banner (Premium Pill) */
.cookie-banner {
    background: #FF9800;
    border-radius: 5rem;
    padding: 1rem 1.5rem 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: none;
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.3);
}

.cookie-banner button#accept-cookies {
    background: white;
    color: #FF9800;
    border-radius: 5rem;
    padding: 0.6rem 1.8rem;
    font-weight: 900;
}

/* Audience Cards Themed Classes */
.bg-accent-orange {
    background-color: var(--accent-orange);
}

.bg-primary-cyan {
    background-color: var(--primary-cyan);
}

.bg-primary-pink {
    background-color: var(--primary-pink);
}

.bg-primary-yellow {
    background-color: var(--primary-yellow);
}

.glow-orange:hover {
    box-shadow: 0 20px 40px -10px rgba(255, 109, 0, 0.5);
}

.glow-cyan:hover {
    box-shadow: 0 20px 40px -10px rgba(0, 209, 255, 0.5);
}

.glow-pink:hover {
    box-shadow: 0 20px 40px -10px rgba(255, 0, 128, 0.5);
}

.glow-yellow:hover {
    box-shadow: 0 20px 40px -10px rgba(255, 215, 0, 0.5);
}

/* Marquee Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee-reverse {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.animate-marquee {
    animation: marquee var(--duration, 20s) linear infinite;
}

.animate-marquee-reverse {
    animation: marquee-reverse var(--duration, 20s) linear infinite;
}

.pause-on-hover:hover .animate-marquee,
.pause-on-hover:hover .animate-marquee-reverse {
    animation-play-state: paused;
}

/* --- Gradient Card Global Styles --- */
.faq-card,
.glass-card,
.waitlist-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Light Theme Card Variants */
body.light-theme .faq-card,
body.light-theme .glass-card,
body.light-theme .waitlist-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F0FF 100%) !important;
    border-color: rgba(139, 0, 255, 0.1) !important;
}

/* Testimonial & Container Cards */
[class*="bg-white/10"][class*="rounded-"],
[class*="bg-white/5"][class*="rounded-"] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%) !important;
}

body.light-theme [class*="bg-white/10"][class*="rounded-"],
body.light-theme [class*="bg-white/5"][class*="rounded-"] {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F7FF 100%) !important;
    border-color: rgba(139, 0, 255, 0.1) !important;
}

/* FAQ Accordion Styles */
.faq-content {
    height: 0;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.04, 0.62, 0.23, 0.98);
}

.faq-item.is-open .faq-chevron {
    transform: rotate(180deg);
}

.faq-item.is-open .faq-icon-bg {
    background-color: #8000ff;
}

.faq-item.is-open .faq-icon {
    color: white;
}

.faq-item.is-open .faq-question {
    color: #8000ff;
}

.dark-theme .faq-item.is-open .faq-question {
    color: white;
}

/* Common Layout */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.max-w-7xl {
    max-width: 80rem;
    margin: 0 auto;
    width: 100%;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Grid */
.grid {
    display: grid;
}

.lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

/* Animations */
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* ===========================
   Footer Premium Styles
   =========================== */
.footer-premium {
    background: linear-gradient(135deg, #8000ff 0%, #ff0080 100%) !important;
}

/* Ensure footer text stays white even in light theme */
body.light-theme .footer-premium .text-white,
body.light-theme .footer-premium h4.text-white {
    color: #ffffff !important;
}

body.light-theme .footer-premium .text-white\/90 {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.light-theme .footer-premium .text-white\/80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

body.light-theme .footer-premium .text-white\/70 {
    color: rgba(255, 255, 255, 0.7) !important;
}

body.light-theme .footer-premium .text-white\/60 {
    color: rgba(255, 255, 255, 0.6) !important;
}

body.light-theme .footer-premium .text-white\/50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

body.light-theme .footer-premium .text-white\/40 {
    color: rgba(255, 255, 255, 0.4) !important;
}

body.light-theme .footer-premium .text-white\/30 {
    color: rgba(255, 255, 255, 0.3) !important;
}

body.light-theme .footer-premium .text-white\/20 {
    color: rgba(255, 255, 255, 0.2) !important;
}

body.light-theme .footer-premium a.hover\:text-white:hover {
    color: #ffffff !important;
}

/* Google Translate customization */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

#google_translate_element {
    display: none;
}

/* Language Selector Button */
.custom-translate-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Language Dropdown */
.lang-dropdown {
    position: absolute;
    bottom: 120%;
    right: 0;
    width: 220px;
    background: #2d1b4d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    overflow: hidden;
    display: none;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.lang-dropdown.active {
    display: flex;
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.lang-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.lang-item.active {
    background: #4a2b82;
}

.lang-item.active::after {
    content: '';
    position: absolute;
    right: 1.25rem;
    width: 6px;
    height: 6px;
    background: #ff0080;
    border-radius: 50%;
}

.lang-info {
    display: flex;
    flex-direction: column;
}

.lang-native {
    color: white;
    font-weight: 800;
    font-size: 0.95rem;
}

.lang-english {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Financial Fraud RSS Feed Section - Digital HUD Upgrade */
#financial-fraud-rss-feed {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(128, 0, 255, 0.05) 0%, transparent 70%);
}

.text-matrix-green-glow {
    color: #00ff41 !important;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.4);
    transition: all 0.3s ease;
}

.text-matrix-green-glow:hover {
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.8);
    transform: translateX(4px);
}

#financial-fraud-rss-feed::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
    pointer-events: none;
}

.scanning-hud-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    opacity: 0.4;
    animation: scan-vertical 8s linear infinite;
    z-index: 1;
}

@keyframes scan-vertical {
    0% {
        top: -10%;
    }

    100% {
        top: 110%;
    }
}

.rss-card {
    background: rgba(10, 10, 20, 0.4) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2.5rem;
    padding: 2.25rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Digital Corner Accents */
.rss-card::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    border-top: 2px solid rgba(0, 209, 255, 0.5);
    border-right: 2px solid rgba(0, 209, 255, 0.5);
}

.rss-card::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 15px;
    height: 15px;
    border-bottom: 2px solid rgba(128, 0, 255, 0.5);
    border-left: 2px solid rgba(128, 0, 255, 0.5);
}

.rss-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(0, 209, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 209, 255, 0.15);
    background: rgba(15, 15, 30, 0.6) !important;
}

.rss-filter-btn {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rss-filter-btn.active {
    background: linear-gradient(135deg, var(--primary-purple), #ff0080) !important;
    color: white !important;
    border-color: transparent !important;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.4);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #00ff41;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 10px #00ff41;
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

.country-tag {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 8px;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
}

.tag-usa {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.tag-global {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.severity-high {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.4);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.rss-source {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 10px;
    opacity: 0.6;
    margin-bottom: 0.75rem;
}

/* Day Mode (Trusted Purple Aesthetic) */
body.light-theme #financial-fraud-rss-feed {
    background: radial-gradient(circle at 50% 50%, rgba(128, 0, 255, 0.03) 0%, transparent 70%);
}

body.light-theme .rss-card {
    background: white !important;
    border-color: rgba(128, 0, 255, 0.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

body.light-theme .rss-card h3 {
    color: #8000ff !important;
}

body.light-theme .rss-card p {
    color: rgba(128, 0, 255, 0.6) !important;
}

body.light-theme .rss-card:hover {
    box-shadow: 0 20px 40px rgba(128, 0, 255, 0.08);
    border-color: var(--primary-purple);
}

body.light-theme .scanning-hud-line {
    background: linear-gradient(90deg, transparent, var(--primary-purple), transparent);
}

/* Unique Fraud Alerts Button - Red in Day Mode */
.fraud-premium-btn {
    position: relative;
    padding: 0.48rem 1.2rem;
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ff4444 !important;
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.5);
    background: rgba(255, 68, 68, 0.08);
    border: 1.5px solid rgba(255, 68, 68, 0.4);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
    animation: fraud-border-pulse-red 2s ease-in-out infinite;
    line-height: 1;
}

/* Dark Theme (Night Mode) - Green Style */
.dark-theme .fraud-premium-btn {
    color: #00ff41 !important;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.5);
    background: rgba(0, 255, 65, 0.08);
    border: 1.5px solid rgba(0, 255, 65, 0.4);
    animation: fraud-border-pulse-green 2s ease-in-out infinite;
}

.fraud-premium-btn i {
    width: 0.85rem;
    height: 0.85rem;
    animation: fraud-icon-rotate 3s linear infinite;
}

.fraud-premium-btn:hover {
    background: rgba(255, 68, 68, 0.15);
    border-color: rgba(255, 68, 68, 0.8);
    color: #ff4444 !important;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.4);
    transform: translateY(-2px) scale(1.02);
}

.dark-theme .fraud-premium-btn:hover {
    background: rgba(0, 255, 65, 0.15);
    border-color: rgba(0, 255, 65, 0.8);
    color: #00ff41 !important;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.fraud-premium-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 68, 68, 0.3),
            transparent);
    transform: skewX(-25deg);
    animation: fraud-scan 2.5s infinite linear;
    z-index: 2;
}

.dark-theme .fraud-premium-btn::before {
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 255, 65, 0.3),
            transparent);
}

@keyframes fraud-scan {
    0% {
        left: -100%;
    }

    100% {
        left: 150%;
    }
}

@keyframes fraud-border-pulse-red {

    0%,
    100% {
        border-color: rgba(255, 68, 68, 0.4);
        box-shadow: 0 0 10px rgba(255, 68, 68, 0.2);
    }

    50% {
        border-color: rgba(255, 68, 68, 0.8);
        box-shadow: 0 0 18px rgba(255, 68, 68, 0.4);
    }
}

@keyframes fraud-border-pulse-green {

    0%,
    100% {
        border-color: rgba(0, 255, 65, 0.4);
        box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
    }

    50% {
        border-color: rgba(0, 255, 65, 0.8);
        box-shadow: 0 0 18px rgba(0, 255, 65, 0.4);
    }
}

@keyframes fraud-icon-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.fraud-premium-btn .pulse-ping {
    position: absolute;
    inset: -4px;
    border-radius: 999px;
    border: 2px solid rgba(255, 68, 68, 0.4);
    animation: fraud-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    z-index: -1;
}

@keyframes fraud-ping {
    0% {
        transform: scale(1);
        opacity: 0.6;
        border-color: rgba(255, 68, 68, 0.5);
    }

    50% {
        border-color: rgba(0, 255, 65, 0.5);
    }

    75%,
    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

/* Waitlist Popup Modal */
.waitlist-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.waitlist-modal.active {
    display: flex;
    opacity: 1;
}

.waitlist-modal-content {
    position: relative;
    width: 100%;
    max-width: 480px;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(128, 0, 255, 0.95) 0%, rgba(112, 0, 224, 0.95) 100%);
    border-radius: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 80px rgba(128, 0, 255, 0.4), 0 0 60px rgba(0, 209, 255, 0.2);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.waitlist-modal.active .waitlist-modal-content {
    transform: scale(1) translateY(0);
}

.waitlist-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.waitlist-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
}

.waitlist-modal h3 {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    text-align: center;
}

.waitlist-modal p {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.waitlist-modal form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.waitlist-modal input[type="email"] {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: white;
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.waitlist-modal input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.waitlist-modal input[type="email"]:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
}

.waitlist-modal input[type="email"]:focus {
    border-color: #00D1FF;
    box-shadow: 0 0 20px rgba(0, 209, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.15);
}

.waitlist-modal select {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: white;
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 1.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.waitlist-modal select:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
}

.waitlist-modal select:focus {
    border-color: #00D1FF;
    box-shadow: 0 0 20px rgba(0, 209, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.15);
}

.waitlist-modal select option {
    background: #7000e0;
    color: white;
    padding: 1rem;
    font-weight: 600;
    border-radius: 0;
}

.waitlist-modal select option:hover,
.waitlist-modal select option:checked {
    background: linear-gradient(to right, #8000ff, #00D1FF);
}

.waitlist-modal button[type="submit"] {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #00D1FF, #FF0080);
    border: none;
    border-radius: 999px;
    color: white;
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.waitlist-modal button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 209, 255, 0.4);
}

.waitlist-modal .success-message {
    display: none;
    text-align: center;
    padding: 2rem;
}

.waitlist-modal .success-message.show {
    display: block;
}

.waitlist-modal .success-message i {
    width: 4rem;
    height: 4rem;
    color: #00ff41;
    margin-bottom: 1rem;
}

.waitlist-modal .success-message h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.waitlist-modal .success-message p {
    color: rgba(255, 255, 255, 0.7);
}