@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;700;800&display=swap');

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: radial-gradient(circle at 80% 0%, #1a1a40 0%, #050505 60%),
        radial-gradient(circle at 20% 100%, #0a0a1a 0%, #000000 100%);
    background-attachment: fixed;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    /* Fallback */
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0b0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

h3 {
    font-size: 1.5rem;
    color: #00FFCC;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    color: #a0a0b0;
    margin-bottom: 1.5rem;
}

/* Layout */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
}

.logo span {
    color: #00FFCC;
}

nav ul {
    display: flex;
    gap: 40px;
}

nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #808090;
    position: relative;
}

nav a:hover,
nav a.active {
    color: #fff;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #00FFCC;
    border-radius: 50%;
}

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: linear-gradient(135deg, #00FFCC 0%, #00CCAA 100%);
    color: #050505;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.05rem;
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 204, 0.3);
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.glass-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 0.9rem;
    color: #fff;
    display: inline-block;
}

/* Sections */
.hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0 100px;
}

.hero p {
    font-size: 1.35rem;
    line-height: 1.5;
    margin-bottom: 3rem;
    color: #c0c0d0;
}

.legal-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.legal-content li {
    margin-bottom: 1rem;
    padding-left: 24px;
    position: relative;
    color: #c0c0d0;
}

.legal-content li::before {
    content: '•';
    color: #00FFCC;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    line-height: 1.6;
}

footer {
    padding: 60px 0;
    text-align: center;
    margin-top: 80px;
    opacity: 0.5;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .glass-card {
        padding: 32px;
    }

    nav ul {
        gap: 24px;
    }

    h1 {
        font-size: 2.5rem;
    }
}