.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

.partners-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(1rem, 2vw, 1.5rem);
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    min-height: 120px;
    justify-content: center;
}

.partner-logo i {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--accent);
}

.partner-logo span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    text-align: center;
}

.partner-logo:hover {
    transform: translateY(-6px);
}

/* Base Styles & Variables */
:root {
    /* Light Theme */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9ff;
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a6a;
    --accent: #6366f1;
    --accent-light: #818cf8;
    --card-bg: rgba(255, 255, 255, 0.7);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --border-radius: 16px;
    --transition: all 0.3s ease;
    --glass: rgba(255, 255, 255, 0.7);
    --blur: blur(10px);
    --font-sf: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --gap-nav: 2.5rem;
    --gap-action: 2rem;
}

/* Dark Theme */
[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --card-bg: rgba(30, 41, 59, 0.6);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --glass: rgba(15, 23, 42, 0.7);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sf);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: var(--transition);
    overflow-x: hidden;
    position: relative;
}

.preloader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    z-index: 2000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    animation: float 2.5s ease-in-out infinite;
}

.grid-overlay {
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sf);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--accent);
    transition: var(--transition);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.container {
    width: min(1320px, 100%);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4.5rem);
    position: relative;
    z-index: 1;
}

/* Blob Background */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.15;
    transition: var(--transition);
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -200px;
    left: -200px;
    animation: float 25s ease-in-out infinite;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #8b5cf6;
    bottom: -100px;
    right: -100px;
    animation: float 30s ease-in-out infinite reverse;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #ec4899;
    top: 50%;
    right: 10%;
    animation: float 20s ease-in-out infinite alternate;
    opacity: 0.8;
}

.pre.floating-elements {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
}

.calendar-card {
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 220px;
    background: var(--card-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    z-index: 2;
}

[data-theme="dark"] .calendar-card {
    border-color: rgba(255, 255, 255, 0.1);
}

.calendar-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.calendar-meta {
    padding: 1rem;
}

.calendar-meta p {
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

.calendar-meta span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, 20px) rotate(5deg);
    }
    50% {
        transform: translate(0, 40px) rotate(0deg);
    }
    75% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

/* Header */
.header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: clamp(0.75rem, 2vw, 1.25rem) clamp(1rem, 3vw, 2rem);
    min-height: clamp(48px, 7vw, 60px);
    position: sticky;
    top: clamp(0.5rem, 2vw, 1.25rem);
    z-index: 900;
    column-gap: clamp(0.75rem, 2vw, 2rem);
    width: 100%;
    max-width: 100vw;
    background: rgba(255, 255, 255, 0.05);
    border-radius: clamp(12px, 2vw, 20px);
    border: 1px solid rgba(148,163,184,0.15);
    box-shadow: 0 8px 32px rgba(15,23,42,0.03);
    backdrop-filter: blur(16px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    margin: 0 clamp(1rem, 3vw, 2rem);
}

[data-theme="dark"] .header {
    background: rgba(15,23,42,0.25);
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.header.header--sticky {
    transform: translateY(-0.35rem);
    border-color: rgba(99,102,241,0.3);
    box-shadow: 0 12px 40px rgba(15,23,42,0.08);
    background: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .header.header--sticky {
    border-color: rgba(99,102,241,0.25);
    box-shadow: 0 12px 45px rgba(0,0,0,0.35);
    background: rgba(15,23,42,0.35);
}

.logo {
    font-family: var(--font-sf);
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    font-weight: 600;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: clamp(0.5rem, 2vw, 2rem);
    white-space: nowrap;
    min-width: fit-content;
}

.logo span {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--gap-nav);
    flex: 1;
    min-width: 0;
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding-right: clamp(0.5rem, 2vw, 2rem);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--gap-nav);
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--gap-action);
    margin-left: clamp(0.5rem, 1.5vw, 2rem);
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.nav-link {
    font-family: var(--font-sf);
    font-size: clamp(1rem, 0.7vw + 0.5rem, 1.2rem);
    letter-spacing: 1px;
    font-weight: 600;
}

