/* Geist Variable — latin subset only, local woff2 */
@font-face {
  font-family: "Geist Variable";
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  src: url("assets/fonts/geist-latin-wght-normal.woff2") format("woff2");
}

:root {
  --background: #fafaf7;
  --foreground: #141414;
  --card: #ffffff;
  --muted: #f2eee6;
  --muted-foreground: #6b6358;
  --accent: #eae2d1;
  --border: #e8e2d5;
  --ring: #6b6358;
  --radius: 0.625rem;
  --radius-card: calc(var(--radius) * 1.8);
  --radius-btn: calc(var(--radius) * 1.4);
}

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

html {
  font-family:
    "Geist Variable",
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
}

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--background);
  color: var(--foreground);
  font-feature-settings: "cv11", "ss01";
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0;
}

main {
  width: 100%;
  max-width: 420px;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.headshot {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  border: 2px solid var(--border);
  object-fit: cover;
  display: block;
}

@media (min-width: 640px) {
  .headshot {
    width: 128px;
    height: 128px;
  }
}

h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1rem 0 0.25rem;
  letter-spacing: -0.01em;
}

.title {
  font-style: italic;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin: 0;
}

.company {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin: 0.5rem 0 0;
}

.bio {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--foreground) 80%, transparent);
  max-width: 32ch;
}

.ctas {
  display: grid;
  gap: 0.625rem;
}

@media (min-width: 480px) {
  .ctas {
    grid-template-columns: 1fr 1fr;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-btn);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  min-height: 44px;
  transition:
    background 150ms ease,
    border-color 150ms ease,
    color 150ms ease;
}

.btn-primary {
  background: var(--foreground);
  color: var(--background);
  border: 1px solid var(--foreground);
}

.btn-primary:hover {
  background: color-mix(in srgb, var(--foreground) 92%, var(--background));
  border-color: color-mix(in srgb, var(--foreground) 92%, var(--background));
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-secondary:hover {
  border-color: var(--muted-foreground);
}

.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

footer {
  text-align: center;
  margin-top: 0.5rem;
}

.wordmark {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--foreground);
  margin: 0;
}

.small {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0.375rem 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
