/* ==========================================================
   RESET
========================================================== */

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

:root {
    --bg: #002b20;
    --bg-dark: #00261c;
    --panel: #07382a;
    --panel-light: #0a402f;
    --panel-border: rgba(255, 255, 255, .07);

    --green: #a8eb21;
    --green-light: #b8f436;

    --white: #f5f8f4;
    --text: #9eaea6;
    --muted: #73867d;

    --radius: 12px;
    --max-width: 1180px;
}

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

body {
    font-family: "Inter", Arial, sans-serif;
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}


/* ==========================================================
   HEADER
========================================================== */

.site-header {
    height: 78px;
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(0, 43, 32, .96);
    border-bottom: 1px solid rgba(255, 255, 255, .04);

    backdrop-filter: blur(15px);
}

.nav-container {
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-mark {
    width: 32px;
    height: 32px;

    position: relative;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;

    transform: rotate(45deg);
}

.logo-mark span {
    background: var(--green);
    border-radius: 2px;
}

.logo-mark span:nth-child(1),
.logo-mark span:nth-child(4) {
    opacity: .55;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 38px;

    margin-left: auto;
    margin-right: 45px;
}

.desktop-nav a {
    color: #a7b7af;

    font-size: 16px;
    font-weight: 600;

    transition: .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--green);
}

.nav-actions {
    display: flex;
    gap: 12px;
}


/* ==========================================================
   BUTTONS
========================================================== */

.btn {
    min-height: 43px;
    padding: 0 22px;

    border-radius: 5px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 700;

    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}

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

.btn-primary {
    background: var(--green);
    color: #0a2b17;
}

.btn-primary:hover {
    background: var(--green-light);
}

.btn-dark {
    border: 1px solid rgba(255, 255, 255, .15);

    color: var(--white);
    background: transparent;
}

.btn-dark:hover {
    border-color: var(--green);
}

.btn-outline-green {
    color: var(--green);

    border: 1px solid var(--green);
}

.btn-outline-green:hover {
    background: var(--green);
    color: var(--bg);
}
/*
.btn-small {
    min-height: 38px;

    padding: 0 18px;

    font-size: 11px;
}
*/

.btn-small {
    min-height: 42px;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 600;

}

/* ==========================================================
   MOBILE NAV
========================================================== */

.mobile-menu-button {
    display: none;

    background: transparent;
    border: 0;

    width: 35px;
}

.mobile-menu-button span {
    height: 2px;
    width: 100%;

    background: var(--white);

    display: block;

    margin: 6px 0;
}

.mobile-nav {
    display: none;
}


/* ==========================================================
   HERO
========================================================== */

.hero {
    padding: 85px 0 80px;
}

/*
.hero-grid {
    display: grid;
    grid-template-columns: 1.45fr .55fr;
    gap: 50px;
    align-items: center;
}
*/
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(420px, .7fr);
    gap: 45px;
    align-items: center;
}
.eyebrow,
.section-label {
    color: var(--green);

    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;

    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 20px;
}

.eyebrow span,
.section-label span {
    width: 24px;
    height: 1px;

    background: var(--green);
}

/*
.hero h1 {
    font-size: clamp(45px, 5.2vw, 76px);
    line-height: .98;
    letter-spacing: -4px;
    font-weight: 800;
    margin-bottom: 28px;
}
*/

.hero h1 {
    font-size: clamp(45px, 4.5vw, 72px);
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 800;
    margin-bottom: 28px;
    white-space: nowrap;
}

.hero h1 span {
    color: var(--green);
}

h2 span {
    color: var(--green);
}

small span {
    color: var(--green);
}

.hero h2 {
    font-size: 22px;

    margin-bottom: 20px;
}

/*
.hero p {
    color: var(--text);
    max-width: 590px;
    font-size: 15px;
    line-height: 1.85;
}
*/

.hero p {
    color: var(--text);
    max-width: 1050px;
    font-size: 15px;
    line-height: 1.85;
}

.hero-buttons {
    display: flex;

    gap: 12px;

    margin-top: 32px;
}


/* ==========================================================
   AI CHAT CARD
========================================================== */

.ai-card {
    background: #083a2b;

    border: 1px solid rgba(255, 255, 255, .06);

    border-radius: 12px;

    padding: 20px;

    box-shadow: 0 25px 70px rgba(0, 0, 0, .15);
}

.ai-card-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    font-size: 11px;

    margin-bottom: 25px;
}

.status-dot {
    display: inline-block;

    width: 8px;
    height: 8px;

    background: var(--green);

    border-radius: 50%;

    margin-right: 8px;
}

.chat-time {
    color: #82968b;

    font-size: 9px;
}

