@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;600;700;800&display=swap');

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

body {
    font-family: "Oswald", "Open Sans", Helvetica, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

/* HEADER */

header { background-color: #01478D;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 157, 254, 0.45);
    transition: background-color 0.3s ease;
}

header.scrolled { background-color: #01478D;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-link {
    display: inline-flex;
    align-items: center;
    min-height: 64px;
}

.logo-image {
    height: 64px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
}

.logo-image.logo-medium {
    height: 64px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav a.active,
nav a:hover {
    color: #009DFE;
}

/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 1920 1080\"><defs><linearGradient id=\"sky\" x1=\"0%\" y1=\"0%\" x2=\"0%\" y2=\"100%\"><stop offset=\"0%\" style=\"stop-color:%23333;stop-opacity:1\" /><stop offset=\"100%\" style=\"stop-color:%23000;stop-opacity:1\" /></linearGradient></defs><rect fill=\"url(%23sky)\" width=\"1920\" height=\"1080\"/><rect x=\"0\" y=\"600\" width=\"1920\" height=\"480\" fill=\"%23111\"/><rect x=\"50\" y=\"400\" width=\"120\" height=\"280\" fill=\"%23222\"/><rect x=\"200\" y=\"350\" width=\"120\" height=\"330\" fill=\"%23222\"/><rect x=\"350\" y=\"380\" width=\"120\" height=\"300\" fill=\"%23222\"/><rect x=\"500\" y=\"320\" width=\"120\" height=\"360\" fill=\"%23222\"/><rect x=\"650\" y=\"400\" width=\"120\" height=\"280\" fill=\"%23222\"/><rect x=\"800\" y=\"360\" width=\"120\" height=\"320\" fill=\"%23222\"/><rect x=\"950\" y=\"340\" width=\"120\" height=\"340\" fill=\"%23222\"/><rect x=\"1100\" y=\"380\" width=\"120\" height=\"300\" fill=\"%23222\"/><rect x=\"1250\" y=\"300\" width=\"120\" height=\"380\" fill=\"%23222\"/><rect x=\"1400\" y=\"420\" width=\"120\" height=\"260\" fill=\"%23222\"/><rect x=\"1550\" y=\"360\" width=\"120\" height=\"320\" fill=\"%23222\"/><rect x=\"1700\" y=\"400\" width=\"120\" height=\"280\" fill=\"%23222\"/><ellipse cx=\"960\" cy=\"700\" rx=\"800\" ry=\"200\" fill=\"%23000\" opacity=\"0.5\"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 120px;
    color: #fff;
    filter: grayscale(100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.hero-content {
    text-align: center;
    padding: 40px 20px 0;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 86px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #fff;
    line-height: 1.1;
    display: inline-block;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 1);
}

.hero-title .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: letterFadeIn 0.6s ease forwards;
}

.hero-title .letter.space {
    width: 0.3em;
}

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

.hero-title.animate-complete {
    animation: subtleFloat 3s ease-in-out infinite;
}

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

/* CONTENT BLOCKS UNDER HERO */

.content-blocks {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 60px 20px 40px;
    margin-top: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.content-blocks::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 20px;
    right: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.content-block {
    background-color: transparent;
    padding: 40px 30px;
}

.block-title {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 18px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.block-text {
    font-size: 16px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.block-nav {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.nav-arrow {
    width: 35px;
    height: 35px;
    background-color: rgba(51, 51, 51, 0.8);
    border: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-arrow:hover {
    background-color: rgba(68, 68, 68, 0.9);
}

/* GENERIC SECTION STYLES */

section {
    position: relative;
}

.section-light {
    background-color: #fff;
    color: #222;
}

.section-title {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 15px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #009DFE, transparent);
    margin: 0 auto 40px;
}

/* ABOUT SECTION */

.about-section {
    padding: 100px 0;
    background-color: #fff;
    color: #333;
}

.about-title {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    color: #222;
    margin-bottom: 15px;
}

.about-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.feature-box {
    text-align: center;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 45px 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #009DFE;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: #009DFE;
    box-shadow: 0 15px 40px rgba(0, 157, 254, 0.10);
    background-color: #E7F3FF;
}

.feature-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid #01478D;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.05), rgba(51, 51, 51, 0.02));
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: #009DFE;
    color: #009DFE;
    box-shadow: 0 8px 20px rgba(0, 157, 254, 0.12);
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #222;
    margin-bottom: 18px;
}

.feature-text {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
}

/* FUND OVERVIEW */

.fund-overview-section {
    padding: 100px 0;
}

.fund-overview-title {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 15px;
}

.fund-overview-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.fund-overview-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.fund-box {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px 28px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 157, 254, 0.1), rgba(0, 157, 254, 0.02));
    border: 1px solid rgba(0, 157, 254, 0.4);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.fund-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(0, 157, 254, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 20%, rgba(0, 157, 254, 0.8), transparent);
}

.fund-box-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.fund-box-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.fund-overview-right {
    display: flex;
    justify-content: center;
}

.fund-number-display {
    border-radius: 18px;
    padding: 30px 32px;
    background: radial-gradient(circle at 10% 0%, #009DFE, #001322);
    box-shadow: 0 18px 45px rgba(0, 157, 254, 0.35);
    text-align: center;
}

.fund-large-number-wrapper {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
}

.fund-dollar-icon {
    font-size: 28px;
    font-weight: 600;
}

.fund-large-number {
    font-size: 96px;
    font-weight: 800;
    letter-spacing: -8px;
}

.fund-number-suffix {
    font-size: 38px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.fund-number-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.fund-number-value {
    font-size: 18px;
    font-weight: 600;
}

/* CORE TENETS */

.core-tenets-section {
    padding: 100px 0;
    background-color: #fff;
    color: #222;
}

.core-tenets-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.core-tenets-intro {
    font-size: 18px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #555;
}

.core-tenets-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tenet-box {
    border-radius: 16px;
    padding: 35px 30px;
    border: 2px dashed #d0d0d0;
    background-color: #fff;
}

.tenet-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tenet-text {
    font-size: 16px;
    color: #555;
}

/* WHERE WE INVEST */

.invest-section {
    padding: 100px 0;
}

.invest-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.invest-intro {
    font-size: 18px;
    max-width: 720px;
    text-align: center;
    margin: 0 auto 40px;
}

.invest-carousel-wrapper {
    padding: 0 10px;
}

.invest-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

.invest-carousel::-webkit-scrollbar {
    height: 6px;
}

.invest-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.invest-carousel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
}

.invest-card {
    min-width: 260px;
    max-width: 280px;
    flex: 0 0 auto;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 18px 22px;
    scroll-snap-align: start;
}

.invest-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 16px;
}

.invest-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.image-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 0%, rgba(0, 157, 254, 0.35), transparent);
    mix-blend-mode: screen;
    pointer-events: none;
}

.invest-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

.invest-description {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 0;
}

.invest-icon {
    font-size: 20px;
}

/* LEADERSHIP */

.leadership-section {
    padding: 100px 0;
    background-color: #000;
}

.leadership-main-title {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    color: #fff;
    margin-bottom: 15px;
}

.leadership-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: flex-start;
    margin-top: 60px;
}

