:root {
    --bg-color: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --primary-blue: #0066FF;
    --primary-dark: #0052cc;
    --accent-light: #eff6ff;
    --border-color: #e2e8f0;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --font-main: 'Inter', system-ui, -apple-system, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background */
.tech-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('assets/tech-lines.png');
    background-size: 600px;
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text-primary);
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h1 .highlight {
    color: var(--primary-blue);
}

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

p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Navbar */
.navbar {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 50px;
    width: auto;
}

/* Remove the old square box since we have a real logo now */
.logo::before {
    display: none;
}

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

.nav-links a:not(.btn-primary) {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary-blue);
}

/* Buttons */
.btn-primary {
    background: var(--primary-blue);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.25);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    border-color: var(--text-secondary);
    background: var(--accent-light);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-content p {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.25rem;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.hero-visual {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    perspective: 2000px;
}

.dashboard-mockup {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    background: white;
    transform: rotateX(2deg);
    transition: transform 0.5s var(--ease-out);
}

.hero-visual:hover .dashboard-mockup {
    transform: rotateX(0deg) scale(1.01);
}

/* Floating Elements */
.floating-ui {
    position: absolute;
    background: #0f172a;
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    font-family: monospace;
    font-size: 0.9rem;
    z-index: 10;
    text-align: left;
}

.code-snippet {
    top: 20%;
    left: 5%;
    transform: rotate(-5deg);
    animation: float 6s ease-in-out infinite;
}

.stat-card {
    bottom: 15%;
    right: 5%;
    background: white;
    color: var(--text-primary);
    transform: rotate(5deg);
    animation: float 6s ease-in-out infinite reverse;
    border: 1px solid var(--border-color);
}

/* Features Section */
.features {
    padding: 8rem 5%;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 2.5rem;
    border-radius: 16px;
    background: white;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary-blue);
}

.icon-box {
    width: 56px;
    height: 56px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 1rem;
}

/* Download CTA */
.download-cta {
    background: #0f172a;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    margin: 0 2rem 4rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.download-cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.download-cta p {
    color: #94a3b8;
    margin-bottom: 2.5rem;
}

.download-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, #1e293b, transparent);
    pointer-events: none;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 5%;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-15px) rotate(-5deg);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .hero-visual {
        padding: 0 1rem;
    }

    .floating-ui {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .download-cta {
        margin: 0 1rem 4rem;
    }
}

/* Coming Soon Badge */
.coming-soon-badge {
    background: var(--accent-light);
    color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--primary-blue);
}

.pulse {
    animation: pulse 2s infinite;
    color: var(--primary-blue);
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}