:root {
  color-scheme: light;
  --background: #fcf8f5;
  --ink: #103d47;
  --muted: #637477;
  --accent: #ff8b52;
  --accent-halo: #ffe2d3;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--background);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 48px 24px;
}
.identity { text-align: center; }
h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -1.2px;
}
h1 strong { font-weight: 750; }
.brand-dot {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-halo);
}
p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
footer {
  padding: 24px;
  color: var(--muted);
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
}
a { color: var(--ink); text-underline-offset: 4px; }
a:focus-visible { outline: 2px solid var(--ink); outline-offset: 5px; }
@media (max-width: 380px) {
  h1 { gap: 12px; letter-spacing: -.8px; }
  .brand-dot { width: 12px; height: 12px; box-shadow: 0 0 0 4px var(--accent-halo); }
}
