/*
 * danbartlett.com — minimal vanity page.
 * Theme tokens carried over from the OnlineDraft v2 frontend (globals.css),
 * kept as HSL custom properties so the palette stays consistent and the
 * site is easy to expand later.
 */

:root {
  --background: 0 0% 100%; /* #FFFFFF */
  --foreground: 222.2 84% 4.9%; /* #0F172A */
  --primary: 202 64% 50%; /* #0B9EDC — brand blue */
  --muted-foreground: 215.4 16.3% 46.9%; /* #64748B */
  --radius: 0.5rem;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  padding: 1.5rem;
  text-align: center;
}

.wordmark {
  font-weight: 700;
  letter-spacing: -0.02em;
  /* Scales smoothly from phones to large displays. */
  font-size: clamp(2rem, 9vw, 5rem);
  line-height: 1.1;
}

.wordmark .tld {
  color: hsl(var(--primary));
}
