:root {
  color-scheme: light;
  --ink: #18191f;
  --muted: #5f6673;
  --line: #d8dde7;
  --paper: #f7f8fb;
  --surface: #ffffff;
  --accent: #0f8b8d;
  --accent-strong: #d1495b;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(15, 139, 141, 0.12), transparent 34%),
    linear-gradient(315deg, rgba(209, 73, 91, 0.12), transparent 38%),
    var(--paper);
}

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

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

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

h1 {
  margin: 0;
  font-size: clamp(4rem, 18vw, 12rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.intro {
  max-width: 640px;
  margin: 28px 0 0;
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  line-height: 1.65;
  color: var(--muted);
}

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

.actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.62);
}

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

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

article {
  min-height: 160px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

h2 {
  margin: 0 0 10px;
  font-size: 1rem;
}

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

@media (max-width: 720px) {
  .page {
    width: min(100% - 24px, 1080px);
    padding: 32px 0;
  }

  .hero {
    min-height: 56vh;
  }

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