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

html {
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

:root {
    --color-bg: #0a0a0a;
    --color-surface: #111111;
    --color-surface-elevated: #1a1a1a;
    --color-text: #ffffff;
    --color-text-secondary: #a0a0a0;
    --color-text-muted: #666666;
    --color-accent: #ffffff;
    --color-border: #252525;
    --color-border-hover: #404040;
    --font-primary: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    /* Hide scrollbar for Chrome, Safari and Opera */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

html {
    /* Hide scrollbar for Chrome, Safari and Opera */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

html::-webkit-scrollbar {
    display: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
}

.logo:hover .logo-icon {
    animation: rotateStar 0.6s ease-in-out;
}

@keyframes rotateStar {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(72deg); }
}

.logo-icon {
    width: 28px;
    height: 28px;
    color: var(--color-text);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.logo-dot {
    color: var(--color-text-secondary);
    animation: pulse 2s ease-in-out infinite;
}

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

.waitlist-btn-nav {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
}

.waitlist-btn-nav:hover {
    border-color: var(--color-text);
    background-color: var(--color-text);
    color: var(--color-bg);
    transform: translateY(-2px);
}

.waitlist-btn-nav:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.waitlist-btn-nav:active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 160px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 5s ease-in-out infinite;
    pointer-events: none;
    filter: blur(60px);
}

@keyframes pulseGlow {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.15;
    }
}

/* Dreamy Orbs */
.dreamy-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
    opacity: 0.4;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
    bottom: 15%;
    right: 15%;
    animation-delay: 7s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-30px, -80px) scale(0.9);
        opacity: 0.3;
    }
    75% {
        transform: translate(70px, -40px) scale(1.05);
        opacity: 0.45;
    }
}

/* Enhanced Particles */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.particle-1 {
    width: 6px;
    height: 6px;
    top: 15%;
    left: 15%;
    animation: floatParticle 9s ease-in-out infinite;
}

.particle-2 {
    width: 5px;
    height: 5px;
    top: 55%;
    right: 18%;
    animation: floatParticle 11s ease-in-out infinite 1.5s;
}

.particle-3 {
    width: 7px;
    height: 7px;
    bottom: 25%;
    left: 45%;
    animation: floatParticle 13s ease-in-out infinite 3s;
}

.particle-4 {
    width: 4px;
    height: 4px;
    top: 35%;
    right: 30%;
    animation: floatParticle 10s ease-in-out infinite 4.5s;
}

.particle-5 {
    width: 6px;
    height: 6px;
    bottom: 40%;
    right: 25%;
    animation: floatParticle 12s ease-in-out infinite 6s;
}

.particle-6 {
    width: 5px;
    height: 5px;
    top: 70%;
    left: 30%;
    animation: floatParticle 14s ease-in-out infinite 7.5s;
}

@keyframes floatParticle {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translate(40px, -40px) scale(1.3);
        opacity: 0.9;
    }
    50% { 
        transform: translate(-30px, -80px) scale(0.7);
        opacity: 0.5;
    }
    75% { 
        transform: translate(50px, -40px) scale(1.2);
        opacity: 0.8;
    }
}

/* Stars */
.star {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    animation: twinkleStar 3s ease-in-out infinite;
    pointer-events: none;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.star svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.star-1 { top: 15%; left: 10%; animation-delay: 0s; }
.star-2 { top: 25%; right: 15%; animation-delay: 0.5s; }
.star-3 { top: 40%; left: 20%; animation-delay: 1s; }
.star-4 { top: 55%; right: 25%; animation-delay: 1.5s; }
.star-5 { top: 70%; left: 15%; animation-delay: 2s; }
.star-6 { top: 20%; left: 75%; animation-delay: 0.3s; }
.star-7 { top: 60%; right: 10%; animation-delay: 0.8s; }
.star-8 { top: 80%; right: 40%; animation-delay: 1.2s; }

@keyframes twinkleStar {
    0%, 100% { 
        opacity: 0.5;
        transform: scale(1);
        filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
    }
    50% { 
        opacity: 1;
        transform: scale(1.3);
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    }
}

/* Shooting Stars */
.shooting-star {
    display: none;
}

.shooting-star::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.8);
}

.shooting-star-1 {
    top: 10%;
    left: 20%;
    transform: rotate(-45deg);
    animation: shootStar1 8s ease-in-out infinite;
}

.shooting-star-2 {
    top: 30%;
    right: 25%;
    transform: rotate(45deg);
    animation: shootStar2 12s ease-in-out infinite 2s;
}

