/* ================= GLOBAL ================= */

body {
    margin: 0;
    font-family: "Inter", sans-serif;

    background: linear-gradient(180deg, #f3f7ff 0%, #e2edff 50%, #cddffe 100%);
    background-attachment: fixed;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Decorative waves */
body::before,
body::after {
    content: "";
    position: fixed;
    z-index: -1;
    filter: blur(55px);
}

body::before {
    width: 700px;
    height: 700px;
    top: -180px;
    right: -180px;
    background: rgba(0,130,255,0.28);
}

body::after {
    width: 620px;
    height: 620px;
    bottom: -160px;
    left: -160px;
    background: rgba(0,200,255,0.22);
}

/* ================= BRAND ================= */

.top-brand {
    text-align: center;
    font-size: 54px;
    font-weight: 800;
    margin-top: 55px;
    margin-bottom: 22px;
    background: linear-gradient(90deg, #2b72ff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 16px rgba(0,130,255,0.25);
    letter-spacing: 3px;
}

/* ================= NAVBAR ================= */

.nav-bar {
    display: flex;
    gap: 16px;
    justify-content: center;
    padding: 20px 0;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e6eefa;
}

.nav-bar a,
.nav-bar .soon {
    position: relative; /* FIX for ::after underline */
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 10px;
    color: #1c1c1c;
    transition: 0.25s;
}

.nav-bar a:hover {
    color: #007bff;
    transform: translateY(-2px);
}

.nav-bar a:hover::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #007bff;
    border-radius: 2px;
}

.divider {
    opacity: .5;
    display: flex;
    align-items: center;
}

.soon {
    opacity: 0.45;
    cursor: default;
}

/* ================= HERO ================= */

.hero {
    text-align: center;
    max-width: 900px;
    margin: 90px auto 60px auto;
    animation: fadein 0.7s ease-in-out;
}

.hero h1 {
    font-size: 56px;
    font-weight: 900;
    color: #0d1a33;
}

.hero p {
    margin-top: 16px;
    margin-bottom: 36px;
    font-size: 22px;
    color: #3a4555;
    line-height: 1.6;
}

/* HERO BUTTONS */

.hero-buttons a {
    margin: 0 10px;
}

.btn-main {
    background: linear-gradient(90deg, #2b72ff, #00a4ff);
    color: white;
    padding: 14px 38px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,132,255,0.3);
    transition: .3s;
}

.btn-main:hover {
    box-shadow: 0 6px 18px rgba(0,132,255,0.45);
}

.btn-outline {
    padding: 14px 38px;
    border-radius: 12px;
    border: 2px solid #2b72ff;
    font-weight: 600;
    text-decoration: none;
    color: #2b72ff;
    transition: .3s;
}

.btn-outline:hover {
    background: rgba(43,114,255,0.08);
}

/* ================= VALUES ================= */

.values {
    text-align: center;
    max-width: 820px;
    margin: 50px auto;
}

.values ul {
    list-style: none;
    padding: 0;
}

.values li {
    font-size: 20px;
    margin: 14px auto;
    padding: 14px 16px;
    max-width: 600px;
    background: rgba(255,255,255,0.8);
    border-radius: 10px;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 6px rgba(0,50,120,0.08);
}

/* ================= MISSION ================= */

.mission,
.foundation,
.partners {
    text-align: center;
    max-width: 900px;
    margin: 60px auto;
    padding: 32px 40px;

    background: rgba(255,255,255,0.85);
    border-radius: 16px;

    border: 1px solid rgba(43,114,255,0.18);
    box-shadow: 0 4px 14px rgba(43,114,255,0.08);

    backdrop-filter: blur(6px);
}

.mission h2,
.foundation h2,
.partners h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #0d1a33;
}

.mission p,
.foundation p,
.partners p {
    font-size: 20px;
    color: #2a3a55;
    line-height: 1.65;
    margin: 14px 0;
}

/* Note under partnerships */
.partners .note {
    margin-top: 18px;
    font-size: 14px;
    color: #667085;
    opacity: 0.85;
}

.note {
    font-size: 14px;
    opacity: 0.8;
}

/* ================= FOOTER ================= */

.footer {
    margin-top: auto;
    text-align: center;
    padding: 28px;

    background: rgba(255,255,255,0.9);
    border-top: 1px solid #d4def3;

    font-size: 16px;
    font-weight: 600;
    color: #445065;
}
.footer-mail {
    color: #2b72ff;
    text-decoration: none;
    font-weight: 600;
}

.footer-mail:hover {
    text-decoration: underline;
}

/* ================= ANIMATION ================= */

@keyframes fadein {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
