﻿:root {
    --bg-base: #050505;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --primary: #00f0ff;
    --secondary: #7000ff;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

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

#bg-canvas {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1; background: radial-gradient(circle at center, #111 0%, var(--bg-base) 100%);
}

a { color: var(--text-main); text-decoration: none; transition: 0.3s; }

/* NAV */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 5%; position: fixed; width: 100%; top: 0; z-index: 100;
    background: rgba(5, 5, 5, 0.8); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.brand { font-size: 1.5rem; font-weight: 900; display: flex; align-items: center; gap: 10px; }
.brand-icon { width: 30px; height: 30px; background: linear-gradient(45deg, var(--primary), var(--secondary)); border-radius: 8px; }

.nav-links { display: flex; align-items: center; }
.nav-links a { margin-left: 2.5rem; font-size: 0.95rem; font-weight: 500; color: var(--text-muted); }
.nav-links a:hover { color: var(--primary); }
.btn-nav { padding: 0.6rem 1.5rem; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 50px; }
.btn-nav:hover { border-color: var(--primary); box-shadow: 0 0 15px rgba(0, 240, 255, 0.3); color: var(--primary); }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.hamburger span { width: 25px; height: 2px; background: var(--text-main); transition: 0.3s; }

/* HERO */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 5%; }
.ethos-badge { font-family: 'JetBrains Mono', monospace; color: var(--primary); background: rgba(0, 240, 255, 0.05); border: 1px solid rgba(0, 240, 255, 0.2); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.85rem; margin-bottom: 2rem; text-transform: uppercase; letter-spacing: 2px; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 6rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem; }
.text-gradient { background: linear-gradient(to right, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { color: var(--text-muted); font-size: 1.2rem; max-width: 600px; margin-bottom: 3rem; }
.btn-primary { display: inline-block; font-weight: 700; padding: 1.2rem 3rem; background: linear-gradient(45deg, var(--primary), var(--secondary)); color: #000; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 10px 30px rgba(112, 0, 255, 0.4); transition: all 0.3s ease; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0, 240, 255, 0.5); color: #fff; }

/* SERVICES */
.services { padding: 8rem 5%; }
.section-header { text-align: center; margin-bottom: 5rem; }
.section-header h2 { font-size: 3rem; font-weight: 900; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1400px; margin: 0 auto; }
.card { background: var(--glass-bg); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); border-radius: 20px; padding: 3rem 2rem; transition: all 0.4s ease; position: relative; overflow: hidden; }
.card:hover { transform: translateY(-10px); border-color: rgba(0, 240, 255, 0.3); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); }
.card-icon { font-size: 2.5rem; margin-bottom: 1.5rem; display: inline-block; }
.card h3 { font-size: 1.5rem; margin-bottom: 1rem; font-weight: 700; }
.card p { color: var(--text-muted); font-size: 1rem; font-weight: 300; }

/* COMPLIANCE */
.compliance { padding: 5rem 5%; background: rgba(255,255,255,0.01); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); display: flex; justify-content: center; }
.compliance-box { max-width: 900px; text-align: center; }
.compliance-box h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.compliance-box p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.disclaimer { font-family: 'JetBrains Mono', monospace; background: rgba(255, 0, 0, 0.05); border: 1px solid rgba(255, 0, 0, 0.2); padding: 1.5rem; border-radius: 10px; color: #ff4d4d; font-size: 0.85rem; text-align: left; }

/* FOOTER */
footer { padding: 4rem 5%; text-align: center; }
.footer-brand { font-size: 1.5rem; font-weight: 900; margin-bottom: 1.5rem; }
.footer-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--primary); }
.copyright { color: #555; font-size: 0.85rem; }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links { position: absolute; top: 100%; left: 0; width: 100%; background: var(--bg-base); flex-direction: column; padding: 2rem 0; border-bottom: 1px solid var(--glass-border); clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); transition: 0.4s ease-in-out; }
    .nav-links.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .nav-links a { margin: 1rem 0; }
    .btn-nav { margin: 1rem 0; }
}