.shooting-star-3 {
    top: 50%;
    left: 15%;
    transform: rotate(-30deg);
    animation: shootStar3 10s ease-in-out infinite 4s;
}

@keyframes shootStar1 {
    0% {
        opacity: 0;
        transform: rotate(-45deg) translateX(-200px) translateY(-200px);
    }
    10% {
        opacity: 1;
    }
    20% {
        opacity: 0;
        transform: rotate(-45deg) translateX(200px) translateY(200px);
    }
    100% {
        opacity: 0;
    }
}

@keyframes shootStar2 {
    0% {
        opacity: 0;
        transform: rotate(45deg) translateX(200px) translateY(-200px);
    }
    10% {
        opacity: 1;
    }
    20% {
        opacity: 0;
        transform: rotate(45deg) translateX(-200px) translateY(200px);
    }
    100% {
        opacity: 0;
    }
}

@keyframes shootStar3 {
    0% {
        opacity: 0;
        transform: rotate(-30deg) translateX(-150px) translateY(-300px);
    }
    10% {
        opacity: 1;
    }
    25% {
        opacity: 0;
        transform: rotate(-30deg) translateX(300px) translateY(150px);
    }
    100% {
        opacity: 0;
    }
}

/* Clouds - Enhanced Dreamy Style */
.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    pointer-events: none;
    opacity: 0.6;
    filter: blur(1px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    filter: blur(1px);
}

.cloud-1 {
    width: 150px;
    height: 50px;
    top: 15%;
    left: 5%;
    animation: floatCloud1 25s ease-in-out infinite;
}

.cloud-1::before {
    width: 100px;
    height: 100px;
    top: -50px;
    left: 25px;
}

.cloud-1::after {
    width: 80px;
    height: 80px;
    top: -40px;
    right: 25px;
}

.cloud-2 {
    width: 130px;
    height: 45px;
    top: 45%;
    right: 8%;
    animation: floatCloud2 30s ease-in-out infinite 3s;
}

.cloud-2::before {
    width: 90px;
    height: 90px;
    top: -45px;
    left: 20px;
}

.cloud-2::after {
    width: 70px;
    height: 70px;
    top: -35px;
    right: 20px;
}

.cloud-3 {
    width: 110px;
    height: 40px;
    bottom: 20%;
    left: 12%;
    animation: floatCloud3 35s ease-in-out infinite 6s;
}

.cloud-3::before {
    width: 75px;
    height: 75px;
    top: -38px;
    left: 15px;
}

.cloud-3::after {
    width: 60px;
    height: 60px;
    top: -30px;
    right: 15px;
}

.cloud-4 {
    width: 140px;
    height: 48px;
    top: 30%;
    right: 20%;
    animation: floatCloud4 28s ease-in-out infinite 9s;
}

.cloud-4::before {
    width: 95px;
    height: 95px;
    top: -48px;
    left: 22px;
}

.cloud-4::after {
    width: 75px;
    height: 75px;
    top: -38px;
    right: 22px;
}

.cloud-5 {
    width: 120px;
    height: 42px;
    bottom: 35%;
    right: 15%;
    animation: floatCloud5 32s ease-in-out infinite 12s;
}

.cloud-5::before {
    width: 85px;
    height: 85px;
    top: -42px;
    left: 18px;
}

.cloud-5::after {
    width: 65px;
    height: 65px;
    top: -32px;
    right: 18px;
}

.cloud-6 {
    width: 100px;
    height: 38px;
    top: 60%;
    left: 25%;
    animation: floatCloud6 27s ease-in-out infinite 15s;
}

.cloud-6::before {
    width: 70px;
    height: 70px;
    top: -38px;
    left: 12px;
}

.cloud-6::after {
    width: 55px;
    height: 55px;
    top: -28px;
    right: 12px;
}

@keyframes floatCloud1 {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.4;
    }
    25% {
        transform: translateX(30px) translateY(-20px);
        opacity: 0.5;
    }
    50% {
        transform: translateX(60px) translateY(-10px);
        opacity: 0.3;
    }
    75% {
        transform: translateX(30px) translateY(-15px);
        opacity: 0.4;
    }
}

@keyframes floatCloud2 {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.4;
    }
    33% {
        transform: translateX(-40px) translateY(20px);
        opacity: 0.5;
    }
    66% {
        transform: translateX(-80px) translateY(10px);
        opacity: 0.3;
    }
}

@keyframes floatCloud3 {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.4;
    }
    25% {
        transform: translateX(50px) translateY(15px);
        opacity: 0.5;
    }
    50% {
        transform: translateX(100px) translateY(5px);
        opacity: 0.3;
    }
    75% {
        transform: translateX(50px) translateY(10px);
        opacity: 0.4;
    }
}