.header .btn {
    font-family: var(--font-sf);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 1.85rem;
    flex-shrink: 0;
}

.nav-link {
    color: var(--text-primary);
    position: relative;
    padding: 0.25rem 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    font-weight: 700;
}

/* Theme Toggle */
.theme-toggle {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 999px;
    width: clamp(44px, 6vw, 48px);
    height: clamp(44px, 6vw, 48px);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-primary);
    flex-shrink: 0;
}

.theme-toggle i {
    font-size: 1rem;
    position: absolute;
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.3s ease, transform 0.35s ease, color 0.3s ease;
}

.theme-toggle i.active {
    opacity: 1;
    transform: scale(1);
}

[data-theme="dark"] .theme-toggle {
    background: rgba(148, 163, 184, 0.12);
    border-color: rgba(148, 163, 184, 0.35);
    color: var(--text-primary);
}

.toggle-icon {
    position: relative;
    width: clamp(24px, 3.5vw, 28px);
    height: clamp(24px, 3.5vw, 28px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.toggle-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251,191,36,0.6), transparent 60%);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.35s ease, transform 0.35s ease;
    filter: blur(1px);
}

.toggle-glow.active {
    opacity: 1;
    transform: scale(1);
    background: radial-gradient(circle, rgba(129,140,248,0.6), transparent 60%);
}

.theme-toggle:hover {
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.15);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    cursor: pointer;
    padding: 0.75rem;
    z-index: 1000;
    border-radius: 12px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: scale(1.05);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    gap: clamp(3rem, 5vw, 6rem);
    flex-wrap: nowrap;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(to right, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

.badge-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.badge-highlight {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.highlight {
    color: var(--accent);
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

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

.stat-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    min-width: 140px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.badge {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4), 0 2px 8px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge::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;
}

.badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5), 0 4px 12px rgba(139, 92, 246, 0.4);
}

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

.divider {
    color: var(--text-secondary);
    opacity: 0.6;
}

.status {
    color: var(--text-secondary);
    font-weight: 500;
}

.platforms {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.platform {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card-bg);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    font-weight: 500;
}

[data-theme="dark"] .platform {
    border-color: rgba(255, 255, 255, 0.1);
}

.platform i {
    font-size: 1.25rem;
    color: var(--accent);
}

.hero-image {
    position: relative;
    flex: 0 0 auto;
    margin-left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.hero-image-raw {
    width: 320px;
    height: auto;
    border-radius: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image-raw:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.25), 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.underline {
    height: 4px;
    width: 300px;
    background: var(--gradient);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.underline::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 4px;
    background: #ec4899;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        width: 30px;
        opacity: 1;
    }
    50% {
        width: 100px;
        opacity: 1.7;
    }
}
/* About Section */
.about {
    padding: clamp(4rem, 8vw, 7rem) 0;
    position: relative;
}

.card-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1rem, 2.5vw, 2.5rem);
    margin-top: 3rem;
}

.about-card {
    background: var(--card-bg);
    border-radius: clamp(20px, 3vw, 28px);
    border: 1px solid rgba(99, 102, 241, 0.15);
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.08);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
}

.about-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.about-card--metrics {
    background: linear-gradient(150deg, rgba(99,102,241,0.1), rgba(236,72,153,0.08));
}

.about-card--cta {
    background: linear-gradient(120deg, rgba(15,23,42,0.95), rgba(15,23,42,0.75));
    color: #f8fafc;
}

[data-theme="dark"] .about-card {
    border-color: rgba(148, 163, 184, 0.2);
}

.card-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    background: rgba(99,102,241,0.15);
    color: var(--accent);
    border-radius: 999px;
}

