:root {
    --bg-dark: #0f1115;
    --bg-panel: rgba(20, 22, 30, 0.6);
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    
    --accent-purple: #9333ea;
    --accent-pink: #ec4899;
    --accent-orange: #f97316;
    --accent-neon: #a855f7;
    --accent-glow: rgba(147, 51, 234, 0.4);
    
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo-text, .time-val, .count-number {
    font-family: 'Outfit', sans-serif;
}

/* =========================================
   Background Effects
   ========================================= */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: #0f1115 radial-gradient(circle at center, #161822 0%, #0f1115 100%);
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: drift 20s infinite ease-in-out alternate;
}

.orb-1 {
    width: 40vw;
    height: 40vw;
    background: rgba(139, 92, 246, 0.2);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 50vw;
    height: 50vw;
    background: rgba(59, 130, 246, 0.15);
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
    animation-duration: 25s;
}

.orb-3 {
    width: 30vw;
    height: 30vw;
    background: rgba(236, 72, 153, 0.15);
    top: 40%;
    left: 40%;
    animation-delay: -10s;
    animation-duration: 30s;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opactiy='0.05'/%3E%3C/svg%3E");
    opacity: 0.03;
    mix-blend-mode: overlay;
    pointer-events: none;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 10%) scale(1.1); }
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(5,5,5,0.8) 0%, transparent 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff;
}

.invite-badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    background: rgba(249, 115, 22, 0.05);
    color: var(--accent-orange);
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.sound-toggle {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0.5rem;
    border-radius: 50%;
}

.sound-toggle:hover {
    color: var(--text-main);
    background: var(--glass-bg);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 1.5rem 2rem;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.launching-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--accent-orange);
    background: rgba(249, 115, 22, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 100px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-orange);
    animation: pulseOrange 2s infinite;
}

@keyframes pulseOrange {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(249, 115, 22, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.headline {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.highlight {
    color: #fff;
}

.highlight-purple {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink), var(--accent-orange));
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    color: transparent;
    text-shadow: none;
}

.typewriter-container {
    display: inline-block;
    position: relative;
    color: var(--accent-neon);
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: var(--accent-orange);
    animation: blink 1s step-end infinite;
    vertical-align: middle;
    margin-left: 5px;
}

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

.subheadline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 500px;
}

