﻿:root {
  --background: #000000;
  --text: #ffffff;
  --muted: #cfcfcf;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: Arial, Helvetica, sans-serif;
}

.coming-soon-page {
  display: flex;
  min-height: 100vh;
  padding: 40px 24px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.coming-soon-logo {
  display: block;
  width: min(520px, 86vw);
  height: auto;
}

.coming-soon-byline {
  margin: 8px 0 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.coming-soon-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
}
