:root {
            --bg-base: #f8fafc;
            --bg-surface: #ffffff;
            --text-primary: #0f172a;
            --text-secondary: #475569;
            --primary: #0ea5e9;
            --primary-glow: rgba(14, 165, 233, 0.2);
            --accent: #14b8a6;
            --accent-glow: rgba(20, 184, 166, 0.2);

            --card-bg: rgba(255, 255, 255, 0.8);
            --card-border: rgba(0, 0, 0, 0.08);
            --card-border-hover: rgba(14, 165, 233, 0.3);

            --font-display: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-base);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Background Grids and Glows */
        .grid-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-image:
                linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
            background-size: 50px 50px;
            mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
            -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
            z-index: -2;
            pointer-events: none;
        }

        .bg-glow {
            position: fixed;
            border-radius: 50%;
            filter: blur(100px);
            z-index: -1;
            opacity: 0.4;
            pointer-events: none;
            animation: pulse 10s infinite alternate ease-in-out;
        }

        .bg-glow-1 {
            top: -10%;
            left: -10%;
            width: 50vw;
            height: 50vw;
            background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
        }

        .bg-glow-2 {
            bottom: -20%;
            right: -10%;
            width: 60vw;
            height: 60vw;
            background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
            animation-delay: -5s;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.3;
            }

            100% {
                transform: scale(1.1);
                opacity: 0.5;
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Typography */
        h1,
        h2,
        h3,
        .logo {
            font-family: var(--font-display);
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        p {
            color: var(--text-secondary);
            font-size: 1.05rem;
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            padding: 1rem 0;
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(to right, #0ea5e9, #14b8a6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.05em;
        }

        .logo-icon {
            height: 1.75rem;
            width: auto;
        }

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

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

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

        .nav-contact-btn {
            background: rgba(14, 165, 233, 0.1);
            color: var(--primary);
            padding: 0.5rem 1.25rem;
            border-radius: 4px;
            border: 1px solid rgba(14, 165, 233, 0.2);
            transition: all 0.3s ease;
        }

        .nav-contact-btn:hover {
            background: rgba(14, 165, 233, 0.2);
            color: var(--primary);
        }

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

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 2rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            font-family: var(--font-body);
        }

        .btn-primary {
            background: #fff;
            color: #000;
            box-shadow: 0 4px 14px 0 rgba(14, 165, 233, 0.3);
        }

        .btn-primary:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
        }

        .btn-secondary {
            background: rgba(14, 165, 233, 0.05);
            color: var(--primary);
            border: 1px solid rgba(14, 165, 233, 0.15);
            backdrop-filter: blur(10px);
        }

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

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            text-align: left;
            padding: 8rem 8% 4rem;
            position: relative;
            overflow: hidden;
            background-color: #0f172a;
        }

        .hero-bg-image {
            position: absolute;
            top: 0;
            right: 0;
            left: auto;
            width: 55%;
            height: 100%;
            background-image: url('hero_background.png');
            background-size: cover;
            background-position: center;
            opacity: 0.7;
            z-index: 0;
            mask-image: linear-gradient(to right, transparent 0%, black 50%, black 100%);
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%, black 100%);
        }

        .hero-content {
            max-width: 650px;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .badge {
            background: rgba(14, 165, 233, 0.15);
            border: 1px solid rgba(14, 165, 233, 0.3);
            color: #38bdf8;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 2rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .hero-title {
            font-size: clamp(3rem, 7vw, 5.5rem);
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 30%, #94a3b8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            margin-bottom: 2.5rem;
            max-width: 650px;
            color: #cbd5e1;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            justify-content: flex-start;
            flex-wrap: wrap;
        }

        /* Section Headers */
        .section-header {
            margin-bottom: 4rem;
        }

        .section-header.center {
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .section-desc {
            font-size: 1.1rem;
        }

        .title-underline {
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), transparent);
            border-radius: 2px;
        }

        .section-header.center .title-underline {
            margin: 0 auto;
        }

        /* Premium Cards */
        .premium-card {
            position: relative;
            background: var(--card-bg);
            border-radius: 4px;
            padding: 1px;
            /* for gradient border effect */
            overflow: hidden;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .card-inner {
            background: var(--bg-surface);
            border-radius: 3px;
            padding: 3rem 2rem;
            height: 100%;
            border: 1px solid var(--card-border);
            transition: border-color 0.4s ease;
            z-index: 2;
            position: relative;
        }

        .card-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(129, 140, 248, 0.2) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease, width 0.4s ease, height 0.4s ease;
            z-index: 1;
            pointer-events: none;
        }

        .premium-card:hover {
            transform: translateY(-8px);
        }

        .premium-card:hover .card-inner {
            border-color: var(--card-border-hover);
        }

        .premium-card:hover .card-glow {
            opacity: 1;
            width: 200%;
            height: 200%;
        }

        .card-icon-wrapper,
        .feature-icon {
            width: 56px;
            height: 56px;
            background: rgba(14, 165, 233, 0.05);
            border: 1px solid rgba(14, 165, 233, 0.15);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            color: var(--primary);
            transition: all 0.4s ease;
        }

        .premium-card:hover .card-icon-wrapper,
        .premium-card:hover .feature-icon {
            background: rgba(129, 140, 248, 0.15);
            border-color: rgba(129, 140, 248, 0.3);
            color: var(--primary);
            transform: scale(1.05);
        }

        .highlight-card .card-inner {
            background: linear-gradient(180deg, rgba(240, 249, 255, 0.8) 0%, rgba(224, 242, 254, 0.8) 100%);
            border-color: rgba(129, 140, 248, 0.2);
        }

        .highlight-card:hover .card-inner {
            border-color: rgba(129, 140, 248, 0.4);
        }

        .highlight-icon {
            background: rgba(192, 132, 252, 0.15);
            color: var(--accent);
            border-color: rgba(192, 132, 252, 0.3);
        }

        .premium-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        /* Sections Layout */
        .about {
            padding: 6rem 0;
            position: relative;
            z-index: 10;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .features {
            padding: 6rem 0;
            position: relative;
            z-index: 10;
        }

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

        /* CTA Section */
        .cta-section {
            padding: 6rem 0 10rem;
            position: relative;
        }

        .cta-box {
            background: linear-gradient(145deg, rgba(240, 249, 255, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
            border: 1px solid rgba(14, 165, 233, 0.15);
            border-radius: 4px;
            padding: 5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(129, 140, 248, 0.15) 0%, transparent 60%);
            z-index: 0;
            pointer-events: none;
        }

        .cta-box h2,
        .cta-box p,
        .cta-box a {
            position: relative;
            z-index: 1;
        }

        .cta-box h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .cta-box p {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            max-width: 500px;
            margin-inline: auto;
        }

        .cta-large {
            font-size: 1.1rem;
            padding: 1rem 2.5rem;
        }

        /* Footer */
        .footer {
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            background: rgba(248, 250, 252, 0.9);
            padding: 4rem 0 2rem;
            position: relative;
            z-index: 10;
        }

        .footer-top {
            margin-bottom: 3rem;
        }

        .footer-brand .logo {
            margin-bottom: 0.5rem;
        }

        .footer-brand p {
            font-size: 0.9rem;
            max-width: 300px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            font-size: 0.875rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            margin-left: 1.5rem;
            transition: color 0.3s;
        }

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

        /* Scroll Animation Classes */
        .section-reveal {
            opacity: 1;
            /* Removed the translate logic just in case the JS isn't firing properly on their local environment */
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero {
                padding-top: 6rem;
            }

            .hero-title {
                font-size: 2.75rem;
            }

            .card-inner {
                padding: 2rem 1.5rem;
            }

            .cta-box {
                padding: 3rem 1.5rem;
            }

            .cta-box h2 {
                font-size: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                justify-content: center;
            }

            .footer-links a {
                margin: 0 0.75rem;
            }
        }