        :root {
            --text-primary: #111827;
            --text-secondary: #6b7280;
            --border-subtle: #e5e7eb;
            --bg-light: #ffffff;
            --accent: #111827;
            --accent-green: #10b981;
            /* Adjusted to match project green */
            --blue: #3b82f6;
            --purple: #8b5cf6;
            --red: #ef4444;
            --orange: #f97316;
            --teal: #14b8a6;
            --indigo: #6366f1;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html,
        body {
            overflow-x: hidden;
            overflow-y: auto;
            max-width: 100vw;
            width: 100%;
            min-height: 100vh;
        }

        body {
            font-family: 'Outfit', sans-serif;
            color: var(--text-primary);
            background-color: var(--bg-light);
            line-height: 1.5;
            position: relative;
            width: 100%;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            border-bottom: 1px solid var(--border-subtle);
            background: #fff;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-img {
            height: 40px;
            width: auto;
        }

        nav {
            display: flex;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        nav a:hover {
            color: var(--blue);
        }

        .auth-buttons {
            display: flex;
            gap: 12px;
        }

        .btn {
            font-size: 0.9rem;
            padding: 8px 16px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
        }

        .btn-login {
            border: 1px solid var(--border-subtle);
            color: var(--text-primary);
            background: white;
        }

        .btn-login:hover {
            background-color: #f9fafb;
            border-color: #d1d5db;
        }

        .btn-signup {
            border: 1px solid var(--blue);
            background-color: var(--blue);
            color: #ffffff;
        }

        .btn-signup:hover {
            background-color: #2563eb;
        }

        /* Hero Section */
        .hero {
            max-width: 1200px;
            margin: 0 auto;
            padding: 100px 24px 60px;
            text-align: center;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.1;
            background: linear-gradient(135deg, #111827 0%, #374151 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        /* SVG Icons */
        .icon-container {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .icon-svg {
            width: 24px;
            height: 24px;
            stroke-width: 2;
        }

        /* Cards */
        .card {
            border-radius: 20px;
            padding: 40px;
            border: 1px solid;
            background: white;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        .card-mining {
            background-color: #fff;
            border-color: #fee2e2;
        }

        .card-mining .icon-container {
            background: #fee2e2;
            color: #ef4444;
        }

        .card-nodes {
            background-color: #fff;
            border-color: #d1fae5;
        }

        .card-nodes .icon-container {
            background: #d1fae5;
            color: #10b981;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #111827;
        }

        /* Stats */
        .stats-container {
            display: flex;
            gap: 48px;
            flex-wrap: wrap;
            margin-top: 48px;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-weight: 800;
            font-size: 2.5rem;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            color: #6b7280;
            font-size: 0.95rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Buttons */
        .action-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 32px;
        }

        .btn-action {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-outline {
            background-color: white;
            color: #374151;
            border: 1px solid #e5e7eb;
        }

        .btn-outline:hover {
            background-color: #f9fafb;
            border-color: #d1d5db;
            transform: translateY(-2px);
        }

        .btn-solid {
            background-color: var(--blue);
            color: white;
            border: 1px solid var(--blue);
            box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.5);
        }

        .btn-solid:hover {
            background-color: #2563eb;
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.5);
        }

        /* New Components Section */
        .components-section {
            padding: 40px 0 80px;
            background-color: #f8fafc;
            margin-top: 0;
        }

        .dashboard-image {
            width: 100%;
            max-width: 1200px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            margin: 0 auto 60px;
            display: block;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #111827;
            text-align: center;
            margin-bottom: 40px;
            line-height: 1.2;
        }

        .components-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .component-item {
            text-align: center;
            padding: 40px 30px;
            border-radius: 24px;
            background: white;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }

        .component-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            border-color: var(--border-subtle);
        }

        .number-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            background-color: #ecfdf5;
            color: #10b981;
            font-size: 1.5rem;
            font-weight: 700;
            transition: transform 0.3s ease;
        }

        .component-item:hover .number-circle {
            transform: scale(1.1);
            background-color: #10b981;
            color: white;
        }

        .component-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 12px;
        }

        .component-desc {
            color: #6b7280;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* How It Works Section */
        .how-it-works {
            padding: 60px 0;
            background-color: white;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: #6b7280;
            text-align: center;
            margin-top: 16px;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .content-block {
            max-width: 800px;
            margin: 0 auto;
        }

        .paragraph {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #4b5563;
            margin-bottom: 20px;
            text-align: center;
        }

        .separator {
            height: 1px;
            background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
            margin: 30px auto;
            max-width: 600px;
            position: relative;
        }

        .separator::before {
            content: '';
            position: absolute;
            top: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 8px;
            background-color: var(--blue);
            border-radius: 50%;
        }

        /* Payout Policy Section */
        .payout-policy {
            padding: 100px 0 80px;
            background-color: #fff;
        }

        .payout-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #111827;
            text-align: center;
            margin-bottom: 20px;
        }

        .payout-description {
            font-size: 1.25rem;
            color: #4b5563;
            text-align: center;
            max-width: 900px;
            margin: 0 auto 50px;
            line-height: 1.6;
        }

        /* Features Section */
        .features-section {
            padding: 60px 0 80px;
            background-color: #f8fafc;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            border-radius: 20px;
            padding: 32px;
            border: 1px solid transparent;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: rotate(10deg) scale(1.1);
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
            color: white;
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 12px;
        }

        .feature-desc {
            color: #6b7280;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Color variations for feature cards */
        .feature-card-1 .feature-icon {
            background-color: var(--blue);
        }

        .feature-card-2 .feature-icon {
            background-color: var(--purple);
        }

        .feature-card-3 .feature-icon {
            background-color: var(--red);
        }

        .feature-card-4 .feature-icon {
            background-color: var(--teal);
        }

        .feature-card-5 .feature-icon {
            background-color: var(--orange);
        }

        .feature-card-6 .feature-icon {
            background-color: var(--indigo);
        }

        /* Call to Action Section */
        .cta-section {
            padding: 80px 0;
            background: #111827;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 24px;
            position: relative;
            z-index: 2;
        }

        .cta-subtitle {
            font-size: 1.25rem;
            color: #9ca3af;
            max-width: 600px;
            margin: 0 auto 48px;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 48px;
            border-radius: 99px;
            /* Pill shape */
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            background: var(--blue);
            color: white;
            text-decoration: none;
            box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.5);
            position: relative;
            z-index: 2;
        }

        .cta-button:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 30px -5px rgba(59, 130, 246, 0.6);
            background: #2563eb;
        }

        /* Utility Classes */
        .grid-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .section-padding {
            max-width: 1200px;
            margin: 0 auto;
            padding: 100px 24px;
        }

        .text-center {
            text-align: center;
        }

        .text-accent {
            color: #10b981;
        }

        .tag {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 99px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .tag-green {
            background-color: #ecfdf5;
            color: #059669;
        }

        .feature-section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #111827;
            text-align: center;
            margin-bottom: 60px;
            line-height: 1.2;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3rem;
            }

            .grid-section {
                gap: 40px;
            }

            .components-grid {
                gap: 20px;
            }

            .features-grid {
                gap: 20px;
            }
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-primary);
            cursor: pointer;
            padding: 5px;
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }

            .nav-container {
                padding: 15px 20px;
                position: relative;
            }

            .logo-img {
                height: 32px;
            }

            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
                border-bottom: 1px solid var(--border-subtle);
                gap: 15px;
                z-index: 1000;
            }

            nav.active {
                display: flex;
            }

            .hero {
                padding: 60px 20px 40px;
            }


            .hero h1 {
                font-size: 2.25rem;
            }

            .grid-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .grid-section>div:first-child {
                order: -1;
            }

            /* Image on top */

            .stats-container {
                gap: 30px;
                justify-content: center;
                margin-top: 30px;
            }

            .stat-item {
                align-items: center;
            }

            .components-grid {
                grid-template-columns: 1fr;
            }

            .component-item {
                padding: 30px 20px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .cta-title {
                font-size: 2rem;
            }

            .cta-button {
                width: 100%;
            }

            .action-buttons {
                justify-content: center;
                width: 100%;
            }

            .btn-action {
                width: 100%;
            }
        }

        .comparison-list {
            list-style: none;
            padding: 0;
            margin-top: 24px;
        }

        .comparison-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 18px;
            color: #4b5563;
            font-size: 1rem;
            line-height: 1.5;
        }

        .comparison-item i {
            margin-top: 3px;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .card-mining .comparison-item i {
            color: #ef4444;
        }

        .card-nodes .comparison-item i {
            color: #10b981;
        }

        /* Comparison Table Styles */
        .comparison-wrapper {
            border-radius: 20px;
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
            background: white;
            border: 1px solid rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
            /* Ensure readability */
        }

        .comparison-table th,
        .comparison-table td {
            padding: 18px 24px;
            text-align: center;
            border-bottom: 1px solid #f3f4f6;
        }

        .comparison-table th.feature-col {
            text-align: left;
            width: 25%;
            background: #ffffff;
            font-size: 1.1rem;
            color: #111827;
        }

        .comparison-table td.feature-label {
            text-align: left;
            font-weight: 500;
            color: #374151;
            background: #fafafa;
            /* Slight offset for labels */
        }

        /* Footer */
        footer {
            background-color: #111827;
            padding: 80px 0 40px;
            color: white;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto 60px;
            padding: 0 24px;
            text-align: left;
            align-items: start;
        }

        /* 1. Contact (Left) */
        .footer-content>div:nth-child(1) {
            justify-self: start;
            text-align: left;
        }

        /* 2. Logo (Center) */
        .footer-content>div:nth-child(2) {
            justify-self: center;
            text-align: center;
        }

        /* 3. Legal (Right) */
        .footer-content>div:nth-child(3) {
            justify-self: end;
            text-align: right;
        }

        /* Align links in Legal section to the right */
        .footer-content>div:nth-child(3)>div {
            align-items: flex-end;
        }

        .footer-logo {
            height: 40px;
            margin-bottom: 24px;
            filter: brightness(0) invert(1);
            display: inline-block;
        }

        .contact-grid {
            align-items: center;
            width: 100%;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #9ca3af;
            font-size: 0.9rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .footer-content {
                display: flex;
                /* Switch back to flex for simpler stacking or single col grid */
                flex-direction: column;
                gap: 40px;
                text-align: center;
                align-items: center;
            }

            .footer-content>div:nth-child(1),
            .footer-content>div:nth-child(2),
            .footer-content>div:nth-child(3) {
                justify-self: center;
                text-align: center;
                align-items: center;
                width: 100%;
            }

            .footer-content>div:nth-child(3)>div {
                align-items: center;
            }

            .footer-content>div:first-child {
                order: 1;
                /* Contact below logo */
            }

            .footer-content>div:nth-child(2) {
                order: 0;
                /* Logo first */
            }

            .footer-content>div:last-child {
                order: 2;
                /* Legal last */
            }

            /* Improve comparison table scroll on mobile */
            .comparison-wrapper {
                margin-left: -20px;
                margin-right: -20px;
                border-radius: 0;
                border-left: none;
                border-right: none;
            }

            /* Adjust newly added sections spacing */
            .components-section {
                padding-top: 40px;
                padding-bottom: 40px;
            }
        }

        /* Headers */
        .plan-col {
            vertical-align: top;
            padding-bottom: 30px !important;
        }

        .plan-col.starter {
            background: #f9fafb;
        }

        .plan-col.pro {
            background: #eff6ff;
            border-top: 4px solid var(--blue);
            position: relative;
        }

        .plan-col.expert {
            background: #fffbeb;
        }

        .plan-name {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 8px;
            color: #111827;
        }

        .plan-price {
            font-size: 2rem;
            font-weight: 800;
            color: #4f46e5;
            margin-bottom: 12px;
        }

        .rec-badge {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--blue);
            color: white;
            padding: 4px 12px;
            border-radius: 99px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
        }

        .plan-badge {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .plan-badge.warning {
            background: #fee2e2;
            color: #ef4444;
        }

        .plan-badge.fire {
            background: #eff6ff;
            color: #2563eb;
        }

        .plan-badge.time {
            background: #fffbeb;
            color: #d97706;
        }

        /* Rows */
        .section-row td {
            background: #f1f5f9;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.85rem;
            color: #64748b;
            padding: 10px 24px;
            text-align: left;
        }

        .gap {
            color: #94a3b8;
            margin: 0 6px;
        }

        .new {
            color: #16a34a;
            font-weight: 700;
        }

        .text-muted {
            color: #cbd5e1;
        }

        .comparison-table tr:hover td:nth-child(3) {
            background-color: #eff6ff;
        }

        /* Buttons */
        .btn-select {
            display: block;
            width: 100%;
            padding: 12px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            text-align: center;
            transition: all 0.2s;
            border: 1px solid #e5e7eb;
            color: #374151;
            background: white;
        }

        .btn-select:hover {
            border-color: var(--blue);
            color: var(--blue);
            transform: translateY(-2px);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }

        .pro .btn-select {
            background: var(--blue);
            color: white;
            border-color: var(--blue);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        }

        .pro .btn-select:hover {
            background: #1d4ed8;
            border-color: #1d4ed8;
        }

        .footer-note {
            margin: 15px 0;
            text-align: center;
            font-size: .9rem;
            color: #6b7280;
            font-weight: 500;
        }

        .contact-grid {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-preview-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            color: inherit;
        }

        .contact-preview-item:hover {
            opacity: 0.9;
        }

        /* Responsive Grid Classes for Homepage */
        .infrastructure-grid {
            grid-template-columns: 1fr 1fr;
        }

        .institutional-grid {
            grid-template-columns: 1fr 1fr;
        }

        /* Mobile Responsive Adjustments */
        @media (max-width: 768px) {

            /* Stack Infrastructure Grid */
            .infrastructure-grid {
                grid-template-columns: 1fr !important;
                gap: 30px !important;
            }

            /* Stack Institutional Grid */
            .institutional-grid {
                grid-template-columns: 1fr !important;
                gap: 20px !important;
            }

            /* Adjust Section Paddings */
            .section-padding {
                padding: 60px 20px !important;
            }

            /* Adjust Headings */
            .section-title,
            .payout-title,
            .feature-section-title {
                font-size: 2rem !important;
                /* Smaller than 2.5rem */
            }

            /* Specific adjustment for Infrastructure Section */
            .infrastructure-title {
                /* Was inline 2.75rem */
                font-size: 2rem !important;
            }

            /* Ensure images/videos fit */
            img,
            video {
                max-width: 100%;
                height: auto;
            }

            /* Comparison Table Scroll Hint */
            .comparison-wrapper {
                position: relative;
            }

            .comparison-wrapper::after {
                content: 'Scroll →';
                position: absolute;
                top: 10px;
                right: 10px;
                background: rgba(0, 0, 0, 0.1);
                padding: 4px 8px;
                border-radius: 4px;
                font-size: 0.8rem;
                pointer-events: none;
                display: none;
                /* Only if we want a hint */
            }
        }