﻿:root {
    --blue: #1565C0;
    --blue-light: #1E88E5;
    --blue-pale: #E3F2FD;
    --green: #2E7D32;
    --green-light: #43A047;
    --green-pale: #E8F5E9;
    --gold: #F9A825;
    --white: #ffffff;
    --off-white: #F7FBF7;
    --text-dark: #1a2e1a;
    --text-mid: #3a4a3a;
    --shadow: 0 8px 32px rgba(21,101,192,0.13);
    --radius: 20px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 2px 18px rgba(21,101,192,0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue) 40%, var(--green-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

    .nav-logo-text span:first-child {
        font-family: 'Fredoka One', cursive;
        font-size: 1.25rem;
        color: var(--blue);
    }

    .nav-logo-text span:last-child {
        font-family: 'Fredoka One', cursive;
        font-size: 1.25rem;
        color: var(--green);
    }

.nav-links {
    display: flex;
    gap: 6px;
    list-style: none;
    align-items: center;
}

    .nav-links a {
        text-decoration: none;
        font-weight: 700;
        font-size: 0.95rem;
        color: var(--text-mid);
        padding: 8px 16px;
        border-radius: 50px;
        transition: background 0.2s, color 0.2s;
        letter-spacing: 0.01em;
    }

        .nav-links a:hover {
            background: var(--blue-pale);
            color: var(--blue);
        }

        .nav-links a.cta {
            background: var(--blue);
            color: white;
            padding: 8px 22px;
        }

            .nav-links a.cta:hover {
                background: var(--blue-light);
            }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

    .hamburger span {
        display: block;
        width: 26px;
        height: 3px;
        background: var(--blue);
        border-radius: 3px;
        transition: all 0.3s;
    }

/* ── HERO ── */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #E3F2FD 0%, #F7FBF7 45%, #E8F5E9 100%);
    padding: 60px 5vw 40px;
}

.hero-bg-circles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

    .hero-bg-circles span {
        position: absolute;
        border-radius: 50%;
        opacity: 0.13;
    }

        .hero-bg-circles span:nth-child(1) {
            width: 520px;
            height: 520px;
            background: var(--blue);
            top: -140px;
            left: -120px;
        }

        .hero-bg-circles span:nth-child(2) {
            width: 380px;
            height: 380px;
            background: var(--green);
            bottom: -100px;
            right: -80px;
        }

        .hero-bg-circles span:nth-child(3) {
            width: 200px;
            height: 200px;
            background: var(--gold);
            top: 60%;
            left: 48%;
            opacity: 0.09;
        }

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    min-width: 280px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-pale);
    color: var(--blue);
    font-weight: 800;
    font-size: 0.82rem;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    animation: fadeSlideUp 0.6s ease both;
}

    .hero-badge::before {
        content: '🌱';
        font-size: 1rem;
    }

.hero-h1 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeSlideUp 0.7s 0.1s ease both;
}

    .hero-h1 .blue {
        color: var(--blue);
    }

    .hero-h1 .green {
        color: var(--green);
    }

.hero-sub {
    font-size: 1.12rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 600;
    animation: fadeSlideUp 0.7s 0.2s ease both;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 38px;
    animation: fadeSlideUp 0.7s 0.3s ease both;
}

.hero-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--white);
    border: 2px solid var(--blue-pale);
    border-radius: 50px;
    padding: 7px 16px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-mid);
    box-shadow: 0 2px 8px rgba(21,101,192,0.07);
}

    .hero-pill .dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
    }

        .hero-pill .dot.blue {
            background: var(--blue);
        }

        .hero-pill .dot.green {
            background: var(--green-light);
        }

        .hero-pill .dot.gold {
            background: var(--gold);
        }

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.7s 0.4s ease both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.18s, box-shadow 0.18s;
    font-family: 'Nunito', sans-serif;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-primary {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    color: white;
    box-shadow: 0 6px 22px rgba(21,101,192,0.30);
}

    .btn-primary:hover {
        box-shadow: 0 10px 30px rgba(21,101,192,0.40);
    }