.chat-window {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.message {
    padding: 15px 17px;

    border-radius: 9px;

    font-size: 12px;

    line-height: 1.6;

    max-width: 90%;
}

.user-message {
    align-self: flex-end;

    background: #104936;
}

.ai-message {
    align-self: flex-start;

    background: #16543c;

    color: #dbe7df;
}

.typing {
    width: 50px;

    padding: 10px;

    background: #164b38;

    border-radius: 8px;

    display: flex;

    gap: 4px;
}

.typing span {
    width: 5px;
    height: 5px;

    background: var(--green);

    border-radius: 50%;

    animation: blink 1.4s infinite;
}

.typing span:nth-child(2) {
    animation-delay: .2s;
}

.typing span:nth-child(3) {
    animation-delay: .4s;
}

@keyframes blink {

    0%,
    80%,
    100% {
        opacity: .2;
    }

    40% {
        opacity: 1;
    }
}


/* ==========================================================
   STATS
========================================================== */

.stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 12px;

    margin-top: 65px;
}

.stat-card {
    background: #07382a;

    border: 1px solid var(--panel-border);

    border-radius: 10px;

    min-height: 120px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;
}

.stat-card strong {
    color: var(--green);

    font-size: 26px;
}

.stat-card span {
    color: #82948b;

    font-size: 10px;

    margin-top: 8px;
}


/* ==========================================================
   GENERIC SECTIONS
========================================================== */

.section {
    padding: 85px 0;
}

.section-heading {
    margin-bottom: 40px;
}

.section-heading h2,
.about-copy h2,
.founder-card h2 {
    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 18px;
}

.section-heading p,
.about-copy p {
    color: var(--text);

    max-width: 1050px;

    font-size: 14px;
}


/* ==========================================================
   ABOUT
========================================================== */

.about-grid {
    display: grid;

    grid-template-columns: 1fr .85fr;

    gap: 90px;

    align-items: center;
}

.about-copy p {
    margin-bottom: 20px;
}

.about-copy .btn {
    margin-top: 8px;
}

.benefits-card {
    padding: 35px;

    background: #083a2b;

    border: 1px solid var(--panel-border);

    border-radius: var(--radius);
}

.benefits-card h3 {
    font-size: 11px;

    letter-spacing: 2px;

    color: #91a49a;

    margin-bottom: 25px;
}

.benefits-card ul {
    list-style: none;
}

.benefits-card li {
    color: #c1cec7;

    font-size: 13px;

    padding: 14px 0 14px 27px;

    border-bottom: 1px solid rgba(255, 255, 255, .06);

    position: relative;
}

.benefits-card li:last-child {
    border-bottom: 0;
}

.benefits-card li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: var(--green);

    font-weight: 800;
}


/* ==========================================================
   FEATURES
========================================================== */

.feature-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
}

.feature-card,
.step-card,
.testimonial-card {
    background: #07382a;

    border: 1px solid var(--panel-border);

    border-radius: var(--radius);
}

.feature-card {
    min-height: 220px;

    padding: 28px;
}

.feature-icon {
    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    color: var(--green);

    background: rgba(168, 235, 33, .08);

    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 15px;

    margin-bottom: 14px;
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    color: #82958b;

    font-size: 12px;

    margin: 7px 0;
}

.feature-card li::before {
    content: "— ";

    color: var(--green);
}


/* ==========================================================
   STEPS
========================================================== */

.steps-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 14px;
}

.step-card {
    padding: 28px;

    min-height: 205px;
}

.step-number {
    color: var(--green);

    font-size: 10px;

    letter-spacing: 1px;

    font-weight: 800;

    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.step-card p {
    color: #84978d;
    font-size: 14px;
}


/* ==========================================================
   AUDIENCE
========================================================== */

.tags {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin: -10px 0 40px;
}

.tags span {
    color: #84978d;

    border: 1px solid rgba(255, 255, 255, .1);

    border-radius: 30px;

    padding: 7px 14px;

    font-size: 10px;
}

.testimonial-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
}

.testimonial-card {
    padding: 25px;
}

.stars {
    color: var(--green);

    letter-spacing: 3px;

    font-size: 11px;

    margin-bottom: 12px;
}

.testimonial-card blockquote {
    font-size: 13px;

    color: #e0e8e3;

    margin-bottom: 18px;
}

.testimonial-author {
    display: flex;

    gap: 6px;

    align-items: center;

    font-size: 9px;
}

.testimonial-author span {
    color: #71847a;
}


/* ==========================================================
   FOUNDER
========================================================== */

.founder-section {
    padding-top: 60px;
}

.founder-card {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    background: #07382a;

    border: 1px solid var(--panel-border);

    border-radius: 14px;

    padding: 50px;
}

.founder-card p {
    color: var(--text);

    font-size: 14px;
}

.founder-quote {
    display: flex;

    align-items: center;

    gap: 25px;
}

.founder-quote > span {
    font-size: 100px;

    line-height: .5;

    color: var(--green);
}

.founder-quote p {
    font-size: 21px;

    color: var(--white);

    font-weight: 600;
}


/* ==========================================================
   CTA
========================================================== */

.cta-section {
    padding: 70px 0 100px;
}

.cta-card {
    text-align: center;

    border-radius: 17px;

    border: 1px solid rgba(255, 255, 255, .07);

    background:
        radial-gradient(
            circle at center,
            rgba(23, 85, 57, .7),
            #07382a 65%
        );

    padding: 70px 20px;
}

.centered {
    justify-content: center;
}

