/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0a1628;
    --navy-light: #0f1f35;
    --navy-card: #111d30;
    --lime: #c8ff00;
    --lime-hover: #d4ff33;
    --white: #ffffff;
    --gray: #94a3b8;
    --gray-light: #cbd5e1;
    --border: #1e3a5f;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--navy);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--lime);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.visit-site-btn {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--lime);
    border: 1px solid var(--lime);
    padding: 0.5rem 1.2rem;
    transition: all 0.2s;
}

.visit-site-btn:hover {
    background: var(--lime);
    color: var(--navy);
    opacity: 1;
}

/* ===== HERO ===== */
.hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    background: var(--lime);
    color: var(--navy);
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.text-lime {
    color: var(--lime);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 1rem;
    max-width: 500px;
}

.hero-subdescription {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 500px;
}

/* ===== FORM ===== */
.form-section {
    margin-top: 1rem;
}

.form-divider {
    width: 60px;
    height: 3px;
    background: var(--lime);
    margin-bottom: 1.5rem;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 400px;
}

.form-input {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.85rem 1rem;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--white);
    outline: none;
    transition: border-color 0.2s;
}

.form-input::placeholder {
    color: var(--gray);
}

.form-input:focus {
    border-color: var(--lime);
}

.form-button {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 1rem;
    background: var(--lime);
    color: var(--navy);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.form-button:hover {
    background: var(--lime-hover);
}

.form-button:active {
    transform: scale(0.98);
}

.form-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

/* ===== HERO IMAGE ===== */
.hero-image {
    display: flex;
    flex-direction: column;
}

.image-frame {
    border: 2px solid var(--lime);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-caption {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-top: none;
    padding: 1rem 1.5rem;
}

.caption-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.caption-role {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ===== TICKER ===== */
.ticker-section {
    background: var(--navy);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 30s linear infinite;
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-right: 1.5rem;
    white-space: nowrap;
}

.ticker-item {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--gray-light);
}

.ticker-item.highlight {
    color: var(--lime);
    font-weight: 600;
}

.ticker-icon {
    margin-right: 0.3rem;
}

.ticker-dot {
    color: var(--gray);
    font-size: 0.6rem;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== FEATURES ===== */
.features {
    padding: 5rem 2rem;
    background: var(--navy);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

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

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 0.95rem;
    color: var(--gray-light);
    line-height: 1.6;
}

/* ===== ABOUT ===== */
.about {
    padding: 5rem 2rem;
    background: var(--navy-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-inner {
    max-width: 800px;
    margin: 0 auto;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--lime);
    padding-left: 1rem;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--gray-light);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.about-highlight {
    color: var(--lime) !important;
    font-weight: 600;
    font-style: italic;
    font-size: 1.1rem !important;
}

/* ===== FOOTER CTA ===== */
.footer-cta {
    padding: 5rem 2rem;
    background: var(--navy-card);
    text-align: center;
}

.footer-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    height: 80px;
    margin-bottom: 2rem;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.footer-subtitle {
    font-size: 1rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.footer-form {
    max-width: 100%;
    margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--border);
    background: var(--navy);
}

.footer p {
    font-size: 0.85rem;
    color: var(--gray);
}

.footer a {
    color: var(--lime);
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: var(--navy-card);
    border: 1px solid var(--lime);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 420px;
    width: 90%;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-content p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.modal-close-btn {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.75rem 2rem;
    background: var(--lime);
    color: var(--navy);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.modal-close-btn:hover {
    background: var(--lime-hover);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        order: -1;
    }

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

@media (max-width: 600px) {
    .header-inner {
        padding: 0.75rem 1rem;
    }

    .logo {
        height: 36px;
    }

    .visit-site-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .hero {
        padding: 6rem 1.25rem 3rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .features {
        padding: 3rem 1.25rem;
    }

    .about {
        padding: 3rem 1.25rem;
    }

    .footer-cta {
        padding: 3rem 1.25rem;
    }
}
