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

:root {
  --bg: #0B0B0F;
  --card: #111118;
  --elevated: #1A1A24;
  --text: #E0E0E6;
  --text-muted: #8888A0;
  --cyan: #00C4FF;
  --emerald: #00E5A0;
  --gradient: linear-gradient(90deg, var(--cyan), var(--emerald));
}

body {
  font-family: "Avenir Next", "Century Gothic", Futura, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--cyan); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Nav */
header { border-bottom: 1px solid var(--elevated); }
nav {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img { display: block; height: 32px; width: auto; }
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { color: var(--text-muted); font-size: 0.9rem; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* Main */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
  flex: 1;
}

/* Hero */
.hero { padding: 4rem 0 3rem; }
.hero-logo { max-width: 280px; height: auto; margin-bottom: 1.5rem; }
.tagline {
  font-size: 1.4rem;
  color: var(--text);
  font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* About */
.about { padding: 2.5rem 0; border-top: 1px solid var(--elevated); }
.about h2 { font-size: 1.5rem; margin-bottom: 1.25rem; }
.about p { margin-bottom: 1rem; color: var(--text-muted); line-height: 1.8; font-size: 1.05rem; }
.about .accent {
  color: var(--text);
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* Focus Areas */
.focus { padding: 2.5rem 0; border-top: 1px solid var(--elevated); }
.focus h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.focus-card {
  background: var(--card);
  border: 1px solid var(--elevated);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.focus-card:hover { border-color: var(--cyan); }
.focus-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.focus-card .subtitle {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.focus-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* Contact */
.contact { padding: 2.5rem 0; border-top: 1px solid var(--elevated); }
.contact h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact p { margin-bottom: 0.75rem; }

/* Legal pages */
.legal h1 { font-size: 2rem; margin: 2rem 0 1rem; }
.legal h2 { font-size: 1.25rem; margin: 1.5rem 0 0.5rem; color: var(--cyan); }
.legal p { margin-bottom: 0.75rem; }
.legal ul { margin: 0.5rem 0 1rem 1.5rem; }
.legal li { margin-bottom: 0.25rem; }

/* Footer */
footer {
  border-top: 1px solid var(--elevated);
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
  width: 100%;
}
.footer-links { display: flex; gap: 1.5rem; margin-bottom: 0.75rem; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; }
footer p { color: var(--text-muted); font-size: 0.85rem; }

@media (max-width: 600px) {
  nav { padding: 1rem; }
  main { padding: 1rem; }
  .hero { padding: 2rem 0; }
  .hero-logo { max-width: 200px; }
  .tagline { font-size: 1.1rem; }
  .focus-grid { grid-template-columns: 1fr; }
}