.cta-card h2 {
    font-size: clamp(34px, 5vw, 52px);

    letter-spacing: -2px;

    margin-bottom: 20px;
}

.cta-card h2 span {
    color: var(--green);
}

.cta-card p {
    max-width: 680px;

    margin: 0 auto 30px;

    color: #91a49a;

    font-size: 13px;
}

.cta-card small {
    display: block;

    color: #6f8278;

    font-size: 9px;

    margin-top: 17px;
}


/* ==========================================================
   INVEST
========================================================== */

.invest-section {
    display: none;

    padding: 80px 0;

    background: var(--bg-dark);
}

.invest-inner {
    text-align: center;
}

.invest-inner h2 {
    font-size: 40px;

    margin-bottom: 10px;
}

.invest-inner p {
    color: var(--text);

    margin-bottom: 25px;
}


/* ==========================================================
   FOOTER
========================================================== */

footer {
    padding: 45px 0;

    border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-grid {
    display: grid;

    grid-template-columns: 1fr 2fr auto;

    align-items: center;

    gap: 30px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-brand p {
    color: #6f8378;
    font-size: 12px;
    margin-bottom: 10px;
}

.footer-brand small {
    color: #53685e;

    font-size: 10px;
}

.footer-links {
    display: flex;

    justify-content: center;

    gap: 25px;

    flex-wrap: wrap;
}

.footer-links a {
    font-size: 12px;
    font-weight: 500;
    color: #71847a;
}

.footer-links a:hover {
    color: var(--green);
}

.social-links {
    display: flex;

    gap: 8px;
}

.social-links a {
    width: 32px;
    height: 32px;

    border: 1px solid rgba(255, 255, 255, .1);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #879990;

    font-size: 12px;
}

.social-links a:hover {
    border-color: var(--green);

    color: var(--green);
}


/* ==========================================================
   MODAL
========================================================== */

.modal {
    position: fixed;

    inset: 0;

    z-index: 3000;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 20, 15, .85);

    backdrop-filter: blur(8px);
}

.modal-card {
    position: relative;

    z-index: 2;

    width: min(100%, 480px);

    background: #07382a;

    border: 1px solid rgba(255, 255, 255, .1);

    border-radius: 15px;

    padding: 40px;
}

.modal-card h2 {
    font-size: 40px;

    margin-bottom: 12px;
}

.modal-card > p {
    color: var(--text);

    font-size: 13px;

    margin-bottom: 25px;
}

.modal-close {
    position: absolute;

    top: 15px;
    right: 18px;

    background: transparent;

    color: #879990;

    border: 0;

    font-size: 28px;
}

.modal form {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.modal input {
    width: 100%;

    height: 50px;

    padding: 0 15px;

    border: 1px solid rgba(255, 255, 255, .1);

    border-radius: 5px;

    outline: none;

    background: #002d21;

    color: white;
}

.modal input:focus {
    border-color: var(--green);
}

.form-button {
    border: 0;

    width: 100%;
}

.form-success {
    display: none;

    margin-top: 20px;

    color: var(--green);

    text-align: center;

    font-size: 13px;
}


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

@media (max-width: 950px) {

    .desktop-nav,
    .nav-actions {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-nav {
        position: absolute;

        left: 0;
        top: 72px;

        width: 100%;

        background: #043326;

        border-top: 1px solid rgba(255, 255, 255, .05);

        padding: 15px 5%;
    }

    .mobile-nav.show {
        display: flex;

        flex-direction: column;
    }

    .mobile-nav a {
        padding: 13px 0;

        border-bottom: 1px solid rgba(255, 255, 255, .05);

        font-size: 13px;
    }

    .hero-grid,
    .about-grid,
    .founder-card {
        grid-template-columns: 1fr;
    }

    .hero-grid,
    .about-grid {
        gap: 45px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .footer-logo,
    .social-links {
        justify-content: center;
    }
}


@media (max-width: 650px) {

    .hero {
        padding-top: 55px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .feature-grid,
    .steps-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        min-height: 95px;
    }

    .section {
        padding: 65px 0;
    }

    .founder-card {
        padding: 30px;

        gap: 40px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .ai-card-header {
        align-items: flex-start;

        gap: 10px;

        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;

        gap: 10px;
    }
}

@media (max-width: 950px) {

    .hero-grid {

        grid-template-columns: minmax(0, 1fr);

        gap: 45px;

        width: 100%;

    }

    .hero-content {

        min-width: 0;

        width: 100%;

    }

    .hero h1 {

        white-space: normal;

        overflow-wrap: break-word;

    }

    .ai-card {

        width: 100%;

        min-width: 0;

        max-width: 100%;

    }

}

@media (max-width: 650px) {

    .hero {

        padding-top: 55px;

    }

    .hero-grid {

        grid-template-columns: minmax(0, 1fr);

        gap: 35px;

    }

    .hero h1 {

        white-space: normal;

        font-size: clamp(42px, 13vw, 60px);

        letter-spacing: -2px;

    }

    .ai-card {

        width: 100%;

        min-width: 0;

        max-width: 100%;

        padding: 18px;

    }

}