/* Clean, minimal, no nonsense */
:root {
  --bg: #000;
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.78);
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 18px;
  text-align: center;
}

.logo-wrap {
  display: inline-block;
  overflow: hidden;   /* clips halo */
  line-height: 0;
  margin: 0 auto 22px auto;
}

.logo {
  display: block;
  width: min(720px, 92vw);
  height: auto;
  margin: 0;
  filter: none;       /* removes glow */
  transform: scale(1.03);   /* pushes halo off edge */
  transform-origin: center;
}

.headline {
  margin: -6px 0 0 0;
  font-size: clamp(24px, 4.5vw, 44px);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.subhead {
  margin: 10px 0 0 0;
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--muted);
}