:root {
  color-scheme: light;
  --bg: #f7f2ea;
  --ink: #1e2a2f;
  --muted: #5e6a70;
  --panel: #ffffff;
  --accent: #0b6bcb;
  --line: rgba(30, 42, 47, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    linear-gradient(130deg, rgba(11, 107, 203, 0.12), transparent 36%),
    linear-gradient(315deg, rgba(27, 140, 105, 0.12), transparent 34%),
    var(--bg);
}

a {
  color: inherit;
}

.page-shell {
  display: grid;
  min-height: 100vh;
  padding: clamp(28px, 6vw, 72px);
  place-items: center;
}

.hero {
  width: min(100%, 920px);
  padding: clamp(28px, 6vw, 68px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 80px rgba(30, 42, 47, 0.12);
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

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

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  font-weight: 750;
  text-decoration: none;
}

.links a:first-child {
  border-color: transparent;
  color: #ffffff;
  background: var(--accent);
}

.links a:focus-visible {
  outline: 3px solid rgba(11, 107, 203, 0.32);
  outline-offset: 3px;
}

@media (max-width: 560px) {
  .page-shell {
    align-items: stretch;
    padding: 18px;
  }

  .hero {
    align-content: center;
    min-height: calc(100vh - 36px);
  }

  .links {
    flex-direction: column;
  }
}