.leadership-left {
    position: sticky;
    top: 120px;
}

.leader-profile {
    text-align: center;
}

.leader-image {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.leader-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #009DFE;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.leader-name {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0;
}

.leader-title {
    font-size: 16px;
    color: #009DFE;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.leader-summary p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.leadership-right {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.leader-experience,
.leader-background {
    background: linear-gradient(135deg, rgba(0, 157, 254, 0.08), rgba(0, 157, 254, 0.03));
    border-radius: 16px;
    border: 2px solid rgba(0, 157, 254, 0.2);
    padding: 30px 30px;
}

.leader-experience h3,
.leader-background h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.experience-list,
.background-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.experience-item,
.background-item {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
}

.experience-item::before,
.background-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #01478D;
}

.experience-item.hidden,
.background-item.hidden {
    display: none;
}

.read-more-btn {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 999px;
    border: 1px solid rgba(0, 157, 254, 0.7);
    background: transparent;
    color: #009DFE;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: #01478D;
    color: #000;
}

/* TEAM */

.team-section {
    padding: 100px 0;
    background-color: #fff;
    color: #222;
}

.team-main-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    border-radius: 16px;
    border: 2px solid #e0e0e0;
    padding: 28px 24px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: #009DFE;
    box-shadow: 0 15px 35px rgba(0, 157, 254, 0.15);
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.team-role {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    margin-bottom: 10px;
}

