/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Design tokens ──────────────────────────────────────────────────────── */
:root {
  --bg:      #0a0c0f;
  --surface: #111418;
  --surface2:#181c22;
  --border:  rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.13);
  --text:    #e8eaed;
  --muted:   #7a8494;
  --accent:  #00d4a1;
  --accent2: #ff6b4a;
  --accent3: #4a9eff;
  --bull:    #00d4a1;
  --bear:    #ff6b4a;
  --mono:    'Space Mono', monospace;
  --sans:    'DM Sans', sans-serif;
}

/* ── Base ───────────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Nav ────────────────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(10,12,15,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
}
.logo span { color: var(--accent); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 13px; font-family: var(--mono);
  color: var(--muted); text-decoration: none;
  letter-spacing: 0.05em; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--accent); }

/* ── Footer ─────────────────────────────────────────────────────────────── */
footer {
  padding: 2rem 2.5rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface);
}
.footer-logo { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.footer-logo span { color: var(--accent); }
.footer-note { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.05em; }

/* ── Live dot ───────────────────────────────────────────────────────────── */
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }


/* ── Contact section ────────────────────────────────────────────────────── */
.contact-section {
  border-top: 1px solid var(--border);
  padding: 4rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}

.contact-left {}

.contact-eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  color: var(--muted); text-transform: uppercase;
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.contact-eyebrow::before {
  content: ''; display: inline-block;
  width: 18px; height: 1px; background: var(--muted);
}

.contact-heading {
  font-family: var(--mono); font-size: 1.2rem; font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-sub {
  font-size: 14px; color: var(--muted); font-weight: 300; max-width: 380px;
}

.contact-right {}

.contact-email {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em;
  color: var(--accent); text-decoration: none;
  border: 1px solid rgba(0,212,161,0.25);
  padding: 0.85rem 1.5rem;
  background: rgba(0,212,161,0.05);
  transition: background 0.2s, border-color 0.2s;
}
.contact-email:hover {
  background: rgba(0,212,161,0.1);
  border-color: rgba(0,212,161,0.5);
}
.contact-email-icon { font-size: 14px; }

@media (max-width: 700px) {
  .contact-section { flex-direction: column; align-items: flex-start; padding: 3rem 1.25rem; }
}

/* ── Mobile ─────────────────────────────────────────────────────────────── */
@media (max-width: 700px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
}
