/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #ffffff;
    --text: #09090b;
    --text-secondary: #262629;
    --muted: #0088ff;
    --body-text: #71717a;
    --surface: #f0f4f8;
    --surface-darker: #e2e8f0;
    --border: rgba(152, 152, 163, 0.1);
    --accent: #0088ff;
    --accent-light: #00aaff;
    --accent-glow: rgba(0, 136, 255, 0.15);
    --navy: #0a1628;
    --navy-light: #0f2035;
    --cyan: #00d4ff;
    --cyan-glow: rgba(0, 212, 255, 0.3);
}

* { -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--bg); font-size: 14px; line-height: 1.5; }
h1, h2, h3, h4, h5, h6, p, figure { margin: 0; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea { font-family: inherit; font-size: inherit; }

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

/* ===== BADGE ===== */
.badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(152, 152, 163, 0.1); border-radius: 4px; padding: 6px 12px; font-size: 12px; font-weight: 500; color: var(--body-text); text-transform: uppercase; letter-spacing: 0.5px; font-family: 'Comfortaa', sans-serif; }
.badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--body-text); }

/* ===== SECTION TITLE ===== */
.section-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: clamp(32px, 5vw, 48px); line-height: 1.15; }
.section-title .muted { color: var(--muted); }

/* ===== BUTTONS ===== */
.btn-dark { display: inline-flex; align-items: center; gap: 8px; background: #000; color: #fff; padding: 13px 24px; border-radius: 100px; font-size: 14px; font-weight: 600; font-family: 'Comfortaa', sans-serif; transition: all 0.3s ease; }
.btn-dark:hover { background: #222; }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.85); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { font-family: 'Comfortaa', sans-serif; font-weight: 700; font-size: 18px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; color: var(--body-text); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
@media (max-width: 810px) { .nav-links { display: none; } }

/* ===== PAGE HERO ===== */
.page-hero { padding: 140px 0 60px; }
.page-hero .badge { margin-bottom: 20px; }
.page-hero .section-title { margin-bottom: 16px; }
.page-hero p { font-size: 16px; color: var(--body-text); line-height: 1.7; max-width: 600px; }

/* ===== FOOTER ===== */
.footer { padding: 48px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand-name { font-family: 'Comfortaa', sans-serif; font-weight: 700; font-size: 18px; }
.footer-brand-sub { font-size: 13px; color: var(--body-text); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--body-text); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-social { display: flex; gap: 12px; align-items: center; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: var(--surface); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.footer-social a:hover { background: var(--accent); }
.footer-social a svg { width: 16px; height: 16px; fill: var(--body-text); transition: fill 0.3s ease; }
.footer-social a:hover svg { fill: #fff; }
.footer-copy { font-size: 13px; color: var(--body-text); }
@media (max-width: 810px) { .footer-inner { flex-direction: column; text-align: center; } }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
