:root {
    /* Palette */
    --bg-color: #0B0D10;
    --bg-secondary: #121418;
    --primary: #0A84FF;
    --primary-glow: rgba(10, 132, 255, 0.4);
    --highlight: #FF2D2D;
    --action: #FF8A00;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: 12px;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #00C6FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-highlight {
    color: var(--primary);
}

.center {
    text-align: center;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn.icon-btn i {
    margin-left: 8px;
    font-size: 1.2rem;
}

.btn.btn-secondary.icon-btn i {
    margin-left: 0;
    margin-right: 8px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-action {
    background: var(--action);
    color: white;
    border: none;
    cursor: pointer;
}

.btn-action:hover {
    filter: brightness(1.1);
}

/* Background Grid */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--glass-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: var(--container-width);
    height: 70px;
    z-index: 1000;
    border-radius: 50px;
    background: rgba(11, 13, 16, 0.7);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    gap: 10px;
}

.logo-icon {
    color: var(--action);
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding-top: 140px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(10, 132, 255, 0.1);
    border: 1px solid rgba(10, 132, 255, 0.3);
    border-radius: 20px;
    color: var(--primary);
    font-size: 0.85rem;
    margin-bottom: 24px;
    font-weight: 500;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glowing-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10, 132, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

.float-card {
    position: absolute;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: -20px;
    border-left: 3px solid var(--highlight);
    background: rgba(20, 20, 20, 0.8);
}

.card-1 i {
    color: var(--highlight);
}

.card-2 {
    bottom: 15%;
    right: -20px;
    border-left: 3px solid var(--action);
    background: rgba(20, 20, 20, 0.8);
    animation-delay: 2s;
}

.card-2 i {
    color: var(--action);
}

/* Marquee */
.brands-marquee {
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 30px 0;
    background: var(--bg-secondary);
}

.brands-marquee p {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brands-list {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.2rem;
}

/* Steps Section */
.steps-section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.step-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.step-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Demo Section */
.demo-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.demo-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    max-width: 300px;
    border-radius: 40px;
    border: 8px solid #333;
    box-shadow: 0 30px 80px rgba(10, 132, 255, 0.2);
}

.demo-content .feature-list {
    list-style: none;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-list li {
    display: flex;
    gap: 20px;
}

.feature-list i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 4px;
}

.feature-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: white;
}

.feature-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Features Section */
.features-section {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px;
    transition: 0.3s;
}

.feature-card:hover {
    border-color: var(--primary);
}

.feature-card i {
    font-size: 2rem;
    color: var(--action);
    margin-bottom: 24px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
}

/* Audience */
.audience-section {
    padding: 80px 0;
}

.audience-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 60px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, rgba(10, 132, 255, 0.05) 50%, rgba(255, 255, 255, 0.03) 100%);
}

.audience-col {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.audience-col h3 {
    color: var(--primary);
    margin-bottom: 16px;
}

.audience-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.audience-divider {
    width: 1px;
    background: var(--glass-border);
}

/* Tech Section */
.tech-section {
    padding: 60px 0;
    opacity: 0.7;
}

.tech-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.tech-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tech-logo i {
    font-size: 2rem;
    color: var(--text-main);
}

/* CTA Section */
.cta-section {
    padding: 100px 0 140px;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(10, 132, 255, 0.1) 100%);
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.cta-form {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 500px;
}

.cta-form input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    padding: 16px 24px;
    border-radius: 50px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
}

.cta-form input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-weight: 700;
    font-family: 'Outfit';
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }

    .demo-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-list li {
        text-align: left;
    }

    .audience-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .audience-divider {
        display: none;
    }

    .nav-links {
        display: none;
        /* simple hide for now, would need JS toggle to show */
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(10, 132, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(10, 132, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 132, 255, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}