* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    overflow-x: hidden;
}

.navbar {
    position: relative;
    z-index: 1000;
    padding: 12px 24px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    color: #ffffff;
}

.navbar img {
    height: 28px;
}

.navbar-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.navbar-links span {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: opacity 0.2s;
}

.navbar-links span:hover {
    opacity: 0.7;
    cursor: default;
}

.hero {
    position: relative;
    background-color: #1d1d1d;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 64px 24px 80px;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(48px, 10vw, 120px);
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
}

.hero p {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.section-white {
    background: #ffffff;
    padding: 120px 24px;
}

.section-gray {
    background: #f8f8f8;
    padding: 100px 24px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 24px;
}

.section-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.6);
    max-width: 640px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2px;
    margin-top: 64px;
}

.stat-box {
    background: #ffffff;
    padding: 32px;
}

.stat-box h3 {
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -1.32px;
    margin-bottom: 8px;
}

.stat-box p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}

.investors-section {
    background-color: #f8f8f8;
    padding: 120px 24px;
    text-align: center;
}

.investor-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 48px;
    opacity: 0.6;
}

.investor-logos img {
    height: 28px;
    width: auto;
}

.proposal-section {
    background: #ffffff;
    padding: 64px 24px;
    text-align: center;
}

.proposal-card {
    background: #ffffff;
    padding: 64px 48px;
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.proposal-card .logo {
    width: 120px;
    height: auto;
    margin: 0 0 24px 0;
}

.proposal-card h2 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #000000;
}

.proposal-card p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 32px;
}

.cnnctAprBtn {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 0px;
    border: none;
    background-color: #000000;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.15s ease;
}

.cnnctAprBtn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.cnnctAprBtn.secondary {
    background-color: rgba(0, 0, 0, 0.1);
    color: #000000;
}

.cnnctAprBtn.secondary:hover {
    background-color: #ececec;
}

.buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer {
    background: #f8f8f8;
    padding: 64px 24px 28px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 48px;
}

.footer-brand img {
    height: 28px;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-links div h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-links span {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #000000;
    cursor: default;
}

.footer-links a:hover {
    color: #569f8c;
}

@media (max-width: 768px) {
    .navbar-links {
    display: none;
    }

    .stats-grid {
    grid-template-columns: 1fr;
    }

    .footer-content {
    flex-direction: column;
    }

    .footer-links {
    flex-direction: column;
    gap: 32px;
    }

    .proposal-card {
    padding: 40px 24px;
    }
}