* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #0f172a;
  color: #e5e7eb;
}

.page {
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 64px 0;
}

.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  color: #93c5fd;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  margin: 0;
}

.subtitle {
  max-width: 680px;
  font-size: 1.35rem;
  color: #cbd5e1;
  margin-top: 24px;
}

.actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.primary {
  background: #2563eb;
  color: white;
}

.secondary {
  border: 1px solid #475569;
  color: #e5e7eb;
}

.section {
  padding: 64px 0;
  border-top: 1px solid #334155;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.section p {
  color: #cbd5e1;
  font-size: 1.1rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 18px;
  padding: 24px;
}

.card h3 {
  margin-top: 0;
}

a {
  color: #93c5fd;
}

@media (max-width: 800px) {
  .project-grid {
    grid-template-columns: 1fr;
  }
}