/* ========== CSS VARIABLES ========== */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #f59e0b;
    --success: #10b981;
    --danger: #ef4444;
    --dark: #0a0a0f;
    --dark-light: #12121a;
    --dark-card: #16161f;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.2);
    --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --border-subtle: rgba(255,255,255,0.08);
    --border-hover: rgba(99, 102, 241, 0.4);
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--gray-100);
    background: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

img { max-width: 100%; height: auto; }

a { 
    text-decoration: none; 
    color: inherit; 
    transition: all 0.3s ease;
}

/* ========== UTILITY CLASSES ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
    position: relative;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 17px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.btn-white {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.link-arrow:hover {
    gap: 12px;
    color: var(--secondary);
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

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

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
}

.logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-400);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    background: var(--gradient-primary);
    padding: 10px 24px !important;
    border-radius: 10px;
    font-weight: 600;
    color: var(--white) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--dark-light);
    border-bottom: 1px solid var(--border-subtle);
    padding: 20px;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu a {
    color: var(--gray-300);
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-dark);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(99, 102, 241, 0.12) 0%, transparent 55%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-eyebrow {
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(44px, 7vw, 80px);
    margin-bottom: 28px;
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(17px, 2vw, 21px);
    color: var(--gray-400);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 56px 0;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 6vw, 56px);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.hero-stat-number.danger {
    background: none;
    -webkit-text-fill-color: var(--danger);
    color: var(--danger);
}

.hero-stat-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gray-500);
    font-size: 13px;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-600);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 4px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

/* ========== OVERVIEW SECTION ========== */
.overview {
    background: var(--dark-light);
    padding: 100px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1000px) {
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
}

.overview-card {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.overview-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.overview-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
}

.overview-card p {
    color: var(--gray-400);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* ========== THESIS SECTION ========== */
.thesis {
    background: var(--dark);
}

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

.thesis-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--white);
    margin-bottom: 32px;
}

.thesis-content p {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 24px;
    line-height: 1.9;
}

.thesis-cta {
    font-size: 24px !important;
    color: var(--white) !important;
    margin-top: 40px !important;
}

/* ========== PLATFORM PREVIEW ========== */
.platform-preview {
    background: var(--dark-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--white);
    margin: 16px 0;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.platform-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.platform-tab {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-400);
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-tab:hover {
    border-color: var(--border-hover);
    color: var(--white);
}

.platform-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
}

.platform-panel {
    display: none;
}

.platform-panel.active {
    display: block;
}

.platform-panel-content {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 48px;
    max-width: 700px;
    margin: 0 auto;
}

.platform-panel-content h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 16px;
}

.platform-panel-content > p {
    font-size: 17px;
    color: var(--gray-400);
    margin-bottom: 32px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    color: var(--gray-300);
    font-size: 15px;
    border-bottom: 1px solid var(--border-subtle);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

/* ========== TOOLS TEASER ========== */
.tools-teaser {
    background: var(--dark);
}

.tools-teaser-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .tools-teaser-content {
        grid-template-columns: 1fr;
    }
}

.tools-teaser-text h2 {
    font-size: clamp(32px, 5vw, 44px);
    color: var(--white);
    margin: 16px 0 24px;
}

.tools-teaser-text p {
    font-size: 17px;
    color: var(--gray-400);
    margin-bottom: 32px;
    line-height: 1.8;
}

.tools-teaser-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.tool-mini {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.tool-mini:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.tool-mini:last-child {
    grid-column: span 2;
}

@media (max-width: 500px) {
    .tools-teaser-grid {
        grid-template-columns: 1fr;
    }
    .tool-mini:last-child {
        grid-column: span 1;
    }
}

.tool-mini-price {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient-primary);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}

.tool-mini h4 {
    font-size: 16px;
    color: var(--white);
    margin-top: 8px;
}

/* ========== SOCIAL PROOF BAR ========== */
.social-proof-bar {
    background: var(--dark-card);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 40px 0;
}

.social-proof-content {
    text-align: center;
}

.social-proof-label {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.social-proof-logos {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-300);
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
    padding: 140px 0;
}

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

.cta-content h2 {
    font-size: clamp(32px, 5vw, 52px);
    color: var(--white);
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 19px;
    color: var(--gray-400);
    margin-bottom: 48px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== FOOTER ========== */
footer {
    background: var(--dark);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (max-width: 800px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 14px;
    margin-top: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 600px) {
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--gray-400);
    padding: 6px 0;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-500);
}

/* ========== PAGE HEADERS ========== */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--gradient-dark);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
}

.page-header h1 {
    font-size: clamp(40px, 6vw, 64px);
    color: var(--white);
    margin: 16px 0;
    position: relative;
}

.page-header p {
    font-size: 19px;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* ========== CARDS ========== */
.card {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 12px;
}

.card p {
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.7;
}

/* ========== STAT CARDS ========== */
.stat-card {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 15px;
    color: var(--gray-400);
}

/* ========== TOOL CARDS (FULL) ========== */
.tool-card {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tool-card:hover::before {
    transform: scaleX(1);
}

.tool-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.tool-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.tool-price-tag {
    background: var(--gradient-primary);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
}

.tool-card h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 16px;
}

.tool-card > p {
    font-size: 16px;
    color: var(--gray-400);
    margin-bottom: 24px;
    line-height: 1.8;
}

.tool-features {
    list-style: none;
    margin-bottom: 32px;
}

.tool-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-300);
}

.tool-features li::before {
    content: '→';
    color: var(--primary);
}

.tool-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ========== TEAM CARDS ========== */
.team-card {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.team-card h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 4px;
}

.team-role {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.team-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ========== FEATURED TEAM CARD ========== */
.team-featured {
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.04) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 32px;
    padding: 48px;
    margin-bottom: 48px;
}

.team-featured-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: flex-start;
}

@media (max-width: 700px) {
    .team-featured-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .team-featured .team-avatar {
        margin: 0 auto 24px;
    }
}

.team-featured .team-avatar {
    width: 120px;
    height: 120px;
    font-size: 40px;
}

.team-featured h3 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 8px;
}

.team-featured .team-role {
    font-size: 18px;
    margin-bottom: 24px;
}

.team-featured p {
    font-size: 16px;
    color: var(--gray-400);
    line-height: 1.9;
}

/* ========== LOGOS GRID ========== */
.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.logo-card {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.logo-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.logo-card-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.logo-card h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 4px;
}

.logo-card span {
    font-size: 13px;
    color: var(--gray-500);
}

/* ========== INVEST PAGE ========== */
.ask-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(64px, 12vw, 120px);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.funds-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 800px) {
    .funds-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fund-card {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
}

.fund-percent {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.fund-label {
    font-size: 14px;
    color: var(--gray-400);
}

/* ========== MILESTONES ========== */
.milestones-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 700px) {
    .milestones-grid {
        grid-template-columns: 1fr;
    }
}

.milestone-card {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.milestone-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.milestone-card h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 8px;
}

.milestone-card p {
    font-size: 14px;
    color: var(--gray-500);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .hero-stat-number {
        font-size: 36px;
    }
}
