@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;700&display=swap');

/* Brand Color Variables */
:root {
    --bg-dark: #0a131c;
    --bg-card: rgba(10, 19, 28, 0.7);
    --accent-blue: #607997;
    --accent-blue-glow: rgba(96, 121, 151, 0.3);
    --light-blue: #e2f0fd;
    --light-blue-dim: rgba(226, 240, 253, 0.7);
    --text-white: #ffffff;
    --danger-red: #ff4a4a;
    --success-green: #3cd070;
    --border-radius: 12px;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--light-blue);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    /* Grid background pattern */
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(96, 121, 151, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(96, 121, 151, 0.08) 0%, transparent 40%),
        linear-gradient(rgba(226, 240, 253, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(226, 240, 253, 0.01) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--light-blue);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--light-blue);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(96, 121, 151, 0.15);
    background: rgba(10, 19, 28, 0.85);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--light-blue);
    letter-spacing: 1px;
}

.logo img {
    height: 54px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--accent-blue-glow));
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--light-blue-dim);
    position: relative;
    padding: 6px 0;
}

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

.nav-link:hover {
    color: var(--light-blue);
}

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

/* CTA Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue) 0%, rgba(96, 121, 151, 0.6) 100%);
    color: var(--bg-dark);
    border: 1px solid rgba(226, 240, 253, 0.4);
    box-shadow: 0 4px 15px var(--accent-blue-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 121, 151, 0.5);
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--accent-blue) 100%);
    color: var(--bg-dark);
}

.btn-secondary {
    background: rgba(96, 121, 151, 0.1);
    color: var(--light-blue);
    border: 1px solid rgba(96, 121, 151, 0.3);
}

.btn-secondary:hover {
    background: rgba(96, 121, 151, 0.2);
    border-color: var(--light-blue);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--light-blue);
    border: 1px solid rgba(96, 121, 151, 0.4);
}

.btn-outline:hover {
    border-color: var(--light-blue);
    background: rgba(226, 240, 253, 0.05);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    position: relative;
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
}

.hero-tag {
    font-family: var(--font-mono);
    color: var(--accent-blue);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 24px;
    display: block;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-white) 30%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(10, 19, 28, 0.5));
}

/* Typewriter Container */
.typewriter-wrapper {
    height: 40px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.typewriter-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--light-blue);
    font-weight: 500;
    border-right: 3px solid var(--accent-blue);
    padding-right: 5px;
    white-space: nowrap;
    animation: blink-cursor 0.75s step-end infinite;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Features Grid */
.features-section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-family: var(--font-mono);
    color: var(--accent-blue);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid rgba(96, 121, 151, 0.15);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    transform: translateX(-100%);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(96, 121, 151, 0.4);
    box-shadow: 0 10px 30px rgba(96, 121, 151, 0.1);
}

.feature-card:hover::before {
    transform: translateX(100%);
    transition: all 1s ease;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(96, 121, 151, 0.1);
    border: 1px solid rgba(96, 121, 151, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--light-blue);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--light-blue-dim);
    font-size: 0.95rem;
}

/* Pricing Grid */
.pricing-section {
    padding: 100px 0;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(96, 121, 151, 0.15);
    border-radius: var(--border-radius);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.popular {
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(96, 121, 151, 0.15);
    transform: scale(1.03);
}

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-blue);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: var(--font-heading);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--light-blue);
}

.pricing-card.popular:hover {
    transform: translateY(-8px) scale(1.03);
}

