/* ============================
   Nirnoy.AI Landing Page Styles
   Premium dark theme + glassmorphism
   ============================ */

/* --- CSS Variables --- */
:root {
    --bg-primary: #0a0a12;
    --bg-secondary: #12121e;
    --bg-card: rgba(20, 20, 35, 0.7);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --border-glass: rgba(255, 255, 255, 0.08);
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b80;
    --accent-1: #6366f1; /* indigo */
    --accent-2: #06b6d4; /* cyan */
    --accent-3: #a855f7; /* purple */
    --accent-green: #10b981;
    --accent-yellow: #fbbf24;
    --accent-red: #ef4444;
    --gradient-main: linear-gradient(135deg, #6366f1, #06b6d4);
    --gradient-hero: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #06b6d4 100%);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
    --font-main: 'Inter', 'Noto Sans Bengali', system-ui, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon { font-size: 1.5rem; }
.logo-ai { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
    background: var(--gradient-main);
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3); }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(20px);
    padding: 24px;
    z-index: 99;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--border-glass);
}

.mobile-menu.open { display: flex; }

.mobile-link {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 8px 0;
}

.mobile-link.cta {
    background: var(--gradient-main);
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    color: white;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

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

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-1);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-3);
    bottom: 10%;
    left: -10%;
    animation-delay: -3s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-2);
    top: 40%;
    left: 50%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

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

.btn-full { width: 100%; justify-content: center; }

.hero-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 60px;
}

/* Phone Mockup */
.hero-phone {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.phone-frame {
    width: 280px;
    background: #1a1a2e;
    border-radius: 36px;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), var(--shadow-glow);
    transform: rotateX(5deg);
    transition: var(--transition);
}

.phone-frame:hover { transform: rotateX(0deg) translateY(-8px); }
.phone-frame.small { width: 220px; }

.phone-notch {
    width: 100px;
    height: 24px;
    background: #0a0a12;
    border-radius: 0 0 18px 18px;
    margin: 0 auto 8px;
}

.phone-screen {
    background: #12121e;
    border-radius: 24px;
    overflow: hidden;
    min-height: 340px;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.screen-title {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.85rem;
}

.screen-content { padding: 16px; }

/* Scan Animation */
.scan-animation { text-align: center; margin-bottom: 20px; }

.face-outline {
    width: 120px;
    height: 150px;
    border: 2px dashed var(--accent-2);
    border-radius: 50% 50% 45% 45%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-main);
    animation: scan 2s ease-in-out infinite;
    box-shadow: 0 0 15px var(--accent-2);
}

@keyframes scan {
    0% { top: 0; }
    50% { top: 100%; }
    100% { top: 0; }
}

.scan-text {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--accent-2);
    font-weight: 600;
}

.result-preview { display: flex; flex-direction: column; gap: 8px; }

.result-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 500;
    animation: fadeInUp 0.5s ease-out both;
}

.result-item:nth-child(1) { animation-delay: 2s; }
.result-item:nth-child(2) { animation-delay: 2.5s; }
.result-item:nth-child(3) { animation-delay: 3s; }

.result-item.good { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); }
.result-item.warning { background: rgba(251, 191, 36, 0.15); color: var(--accent-yellow); }
.result-item.info { background: rgba(99, 102, 241, 0.15); color: var(--accent-1); }

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

/* --- Stats Bar --- */
.stats-bar {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 32px 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 800; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-suffix { font-size: 1.5rem; font-weight: 700; background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { display: block; font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border-glass); }

/* --- Sections Common --- */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-badge {
    display: inline-block;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.8rem;
    color: var(--accent-2);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 48px;
}

/* --- Features --- */
.features {
    padding: 100px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--shadow-glow);
}

