:root {
    --bg-color: #0a0a0a;
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --accent: #2563eb;
    --glass-bg: rgba(10, 10, 10, 0.7);
    --border-color: #333;
}

/* Reset & Typography */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; }

/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: #000; padding: 12px 24px;
    border-radius: 99px; font-weight: 600; font-size: 1rem;
    transition: transform 0.2s;
}
.btn:hover { transform: scale(1.05); }

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header & Glassmorphism */
header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 0;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 700; font-size: 1.5rem; letter-spacing: -0.5px; }

/* Mobile Menu Toggle */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.menu-toggle svg { stroke: white; }

/* Hero Section */
.hero {
    padding: 160px 20px 80px;
    text-align: center;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero h1 {
    font-size: 3.5rem; line-height: 1.1; font-weight: 800;
    background: linear-gradient(to right, #fff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    max-width: 800px;
}
.hero p { color: var(--text-muted); font-size: 1.25rem; max-width: 600px; margin: 0 auto 40px; }

/* Mockup Placeholder */
.mockup {
    width: 300px; height: 600px;
    background: #1a1a1a;
    border: 8px solid #333;
    border-radius: 40px;
    margin: 60px auto 0;
    box-shadow: 0 20px 80px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
}
/* Abstract UI in Mockup */
.mockup::after {
    content: "Hone UI";
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    color: #333; font-weight: bold;
}

/* Features Grid */
.features { padding: 80px 20px; background: #0f0f0f; }
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.card {
    background: #161616; padding: 40px; border-radius: 20px;
    border: 1px solid #222;
}
.card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.card p { color: var(--text-muted); }

/* Legal Pages */
.legal-content { padding: 160px 20px 80px; max-width: 800px; margin: 0 auto; }
.legal-content h1 { margin-bottom: 40px; font-size: 2.5rem; }
.legal-content h2 { margin: 40px 0 20px; font-size: 1.5rem; color: #fff; }
.legal-content p, .legal-content li { color: #ccc; margin-bottom: 16px; }

/* Footer */
footer { padding: 60px 20px; border-top: 1px solid #222; color: var(--text-muted); text-align: center; }
.footer-links { margin-bottom: 20px; }
.footer-links a { margin: 0 10px; font-size: 0.9rem; }
.footer-links a:hover { color: #fff; }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .menu-toggle { display: block; }
    
    /* Mobile Nav Logic */
    .nav-links {
        position: fixed; top: 70px; left: 0; width: 100%;
        background: #0a0a0a; border-bottom: 1px solid #222;
        flex-direction: column; padding: 20px;
        display: none; /* Hidden by default */
    }
    .nav-links.active { display: flex; }
    .nav-links a { margin-bottom: 15px; display: block; }
    .btn.nav-btn { width: 100%; justify-content: center; }
}
