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

:root {
  --bg: #0b1021;
  --panel: #111833;
  --muted: #d2d6e3;
  --text: #e8ecf5;
  --accent: #5dd0e1;
  --accent-strong: #7b5dfa;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  --radius: 14px;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, var(--bg), #0f1530 35%, #0a0f24);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

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

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(11, 16, 33, 0.6);
  border-bottom: 1px solid var(--border);
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.navbar__links {
  display: flex;
  gap: 18px;
  list-style: none;
  align-items: center;
}

.navbar__links a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.navbar__links a:hover,
.navbar__links a:focus-visible {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 22px;
}

section {
  padding: 72px 0;
}

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.section__title {
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin-bottom: 16px;
}

.section__lead {
  max-width: 720px;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(93, 208, 225, 0.12);
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}

.hero__title {
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  margin-bottom: 14px;
}

.hero__subtitle {
  color: var(--muted);
  margin-bottom: 24px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #0a0f24;
  box-shadow: var(--shadow);
}

.btn--ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.95rem;
}

.project-card h3 {
  margin-bottom: 8px;
}

.project-card p {
  color: var(--muted);
  margin-bottom: 12px;
}

.project-card .links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.tagline {
  color: var(--muted);
  margin-bottom: 12px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  align-items: start;
}

.detail-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  padding-left: 0;
}

.detail-list li {
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.footer {
  padding: 36px 0 48px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--border);
}

@media (max-width: 700px) {
  .navbar__links {
    gap: 10px;
  }

  .hero__actions {
    width: 100%;
  }
}
