/* CSS Version 2.0 - Force Refresh */
/* Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Mobile touch optimization */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Ensure images and media are responsive */
img, video, svg {
    max-width: 100%;
    height: auto;
}

/* Improve mobile button interactions */
button, .btn, a {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    touch-action: manipulation;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================================================
   COLOR VARIABLES & THEME SYSTEM
   ============================================================================ */

:root {
    /* Brand Colors */
    --primary-color: #14B8A6;
    --secondary-color: #0891B2;
    --accent-color: #06B6D4;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #14B8A6 0%, #0891B2 100%);
    --hero-gradient: linear-gradient(135deg, #14B8A6 0%, #0891B2 50%, #06B6D4 100%);
    --card-gradient: linear-gradient(145deg, rgba(20, 184, 166, 0.1) 0%, rgba(8, 145, 178, 0.1) 100%);
    
    /* Light Theme (Default) */
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --background: #ffffff;
    --background-secondary: #f8fafc;
    --background-tertiary: #f1f5f9;
    --surface: #ffffff;
    --surface-elevated: #ffffff;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --navbar-bg: rgba(255, 255, 255, 0.95);
    --navbar-scrolled: rgba(255, 255, 255, 0.98);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Interactive */
    --hover-transform: translateY(-2px);
    --card-hover-transform: translateY(-8px);
    --button-hover-scale: scale(1.05);
}

/* System Dark Theme Support - Only applies when no explicit data-theme is set */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme]) {
        --text-primary: #f8fafc;
        --text-secondary: #cbd5e1;
        --text-muted: #94a3b8;
        --background: #0f172a;
        --background-secondary: #1e293b;
        --background-tertiary: #334155;
        --surface: #1e293b;
        --surface-elevated: #334155;
        --border: #334155;
        --border-light: #475569;
        --navbar-bg: rgba(15, 23, 42, 0.95);
        --navbar-scrolled: rgba(15, 23, 42, 0.98);
        
        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
        --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
        --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
        
        --hover-transform: translateY(-2px) scale(1.02);
        --card-hover-transform: translateY(-8px) scale(1.02);
    }
    
    :root:not([data-theme]) .sun-icon {
        display: block;
    }
    
    :root:not([data-theme]) .moon-icon {
        display: none;
    }
}

/* Dark Theme */
[data-theme="dark"] {
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --background: #0f172a;
    --background-secondary: #1e293b;
    --background-tertiary: #334155;
    --surface: #1e293b;
    --surface-elevated: #334155;
    --border: #334155;
    --border-light: #475569;
    --navbar-bg: rgba(15, 23, 42, 0.95);
    --navbar-scrolled: rgba(15, 23, 42, 0.98);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    
    --hover-transform: translateY(-2px) scale(1.02);
    --card-hover-transform: translateY(-8px) scale(1.02);
}

/* ============================================================================
   NETWORK BANNER
   ============================================================================ */

.network-banner {
    background: var(--primary-gradient);
    color: white;
    padding: 0.75rem 0;
    position: relative;
    overflow: hidden;
}

.network-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

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

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.banner-cta {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.banner-cta:hover {
    opacity: 0.8;
}

/* ============================================================================
   NAVIGATION
   ============================================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--navbar-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: var(--navbar-scrolled);
    box-shadow: var(--shadow-lg);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.logo {
    width: 32px;
    height: 32px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
    justify-content: center;
    margin: 0 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(20, 184, 166, 0.1);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(20, 184, 166, 0.15);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

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

/* Hide mobile menu actions on desktop */
.mobile-menu-actions {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: 0.3s ease;
    border-radius: 2px;
}

.hamburger span:not(:last-child) {
    margin-bottom: 4px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Theme Toggle */
.theme-toggle {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background: var(--background-secondary);
    transform: translateY(-1px);
}

.theme-icon {
    transition: all 0.3s ease;
    color: var(--text-primary);
}

/* Light theme - show moon, hide sun */
[data-theme="light"] .sun-icon {
    display: none;
}

[data-theme="light"] .moon-icon {
    display: block;
}

/* Dark theme - show sun, hide moon */
[data-theme="dark"] .sun-icon {
    display: block;
}

[data-theme="dark"] .moon-icon {
    display: none;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: var(--hover-transform);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: var(--hover-transform);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ============================================================================
   THEME TOGGLE
   ============================================================================ */

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: var(--background-secondary);
    color: var(--primary-color);
}

.theme-icon {
    width: 20px;
    height: 20px;
}

/* Theme Toggle Icons */
.theme-icon {
    display: none;
}

/* Default theme icons - show moon (for light theme) */
.sun-icon {
    display: none;
}

.moon-icon {
    display: block;
}

/* Explicit theme overrides - these have higher specificity than system preferences */
[data-theme="dark"] .sun-icon {
    display: block !important;
}

[data-theme="dark"] .moon-icon {
    display: none !important;
}

[data-theme="light"] .sun-icon {
    display: none !important;
}

[data-theme="light"] .moon-icon {
    display: block !important;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-gradient);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(20, 184, 166, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 184, 166, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--surface-elevated);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-light);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banking-interface {
    background: var(--surface-elevated);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border-light);
    max-width: 400px;
    width: 100%;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    animation: interfaceFloat 4s ease-in-out infinite;
}

