/* ============ VARIABLES ============ */
:root {
  --bg: #06060f;
  --bg-card: #0d0d1a;
  --bg-card-hover: #12122a;
  --accent: #00e5a0;
  --accent-dim: #00e5a033;
  --accent2: #6366f1;
  --accent3: #f59e0b;
  --text: #e8e8f0;
  --text-dim: #6b6b8a;
  --text-mid: #9b9bb8;
  --border: #1a1a35;
  --radius: 16px;
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

::selection { background: rgba(0, 229, 160, 0.3); color: #fff; }
::-moz-selection { background: rgba(0, 229, 160, 0.3); color: #fff; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-display);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============ ANIMATED BG ============ */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(circle at 20% 30%, #00e5a008 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, #6366f108 0%, transparent 50%),
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
  pointer-events: none;
}

.glow-orb {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.glow-orb.g1 { background: var(--accent); top: -200px; left: -100px; animation: float1 20s ease-in-out infinite; }
.glow-orb.g2 { background: var(--accent2); bottom: -200px; right: -100px; animation: float2 25s ease-in-out infinite; }

@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(80px, 60px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-60px, -80px); } }

/* ============ LAYOUT ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ============ NAV ============ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  backdrop-filter: blur(20px);
  background: rgba(6, 6, 15, 0.8);
  border-bottom: 1px solid var(--border);
}
nav .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  text-decoration: none;
  color: var(--text);
}
.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: contain;
}
.logo-wordmark span { color: var(--accent); }

nav .links { display: flex; gap: 32px; align-items: center; }
nav .links a { color: var(--text-mid); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
nav .links a:hover { color: var(--accent); }

/* ============ BUTTONS ============ */
.btn-chrome {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-chrome:hover { background: #00ffb3; transform: translateY(-1px); box-shadow: 0 4px 20px var(--accent-dim); }

/* ============ FOOTER ============ */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
footer p { font-size: 13px; color: var(--text-dim); }
footer a { color: var(--accent); text-decoration: none; }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
