:root {
    /* Cosmic Nebula Palette - Darker & Deeper */
    --nebula-core: #ffccf0;
    /* Dimmed Pink Core */
    --nebula-glow: #bd33ce;
    /* Darker Magenta */
    --nebula-deep: #4a125e;
    /* Deepest Purple */
    --space-void: #010108;
    /* Near-Black Void */

    /* Functional Mappings */
    --bg-dark: var(--space-void);
    --bg-darker: var(--space-void);

    --primary: #d946ef;
    --primary-dim: rgba(217, 70, 239, 0.2);
    --secondary: #22d3ee;
    /* Cyan accent for contrast */
    --accent-purple: #a855f7;

    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.9);

    /* Glass Strategy */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.15);
    --neon-glow: 0 0 20px rgba(217, 70, 239, 0.4);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: transparent;
    /* Was var(--bg-dark), blocking the view */
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* Ensure stacking context */
}

/* Background Effects - Significantly Enhanced Visibility */
.stars-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient: New Reference #30083e -> Deep Void */
    background: linear-gradient(135deg, #30083e 0%, #1a052b 40%, #000000 100%);
    z-index: -3;
    animation: nebula-shift 30s ease-in-out infinite alternate;
}

@keyframes nebula-shift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Visible layer above deep background */
    pointer-events: none;
    /* Let clicks pass through */
}

@keyframes nebula-pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.02);
    }
}

/* Typography */
h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    color: var(--text-main);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.region-card {
    /* Base styles now handled in Global Section block */
    text-align: left;
    transition: transform 0.3s ease;
}

.region-card h4 {
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    /* Slightly smaller header */
}

.region-card p {
    font-size: 0.9rem;
    /* Slightly smaller text */
    margin-bottom: 0;
}

p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

section {
    padding: 6rem 0;
}

/* Glassmorphism */
.glass-card,
.glass-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 30px rgba(238, 130, 238, 0.25), inset 0 0 20px rgba(238, 130, 238, 0.1);
    border-color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--amethyst), var(--secondary));
    color: #fff;
    box-shadow: 0 0 25px rgba(157, 0, 255, 0.6);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(238, 130, 238, 0.8);
    transform: translateY(-2px);
    background: linear-gradient(90deg, var(--primary), var(--accent-purple));
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    color: #fff;
}

.btn-glow {
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 15px rgba(238, 130, 238, 0.4);
    }

    50% {
        box-shadow: 0 0 25px rgba(238, 130, 238, 0.7);
    }

    100% {
        box-shadow: 0 0 15px rgba(238, 130, 238, 0.4);
    }
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(18, 18, 37, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.2rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(110deg, #fff 20%, var(--primary) 40%, var(--secondary) 60%, #fff 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
    position: relative;
    padding-left: 25px;
    /* Changed from right to left */
    animation: logo-shimmer 3s linear infinite;
}

@keyframes logo-shimmer {
    to {
        background-position: 200% center;
    }
}

.logo::before {
    /* Changed from ::after to ::before */
    content: '✦';
    position: absolute;
    left: 0;
    /* Changed from right to left */
    top: -5px;
    color: var(--secondary);
    font-size: 1.4rem;
    animation: blink-sparkle 2s infinite;
    -webkit-text-fill-color: var(--secondary);
    text-shadow: 0 0 15px var(--secondary);
}

@keyframes blink-sparkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8) rotate(180deg);
    }
}

.logo-dot {
    color: var(--secondary);
    -webkit-text-fill-color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e0e0e0;
}

.nav-links a:not(.btn):hover {
    color: #fff;
    text-shadow: 0 0 10px var(--primary);
}

.nav-links a[href="#contact"] {
    border: 1px solid var(--primary);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    color: var(--primary);
    font-weight: 700;
    transition: 0.3s;
    background: rgba(255, 0, 255, 0.05);
}

.nav-links a[href="#contact"]:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px var(--primary);
    -webkit-text-fill-color: white;
    text-shadow: none;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    /* Above mobile menu */
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden off-screen */
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 20, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
        /* Slide in */
    }

    .mobile-menu-btn {
        display: flex;
        /* Show hamburger on mobile */
    }
}

/* Waitlist Widget (Fixed Position) */
.hero-capture {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 2000;
    width: 380px;
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(18, 18, 37, 0.85);
    /* Slightly darker/opaque for readability over other content */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    animation: slide-in-corner 1s ease-out forwards;
}