.pill-gradient {
    background: linear-gradient(120deg, #6366f1, #ec4899);
    color: #fff;
}

.about-card h3 {
    font-size: 1.5rem;
    line-height: 1.3;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.card-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.card-list i {
    color: var(--accent);
    background: rgba(99,102,241,0.1);
    padding: 0.4rem;
    border-radius: 10px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

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

.progress-panel {
    background: rgba(255,255,255,0.5);
    border-radius: 18px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
}

[data-theme="dark"] .progress-panel {
    background: rgba(15, 23, 42, 0.5);
    border-color: rgba(148, 163, 184, 0.2);
}

.progress-track {
    margin-top: 0.6rem;
    margin-bottom: 0.35rem;
    height: 8px;
    background: rgba(99,102,241,0.15);
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: inherit;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: flex-start;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.footer-brand,
.footer-links,
.footer-newsletter {
    text-align: left;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.3);
    display: grid;
    place-items: center;
    color: var(--text-secondary);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.social-links a:hover {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
}

.footer-bottom {
    margin: 1rem auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(148,163,184,0.2);
    padding: clamp(1rem, 2vw, 1.5rem) clamp(1.5rem, 4vw, 3rem) 0;
    max-width: 1200px;
}

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

.footer-legal a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--accent);
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    border: 1px solid rgba(148,163,184,0.4);
    border-radius: var(--border-radius);
    padding: 0.9rem 1rem;
}

.newsletter-form button {
    flex-shrink: 0;
    padding: 0.9rem 1.25rem;
}

.footer::before {
    content: '';
    position: absolute;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

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

.persona-columns h4 {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: auto;
}

/* Early Access */
.early-access {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.early-access-content {
    background: radial-gradient(circle at top right, rgba(99,102,241,0.2), transparent 55%), var(--card-bg);
    border-radius: clamp(32px, 5vw, 42px);
    padding: clamp(2rem, 4vw, 3.5rem);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(2rem, 4vw, 4rem);
    border: 1px solid rgba(99, 102, 241, 0.15);
    box-shadow: 0 35px 60px rgba(15, 23, 42, 0.12);
    position: relative;
    overflow: hidden;
}

.early-access-content::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,0.08);
    pointer-events: none;
}

.early-access-text {
    position: relative;
    z-index: 1;
}

.access-eyebrow {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

.pill-soft {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(99,102,241,0.12);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
}

.access-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 20px;
    border: 1px solid rgba(99,102,241,0.15);
    background: rgba(99,102,241,0.06);
    gap: 1rem;
}

.access-highlights .stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.access-highlights .stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.benefits-list i {
    color: #10b981;
    background: rgba(16,185,129,0.12);
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: grid;
    place-items: center;
}

.pricing-note {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    background: rgba(15, 23, 42, 0.05);
    padding: 1rem 1.25rem;
    border-radius: 16px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.pricing-note i {
    color: var(--accent);
    margin-top: 0.2rem;
}

.guarantee-card {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    background: rgba(15,23,42,0.08);
    border: 1px solid rgba(15,23,42,0.12);
}

.guarantee-card i {
    font-size: 1.25rem;
    color: var(--accent);
}

.guarantee-card p {
    margin: 0.15rem 0 0;
    color: var(--text-secondary);
}

.early-access-form .form-container {
    background: var(--bg-primary);
    border-radius: clamp(24px, 4vw, 28px);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.15);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    inset: 10% 15%;
    background: radial-gradient(circle, rgba(99,102,241,0.18), transparent 60%);
    filter: blur(60px);
    z-index: 0;
}

.form-container > * {
    position: relative;
    z-index: 1;
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99,102,241,0.08);
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.form-rating i {
    color: #fbbf24;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.85);
    font-size: 1rem;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.btn-block {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    gap: 0.5rem;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 0.5rem;
}

.form-security {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.form-security i {
    color: var(--accent);
}

[data-theme="dark"] .early-access-content {
    background: radial-gradient(circle at top right, rgba(59,130,246,0.25), transparent 55%), rgba(15,23,42,0.85);
    border-color: rgba(255,255,255,0.08);
}

[data-theme="dark"] .access-highlights {
    border-color: rgba(255,255,255,0.08);
    background: rgba(99,102,241,0.12);
}

[data-theme="dark"] .pricing-note {
    background: rgba(15,23,42,0.6);
    border-color: rgba(255,255,255,0.08);
}

[data-theme="dark"] .guarantee-card {
    background: rgba(148,163,184,0.08);
    border-color: rgba(255,255,255,0.1);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select {
    background: rgba(15,23,42,0.6);
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.12);
}

[data-theme="dark"] .form-container {
    border-color: rgba(255,255,255,0.05);
}

/* FAQ */
.faq-container {
    display: grid;
    gap: 1.5rem;
    max-width: 920px;
    margin: 0 auto 3rem;
}

.faq-item {
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 24px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 25px 50px rgba(15,23,42,0.08);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.faq-item.active {
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 35px 60px rgba(15,23,42,0.15);
    transform: translateY(-2px);
}

[data-theme="dark"] .faq-item {
    background: rgba(15,23,42,0.85);
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 25px 50px rgba(0,0,0,0.45);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 1.5rem 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    cursor: pointer;
}

.question-meta {
    flex: 1;
    text-align: left;
}
.question-meta h4 {
    margin: 0.35rem 0 0;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.question-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.8px;
    color: var(--text-secondary);
    font-weight: 600;
    
}

.badge-soft {
    background: rgba(99,102,241,0.12);
    color: var(--accent);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.question-icons {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.faq-question i {
    transition: transform var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding var(--transition);
    padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
    max-height: 700px;
    padding-bottom: 1.75rem;
}

.faq-answer p {
    color: var(--text-secondary);
}

.answer-list {
    margin: 1rem 0;
    display: grid;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
}

.answer-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-secondary);
}

.answer-list i {
    color: var(--accent);
}

.faq-actions {
    margin-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.faq-more {
    background: rgba(99,102,241,0.12);
    color: var(--accent);
    border: 0;
    padding: 0.6rem 1.1rem;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
}

.answer-meta {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: inline-flex;
    gap: 0.35rem;
    align-items: center;
}

.faq-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2000;
}

.faq-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.faq-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(6px);
}

.faq-modal__dialog {
    position: relative;
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 28px;
    max-width: 520px;
    width: calc(100% - 2rem);
    z-index: 1;
    box-shadow: 0 35px 70px rgba(15,23,42,0.25);
    border: 1px solid rgba(148,163,184,0.2);
    transform: translateY(30px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-modal.show .faq-modal__dialog {
    opacity: 1;
    transform: translateY(0);
}

.faq-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: 0;
    background: rgba(99,102,241,0.12);
    color: var(--accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.faq-modal__title {
    margin: 1rem 0;
    font-size: 1.5rem;
}

.faq-modal__body {
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-modal__footer {
    margin-top: 1.75rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.faq-modal__dismiss {
    border: 1px solid rgba(148,163,184,0.4);
}

/* FAQ CTA */
.faq-cta {
    margin: 0 auto 4rem;
    max-width: 960px;
}

.faq-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.75rem;
    padding: clamp(1.75rem, 3vw, 2.75rem);
    border-radius: 28px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    background: linear-gradient(135deg, rgba(99,102,241,0.18), rgba(236,72,153,0.08));
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
}

.faq-cta-info h3 {
    margin: 0.75rem 0 0.35rem;
    font-size: clamp(1.5rem, 2vw, 1.9rem);
}

.faq-cta-info p {
    color: var(--text-secondary);
    max-width: 520px;
}

.faq-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    align-items: center;
    gap: 1rem;
}

.faq-cta .btn {
    min-width: 200px;
    justify-content: center;
}

[data-theme="dark"] .faq-cta-card {
    background: linear-gradient(135deg, rgba(59,130,246,0.25), rgba(15,23,42,0.8));
    border-color: rgba(255,255,255,0.08);
}

@media (max-width: 640px) {
    .faq-question {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .faq-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .faq-modal__dialog {
        padding: 1.5rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1.5rem, 2.5vw, 2rem);
    margin-top: 3rem;
}

.feature-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    transform: translateY(0);
}

[data-theme="dark"] .feature-card {
    border-color: rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    position: relative;
}

.cta-content {
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
    padding: clamp(2.5rem, 4vw, 3.75rem);
    border-radius: 36px;
    border: 1px solid rgba(148,163,184,0.25);
    background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(226,232,240,0.92));
    box-shadow: 0 35px 60px rgba(15,23,42,0.15);
    position: relative;
    overflow: hidden;
}

.cta-content::after {
    content: '';
    position: absolute;
    inset: 12%;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,0.4);
    filter: blur(40px);
    opacity: 0.35;
    pointer-events: none;
}

[data-theme="dark"] .cta-content {
    background: linear-gradient(135deg, rgba(15,23,42,0.92), rgba(30,41,59,0.9));
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 35px 65px rgba(0,0,0,0.45);
}

.cta-eyebrow {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cta-eyebrow__status {
    display: inline-flex;
    gap: 0.35rem;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.08);
    border: 1px solid rgba(15,23,42,0.15);
    font-weight: 600;
    color: var(--text-primary);
}

[data-theme="dark"] .cta-eyebrow__status {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
}

.cta-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    text-align: center;
}

.cta-highlight strong {
    display: block;
    font-size: 2rem;
    color: var(--text-primary);
}

.cta-highlight span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
    max-width: 640px;
    margin: 0 auto;
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(15,23,42,0.2);
    color: var(--text-primary);
}

[data-theme="dark"] .btn-ghost {
    border-color: rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.9);
}

.cta::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99,102,241,0.25) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.cta-card {
    background: var(--gradient);
    border-radius: var(--border-radius);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(30deg);
    pointer-events: none;
}

.cta-icon {
    font-size: 3rem;
    flex-shrink: 0;
    opacity: 0.9;
}

.cta-content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

.app-download {
    margin-top: 3rem;
    text-align: left;
    background: linear-gradient(135deg, rgba(248,250,252,0.95), rgba(229,231,235,0.95));
    padding: 2.5rem;
    border-radius: 32px;
    border: 1px solid rgba(148,163,184,0.25);
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.15);
}

