/* Base Styles - Reset, Variables, Typography */

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

:root {
    --primary: #246BCE;
    --primary-dark: #1a52a3;
    --bg: #0b0d10;
    --surface: #12151a;
    --surface-2: #1a1e26;
    --border: rgba(255, 255, 255, 0.08);
    --text: #f0f2f5;
    --text-muted: #8891a0;
    --success: #30d158;
    --danger: #ff453a;
    --warning: #ffd60a;
    --purple: #9b59b6;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(36, 107, 206, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36, 107, 206, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 30%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(11, 13, 16, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2.5rem;
    z-index: 100;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

.navbar-logo-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary), #3a86e8);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-logo-icon svg {
    width: 14px;
    height: 14px;
    stroke: white;
}

/* Hero */
.hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), #6fa8e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* Footer */
.footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.8rem;
}
