:root {
  color-scheme: dark;
  --bg: #101113;
  --surface: #181b1f;
  --text: #f3f0e8;
  --muted: #a8b0b9;
  --line: #2d3339;
  --accent: #61d095;
  --accent-2: #78b7ff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(97, 208, 149, 0.16), transparent 28rem),
    linear-gradient(135deg, #101113 0%, #151a1d 48%, #111316 100%);
}

a {
  color: inherit;
}

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

.intro {
  max-width: 760px;
  padding: 48px 0 72px;
}

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

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

h1 {
  max-width: 11ch;
  margin-bottom: 20px;
  font-size: clamp(4rem, 14vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.summary {
  max-width: 640px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2.1vw, 1.5rem);
  line-height: 1.55;
}

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

.actions a {
  min-width: 136px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.actions a:first-child {
  border-color: rgba(97, 208, 149, 0.6);
  background: var(--accent);
  color: #07130d;
}

.panel {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0;
}

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

article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(24, 27, 31, 0.82);
}

article span {
  display: block;
  margin-bottom: 34px;
  color: var(--accent-2);
  font-size: 0.85rem;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

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

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

  .intro {
    padding-bottom: 48px;
  }

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