/* --------------------------------------------------------------------------
   Font faces — add licensed .woff2 files to /fonts/ for full brand fidelity.
   Fallbacks: Source Serif 4 (headings), system sans (body)
   -------------------------------------------------------------------------- */

@font-face {
  font-family: "Blacker Text";
  src:
    local("Blacker Text"),
    url("fonts/BlackerText-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SF Pro Text";
  src:
    local("SF Pro Text"),
    local(".SFNSText-Regular"),
    url("fonts/SFProText-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */

:root {
  --red: #ba0032;
  --dark-gray: #242222;
  --gray: #c6c6c6;
  --light-gray: #f0f0f0;
  --white: #ffffff;

  --font-heading: "Blacker Text", "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --radius-pill: 999px;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray);
  background-color: var(--dark-gray);
}

/* --------------------------------------------------------------------------
   Background glow
   -------------------------------------------------------------------------- */

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 70% 55% at 50% 45%,
      rgba(186, 0, 50, 0.22) 0%,
      rgba(186, 0, 50, 0.06) 45%,
      transparent 70%
    );
  z-index: 0;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 3rem 1.5rem;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.pill {
  display: inline-block;
  padding: 0.4rem 1.125rem;
  margin-bottom: 1.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray);
  border: 1px solid var(--red);
  border-radius: var(--radius-pill);
}

.title {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 8vw, 4.25rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--white);
}

@media (min-width: 640px) {
  .page {
    padding: 4rem 2rem;
  }

  .pill {
    font-size: 0.8125rem;
  }
}
