/* [СВО] 2026-07-31 — заглушка «сайт переехал» для старого домена */
:root {
  --navy: #1a2b4a;
  --navy-deep: #0f1a2e;
  --gold: #c9a84c;
  --gold-soft: #e8d5a0;
  --text-on-dark: #f7f3eb;
  --muted-on-dark: rgba(247, 243, 235, 0.72);
  --font: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100%;
}

body {
  font-family: var(--font);
  background: var(--navy-deep);
  color: var(--text-on-dark);
  -webkit-font-smoothing: antialiased;
}

.moved-page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(32px, 6vw, 64px) 24px;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 18% 12%, rgba(201, 168, 76, 0.22), transparent 58%),
    radial-gradient(700px 480px at 92% 8%, rgba(36, 59, 97, 0.55), transparent 55%),
    linear-gradient(165deg, #13233d 0%, var(--navy-deep) 42%, #162848 100%);
}

.moved-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(15, 26, 46, 0.35) 100%),
    repeating-linear-gradient(
      -12deg,
      transparent 0,
      transparent 18px,
      rgba(201, 168, 76, 0.03) 18px,
      rgba(201, 168, 76, 0.03) 19px
    );
  pointer-events: none;
}

.moved-page__glow {
  position: absolute;
  width: min(420px, 80vw);
  height: min(420px, 80vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.16), transparent 68%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -42%);
  pointer-events: none;
  animation: movedPulse 6.5s ease-in-out infinite;
}

@keyframes movedPulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -42%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -42%) scale(1.08); }
}

.moved-content {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.moved-logo {
  width: clamp(112px, 22vw, 148px);
  height: auto;
  border-radius: 50%;
  box-shadow:
    0 0 0 3px rgba(201, 168, 76, 0.55),
    0 0 0 10px rgba(201, 168, 76, 0.12),
    0 18px 40px rgba(0, 0, 0, 0.35);
  animation: movedLogoIn 0.9s ease-out both;
}

@keyframes movedLogoIn {
  from { opacity: 0; transform: translateY(12px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.moved-org {
  margin-top: 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
  animation: movedFadeUp 0.8s ease 0.12s both;
}

.moved-title {
  margin-top: 14px;
  font-size: clamp(30px, 5.2vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  animation: movedFadeUp 0.8s ease 0.2s both;
}

.moved-lead {
  margin-top: 16px;
  font-size: clamp(15px, 2.4vw, 17px);
  line-height: 1.55;
  color: var(--muted-on-dark);
  max-width: 34em;
  animation: movedFadeUp 0.8s ease 0.28s both;
}

.moved-lead strong {
  color: var(--gold-soft);
  font-weight: 700;
}

.moved-cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, #dbbf6a 48%, var(--gold) 100%);
  color: var(--navy-deep);
  font: 800 15px/1.2 var(--font);
  text-decoration: none;
  box-shadow:
    0 14px 30px rgba(201, 168, 76, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  animation: movedFadeUp 0.8s ease 0.36s both;
}

.moved-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 36px rgba(201, 168, 76, 0.36);
}

.moved-cta:active {
  transform: translateY(0);
}

.moved-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.moved-url {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(232, 213, 160, 0.9);
  word-break: break-all;
  animation: movedFadeUp 0.8s ease 0.42s both;
}

.moved-note {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 168, 76, 0.22);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(247, 243, 235, 0.55);
  max-width: 32em;
  animation: movedFadeUp 0.8s ease 0.48s both;
}

@keyframes movedFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .moved-logo,
  .moved-org,
  .moved-title,
  .moved-lead,
  .moved-cta,
  .moved-url,
  .moved-note,
  .moved-page__glow {
    animation: none !important;
  }
}
