:root {
  color-scheme: light;
  --bg: #f7f6f2;
  --paper: #ffffff;
  --ink: #20211f;
  --muted: #62655f;
  --line: #dedbd2;
  --accent: #276a5f;
  --shadow: 0 18px 50px rgba(32, 33, 31, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--ink);
}

body {
  display: grid;
  place-items: center;
  margin: 0;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.intro {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  align-items: start;
}

.avatar {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

h1,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 7vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 600px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.75;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
}

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

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

  .intro {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 34px;
  }

  .lead {
    font-size: 1.06rem;
  }
}
