@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&display=swap");

:root {
  --color-bg: hsl(40 20% 97%);
  --color-text: hsl(220 15% 18%);
  --color-muted: hsl(220 10% 46%);
  --color-border: hsl(220 10% 85%);
  --color-accent: hsl(174 50% 36%);
  --radius-pill: 999px;
  --max-width: 42rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

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

.site {
  padding: 2rem 1.5rem 4rem;
  max-width: 80rem;
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.section--hero {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.section__content {
  max-width: var(--max-width);
  font-size: 1.125rem;
  color: var(--color-muted);
}

.section__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 2rem;
}

.section__label--spaced {
  margin-top: 4rem;
}

.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin: 0 0 2rem;
}

.hero__description {
  max-width: 36rem;
  font-size: 1.25rem;
  color: var(--color-muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  color: var(--color-muted);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.social-link {
  color: var(--color-muted);
  transition: color 0.15s ease;
}

.social-link:hover {
  color: var(--color-accent);
}