:root {
    --bg-color: #DAEAF4;
    --text-primary: #0D2233;
    --text-secondary: #4a6475;
    --accent-glow: #DAEAF4;
    --primary-color: #DAEAF4;
    --secondary-color: #92C4E0;
    --glass-bg: #DAEAF4;
    --glass-border: #DAEAF4;
}

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

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.background-glow {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, var(--accent-glow) 0%, transparent 40%);
    z-index: -1;
    pointer-events: none;
    animation: rotateGlow 25s linear infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Header & Glassmorphism */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #DAEAF4;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.15rem;
}

.nav-links a {
    color: #0D2233;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 500;
    padding: 0.45rem 0.85rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: #0D2233;
    color: #f4f8fb;
}

.nav-links a.is-active {
    background: #0D2233;
    color: #f4f8fb;
    box-shadow: 0 10px 24px rgba(13, 34, 51, 0.18);
}

/* Buttons */
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    border-radius: 50px;
    font-size: 0.98rem; font-weight: 500;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-btn,
.primary-btn {
    padding: 0.7rem 1.8rem;
    background: #0D2233;
    color: #ffffff;
}

.primary-btn {
    padding: 1rem 2.8rem;
    font-size: 1.1rem;
}

.secondary-btn {
    padding: 1rem 2.8rem;
    font-size: 1.1rem;
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.25);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 5% 2rem;
}

h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

h1 span {
    background: none;
    -webkit-text-fill-color: #4a90b8;
}

.hero-section p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.action-buttons {
    display: flex;
    gap: 1.5rem;
}

/* Features Section */
.features-section {
    padding: 3rem 5% 5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.team-intro-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 5% 2rem;
}

.team-intro-section h2 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #0D2233;
}

.team-intro-section h2 span {
    background: none;
    -webkit-text-fill-color: #4a90b8;
}

.team-intro-section p {
    font-size: 1.25rem;
    color: #0D2233;
    max-width: 600px;
    margin-bottom: 0;
}

.contact-team-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 300px));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto 5rem;
    padding: 0 5%;
    justify-content: center;
    align-items: start;
}

.team-card {
    align-self: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

.contact-team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    margin: 0 auto 1rem;
    border: 3px solid var(--secondary-color);
    display: block;
}

.team-card:nth-child(2n) .contact-team-image {
    border-color: var(--primary-color);
}

.team-card h3 {
    color: #0D2233;
}

.team-card p {
    color: #0D2233;
    font-weight: 600;
}

.join-section {
    width: min(1000px, 90%);
    margin: 0 auto 5rem;
    scroll-margin-top: 120px;
}

.join-card {
    color: #0D2233;
}

.join-copy {
    max-width: 820px;
    margin-bottom: 2rem;
}

.join-eyebrow {
    color: #4a90b8;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.join-card h2 {
    color: #0D2233;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.join-card p,
.join-card .join-points p {
    color: #0D2233;
}

.join-card .join-eyebrow {
    color: #4a90b8;
}

.join-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.join-points div {
    border: 1px solid rgba(13, 34, 51, 0.1);
    border-radius: 8px;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.22);
}

.join-card .join-points h3 {
    color: #0D2233;
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}

.join-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.join-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.55rem;
    min-height: 48px;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    background: #0D2233;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.join-button--invest {
    background: #4a90b8;
    color: #ffffff;
}

.join-button__icon {
    width: 1.05rem;
    height: 1.05rem;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.join-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(13, 34, 51, 0.16);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    background: #DAEAF4;
    border-color: #DAEAF4;
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: #0D2233;
}

.glass-card p {
    color: #0D2233;
}

/* Animations Utils */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    font-size: 2.2rem;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    color: #0D2233;
    z-index: 2000;
    margin-right: 1rem;
}

@media (max-width: 1120px) and (min-width: 769px) {
    nav {
        padding: 0.85rem 2%;
        gap: 0.45rem;
    }

    nav > a:first-child img {
        width: 42px !important;
        height: 42px !important;
    }

    nav > a:first-child span:first-child {
        font-size: 1.75rem !important;
    }

    nav > a:first-child span:last-child {
        font-size: 0.68rem !important;
        letter-spacing: 2px !important;
    }

    .nav-links {
        gap: 0.2rem;
    }

    .nav-links a {
        font-size: 0.78rem;
        padding: 0.3rem 0.4rem;
    }

    .cta-btn {
        padding: 0.5rem 0.7rem;
        font-size: 0.78rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: #DAEAF4;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        z-index: 1500;
    }

    .nav-links.active {
        right: 0;
    }

    .action-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .cta-btn {
        display: none;
    }

    .contact-team-section {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        width: min(520px, 88%);
        padding: 0;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .contact-team-image {
        width: 130px;
        height: 130px;
    }

    .team-card {
        padding: 1.25rem 1rem;
    }

    .join-section {
        width: min(520px, 88%);
        margin-bottom: 3rem;
    }

    .join-card {
        padding: 1.5rem;
    }

    .join-points {
        grid-template-columns: 1fr;
    }

    .join-button {
        width: 100%;
    }

    .join-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