/* Animations for intro */
.text-reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes revealUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Button Styles */
.primary-btn {
    background: var(--text-main);
    color: var(--bg-dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.primary-btn .arrow-icon {
    transition: transform 0.3s ease;
}

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

/* Beta Status */
.beta-status-container {
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.status-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-label .pulse-dot {
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.spots-pill {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spots-text {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.spots-count {
    color: var(--text-main);
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.spots-total {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    opacity: 0.7;
    animation: fadeFloat 3s infinite;
}

@keyframes fadeFloat {
    0%, 100% { opacity: 0.4; transform: translate(-50%, 0); }
    50% { opacity: 1; transform: translate(-50%, 5px); }
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: var(--text-main);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 10px); opacity: 0; }
}

/* =========================================
   Features Carousel
   ========================================= */
.features {
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #fff, #888);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    color: transparent;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.progress-bars {
    display: flex;
    gap: 0.5rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.progress-item {
    flex: 1;
    height: 3px;
    background: var(--glass-bg);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--accent-neon);
    transition: width 0.1s linear;
}

.progress-fill.full { width: 100%; }

.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 2rem;
    padding: 2rem 0;
    scroll-behavior: smooth;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.feature-card {
    flex: 0 0 85%;
    max-width: 320px;
    scroll-snap-align: center;
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    transition: var(--transition-smooth);
    opacity: 0.6;
    transform: scale(0.9);
}

.feature-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(139, 92, 246, 0.2);
}

.feature-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(139, 92, 246, 0.1);
}

.card-visual {
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Feature Specific Visuals */
.blur-heavy { filter: blur(8px); opacity: 0.5; }
.blur-medium { filter: blur(4px); opacity: 0.7; }
.blur-light { filter: blur(2px); opacity: 0.9; }

.chat-visual {
    position: relative;
}
.chat-bubble {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    height: 30px;
    width: 80%;
    position: absolute;
    transition: var(--transition-smooth);
}
.chat-bubble.left {
    left: 0;
    bottom: 10px;
    border-radius: 12px 12px 12px 0;
    width: 60%;
}
.chat-bubble.right {
    right: 0;
    bottom: 50px;
    border-radius: 12px 12px 0 12px;
    background: rgba(139, 92, 246, 0.2);
    width: 70%;
}
.chat-bubble.left:last-child {
    bottom: 90px;
    width: 40%;
}
.feature-card.active .chat-visual .chat-bubble {
    animation: floatUp 3s infinite alternate ease-in-out;
}
.feature-card.active .chat-visual .chat-bubble.right {
    animation-delay: 1s;
}

.video-frame {
    width: 80px;
    height: 100px;
    border-radius: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}
.silhouette-circle {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 20px;
    filter: blur(2px);
}
.silhouette-body {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px 30px 0 0;
    position: absolute;
    bottom: -10px;
    left: 10px;
    filter: blur(3px);
}
.feature-card.active .video-visual .video-frame {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
    animation: pulseGlow 2s infinite;
}

.match-visual { position: relative; }
.pulse-node {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-neon);
}
.pulse-node.center { width: 12px; height: 12px; top: 54px; left: 54px; box-shadow: 0 0 10px var(--accent-neon); }
.pulse-node.n1 { width: 8px; height: 8px; top: 16px; left: 16px; background: #fff;}
.pulse-node.n2 { width: 8px; height: 8px; top: 26px; left: 76px; background: #fff;}
.pulse-node.n3 { width: 8px; height: 8px; top: 76px; left: 26px; background: #fff;}
.connection-lines {
    position: absolute;
    width: 120px;
    height: 120px;
    stroke: rgba(139, 92, 246, 0.5);
    stroke-width: 2;
    stroke-linecap: round;
    fill: none;
}
.feature-card.active .connection-lines path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: dash 2s infinite linear;
}

@keyframes dash {
    to { stroke-dashoffset: 0; }
}

.shield-icon {
    width: 60px;
    height: 60px;
    color: var(--text-main);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}
.feature-card.active .shield-icon {
    animation: shieldGlow 2s infinite alternate;
}
@keyframes shieldGlow {
    0% { filter: drop-shadow(0 0 5px rgba(139, 92, 246, 0.3)); transform: scale(0.95); }
    100% { filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.8)); transform: scale(1.05); }
}

.abstract-ring {
    position: absolute;
    width: 100px;
    height: 100px;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 1.5;
    fill: none;
}
.human-icon {
    width: 40px;
    height: 40px;
    color: var(--text-main);
    z-index: 2;
}
.feature-card.active .abstract-ring {
    animation: rotate 10s infinite linear;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

/* AI Visual */
.ai-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ai-sparkles {
    position: relative;
    width: 60px;
    height: 60px;
    color: var(--accent-neon);
}
.sparkle {
    position: absolute;
    filter: drop-shadow(0 0 10px var(--accent-neon));
}
.s1 { width: 32px; height: 32px; top: 14px; left: 14px; animation: pulseSparkle 2s infinite alternate; }
.s2 { width: 16px; height: 16px; top: -10px; right: -10px; animation: pulseSparkle 1.5s infinite alternate-reverse; color: #fff;}
.s3 { width: 12px; height: 12px; bottom: 0; left: 0; animation: pulseSparkle 2.5s infinite alternate; color: #c084fc;}

.ai-scan-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 1px dashed rgba(168, 85, 247, 0.5);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

@keyframes pulseSparkle {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 15px var(--accent-neon)); }
}

/* India Visual */
.india-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.india-glow-bg {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(10px);
}

.indian-languages {
    position: relative;
    width: 100px;
    height: 100px;
}

.lang-float {
    position: absolute;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text-main);
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.8);
    opacity: 0.6;
}

.l1 { top: 10%; right: 10%; animation: floatY 3s infinite ease-in-out alternate; }
.l2 { top: 40%; left: 0; font-size: 0.8rem; animation: floatY 4s infinite ease-in-out alternate-reverse; color: #f9a8d4; }
.l3 { bottom: 10%; right: 20%; animation: floatY 3.5s infinite ease-in-out alternate; color: #a78bfa;}
.l4 { top: 20%; left: 20%; animation: floatY 4s infinite ease-in-out alternate; }
.l5 { bottom: 30%; right: -10%; font-size: 0.85rem; animation: floatY 3.2s infinite ease-in-out alternate-reverse; }
.l6 { bottom: 0; left: 30%; animation: floatY 3.8s infinite ease-in-out alternate; color: #818cf8; }

@keyframes floatY {
    0% { transform: translateY(0px) scale(0.95); }
    100% { transform: translateY(-10px) scale(1.05); }
}

.feature-card.active .lang-float {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    opacity: 1;
}

/* =========================================
   Manifesto Section
   ========================================= */
.manifesto {
    padding: 8rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 50vh;
}

.manifesto-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.impact-text {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    opacity: 0.5;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-item {
    transform: translateY(20px);
}

.hidden-trigger.visible .stagger-item {
    opacity: 1;
    transform: translateY(0);
}

.hidden-trigger.visible .stagger-item:nth-child(1) { transition-delay: 0.1s; }
.hidden-trigger.visible .stagger-item:nth-child(2) { transition-delay: 0.3s; }
.hidden-trigger.visible .stagger-item:nth-child(3) { transition-delay: 0.5s; }

.highlight-gradient {
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink), var(--accent-orange));
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    color: transparent;
    opacity: 1 !important;
}

/* =========================================
   Waitlist Section
   ========================================= */
.waitlist {
    padding: 4rem 1.5rem 8rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.glass-panel {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 4rem 2rem;
    width: 100%;
    max-width: 600px;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    -moz-backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.live-ticker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,0,0,0.4);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.ticker-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: pulseTicker 1.5s infinite;
}

@keyframes pulseTicker {
    0% { transform: scale(0.95); opacity: 0.5;}
    50% { transform: scale(1.1); opacity: 1;}
    100% { transform: scale(0.95); opacity: 0.5;}
}

.waitlist-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.premium-offer-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(147, 51, 234, 0.08);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 100px;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    color: var(--text-muted);
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.premium-offer-tag:hover {
    transform: translateY(-2px);
    border-color: rgba(147, 51, 234, 0.6);
}

.premium-glow-ring {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 50% 0%, rgba(147, 51, 234, 0.25) 0%, transparent 60%);
}

.premium-offer-tag .premium-star {
    width: 20px;
    height: 20px;
    color: #f59e0b;
    filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.8));
    animation: slowSpin 6s linear infinite;
    flex-shrink: 0;
}

@keyframes slowSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.premium-offer-tag span {
    position: relative;
    z-index: 1;
}

.premium-offer-tag strong {
    font-weight: 700;
}

.counter {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.count-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #fff, var(--accent-pink));
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
}

.count-text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.waitlist-form {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.input-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.input-wrapper:focus-within {
    border-color: var(--accent-purple);
    background: rgba(147, 51, 234, 0.05);
    box-shadow: 0 0 0 4px rgba(147, 51, 234, 0.1);
}

.input-icon {
    position: absolute;
    left: 1.25rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.input-wrapper:focus-within .input-icon {
    color: var(--accent-purple);
}

.input-wrapper input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.25rem 1.25rem 1.25rem 3.5rem;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
    color: #fff;
    border: none;
    padding: 1.25rem;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(147, 51, 234, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(147, 51, 234, 0.4);
}

.success-message {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    animation: revealUp 0.5s forwards;
    padding: 2.5rem 2rem;
    background: rgba(147, 51, 234, 0.05);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 20px;
}

.success-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 20px rgba(147, 51, 234, 0.4);
    margin-bottom: 0.5rem;
}

.success-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.success-text {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.success-sub {
    color: var(--text-muted);
    font-size: 1rem;
    text-align: center;
}

/* =========================================
   Footer
   ========================================= */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 2rem 1.5rem;
    background: var(--bg-dark);
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

.separator {
    color: rgba(255,255,255,0.1);
}

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

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.copyright {
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .input-row {
        flex-direction: row;
    }
    
    .input-wrapper {
        flex: 1;
    }
    
    .submit-btn {
        width: 100%;
        border-radius: 16px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .carousel-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    
    .carousel-track {
        max-width: 800px;
        padding: 2rem;
    }
    
    .feature-card {
        flex: 0 0 320px;
    }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .invite-badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }
    
    .hero {
        padding: 7rem 1rem 3rem;
    }
    
    .headline {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }
    
    .primary-btn {
        width: 100%;
        justify-content: center;
    }

    .glass-panel {
        padding: 2rem 1rem;
        border-radius: 20px;
    }
    
    .count-number {
        font-size: 2.5rem;
    }

    .carousel-track {
        gap: 1rem;
    }
    
    .feature-card {
        flex: 0 0 88%;
        padding: 2rem 1.5rem;
    }
    
    .social-icons {
        margin-top: 1rem;
    }
}

/* Landscape Phones / Tablets Portrait (up to 768px) */
@media (max-width: 767px) {
    .hero-content {
        gap: 1.5rem;
    }

    .manifesto {
        padding: 5rem 1rem;
    }

    .impact-text {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .footer-content {
        gap: 2rem;
        text-align: center;
    }
}

/* Fix for older browsers regarding flex layout and images scaling */
.feature-card, .glass-panel, .input-group {
    max-width: 100%;
}
