:root {
    --bg-color: #05070a;
    --surface-color: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
    --primary-color: #00f2ff;
    --accent-color: #7000ff;
    --text-color: #e0e6ed;
    --text-dim: #94a3b8;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Custom cursor used instead */
}

/* Custom Cursor */
#cursor-glow {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    box-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color);
    mix-blend-mode: screen;
    transition: transform 0.1s ease;
}

.bg-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 242, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 10% 20%, rgba(112, 0, 255, 0.05) 0%, transparent 40%);
    z-index: -1;
}

/* Glassmorphism */
.glass {
    background: var(--surface-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

header {
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(5, 7, 10, 0.8);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 500;
    transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
    color: var(--text-color);
    text-shadow: 0 0 8px var(--primary-color);
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

h1 {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.tagline {
    font-size: 1.8rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
}

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

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.5);
}

.btn-glass {
    border: 1px solid var(--border-color);
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.05);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Features */
.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 4rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 8rem;
}

.feature-card {
    padding: 3rem;
    text-align: center;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-dim);
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 8rem;
}

.step-card {
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 242, 255, 0.1);
    position: absolute;
    top: -10px;
    left: 20px;
}

.step-card h3 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.step-card p {
    color: var(--text-dim);
    position: relative;
    z-index: 1;
}

/* Community Section */
#community {
    padding: 6rem 5%;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 8rem;
}

.btn-glow {
    margin-top: 2rem;
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: #fff;
    border: none;
    box-shadow: 0 0 30px rgba(112, 0, 255, 0.3);
}

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

.author {
    color: var(--primary-color);
    font-weight: 600;
}

/* Animations */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: reveal 0.8s ease-out forwards;
}

.reveal-text-delayed {
    opacity: 0;
    transform: translateY(30px);
    animation: reveal 0.8s ease-out 0.3s forwards;
}

@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

kbd {
    background: #1e293b;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    h1 { font-size: 3.5rem; }
    .nav-links { display: none; }
}