@keyframes interfaceFloat {
    0%, 100% { transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(-10px); }
}

.interface-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.interface-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green { background: #10B981; }

.interface-title {
    font-weight: 600;
    color: var(--text-primary);
}

.balance-card {
    background: var(--card-gradient);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-light);
}

.balance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.balance-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.balance-currency {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.balance-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.balance-change {
    font-size: 0.9rem;
    font-weight: 600;
}

.balance-change.positive {
    color: var(--success-color);
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.action-icon {
    font-size: 1.5rem;
}

.action-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ============================================================================
   FEATURES SECTION
   ============================================================================ */

.features {
    padding: 6rem 0;
    background: var(--background-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: var(--card-hover-transform);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================================
   HOW IT WORKS SECTION
   ============================================================================ */

.how-it-works {
    padding: 6rem 0;
    background: var(--background);
}

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

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-gradient);
    opacity: 0.2;
    z-index: -1;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================================
   COMING SOON SECTION
   ============================================================================ */

.coming-soon {
    padding: 6rem 0;
    background: var(--background-secondary);
    position: relative;
    overflow: hidden;
}

.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--card-gradient);
    opacity: 0.5;
}

.coming-soon-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.coming-soon-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.countdown-timer {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.time-unit {
    background: var(--surface);
    padding: 1.5rem 1rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-light);
    min-width: 80px;
}

.time-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.time-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Early Access CTA (Landing Page) */
.early-access-cta {
    background: var(--surface);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.early-access-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.early-access-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.5;
}

.cta-action {
    margin: 2.5rem 0;
}

.signup-cta-btn {
    font-size: 1.2rem;
    padding: 1.25rem 3rem;
    background: var(--primary-gradient);
    border: none;
    border-radius: 16px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
}

.signup-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(20, 184, 166, 0.4);
    color: white;
}

.quick-benefits {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.quick-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 1rem;
}

.quick-benefit .benefit-icon {
    font-size: 1.3em;
}

.cta-note {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 2rem;
    font-weight: 500;
}

/* Enhanced Waitlist Form (Signup Page) */
.early-access-form {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.early-access-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.social-proof {
    text-align: center;
    margin-bottom: 2rem;
}

.waitlist-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    animation: pulse-glow 3s ease-in-out infinite;
}

.count-number {
    font-size: 1.3em;
    font-weight: 800;
    color: var(--accent-color);
}

@keyframes pulse-glow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 rgba(20, 184, 166, 0.3);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 0 20px rgba(20, 184, 166, 0.4);
    }
}

.early-access-form h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.enhanced-form-group {
    margin-bottom: 2rem;
}

