        /* CSS Reset and Custom Properties */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0ea5e9;
            --primary-dark: #0284c7;
            --dark: #0f172a;
            --gray-900: #111827;
            --gray-600: #6b7280;
            --gray-300: #d1d5db;
            --gray-100: #f3f4f6;
            --success: #10b981;
            --warning: #f59e0b;
            --error: #ef4444;
            --mint: #a7f3d0;
            --mint-light: #d1fae5;
            --max-width: 1200px;
            --section-spacing: 80px;
            --font-inter: 'Inter', sans-serif;
            /* --nav-height: 80px; */
        }

        /* Global Styles */
        body {
            font-family: var(--font-inter);
            color: var(--dark);
            line-height: 1.6;
            background: #ffffff;
            overflow-x: hidden;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
            /* margin-top: var(--nav-height); */
        }

        /* Typography */
        h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        h2 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.25rem;
        }

        h3 {
            font-size: 1.75rem;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        h4 {
            font-size: 1.25rem;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 0.75rem;
        }

        p {
            font-size: 1.125rem;
            line-height: 1.7;
            color: var(--gray-600);
            margin-bottom: 1.25rem;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            z-index: 1000;
            transition: all 0.3s ease;
            height: var(--nav-height);
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem 0;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--dark);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

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

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

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 0.75rem 1.75rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 6px rgba(14, 165, 233, 0.2);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(14, 165, 233, 0.3);
        }

        .btn-primary.pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 4px 6px rgba(14, 165, 233, 0.2);
            }

            50% {
                box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
            }

            100% {
                box-shadow: 0 4px 6px rgba(14, 165, 233, 0.2);
            }
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            padding: 140px 0 80px;
            background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            max-width: 800px;
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: 1.25rem;
            max-width: 600px;
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
        }

        /* DAG Background Animation */
        .dag-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.1;
        }

        .dag-node {
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--primary);
            border-radius: 50%;
            animation: float 20s infinite ease-in-out;
        }

        .dag-line {
            position: absolute;
            height: 1px;
            background: var(--primary);
            transform-origin: left center;
            opacity: 0.5;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0);
            }

            25% {
                transform: translate(10px, -10px);
            }

            50% {
                transform: translate(-10px, 10px);
            }

            75% {
                transform: translate(5px, -5px);
            }
        }

        /* One Platform Section */
        .one-platform {
            padding: var(--section-spacing) 0;
        }

        .platform-container {
            position: relative;
        }

        .platform-grid {
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        /* Team Selector */
        .team-selector {
            position: sticky;
            top: 100px;
            height: fit-content;
            background: #fafbfc;
            border-radius: 0.75rem;
            padding: 0.5rem;
        }

        .team-item {
            padding: 1rem 1.25rem;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.2s ease;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .team-item:hover {
            background: rgba(14, 165, 233, 0.05);
        }

        .team-item.active {
            background: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .team-content {
            flex: 1;
        }

        .team-item h4 {
            margin-bottom: 0.25rem;
            color: var(--dark);
            font-size: 1rem;
            font-weight: 600;
        }

        .team-item p {
            font-size: 0.875rem;
            margin-bottom: 0;
            color: var(--gray-600);
            line-height: 1.4;
        }

        .team-item.active p {
            color: var(--dark);
        }

        .show-me-how {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-weight: 500;
            font-size: 0.875rem;
            margin-top: 0.5rem;
            text-decoration: none;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .team-item.active .show-me-how {
            opacity: 1;
        }

        .show-me-how::after {
            content: '→';
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .team-item:hover .show-me-how::after {
            transform: translateX(3px);
        }

        .team-chevron {
            width: 20px;
            height: 20px;
            color: var(--gray-600);
            transition: transform 0.2s ease;
            margin-left: 1rem;
        }

        .team-item.active .team-chevron {
            transform: rotate(180deg);
            color: var(--primary);
        }

        /* Workflow Demonstrations */
        .workflow-demo {
            display: none;
            opacity: 0;
            animation: fadeIn 0.5s ease forwards;
        }

        .workflow-demo.active {
            display: block;
        }

        .workflow-header {
            background: var(--mint-light);
            padding: 2rem 2.5rem;
            border-radius: 0.75rem;
            margin-bottom: 2rem;
        }

        .workflow-header h3 {
            color: var(--dark);
            margin-bottom: 0.5rem;
            font-size: 1.75rem;
        }

        .workflow-header p {
            color: var(--gray-600);
            font-size: 1.125rem;
            margin-bottom: 0;
        }

        .workflow-container {
            background: white;
            border: 1px solid var(--gray-300);
            border-radius: 0.75rem;
            padding: 2rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .workflow-flow {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2rem;
            position: relative;
            padding: 1rem 0;
        }

        .workflow-step {
            background: white;
            border: 1px solid var(--gray-300);
            border-radius: 0.75rem;
            padding: 1.5rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            position: relative;
            transition: all 0.3s ease;
            flex: 1;
            text-align: center;
        }

        .workflow-step:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .workflow-step.trigger {
            background: #fef3c7;
            border-color: #fbbf24;
        }

        .workflow-step.trigger .step-label {
            color: #92400e;
            background: #fef3c7;
            border-color: #fbbf24;
        }

        .workflow-step.action {
            background: #e0f2fe;
            border-color: #7dd3fc;
        }

        .workflow-step.action .step-label {
            color: #075985;
            background: #e0f2fe;
            border-color: #7dd3fc;
        }

        .workflow-step.outcome {
            background: #d1fae5;
            border-color: #6ee7b7;
        }

        .workflow-step.outcome .step-label {
            color: #064e3b;
            background: #d1fae5;
            border-color: #6ee7b7;
        }

        .step-label {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            padding: 0.25rem 1rem;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            background: white;
            border: 1px solid var(--gray-300);
            border-radius: 9999px;
        }

        .step-icon {
            width: 48px;
            height: 48px;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 1rem;
            background: white;
        }

        .workflow-step h4 {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .workflow-step p {
            font-size: 0.875rem;
            margin-bottom: 0;
            color: var(--gray-600);
        }

        .workflow-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 2px;
            background: var(--gray-300);
            z-index: 0;
        }

        .workflow-arrow::after {
            content: '';
            position: absolute;
            right: -8px;
            top: -3px;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 4px 0 4px 8px;
            border-color: transparent transparent transparent var(--gray-300);
        }

        .workflow-details {
            margin-top: 2rem;
        }

        .workflow-benefit {
            display: flex;
            align-items: start;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .workflow-benefit::before {
            content: '✓';
            color: var(--success);
            font-weight: 600;
            margin-top: 0.2rem;
        }

        /* Architecture Section */
        .architecture {
            padding: var(--section-spacing) 0;
            background: linear-gradient(to bottom, #f8fafc, #ffffff);
        }

        .architecture-diagram {
            margin-top: 3rem;
            padding: 3rem;
            background: white;
            border: 2px dashed var(--gray-300);
            border-radius: 1rem;
            position: relative;
        }

        .architecture-visual {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            align-items: center;
        }

        .architecture-layer {
            width: 100%;
            max-width: 800px;
            padding: 2rem;
            background: var(--gray-100);
            border-radius: 1rem;
            position: relative;
            transition: all 0.3s ease;
        }

        .architecture-layer:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .architecture-layer.orchestration {
            background: linear-gradient(135deg, #e0f2fe, #bae6fd);
            border: 2px solid #7dd3fc;
        }

        .architecture-layer.agents {
            background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
            border: 2px solid #c084fc;
        }

        .architecture-layer.connectivity {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border: 2px solid #fbbf24;
        }

        .layer-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .layer-icon {
            width: 48px;
            height: 48px;
            background: white;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .layer-info h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
            color: var(--dark);
        }

        .layer-info p {
            font-size: 0.875rem;
            margin-bottom: 0;
            color: var(--gray-600);
        }

        .layer-components {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        .component-tag {
            padding: 0.5rem 1rem;
            background: white;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--dark);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: all 0.2s ease;
        }

        .component-tag:hover {
            transform: translateY(-1px);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        }

        .architecture-connector {
            width: 2px;
            height: 30px;
            background: var(--gray-400);
            margin: -1rem auto;
            position: relative;
            z-index: 1;
        }

        .architecture-connector::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: -3px;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 8px 4px 0 4px;
            border-color: var(--gray-400) transparent transparent transparent;
        }

        /* Problem Section */
        .problems {
            padding: var(--section-spacing) 0;
        }

        .problems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .problem-card {
            padding: 2rem;
            background: white;
            border: 1px solid var(--gray-300);
            border-radius: 0.75rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .problem-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
            transform: translateY(-100%);
            transition: transform 0.3s ease;
        }

        .problem-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .problem-card:hover::before {
            transform: translateY(0);
        }

        .problem-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin: 0 auto 1.5rem;
        }

        .problem-card h4 {
            color: var(--dark);
            margin-bottom: 0.75rem;
        }

        .problem-card p {
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        .solution-statement {
            margin-top: 3rem;
            padding: 2rem;
            background: linear-gradient(to right, #f0fdf4, #d1fae5);
            border-radius: 0.75rem;
            text-align: center;
        }

        .solution-statement h3 {
            color: var(--success);
            margin-bottom: 0.5rem;
        }

        .solution-statement p {
            color: var(--dark);
            font-size: 1.125rem;
            margin-bottom: 0;
        }

        /* Final CTA Section */
        .final-cta {
            padding: var(--section-spacing) 0;
            background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .final-cta h2 {
            color: white;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .final-cta p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.25rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .final-cta .hero-buttons {
            position: relative;
            z-index: 1;
            justify-content: center;
        }

        .final-cta .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-color: rgba(255, 255, 255, 0.3);
        }

        .final-cta .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Footer */
        footer {
            padding: 3rem 0;
            background: var(--dark);
            color: white;
            text-align: center;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .footer-copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
        }

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

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            h3 {
                font-size: 1.5rem;
            }

            .nav-links {
                display: none;
            }

            .hero {
                padding: 100px 0 60px;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .hero-buttons .btn {
                width: 100%;
                text-align: center;
            }

            .platform-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .team-selector {
                position: relative;
                top: 0;
                background: transparent;
                padding: 0;
            }

            .team-item.active::after {
                display: none;
            }

            .workflow-flow {
                flex-direction: column;
                align-items: stretch;
                gap: 2rem;
            }

            .workflow-arrow {
                display: none;
            }

            .workflow-step {
                margin-bottom: 1rem;
            }

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

            .architecture-layer {
                padding: 1.5rem;
            }

            .layer-components {
                gap: 0.5rem;
            }

            .component-tag {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }
        }

        .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--accent-color);
            border-radius: 24px 24px 0 0;
        }

        .benefit-card:nth-child(1) { --accent-color: #ff6b6b; }
        .benefit-card:nth-child(2) { --accent-color: #4ecdc4; }
        .benefit-card:nth-child(3) { --accent-color: #45b7d1; }
        .benefit-card:nth-child(4) { --accent-color: #96ceb4; }
        .benefit-card:nth-child(5) { --accent-color: #feca57; }

        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
        }

        .benefit-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--accent-color);
        }

        .benefit-text {
            font-size: 1.1rem;
            color: #4a5568;
            font-weight: 500;
        }

        .how-it-works {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 32px;
            padding: 50px 40px;
            margin: 60px 0;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2d3748;
            text-align: center;
            margin-bottom: 40px;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border-radius: 50%;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }

        .step-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 10px;
        }

        .step-description {
            color: #718096;
            font-size: 1rem;
        }

        .cta-section {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 32px;
            padding: 60px 40px;
            text-align: center;
            margin: 60px 0;
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
            border-radius: 32px 32px 0 0;
        }

        .cta-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 20px;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            color: #718096;
            margin-bottom: 40px;
        }

        .phone-form {
            max-width: 400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .phone-input {
            padding: 16px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
        }

        .phone-input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
        }

        .submit-btn {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 16px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(102, 126, 234, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .trust-indicators {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .trust-text {
            color: #718096;
            font-size: 0.9rem;
        }

        .final-tagline {
            background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 1.3rem;
            font-weight: 700;
            margin-top: 40px;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: float 6s ease-in-out infinite;
        }

        .floating-circle:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-circle:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }

        .floating-circle:nth-child(3) {
            width: 100px;
            height: 100px;
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }

        .container > .hero {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 32px;
            padding: 60px 40px;
            margin: 40px 0;
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }

        .container > .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
            border-radius: 32px 32px 0 0;
        }

        /* Fix for blogger.html hero text centering and style */
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 600;
            color: #4a5568;
            text-align: center;
            margin-bottom: 40px;
        }

        .hero-description {
            font-size: 1.2rem;
            color: #718096;
            text-align: center;
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        body > .floating-elements {
            position: relative;
            z-index: 0;
        }

        .hero, .floating-elements {
            position: relative;
            z-index: 0;
        }

.blogger-header-spacer {
    height: 80px;
}

@media (max-width: 768px) {
    .blogger-header-spacer {
        height: 64px;
    }
}