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

/* Color tokens */
:root {
  --bg:            #080e20;
  --primary:       rgba(232, 237, 245, 0.98);
  --secondary:     #6e85a8;
  --secondary-dim: rgba(110, 133, 168, 0.4);
  --accent:        #3d9dff;
}

body {
  background-color: var(--bg);
  color: var(--primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  padding: 4rem 5rem;
}

main {
  max-width: 540px;
}

h1 {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.2em;
}

.role {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.75rem;
}

.divider {
  border: none;
  width: 32px;
  height: 1px;
  background-color: var(--secondary-dim);
  margin-bottom: 1.75rem;
}

.blurb {
  font-size: 1rem;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.links a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  width: fit-content;
  border-bottom: 1px solid var(--secondary-dim);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.links a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}


/* Responsive */
@media (max-width: 480px) {
  body {
    padding: 2.5rem 1.75rem;
  }

  h1 {
    font-size: 2.25rem;
  }

}
