@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;700&display=swap');

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

:root {
  --bg:       #0d1117;
  --panel:    #161b22;
  --border:   #30363d;
  --accent:   #00ff88;
  --accent2:  #00cc6a;
  --blue:     #00aaff;
  --text:     #c9d1d9;
  --muted:    #8b949e;
  --font:     'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 56px;
  background: rgba(13,17,23,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-decoration: none;
}

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

/* ── HERO ── */
.hero {
  max-width: 860px;
  margin: 0 auto;
  padding: 6rem 2rem 5rem;
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.hero h1 .dim { color: var(--muted); }

.hero-desc {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
}

.hero-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  transition: background 0.2s, color 0.2s;
}
.hero-cta:hover { background: var(--accent); color: var(--bg); }

/* ── SECTION WRAPPER ── */
section { padding: 5rem 2rem; }
.section-inner { max-width: 860px; margin: 0 auto; }

.section-heading {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

/* ── OFFICE ── */
#office { background: var(--panel); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.office-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

#officeCanvas {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  cursor: default;
  image-rendering: pixelated;
  touch-action: none;
}

.office-hint {
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.75rem;
  letter-spacing: 0.05em;
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.team-card:hover { border-color: var(--accent); }

.team-card-role {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.team-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.85rem;
}

.team-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── CONTACT ── */
#contact { border-top: 1px solid var(--border); }

.contact-email {
  font-size: 1.05rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.contact-email:hover { text-decoration: underline; }

.disclaimer {
  margin-top: 1.75rem;
  padding: 1.25rem;
  border-left: 2px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 640px;
}

/* ── FOOTER ── */
footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  nav { padding: 0 1rem; }
  .nav-links { gap: 1.2rem; }
  section { padding: 3.5rem 1.25rem; }
  .hero { padding: 4rem 1.25rem 3.5rem; }
}
