:root {
    --primary: #8a2be2;
    --primary-glow: rgba(138, 43, 226, 0.5);
    --secondary: #ff2a5f;
    --bg-base: #0a0a0f;
    --bg-surface: #14141e;
    --bg-glass: rgba(20, 20, 30, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --border: rgba(255, 255, 255, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 44px;
    width: auto;
    border-radius: 8px;
}

h1 {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--text-primary);
}

.hero {
    position: relative;
    padding: 220px 0 140px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.4;
    z-index: -1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-weight: 300;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 18px 48px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 32px var(--primary-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px var(--primary-glow);
}

.content-container {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 64px;
    margin-bottom: 100px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    position: relative;
}

.space-y-6 > * + * {
    margin-top: 1.75rem;
}

.content-container h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-top: 3.5rem;
    margin-bottom: 1.25rem;
    color: #fff;
    letter-spacing: -0.5px;
}

.content-container h2:first-child {
    margin-top: 0;
}

.content-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #e4e4e7;
}

.content-container p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.content-container strong {
    color: var(--text-primary);
    font-weight: 600;
}

.content-container ul, .content-container ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.15rem;
}

.content-container li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.w-full {
    width: 100%;
}

.rounded-xl {
    border-radius: 1.25rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.my-6 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 16px;
    font-size: 1.1rem;
}

.footer-logo {
    height: 48px;
    width: auto;
    border-radius: 8px;
}

.footer-info {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.footer-legal {
    text-align: center;
    color: var(--text-secondary);
    padding-top: 32px;
    border-top: 1px solid var(--border);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .header-content {
        height: 70px;
    }
    
    .logo {
        height: 36px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .nav {
        display: none;
    }

    .hero {
        padding: 160px 0 100px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }

    .content-container {
        padding: 32px 24px;
        border-radius: 24px;
        margin-bottom: 60px;
    }
    
    .content-container h2 {
        font-size: 1.75rem;
    }
    
    .content-container h3 {
        font-size: 1.35rem;
    }
    
    .cta-btn {
        padding: 16px 36px;
        font-size: 1.1rem;
    }
}
