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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #13131F;
    color: #F0F0FF;
}

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

/* NAV */
nav {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky;
    top: 0;
    background: #13131F;
    z-index: 100;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #6C63FF;
}

.nav-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-left: 28px;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #6C63FF;
}

/* HERO */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, #1E1A3E 0%, #13131F 100%);
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, #6C63FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #6C63FF, #4A42D6);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 32px rgba(108,99,255,0.4);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(108,99,255,0.5);
}

/* FEATURES */
.features {
    padding: 80px 0;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature {
    background: #1E1E2E;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(108,99,255,0.15);
    transition: transform 0.2s, border-color 0.2s;
}

.feature:hover {
    transform: translateY(-4px);
    border-color: rgba(108,99,255,0.4);
}

.feature .icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.feature h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #F0F0FF;
}

.feature p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.6;
}

/* FOOTER */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

footer p {
    color: rgba(255,255,255,0.3);
    font-size: 14px;
    margin-bottom: 8px;
}

footer a {
    color: #6C63FF;
    text-decoration: none;
    font-size: 14px;
}

/* PRIVACY PAGE */
.privacy-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 24px;
}

.privacy-content h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.privacy-content .date {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    margin-bottom: 40px;
}

.privacy-content h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 32px 0 12px;
    color: #6C63FF;
}

.privacy-content p, .privacy-content li {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    line-height: 1.8;
}

.privacy-content ul {
    padding-left: 20px;
    margin-top: 8px;
}

.privacy-content li {
    margin-bottom: 6px;
}

.privacy-content a {
    color: #6C63FF;
}

@media (max-width: 600px) {
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
}