@keyframes slide-in-corner {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments for Widget */
@media (max-width: 768px) {
    .hero-capture {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        /* Center it */
        width: auto;
        /* Allow it to fill */
        padding: 1.2rem;
    }
}

.capture-title {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.capture-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.capture-form input {
    flex: 1;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    font-family: inherit;
    outline: none;
}

.capture-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(217, 70, 239, 0.3);
}

.btn-sm {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 8px;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    font-weight: 600;
    background: var(--primary);
    color: white;
    transition: 0.3s;
}

.btn-sm:hover {
    box-shadow: 0 0 15px var(--primary);
    transform: translateY(-2px);
}

.capture-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    text-align: center;
    /* Center on mobile/tablet */
}

.hero-sub {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    /* Center margin on mobile */
    color: var(--text-muted);
    line-height: 1.6;
}

@media (min-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        /* Left on desktop */
    }

    .hero-sub {
        margin: 0 0 2.5rem 0;
        /* Left align margin on desktop */
    }
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-content {
    text-align: left;
    /* Explicitly align left */
}

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

/* Restored CSS for Emoji Visuals (Matches Screenshot) */
.step-visual {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    filter: drop-shadow(0 0 15px var(--secondary));
}

.ai-icon-placeholder {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 20px rgba(238, 130, 238, 0.2);
    color: #fff;
    font-size: 3rem;
}

.metric-icon {
    font-size: 1.5rem;
    margin-right: 0.8rem;
    color: var(--primary);
    filter: drop-shadow(0 0 5px var(--primary));
}

/* Contact content alignment */
.contact-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-sub {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* New Image Styling & Alignment Fixes */
.hero-visual-container,
.step-image-container,
.system-icon,
.global-visual-container,
.features-visual-container,
.market-chart-container,
.invest-visual-container,
.contact-visual-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-visual-container img {
    max-width: 100%;
    max-height: 500px;
    /* Prevent over-sizing on large screens */
    width: auto;
    filter: drop-shadow(0 0 30px rgba(157, 0, 255, 0.4));
    animation: float-hero 6s ease-in-out infinite;
}

@keyframes float-hero {

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

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

.step-image-container img {
    height: 120px;
    width: auto;
    margin-bottom: 1.5rem;
}

.system-icon img {
    width: 64px;
    height: 64px;
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease;
}

.system-card:hover .system-icon img {
    transform: scale(1.1) rotate(5deg);
}

.global-header-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

@media (min-width: 900px) {

    /* Reverted to centered column layout per request */
    .global-header-layout {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .global-header-layout {
        max-width: 1000px;
        margin: 0 auto 4rem;
    }
}

.global-visual-container img {
    max-width: 220px;
    /* Reduced from 300px */
    width: 100%;
    margin-bottom: 0;
    /* Remove bottom margin in this layout */
}

.features-visual-container img {
    max-width: 150px;
    margin-bottom: 2rem;
}

.market-chart-container img,
.invest-visual-container img,
.contact-visual-container img {
    max-width: 100%;
    border-radius: 12px;
    margin: 1.5rem 0;
}

/* Ensure Text Center Alignment for Cards */
.step-card,
.system-card,
.feature-card,
.glass-panel {
    text-align: center;
    display: flex;
    flex-direction: column;
    /* Ensure vertical stacking */
    align-items: center;
    /* Horizontally center content in column */
}

/* Specific left-align override if needed for investor text, but center images */
.glass-panel p,
.glass-panel ul {
    text-align: left;
    width: 100%;
}

.glass-panel h3 {
    text-align: center;
    width: 100%;
}


/* About / How it works */
.feature-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

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

.step-visual {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    filter: drop-shadow(0 0 15px var(--secondary));
}

.metrics-strip {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile first */
    gap: 1.5rem;
    background: rgba(15, 12, 25, 0.95);
    border: 1px solid rgba(124, 58, 237, 0.5);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    margin-top: 3rem;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
    .metrics-strip {
        grid-template-columns: repeat(3, 1fr);
        /* Match steps-grid exactly */
        gap: 2rem;
        align-items: center;
    }
}

.metric-item {
    display: flex;
    justify-content: center;
    /* Center content within grid cell */
    align-items: center;
    gap: 0.8rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.metric-icon {
    font-size: 1.4rem;
    line-height: 1;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    /* Soft glow */
}

/* Specific styling for the icons to match image vibes */
/* Sparkle - Gold/Orange */
.metric-item:nth-child(1) .metric-icon {
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.6);
}

/* Target - Pink/Red */
.metric-item:nth-child(3) .metric-icon {
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.6);
}


/* Systems Section - Parallel & Compact */
.systems-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.system-card {
    flex: 0 1 140px;
    /* Small fixed width for compact row */
    padding: 1rem;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.system-icon img {
    width: 40px;
    /* Smaller images */
    height: 40px;
    margin-bottom: 0.8rem;
    filter: drop-shadow(0 0 10px rgba(157, 0, 255, 0.4));
}

.system-card h3 {
    font-size: 0.95rem;
    /* Compact text */
    margin-bottom: 0.3rem;
}

.system-card p {
    font-size: 0.8rem;
    line-height: 1.3;
    display: none;
    /* Hide description for cleaner "parallel" icon view, or strictly limit it */
}

/* Hover effect to show details if needed, or keep it simple */
.system-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

/* Global Section */
/* Global Section */
.regions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    width: 100%;
}

.region-card {
    padding: 1.5rem;
    text-align: center;
    /* Centered text as per ref image */
    transition: transform 0.3s ease;
    width: 100%;
    /* Reset width */
    margin: 0;
    /* Reset margin */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.region-card h4 {
    color: #fff;
    /* White title as per ref image */
    margin-bottom: 0.8rem;
    font-size: 1rem;
    font-weight: 700;
}

.region-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
}

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

@media (min-width: 1024px) {
    .regions-grid {
        grid-template-columns: repeat(4, 1fr);
        /* 4 Columns on large screens */
    }
}

/* Language Pills */
.languages-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    padding-top: 2rem;
}

.lang-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    cursor: default;
}

