* { box-sizing: border-box; }

:root {
  color-scheme: dark;
  --page-bg: #030303;
  --text: #f6f1e7;
  --muted: #aaa49a;
  --line: #353535;
  --gold: #d7a83f;
  --cyan: #58c7b7;
  --violet: #8f7cff;
}

html, body { min-height: 100%; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(88, 199, 183, 0.07), transparent 34rem),
    var(--page-bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.coming-soon {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 32px;
}

.brand-lockup {
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.oco-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.oco-icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(88, 199, 183, 0.12);
}

.oco-icon span {
  width: 19px;
  height: 19px;
  border: 3px solid var(--violet);
  border-right-color: var(--cyan);
  border-bottom-color: var(--gold);
  border-radius: 50%;
}

.oco-wordmark {
  font-size: clamp(3.2rem, 10vw, 6.2rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.coming-copy {
  display: grid;
  justify-items: center;
  gap: 7px;
}

.company-name,
.company-descriptor,
.coming-statement {
  margin: 0;
  line-height: 1.45;
}

.company-name {
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.company-descriptor {
  color: var(--muted);
  font-size: 0.92rem;
}

.coming-statement {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 520px) {
  .coming-soon { padding: 24px; }
  .oco-brand { flex-direction: column; gap: 16px; }
}
