
:root{
  --bg: #000;
  --fg: #e6e6e6;
  --muted: #9a9a9a;
}

*{ box-sizing: border-box; }

html, body{
  height: 100%;
}


body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
               "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--fg);
  background-color: #000;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100dvh;
}

.container{
  padding: 4rem 1.5rem 2rem;
  margin: 0 auto;
  max-width: 72rem;
  display: grid;
  place-items: center;
  gap: 0.25rem;
  text-align: center;
}

.brand{
  margin: 0;
  display: grid;
  place-items: center;
}

.brand img{
  width: 200%;
  max-width: 240px;
  height: auto;
  display: block;
}

.headline{
  margin: 0.15rem 0;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: clamp(1.1rem, 3.5vw + 0.5rem, 3rem);
  text-shadow: 0 1px 0 #000;
}

.tagline{
  margin: 0;
  font-size: clamp(0.95rem, 1.1vw + 0.4rem, 1.15rem);
  color: var(--muted);
}

.footer{
  padding: 1.25rem 1.5rem 2rem;
  text-align: center;
  color: #8a8a8a;
  font-size: 0.95rem;
}

.divider{
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #ffffff1a,
    transparent
  );
  margin: 0 0 1rem;
}

@media {
  *{
    animation: none !important;
    transition: none !important;
  }
}

:focus-visible{
  outline: 2px solid #ffffffcc;
  outline-offset: 3px;
}
