/* Canonical brand colors are generated into brand.css at build time. */
:root {
  color-scheme: dark;
  --ink: #f4f2ed;
  --muted: #b9bec3;
  --line: #46505a;
  --display: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  --body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-family: var(--body);
  background: var(--brand-dark);
  color: var(--ink);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }

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

.page {
  width: min(100%, 616px);
  padding: 64px 32px;
}

.identity { text-align: center; }

.mark {
  display: block;
  width: 184px;
  height: 184px;
  margin: 0 auto 28px;
}

h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 9vw, 64px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.055em;
}

.fire { color: var(--brand-fire); font-weight: 700; }

.name {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  text-wrap: balance;
}

.mission {
  margin-block: 40px 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  text-wrap: pretty;
}

.mission p { margin: 0; }
.mission p + p { margin-top: 18px; }

footer { text-align: center; }

.github {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 48px;
  color: var(--ink);
  font-size: 16px;
  text-decoration-line: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 7px;
  text-decoration-thickness: 1px;
}

.github:hover { color: var(--brand-fire); text-decoration-color: currentColor; }
.github:active { color: var(--brand-light); }
.github:focus-visible { outline: 2px solid var(--brand-fire); outline-offset: 4px; border-radius: 2px; }

footer p {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 540px) {
  .page { padding: 40px 24px; }
  .mark { width: 136px; height: 136px; margin-bottom: 24px; }
  .name { max-width: 260px; margin-inline: auto; }
  .mission { margin-top: 32px; font-size: 16px; line-height: 1.75; }
}

/* Deliberately still: no entrance effects, parallax, or ambient animation. */
