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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header - Sticky, transparent then white on scroll */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.3s, box-shadow 0.3s;
}

header.scrolled {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header.scrolled .logo img {
    filter: none;
}

header.scrolled .btn-outline {
    border-color: #004B87;
    color: #004B87;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-outline {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

.btn-primary {
    background: #FF6F4C;
    color: #fff;
    border: 1px solid #FF6F4C;
}

.btn-primary:hover {
    background: #e55a3a;
    border-color: #e55a3a;
}

.btn-register {
    background: transparent;
    color: #333;
    border: 1px solid #333;
}

.btn-register:hover {
    background: rgba(0,0,0,0.05);
}

header.scrolled .btn-register {
    border-color: #333;
    color: #333;
}

/* Hero */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: right;
    color: #fff;
    padding: 20px 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: 10%;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
}

.hero-disclaimer {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 0.7rem;
    opacity: 0.6;
    padding: 0 20px;
    z-index: 1;
}

/* Featured / Press Logos */
.featured {
    padding: 50px 20px;
    text-align: center;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.featured h2 {
    color: #333;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.press-logos img {
    max-width: 912px;
    width: 100%;
    height: auto;
    opacity: 0.8;
}

/* Advantage Section */
.advantage {
    padding: 80px 20px;
    text-align: center;
    background: #004B87;
}

.advantage h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.advantage .lead {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto 50px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat {
    padding: 30px 20px;
}

.stat img {
    height: 80px;
    margin-bottom: 20px;
}

.stat h3 {
    color: #FF6F4C;
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat p {
    color: #fff;
    font-size: 0.95rem;
}

.disclosures-link {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin-top: 40px;
}

.disclosures-link a {
    color: rgba(255,255,255,0.7);
    text-decoration: underline;
}

/* Invest Section */
.invest-section {
    padding: 80px 20px;
    background: #fff;
}

.invest-section h1 {
    text-align: center;
    color: #004B87;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.invest-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.invest-image img {
    width: 100%;
    max-width: 400px;
}

.invest-image .caption {
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
    text-align: center;
}

.invest-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.card img {
    height: 50px;
    margin-bottom: 15px;
}

.card h3 {
    color: #004B87;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.card p {
    color: #666;
    font-size: 0.9rem;
}

/* Help Section */
.help {
    padding: 80px 20px;
    background: #FF6F4C;
    color: #fff;
}

.help-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.help-people {
    display: flex;
    gap: 40px;
}

.help-person {
    text-align: center;
}

.help-person img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.help-person h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
}

.help-person .title {
    margin: 5px 0 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.help-text {
    max-width: 400px;
}

.help-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.help-text p {
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.6;
}

.btn-white {
    background: #fff;
    color: #FF6F4C;
    border: 1px solid #fff;
    padding: 12px 30px;
}

.btn-white:hover {
    background: rgba(255,255,255,0.9);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-content > img {
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    margin: 0 15px;
}

.footer-links a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-links a {
    color: #888;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #fff;
}

.copyright {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.disclosures {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid #333;
    padding-top: 30px;
}

.disclosures p {
    color: #888;
    font-size: 0.75rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.disclosures strong {
    color: #aaa;
}

/* Page Content */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 20px 60px;
}

.page-content h1 {
    color: #004B87;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.page-content h2 {
    color: #004B87;
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.page-content ul {
    color: #555;
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-content a {
    color: #FF6F4C;
}

.disclaimer-box {
    background: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #FF6F4C;
    margin-top: 40px;
}

.disclaimer-box p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .invest-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .invest-image img {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-buttons {
        display: flex;
        gap: 8px;
    }

    nav {
        padding: 0 12px;
    }

    .logo img {
        height: 34px;
    }

    .btn {
        padding: 8px 10px;
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .invest-cards {
        grid-template-columns: 1fr;
    }

    .help-content {
        flex-direction: column;
        text-align: center;
    }

    .press-logos {
        gap: 30px;
    }
}