.lang-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-cyan);
    color: #fff;
    transform: translateY(-2px);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

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

.feature-card {
    padding: 1rem !important;
    /* Force reduce padding (was 2rem) */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: auto;
}

.feature-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.feature-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}


/* Investors */
.investor-content {
    display: grid;
    gap: 3rem;
}

@media (min-width: 900px) {
    .investor-content {
        grid-template-columns: 1fr 1fr;
        /* Default align-items is stretch, which ensures equal height */
    }
}

.market-list {
    list-style: none;
    /* We remove default and can add custom if needed, or keep default */
    padding: 0;
    margin: 1.5rem 0;
}

.market-list li {
    position: relative;
    padding-left: 1.5rem;
    /* Space for bullet */
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text-muted);
    display: block;
    /* Standard block for correct <br> behavior */
}

.market-list li strong {
    display: inline;
    /* Keep title inline with potential break */
}

.market-list li::before {
    content: '•';
    /* Simple bullet */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    line-height: 1rem;
    color: #fff;
}

.invest-visual-container img {
    margin: 0.5rem 0 !important;
    /* Force tight spacing */
}

/* Checklist with Graphic Ticks */
.check-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.check-list li {
    position: relative;
    padding-left: 2.2rem;
    margin-bottom: 0.7rem;
    /* Reduced spacing */
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text-muted);
    display: block;
    /* Standard block for correct <br> behavior */
}

.check-list li strong {
    display: inline;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2rem;
    width: 1.4rem;
    /* Larger tick */
    height: 1.4rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d946ef' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Modern Input Styling */
.form-group {
    position: relative;
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: rgba(10, 10, 20, 0.6);
    /* Darker semi-transparent bg */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    /* Smooth rounded corners */
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hover State */
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Focus State - The "Glow" */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: rgba(20, 5, 30, 0.8);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(217, 70, 239, 0.1), 0 0 20px rgba(217, 70, 239, 0.2);
    transform: translateY(-2px);
}

/* Custom Select Dropdown */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    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='%23d946ef' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1.2rem;
}

.form-group select option {
    background-color: #0f0518;
    /* Deep purple/black for options */
    color: #fff;
    padding: 1rem;
}

/* Placeholder Styling */
::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

/* Contact Section - Hidden Universe Style */
/* Contact Section - Side-by-Side with Boxed Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr 1fr;
        /* Image Left, Form Right */
    }
}