.feature-highlight {
    grid-column: span 3;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(6, 182, 212, 0.05));
    border-color: rgba(99, 102, 241, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tag {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

/* --- How It Works --- */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
}

.step {
    flex: 1;
    text-align: center;
    max-width: 300px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-visual { margin-bottom: 20px; display: flex; justify-content: center; }

.step-phone {
    width: 160px;
    background: #1a1a2e;
    border-radius: 24px;
    padding: 8px;
    border: 1px solid var(--border-glass);
}

.step-screen {
    background: #12121e;
    border-radius: 18px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
}

.scan-step .mini-face {
    font-size: 2.5rem;
    animation: scan-pulse 2s ease-in-out infinite;
}

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

.mini-scan-line {
    width: 80%;
    height: 2px;
    background: var(--gradient-main);
    animation: scan-move 1.5s ease-in-out infinite;
}

@keyframes scan-move {
    0%, 100% { transform: translateY(-20px); opacity: 0.3; }
    50% { transform: translateY(20px); opacity: 1; }
}

.mini-result {
    background: rgba(251, 191, 36, 0.15);
    color: var(--accent-yellow);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.mini-result.good-result {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
}

.mini-food {
    background: rgba(99, 102, 241, 0.15);
    color: var(--accent-1);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.step-arrow {
    font-size: 2rem;
    color: var(--text-muted);
    margin-top: 120px;
}

.step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --- Food Section --- */
.food-section {
    padding: 100px 0;
}

.food-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.food-text .section-subtitle { margin-bottom: 24px; }

.food-example {
    margin-top: 32px;
}

.food-item-card {
    display: flex;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 20px;
}

.food-emoji { font-size: 2.5rem; }

.food-info strong { font-size: 1.1rem; }

.food-macros {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 4px 0;
}

.food-nova {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 6px 0;
}

.nova-1 { color: var(--accent-green); }

.food-personal {
    color: var(--accent-green);
    font-size: 0.85rem;
    font-weight: 500;
}

.food-visual { display: flex; justify-content: center; }

.food-phone-mockup { perspective: 1000px; }

.food-scan-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 280px;
    gap: 12px;
}

.food-scan-target {
    font-size: 3rem;
    animation: pulse-food 2s ease-in-out infinite;
}

@keyframes pulse-food {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.food-scan-demo p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* --- Pricing --- */
.pricing {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-6px);
}

.price-card.popular {
    border-color: var(--accent-1);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.1), var(--bg-card));
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-6px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.price-tier {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.local-price {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.price-period {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.price-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- FAQ --- */
.faq {
    padding: 100px 0;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open {
    border-color: rgba(99, 102, 241, 0.3);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent-1);
    transition: var(--transition);
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* --- Disclaimer --- */
.disclaimer {
    padding: 40px 0;
}

.disclaimer-card {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    text-align: center;
}

.disclaimer-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--accent-red);
}

.disclaimer-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* --- Footer --- */
.footer {
    padding: 60px 0 0;
    border-top: 1px solid var(--border-glass);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-brand { max-width: 320px; }

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 12px;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 64px;
}

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

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

.footer-column a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding: 24px;
    text-align: center;
    margin-top: 48px;
}

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

/* --- Responsive --- */
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-menu-btn { display: flex; }

    .feature-grid { grid-template-columns: 1fr; }
    .feature-highlight { grid-column: span 1; }

    .steps { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); margin: 0; }

    .food-layout { grid-template-columns: 1fr; }
    .food-visual { order: -1; }

    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .price-card.popular { transform: none; }
    .price-card.popular:hover { transform: translateY(-6px); }

    .stats-container { gap: 24px; }
    .stat-divider { display: none; }

    .footer-container { flex-direction: column; }
    .footer-links { gap: 32px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-cta-group { flex-direction: column; padding: 0 20px; }
    .btn { justify-content: center; }
}

/* Waitlist Styles */
.waitlist-form { display: flex; gap: 12px; margin-top: 2rem; max-width: 500px; }
.waitlist-input { flex: 1; padding: 16px 20px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(0, 0, 0, 0.2); color: #fff; font-size: 1rem; outline: none; transition: 0.3s ease; }
.waitlist-input:focus { border-color: var(--primary); background: rgba(0, 229, 255, 0.05); }
.waitlist-success { margin-top: 1.5rem; padding: 16px; border-radius: 12px; background: rgba(0, 230, 118, 0.1); border: 1px solid rgba(0, 230, 118, 0.3); color: #00e676; font-weight: 500; font-size: 0.95rem; animation: slideUp 0.4s ease forwards; }
@media (max-width: 600px) { .waitlist-form { flex-direction: column; } .waitlist-submit { width: 100%; } }
