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

        :root {
            --bg-primary: #0f1419;
            --bg-secondary: #1a1d29;
            --bg-card: #212633;
            --bg-card-hover: #2d3240;
            --accent-cyan: #00d9ff;
            --accent-violet: #a78bfa;
            --accent-green: #10b981;
            --accent-blue: #3b82f6;
            --text-primary: #ffffff;
            --text-secondary: #9ca3af;
            --text-tertiary: #6b7280;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Animated Background */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            z-index: -1;
        }

        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: var(--accent-cyan);
            opacity: 0.3;
            animation: float 20s infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(-100vh) translateX(50px); }
        }

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

        /* Navigation */
      /*  nav {
            padding: 24px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
            background: rgba(15, 20, 25, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

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

        .logo {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-primary);
            text-decoration: none;
        }

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

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

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

        /* Hero Section */
        .hero {
            padding: 50px 0 120px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text .subtitle {
            font-size: 20px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .cta-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 16px 32px;
            background: var(--accent-cyan);
            color: var(--bg-primary);
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
            box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
        }

        .btn-secondary {
            padding: 16px 32px;
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--accent-cyan);
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: rgba(0, 217, 255, 0.1);
            transform: translateY(-2px);
        }

        .micro-copy {
            margin-top: 16px;
            font-size: 14px;
            color: var(--text-tertiary);
            font-style: italic;
        }

        .hero-image {
            position: relative;
        }

        .hero-image-placeholder {
            width: 100%;
            aspect-ratio: 1;
            background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
            border-radius: 16px;
            border: 2px solid var(--accent-cyan);
            box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--text-secondary);
        }

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

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

        .section-title h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 16px;
            color:white;
        }

        .section-title p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Value Proposition */
        .value-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .value-card {
            background: var(--bg-card);
            padding: 40px;
            border-radius: 12px;
            border-top: 3px solid var(--accent-cyan);
            transition: all 0.3s;
        }

        .value-card:nth-child(2) {
            border-top-color: var(--accent-violet);
        }

        .value-card:nth-child(3) {
            border-top-color: var(--accent-green);
        }

        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .value-card .icon {
            font-size: 48px;
            margin-bottom: 24px;
        }

        .value-card h3 {
            font-size: 24px;
            margin-bottom: 16px;
            font-weight: 700;
            color: white;
        }

        .value-card p {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* Expertise Grid */
        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .expertise-card {
            background: var(--bg-card);
            padding: 40px;
            border-radius: 12px;
            border-left: 4px solid var(--accent-cyan);
            transition: all 0.3s;
        }

        .expertise-card:nth-child(2) {
            border-left-color: var(--accent-violet);
        }

        .expertise-card:nth-child(3) {
            border-left-color: var(--accent-green);
        }

        .expertise-card:nth-child(4) {
            border-left-color: var(--accent-blue);
        }

        .expertise-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .expertise-card .icon {
            font-size: 42px;
            margin-bottom: 20px;
            display: block;
        }

        .expertise-card h3 {
            font-size: 22px;
            margin-bottom: 20px;
            font-weight: 700;
            color:white;
        }

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

        .expertise-card li {
            color: var(--text-secondary);
            margin-bottom: 12px;
            padding-left: 24px;
            position: relative;
        }

        .expertise-card li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--accent-cyan);
        }

        /* Social Proof */
        .social-proof {
            background: rgba(24, 27, 36, 0.6);
        }
        
        .social-proof .section-title h3 {
           color:white;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 80px;
        }

        .metric-card {
            text-align: center;
            padding: 40px;
            background: var(--bg-card);
            border-radius: 12px;
        }

        .metric-number {
            font-size: 72px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-violet) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
        }

        .metric-label {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.5;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .testimonial-card {
            background: var(--bg-card);
            padding: 32px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .testimonial-quote {
            color: var(--text-secondary);
            font-style: italic;
            margin-bottom: 24px;
            line-height: 1.7;
        }

        .testimonial-author {
            font-weight: 700;
            margin-bottom: 4px;
        }

        .testimonial-role {
            color: var(--text-tertiary);
            font-size: 14px;
        }

        /* Perspectives Section */
        .perspectives {
            background: var(--bg-secondary);
        }

        .perspectives-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .perspectives-intro h2 {
            font-size: 42px;
            margin-bottom: 16px;
            color:white;
        }

        .perspectives-intro h3 {
            font-size: 24px;
            color: var(--accent-cyan);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .perspectives-intro p {
            color: var(--text-secondary);
            font-size: 18px;
            margin-bottom: 12px;
        }

        .perspectives-stat {
            font-weight: 700;
            color: var(--text-primary);
            font-size: 20px;
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-bottom: 40px;
        }

        .article-card {
            background: var(--bg-card);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .article-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border-color: var(--accent-cyan);
        }

        .article-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-violet) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
        }

        .article-content {
            padding: 28px;
        }

        .article-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.4;
            color:white;
        }

        .article-excerpt {
            color: var(--text-secondary);
            margin-bottom: 16px;
            font-size: 15px;
            line-height: 1.6;
        }

        .article-link {
            color: var(--accent-cyan);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
        }

        .article-link:hover {
            text-decoration: underline;
        }

        .newsletter-cta {
            text-align: center;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image {
            width: 100%;
            aspect-ratio: 1;
            background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
            border-radius: 16px;
            border: 2px solid var(--accent-cyan);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--text-secondary);
        }

        .about-text h2 {
            font-size: 38px;
            margin-bottom: 32px;
            color: white;
        }

        .about-text p {
            color: var(--text-secondary);
            margin-bottom: 24px;
            font-size: 17px;
            line-height: 1.8;
        }

        .principles {
            margin-top: 40px;
            padding: 32px;
            background: var(--bg-card);
            border-radius: 12px;
            border-left: 4px solid var(--accent-green);
        }

        .principles h4 {
            margin-bottom: 20px;
            font-size: 18px;
            color:white;
        }

        .principles ul {
            list-style: none;
        }

        .principles li {
            color: var(--text-secondary);
            margin-bottom: 12px;
            padding-left: 24px;
            position: relative;
        }

        .principles li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-green);
            font-weight: 700;
        }

        /* Tech Stack */
        .tech-stack {
            background: rgba(24, 27, 36, 0.6);
            padding: 50px 0 !important;
        }

        .tech-categories {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        .tech-category h4 {
            font-size: 16px;
            margin-bottom: 16px;
            color: var(--accent-cyan);
            font-weight: 600;
        }

        .tech-category p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.8;
        }

        /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            text-align: center;
            padding: 60px 0;
        }

        .final-cta h2 {
            font-size: 48px;
            margin-bottom: 24px;
            color:white;
        }

        .final-cta .intro {
            font-size: 20px;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .benefits-list {
            max-width: 600px;
            margin: 0 auto 40px;
            text-align: left;
            background: var(--bg-card);
            padding: 32px 40px;
            border-radius: 12px;
        }

        .benefits-list h4 {
            margin-bottom: 20px;
            text-align: center;
        }

        .benefits-list ul {
            list-style: none;
        }

        .benefits-list li {
            color: var(--text-secondary);
            margin-bottom: 12px;
            padding-left: 28px;
            position: relative;
        }

        .benefits-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-cyan);
            font-weight: 700;
            font-size: 18px;
        }

        .value-statement {
            font-size: 18px;
            color: var(--text-primary);
            font-weight: 600;
            margin-bottom: 40px;
        }

        .contact-options {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-options h4 {
            margin-bottom: 20px;
            font-size: 20px;
        }

        .contact-links {
            display: flex;
            justify-content: center;
            gap: 32px;
        }

        .contact-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .contact-links a:hover {
            color: var(--accent-cyan);
        }

        /* Footer */
        footer {
            background: var(--bg-primary);
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        footer p {
            color: var(--text-tertiary);
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .hero-text h1 {
                font-size: 42px;
            }

            .value-grid,
            .expertise-grid,
            .testimonials-grid,
            .articles-grid {
                grid-template-columns: 1fr;
            }

            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .tech-categories {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

            .hero {
                padding: 140px 0 80px;
            }

            .hero-text h1 {
                font-size: 36px;
            }

            .hero-text .subtitle {
                font-size: 18px;
            }

            section {
                padding: 60px 0;
            }

            .section-title h2 {
                font-size: 32px;
            }

            .final-cta h2 {
                font-size: 36px;
            }

            .cta-group {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                text-align: center;
            }

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

            .metric-number {
                font-size: 56px;
            }

            .tech-categories {
                grid-template-columns: 1fr;
            }

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

        /* Fade-in Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in:nth-child(1) { animation-delay: 0.1s; }
        .fade-in:nth-child(2) { animation-delay: 0.2s; }
        .fade-in:nth-child(3) { animation-delay: 0.3s; }
