*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* RAL 9003 Signal white — ოდნავ თბილი, არა სუფთა #fff */
  --ral-9003: #f4f3ee;
  --ral-9003-deep: #e8e7e2;
  --bg: var(--ral-9003);
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --accent: #ff9900;
  --accent-hover: #e88a00;
  --accent-soft: rgba(255, 153, 0, 0.14);
  --border: rgba(0, 0, 0, 0.07);
}

html,
body {
  height: 100%;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(env(safe-area-inset-top, 16px) + 24px) 24px
    calc(env(safe-area-inset-bottom, 16px) + 24px);
  text-align: center;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  max-width: 560px;
  height: 45vh;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 153, 0, 0.08),
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

.uc-wrap {
  position: relative;
  z-index: 1;
  max-width: 420px;
  width: 100%;
}

.uc-logo {
  height: 52px;
  width: auto;
  max-width: min(280px, 90vw);
  margin: 0 auto 32px;
  display: block;
  background: transparent;
  /* შავი matte ფონის მოხსნა თეთრ გვერდზე */
  mix-blend-mode: screen;
}

.uc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  color: var(--accent-hover);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.uc-badge i {
  color: var(--accent);
  animation: spin 3s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

h1 {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 18px;
  color: var(--text);
}

.uc-lead {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 32px;
}

.uc-bar {
  height: 4px;
  border-radius: 999px;
  background: var(--ral-9003-deep);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 32px;
}

.uc-bar span {
  display: block;
  height: 100%;
  width: 35%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #ffad33);
  animation: load 2.5s ease-in-out infinite;
}

@keyframes load {
  0% {
    width: 20%;
    margin-left: 0;
  }
  50% {
    width: 55%;
    margin-left: 25%;
  }
  100% {
    width: 20%;
    margin-left: 80%;
  }
}

.uc-contact {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

.uc-contact a {
  display: block;
  margin-top: 4px;
  color: var(--accent-hover);
  font-weight: 700;
  text-decoration: none;
}

.uc-contact a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.uc-footer {
  margin-top: 48px;
  font-size: 0.8rem;
  color: #8a8984;
}
