:root {
    --pink-neon: #F50057;
    --cyan-neon: #00E5FF;
    --deep-purple: #7C4DFF;
    --bg-black: #0A0A0A;
    --bg-card: #1A1A1A;
    --bg-hover: #2A2A2A;
    --text-white: #FFFFFF;
    --text-grey: #B3B3B3;
    --text-black: #000000;
    --error: #FF5252;
    --success: #00E676;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

img,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

.glass {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.card {
    background-color: var(--bg-card);
    border-radius: 1.5rem;
    padding: 1.75rem;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

@media (max-width: 768px) {
    .glass,
    .card {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }

    .glass {
        margin: 0 auto;
    }

    .btn-primary,
    .btn-secondary,
    .group.relative,
    .group.relative a {
        width: 100%;
    }
}

@media (max-width: 640px) {
    html {
        font-size: 0.85rem;
    }

    body {
        line-height: 1.45;
    }

    .hero-section {
        padding-top: 4rem;
    }

    .hero-section h1 {
        font-size: 3rem;
    }

    .hero-section p,
    .feature-list p,
    .content-section p,
    .glass p,
    .card p {
        font-size: 0.95rem;
    }

    .glass,
    .card {
        padding: 1rem;
    }

    .hero-section .max-w-7xl {
        gap: 1rem;
    }

    .hero-section .w-full.max-w-\[340px\] {
        max-width: 280px;
    }

    #cursor-dot {
        width: 240px;
        height: 240px;
    }

    .skip-link {
        left: 0.5rem;
        top: 0.5rem;
        padding: 0.5rem 0.75rem;
    }
}

.card:hover,
.glass:hover {
    background-color: var(--bg-hover);
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.text-gradient {
    background: linear-gradient(135deg, var(--pink-neon) 0%, var(--deep-purple) 45%, var(--cyan-neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Marquee removed: moving words disabled */

.neon-border-hover:hover {
    border-color: rgba(245, 0, 87, 0.5);
    box-shadow: 0 0 24px rgba(245, 0, 87, 0.18);
}

.btn-primary {
    background-color: var(--pink-neon);
    color: var(--text-white);
    border-radius: 1rem;
    padding: 1rem 1.75rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #C4004A;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--cyan-neon);
    border: 2px solid var(--cyan-neon);
}

.footer {
    background-color: var(--bg-card);
    color: var(--text-grey);
}

.footer a {
    color: var(--text-grey);
}

.footer a:hover {
    color: var(--pink-neon);
}

a {
    color: var(--pink-neon);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
    color: var(--cyan-neon);
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(10, 10, 10, 0.95);
    color: #ffffff;
    border-radius: 9999px;
    transform: translateY(-140%);
    transition: transform 0.2s ease, opacity 0.2s ease;
    z-index: 60;
}

.skip-link:focus-visible {
    transform: translateY(0);
    opacity: 1;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--cyan-neon);
    outline-offset: 2px;
}

h1, h2, h3 {
    color: var(--text-white);
}

.hero-section h1 {
    max-width: 12ch;
}

.hero-section p,
.feature-list p,
.content-section p {
    color: var(--text-grey);
}

p, span, li, button, input {
    color: var(--text-grey);
}

input,
button,
textarea,
select {
    font: inherit;
}

#cursor-dot {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
    position: fixed;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

[x-cloak] {
    display: none !important;
}
