:root {
    --bg-base: #050505;
    --bg-elevated: #0a0a0a;
    --bg-card: #0f0f0f;
    --bg-hover: #141414;
    --bg-input: #0c0c0c;
    --border-subtle: rgba(255, 255, 255, 0.04);
    --border-default: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.1);
    --text-primary: #f0f0f0;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.35);
    --accent: #a8e6cf;
    --accent-dim: rgba(168, 230, 207, 0.15);
    --accent-glow: rgba(168, 230, 207, 0.08);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --transition: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--bg-base); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

.blob-container { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; animation: float 20s ease-in-out infinite; }
.blob-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(168, 230, 207, 0.15) 0%, transparent 70%); top: -200px; left: -100px; animation-delay: 0s; }
.blob-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(136, 212, 171, 0.12) 0%, transparent 70%); top: 40%; right: -150px; animation-delay: -5s; animation-duration: 25s; }
.blob-3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(168, 230, 207, 0.1) 0%, transparent 70%); bottom: 10%; left: 20%; animation-delay: -10s; animation-duration: 22s; }
.blob-4 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(200, 240, 220, 0.08) 0%, transparent 70%); top: 60%; left: -100px; animation-delay: -15s; animation-duration: 28s; }

@keyframes float { 0%, 100% { transform: translate(0, 0) scale(1); } 25% { transform: translate(50px, -30px) scale(1.05); } 50% { transform: translate(20px, 40px) scale(0.95); } 75% { transform: translate(-30px, 20px) scale(1.02); } }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.25rem 2rem; background: rgba(5, 5, 5, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-subtle); }
.nav-content { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--text-primary); text-decoration: none; letter-spacing: -0.03em; }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.95rem; font-weight: 400; transition: color var(--transition); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a.active::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px; background: var(--accent); border-radius: 1px; }
.nav-cta { background: var(--bg-card); border: 1px solid var(--border-default); color: var(--text-primary); padding: 0.75rem 1.5rem; border-radius: var(--radius-full); font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all var(--transition); text-decoration: none; }
.nav-cta:hover { background: var(--bg-hover); border-color: var(--border-hover); }

.page-header { position: relative; z-index: 1; padding: 10rem 2rem 4rem; text-align: center; }
.page-header h1 { font-family: 'Syne', sans-serif; font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.04em; margin-bottom: 1rem; background: linear-gradient(180deg, #ffffff 0%, #808080 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: fadeInUp 0.8s ease forwards; }
.page-header p { font-size: 1.15rem; color: var(--text-secondary); max-width: 550px; margin: 0 auto; animation: fadeInUp 0.8s ease 0.1s forwards; opacity: 0; }

.hero { position: relative; z-index: 1; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 8rem 2rem 4rem; }
.hero-content { max-width: 900px; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--bg-card); border: 1px solid var(--border-default); padding: 0.5rem 1rem; border-radius: var(--radius-full); font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 2rem; animation: fadeInUp 0.8s ease forwards; }
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
.hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(3rem, 8vw, 5.5rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 1.5rem; background: linear-gradient(180deg, #ffffff 0%, #808080 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: fadeInUp 0.8s ease 0.1s forwards; opacity: 0; }
.hero p { font-size: 1.25rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto 2.5rem; animation: fadeInUp 0.8s ease 0.2s forwards; opacity: 0; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.3s forwards; opacity: 0; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; background: var(--text-primary); color: var(--bg-base); padding: 1rem 2rem; border-radius: var(--radius-full); font-size: 1rem; font-weight: 500; text-decoration: none; transition: all var(--transition); border: none; cursor: pointer; }
.btn-primary svg { width: 18px; height: 18px; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1); }
.btn-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; background: transparent; color: var(--text-primary); padding: 1rem 2rem; border-radius: var(--radius-full); font-size: 1rem; font-weight: 500; text-decoration: none; border: 1px solid var(--border-default); transition: all var(--transition); }
.btn-secondary svg { width: 18px; height: 18px; }
.btn-secondary:hover { background: var(--bg-card); border-color: var(--border-hover); }

section { position: relative; z-index: 1; padding: 6rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label { display: inline-block; color: var(--accent); font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.section-title { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 1rem; }
.section-subtitle { color: var(--text-secondary); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 2rem; transition: all 0.4s ease; }
.card:hover { border-color: var(--border-hover); background: var(--bg-hover); transform: translateY(-4px); }

footer { position: relative; z-index: 1; padding: 4rem 2rem; border-top: 1px solid var(--border-subtle); }
.footer-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; }
.footer-logo { font-family: 'Syne', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--text-primary); }
.footer-logo span { color: var(--accent); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--text-primary); }
.footer-copy { color: var(--text-muted); font-size: 0.85rem; }

.mobile-menu-btn { display: none; background: none; border: none; color: var(--text-primary); font-size: 1.5rem; cursor: pointer; padding: 0.5rem; z-index: 101; }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(5, 5, 5, 0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text-primary); text-decoration: none; font-size: 1.5rem; font-weight: 500; transition: color var(--transition); }
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu-close { position: absolute; top: 1.25rem; right: 1.5rem; background: none; border: none; color: var(--text-primary); font-size: 2rem; cursor: pointer; padding: 0.5rem; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.15); }
::selection { background: rgba(168, 230, 207, 0.2); color: #ffffff; }

@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .mobile-menu-btn { display: block; }
    .hero { padding: 7rem 1.5rem 3rem; }
    .page-header { padding: 8rem 1.5rem 3rem; }
    section { padding: 4rem 1.5rem; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
}
