        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #3b82f6;
            --primary-light: #60a5fa;
            --bg-dark: #020617;
            --bg-card: #1e293b;
            --text-light: #e2e8f0;
            --text-muted: #94a3b8;
            --border-color: rgba(255, 255, 255, 0.1);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            color: white;
            letter-spacing: -0.5px;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button {
            cursor: pointer;
            border: none;
            font-size: inherit;
            font-family: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 50;
            background: rgba(2, 6, 23, 0.5);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .nav-content {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            height: 80px;
            padding: 0 24px;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            justify-self: start;
        }

        .nav-brand-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-brand-icon svg {
            width: 20px;
            height: 20px;
            color: white;
        }

        .nav-brand-text {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: 20px;
            color: white;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            font-size: 14px;
            font-weight: 500;
            justify-self: center;
        }

        .nav-links a {
            color: var(--text-muted);
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: white;
        }

        .nav-buttons {
            display: flex;
            gap: 16px;
            align-items: center;
            justify-self: end;
        }

        .btn {
            padding: 10px 24px;
            border-radius: 24px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            text-align: center;
        }

        .btn-primary {
            background-color: white;
            color: black;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
        }

        .btn-primary:hover {
            background-color: rgba(255, 255, 255, 0.9);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--text-muted);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            color: white;
            background-color: rgba(255, 255, 255, 0.05);
        }

        /* Hero Section */
        .hero {
            position: relative;
            padding-top: 160px;
            padding-bottom: 80px;
            text-align: center;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            filter: blur(120px);
            z-index: -1;
            mix-blend-mode: screen;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            margin-bottom: 32px;
            font-size: 12px;
            font-weight: 500;
            color: var(--text-muted);
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            background-color: var(--primary);
            border-radius: 50%;
        }

        h1 {
            font-size: clamp(48px, 8vw, 96px);
            line-height: 1.1;
            margin-bottom: 32px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .gradient-text {
            background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .accent1 {
            color:#0179FF;
        }

        .accent2 {
            color:#05D049;
        }

        .hero p {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.8;
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 80px;
        }

        .btn-large {
            padding: 14px 32px;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-large.primary {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
            position: relative;
        }

        .btn-large.primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
            filter: blur(40px);
            opacity: 0.15;
            z-index: -1;
            border-radius: inherit;
        }

        .btn-large.primary:hover {
            background-color: #2563eb;
            transform: translateY(-2px);
        }

        .btn-large.outline {
            border: 1px solid rgba(255, 255, 255, 0.2);
            background-color: transparent;
            color: white;
        }

        .btn-large.outline:hover {
            background-color: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .hero-visual {
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
        }

        .dashboard-mockup {
            aspect-ratio: 16 / 9;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            position: relative;
        }

        .dashboard-mockup::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(2, 6, 23, 0.5) 100%);
            z-index: 10;
        }

        .dashboard-mockup img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            opacity: 0.8;
            mix-blend-mode: luminosity;
        }

        /* Features Section */
        .features {
            padding: 96px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 64px;
        }

        .section-header h2 {
            font-size: clamp(32px, 5vw, 56px);
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .section-header p {
            font-size: 18px;
            color: var(--text-muted);
            line-height: 1.8;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .feature-card {
            padding: 32px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.02);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .feature-card:nth-child(1) .feature-icon {
            background-color: rgba(59, 130, 246, 0.2);
        }

        .feature-card:nth-child(1) .feature-icon svg {
            color: var(--primary);
        }

        .feature-card:nth-child(2) .feature-icon {
            background-color: rgba(96, 165, 250, 0.2);
        }

        .feature-card:nth-child(2) .feature-icon svg {
            color: #60a5fa;
        }

        .feature-card:nth-child(3) .feature-icon {
            background-color: rgba(168, 85, 247, 0.2);
        }

        .feature-card:nth-child(3) .feature-icon svg {
            color: #a855f7;
        }

        .feature-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
        }

        .feature-card p {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .feature-card a {
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s;
        }

        .feature-card a:hover {
            color: var(--primary-light);
            gap: 10px;
        }

        .overlay-position {
            position: absolute;
            bottom: 24px;
            left: 24px;
        }

        /* Resources Section */
        .resources {
            padding: 96px 0;
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .resource-card {
            padding: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            background: rgba(30, 41, 59, 0.5);
            backdrop-filter: blur(10px);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .resource-card:hover {
            background: rgba(30, 41, 59, 0.8);
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .resource-header {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .resource-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .resource-card:nth-child(1) .resource-icon {
            background: rgba(244, 63, 94, 0.1);
        }

        .resource-card:nth-child(1) .resource-icon svg {
            color: #f43f5e;
        }

        .resource-card:nth-child(2) .resource-icon {
            background: rgba(16, 185, 129, 0.1);
        }

        .resource-card:nth-child(2) .resource-icon svg {
            color: #10b981;
        }

        .resource-card:nth-child(3) .resource-icon {
            background: rgba(245, 158, 11, 0.1);
        }

        .resource-card:nth-child(3) .resource-icon svg {
            color: #f59e0b;
        }

        .resource-info h4 {
            font-size: 16px;
            margin-bottom: 4px;
        }

        .resource-info p {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Social Proof Section */
        .social-proof {
            padding: 96px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .social-proof-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .social-proof h2 {
            font-size: clamp(32px, 5vw, 56px);
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .social-proof>.container>div:first-child p {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 32px;
            line-height: 1.8;
        }

        .metric-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .metric-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .metric-item svg {
            width: 20px;
            height: 20px;
            color: var(--primary);
            flex-shrink: 0;
        }

        .metric-item span {
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
        }

        .testimonial {
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
            backdrop-filter: blur(10px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .testimonial::before {
            content: '"';
            position: absolute;
            top: 0;
            right: 40px;
            font-size: 128px;
            color: rgba(255, 255, 255, 0.1);
            font-family: Georgia, serif;
            line-height: 0.5;
        }

        .testimonial-text {
            font-size: 20px;
            line-height: 1.8;
            color: white;
            margin-bottom: 32px;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
        }

        .author-info h4 {
            font-size: 16px;
            margin-bottom: 4px;
        }

        .author-info p {
            font-size: 12px;
            color: var(--text-muted);
        }

        .author-tight {
            margin-bottom:0px !important;
        }

        /* CTA Section */
        .cta {
            padding: 128px 0;
            text-align: center;
            background: rgba(59, 130, 246, 0.05);
        }

        .cta h2 {
            font-size: clamp(32px, 5vw, 56px);
            margin-bottom: 24px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.2;
        }

        .cta p {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }

        .cta .btn-large {
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
        }

        /* Footer */
        footer {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            background: var(--bg-dark);
            padding: 64px 0 32px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 64px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 24px;
        }

        .footer-brand-icon {
            width: 24px;
            height: 24px;
            border-radius: 6px;
            background-color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-brand-icon svg {
            width: 16px;
            height: 16px;
            color: white;
        }

        .footer-brand-text {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            color: white;
        }

        .footer-desc {
            font-size: 14px;
            color: var(--text-muted);
            max-width: 200px;
        }

        footer h4 {
            font-size: 14px;
            margin-bottom: 16px;
            color: white;
        }

        footer a {
            display: block;
            margin-bottom: 12px;
            font-size: 14px;
            color: var(--text-muted);
            transition: color 0.3s;
        }

        footer a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
            font-size: 14px;
        }

        .footer-links {
            display: flex;
            gap: 32px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            h1 {
                font-size: 40px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-large {
                width: 100%;
                justify-content: center;
            }

            .section-header h2 {
                font-size: 32px;
            }

            .social-proof-content {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                flex-direction: column;
            }

            .nav-buttons {
                gap: 8px;
            }

            .btn {
                padding: 8px 16px;
                font-size: 12px;
            }
        }

/* Appended: toast notification and optional nav alignment (kept non-destructive) */

/* Row layout balancing for Desktop (non-destructive; will not override grid if present) */
nav .nav-content {
    /* If you prefer flex layout instead of grid, uncomment the next line */
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
}

nav .nav-brand,
nav .nav-buttons {
    flex: 1;
}

nav .nav-buttons {
    display: flex;
    justify-content: flex-end;
}

nav .nav-links {
    display: flex;
    justify-content: center;
    gap: 32px;
}

/* Responsive Mobile Changes: Hide navigation links on smaller viewports */
@media (max-width: 768px) {
    nav .nav-links {
        display: none; /* Removes the center links completely on mobile */
    }
    nav .nav-brand {
        text-align: center; /* Optional: centers the logo when links are hidden */
    }
    nav .nav-content {
        justify-content: center;
    }
}

/* Toast notification styling for clipboard copy */
.email-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #111827;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #374151;
    pointer-events: none;
}
.email-toast.show {
    transform: translateX(-50%) translateY(0);
}