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

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

:root {
  --bg: #000000;
  --fg: #ffffff;
  --muted: #a0a0a0;
  --border: #2e2e2e;
  --card-bg: #0f0f0f;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(12px);
}
.navbar-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
}
.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.3em;
}
.navbar-links { display: flex; gap: 2rem; }
.navbar-links a {
  font-size: 0.6875rem; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--muted);
  transition: color 0.3s;
}
.navbar-links a:hover { color: var(--fg); }

.mobile-toggle { display: none; background: none; border: none; color: var(--fg); cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; align-items: center; gap: 1.5rem; padding: 1rem 0 2rem; background: var(--bg); }
.mobile-menu a { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); transition: color 0.3s; }
.mobile-menu a:hover { color: var(--fg); }

/* ── Section defaults ── */
.section { padding: 6rem 1.5rem; }
.section-border { border-top: 1px solid var(--border); }
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--muted);
}
.container { max-width: 960px; margin: 0 auto; }
.container-narrow { max-width: 720px; margin: 0 auto; }

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2rem 1.5rem; position: relative;
}
.hero-logo { width: 10rem; margin-bottom: 2.5rem; }
.hero h1 {
  font-size: 2rem; font-weight: 300; letter-spacing: 0.04em; line-height: 1.3;
}
.hero p {
  margin-top: 1.5rem; max-width: 560px;
  font-size: 0.875rem; font-weight: 300; color: var(--muted); line-height: 1.7;
}
.btn {
  display: inline-block; margin-top: 2.5rem;
  border: 1px solid var(--fg); padding: 0.75rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.2em;
  transition: background 0.3s, color 0.3s;
}
.btn:hover { background: var(--fg); color: var(--bg); }

.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--muted); animation: scroll-bounce 2s ease-in-out infinite;
}
.scroll-indicator span { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.3em; }

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ── About ── */
.about-text { margin-top: 2rem; }
.about-text p {
  margin-top: 1.5rem; font-size: 0.875rem; font-weight: 300;
  line-height: 1.8; color: var(--muted);
}

/* ── Focus Areas ── */
.focus-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; margin-top: 3rem;
}
.focus-grid h3 {
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.03em;
}
.focus-grid p {
  margin-top: 0.75rem; font-size: 0.75rem; font-weight: 300;
  line-height: 1.6; color: var(--muted);
}

/* ── Projects ── */
.projects-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: 3rem;
}
.project-card {
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid var(--border); background: var(--card-bg);
  padding: 1.5rem; transition: border-color 0.3s;
}
.project-card:hover { border-color: var(--muted); }
.project-card h3 { font-size: 1rem; font-weight: 500; letter-spacing: 0.03em; }
.project-card .type { margin-top: 0.25rem; font-size: 0.75rem; font-weight: 300; color: var(--muted); }
.project-card .status {
  margin-top: 1.5rem; font-size: 0.625rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.2em;
}
.status-released { color: var(--fg); }
.status-dev { color: var(--muted); }

/* ── Vision ── */
.vision blockquote {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem; font-weight: 300;
  line-height: 1.7; letter-spacing: 0.03em;
  text-align: center; max-width: 720px; margin: 0 auto;
}

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4rem; margin-top: 3rem; }
.team-photo { aspect-ratio: 3/4; overflow: hidden; }
.team-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  filter: grayscale(100%); transition: filter 0.7s;
}
.team-member:hover .team-photo img { filter: grayscale(0%); }
.team-member h3 { margin-top: 1.5rem; font-size: 1.125rem; font-weight: 500; letter-spacing: 0.03em; }
.team-member .role {
  margin-top: 0.25rem; font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted);
}
.team-member .bio { margin-top: 1rem; font-size: 0.875rem; font-weight: 300; line-height: 1.8; color: var(--muted); }

/* ── Contact ── */
.contact { text-align: center; }
.contact p { margin-top: 1.5rem; font-size: 0.875rem; font-weight: 300; color: var(--muted); }
.contact .btn { margin-top: 2rem; }

/* ── Footer ── */
.footer { border-top: 1px solid var(--border); padding: 3rem 1.5rem; }
.footer-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.footer-logo { width: 4rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--fg); }
.footer-copy { font-size: 0.6875rem; font-weight: 300; color: var(--muted); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .mobile-toggle { display: block; }
  .mobile-menu.open { display: flex; }
  .hero h1 { font-size: 1.75rem; }
  .hero-logo { width: 8rem; }
  .focus-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 3rem; }
  .vision blockquote { font-size: 1.1rem; }
  .section { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
  .focus-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.5rem; }
}
