/* ── Design System ──────────────────────────────────────────────────── */
:root {
    --bg: #07091a;
    --bg-2: #0b0e1f;
    --surface: #0f1224;
    --surface-2: #151929;
    --surface-3: #1c2038;
    --accent: #3bd2d0;
    --accent-2: #6f6bff;
    --accent-3: #f7b955;
    --accent-4: #ff6b8a;
    --text: #f0f4ff;
    --muted: #8892b0;
    --border: rgba(255, 255, 255, 0.08);
    --glow: rgba(59, 210, 208, 0.25);
    --shadow: rgba(9, 12, 20, 0.35);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 999px;
    --transition-fast: 0.18s ease;
    --transition-mid: 0.28s ease;
    --transition-slow: 0.5s ease;
    --glow-accent: rgba(59, 210, 208, 0.35);
    --glow-accent2: rgba(111, 107, 255, 0.3);
}

/* ── Reset ──────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── Base ───────────────────────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
}

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

@media (max-width: 768px) {

    #cursor-dot,
    #cursor-ring {
        display: none;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

ol {
    padding: 0;
    margin: 0;
}

/* ── Typography ─────────────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.15;
}

h1 {
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
}

.muted {
    color: var(--muted);
}

.no-card-text {
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px;
}