:root {
  color-scheme: light;
  --ink: #14213d;
  --muted: #5c677d;
  --line: #d8dee9;
  --paper: #f7f8fb;
  --panel: #ffffff;
  --accent: #0b6bcb;
  --accent-dark: #064f99;
  --warm: #f2b84b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(11, 107, 203, 0.08), transparent 36rem),
    linear-gradient(300deg, rgba(242, 184, 75, 0.16), transparent 28rem),
    var(--paper);
}

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

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

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

h1 {
  margin: 0;
  font-size: clamp(64px, 12vw, 144px);
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 760px;
  margin: 28px 0 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.18;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  color: #ffffff;
  background: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button.ghost {
  color: var(--accent);
  background: transparent;
}

.button.ghost:hover {
  color: var(--accent-dark);
  background: rgba(11, 107, 203, 0.08);
  border-color: var(--accent-dark);
}

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

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

article span {
  display: block;
  margin-bottom: 32px;
  color: var(--warm);
  font-weight: 800;
}

h2 {
  margin: 0 0 12px;
  font-size: 25px;
}

article p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .shell {
    width: min(100% - 28px, 680px);
    padding-top: 48px;
  }

  .hero {
    min-height: 50vh;
  }

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

  article {
    min-height: auto;
  }
}
