/* ============================================
   GOVOICEAGENT — STYLES
   Retro-Futuristic 90s Terminal Aesthetic
   ============================================ */

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

:root {
    --black: #0a0a0a;
    --amber: #FF6B00;
    --lime: #CCFF00;
    --white: #FFFFFF;
    --font-display: 'VT323', monospace;
    --font-body: 'IBM Plex Mono', monospace;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    cursor: crosshair;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--amber);
    text-decoration: none;
    cursor: crosshair;
}

a:hover {
    color: var(--lime);
}

::selection {
    background: var(--amber);
    color: var(--black);
}


/* === BUTTONS === */
.btn {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    padding: 14px 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    cursor: crosshair;
    position: relative;
}

.btn--filled {
    background: var(--amber);
    color: var(--black);
    border: 2px solid var(--amber);
    box-shadow: 4px 4px 0px var(--amber);
}

.btn--filled:hover {
    color: var(--black);
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px var(--amber);
}

.btn--bordered {
    background: transparent;
    color: var(--amber);
    border: 2px solid var(--amber);
    box-shadow: 4px 4px 0px var(--amber);
}

.btn--bordered:hover {
    color: var(--lime);
    border-color: var(--lime);
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px var(--lime);
}

.btn--dark {
    background: var(--black);
    color: var(--amber);
    border: 2px solid var(--black);
    box-shadow: 4px 4px 0px var(--black);
    font-size: 1.4rem;
    padding: 18px 48px;
}

.btn--dark:hover {
    transform: translate(4px, 4px);
    box-shadow: 0px 0px 0px var(--black);
}


/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--black);
    border-bottom: 3px solid var(--amber);
    z-index: 1000;
    height: 70px;
}

.nav__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--amber);
    letter-spacing: 2px;
}

.nav__logo:hover {
    color: var(--lime);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.nav__link:hover {
    color: var(--amber);
}

.nav__cta {
    font-family: var(--font-display);
    font-size: 1.1rem;
    padding: 8px 20px;
    border: 2px solid var(--amber);
    color: var(--amber);
    box-shadow: 3px 3px 0px var(--amber);
    transition: transform 0.1s, box-shadow 0.1s;
}

.nav__cta:hover {
    transform: translate(3px, 3px);
    box-shadow: 0 0 0 var(--amber);
    color: var(--lime);
    border-color: var(--lime);
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: crosshair;
    padding: 8px;
    z-index: 1100;
}

.nav__hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--amber);
    transition: all 0.3s;
}

.nav__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* === MOBILE MENU === */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--black);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: color 0.2s;
}

.mobile-menu__link:hover {
    color: var(--amber);
}

.mobile-menu__cta {
    font-family: var(--font-display);
    font-size: 1.5rem;
    padding: 14px 32px;
    border: 2px solid var(--amber);
    color: var(--amber);
    box-shadow: 4px 4px 0px var(--amber);
    margin-top: 20px;
    transition: transform 0.1s, box-shadow 0.1s;
}

.mobile-menu__cta:hover {
    transform: translate(4px, 4px);
    box-shadow: 0 0 0 var(--amber);
}


/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 40px 0;
    overflow: hidden;
}

.hero__scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 107, 0, 0.03) 2px,
        rgba(255, 107, 0, 0.03) 4px
    );
    pointer-events: none;
    z-index: 1;
}

.hero__grid {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero__agent {
    width: 100%;
    max-width: 550px;
    height: auto;
    position: relative;
    z-index: 1;
    animation: agentFloat 4s ease-in-out infinite;
}

@keyframes agentFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 28px;
    opacity: 0;
    animation: heroHeadlineFade 0.8s ease-out 0.4s forwards;
}

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

.hero__sub {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin-bottom: 36px;
    line-height: 1.8;
    font-weight: 400;
}

.hero__ctas {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero__meta {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    margin-bottom: 0;
}


/* === TICKER === */
.ticker {
    position: relative;
    z-index: 2;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    border-top: 2px solid var(--amber);
    border-bottom: 2px solid var(--amber);
    background: rgba(255, 107, 0, 0.05);
    padding: 14px 0;
    margin-top: 60px;
}

.ticker__track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: tickerScroll 20s linear infinite;
    width: max-content;
}

.ticker__item {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--amber);
    letter-spacing: 2px;
    padding: 0 12px;
}

.ticker__sep {
    color: var(--lime);
    padding: 0 12px;
    font-size: 1.2rem;
}

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


/* === SECTIONS (shared) === */
.section {
    position: relative;
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section__number {
    position: absolute;
    top: 40px;
    left: 40px;
    font-family: var(--font-display);
    font-size: clamp(6rem, 15vw, 12rem);
    color: rgba(255, 107, 0, 0.07);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.section__inner {
    position: relative;
    z-index: 1;
}

.section__headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 900px;
}

.section__sub {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin-bottom: 60px;
    line-height: 1.8;
}

.section__body {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 600px;
}


/* === DIVIDERS === */
.divider {
    height: 80px;
    background: var(--black);
    clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 60%);
    position: relative;
    margin: -1px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--amber);
    transform: rotate(-1.5deg);
    opacity: 0.3;
}

.divider--2 { clip-path: polygon(0 40%, 100% 0, 100% 60%, 0 100%); }
.divider--2::before { transform: rotate(1.5deg); }
.divider--3 { clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 60%); }
.divider--4 { clip-path: polygon(0 40%, 100% 0, 100% 60%, 0 100%); }
.divider--4::before { transform: rotate(1.5deg); }
.divider--5 { clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 60%); }


