:root {
  color-scheme: light;
  --bg: #ffffff;
  --text: #0f0f0f;
  --muted: #303030;
  --link: #111111;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--text);
  font-family: "Handjet", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.home {
  width: min(560px, calc(100vw - 44px));
  margin: 0 auto;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.intro-title {
  margin: 0;
  font-size: clamp(2.4rem, 9vw, 5.2rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.no-break {
  white-space: nowrap;
}

.intro-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.3rem, 4.6vw, 2.3rem);
  line-height: 1.05;
  font-weight: 500;
}

.project-list {
  margin: 0;
  padding-left: 24px;
  list-style: disc;
}

.project-list li {
  margin: 8px 0;
}

.project-list a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  font-size: clamp(1.15rem, 4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.project-list a:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 3px;
}