[data-theme="dark"] .app-download {
    background: linear-gradient(135deg, rgba(15,23,42,0.93), rgba(30,41,59,0.9));
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 35px 70px rgba(0,0,0,0.55);
}

.app-download h3 {
    margin: 1rem 0 0.4rem;
    color: var(--text-primary);
}

.app-download p {
    color: var(--text-secondary);
    max-width: 540px;
}

.coming-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.08);
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .coming-pill {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.store-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem;
    border-radius: 22px;
    border: 1px solid rgba(148,163,184,0.25);
    background: rgba(248,250,252,0.75);
    color: var(--text-primary);
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.store-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99,102,241,0.35);
    background: rgba(255,255,255,0.95);
}

[data-theme="dark"] .store-card {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: #fff;
}

[data-theme="dark"] .store-card:hover {
    border-color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.15);
}

.store-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(99,102,241,0.12);
    display: grid;
    place-items: center;
    font-size: 2rem;
    color: var(--text-primary);
}

.store-card--ios .store-icon {
    background: rgba(15,23,42,0.08);
}

.store-card--android .store-icon {
    background: rgba(16,185,129,0.15);
}

[data-theme="dark"] .store-icon {
    background: rgba(255,255,255,0.12);
    color: #fff;
}
.store-copy span {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.85;
}