/* === SECTION: PROBLEM === */
.section--problem__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stat__dollar {
    font-family: var(--font-display);
    font-size: clamp(5rem, 12vw, 10rem);
    color: var(--amber);
    display: block;
    line-height: 1;
}

.stat__label {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-top: 12px;
}

.section--problem__stat {
    text-align: right;
}


/* === SECTION: AGENTS === */
.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.agent-card {
    border: 2px solid var(--amber);
    box-shadow: 4px 4px 0px var(--amber);
    background: rgba(255, 107, 0, 0.03);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.agent-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--amber);
}

.agent-card__header {
    padding: 24px 28px 16px;
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.agent-card__num {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--lime);
}

.agent-card__name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white);
    line-height: 1.2;
}

.agent-card__body {
    padding: 20px 28px;
    flex: 1;
}

.agent-card__label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    margin-top: 18px;
    font-weight: 600;
}

.agent-card__label:first-child {
    margin-top: 0;
}

.agent-card__text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.agent-card__result {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--lime);
    font-weight: 600;
}

.agent-card__footer {
    padding: 16px 28px;
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--amber);
    letter-spacing: 2px;
}


/* === SECTION: HOW IT WORKS (TIMELINE) === */
.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.timeline__line {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    border-top: 2px dashed var(--amber);
    z-index: 0;
}

.timeline__step {
    position: relative;
    z-index: 1;
}

.timeline__dot {
    width: 16px;
    height: 16px;
    background: var(--amber);
    border: 3px solid var(--black);
    outline: 2px solid var(--amber);
    margin-bottom: 24px;
}

.timeline__card {
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 24px;
    background: rgba(255, 107, 0, 0.03);
}

.timeline__day {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--lime);
    display: block;
    margin-bottom: 8px;
}

.timeline__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.timeline__text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}


/* === SECTION: WHO IT'S FOR === */
.checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 60px;
    margin-top: 48px;
}

.checklist__item {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    padding: 16px 0;
    border-bottom: 1px dotted rgba(255, 107, 0, 0.2);
}

.checklist__check {
    font-family: var(--font-display);
    color: var(--amber);
    font-size: 1.2rem;
    margin-right: 10px;
}


/* === SECTION: WHY GOVOICEAGENT === */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    border: 2px solid var(--amber);
    padding: 36px;
    box-shadow: 4px 4px 0px var(--amber);
    transition: transform 0.2s, box-shadow 0.2s;
    background: rgba(255, 107, 0, 0.02);
}

.feature-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--amber);
    border-style: dotted;
}

.feature-card__title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--amber);
    margin-bottom: 16px;
    line-height: 1.2;
}

.feature-card__text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}


/* === SECTION: FAQ === */
.faq-list {
    max-width: 800px;
    margin-top: 48px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

.faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    padding: 24px 0;
    text-align: left;
    cursor: crosshair;
    transition: color 0.2s;
    gap: 20px;
}

.faq-item__question:hover {
    color: var(--amber);
}

.faq-item__icon {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--amber);
    flex-shrink: 0;
    transition: transform 0.3s;
}

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

.faq-item.active .faq-item__answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-item__answer p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}


/* === SECTION: FINAL CTA === */
.section--cta {
    background: var(--amber);
    max-width: 100%;
    padding: 100px 40px;
    text-align: center;
}

.section--cta__inner {
    max-width: 800px;
    margin: 0 auto;
}

.section--cta__headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 24px;
}

.section--cta__body {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--black);
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.85;
}

.section--cta__meta {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--black);
    opacity: 0.6;
    margin-top: 24px;
    letter-spacing: 0.5px;
}


/* === FOOTER === */
.footer {
    background: var(--black);
    border-top: 3px solid var(--amber);
    padding: 60px 40px 0;
}

.footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 40px;
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--amber);
    letter-spacing: 2px;
}

.footer__col--tagline p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    text-align: center;
}

.footer__col--links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.footer__link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--amber);
    transition: color 0.2s;
}

.footer__link:hover {
    color: var(--lime);
}

.footer__bar {
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer__bar p {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
}


/* === GSAP ANIMATION STATES === */
.gs-fade {
    opacity: 0;
    transform: translateY(30px);
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline__line {
        display: none;
    }

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

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__hamburger {
        display: flex;
    }

    .nav__inner {
        padding: 0 20px;
    }

    .hero {
        padding: 100px 20px 0;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .hero__image {
        margin-bottom: 10px;
    }

    .hero__agent {
        max-width: 280px;
    }

    .hero__ctas {
        flex-direction: column;
        gap: 14px;
    }

    .hero__ctas .btn {
        text-align: center;
    }

    .section {
        padding: 80px 20px;
    }

    .section__number {
        left: 20px;
        top: 20px;
    }

    .section--problem__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section--problem__stat {
        text-align: left;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .checklist {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

    .footer__col--links {
        align-items: center;
    }

    .footer__col--tagline p {
        text-align: center;
    }

    .section--cta {
        padding: 80px 20px;
    }

    .btn--dark {
        font-size: 1.1rem;
        padding: 16px 32px;
    }

    .divider {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero__headline {
        font-size: 2.2rem;
    }

    .section__headline {
        font-size: 1.8rem;
    }

    .agent-card__name {
        font-size: 1.3rem;
    }

    .stat__dollar {
        font-size: 4rem;
    }

    .btn {
        font-size: 1rem;
        padding: 12px 24px;
        width: 100%;
        text-align: center;
    }
}
