
        :root {
            --bg: #07111f;
            --bg-soft: #0d1727;
            --card: rgba(255, 255, 255, 0.06);
            --card-strong: rgba(255, 255, 255, 0.09);
            --border: rgba(255, 255, 255, 0.10);
            --text: #f8fafc;
            --text-strong: #ffffff;
            --muted: #cbd5e1;
            --muted-2: #94a3b8;
            --accent: #34d399;
            --accent-dark: #10b981;
            --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
            --radius-xl: 28px;
            --radius-lg: 20px;
            --radius-md: 16px;
            --max: 1240px;
        }

        * {
            box-sizing: border-box;
        }

        html,
        body {
            margin: 0;
            padding: 0;
            background: radial-gradient(circle at top, rgba(52, 211, 153, 0.14), transparent 28%), var(--bg);
            color: var(--text);
            font-family: Inter, sans-serif;
        }

        body {
            min-height: 100vh;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .container {
            width: min(var(--max), calc(100% - 1.5rem));
            margin: 0 auto;
        }

        /* Feature Comparison Table Styles */
        .feature-check {
            color: #34d399;
        }

        .feature-check i {
            margin-right: 6px;
        }

        .feature-x {
            color: #f87171;
        }

        .feature-x i {
            margin-right: 6px;
        }

        .feature-unlimited {
            color: #fbbf24;
            font-weight: 600;
        }

        .upgrade-link-small {
            display: inline-block;
            margin-left: 8px;
            padding: 2px 8px;
            background: rgba(52, 211, 153, 0.15);
            color: #86efac;
            border-radius: 12px;
            font-size: 10px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
        }

        .upgrade-link-small:hover {
            background: rgba(52, 211, 153, 0.3);
            transform: translateY(-1px);
        }

        .feature-tooltip {
            position: relative;
            cursor: help;
            margin-left: 4px;
            color: var(--muted-2);
            font-size: 12px;
        }

        .feature-tooltip:hover::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: #1f2937;
            color: white;
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 12px;
            white-space: nowrap;
            z-index: 1000;
            margin-bottom: 8px;
        }

        .comparison-table th,
        .comparison-table td {
            position: relative;
        }

        .hero {
            padding: 1rem 0 2.25rem;
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 0.85rem 0 1.15rem;
        }

        .brand {
            font-weight: 800;
            letter-spacing: -0.02em;
            font-size: 1.1rem;
            color: var(--text-strong);
        }

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

        .nav-link {
            color: var(--muted);
            font-size: 0.95rem;
        }

        .currency-selector {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 20px;
        }

        .currency-dropdown {
            position: relative;
        }

        .currency-toggle {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 8px 16px;
            color: var(--text);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            transition: all 0.2s;
        }

        .currency-toggle:hover {
            background: var(--card-strong);
            border-color: var(--accent);
        }

        .currency-menu {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-top: 8px;
            min-width: 220px;
            z-index: 100;
            box-shadow: var(--shadow);
        }

        .currency-option {
            padding: 12px 16px;
            cursor: pointer;
            transition: all 0.2s;
            border-bottom: 1px solid var(--border);
        }

        .currency-option:last-child {
            border-bottom: none;
        }

        .currency-option:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .currency-option strong {
            display: inline-block;
            min-width: 50px;
        }

        .currency-option small {
            font-size: 11px;
            color: var(--muted-2);
        }

        .founders-badge {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
        }

        .save-badge {
            background: rgba(52, 211, 153, 0.15);
            color: #86efac;
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 600;
        }

        .billing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 32px;
        }

        .toggle-group {
            display: flex;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 4px;
        }

        .toggle-btn {
            padding: 8px 20px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            background: transparent;
            border: none;
            color: var(--muted);
        }

        .toggle-btn.active {
            background: var(--accent);
            color: #052814;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 0.875rem 1.1rem;
            border-radius: 16px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: 0.2s ease;
            border: 1px solid transparent;
            cursor: pointer;
            width: 100%;
        }

        .btn-primary {
            background: linear-gradient(180deg, var(--accent), var(--accent-dark));
            color: #052814;
            box-shadow: 0 10px 28px rgba(52, 211, 153, 0.25);
        }

        .btn-primary:hover {
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.06);
            color: var(--text);
            border-color: var(--border);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.10);
        }

        .btn-current {
            background: rgba(255, 255, 255, 0.06);
            color: var(--muted-2);
            border-color: var(--border);
            cursor: default;
            opacity: 0.7;
        }

        .btn-upgrade {
            background: linear-gradient(180deg, var(--accent), var(--accent-dark));
            color: #052814;
        }

        .btn-downgrade {
            background: rgba(239, 68, 68, 0.15);
            color: #f87171;
            border-color: rgba(239, 68, 68, 0.3);
        }

        .btn-founders {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            padding: 0.5rem 0.85rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid var(--border);
            color: #a7f3d0;
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .hero-grid {
            display: grid;
            gap: 1rem;
            align-items: start;
        }

        .hero-copy {
            padding: 1rem 0 0;
        }

        .hero h1 {
            margin: 1rem 0 0.8rem;
            font-size: clamp(2rem, 6vw, 4.5rem);
            line-height: 1.02;
            letter-spacing: -0.05em;
            color: var(--text-strong);
            font-weight: 800;
        }

        .hero p {
            margin: 0;
            max-width: 720px;
            color: var(--muted);
            font-size: 1rem;
            line-height: 1.7;
        }

        .hero-actions {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-top: 1.25rem;
        }

        .hero-points {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
            margin-top: 1.35rem;
        }

        .point-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 0.95rem;
            min-height: 110px;
        }

        .point-card strong {
            display: block;
            font-size: 0.98rem;
            margin-bottom: 0.35rem;
            color: var(--text-strong);
        }

        .point-card span {
            color: var(--muted);
            font-size: 0.88rem;
            line-height: 1.5;
        }

        .section {
            padding: 0 0 2rem;
        }

        .section-head {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
            margin-bottom: 1rem;
        }

        .section-head h2 {
            margin: 0;
            font-size: 1.5rem;
            letter-spacing: -0.03em;
            color: var(--text-strong);
        }

        .section-head p {
            margin: 0;
            color: var(--muted-2);
            line-height: 1.6;
        }

        .pricing-grid {
            display: grid;
            gap: 1rem;
        }

        .plan-card {
            position: relative;
            display: flex;
            flex-direction: column;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            padding: 1.25rem;
            box-shadow: var(--shadow);
            overflow: hidden;
            min-height: 100%;
        }

        .plan-card.popular {
            background: linear-gradient(180deg, rgba(52, 211, 153, 0.12), rgba(255, 255, 255, 0.06));
            border-color: rgba(52, 211, 153, 0.55);
        }

        .plan-card.founders {
            background: linear-gradient(180deg, rgba(245, 158, 11, 0.12), rgba(217, 119, 6, 0.06));
            border-color: rgba(245, 158, 11, 0.55);
        }

        .plan-badge-row {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 0.75rem;
        }

        .plan-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.45rem 0.75rem;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 800;
            text-transform: uppercase;
            background: rgba(255, 255, 255, 0.10);
            color: var(--text);
        }

        .plan-card.popular .plan-badge {
            background: #a7f3d0;
            color: #052814;
        }

        .plan-card.founders .plan-badge {
            background: #f59e0b;
            color: white;
        }

        .plan-popular-note {
            font-size: 0.72rem;
            font-weight: 700;
            color: #a7f3d0;
        }

        .plan-founders-note {
            font-size: 0.72rem;
            font-weight: 700;
            color: #fbbf24;
        }

        .plan-name {
            margin: 1rem 0 0.25rem;
            font-size: 1.45rem;
            letter-spacing: -0.03em;
            color: var(--text-strong);
        }

        .plan-description {
            margin: 0 0 1rem;
            color: var(--muted);
            line-height: 1.65;
        }

        .plan-price {
            display: flex;
            align-items: flex-end;
            gap: 0.3rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .plan-price strong {
            font-size: 2.15rem;
            letter-spacing: -0.05em;
            line-height: 1;
            color: var(--text-strong);
        }

        .plan-price span {
            color: var(--muted-2);
            font-size: 0.95rem;
            padding-bottom: 0.18rem;
        }

        .original-price {
            font-size: 0.85rem;
            color: var(--muted-2);
            text-decoration: line-through;
            margin-left: 8px;
        }

        .plan-metrics {
            background: rgba(4, 10, 20, 0.45);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 0.95rem;
            display: grid;
            gap: 0.75rem;
        }

        .metric-label {
            display: block;
            font-size: 0.72rem;
            color: var(--muted-2);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.25rem;
        }

        .metric-value {
            font-size: 0.96rem;
            font-weight: 700;
            color: var(--text-strong);
        }

        .plan-features {
            list-style: none;
            padding: 0;
            margin: 1rem 0 0;
            display: grid;
            gap: 0.7rem;
        }

        .plan-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            color: var(--muted);
            line-height: 1.55;
            font-size: 0.94rem;
        }

        .plan-features li::before {
            content: "✓";
            flex: 0 0 auto;
            width: 1.35rem;
            height: 1.35rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: rgba(52, 211, 153, 0.15);
            color: #86efac;
            font-weight: 900;
            margin-top: 0.05rem;
        }

        .plan-footer {
            margin-top: auto;
            padding-top: 1.15rem;
        }

        .comparison-layout {
            display: grid;
            gap: 1rem;
        }

        .comparison-card,
        .faq-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            padding: 1.15rem;
            box-shadow: var(--shadow);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            overflow: hidden;
            border-radius: 18px;
        }

        .comparison-table th,
        .comparison-table td {
            text-align: left;
            padding: 0.9rem 0.8rem;
            border-top: 1px solid var(--border);
            vertical-align: top;
            font-size: 0.92rem;
        }

        .comparison-table thead th {
            border-top: none;
            color: var(--muted-2);
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .comparison-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.03);
        }

        .category-separator td {
            background: rgba(52, 211, 153, 0.08);
            font-weight: 700;
            color: var(--text-strong);
            border-top: 1px solid var(--border);
        }

        .faq-list {
            display: grid;
            gap: 0.8rem;
            margin-top: 0.75rem;
        }

        .faq-item {
            border-radius: 18px;
            border: 1px solid var(--border);
            background: rgba(4, 10, 20, 0.35);
            padding: 0.95rem;
        }

        .faq-item strong {
            display: block;
            margin-bottom: 0.35rem;
            font-size: 0.98rem;
            color: var(--text-strong);
        }

        .faq-item p {
            margin: 0;
            color: var(--muted);
            line-height: 1.65;
            font-size: 0.92rem;
        }

        .footer-note {
            text-align: center;
            color: var(--muted-2);
            font-size: 0.92rem;
            padding: 0.5rem 0 2.5rem;
        }

        @media (min-width: 640px) {
            .container {
                width: min(var(--max), calc(100% - 2rem));
            }

            .hero {
                padding: 1.25rem 0 3rem;
            }

            .hero-actions {
                flex-direction: row;
                align-items: center;
            }

            .hero-actions .btn {
                width: auto;
            }

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

        @media (min-width: 900px) {
            .hero-grid {
                grid-template-columns: 1.15fr 0.85fr;
                gap: 1.25rem;
            }

            .pricing-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .comparison-layout {
                grid-template-columns: 1fr;
            }
        }

        @media (min-width: 1180px) {
            .pricing-grid {
                grid-template-columns: repeat(5, minmax(0, 1fr));
            }

            .comparison-layout {
                grid-template-columns: 1.15fr 0.85fr;
            }
        }

        @media (max-width: 768px) {
            .currency-selector {
                justify-content: center;
            }

            .currency-menu {
                right: auto;
                left: 0;
            }

            .comparison-table {
                font-size: 12px;
            }

            .comparison-table td,
            .comparison-table th {
                padding: 8px 6px;
            }
        }

        @media (max-width: 430px) {
            .hero-points {
                grid-template-columns: 1fr;
            }

            .nav {
                flex-direction: column;
                align-items: flex-start;
            }

            .nav-links {
                width: 100%;
                justify-content: space-between;
                flex-wrap: wrap;
            }

            .billing-toggle {
                flex-direction: column;
            }

            .comparison-table {
                display: block;
                overflow-x: auto;
            }
        }
   