.email-input-container {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.email-input-container:focus-within {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1), 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.email-input-container input[type="email"] {
    flex: 1;
    border: none;
    background: transparent;
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    outline: none;
    color: var(--text-primary);
}

.email-input-container input[type="email"]::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.enhanced-btn {
    border: none;
    background: var(--primary-gradient);
    padding: 1.25rem 2.5rem;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: white;
    text-transform: none;
}

.enhanced-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

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

.enhanced-btn:hover {
    transform: translateX(1px);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
}

.benefits-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.benefit-icon {
    font-size: 1.2em;
}

.trust-signals {
    text-align: center;
    margin-top: 2rem;
}

.privacy-notice {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background: rgba(var(--text-muted-rgb), 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(20, 184, 166, 0.1);
    color: var(--primary-color);
}

/* Success message enhancement */
.form-message.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    font-weight: 600;
    text-align: center;
    animation: slideInUp 0.4s ease;
    font-size: 1rem;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Legacy form styles (kept for compatibility) */
.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input {
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    background: var(--surface);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-notice {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* ============================================================================
   RESPONSIVE DESIGN - COMPREHENSIVE MOBILE FIRST APPROACH
   ============================================================================ */

/* Large Desktop (1200px+) - Default styles above */

/* Desktop/Laptop (1024px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 1000px;
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .nav-menu {
        gap: 2rem;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        order: 1 !important;
    }
    
    .hero-visual {
        order: 2 !important;
    }
    
    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .steps-container {
        gap: 2rem;
    }
    
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Tablet Portrait & Mobile Landscape (481px - 767px) */
@media (max-width: 767px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile Portrait & Small Devices (320px - 480px) */
@media (max-width: 480px) {
    /* Fix navbar covering content - TEST VERSION */
    body {
        padding-top: 70px !important;
        background-color: var(--background) !important;
    }
    
    .navbar {
        height: 70px;
        display: flex;
        align-items: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid var(--border);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        margin: 0;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        pointer-events: none;
        box-shadow: var(--shadow-xl);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
        text-align: center;
        border-radius: 12px;
        display: block;
        width: 100%;
        border: 1px solid var(--border-light);
        background: var(--background-secondary);
    }
    
    .nav-link:hover {
        background: var(--primary-color);
        color: white;
        transform: none;
    }
    
    /* Keep nav-actions in header on mobile */
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .nav-actions .btn {
        display: none; /* Hide buttons, keep theme toggle */
    }
    
    .hamburger {
        display: flex !important;
        z-index: 1001;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        padding: 2rem 0 4rem;
        text-align: center;
        margin-top: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        /* Force layout update - v2 */
    }
    
    .hero-text {
        order: 1 !important; /* Force text to appear first on mobile */
    }
    
    .hero-visual {
        order: 2 !important; /* Force image to appear second on mobile */
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin: 1.5rem 0;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .steps-container {
        gap: 2rem;
    }
    
    .step-item {
        text-align: center;
    }
    
    .coming-soon-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .countdown-timer {
        justify-content: center;
        gap: 1rem;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}
    .early-access-form {
        padding: 2rem 1.5rem;
    }
    
    .email-input-container {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .enhanced-btn {
        border-radius: 0 0 10px 10px;
        padding: 1.25rem;
    }
    
    .benefits-list {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .waitlist-counter {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .early-access-form h3 {
        font-size: 1.5rem;
    }
}

/* Dark mode support */
[data-theme="dark"] .email-input-container {
    background: var(--bg-secondary);
    border-color: var(--border);
}

[data-theme="dark"] .email-input-container input[type="email"] {
    color: var(--text-primary);
}

[data-theme="dark"] .email-input-container input[type="email"]::placeholder {
    color: var(--text-muted);
}

[data-theme="dark"] .trust-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

[data-theme="dark"] .trust-badge:hover {
    background: rgba(20, 184, 166, 0.2);
    color: var(--primary-color);
}

.coming-soon-features h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-text {
    font-weight: 600;
    color: var(--text-primary);
}

/* ============================================================================
   COMMUNITY SECTION
   ============================================================================ */

.community {
    padding: 6rem 0;
    background: var(--background);
}

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

.community-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    overflow: hidden;
}

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

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

.community-card:hover {
    transform: var(--card-hover-transform);
    box-shadow: var(--shadow-xl);
}

.community-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.community-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.community-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.footer {
    background: var(--background-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-light);
}

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

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.footer-logo {
    width: 32px;
    height: 32px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
}

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

.footer-social a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
}

/* ============================================================================
   RESPONSIVE DESIGN - CONSOLIDATED MOBILE STYLES
   ============================================================================ */

/* Small Mobile Phones */
@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .nav-brand span {
        display: none;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-actions .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        gap: 0.75rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .time-unit {
        min-width: 60px;
    }
    
    .time-number {
        font-size: 1.5rem;
    }
    
    .time-label {
        font-size: 0.7rem;
    }
    
    .waitlist-form-container {
        padding: 1.5rem 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .waitlist-input {
        border-radius: 12px;
    }
    
    .waitlist-btn {
        border-radius: 12px;
        width: 100%;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .coming-soon-title {
        font-size: 2rem;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .time-unit {
        min-width: 60px;
    }
}

/* ============================================================================
   COMMUNITY SECTION
   ============================================================================ */

.community {
    padding: 6rem 0;
    background: var(--background);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.community-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.community-card:hover {
    transform: var(--card-hover-transform);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

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

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

.community-icon {
    width: 64px;
    height: 64px;
    background: var(--card-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.community-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.community-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.footer {
    background: var(--background-secondary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-light);
}

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

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.footer-logo {
    width: 32px;
    height: 32px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 400px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================================================
   MOBILE RESPONSIVE STYLES
   ============================================================================ */

/* Tablet and below */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    /* Fix navbar covering content */
    body {
        padding-top: 80px; /* Add space for fixed navbar */
    }
    
    .navbar {
        padding: 0;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
        position: relative;
    }
    
    /* Mobile navigation menu */
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface);
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 2rem 1rem;
        box-shadow: var(--shadow-xl);
        border-top: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 1rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Mobile menu buttons - hidden on desktop */
    .mobile-menu-actions {
        display: none;
    }
    
    /* Show mobile menu actions only when menu is active */
    .nav-menu.active .mobile-menu-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-light);
        margin-top: 1rem;
        width: 100%;
    }
    
    .nav-menu.active .mobile-menu-actions .btn {
        justify-content: center;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Hamburger menu */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }
    
    .hamburger span {
        width: 24px;
        height: 2px;
        background: var(--text-primary);
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Keep theme toggle in header, hide other buttons on mobile */
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .nav-actions .btn {
        display: none; /* Hide buttons on mobile */
    }
    
    .theme-toggle {
        display: flex; /* Keep theme toggle visible in header */
        margin-left: auto;
    }
    
    /* Hero section mobile fixes */
    .hero {
        padding: 4rem 0 3rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .hero-actions {
        justify-content: center;
        gap: 1rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Banking interface mobile */
    .banking-interface {
        transform: none;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .action-item {
        padding: 0.75rem;
    }
    
    .action-icon {
        font-size: 1.25rem;
    }
    
    .action-text {
        font-size: 0.75rem;
    }
    
    /* Features section mobile */
    .features {
        padding: 4rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Section spacing */
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    /* Steps mobile */
    .steps-container {
        gap: 2rem;
    }
    
    .step-item {
        text-align: center;
    }
    
    /* Coming soon mobile */
    .coming-soon {
        padding: 4rem 0;
    }
    
    .coming-soon-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .countdown-timer {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .time-unit {
        min-width: 70px;
    }
    
    .waitlist-form-container {
        padding: 2rem 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .waitlist-input {
        width: 100%;
    }
    
    .waitlist-btn {
        width: 100%;
    }
    
    /* Community mobile */
    .community {
        padding: 4rem 0;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .community-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .community-icon {
        margin: 0 auto 1rem;
        width: 56px;
        height: 56px;
    }
    
    .community-name {
        font-size: 1.1rem;
    }
    
    .community-description {
        font-size: 0.9rem;
    }
    
    /* Footer mobile */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-main {
        text-align: center;
        gap: 1rem;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-description {
        max-width: none;
        font-size: 0.9rem;
    }
    
    .footer-social {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .footer-social a {
        width: 36px;
        height: 36px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        text-align: center;
    }
    
    .footer-column {
        gap: 0.5rem;
    }
    
    .footer-column h4 {
        margin-bottom: 0.75rem;
        font-size: 0.95rem;
    }
    
    .footer-column a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    /* Small mobile adjustments */
    .community-grid {
        gap: 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .footer-social {
        gap: 0.5rem;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    body {
        padding-top: 70px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    .nav-brand {
        font-size: 1.1rem;
    }
    
    .logo {
        width: 28px;
        height: 28px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .balance-amount {
        font-size: 1.5rem;
    }
    
    .quick-actions {
        gap: 0.5rem;
    }
    
    .action-item {
        padding: 0.5rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .time-number {
        font-size: 1.25rem;
    }
    
    .time-label {
        font-size: 0.7rem;
    }
}

/* ============================================================================
   ANIMATIONS & TRANSITIONS
   ============================================================================ */

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Selection colors */
::selection {
    background: var(--primary-color);
    color: white;
}

::-moz-selection {
    background: var(--primary-color);
    color: white;
}

/* Focus styles */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.hidden { display: none; }
.visible { display: block; }

/* ============================================================================
   SIMPLE WAITLIST FORM STYLES
   ============================================================================ */

.waitlist-form {
    margin: 2rem 0;
}

.waitlist-form-container {
    max-width: 500px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 0;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.form-row:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1), var(--shadow-xl);
    transform: translateY(-2px);
}

.waitlist-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    outline: none;
    color: var(--text-primary);
}

.waitlist-input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.waitlist-btn {
    background: var(--primary-gradient);
    border: none;
    padding: 1rem 2rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    min-width: 150px;
}

.waitlist-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

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

.waitlist-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.4);
}

.waitlist-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    text-align: center;
    font-weight: 500;
    min-height: 1.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-message.success {
    color: var(--success-color);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-message.error {
    color: var(--error-color);
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Dark theme support for waitlist form */
[data-theme="dark"] .form-row {
    background: var(--surface);
    border-color: var(--border);
}

[data-theme="dark"] .waitlist-input {
    color: var(--text-primary);
}

[data-theme="dark"] .waitlist-input::placeholder {
    color: var(--text-muted);
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .time-unit {
        min-width: 50px;
    }
    
    .time-number {
        font-size: 1.25rem;
    }
}

/* Landscape Mobile Phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 4rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .nav-menu.active {
        padding: 1rem 2rem;
        gap: 1rem;
    }
}

/* Large Screens and Desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Enhanced Mobile Waitlist Form */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .waitlist-btn {
        border-radius: 0 0 10px 10px;
        padding: 1.25rem 2rem;
    }
    
    .waitlist-input {
        padding: 1.25rem 1.5rem;
    }
}
/* ====
========================================================================
   EXTRA SMALL MOBILE DEVICES (320px - 479px)
   ============================================================================ */

@media (max-width: 479px) {
    /* Ultra-compact mobile styles */
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .nav-brand {
        font-size: 1.1rem;
    }
    
    .logo {
        width: 28px;
        height: 28px;
    }
    
    /* Hero section ultra-mobile */
    .hero {
        padding: 1.5rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        margin: 1rem 0;
    }
    
    .hero-stats {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-actions {
        gap: 0.75rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* Banking interface mobile */
    .banking-interface {
        padding: 1rem;
        transform: none;
    }
    
    .balance-amount {
        font-size: 1.5rem;
    }
    
    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .action-item {
        padding: 0.75rem 0.5rem;
    }
    
    .action-icon {
        font-size: 1.25rem;
    }
    
    .action-text {
        font-size: 0.75rem;
    }
    
    /* Sections ultra-mobile */
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .feature-card {
        padding: 1.25rem 1rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    /* Steps ultra-mobile */
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    /* Coming soon ultra-mobile */
    .coming-soon-title {
        font-size: 1.75rem;
    }
    
    .countdown-timer {
        gap: 0.75rem;
    }
    
    .time-unit {
        min-width: 60px;
    }
    
    .time-number {
        font-size: 1.25rem;
    }
    
    .time-label {
        font-size: 0.7rem;
    }
    
    .waitlist-form-container {
        padding: 1.5rem 1rem;
    }
    
    .waitlist-input {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    .waitlist-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* Community ultra-mobile */
    .community-card {
        padding: 1.25rem 1rem;
    }
    
    .community-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
    
    .community-name {
        font-size: 1.1rem;
    }
    
    .community-description {
        font-size: 0.85rem;
    }
    
    /* Footer ultra-mobile */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-brand {
        font-size: 1.1rem;
    }
    
    .footer-logo {
        width: 28px;
        height: 28px;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .footer-social {
        gap: 0.5rem;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .footer-column h4 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-column a {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

/* ============================================================================
   LANDSCAPE ORIENTATION FIXES
   ============================================================================ */

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 1rem 0 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        margin: 1rem 0;
    }
    
    .nav-menu {
        max-height: calc(100vh - 60px);
        padding: 1rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
    }
}

/* ============================================================================
   HIGH DPI / RETINA DISPLAY OPTIMIZATIONS
   ============================================================================ */

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo, .footer-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .banking-interface {
        box-shadow: var(--shadow-2xl);
    }
}

/* ============================================================================
   ACCESSIBILITY & REDUCED MOTION
   ============================================================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .gradient-orb {
        animation: none;
    }
    
    .banking-interface {
        animation: none;
        transform: none;
    }
}

/* ============================================================================
   PRINT STYLES
   ============================================================================ */

@media print {
    .navbar, .hamburger, .theme-toggle {
        display: none !important;
    }
    
    body {
        padding-top: 0 !important;
    }
    
    .hero-background {
        display: none;
    }
    
    .hero, .features, .community, .footer {
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        color: #000 !important;
    }
    
    .section-title {
        font-size: 1.5rem;
        color: #000 !important;
    }
    
    .btn {
        border: 1px solid #000 !important;
        background: transparent !important;
        color: #000 !important;
    }
}