/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --bg-color: #121212;
    --card-bg: #1E1E1E;
    --primary-color: #4E73DF;
    --accent-color: #1CC88A;
    --text-color: #FFFFFF;
    --text-muted: #A0A0A0;
}

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

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

/* --- Gradient Mesh Background --- */
.mesh-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(circle at 10% 20%, rgba(78, 115, 223, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(28, 200, 138, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

/* --- Container & Typography --- */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 20px; background: linear-gradient(to right, #fff, #a0a0a0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
h2 { font-size: 1.8rem; margin-top: 40px; margin-bottom: 15px; color: var(--primary-color); }
h3 { font-size: 1.3rem; margin-top: 25px; margin-bottom: 10px; color: #fff; }
p { color: var(--text-muted); margin-bottom: 15px; }
ul { margin-left: 20px; color: var(--text-muted); margin-bottom: 15px; }
li { margin-bottom: 8px; }

/* --- Header/Nav --- */
header {
    padding: 30px 0;
    text-align: center;
}
.logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    margin: 0 auto 15px;
    box-shadow: 0 10px 30px rgba(78, 115, 223, 0.3);
}

/* --- Landing Page Specifics --- */
.hero {
    text-align: center;
    padding: 80px 20px;
}
.hero h1 { font-size: 3.5rem; line-height: 1.2; }
.hero p { font-size: 1.2rem; max-width: 600px; margin: 20px auto 40px; }

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 5px 20px rgba(78, 115, 223, 0.4);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(78, 115, 223, 0.6); }

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}
.feature-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-5px); border-color: var(--primary-color); }

/* --- Legal Pages --- */
.legal-content {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 60px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-links a { color: var(--text-muted); text-decoration: none; margin: 0 15px; font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--primary-color); }
.copyright { font-size: 0.8rem; margin-top: 20px; opacity: 0.5; }

/* Mobile Tweaks */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .legal-content { padding: 30px; }
}