:root {
  --background: #f3f1eb;
  --ink: #171815;
  --muted: #65675f;
  --line: #d8d5cc;
  --accent: #235b43;
  --accent-soft: #dce8df;
  --card: rgba(255, 255, 255, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 5%, rgba(35, 91, 67, 0.1), transparent 28rem),
    var(--background);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header,
main,
footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: white;
  background: var(--accent);
  border-radius: 9px;
  font-size: 0.85rem;
}

.status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.83rem;
}

.status i {
  width: 7px;
  height: 7px;
  background: #55a56f;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(85, 165, 111, 0.12);
  animation: status-pulse 2.8s ease-out infinite;
}

.hero {
  min-height: 650px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 0 110px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 800px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 10vw, 7.8rem);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.intro {
  max-width: 640px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.button {
  display: inline-block;
  padding: 13px 18px;
  color: white;
  background: var(--accent);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.button:hover {
  background: #194b36;
  transform: translateY(-2px);
}

.exploring {
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

.current-project {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 70px;
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

.project-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.live-indicator i {
  width: 7px;
  height: 7px;
  background: #55a56f;
  border-radius: 50%;
}

.project-copy > p {
  max-width: 700px;
  margin: 28px 0 38px;
  color: var(--muted);
  font-size: 1.08rem;
}

.project-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.8rem;
}

.project-flow span {
  padding: 9px 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.project-flow b {
  color: var(--accent);
  font-weight: 500;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

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

.card {
  min-height: 290px;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.number {
  display: inline-block;
  margin-bottom: 74px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.card p {
  color: var(--muted);
}

.soon {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 100px;
  padding: 70px;
  background: var(--accent-soft);
  border-radius: 18px;
}

.roadmap {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.roadmap li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(35, 91, 67, 0.18);
}

.roadmap li:last-child {
  border-bottom: 0;
}

.roadmap span {
  display: inline-block;
  width: 52px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 28px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}

@media (max-width: 760px) {
  .site-header,
  main,
  footer {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: 580px;
  }

  h1 {
    font-size: clamp(3.6rem, 18vw, 5.8rem);
  }

  .cards,
  .current-project,
  .soon {
    grid-template-columns: 1fr;
  }

  .current-project {
    gap: 24px;
  }

  .project-label {
    gap: 20px;
  }

  .soon {
    gap: 34px;
    padding: 36px 26px;
  }

  footer {
    gap: 12px;
    flex-direction: column;
  }
}

@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(85, 165, 111, 0.35);
  }
  55%,
  100% {
    box-shadow: 0 0 0 8px rgba(85, 165, 111, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .status i {
    animation: none;
  }

  .button {
    transition: none;
  }
}
