:root {
    --primary-color: #00ff88;
    --primary-glow: rgba(0, 255, 136, 0.4);
    --bg-dark: #050a10;
    --text-light: #ffffff;
    --text-dim: #a0a0b0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-dark);
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #0a1118 0%, #000000 100%);
}

/* Nav */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(5, 10, 16, 0.7);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #fff, var(--primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.status-badge {
    background: var(--glass-bg);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Breadcrumb */
.breadcrumb {
    position: fixed;
    top: 5rem;
    left: 5%;
    z-index: 99;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid var(--glass-border);
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.breadcrumb a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb li[aria-current="page"] {
    color: var(--primary-color);
    font-weight: 600;
}

/* Hero */
.hero-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 4rem;
}

.seed-icon-container {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seed-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    z-index: 2;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.seed-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    filter: blur(25px);
    opacity: 0.3;
    border-radius: 50%;
    animation: pulse 3s infinite ease-in-out;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.highlight {
    color: var(--primary-color);
}

p {
    font-family: var(--font-main);
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

strong {
    color: #fff;
    font-weight: 600;
}

/* Form */
.waitlist-container {
    max-width: 500px;
    margin: 0 auto;
}

#waitlist-form {
    display: flex;
    gap: 10px;
    padding: 5px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: #fff;
    font-size: 1rem;
    outline: none;
}

input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.cta-button {
    background: var(--primary-color);
    color: #000;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--primary-glow);
}

.success-message {
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.hidden {
    display: none;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    width: 100%;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, background 0.3s;
    text-align: left;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.glass-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.glass-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.glass-card p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-dim);
}

/* About Page Specifics */
.about-section {
    max-width: 800px;
    margin: 8rem auto 4rem;
    padding: 0 2rem;
}

.about-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #fff;
}

.about-content p {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.1;
    }

    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

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

/* Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        padding-top: 9rem;
        /* Increased from 6rem to clear taller header */
    }

    #waitlist-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 1.5rem;
        gap: 1rem;
    }

    input[type="email"] {
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--glass-border);
        border-radius: 0;
        text-align: center;
    }

    .cta-button {
        width: 100%;
    }

    .nav-links {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        justify-content: center;
        background: rgba(5, 10, 16, 0.95);
        padding: 1rem;
        border-top: 1px solid var(--glass-border);
        backdrop-filter: blur(10px);
        z-index: 1000;
    }

    .glass-nav {
        padding: 1rem;
        padding-top: max(1rem, env(safe-area-inset-top) + 0.5rem);
        /* Handle Notch */
        justify-content: space-between;
        width: 100%;
        box-sizing: border-box;
        background: rgba(5, 10, 16, 0.95);
        /* More opaque on mobile for better contrast */
    }

    .logo {
        font-size: 1.2rem;
        z-index: 1001;
        position: relative;
    }

    .status-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        margin-left: auto;
        white-space: nowrap;
        background: rgba(0, 255, 136, 0.1);
        z-index: 1001;
        position: relative;
    }

    /* Adjust breadcrumb for mobile */
    .breadcrumb {
        top: 8rem;
        /* Increased from 4.5rem to clear taller header */
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        justify-content: center;
    }

    /* Simplified mobile for now */
}