.btn-secondary {
    background: var(--white);
    color: var(--green);
    border: 2.5px solid var(--green-light);
    box-shadow: 0 4px 14px rgba(46,125,50,0.12);
}

    .btn-secondary:hover {
        box-shadow: 0 8px 22px rgba(46,125,50,0.20);
    }

.hero-image {
    flex: 0 0 420px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    animation: fadeSlideUp 0.8s 0.25s ease both;
}

    .hero-image img {
        width: 100%;
        max-width: 420px;
        filter: drop-shadow(0 20px 48px rgba(21,101,192,0.16));
        animation: float 4s ease-in-out infinite;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

/* ── STATS BAR ── */
.stats-bar {
    background: linear-gradient(135deg, var(--blue) 0%, #1976D2 100%);
    color: white;
    padding: 32px 5vw;
    display: flex;
    justify-content: center;
    gap: 0;
}

.stat-item {
    flex: 1;
    max-width: 220px;
    text-align: center;
    padding: 0 24px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-num {
    font-family: 'Fredoka One', cursive;
    font-size: 2.2rem;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.88rem;
    font-weight: 700;
    opacity: 0.9;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── SECTION COMMON ── */
section {
    padding: 90px 5vw;
}

.section-tag {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green);
    font-weight: 800;
    font-size: 0.78rem;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

    .section-tag.blue-tag {
        background: var(--blue-pale);
        color: var(--blue);
    }

.section-h2 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-mid);
    font-weight: 600;
    line-height: 1.7;
    max-width: 560px;
}

/* ── INVEST SECTION ── */
#investment {
    background: var(--white);
}

.invest-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.invest-text {
    flex: 1;
}

.invest-cards {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.invest-card {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 28px 22px;
    border: 2px solid transparent;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: default;
}

    .invest-card:hover {
        border-color: var(--blue-light);
        transform: translateY(-4px);
        box-shadow: var(--shadow);
    }

    .invest-card .ic-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        margin-bottom: 14px;
    }

.ic-icon.blue-bg {
    background: var(--blue-pale);
}

.ic-icon.green-bg {
    background: var(--green-pale);
}

.ic-icon.gold-bg {
    background: #FFF8E1;
}

.invest-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.12rem;
    color: var(--blue);
    margin-bottom: 6px;
}

.invest-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    font-weight: 600;
    line-height: 1.6;
}

/* ── FOUNDERS ── */
#founders {
    background: linear-gradient(160deg, #E8F5E9 0%, var(--off-white) 100%);
}

.founders-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.founders-header {
    text-align: center;
    margin-bottom: 52px;
}

    .founders-header .section-sub {
        margin: 0 auto;
    }

.founders-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.founder-card {
    background: var(--white);
    border-radius: 28px;
    padding: 40px 32px;
    text-align: center;
    flex: 1;
    min-width: 260px;
    max-width: 340px;
    box-shadow: 0 6px 28px rgba(46,125,50,0.09);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

    .founder-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
    }

    .founder-card.fc-blue::before {
        background: linear-gradient(90deg, var(--blue), var(--blue-light));
    }

    .founder-card.fc-green::before {
        background: linear-gradient(90deg, var(--green), var(--green-light));
    }

    .founder-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 48px rgba(46,125,50,0.15);
    }

.founder-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    border: 4px solid var(--blue-pale);
}

.founder-card.fc-green .founder-avatar {
    border-color: var(--green-pale);
}

.founder-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: var(--blue);
    margin-bottom: 4px;
}

.founder-card.fc-green h3 {
    color: var(--green);
}

.founder-role {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 16px;
}

.founder-card.fc-blue .founder-role {
    color: var(--blue-light);
}

.founder-card p {
    font-size: 0.93rem;
    color: var(--text-mid);
    font-weight: 600;
    line-height: 1.7;
}

/* ── RESOURCES ── */
#resources {
    background: var(--white);
}

