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

:root {
    --deep-blue: #001E3C;
    --lime: #C6FF00;
    --dark-text: #001E3C;
    --light-text: #FFFFFF;
    --lime-glow: rgba(198, 255, 0, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--deep-blue);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.hero {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--deep-blue);
    padding: 1.5rem 0;
    z-index: 1000;
}

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

.logo {
    max-width: 125px;
    height: auto;
}

.launching-text {
    color: var(--lime);
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
    background: rgba(198, 255, 0, 0.1);
    border: 1.5px solid var(--lime);
    padding: 0.375rem 0.95rem;
    border-radius: 50px;
    display: inline-block;
}

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

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

.lime-bold {
    color: var(--lime);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    display: block;
    margin-bottom: 0.5rem;
}

sup {
    font-size: 0.5em;
    vertical-align: super;
    line-height: 0;
}

.subheadline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.launch-text {
    color: var(--lime);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 3rem;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(198, 255, 0, 0.2);
    min-width: 100px;
}

.countdown-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--lime);
    line-height: 1;
}

.countdown-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--lime);
    opacity: 0.5;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 48px;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--lime);
    color: var(--dark-text);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--lime);
    border: 2px solid var(--lime);
}

.btn-secondary:hover {
    background-color: rgba(198, 255, 0, 0.1);
    transform: translateY(-2px);
}

.linkedin-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.about {
    background: linear-gradient(180deg, var(--deep-blue) 0%, rgba(0, 30, 60, 0.95) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0;
}

.about-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-text {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 7rem;
}

.about-text strong {
    color: var(--lime);
    font-weight: 600;
}

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

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

.promise-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(198, 255, 0, 0.15);
    transition: all 0.3s ease;
}

.promise-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(198, 255, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(198, 255, 0, 0.15);
}

.promise-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lime);
    margin-bottom: 1rem;
}

.promise-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.visual {
    background: linear-gradient(180deg, var(--deep-blue) 0%, rgba(0, 30, 60, 0.98) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0;
}

.visual-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.visual-text {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 7rem;
}

.huey-icon {
    max-width: 112px;
    width: 100%;
    height: auto;
    margin: 0 auto 0.25rem;
    display: block;
    filter: drop-shadow(0 0 40px var(--lime-glow)) drop-shadow(0 0 20px var(--lime));
    border-radius: 20px;
}

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

.huey-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(198, 255, 0, 0.15);
    transition: all 0.3s ease;
}

.huey-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(198, 255, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(198, 255, 0, 0.15);
}

.huey-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lime);
    margin-bottom: 1rem;
}

.huey-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.contact {
    background: var(--deep-blue);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0;
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.contact-heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.contact-email {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    background-color: var(--lime);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    min-height: 48px;
    cursor: pointer;
}

.contact-email:hover {
    transform: translateY(-2px);
}

.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    section {
        min-height: auto;
        padding: 4rem 0;
    }

    .hero {
        min-height: 100vh;
        padding: 6rem 0 3rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .header-bar {
        padding: 1rem 0;
    }
    
    .header-content {
        padding: 0 1.5rem;
    }
    
    .logo {
        max-width: 90px;
    }
    
    .launching-text {
        font-size: 0.65rem;
        padding: 0.3rem 0.75rem;
        letter-spacing: 0.03em;
    }

    .headline {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .subheadline {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        justify-content: center;
    }

    .about {
        padding: 4rem 0;
    }

    .about-text {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 3rem;
    }

    .lime-bold {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .promise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .promise-card {
        padding: 2rem 1.5rem;
    }

    .promise-title {
        font-size: 1.75rem;
    }

    .promise-description {
        font-size: 1rem;
    }

    .visual {
        padding: 4rem 0;
    }

    .visual-text {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 3rem;
    }

    .huey-icon {
        max-width: 90px;
    }

    .huey-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .huey-card {
        padding: 2rem 1.5rem;
    }

    .huey-title {
        font-size: 1.75rem;
    }

    .huey-description {
        font-size: 1rem;
    }

    .contact {
        padding: 4rem 0;
        min-height: 100vh;
    }

    .contact-heading {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1.5rem;
    }

    .contact-email {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }

    .footer {
        padding: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .header-content {
        padding: 0 1rem;
    }

    .logo {
        max-width: 70px;
    }

    .launching-text {
        font-size: 0.6rem;
        padding: 0.25rem 0.6rem;
        white-space: nowrap;
    }

    .headline {
        font-size: clamp(1.75rem, 9vw, 2.25rem);
        line-height: 1.15;
    }

    .subheadline {
        font-size: clamp(0.95rem, 4.5vw, 1.1rem);
    }

    .btn {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }

    .promise-card,
    .huey-card {
        padding: 1.75rem 1.25rem;
    }

    .promise-title,
    .huey-title {
        font-size: 1.5rem;
    }

    .promise-description,
    .huey-description {
        font-size: 0.95rem;
    }

    .contact-email {
        font-size: 0.95rem;
        padding: 0.75rem 1.75rem;
    }

    .footer p {
        font-size: 0.8rem;
    }
}
