:root {
  color-scheme: dark;
  --bg: #101820;
  --panel: #16232e;
  --text: #f5f7f8;
  --muted: #b9c6cb;
  --accent: #f2c14e;
  --accent-strong: #27c2a6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(135deg, rgba(39, 194, 166, 0.18), transparent 38%),
    linear-gradient(225deg, rgba(242, 193, 78, 0.16), transparent 35%),
    var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

.page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 56px;
}

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

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

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

.actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #17202a;
  font-weight: 800;
  text-decoration: none;
}

.actions .secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--text);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(22, 35, 46, 0.76);
}

article span {
  color: var(--accent-strong);
  font-weight: 800;
}

h2 {
  margin: 30px 0 12px;
  font-size: 1.35rem;
  letter-spacing: 0;
}

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

@media (max-width: 760px) {
  .page {
    width: min(100% - 28px, 1120px);
    padding-top: 46px;
  }

  .hero {
    min-height: 64vh;
  }

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