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

:root {
  --bg: #030308;
  --surface: rgba(15,15,26,0.6);
  --accent: #f97316;
  --accent2: #8b5cf6;
  --text: #e8e8f0;
  --text2: #7a7a90;
  --border: rgba(249,115,22,0.1);
  --radius: 16px;
  --max-w: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: clip;
  line-height: 1.6;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
}
.orb-1 { width: 500px; height: 500px; background: var(--accent); top: -150px; left: -100px; }
.orb-2 { width: 400px; height: 400px; background: var(--accent2); bottom: 20%; right: -120px; opacity: 0.14; }

.page { position: relative; z-index: 1; min-height: 100vh; display: flex; flex-direction: column; }

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3,3,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--text);
}
.nav-logo span { color: var(--accent); }

.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-cta {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: #ea6c0a; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

.page-hero {
  padding: 5rem 0 3rem;
}
.page-hero .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 720px;
}
.page-hero p {
  color: var(--text2);
  font-size: 1.05rem;
  max-width: 640px;
  line-height: 1.75;
}

.content-section { padding: 3rem 0 5rem; flex: 1; }

.prose { max-width: 720px; }
.prose h2 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.02em;
}
.prose p { color: var(--text2); margin-bottom: 1rem; line-height: 1.8; }
.prose ul { margin: 0 0 1.5rem 1.25rem; color: var(--text2); }
.prose li { margin-bottom: 0.5rem; line-height: 1.7; }
.prose a { color: var(--accent); text-decoration: none; }
.prose a:hover { text-decoration: underline; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover { border-color: rgba(249,115,22,0.25); transform: translateY(-2px); }
.card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.card p { font-size: 0.9rem; color: var(--text2); line-height: 1.65; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.team-card { text-align: center; }
.team-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid var(--border);
}
.team-role { font-size: 0.8rem; color: var(--accent); font-weight: 600; margin-bottom: 0.5rem; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.contact-card { padding: 1.75rem; }
.contact-email a {
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  text-decoration: none;
}
.contact-email a:hover { color: #fbbf24; }

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: background 0.2s;
}
.btn-primary:hover { background: #ea6c0a; }

.cta-box {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(249,115,22,0.06);
  border: 1px solid rgba(249,115,22,0.15);
  border-radius: var(--radius);
  text-align: center;
}
.cta-box p { color: var(--text2); margin-bottom: 1rem; }

footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text2);
}
footer a { color: var(--text2); text-decoration: none; margin: 0 0.5rem; }
footer a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .nav-links { display: none; }
}