.team-text {
    font-size: 16px;
    color: #444;
}

/* GOVERNANCE */

.governance-section {
    padding: 100px 0;
}

.governance-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.governance-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    margin-top: 40px;
}

.governance-intro {
    font-size: 20px;
    margin-bottom: 10px;
}

.governance-text {
    font-size: 16px;
    opacity: 0.9;
}

.governance-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.governance-item {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.governance-item h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.governance-item p {
    font-size: 15px;
    opacity: 0.9;
}

/* CONTACT */

.contact-section {
    padding: 100px 0;
    background-color: #fff;
    color: #222;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.contact-tagline {
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
}

.contact-content {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-text {
    font-size: 16px;
    color: #444;
}

/* ACCESS */

.access-section {
    padding: 80px 0;
}

.access-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.access-message {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
}

.access-contact {
    text-align: center;
}

.access-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.access-email {
    font-size: 18px;
    font-weight: 600;
}

/* FOOTER */

.site-footer {
    padding: 20px 0;
    background-color: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 13px;
    opacity: 0.85;
}

/* DARK SECTIONS BACKGROUND OVERLAYS (slide13/21/31) */

.bg-slide-13::before,
.bg-slide-21::before,
.bg-slide-31::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.bg-slide-13::before {
    background-image: url('slide13.jpg');
}

.bg-slide-21::before {
    background-image: url('slide21.jpg');
}

.bg-slide-31::before {
    background-image: url('slide31.jpg');
}

.bg-slide-13::after,
.bg-slide-21::after,
.bg-slide-31::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(1, 52, 95, 0.75), rgba(0, 8, 20, 0.90));
    z-index: -1;
}

/* MEDIA QUERIES */

@media (max-width: 992px) {
    .hero-title {
        font-size: 54px;
        letter-spacing: 4px;
    }

    .content-blocks {
        grid-template-columns: 1fr;
        padding-inline: 0;
    }

    .about-features,
    .core-tenets-features,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fund-overview-wrapper,
    .governance-wrapper,
    .leadership-wrapper {
        grid-template-columns: 1fr;
    }

    .fund-overview-right,
    .governance-left {
        order: 2;
    }
}

@media (max-width: 768px) {
    header {
        padding: 14px 0;
    }

    header .container {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    nav ul {
        gap: 10px;
        flex-wrap: wrap;
    }

    nav a {
        font-size: 12px;
    }

    .hero {
        padding-top: 110px;
    }

    .hero-title {
        font-size: 40px;
        letter-spacing: 3px;
    }

    .about-section,
    .fund-overview-section,
    .core-tenets-section,
    .invest-section,
    .leadership-section,
    .team-section,
    .governance-section,
    .contact-section {
        padding: 70px 0;
    }

    .about-features,
    .core-tenets-features,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .invest-card {
        min-width: 220px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 34px;
        letter-spacing: 2px;
    }

    .content-blocks {
        padding: 40px 10px;
    }

    .fund-large-number {
        font-size: 72px;
    }

    .fund-number-suffix {
        font-size: 28px;
    }
}


/* Investor Login modal */
.nav-investor-login {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 157, 254, 0.75);
    background-color: transparent;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-investor-login:hover {
    background-color: rgba(0, 157, 254, 0.12);
    color: #009DFE;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.modal-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.modal-dialog {
    background: #011527;
    border-radius: 16px;
    padding: 24px 26px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 157, 254, 0.3);
    color: #fff;
    position: relative;
}

.modal-dialog h2 {
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 14px;
}

.form-group input:focus {
    outline: none;
    border-color: #009DFE;
    box-shadow: 0 0 0 1px rgba(0, 157, 254, 0.4);
}

.modal-submit {
    width: 100%;
    padding: 9px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 157, 254, 0.8);
    background: #009DFE;
    color: #001022;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.2s ease, transform 0.1s ease;
}

.modal-submit:hover {
    background: #40b8ff;
    transform: translateY(-1px);
}

.modal-message {
    font-size: 13px;
    margin-top: 10px;
    color: #ff7676;
    min-height: 16px;
}
