:root {
            --cyan-400: #22d3ee;
            --cyan-500: #06b6d4;
            --blue-400: #60a5fa;
            --blue-500: #3b82f6;
            --blue-600: #2563eb;
            --purple-400: #c084fc;
            --purple-500: #a855f7;
            --pink-400: #f472b6;
            --emerald-400: #34d399;
            --red-500: #ef4444;
            --orange-500: #f97316;
            --amber-500: #f59e0b;
            --yellow-500: #eab308;
            --lime-500: #84cc16;
            --slate-300: #cbd5e1;
            --slate-400: #94a3b8;
            --slate-600: #475569;
            --slate-700: #334155;
            --slate-800: #1e293b;
            --slate-900: #0f172a;
            --slate-950: #020617;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(to bottom, var(--slate-950), var(--slate-900));
            color: #fff;
            min-height: 100vh;
            line-height: 1.6;
        }

        ::selection {
            background: rgba(6, 182, 212, 0.3);
            color: white;
        }

        /* Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--slate-900); }
        ::-webkit-scrollbar-thumb { background: var(--slate-700); border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--slate-600); }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(12px); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        @keyframes gradient {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .animate-fadeInUp { animation: fadeInUp 0.8s ease forwards; }
        .animate-fadeInLeft { animation: fadeInLeft 0.6s ease forwards; }
        .animate-fadeInRight { animation: fadeInRight 0.6s ease forwards; }
        .animate-bounce { animation: bounce 1.5s infinite; }
        .animate-pulse { animation: pulse 2s infinite; }

        .delay-100 { animation-delay: 0.1s; }
        .delay-200 { animation-delay: 0.2s; }
        .delay-300 { animation-delay: 0.3s; }
        .delay-400 { animation-delay: 0.4s; }
        .delay-500 { animation-delay: 0.5s; }

        /* Typography */
        h1, h2, h3, h4 { font-weight: 700; }
        
        .gradient-text {
            background: linear-gradient(to right, var(--cyan-400), var(--blue-500), var(--purple-500));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .gradient-text-cyan {
            background: linear-gradient(to right, var(--cyan-400), var(--blue-500));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .gradient-text-emerald {
            background: linear-gradient(to right, var(--emerald-400), var(--cyan-400));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .gradient-text-red {
            background: linear-gradient(to right, #f87171, var(--orange-500));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

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

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 16px 0;
            background: rgba(2, 6, 23, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(51, 65, 85, 0.5);
        }

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

        .logo {
            font-size: 24px;
            font-weight: 800;
        }

        .nav {
            display: none;
        }

        @media (min-width: 768px) {
            .nav {
                display: flex;
                gap: 32px;
            }
        }

        .nav a {
            color: var(--slate-400);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav a:hover {
            color: var(--cyan-400);
        }

        .header-cta {
            display: none;
        }

        @media (min-width: 768px) {
            .header-cta {
                display: block;
            }
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 12px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(to right, var(--cyan-500), var(--blue-600));
            color: white;
            box-shadow: 0 10px 25px rgba(6, 182, 212, 0.25);
        }

        .btn-primary:hover {
            background: linear-gradient(to right, var(--cyan-400), var(--blue-500));
            box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4);
        }

        .btn-secondary {
            background: rgba(30, 41, 59, 0.5);
            color: white;
            border: 1px solid var(--slate-700);
        }

        .btn-secondary:hover {
            background: rgba(51, 65, 85, 0.5);
            border-color: rgba(6, 182, 212, 0.5);
        }

        .btn-lg {
            padding: 16px 32px;
            font-size: 16px;
        }

        /* Cards */
        .card {
            background: rgba(30, 41, 59, 0.5);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(51, 65, 85, 0.5);
            border-radius: 16px;
            padding: 24px;
            transition: all 0.3s;
        }

        .card:hover {
            border-color: rgba(6, 182, 212, 0.3);
            box-shadow: 0 20px 40px rgba(6, 182, 212, 0.05);
        }

        /* Section */
        section {
            padding: 96px 0;
            position: relative;
        }

        .section-label {
            color: var(--cyan-400);
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .section-title {
            font-size: 2.5rem;
            margin-top: 16px;
            margin-bottom: 24px;
        }

        @media (min-width: 768px) {
            .section-title {
                font-size: 3rem;
            }
        }

        .section-desc {
            font-size: 1.25rem;
            color: var(--slate-400);
            max-width: 800px;
            margin: 0 auto;
        }

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

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

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(2, 6, 23, 0.8), rgba(15, 23, 42, 0.7), rgba(2, 6, 23, 0.9));
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 1000px;
            padding: 40px 24px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.3);
            border-radius: 999px;
            color: var(--cyan-400);
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
        }

        .hero-title {
            font-size: 3rem;
            margin-bottom: 24px;
        }

        @media (min-width: 768px) {
            .hero-title {
                font-size: 4.5rem;
            }
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--slate-300);
            margin-top: 16px;
        }

        @media (min-width: 768px) {
            .hero-subtitle {
                font-size: 2rem;
            }
        }

        .hero-tagline {
            font-size: 1.25rem;
            color: var(--cyan-300);
            font-weight: 500;
            margin-bottom: 16px;
        }

        @media (min-width: 768px) {
            .hero-tagline {
                font-size: 1.5rem;
            }
        }

        .hero-desc {
            font-size: 1.125rem;
            color: var(--slate-400);
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 16px;
            justify-content: center;
            margin-bottom: 64px;
        }

        @media (min-width: 640px) {
            .hero-buttons {
                flex-direction: row;
            }
        }

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

        @media (min-width: 768px) {
            .hero-stats {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .stat-card {
            background: rgba(30, 41, 59, 0.3);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(51, 65, 85, 0.5);
            border-radius: 16px;
            padding: 16px;
            transition: all 0.3s;
        }

        .stat-card:hover {
            border-color: rgba(6, 182, 212, 0.3);
        }

        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--cyan-400);
        }

        @media (min-width: 768px) {
            .stat-value {
                font-size: 1.875rem;
            }
        }

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

        .scroll-indicator {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
        }

        .scroll-indicator-inner {
            width: 24px;
            height: 40px;
            border: 2px solid var(--slate-600);
            border-radius: 999px;
            display: flex;
            justify-content: center;
        }

        .scroll-indicator-dot {
            width: 6px;
            height: 12px;
            background: var(--cyan-400);
            border-radius: 999px;
            margin-top: 8px;
            animation: bounce 1.5s infinite;
        }

        /* Problem Section */
        .problem-section {
            background: var(--slate-900);
        }

        .problem-grid {
            display: grid;
            gap: 48px;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .problem-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .problem-image {
            position: relative;
            aspect-ratio: 16/9;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .problem-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .problem-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(2, 6, 23, 0.8), transparent);
        }

        .problem-cards {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .problem-card {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background: rgba(30, 41, 59, 0.5);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(51, 65, 85, 0.5);
            border-radius: 16px;
            padding: 20px;
            transition: all 0.3s;
        }

        .problem-card:hover {
            border-color: var(--slate-600);
            background: rgba(30, 41, 59, 0.7);
        }

        .problem-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .problem-card h3 {
            font-size: 1.125rem;
            margin-bottom: 4px;
            transition: color 0.3s;
        }

        .problem-card:hover h3 {
            color: var(--cyan-400);
        }

        .problem-card p {
            font-size: 14px;
            color: var(--slate-400);
            line-height: 1.6;
        }

        /* Solution Section */
        .solution-section {
            background: var(--slate-950);
        }

        .solution-image {
            max-width: 900px;
            margin: 0 auto 64px;
            aspect-ratio: 16/9;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(6, 182, 212, 0.1);
        }

        .solution-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .solution-grid {
            display: grid;
            gap: 24px;
        }

        @media (min-width: 768px) {
            .solution-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .solution-card {
            background: rgba(15, 23, 42, 0.5);
            backdrop-filter: blur(12px);
            border-radius: 16px;
            padding: 24px;
            transition: all 0.3s;
        }

        .solution-card.cyan { border: 1px solid rgba(6, 182, 212, 0.3); }
        .solution-card.blue { border: 1px solid rgba(59, 130, 246, 0.3); }
        .solution-card.purple { border: 1px solid rgba(168, 85, 247, 0.3); }
        .solution-card.pink { border: 1px solid rgba(244, 114, 182, 0.3); }

        .solution-card:hover {
            background: rgba(15, 23, 42, 0.7);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .solution-icon {
            display: inline-flex;
            padding: 12px;
            border-radius: 12px;
            margin-bottom: 16px;
            font-size: 24px;
        }

        .solution-icon.cyan { background: rgba(6, 182, 212, 0.1); }
        .solution-icon.blue { background: rgba(59, 130, 246, 0.1); }
        .solution-icon.purple { background: rgba(168, 85, 247, 0.1); }
        .solution-icon.pink { background: rgba(244, 114, 182, 0.1); }

        .solution-card h3 {
            font-size: 1.25rem;
            margin-bottom: 8px;
            transition: color 0.3s;
        }

        .solution-card:hover h3 {
            color: var(--cyan-400);
        }

        .solution-card .subtitle {
            font-size: 14px;
            margin-bottom: 16px;
        }

        .solution-card.cyan .subtitle { color: var(--cyan-400); }
        .solution-card.blue .subtitle { color: var(--blue-400); }
        .solution-card.purple .subtitle { color: var(--purple-400); }
        .solution-card.pink .subtitle { color: var(--pink-400); }

        .solution-card ul {
            list-style: none;
        }

        .solution-card li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--slate-400);
            margin-bottom: 8px;
        }

        .solution-card li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .solution-card.cyan li::before { background: var(--cyan-400); }
        .solution-card.blue li::before { background: var(--blue-400); }
        .solution-card.purple li::before { background: var(--purple-400); }
        .solution-card.pink li::before { background: var(--pink-400); }

        .tech-note {
            margin-top: 48px;
            text-align: center;
        }

        .tech-note-inner {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 12px 24px;
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid var(--slate-700);
            border-radius: 999px;
        }

        .tech-note-dot {
            width: 8px;
            height: 8px;
            background: var(--cyan-400);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .tech-note span {
            font-size: 14px;
            color: var(--slate-400);
        }

        /* Market Section */
        .market-section {
            background: var(--slate-900);
        }

        .market-glow {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: rgba(6, 182, 212, 0.05);
            border-radius: 50%;
            filter: blur(100px);
            pointer-events: none;
        }

        .market-numbers {
            display: grid;
            gap: 24px;
            margin-bottom: 64px;
        }

        @media (min-width: 768px) {
            .market-numbers {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .market-card {
            background: rgba(30, 41, 59, 0.5);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(51, 65, 85, 0.5);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            transition: all 0.3s;
        }

        .market-card:hover {
            border-color: rgba(6, 182, 212, 0.3);
            box-shadow: 0 20px 40px rgba(6, 182, 212, 0.05);
        }

        .market-icon {
            display: inline-flex;
            padding: 12px;
            border-radius: 12px;
            margin-bottom: 16px;
            font-size: 24px;
        }

        .market-icon.cyan { background: rgba(6, 182, 212, 0.1); }
        .market-icon.blue { background: rgba(59, 130, 246, 0.1); }
        .market-icon.purple { background: rgba(168, 85, 247, 0.1); }

        .market-value {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .market-label {
            color: var(--cyan-400);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .market-desc {
            font-size: 14px;
            color: var(--slate-400);
        }

        .market-charts {
            display: grid;
            gap: 32px;
        }

        @media (min-width: 1024px) {
            .market-charts {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .chart-card {
            background: rgba(30, 41, 59, 0.3);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(51, 65, 85, 0.5);
            border-radius: 16px;
            padding: 24px;
        }

        .chart-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .chart-title span {
            font-size: 20px;
        }

        /* Funnel Chart CSS */
        .funnel-chart {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .funnel-item {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .funnel-bar {
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            transition: transform 0.3s;
        }

        .funnel-bar:hover {
            transform: scaleX(1.02);
        }

        .funnel-bar.tam {
            width: 100%;
            background: linear-gradient(to right, var(--cyan-500), var(--cyan-400));
        }

        .funnel-bar.sam {
            width: 70%;
            background: linear-gradient(to right, var(--blue-500), var(--blue-400));
        }

        .funnel-bar.som {
            width: 40%;
            background: linear-gradient(to right, var(--purple-500), var(--purple-400));
        }

        .funnel-label {
            min-width: 120px;
            text-align: right;
        }

        .funnel-label .name {
            font-size: 14px;
            color: var(--slate-300);
        }

        .funnel-label .value {
            font-size: 12px;
            color: var(--slate-400);
        }

        /* Pie Chart CSS */
        .pie-chart-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
        }

        @media (min-width: 640px) {
            .pie-chart-container {
                flex-direction: row;
                justify-content: center;
            }
        }

        .pie-chart {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: conic-gradient(
                var(--cyan-400) 0deg 144deg,
                var(--blue-400) 144deg 234deg,
                var(--purple-400) 234deg 306deg,
                var(--pink-400) 306deg 360deg
            );
            position: relative;
        }

        .pie-chart::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: var(--slate-800);
            border-radius: 50%;
        }

        .pie-legend {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .pie-legend-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .pie-legend-color {
            width: 16px;
            height: 16px;
            border-radius: 4px;
        }

        .pie-legend-text {
            font-size: 14px;
        }

        .pie-legend-text .name {
            color: var(--slate-300);
        }

        .pie-legend-text .value {
            color: var(--slate-400);
            margin-left: 8px;
        }

        /* Advantages Section */
        .advantages-section {
            background: var(--slate-950);
        }

        .advantages-grid {
            display: grid;
            gap: 24px;
        }

        @media (min-width: 768px) {
            .advantages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .advantages-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .advantage-card {
            background: linear-gradient(to bottom, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.5));
            border: 1px solid rgba(51, 65, 85, 0.5);
            border-radius: 16px;
            padding: 24px;
            transition: all 0.3s;
        }

        .advantage-card:hover {
            border-color: rgba(6, 182, 212, 0.3);
            box-shadow: 0 20px 40px rgba(6, 182, 212, 0.05);
        }

        .advantage-icon {
            width: 56px;
            height: 56px;
            background: rgba(6, 182, 212, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 16px;
            transition: background 0.3s;
        }

        .advantage-card:hover .advantage-icon {
            background: rgba(6, 182, 212, 0.2);
        }

        .advantage-card h3 {
            font-size: 1.125rem;
            margin-bottom: 8px;
        }

        .advantage-metric {
            font-size: 1.875rem;
            font-weight: 700;
            color: var(--cyan-400);
            margin-bottom: 4px;
        }

        .advantage-comparison {
            font-size: 14px;
            color: rgba(34, 211, 238, 0.7);
            margin-bottom: 12px;
        }

        .advantage-card p {
            font-size: 14px;
            color: var(--slate-400);
            line-height: 1.6;
        }

        .differentiator-banner {
            margin-top: 48px;
            background: linear-gradient(to right, rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.1), rgba(168, 85, 247, 0.1));
            border: 1px solid rgba(6, 182, 212, 0.2);
            border-radius: 16px;
            padding: 32px;
            text-align: center;
        }

        .differentiator-banner h3 {
            font-size: 1.25rem;
            margin-bottom: 8px;
        }

        .differentiator-banner p {
            color: var(--slate-400);
        }

        /* Target Market Section */
        .target-section {
            background: var(--slate-900);
        }

        .target-grid {
            display: grid;
            gap: 48px;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .target-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .target-image {
            position: relative;
            aspect-ratio: 16/9;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .target-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .target-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(2, 6, 23, 0.8), transparent);
        }

        .target-flags {
            position: absolute;
            bottom: 24px;
            left: 24px;
            right: 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .target-flag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(12px);
            border-radius: 999px;
            font-size: 14px;
            border: 1px solid var(--slate-700);
        }

        .target-cards {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .target-card {
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid rgba(51, 65, 85, 0.5);
            border-radius: 16px;
            padding: 24px;
        }

        .target-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .target-card-icon {
            padding: 8px;
            border-radius: 8px;
            font-size: 20px;
        }

        .target-card-icon.cyan { background: rgba(6, 182, 212, 0.1); }
        .target-card-icon.blue { background: rgba(59, 130, 246, 0.1); }
        .target-card-icon.purple { background: rgba(168, 85, 247, 0.1); }

        .target-card h3 {
            font-size: 1.125rem;
        }

        .target-card p {
            font-size: 14px;
            color: var(--slate-400);
            margin-bottom: 16px;
        }

        .target-card ul {
            list-style: none;
        }

        .target-card li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--slate-400);
            margin-bottom: 8px;
        }

        .target-card li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--blue-400);
            flex-shrink: 0;
        }

        .target-regions {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .target-region {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
        }

        .target-region .name {
            color: var(--slate-300);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .target-region .detail {
            color: var(--cyan-400);
        }

        .partners-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .partner-tag {
            padding: 6px 12px;
            background: rgba(51, 65, 85, 0.5);
            border-radius: 999px;
            font-size: 14px;
            color: var(--slate-300);
        }

        .icp-banner {
            margin-top: 48px;
            background: linear-gradient(to right, rgba(30, 41, 59, 0.5), rgba(30, 41, 59, 0.3));
            border: 1px solid rgba(51, 65, 85, 0.5);
            border-radius: 16px;
            padding: 32px;
        }

        .icp-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .icp-icon {
            padding: 8px;
            background: rgba(52, 211, 153, 0.1);
            border-radius: 8px;
            font-size: 20px;
        }

        .icp-grid {
            display: grid;
            gap: 24px;
        }

        @media (min-width: 768px) {
            .icp-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .icp-item h4 {
            color: var(--emerald-400);
            font-weight: 600;
            margin-bottom: 4px;
        }

        .icp-item p {
            font-size: 14px;
            color: var(--slate-400);
        }

        /* Funding Section */
        .funding-section {
            background: var(--slate-950);
        }

        .funding-grid {
            display: grid;
            gap: 48px;
        }

        @media (min-width: 1024px) {
            .funding-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .funding-allocation {
            background: rgba(30, 41, 59, 0.3);
            border: 1px solid rgba(51, 65, 85, 0.5);
            border-radius: 16px;
            padding: 32px;
        }

        .funding-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .funding-title span {
            font-size: 20px;
        }

        /* Donut Chart CSS */
        .donut-chart-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            margin-bottom: 24px;
        }

        @media (min-width: 640px) {
            .donut-chart-container {
                flex-direction: row;
                justify-content: center;
            }
        }

        .donut-chart {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: conic-gradient(
                var(--cyan-400) 0deg 210deg,
                var(--blue-400) 210deg 306deg,
                var(--purple-400) 306deg 360deg
            );
            position: relative;
        }

        .donut-chart::after {
            content: '$300K';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: var(--slate-800);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            color: var(--cyan-400);
        }

        .allocation-items {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .allocation-item {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .allocation-icon {
            padding: 8px;
            background: rgba(51, 65, 85, 0.5);
            border-radius: 8px;
            font-size: 20px;
        }

        .allocation-info {
            flex: 1;
        }

        .allocation-header {
            display: flex;
            justify-content: space-between;
        }

        .allocation-header .name {
            font-weight: 500;
        }

        .allocation-header .percent {
            font-weight: 700;
            color: var(--cyan-400);
        }

        .allocation-info .desc {
            font-size: 14px;
            color: var(--slate-400);
        }

        .funding-milestones {
            background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.1));
            border: 1px solid rgba(6, 182, 212, 0.2);
            border-radius: 16px;
            padding: 32px;
        }

        .funding-milestones h3 {
            font-size: 1.25rem;
            margin-bottom: 24px;
        }

        .milestones-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .milestone-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            background: rgba(30, 41, 59, 0.3);
            border-radius: 12px;
            padding: 16px;
        }

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

        .milestone-item span {
            color: var(--slate-300);
        }

        .milestone-footer {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid rgba(51, 65, 85, 0.5);
            text-align: center;
        }

        .milestone-footer .label {
            font-size: 14px;
            color: var(--slate-400);
            margin-bottom: 8px;
        }

        .milestone-footer .value {
            font-size: 1.5rem;
            font-weight: 700;
        }

        /* Roadmap Section */
        .roadmap-section {
            background: var(--slate-900);
        }

        .roadmap-grid {
            display: grid;
            gap: 24px;
        }

        @media (min-width: 768px) {
            .roadmap-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .roadmap-card {
            border-radius: 16px;
            padding: 24px;
            transition: all 0.3s;
        }

        .roadmap-card.cyan {
            background: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.3);
        }

        .roadmap-card.blue {
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .roadmap-card.purple {
            background: rgba(168, 85, 247, 0.1);
            border: 1px solid rgba(168, 85, 247, 0.3);
        }

        .roadmap-card:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .roadmap-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .roadmap-icon {
            padding: 8px;
            border-radius: 8px;
            font-size: 24px;
        }

        .roadmap-card.cyan .roadmap-icon { background: rgba(6, 182, 212, 0.1); }
        .roadmap-card.blue .roadmap-icon { background: rgba(59, 130, 246, 0.1); }
        .roadmap-card.purple .roadmap-icon { background: rgba(168, 85, 247, 0.1); }

        .roadmap-phase {
            font-size: 14px;
            font-weight: 600;
        }

        .roadmap-card.cyan .roadmap-phase { color: var(--cyan-400); }
        .roadmap-card.blue .roadmap-phase { color: var(--blue-400); }
        .roadmap-card.purple .roadmap-phase { color: var(--purple-400); }

        .roadmap-title {
            font-weight: 700;
        }

        .roadmap-section-title {
            font-size: 14px;
            color: var(--slate-400);
            margin-bottom: 8px;
            margin-top: 16px;
        }

        .roadmap-card ul {
            list-style: none;
        }

        .roadmap-card li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 14px;
            margin-bottom: 6px;
        }

        .roadmap-card li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            margin-top: 6px;
            flex-shrink: 0;
        }

        .roadmap-card.cyan .features li::before { background: var(--cyan-400); }
        .roadmap-card.blue .features li::before { background: var(--blue-400); }
        .roadmap-card.purple .features li::before { background: var(--purple-400); }

        .roadmap-card .features li { color: var(--slate-300); }

        .roadmap-card .goals li::before { background: var(--emerald-400); }
        .roadmap-card .goals li { color: white; }

        /* Vision Section */
        .vision-section {
            background: var(--slate-950);
        }

        .vision-grid {
            display: grid;
            gap: 48px;
            align-items: center;
            margin-bottom: 64px;
        }

        @media (min-width: 1024px) {
            .vision-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .vision-image {
            aspect-ratio: 16/9;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .vision-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .vision-content blockquote {
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 24px;
            line-height: 1.4;
        }

        @media (min-width: 768px) {
            .vision-content blockquote {
                font-size: 1.875rem;
            }
        }

        .vision-content p {
            font-size: 1.125rem;
            color: var(--slate-400);
            margin-bottom: 32px;
        }

        .vision-tagline {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 12px 24px;
            background: linear-gradient(to right, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
            border: 1px solid rgba(6, 182, 212, 0.3);
            border-radius: 999px;
        }

        .vision-tagline .label {
            color: var(--cyan-400);
            font-weight: 600;
        }

        .vision-targets {
            background: linear-gradient(to right, rgba(30, 41, 59, 0.5), rgba(30, 41, 59, 0.3));
            border: 1px solid rgba(51, 65, 85, 0.5);
            border-radius: 16px;
            padding: 32px;
        }

        .vision-targets h3 {
            text-align: center;
            font-size: 1.25rem;
            margin-bottom: 32px;
        }

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

        @media (min-width: 768px) {
            .targets-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .target-item {
            text-align: center;
        }

        .target-icon {
            display: inline-flex;
            padding: 12px;
            background: rgba(6, 182, 212, 0.1);
            border-radius: 12px;
            margin-bottom: 12px;
            font-size: 24px;
        }

        .target-value {
            font-size: 1.875rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

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

        /* Contact Section */
        .contact-section {
            background: var(--slate-900);
        }

        .contact-glow {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1000px;
            height: 1000px;
            background: rgba(6, 182, 212, 0.05);
            border-radius: 50%;
            filter: blur(100px);
            pointer-events: none;
        }

        .contact-grid {
            display: grid;
            gap: 48px;
        }

        @media (min-width: 1024px) {
            .contact-grid {
                grid-template-columns: 2fr 3fr;
            }
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-card {
            background: rgba(30, 41, 59, 0.5);
            border: 1px solid rgba(51, 65, 85, 0.5);
            border-radius: 16px;
            padding: 24px;
        }

        .contact-card h3 {
            font-size: 1.25rem;
            margin-bottom: 24px;
        }

        .steps-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .step-item {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .step-number {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cyan-400);
            font-weight: 700;
            font-size: 14px;
            flex-shrink: 0;
        }

        .step-item span {
            color: var(--slate-300);
        }

        .contact-links {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .contact-link {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--slate-300);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-link:hover {
            color: var(--cyan-400);
        }

        .contact-link-icon {
            padding: 8px;
            border-radius: 8px;
            font-size: 20px;
        }

        .contact-link-icon.cyan { background: rgba(6, 182, 212, 0.1); }
        .contact-link-icon.blue { background: rgba(59, 130, 246, 0.1); }

        .confidential-badge {
            background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.1));
            border: 1px solid rgba(6, 182, 212, 0.2);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
        }

        .confidential-badge .label {
            font-size: 14px;
            color: var(--slate-400);
            margin-bottom: 4px;
        }

        .confidential-badge .value {
            font-weight: 600;
        }

        .contact-form-container {
            background: rgba(30, 41, 59, 0.3);
            border: 1px solid rgba(51, 65, 85, 0.5);
            border-radius: 16px;
            padding: 32px;
        }

        .contact-form-container h3 {
            font-size: 1.25rem;
            margin-bottom: 24px;
        }

        .form-grid {
            display: grid;
            gap: 16px;
        }

        @media (min-width: 640px) {
            .form-row {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            font-size: 14px;
            font-weight: 500;
            color: var(--slate-300);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 12px 16px;
            background: rgba(15, 23, 42, 0.5);
            border: 1px solid var(--slate-700);
            border-radius: 12px;
            color: white;
            font-size: 14px;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--cyan-500);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--slate-600);
        }

        .form-group select {
            cursor: pointer;
        }

        .form-group select option {
            background: var(--slate-800);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-submit {
            margin-top: 8px;
        }

        .form-submit .btn {
            width: 100%;
        }

        /* Footer */
        .footer {
            background: var(--slate-950);
            border-top: 1px solid rgba(51, 65, 85, 0.5);
            padding: 48px 0;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            text-align: center;
        }

        @media (min-width: 768px) {
            .footer-content {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
        }

        .footer-logo {
            font-size: 24px;
            font-weight: 800;
        }

        .footer-links {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .footer-links a {
            color: var(--slate-400);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--cyan-400);
        }

        .footer-disclaimer {
            font-size: 12px;
            color: var(--slate-600);
            padding-top: 24px;
            border-top: 1px solid rgba(51, 65, 85, 0.3);
            margin-top: 24px;
        }

        /* Responsive utilities */
        .text-center { text-align: center; }
        .mb-4 { margin-bottom: 16px; }
        .mb-6 { margin-bottom: 24px; }
        .mb-8 { margin-bottom: 32px; }
        .mb-16 { margin-bottom: 64px; }
/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 8px;
    margin-left: 20px;
    align-items: center;
}

.lang-btn {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--slate-700);
    color: var(--slate-400);
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.lang-btn:hover {
    border-color: var(--cyan-400);
    color: white;
}

.lang-btn.active {
    background: var(--cyan-500);
    border-color: var(--cyan-400);
    color: white;
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }
    .lang-switcher {
        order: 2;
    }
    .header-cta {
        display: none; /* Hide on mobile for simplicity */
    }
}
