:root {
    --bg-color: #050505;
    --card-bg: rgba(20, 20, 35, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    /* More subtle */
    --primary: #2D7FF9;
    /* Electric Blue */
    --secondary: #7B2CBF;
    /* Deep Purple */
    --accent: #00f2ff;
    /* Cyan Glow */
    --text-main: #ffffff;
    --text-muted: #b0b0d0;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-glow: conic-gradient(from 180deg at 50% 50%, var(--primary), var(--accent), var(--secondary));
    --transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background Effects */
.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: url('assets/abstract_shape.png'), radial-gradient(circle at 10% 20%, rgba(45, 127, 249, 0.1), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(123, 44, 191, 0.1), transparent 40%);
    background-size: cover, auto, auto;
    background-position: center;
    pointer-events: none;
    opacity: 0.6;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.logo .dot {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(45, 127, 249, 0.5);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 30px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient);
    box-shadow: 0 4px 20px rgba(45, 127, 249, 0.4);
    border: none;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(123, 44, 191, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: url('assets/hero_bg.png') no-repeat center center/cover;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.3), var(--bg-color));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero::before {
    display: none;
    /* Remove old blur blob */
}

.badge {
    background: rgba(45, 127, 249, 0.1);
    border: 1px solid var(--primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    box-shadow: 0 0 20px rgba(45, 127, 249, 0.2);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(to right, #fff, #b8c6db);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Sections General */
.section {
    padding: 100px 0;
}

.center {
    text-align: center;
}

.section-header h2,
.text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.section-header p,
.section-intro {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.text-block {
    max-width: 900px;
    margin: 0 auto;
}

.text-block p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Cards & Glassmorphism */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Feature Specifics */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.highlight-card {
    border: 1px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.highlight-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateY(100%) rotate(45deg);
    }
}

.stat .number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

/* Comparison Grid of content */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.small-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.check {
    color: var(--secondary);
    font-weight: bold;
}

/* Content Included Split */
.layout-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-image {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 30px rgba(45, 127, 249, 0.3));
}

.floating-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.styled-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    padding-left: 20px;
    border-left: 3px solid var(--primary);
}

/* Economy */
.glass-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    border: 1px solid var(--glass-border);
}

.callout {
    margin-top: 30px;
    background: rgba(58, 134, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    display: inline-block;
}

/* FAQ */
.accordion {
    max-width: 800px;
    margin: 50px auto 0;
}

.accordion-item {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: white;
    text-align: left;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    transition: 0.3s;
}

.accordion-header.active::after {
    transform: rotate(45deg);
    color: var(--accent);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    color: var(--text-muted);
}

.accordion-content p {
    padding-bottom: 20px;
}

/* Footer */
footer {
    padding: 80px 0 30px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    text-align: center;
}

.footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.footer-cta {
    margin-bottom: 60px;
}

.glow-btn {
    margin-top: 30px;
    font-size: 1.2rem;
    padding: 15px 40px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: #1a1a20;
        flex-direction: column;
        justify-content: center;
        transition: 0.3s;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .grid-2,
    .layout-split {
        grid-template-columns: 1fr;
    }

    .glowing-circle {
        width: 200px;
        height: 200px;
    }
}

/* Animations */
.fade-in,
.fade-in-left,
.fade-in-right {
    /* visible by default for SEO and No-JS */
    opacity: 1;
    transform: translateY(0);
    transition: 0.8s ease-out;
}

/* State applied by JS to prepare for animation */
.js-scroll-hidden {
    opacity: 0;
    transform: translateY(20px);
}

.js-scroll-visible {
    opacity: 1;
    transform: translateY(0);
}