
        

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--black);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Utility Classes */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        @media (min-width: 768px) {
            .container {
                padding: 0 48px;
            }
        }

        @media (min-width: 1200px) {
            .container {
                padding: 0 64px;
            }
        }

        /* Animation Classes */
        .reveal {
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: all 0.3s var(--transition-smooth);
        }

        nav.scrolled {
            background: rgba(0, 0, 0, 0.95);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

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

        .logo {
            font-size: 1.25rem;
            font-weight: 600;
            letter-spacing: -0.03em;
            color: var(--white);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--green-primary);
        }

        .nav-links {
            display: none;
            gap: 40px;
            list-style: none;
        }

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

        .nav-links a {
            color: var(--gray-400);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

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

        .nav-cta {
            background: var(--green-primary);
            color: var(--white);
            padding: 12px 24px;
            border-radius: var(--radius-md);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.875rem;
            transition: all 0.3s var(--transition-smooth);
            box-shadow: 0 0 30px var(--green-glow);
        }

        .nav-cta:hover {
            background: var(--green-bright);
            transform: translateY(-2px);
            box-shadow: 0 0 50px var(--green-glow);
            color: var(--white);
        }

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

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 0;
        }

        .gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.5;
            animation: float 20s ease-in-out infinite;
        }

        .orb-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--green-primary) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            animation-delay: 0s;
            opacity: 0.35;
        }

        .orb-2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--green-dark) 0%, transparent 70%);
            bottom: -100px;
            left: -100px;
            animation-delay: -7s;
            opacity: 0.3;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(50px, -50px) scale(1.1); }
            50% { transform: translate(-30px, 30px) scale(0.95); }
            75% { transform: translate(-50px, -30px) scale(1.05); }
        }

        /* Grid Pattern Overlay */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 0 24px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--green-subtle);
            border: 1px solid rgba(230, 25, 25, 0.15);
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            font-size: 0.8rem;
            color: var(--green-primary);
            margin-bottom: 32px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 500;
        }

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

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

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
            background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 50%, var(--white) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-bright) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

        /* Section Styles */
        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--color-primary);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .section-tag::before,
        .section-tag::after {
            content: '';
            width: 30px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--green-primary));
        }

        .section-tag::after {
            background: linear-gradient(90deg, var(--green-primary), transparent);
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: var(--gray-400);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Story Section */
        .story-section {
            padding: 120px 0;
            background: var(--black-light);
            position: relative;
        }

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

        @media (min-width: 992px) {
            .story-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        .story-text h2 {
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .story-text p {
            color: var(--gray-400);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .story-text p strong {
            color: var(--white);
            font-weight: 600;
        }

        .story-highlight {
            background: linear-gradient(145deg, var(--black-medium) 0%, var(--black) 100%);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: var(--radius-lg);
            padding: 32px;
            margin-top: 32px;
        }

        .story-highlight-stat {
            display: flex;
            align-items: baseline;
            gap: 12px;
            margin-bottom: 12px;
        }

        .story-highlight-stat .number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--green-primary);
            line-height: 1;
        }

        .story-highlight-stat .label {
            font-size: 1rem;
            color: var(--gray-400);
        }

        .story-highlight p {
            color: var(--gray-500);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .story-visual {
            position: relative;
            display: flex;
            align-self: stretch;
        }

        .story-image-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: 1fr 1fr;
            gap: 16px;
            width: 100%;
        }

        .story-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: linear-gradient(145deg, var(--black-medium) 0%, var(--black-soft) 100%);
            border: 1px solid rgba(255,255,255,0.06);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 24px;
            gap: 0.5rem;
            min-height: 120px;
        }

        .story-image:first-child {
            grid-column: span 2;
        }

        .story-image svg {
            width: 36px;
            height: 36px;
            color: var(--color-primary);
            opacity: 0.9;
        }

        .story-image.large svg {
            width: 44px;
            height: 44px;
        }

        /* Founders Section */
        .founders-section {
            padding: 140px 0;
            background: var(--black);
            position: relative;
        }

        .founders-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
        }

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

        .founder-card {
    box-sizing: border-box;
    width: 100%;
            background: linear-gradient(145deg, var(--black-medium) 0%, var(--black) 100%);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: var(--radius-lg);
            padding: 48px 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s var(--transition-smooth);
        }

        .founder-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--green-primary), var(--green-bright));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .founder-card:hover {
            transform: translateY(-4px);
            border-color: rgba(230, 25, 25, 0.15);
            box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 40px var(--green-glow);
        }

        .founder-card:hover::before {
            opacity: 1;
        }

        .founder-avatar {
            width: 100px;
            height: 100px;
            border-radius: var(--radius-lg);
            background: linear-gradient(135deg, var(--green-subtle) 0%, transparent 100%);
            border: 2px solid rgba(230, 25, 25, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
            font-size: 2rem;
            font-weight: 800;
            color: var(--green-primary);
        }

        .founder-role {
            display: inline-block;
            background: var(--green-subtle);
            color: var(--green-primary);
            padding: 6px 12px;
            border-radius: var(--radius-sm);
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .founder-name {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: -0.02em;
        }

        .founder-title {
            color: var(--gray-500);
            font-size: 0.95rem;
            margin-bottom: 24px;
        }

        .founder-bio {
            color: var(--gray-400);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 28px;
        }

        .founder-credentials {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        .founder-credentials li {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--gray-300);
            font-size: 0.9rem;
        }

        .founder-credentials li::before {
            content: '';
            width: 18px;
            height: 18px;
            background: var(--green-subtle);
            border-radius: var(--radius-sm);
            flex-shrink: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231F497D'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 11px;
        }

        /* Timeline Section */
        .timeline-section {
            padding: 140px 0;
            background: var(--black-light);
            position: relative;
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 20px;
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, var(--green-primary), var(--green-dark), transparent);
        }

        @media (min-width: 768px) {
            .timeline::before {
                left: 50%;
                transform: translateX(-50%);
            }
        }

        .timeline-item {
            position: relative;
            padding-left: 60px;
            padding-bottom: 60px;
        }

        .timeline-item:last-child {
            padding-bottom: 0;
        }

        @media (min-width: 768px) {
            .timeline-item {
                padding-left: 0;
                padding-right: 0;
                width: 50%;
            }

            .timeline-item:nth-child(odd) {
                margin-left: auto;
                padding-left: 50px;
            }

            .timeline-item:nth-child(even) {
                padding-right: 50px;
                text-align: right;
            }
        }

        .timeline-dot {
            position: absolute;
            left: 12px;
            top: 4px;
            width: 18px;
            height: 18px;
            background: var(--green-primary);
            border-radius: 50%;
            box-shadow: 0 0 20px var(--green-glow);
        }

        @media (min-width: 768px) {
            .timeline-item:nth-child(odd) .timeline-dot {
                left: -9px;
            }

            .timeline-item:nth-child(even) .timeline-dot {
                right: -9px;
                left: auto;
            }
        }

        .timeline-year {
            display: inline-block;
            background: var(--green-subtle);
            color: var(--green-primary);
            padding: 4px 12px;
            border-radius: var(--radius-sm);
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .timeline-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .timeline-description {
            color: var(--gray-400);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Values Section */
        .values-section {
            padding: 140px 0;
            background: var(--black);
        }

        .values-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

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

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

        .value-card {
            background: linear-gradient(145deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.01) 100%);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: var(--radius-lg);
            padding: 36px 28px;
            transition: all 0.4s var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at top left, var(--green-glow) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .value-card:hover {
            transform: translateY(-3px);
            border-color: rgba(230, 25, 25, 0.12);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .value-card:hover::before {
            opacity: 1;
        }

        .value-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--green-subtle) 0%, transparent 100%);
            border: 1px solid rgba(230, 25, 25, 0.15);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

        .value-icon svg {
            width: 24px;
            height: 24px;
            color: var(--green-primary);
        }

        .value-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .value-description {
            color: var(--gray-400);
            font-size: 0.95rem;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        /* Press Section */
        .press-section {
            padding: 100px 0;
            background: var(--black-light);
            border-top: 1px solid rgba(255,255,255,0.05);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .press-label {
            text-align: center;
            font-size: 0.85rem;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 40px;
            font-weight: 500;
        }

        .press-logos {
    padding: 0 20px;
    box-sizing: border-box;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .press-logo {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--gray-500);
            opacity: 0.6;
            transition: all 0.3s ease;
        }

        .press-logo:hover {
            opacity: 1;
            color: var(--color-primary);
            transform: translateY(-2px);
        }

        /* CTA Section */
        .cta-section {
            padding: 140px 0;
            background: var(--black);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
            opacity: 0.5;
        }

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

        .cta-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
            line-height: 1.1;
        }

        .cta-subtitle {
            font-size: 1.15rem;
            color: var(--gray-400);
            margin-bottom: 48px;
            line-height: 1.7;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            background: var(--green-primary);
            color: var(--white);
            padding: 18px 40px;
            border-radius: var(--radius-md);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s var(--transition-smooth);
            box-shadow: 0 0 60px var(--green-glow);
        }

        .cta-button:hover {
            background: var(--green-bright);
            transform: translateY(-2px);
            box-shadow: 0 0 80px rgba(230, 25, 25, 0.25);
            color: var(--white);
        }

        .cta-button svg {
            width: 24px;
            height: 24px;
            transition: transform 0.3s var(--transition-smooth);
        }

        .cta-button:hover svg {
            transform: translateX(4px);
        }

        .cta-note {
            margin-top: 24px;
            font-size: 0.9rem;
            color: var(--gray-500);
        }

        .cta-note strong {
            color: var(--gray-400);
        }

        /* Footer */
        footer {
            padding: 60px 0 40px;
            background: var(--black-light);
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .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: 1.1rem;
            font-weight: 600;
            color: var(--white);
            letter-spacing: -0.03em;
        }

        .footer-logo span {
            color: var(--green-primary);
        }

        .footer-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .footer-links a {
            color: var(--gray-400);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

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

        .footer-copyright {
            color: var(--gray-600);
            font-size: 0.85rem;
        }

        /* Scroll Progress Indicator */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--green-primary), var(--green-bright));
            z-index: 9999;
            transform-origin: left;
            transform: scaleX(0);
        }

        /* Custom Cursor Glow (Desktop Only) */
        .cursor-glow {
            position: fixed;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(230, 25, 25, 0.06) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
            transform: translate(-50%, -50%);
            transition: opacity 0.3s ease;
            display: none;
        }

        @media (min-width: 1024px) {
            .cursor-glow {
                display: block;
            }
        }
    
