:root {
  color-scheme: dark;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: #f4f5f0;
  background: #0d1514;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(81, 185, 144, 0.12), transparent 45%),
    #0d1514;
}

a {
  color: inherit;
}

.site-header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 5vw, 72px);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-header a {
  font-weight: 750;
  text-decoration: none;
}

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.project-intro {
  min-height: 62vh;
  display: grid;
  align-content: center;
  padding: 72px 0;
}

.eyebrow,
.section-number {
  color: #78d9b2;
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 12px 0;
  font-size: clamp(4rem, 13vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.summary {
  max-width: 650px;
  color: #c5cfca;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: #dce4df;
  font-size: 0.85rem;
}

.status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #78d9b2;
  box-shadow: 0 0 16px #78d9b2;
}

.project-content {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(280px, 1fr);
  gap: 64px;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0;
}

.project-content > p {
  margin: 32px 0 0;
  color: #c5cfca;
  font-size: 1.1rem;
  line-height: 1.75;
}

footer {
  color: #aab7b1;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 680px) {
  .site-header,
  footer,
  .project-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-content {
    display: flex;
    gap: 24px;
  }

  .project-content > p {
    margin-top: 0;
  }
}
