:root {
  color-scheme: dark;
  --background: #03070f;
  --text: #f3f7fa;
  --muted: rgba(243, 247, 250, 0.7);
  --gold: #c8a45d;
  --cyan: #36d7ff;
}

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

html {
  min-height: 100%;
  background: var(--background);
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.coming-soon {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: clamp(1.1rem, 2.7vh, 2.25rem);
  padding: clamp(1.5rem, 5vw, 4rem);
  overflow: hidden;
  background: var(--background);
}

.brand-emblem {
  width: min(70vw, 560px);
  height: auto;
  display: block;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

h1 {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.74rem, 0.66rem + 0.35vw, 1rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 640px) {
  .brand-emblem {
    width: min(88vw, 440px);
  }
}
