:root {
  --bg: #1d2835;
  --bg-deep: #172331;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --orange: #ff6600;
  --orange-hover: #ff7a1f;
  --line: rgba(255, 102, 0, 0.72);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 47%, rgba(37, 66, 143, 0.36) 0 18%, rgba(29, 40, 53, 0) 45%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.maintenance-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(24px, 4vw, 54px) 0;
}

.hero {
  width: min(100% - 48px, var(--container));
  min-height: min(720px, calc(100svh - 72px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  gap: 24px;
  position: relative;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 4px;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: min(300px, 72vw);
  margin-bottom: clamp(30px, 4vw, 40px);
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 102, 0, 0.12);
}

h1 {
  max-width: 520px;
  margin: 0 0 24px;
  font-size: clamp(48px, 5.3vw, 72px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero__text {
  max-width: 500px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(20px, 1.85vw, 25px);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-bottom: 30px;
}

.contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact:hover {
  color: #fff;
  transform: translateY(-1px);
}

.contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
}

.contact__icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.refresh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 218px;
  min-height: 56px;
  padding: 17px 30px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 18px 36px rgba(255, 102, 0, 0.2);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.refresh-button:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(255, 102, 0, 0.24);
}

.refresh-button:active {
  transform: translateY(0);
}

.refresh-button:focus-visible,
.contact:focus-visible,
.logo:focus-visible {
  outline: 3px solid rgba(255, 102, 0, 0.55);
  outline-offset: 4px;
}

.hero__visual {
  position: relative;
  z-index: 1;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 18% 2% 10% 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 69, 255, 0.28), rgba(19, 69, 255, 0) 68%);
  filter: blur(18px);
}

.hero__visual img {
  position: relative;
  width: min(760px, 66vw);
  max-width: none;
  height: auto;
  transform: translateX(34px);
  filter: drop-shadow(0 32px 42px rgba(0, 0, 0, 0.24));
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 45% 55%;
    width: min(100% - 40px, var(--container));
  }

  .hero__visual img {
    width: min(690px, 61vw);
    transform: translateX(18px);
  }

  .contact {
    font-size: 21px;
  }
}

@media (max-width: 900px) {
  .maintenance-page {
    align-items: flex-start;
    padding: 28px 0 42px;
  }

  .hero {
    width: min(100% - 32px, 620px);
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }

  .hero__content {
    width: 100%;
  }

  .logo {
    width: 222px;
    margin-bottom: 32px;
  }

  .eyebrow {
    margin-bottom: 16px;
    padding: 9px 14px;
    font-size: 11px;
  }

  h1 {
    max-width: 520px;
    margin-bottom: 18px;
    font-size: clamp(42px, 13vw, 60px);
    line-height: 0.98;
  }

  .hero__text {
    max-width: 520px;
    margin-bottom: 28px;
    font-size: 20px;
    line-height: 1.18;
  }

  .contacts {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }

  .contact {
    font-size: 21px;
    letter-spacing: -0.035em;
  }

  .refresh-button {
    width: min(100%, 320px);
    min-height: 54px;
  }

  .hero__visual {
    width: 100%;
    min-height: auto;
    margin-top: 0;
    justify-content: center;
  }

  .hero__visual img {
    width: min(620px, 118vw);
    transform: translateX(0);
  }
}

@media (max-width: 520px) {
  body {
    background:
      radial-gradient(circle at 50% 72%, rgba(37, 66, 143, 0.34) 0 18%, rgba(29, 40, 53, 0) 50%),
      linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  }

  .maintenance-page {
    padding: 22px 0 28px;
  }

  .hero {
    width: min(100% - 24px, 420px);
    gap: 18px;
  }

  .logo {
    width: 194px;
    margin-bottom: 28px;
  }

  h1 {
    font-size: clamp(38px, 12.6vw, 48px);
    letter-spacing: -0.06em;
  }

  .hero__text {
    font-size: 18px;
  }

  .contact {
    font-size: 19px;
  }

  .contact__icon {
    width: 23px;
    height: 23px;
    flex-basis: 23px;
  }

  .refresh-button {
    width: 100%;
  }

  .hero__visual {
    margin-top: -4px;
  }

  .hero__visual img {
    width: 122vw;
    margin-left: -7vw;
  }
}

@media (max-width: 360px) {
  .logo {
    width: 178px;
  }

  h1 {
    font-size: 36px;
  }

  .hero__text {
    font-size: 17px;
  }

  .contact {
    font-size: 17px;
  }
}
