:root {
  color-scheme: dark;
  --bg: #101214;
  --panel: #171a1f;
  --text: #eef2f5;
  --muted: #9aa4ad;
  --line: #2a3037;
  --accent: #4cc9a7;
  --accent-2: #f0b35a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.page {
  width: min(100%, 1060px);
}

.hero {
  min-height: 58vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
}

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

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 12vw, 8.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.intro {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.actions a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.actions a:first-child {
  border-color: var(--accent);
  color: #06251d;
  background: var(--accent);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  margin-top: 28px;
}

article {
  min-height: 220px;
  background: var(--panel);
  padding: 28px;
}

article span {
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 800;
}

h2 {
  margin: 34px 0 12px;
  font-size: 1.2rem;
  letter-spacing: 0;
}

article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 760px) {
  body {
    place-items: start;
    padding: 22px 16px;
  }

  .hero {
    min-height: 54vh;
    padding: 34px 0;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  article {
    min-height: 170px;
    padding: 24px;
  }
}
