@import url("https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=IBM+Plex+Sans:wght@400;500;600&display=swap");

:root {
  --ink: #12151a;
  --muted: #5a6472;
  --cobalt: #2b6ef2;
  --line: rgba(18, 21, 26, 0.12);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  background: linear-gradient(165deg, #f3f5f8, #e5ebf3);
}
.g-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}
.g-head a { color: inherit; text-decoration: none; }
.g-head .cta {
  background: var(--cobalt);
  color: #fff !important;
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
}
.g-article {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cobalt);
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0.4rem 0 0.85rem;
}
.dek { color: var(--muted); font-size: 1.05rem; }
h2 { margin-top: 2rem; font-family: var(--font-display); letter-spacing: -0.02em; }
.btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.75rem 1.1rem;
  background: var(--cobalt);
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
}
.more { margin-top: 2rem; color: var(--muted); font-size: 0.92rem; }
.more a { color: var(--cobalt); }
