@font-face {
  font-family: "Brady Bunch Remastered";
  src:
    url("fonts/BradyBunchRemastered.woff2") format("woff2"),
    url("fonts/BradyBunchRemastered.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito";
  src: url("fonts/Nunito.woff2") format("woff2");
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}

:root {
  --night: #0c0908;
  --bark: #16100e;
  --surface: #1f1613;
  --coal: #3d1a14;
  --crimson: #7a2e1f;
  --ember: #e2601f;
  --ember-dark: #a83818;
  --gold: #d4923a;
  --glow: #f5e6d3;
  --glow-muted: #b89a88;
  --font-display: "Brady Bunch Remastered", cursive;
  --font-body: "Nunito", ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: var(--font-body);
  color: var(--glow);
  background-color: var(--night);
  -webkit-font-smoothing: antialiased;
}

.teaser {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem 1.5rem;
  text-align: center;
}

.teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(226, 96, 31, 0.08), transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(122, 46, 31, 0.12), transparent 65%);
}

.teaser__inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}

.teaser__logo {
  display: block;
  width: min(100%, 22rem);
  height: auto;
  margin: 0 auto;
}

.teaser__tagline {
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.2;
  color: var(--glow);
}

.teaser__text {
  margin: 1rem 0 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--glow-muted);
}

.teaser__link {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: var(--ember);
  color: var(--glow);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.teaser__link:hover {
  background: var(--ember-dark);
}

.teaser__link:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
}

.teaser__footer {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: rgba(184, 154, 136, 0.7);
}

::selection {
  background: rgba(226, 96, 31, 0.3);
  color: var(--glow);
}

.teaser__legal {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 0.75rem;
}

.teaser__legal a {
  font-size: 0.8rem;
  color: rgba(184, 154, 136, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.teaser__legal a:hover {
  color: var(--glow);
}

.legal {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 3rem 1.5rem 5rem;
}

.legal__inner {
  max-width: 44rem;
  margin: 0 auto;
  color: var(--glow-muted);
  line-height: 1.7;
}

.legal__back {
  display: inline-block;
  margin-bottom: 2.5rem;
  color: var(--ember);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.legal__back:hover {
  color: var(--ember-dark);
}

.legal__inner h1 {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.15;
  color: var(--glow);
}

.legal__inner h2 {
  margin: 2.5rem 0 1rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--glow);
}

.legal__inner h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--glow);
}

.legal__inner h4 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--glow);
}

.legal__inner p {
  margin: 0 0 1rem;
}

.legal__inner ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.legal__inner li {
  margin: 0 0 0.5rem;
}

.legal__inner a {
  color: var(--ember);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal__inner a:hover {
  color: var(--ember-dark);
}