.store-copy strong {
    display: block;
    font-size: 1.4rem;
}

.store-copy small {
    color: var(--text-secondary);
}

[data-theme="dark"] .store-copy small {
    color: rgba(255,255,255,0.7);
}

.store-status {
    margin-left: auto;
    text-align: right;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.08);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

[data-theme="dark"] .status-chip {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.store-status small {
    display: block;
    margin-top: 0.35rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

[data-theme="dark"] .store-status small {
    color: rgba(255,255,255,0.7);
}

/* Status Section */
.status {
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.status::before {
    content: '';
    position: absolute;
    inset: 10% 20%;
    background: rgba(99,102,241,0.08);
    filter: blur(120px);
    z-index: 0;
}

.progress-container {
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

[data-theme="dark"] .progress-bar {
    background: rgba(255, 255, 255, 0.05);
}

.progress {
    height: 100%;
    background: var(--gradient);
    border-radius: 10px;
    position: relative;
    width: 0;
    animation: progress 2s ease-out forwards;
}

@keyframes progress {
    from { width: 0; }
    to { width: 75%; }
}

.progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.status-message {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding: 0 1rem;
}

.status-message::before,
.status-message::before {
    content: '"';
    left: -20px;
    top: -10px;
    color: var(--accent);
    position: absolute;
    opacity: 0.3;
    font-family: var(--font-sf);
}

.status-message::before {
    top: -15px;
    left: -10px;
}

.status-message::after {
    bottom: -30px;
    right: -10px;
}

.coming-soon {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2rem;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}

.coming-soon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Footer */
.footer {
    padding: clamp(2rem, 4vw, 3rem) 0 clamp(1rem, 3vw, 1.75rem);
    position: relative;
    background: linear-gradient(180deg, rgba(241,245,249,0.95) 0%, rgba(226,232,240,0.95) 100%);
    border-top: 1px solid rgba(148,163,184,0.2);
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

[data-theme="dark"] .footer {
    background: linear-gradient(180deg, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.85) 100%);
    border-color: rgba(255,255,255,0.08);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gradient);
    opacity: 0.3;
}

.footer-brand .logo {
    font-family: var(--font-sf);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 320px;
}

.copyright {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-image {
        right: -100px;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 8rem 0 4rem;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 4rem;
    }
    
    .platforms {
        justify-content: center;
    }
    
    .stats {
        justify-content: center;
    }
    
    .stat-item {
        min-width: 0;
        width: 45%;
    }
    
    .hero-image {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .about-content, .cta-content p {
        font-size: 1rem;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .header {
        grid-template-columns: auto 1fr auto;
        padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
        margin: 0 clamp(0.75rem, 2vw, 1.5rem);
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-primary);
        border-left: 1px solid var(--color-border);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 2rem;
        overflow-y: auto;
    }
    
    [data-theme="dark"] .nav {
        background: var(--bg-primary);
        border-left-color: var(--color-border);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(148, 163, 184, 0.1);
        text-align: left;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-actions {
        margin-left: 0;
        margin-top: auto;
        padding-top: 2rem;
        border-top: 1px solid rgba(148, 163, 184, 0.1);
        justify-content: center;
    }
    
    .theme-toggle {
        width: 56px;
        height: 56px;
    }
    
    .hero {
        flex-direction: column;
        padding: 4rem 0;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        max-width: 100%;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-left: 0;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .hero-image-raw {
        width: 100%;
        max-width: 280px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
        flex: none;
        justify-content: flex-start;
        gap: 1.25rem;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 1rem;
    }
    
    .nav-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-left: 0;
    }
    
    .nav-actions .btn {
        flex: none;
        width: 100%;
        text-align: center;
    }
    
    .nav-actions .theme-toggle {
        width: 100%;
        justify-content: center;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .cta-icon {
        margin-bottom: 1rem;
    }
    
    .status-message {
        font-size: 1.25rem;
    }
    
    .badge-container {
        flex-direction: column;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-brand,
    .footer-links,
    .footer-newsletter {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .header {
        margin: 0 1rem;
        padding: 0.75rem 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .stats {
        gap: 0.75rem;
    }
    
    .stat-item {
        padding: 1rem;
        min-width: 140px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .partner-logo {
        padding: 1rem;
        min-height: 100px;
    }
    
    .card-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-card {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .early-access-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }
    
    .access-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .faq-container {
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
        text-align: center;
    }
    
    .footer-brand,
    .footer-links,
    .footer-newsletter {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1.5rem 0;
    }
    
    .footer-legal {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .nav {
        width: 85%;
        max-width: 280px;
    }
    
    .theme-toggle {
        width: 48px;
        height: 48px;
    }
}

/* AOS Animation Overrides */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0);
}
