:root {
    --primary: #2196F3;
    --primary-dark: #1976D2;
    --bg-dark: #0F172A;
    --bg-card: #1E293B;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.text-center {
    text-align: center;
}

h1,
h2,
h3 {
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(135deg, #2196F3 0%, #00BCD4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation */
nav {
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.8);
}

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

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

.logo-icon {
    font-size: 24px;
}

.logo-text {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.2s, background 0.3s;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--border);
    color: var(--text-main);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero */
.hero {
    position: relative;
    padding: 120px 0 100px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.hero-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.15) 0%, transparent 70%);
    filter: blur(60px);
}

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

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
}

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

.feature-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}

.feature-card:hover {
    border-color: var(--primary);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Contact & Legal Summary */
.legal-summary,
.contact {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.legal-summary h2,
.contact h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.legal-summary p,
.contact p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 32px;
}

.legal-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.legal-btns a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.dot {
    color: var(--border);
}

.contact-email {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

/* Privacy/Terms Content Style */
.legal-content {
    padding: 80px 0;
    max-width: 800px;
}

.legal-content h1 {
    margin-bottom: 40px;
}

.legal-content h2 {
    margin: 32px 0 16px;
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 24px;
}

/* Footer */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-domain {
    margin-top: 8px;
    font-weight: 700;
    color: var(--text-main);
}

.venture-text {
    font-size: 13px;
    margin-top: 4px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    .contact-email {
        font-size: 20px;
    }
}