@keyframes floatCloud4 {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.5;
    }
    33% {
        transform: translateX(-60px) translateY(-25px);
        opacity: 0.6;
    }
    66% {
        transform: translateX(-120px) translateY(-10px);
        opacity: 0.4;
    }
}

@keyframes floatCloud5 {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.4;
    }
    25% {
        transform: translateX(70px) translateY(20px);
        opacity: 0.5;
    }
    50% {
        transform: translateX(140px) translateY(8px);
        opacity: 0.3;
    }
    75% {
        transform: translateX(70px) translateY(15px);
        opacity: 0.4;
    }
}

@keyframes floatCloud6 {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: translateX(-50px) translateY(18px);
        opacity: 0.6;
    }
    60% {
        transform: translateX(-100px) translateY(5px);
        opacity: 0.4;
    }
    90% {
        transform: translateX(-50px) translateY(12px);
        opacity: 0.5;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: pulseGlow 6s ease-in-out infinite;
}


.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: var(--color-text);
    text-align: center;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--color-text-secondary);
    margin-bottom: 48px;
    font-weight: 400;
    line-height: 1.6;
    font-family: var(--font-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.waitlist-form-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.waitlist-form {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    justify-content: center;
}

.input-wrapper {
    flex: 1;
    position: relative;
}

.email-input {
    width: 100%;
    padding: 20px 24px;
    font-size: 16px;
    border: 1px solid var(--color-border);
    background-color: var(--color-surface);
    color: var(--color-text);
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
    border-radius: 0;
}

.email-input:focus {
    outline: none;
    border-color: var(--color-text);
    background-color: var(--color-surface-elevated);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.email-input::placeholder {
    color: var(--color-text-muted);
}

.submit-btn {
    background-color: var(--color-text);
    color: var(--color-bg);
    border: 1px solid var(--color-text);
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

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

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

.submit-btn:hover {
    background-color: var(--color-bg);
    color: var(--color-text);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-arrow {
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.form-message {
    font-size: 14px;
    margin-top: 12px;
    min-height: 24px;
    font-family: var(--font-secondary);
    text-align: center;
}

.form-message.success {
    color: var(--color-text);
}

.form-message.error {
    color: #ff4444;
}

.community-section {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.dreamy-badge {
    position: relative;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 16px;
    color: var(--color-text-secondary);
    font-family: var(--font-secondary);
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dreamy-badge:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.badge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulseGlow 3s ease-in-out infinite;
    pointer-events: none;
}

.community-count {
    font-weight: 600;
    color: var(--color-text);
    position: relative;
    z-index: 1;
}

/* Scroll Down Button */
.scroll-down-btn {
    margin-top: 64px;
    margin-left: auto;
    margin-right: auto;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text);
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.03);
}

.scroll-down-btn:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.scroll-text {
    letter-spacing: 1px;
}

.scroll-arrow {
    animation: bounceArrow 2s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.scroll-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
}

.nav-dot:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.nav-dot.active {
    background: var(--color-text);
    border-color: var(--color-text);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.nav-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-text);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-dot.active::after {
    opacity: 1;
}

/* Stats Section */
.stats {
    padding: 120px 0;
    background-color: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-text), transparent);
    animation: scanLine 3s linear infinite;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    justify-items: center;
    align-items: center;
}

.stat-item {
    text-align: center;
    padding: 40px 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-value {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -3px;
    margin-bottom: 12px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.stat-value.infinite {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: clamp(64px, 8vw, 96px);
    letter-spacing: 0;
}

.infinite-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(80px, 10vw, 120px);
    animation: pulseInfinite 2s ease-in-out infinite;
    font-weight: 300;
    line-height: 1;
}

@keyframes pulseInfinite {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.stars {
    font-size: clamp(20px, 2.5vw, 28px);
    letter-spacing: 4px;
    animation: twinkle 2s ease-in-out infinite;
    display: block;
}

@keyframes twinkle {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-secondary);
}

.stat-description {
    font-size: 14px;
    color: var(--color-text-secondary);
    font-family: var(--font-secondary);
}

/* Features Section */
.features {
    padding: 120px 0;
    position: relative;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 40%);
}

.section-header {
    margin-bottom: 64px;
    text-align: center;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    letter-spacing: -1px;
    color: var(--color-text);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    justify-items: stretch;
    align-items: start;
}

.feature-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 32px 24px;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

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

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

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
    background-color: var(--color-surface-elevated);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    margin-left: auto;
    margin-right: auto;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
}

.feature-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: var(--font-secondary);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
    letter-spacing: -0.5px;
}