.resources-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.resources-header {
    margin-bottom: 52px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.resource-card {
    border-radius: var(--radius);
    padding: 34px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

    .resource-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 44px rgba(0,0,0,0.10);
    }

.rc-blue {
    background: linear-gradient(135deg, var(--blue-pale) 0%, #BBDEFB 100%);
}

.rc-green {
    background: linear-gradient(135deg, var(--green-pale) 0%, #C8E6C9 100%);
}

.rc-gold {
    background: linear-gradient(135deg, #FFF9C4 0%, #FFF3CD 100%);
}

.resource-card .rc-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
    display: block;
}

.resource-card h3 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.22rem;
    margin-bottom: 10px;
}

.rc-blue h3 {
    color: var(--blue);
}

.rc-green h3 {
    color: var(--green);
}

.rc-gold h3 {
    color: #E65100;
}

.resource-card p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-mid);
    line-height: 1.65;
    margin-bottom: 18px;
}

.rc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none;
    letter-spacing: 0.03em;
}

.rc-blue .rc-link {
    color: var(--blue);
}

.rc-green .rc-link {
    color: var(--green);
}

.rc-gold .rc-link {
    color: #E65100;
}

/* ── CONTACT ── */
#contact {
    background: linear-gradient(160deg, #E3F2FD 0%, var(--off-white) 100%);
}

.contact-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-text {
    flex: 1;
}

.contact-info {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: 0 2px 12px rgba(21,101,192,0.07);
}

.ci-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.ci-blue {
    background: var(--blue-pale);
}

.ci-green {
    background: var(--green-pale);
}

.contact-info-item span {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-mid);
}

.contact-form {
    flex: 1;
    background: var(--white);
    border-radius: 28px;
    padding: 40px 36px;
    box-shadow: var(--shadow);
}

    .contact-form h3 {
        font-family: 'Fredoka One', cursive;
        font-size: 1.5rem;
        color: var(--blue);
        margin-bottom: 24px;
    }

.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        display: block;
        font-weight: 800;
        font-size: 0.85rem;
        color: var(--text-mid);
        margin-bottom: 7px;
        letter-spacing: 0.03em;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 12px 16px;
        border: 2px solid #E0E0E0;
        border-radius: 12px;
        font-family: 'Nunito', sans-serif;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--text-dark);
        background: var(--off-white);
        transition: border-color 0.2s;
        outline: none;
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--blue-light);
            background: var(--white);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 110px;
    }

.form-submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.18s, box-shadow 0.18s;
    box-shadow: 0 6px 20px rgba(21,101,192,0.28);
}

    .form-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(21,101,192,0.38);
    }

/* ── FOOTER ── */
footer {
    background: linear-gradient(135deg, #0D47A1 0%, #1B5E20 100%);
    color: white;
    padding: 56px 5vw 28px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 28px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-box {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 1px solid rgba(255,255,255,0.25);
}

.footer-logo-text {
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    line-height: 1;
}

    .footer-logo-text span:first-child {
        color: #90CAF9;
    }

    .footer-logo-text span:last-child {
        color: #A5D6A7;
    }

.footer-mission {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-tagline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 800;
    opacity: 0.9;
    letter-spacing: 0.04em;
}

    .footer-tagline .heart {
        color: var(--gold);
        font-size: 1rem;
    }

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    margin-bottom: 16px;
    color: #90CAF9;
    letter-spacing: 0.03em;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-col ul li a {
        text-decoration: none;
        color: rgba(255,255,255,0.78);
        font-weight: 600;
        font-size: 0.9rem;
        transition: color 0.2s;
    }

        .footer-col ul li a:hover {
            color: white;
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 0.82rem;
    opacity: 0.65;
    font-weight: 600;
}

.footer-note {
    font-size: 0.82rem;
    opacity: 0.65;
    font-weight: 600;
}

    .footer-note a {
        color: #A5D6A7;
        text-decoration: none;
    }

        .footer-note a:hover {
            text-decoration: underline;
        }

/* ── ANIMATIONS ── */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        flex: none;
        width: 100%;
    }

    .hero-pills {
        justify-content: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .invest-inner {
        flex-direction: column;
    }

    .contact-inner {
        flex-direction: column;
    }

    .stats-bar {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-bottom: 20px;
    }

        .stat-item:last-child {
            border-bottom: none;
        }
}

@media (max-width: 700px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        padding: 16px 24px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.10);
        gap: 4px;
    }

        .nav-links.open {
            display: flex;
        }

    .hamburger {
        display: flex;
    }

    .invest-cards {
        grid-template-columns: 1fr;
    }

    .footer-links {
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
 