:root {
    --primary: #3B82F6;
    --primary-dark: #2563EB;
    --secondary: #10B981;
    --accent: #8B5CF6;
    --dark-bg: #0F172A;
    --dark-surface: #1E293B;
    --light-text: #F8FAFC;
    --gray-text: #94A3B8;
    --gradient-main: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    /* Clean, modern sans */
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    /* Geometric, bold */
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Utilities */
.text-center {
    text-align: center;
}

.section-padding {
    padding: 5rem 0;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    border: 2px solid var(--glass-border);
    color: var(--light-text);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
}

.btn-text {
    color: var(--light-text);
}

.btn-text:hover {
    color: var(--primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white;
}

.logo .dot {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-text);
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 8rem;
    /* Nav height + spacing */
    padding-bottom: 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(15, 23, 42, 0) 70%);
    filter: blur(80px);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    max-width: 90%;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-btns {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.stats-row {
    display: flex;
    gap: 3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-text);
}

/* Mockup/Image Area */
.mockup-container {
    position: relative;
    perspective: 1000px;
}

.mockup-card {
    background: var(--dark-surface);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
    overflow: hidden;
}

.mockup-card:hover {
    transform: rotateY(0) rotateX(0);
}

.mockup-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #334155;
}

.dots span:nth-child(1) {
    background: #EF4444;
}

.dots span:nth-child(2) {
    background: #F59E0B;
}

.dots span:nth-child(3) {
    background: #10B981;
}

.mockup-body {
    height: 300px;
    display: flex;
}

.mockup-sidebar {
    width: 20%;
    border-right: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.1);
}

.mockup-content {
    flex: 1;
    padding: 20px;
}

.skeleton-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.skeleton-box {
    height: 60px;
    background: #334155;
    border-radius: 6px;
    opacity: 0.5;
}

.skeleton-graph {
    height: 100px;
    margin-top: 20px;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0) 100%);
    border-top: 2px solid var(--primary);
    border-radius: 4px;
}

.float-card {
    position: absolute;
    background: var(--dark-surface);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.float-1 {
    top: 20%;
    right: -20px;
    color: var(--secondary);
}

.float-2 {
    bottom: 20%;
    left: -20px;
    color: var(--primary);
    animation-delay: 1.5s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Brands */
.brands {
    padding: 2rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.brands p {
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.brands-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.5;
}

.brand-item {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--dark-surface);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.8);
    border-color: var(--primary);
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.color-1 {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.color-2 {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.color-3 {
    background: rgba(139, 92, 246, 0.1);
    color: #8B5CF6;
}

.color-4 {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.color-5 {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.color-6 {
    background: rgba(236, 72, 153, 0.1);
    color: #EC4899;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--gray-text);
    font-size: 0.95rem;
}

/* Highlight Section */
.highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bg-light {
    background: #111e33;
}

.highlight-text {
    color: var(--primary);
}

.check-list {
    margin: 2rem 0;
}

.check-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light-text);
}

.check-list i {
    color: var(--secondary);
}

.abstract-shape {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, var(--primary-dark), var(--accent));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: morph 8s ease-in-out infinite;
}

.big-icon {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.cta-container {
    background: var(--gradient-main);
    padding: 3rem;
    border-radius: 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0 1rem;
}

.cta-form input {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: none;
    width: 300px;
    outline: none;
}

.cta-form .btn {
    background: var(--dark-bg);
    color: white;
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-logo {
    color: white;
    display: block;
    margin-bottom: 1rem;
}

.footer-col p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    color: var(--gray-text);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--primary);
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--gray-text);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 968px) {

    .hero-container,
    .highlight-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-btns,
    .cta-form,
    .stats-row {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-surface);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--glass-border);
        gap: 1.5rem;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: block;
        color: white;
        font-size: 1.5rem;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .cta-form {
        flex-direction: column;
    }

    .cta-form input {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}