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

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        background: #0a0a0a;
        color: #ffffff;
        line-height: 1.6;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Navigation */
    .navbar {
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(74, 222, 128, 0.2);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        transition: all 0.3s ease;
    }

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

    .logo {
        font-size: 1.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-decoration: none;
    }

    .nav-menu {
        display: flex;
        list-style: none;
        gap: 30px;
        align-items: center;
    }

    .nav-link {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
    }

    .nav-link:hover {
        color: #4ade80;
    }

    .nav-link.active {
        color: #4ade80;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

    .nav-cta {
        background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
        color: #0a0a0a;
        padding: 10px 25px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: transform 0.2s ease;
    }

    .nav-cta:hover {
        transform: translateY(-2px);
    }

    .mobile-menu-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
    }

    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #4ade80;
        transition: all 0.3s ease;
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(74, 222, 128, 0.2);
        padding: 20px;
    }

    .mobile-menu.active {
        display: block;
    }

    .mobile-nav-menu {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mobile-nav-link {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Header */
    .header {
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
        padding: 150px 0 80px;
        position: relative;
        overflow: hidden;
    }

    .header::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%234ade80" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    }

    .header-content {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .header-text h1 {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .header-text p {
        font-size: 1.2rem;
        color: #a1a1aa;
        margin-bottom: 30px;
    }

    .author-info {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: #0a0a0a;
    }

    .author-text {
        font-size: 0.9rem;
        color: #a1a1aa;
    }

    /* Section Styles */
    .section {
        padding: 80px 0;
        border-bottom: 1px solid #2a2a2a;
    }

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

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .section-header p {
        font-size: 1.1rem;
        color: #a1a1aa;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Two Column Grid */
    .two-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .col h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: #4ade80;
    }

    .col p {
        color: #a1a1aa;
        line-height: 1.7;
    }

    /* Philosophy Section */
    .philosophy {
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    }

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

    .philosophy-image {
        width: 100%;
        height: 300px;
        background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4rem;
        position: relative;
        overflow: hidden;
    }

    .philosophy-image::before {
        content: '🌿';
        font-size: 6rem;
        opacity: 0.3;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 40px;
    }

    .feature {
        text-align: center;
        padding: 30px 20px;
        border-radius: 15px;
        background: rgba(74, 222, 128, 0.05);
        border: 1px solid rgba(74, 222, 128, 0.2);
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        background: #4ade80;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 1.5rem;
    }

    .feature h4 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: #4ade80;
    }

    .feature p {
        font-size: 0.9rem;
        color: #a1a1aa;
    }

    /* Blockchain Section */
    .blockchain {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    }

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

    .blockchain-visual {
        width: 100%;
        height: 300px;
        background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .blockchain-visual::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-position: center;
        background-size: cover;
        background: url('asst/img/blockChain.png') repeat;
    }

    /* Investments Section */
    .investments {
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    }

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

    .investment-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .investment-card {
        background: rgba(74, 222, 128, 0.1);
        border: 1px solid rgba(74, 222, 128, 0.3);
        border-radius: 15px;
        padding: 25px;
        text-align: center;
    }

    .investment-card h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: #4ade80;
    }

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

    .investment-visual {
        width: 100%;
        height: 300px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4rem;
        width: 100%;
        height: 300px;
        background-position: bottom right;
        background-image: url('asst/img/hq720.jpg');
    }

    /* Team Section */
    .team-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .team-member {
        text-align: center;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        padding: 30px 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .team-avatar {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
        border-radius: 50%;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: #0a0a0a;
    }

    .team-member h4 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .team-member p {
        color: #a1a1aa;
        font-size: 0.9rem;
    }

    /* Case Studies */
    .case-studies {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    }

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

    .timeline {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .timeline-item {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        background: #4ade80;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        color: #0a0a0a;
        flex-shrink: 0;
    }

    .timeline-content h4 {
        font-size: 1.2rem;
        margin-bottom: 5px;
        color: #4ade80;
    }

    .timeline-content p {
        color: #a1a1aa;
        font-size: 0.9rem;
    }

    .chart-visual {
        width: 100%;
        height: 300px;
        background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .chart-visual::before {
        content: '📈';
        font-size: 4rem;
        opacity: 0.7;
    }

    /* Get Started */
    .get-started {
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
        text-align: center;
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-top: 50px;
    }

    .step {
        padding: 40px 20px;
        background: rgba(74, 222, 128, 0.05);
        border: 1px solid rgba(74, 222, 128, 0.2);
        border-radius: 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        background: #4ade80;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: bold;
        color: #0a0a0a;
        margin: 0 auto 20px;
    }

    .step h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: #4ade80;
    }

    .step p {
        color: #a1a1aa;
    }

    .cta-button {
        background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
        color: #0a0a0a;
        padding: 15px 40px;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        margin-top: 40px;
        transition: transform 0.2s;
    }

    .cta-button:hover {
        transform: translateY(-2px);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .nav-menu {
            display: none;
        }

        .mobile-menu-toggle {
            display: flex;
        }

        .header-content,
        .two-col,
        .philosophy-grid,
        .blockchain-grid,
        .investments-grid,
        .case-study-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .team-grid,
        .steps-grid {
            grid-template-columns: 1fr;
        }

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

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

        .header-text h1 {
            font-size: 2.5rem;
        }

        .section-header h2 {
            font-size: 2rem;
        }

        .header {
            padding: 120px 0 60px;
        }
    }