.contact-visual-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-visual-side img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 0 30px rgba(45, 212, 191, 0.2));
    animation: float-hero 6s ease-in-out infinite;
    /* Blend Mode */
    mix-blend-mode: lighten;
    mask-image: radial-gradient(circle at center, black 50%, transparent 95%);
    -webkit-mask-image: radial-gradient(circle at center, black 50%, transparent 95%);
}

.contact-box {
    /* Contains Header + Form */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-header h2 {
    margin-bottom: 0.5rem;
}

.contact-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.contact-form {
    background: transparent;
    padding: 0;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    text-align: left;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(217, 70, 239, 0.2);
}

.full-width {
    width: 100%;
}

@media (max-width: 768px) {
    .contact-box {
        padding: 1.5rem;
        /* Reduce padding on mobile */
    }
}

/* Investor FAQ Styles */
.investor-faq {
    width: 100%;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    padding: 0;
    /* Override glass-panel padding */
    text-align: left;
    /* Alignment override */
    align-items: stretch;
    /* Alignment override */
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    opacity: 0;
    transition: all 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Arbitrary large height */
    padding-bottom: 1.5rem;
    opacity: 1;
}

.faq-answer p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

.faq-answer ul {
    list-style-type: none;
    padding-left: 0.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.2rem;
}

.faq-answer li::before {
    content: "•";
    color: var(--secondary);
    position: absolute;
    left: 0;
    top: 0;
}



.contact-at-symbol {
    font-size: 5rem;
    color: var(--secondary);
    margin: 0.5rem 0;
    font-weight: bold;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
    animation: float-contact 4s ease-in-out infinite;
    line-height: 1;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@keyframes float-contact {

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

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

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Darker backdrop */
    backdrop-filter: blur(8px);
    z-index: 2100;
    /* Above Waitlist Widget (2000) */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Content */
.modal-content {
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.95) 0%, rgba(10, 10, 20, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 50px rgba(157, 0, 255, 0.3);
    /* Improve scrollbar for modal */
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) rgba(0, 0, 0, 0.3);
}

.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
    border-radius: 10px;
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: 0.3s;
}

.modal-close:hover {
    color: white;
    transform: rotate(90deg);
}

.modal-content .section-header {
    margin-bottom: 2rem;
}

/* Investor Buttons Layout */
.investor-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    width: 100%;
}

/* Force side-by-side on mobile with NO wrapping */
@media (max-width: 480px) {
    .investor-btns {
        flex-wrap: nowrap !important;
        /* STRICT NO WRAP */
        gap: 0.5rem !important;
        padding: 0 0.5rem;
        /* Ensure container has space */
    }

    .investor-btns .btn {
        flex: 1 1 0;
        /* Grow and shrink equally */
        padding: 0.8rem 0.2rem !important;
        /* Minimal padding */
        font-size: 0.75rem !important;
        /* Small text to fit */
        white-space: normal !important;
        /* Allow words to wrap inside if needed */
        line-height: 1.1;
        min-height: 44px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 50%;
        /* Explicit width share */
    }
}

/* Update Secondary Button - Better Visibility */
.btn-secondary {
    background: rgba(34, 211, 238, 0.1) !important;
    /* Ensure visibility */
    border: 1px solid var(--secondary);
    color: var(--secondary);
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.15);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(34, 211, 238, 0.25) !important;
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

/* Launch Overlay - Robust Visibility Fix */
#launch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    /* Solid fallback */
    background: radial-gradient(circle at center, #1a0b2e 0%, #000000 100%);
    z-index: 2147483647 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    text-align: center;
    overflow: hidden;
}

.launch-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.1);
    max-width: 600px;
    width: 90%;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.launch-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.launch-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-val {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: white;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Ensure form inside overlay is visible */
#launch-overlay .contact-form {
    margin-top: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Powered By Footer in Overlay */
.powered-by-link {
    position: absolute;
    bottom: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 10;
    letter-spacing: 1px;
}

.powered-by-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

.glow-text {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    animation: glow-pulse 2s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    0% {
        text-shadow: 0 0 5px rgba(34, 211, 238, 0.5), 0 0 10px rgba(34, 211, 238, 0.3);
    }

    100% {
        text-shadow: 0 0 20px rgba(34, 211, 238, 1), 0 0 30px rgba(217, 70, 239, 0.8), 0 0 40px rgba(217, 70, 239, 0.6);
    }
}