/*
 * UnderConstructionPage
 * RAWX Launch theme CSS
 */

:root {
  --rawx-red: #ff234f;
  --rawx-red-deep: #cc0f3a;
  --rawx-text: #f6f0e7;
  --rawx-text-soft: #c7beb0;
  --rawx-text-dim: #918777;
  --rawx-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --rawx-mono: "Space Mono", Consolas, monospace;
}

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

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body.rawx-ucp {
  background:
    radial-gradient(circle at top right, rgba(255, 35, 79, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 35, 79, 0.08), transparent 24%),
    linear-gradient(180deg, #090909 0%, #040404 100%);
  color: var(--rawx-text);
  font-family: var(--rawx-mono);
}

body.rawx-ucp::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.015),
    rgba(255, 255, 255, 0.015) 1px,
    transparent 1px,
    transparent 4px
  );
  opacity: 0.22;
}

.rawx-ucp__shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  overflow: hidden;
}

.rawx-ucp__shell::before {
  content: "RAWX";
  position: absolute;
  right: -26px;
  bottom: -18px;
  font-family: var(--rawx-display);
  font-size: clamp(110px, 16vw, 260px);
  letter-spacing: 0.12em;
  line-height: 0.8;
  color: rgba(255, 35, 79, 0.05);
  pointer-events: none;
}

.rawx-ucp__stage {
  position: relative;
  width: min(100%, 980px);
  padding: clamp(36px, 6vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(10, 10, 10, 0.9);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.rawx-ucp__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--rawx-red);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.rawx-ucp__eyebrow::before,
.rawx-ucp__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.rawx-ucp__title {
  margin: 0;
  font-family: var(--rawx-display);
  font-size: clamp(72px, 13vw, 180px);
  line-height: 0.84;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rawx-ucp__status {
  margin: 22px 0 0;
  color: var(--rawx-text-soft);
  font-size: clamp(14px, 2vw, 22px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .rawx-ucp__shell {
    padding: 18px;
  }

  .rawx-ucp__stage {
    padding: 32px 22px;
    border-radius: 24px;
  }

  .rawx-ucp__eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .rawx-ucp__status {
    margin-top: 18px;
    letter-spacing: 0.16em;
  }
}