.plan-name {
    font-size: 1.25rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--light-blue);
    margin: 20px 0;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--light-blue-dim);
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-features li {
    font-size: 0.95rem;
    color: var(--light-blue-dim);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li svg {
    color: var(--accent-blue);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Auth Pages (Login / Register) */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 60px 24px;
}

.auth-card {
    background: var(--bg-card);
    border: 1px solid rgba(96, 121, 151, 0.15);
    border-radius: var(--border-radius);
    padding: 40px;
    width: 100%;
    max-width: 440px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(10, 19, 28, 0.8);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header img {
    height: 75px;
    margin-bottom: 16px;
}

.auth-title {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.auth-subtitle {
    color: var(--light-blue-dim);
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--light-blue-dim);
}

.form-control {
    width: 100%;
    background: rgba(10, 19, 28, 0.5);
    border: 1px solid rgba(96, 121, 151, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--light-blue);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 8px rgba(96, 121, 151, 0.25);
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid transparent;
}

.alert-danger {
    background: rgba(255, 74, 74, 0.1);
    color: var(--danger-red);
    border-color: rgba(255, 74, 74, 0.2);
}

.alert-success {
    background: rgba(60, 208, 112, 0.1);
    color: var(--success-green);
    border-color: rgba(60, 208, 112, 0.2);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--light-blue-dim);
}

.auth-footer a {
    color: var(--light-blue);
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Dashboard Layout */
.dashboard-wrapper {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
}

.dashboard-sidebar {
    width: 260px;
    background: rgba(10, 19, 28, 0.9);
    border-right: 1px solid rgba(96, 121, 151, 0.15);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--light-blue-dim);
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-link svg {
    width: 20px;
    height: 20px;
}

.sidebar-link:hover, .sidebar-link.active {
    color: var(--light-blue);
    background: rgba(96, 121, 151, 0.15);
}

.dashboard-content {
    flex: 1;
    margin-left: 260px;
    padding: 40px;
}

.dash-header {
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-welcome h2 {
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.dash-welcome p {
    color: var(--light-blue-dim);
    font-size: 0.95rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

/* Panels / Cards */
.panel {
    background: var(--bg-card);
    border: 1px solid rgba(96, 121, 151, 0.15);
    border-radius: var(--border-radius);
    padding: 32px;
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.panel-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(96, 121, 151, 0.15);
    padding-bottom: 12px;
}

.panel-title svg {
    width: 20px;
    height: 20px;
    color: var(--accent-blue);
}

/* User Info Panel */
.user-status-card {
    background: rgba(96, 121, 151, 0.05);
    border: 1px dashed rgba(96, 121, 151, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}

.status-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.status-row:last-child {
    margin-bottom: 0;
}

.status-label {
    color: var(--light-blue-dim);
    font-size: 0.9rem;
}

.status-val {
    font-weight: 600;
    font-size: 0.9rem;
}

.status-val.active {
    color: var(--success-green);
}

.status-val.expired {
    color: var(--danger-red);
}

/* Instructions lists */
.instruction-list {
    list-style: none;
}

.instruction-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.instruction-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    background: rgba(96, 121, 151, 0.2);
    border: 1px solid var(--accent-blue);
    border-radius: 50%;
}

.instruction-list li span.step-num {
    position: absolute;
    left: 4px;
    top: 5px;
    font-size: 0.65rem;
    font-family: var(--font-mono);
    color: var(--light-blue);
    font-weight: 700;
}

/* Redeem Code Form */
.redeem-form {
    display: flex;
    gap: 12px;
}

.redeem-form input {
    flex: 1;
}

/* Key Display container */
.key-container {
    background: rgba(10, 19, 28, 0.5);
    border: 1px solid rgba(96, 121, 151, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.key-text {
    word-break: break-all;
    user-select: all;
    color: var(--light-blue);
}

.btn-copy {
    background: transparent;
    border: none;
    color: var(--accent-blue);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.btn-copy:hover {
    color: var(--light-blue);
}

/* Footer Section */
footer {
    border-top: 1px solid rgba(96, 121, 151, 0.15);
    background: rgba(10, 19, 28, 0.95);
    padding: 60px 0 30px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-info {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-logo img {
    height: 48px;
}

.footer-desc {
    color: var(--light-blue-dim);
    font-size: 0.9rem;
}

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

.footer-col h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--accent-blue);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    font-size: 0.9rem;
    color: var(--light-blue-dim);
}

.footer-col ul a:hover {
    color: var(--light-blue);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(96, 121, 151, 0.1);
    font-size: 0.85rem;
    color: var(--light-blue-dim);
    flex-wrap: wrap;
    gap: 16px;
}

/* Animations */
@keyframes blink-cursor {
    from, to { border-color: transparent }
    50% { border-color: var(--accent-blue); }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* simple burger menu can be added later, keeping it clean */
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .typewriter-text {
        font-size: 1.3rem;
    }
    
    .dashboard-wrapper {
        flex-direction: column;
    }
    
    .dashboard-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        border-right: none;
        border-bottom: 1px solid rgba(96, 121, 151, 0.15);
        padding: 16px 24px;
    }
    
    .sidebar-menu {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 8px;
    }
    
    .sidebar-link {
        white-space: nowrap;
        padding: 8px 12px;
    }
    
    .dashboard-content {
        margin-left: 0;
        padding: 24px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Teaser / Coming Soon Page Styles */
.teaser-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.teaser-content {
    width: 100%;
    max-width: 500px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.teaser-logo-container {
    margin-bottom: 24px;
}

.teaser-logo {
    height: 200px;
    width: auto;
    filter: drop-shadow(0 0 15px var(--accent-blue-glow));
    animation: swoosh-down 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.teaser-name {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--text-white) 30%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(10, 19, 28, 0.5));
    animation: swoosh-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.teaser-tagline {
    font-family: var(--font-mono);
    color: var(--accent-blue);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fade-in 1s ease 0.6s forwards;
}

.waitlist-card {
    background: var(--bg-card);
    border: 1px solid rgba(96, 121, 151, 0.18);
    border-radius: 16px;
    padding: 36px 32px;
    width: 100%;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 15px 35px rgba(10, 19, 28, 0.8), 0 0 40px rgba(96, 121, 151, 0.03);
    opacity: 0;
    animation: slide-up-fade 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.waitlist-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.waitlist-subtitle {
    color: var(--light-blue-dim);
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.waitlist-input-group {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mail-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-blue);
    pointer-events: none;
    opacity: 0.7;
}

.waitlist-input-group input {
    padding-left: 44px;
}

.waitlist-status {
    margin-top: 16px;
    font-size: 0.9rem;
    border-radius: 8px;
    padding: 10px 14px;
    text-align: left;
    border: 1px solid transparent;
}

.waitlist-status.success {
    background: rgba(60, 208, 112, 0.1);
    color: var(--success-green);
    border-color: rgba(60, 208, 112, 0.2);
}

.waitlist-status.error {
    background: rgba(255, 74, 74, 0.1);
    color: var(--danger-red);
    border-color: rgba(255, 74, 74, 0.2);
}

.client-gateway {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
    opacity: 0.75;
    transition: var(--transition);
    background: rgba(96, 121, 151, 0.12);
    border: 1px solid rgba(96, 121, 151, 0.3);
    border-radius: 20px;
    padding: 10px 18px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(10, 19, 28, 0.5);
}

.client-gateway:hover {
    opacity: 1;
    border-color: var(--light-blue);
    background: rgba(96, 121, 151, 0.22);
    box-shadow: 0 0 15px var(--accent-blue-glow);
}

.client-gateway a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--light-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Background Ambient Glows */
.glow-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    -webkit-filter: blur(120px);
    z-index: 1;
    opacity: 0.12;
    pointer-events: none;
    transition: transform 0.2s ease-out;
}

.blob-1 {
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: var(--accent-blue);
}

.blob-2 {
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: rgba(96, 121, 151, 0.7);
}

/* Swooshing Animations */
@keyframes swoosh-down {
    0% {
        transform: translateY(-80px) scale(0.7);
        opacity: 0;
        filter: blur(8px);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes swoosh-up {
    0% {
        transform: translateY(60px);
        opacity: 0;
        filter: blur(8px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes slide-up-fade {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Responsive adjustments for Teaser */
@media (max-width: 576px) {
    .teaser-name {
        font-size: 2.3rem;
    }
    
    .waitlist-card {
        padding: 28px 20px;
    }
    
    .waitlist-input-group {
        flex-direction: column;
        width: 100%;
    }
    
    .waitlist-input-group button {
        width: 100%;
        margin-top: 4px;
    }
}