.feature-description {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-family: var(--font-secondary);
}

/* Mission Section */
.mission {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.mission::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 6s ease-in-out infinite;
    pointer-events: none;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-text-wrapper {
    max-width: 600px;
}

.mission-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -2px;
    color: var(--color-text);
}

.mission-text {
    font-size: 18px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-family: var(--font-secondary);
}

.mission-visual {
    display: flex;
    gap: 16px;
    height: 400px;
}

.visual-block {
    flex: 1;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.visual-block:hover::before {
    left: 100%;
}

.visual-block:nth-child(1) {
    animation: float 3s ease-in-out infinite;
}

.visual-block:nth-child(2) {
    animation: float 3s ease-in-out infinite 0.5s;
}

.visual-block:nth-child(3) {
    animation: float 3s ease-in-out infinite 1s;
}

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

/* CTA Section */
.cta {
    padding: 160px 0;
    background-color: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -2px;
    color: var(--color-text);
}

.cta-subtitle {
    font-size: 20px;
    color: var(--color-text-secondary);
    margin-bottom: 48px;
    font-family: var(--font-secondary);
}

/* Footer */
.footer {
    padding: 80px 0 32px;
    border-top: 1px solid var(--color-border);
    background-color: var(--color-surface);
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.footer-main {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--color-text-secondary);
    font-family: var(--font-secondary);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
    font-family: var(--font-secondary);
}

.footer-link {
    font-size: 14px;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-family: var(--font-secondary);
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--color-text);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.footer-text {
    font-size: 14px;
    color: var(--color-text-muted);
    font-family: var(--font-secondary);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-link-small {
    font-size: 14px;
    color: var(--color-text-muted);
    text-decoration: none;
    font-family: var(--font-secondary);
    transition: color 0.2s ease;
}

.footer-link-small:hover {
    color: var(--color-text);
}

/* Responsive Design */
@media (max-width: 968px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .mission-visual {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .hero {
        padding: 140px 0 100px;
        min-height: auto;
    }

    /* Reduce star animations on mobile for better performance */
    .star {
        animation: twinkleStarMobile 4s ease-in-out infinite;
        opacity: 0.6;
        z-index: 0;
    }

    /* Ensure hero content is above stars */
    .hero-content {
        z-index: 10;
        position: relative;
    }

    .hero-visual {
        z-index: 0;
    }

    @keyframes twinkleStarMobile {
        0%, 100% { 
            opacity: 0.4;
            transform: scale(1);
        }
        50% { 
            opacity: 0.7;
            transform: scale(1.1);
        }
    }

    /* Hide some stars on mobile */
    .star-4, .star-5, .star-6 {
        display: none;
    }

    /* Reduce shooting star frequency */
    .shooting-star-2, .shooting-star-3 {
        display: none;
    }

    .shooting-star-1 {
        animation-duration: 15s;
    }

    /* Reduce particle count */
    .particle-3, .particle-4, .particle-5, .particle-6 {
        display: none;
    }

    /* Simplify cloud animations */
    .cloud {
        animation-duration: 60s;
    }

    /* Reduce orb animations */
    .dreamy-orb {
        animation-duration: 12s;
    }

    .waitlist-form {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .waitlist-form-container {
        width: 100%;
        max-width: 100%;
    }

    .floating-nav {
        right: 20px;
        gap: 14px;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }

    .scroll-down-btn {
        margin-top: 48px;
        padding: 14px 28px;
        font-size: 13px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        justify-items: stretch;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .features,
    .mission,
    .cta,
    .stats {
        padding: 100px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .container {
        padding: 0 20px;
    }

    /* Further reduce animations on small mobile devices */
    .star {
        animation: none;
        opacity: 0.5;
    }

    /* Only show 2 stars on very small screens */
    .star-3 {
        display: none;
    }

    /* Disable all shooting stars */
    .shooting-star {
        display: none;
    }

    /* Reduce particles further */
    .particle {
        animation-duration: 30s;
    }

    .particle-2 {
        display: none;
    }

    /* Simplify glow effects */
    .glow-effect {
        opacity: 0.3;
    }

    /* Reduce dreamy orbs */
    .dreamy-orb-2, .dreamy-orb-3 {
        display: none;
    }

    .feature-card {
        padding: 32px 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .floating-nav {
        right: 16px;
        gap: 12px;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }

    .scroll-down-btn {
        margin-top: 48px;
        padding: 12px 24px;
        font-size: 12px;
    }
}
