:root {
  --bg: #f7f7f5;
  --ink: #111820;
  --body: #252c34;
  --accent: #d82c24;
}

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

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

html {
  background: var(--bg);
}

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 52% 35%, #ffffff 0%, #fbfbfa 42%, #f6f6f4 76%, #f3f3f1 100%);
  overflow-x: hidden;
}

.maintenance-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 56px 30px;
}

.ambient {
  position: absolute;
  pointer-events: none;
  z-index: -3;
}

.ambient-left {
  width: 470px;
  height: 860px;
  left: 5%;
  top: -90px;
  transform: rotate(-12deg);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.92) 30%, rgba(255,255,255,.34) 58%, rgba(255,255,255,0) 100%);
  filter: blur(5px);
}

.ambient-right {
  width: 720px;
  height: 720px;
  right: -270px;
  bottom: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,44,36,.045), rgba(216,44,36,0) 70%);
}

.content {
  position: relative;
  z-index: 3;
  width: min(900px, 76vw);
  margin-left: 10vw;
  text-align: center;
}

.eyebrow {
  margin: 0 0 34px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .30em;
}

h1 {
  margin: 0;
  font-size: clamp(50px, 5.35vw, 82px);
  line-height: 1.02;
  letter-spacing: -.052em;
  font-weight: 780;
  color: var(--ink);
}

h1 span {
  color: var(--accent);
}

.accent-line {
  width: 44px;
  height: 3px;
  margin: 38px auto 43px;
  border-radius: 999px;
  background: var(--accent);
}

.copy {
  width: min(820px, 100%);
  margin: 0 auto;
}

.copy p {
  margin: 0 0 27px;
  color: var(--body);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.55;
  font-weight: 400;
}

.copy p:last-child {
  margin-bottom: 0;
}

.scene-left {
  position: absolute;
  z-index: 1;
  left: -18px;
  bottom: -20px;
  width: min(33vw, 520px);
  height: auto;
  pointer-events: none;
  user-select: none;
}

.wave {
  position: absolute;
  z-index: 0;
  right: -30px;
  bottom: -40px;
  width: min(43vw, 660px);
  height: auto;
  opacity: .86;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 1100px) {
  .content {
    width: min(820px, 84vw);
    margin-left: 4vw;
  }

  .scene-left {
    width: 35vw;
    opacity: .82;
  }

  .wave {
    right: -140px;
    width: 58vw;
    opacity: .62;
  }
}

@media (max-width: 768px) {
  .maintenance-page {
    min-height: 100svh;
    padding: 56px 20px 46px;
    align-items: center;
  }

  .content {
    width: 100%;
    max-width: 620px;
    margin: 0;
  }

  .eyebrow {
    margin-bottom: 24px;
    font-size: 11px;
    letter-spacing: .23em;
  }

  h1 {
    font-size: clamp(36px, 10.6vw, 54px);
    line-height: 1.04;
  }

  .accent-line {
    margin: 28px auto 31px;
    width: 38px;
  }

  .copy p {
    font-size: 17px;
    line-height: 1.52;
    margin-bottom: 21px;
  }

  .copy br {
    display: none;
  }

  .scene-left {
    left: -88px;
    bottom: -12px;
    width: 250px;
    opacity: .18;
  }

  .wave {
    width: 560px;
    right: -390px;
    bottom: -130px;
    opacity: .28;
  }

  .ambient-left {
    left: -150px;
    opacity: .45;
  }
}

@media (max-width: 420px) {
  .maintenance-page {
    padding: 44px 17px 38px;
  }

  .eyebrow {
    font-size: 10px;
  }

  h1 {
    font-size: 37px;
  }

  .copy p {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
