:root {
    --bg-color: #0B0E14;
    /* Deep Navy/Black */
    --surface-color: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
    --primary-color: #00F0FF;
    /* Electric Cyan */
    --secondary-color: #7000FF;
    /* Electric Purple */
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --accent-green: #00FF94;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Noto Sans SC', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(112, 0, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 240, 255, 0.1) 0%, transparent 40%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.highlight {
    background: linear-gradient(135deg, #00FF94, #00F0FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-blue {
    color: var(--primary-color);
}

/* Glassmorphism Utilities */
.glass {
    background: rgba(11, 14, 20, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.glass-card {
    background: var(--surface-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Nav */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn.sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    -webkit-text-fill-color: #fff;
    /* Ensure text is white, overriding any gradient text effects */
    border: none;
    box-shadow: 0 4px 20px rgba(112, 0, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(112, 0, 255, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    margin-left: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    margin-left: 1rem;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    background: rgba(0, 240, 255, 0.05);
}

.icon-btn svg {
    margin-right: 0.5rem;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text .stats-pill {
    display: inline-block;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--accent-green);
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

.image-wrapper {
    position: relative;
    border-radius: 40px;
    padding: 20px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border-color);
}

.app-mockup {
    width: 100%;
    height: auto;
    border-radius: 30px;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.floating-card {
    position: absolute;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 160px;
}

.revenue-card {
    top: 20%;
    right: -30px;
    animation: float 6s ease-in-out infinite;
}

.orders-card {
    bottom: 20%;
    left: -30px;
    animation: float 6s ease-in-out infinite 2s;
}

.floating-card .icon {
    font-size: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
}

.floating-card .icon svg {
    width: 24px;
    height: 24px;
}

.floating-card .info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.floating-card .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.floating-card .value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.floating-card .value.success {
    color: var(--accent-green);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Features */
.section-padding {
    padding: 100px 0;
}

.center {
    text-align: center;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.3);
}

.feature-icon {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
    color: #fff;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--text-primary);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.role-badge {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(0, 240, 255, 0.2);
    margin-bottom: 0.8rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    font-size: 1.2rem;
}

.user-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.user-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Download CTA */
.cta-box {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(11, 14, 20, 0.8) 0%, rgba(112, 0, 255, 0.2) 100%);
}

.download-buttons {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.small-text {
    margin-top: 1rem;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Footer */
footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

footer p {
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .cta-group {
        justify-content: center;
    }

    .nav-links {
        display: none;
        /* Mobile menu could be added here */
    }

    .revenue-card {
        right: 0;
    }

    .orders-card {
        left: 0;
    }
}