:root {
  --ink: #f6fbff;
  --muted: rgba(246, 251, 255, .80);
  --blue-deep: #052d44;
  --blue-card: rgba(4, 47, 70, .62);
  --blue-line: rgba(160, 224, 244, .30);
  --cyan: #7ad9ef;
  --green: #b9e879;
  --shadow: 0 32px 90px rgba(0, 21, 35, .44);
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #061c28;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 45, 68, .10), rgba(2, 20, 32, .48)),
    radial-gradient(circle at 50% 18%, rgba(155, 228, 246, .32), transparent 28%),
    url("../img/hero-colibita.webp") center / cover no-repeat;
  transform: scale(1.015);
  z-index: -3;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 18, 30, .40), rgba(0, 40, 58, .06) 35%, rgba(0, 18, 30, .42)),
    linear-gradient(180deg, rgba(3, 24, 38, .03), rgba(1, 14, 24, .48));
  z-index: -2;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3.6vw, 44px);
}

.ambient {
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(52px);
  opacity: .42;
  z-index: -1;
}

.ambient-one {
  width: clamp(220px, 25vw, 360px);
  height: clamp(220px, 25vw, 360px);
  top: 5%;
  left: 10%;
  background: rgba(117, 217, 239, .42);
}

.ambient-two {
  width: clamp(200px, 22vw, 300px);
  height: clamp(200px, 22vw, 300px);
  right: 6%;
  bottom: 8%;
  background: rgba(158, 228, 115, .22);
}

.maintenance-hero {
  width: min(1120px, 100%);
  display: grid;
  justify-items: center;
  gap: clamp(14px, 2.4vw, 26px);
}

.brand-header {
  width: min(560px, 88vw);
  display: grid;
  place-items: center;
  filter: drop-shadow(0 18px 28px rgba(0, 26, 43, .35));
}

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

.glass-card,
.info-strip {
  border: 1px solid rgba(191, 240, 255, .28);
  background:
    linear-gradient(135deg, rgba(14, 87, 119, .64), rgba(3, 37, 59, .66)),
    linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.glass-card {
  position: relative;
  overflow: hidden;
  width: min(1020px, 100%);
  border-radius: clamp(24px, 3vw, 42px);
  padding: clamp(30px, 5.4vw, 70px) clamp(20px, 5.4vw, 78px);
  text-align: center;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, .18), transparent 24%),
    radial-gradient(circle at 82% 25%, rgba(122, 217, 239, .16), transparent 22%);
  opacity: .92;
  pointer-events: none;
}

.status-row,
.glass-card h1,
.divider,
.lead { position: relative; z-index: 2; }

.status-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 18px);
  margin-bottom: clamp(18px, 3.4vw, 34px);
}

.status-row .line {
  width: min(84px, 16vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(207, 246, 255, .54), transparent);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-width: 100%;
  padding: 10px 19px;
  border: 1px solid rgba(211, 249, 255, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .92);
  letter-spacing: .015em;
  line-height: 1.2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
}

.watermark {
  position: absolute;
  z-index: 1;
  width: min(330px, 38vw);
  right: -22px;
  top: 22%;
  opacity: .11;
  filter: grayscale(.1) drop-shadow(0 16px 28px rgba(0, 0, 0, .25));
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: .99;
  letter-spacing: -.045em;
  font-size: clamp(3rem, 7.4vw, 6rem);
  overflow-wrap: normal;
  text-wrap: balance;
  text-shadow: 0 14px 34px rgba(0, 21, 35, .34);
}

h1 span { font-weight: 500; }

.divider {
  width: min(270px, 70%);
  margin: clamp(18px, 3.2vw, 31px) auto clamp(16px, 2.8vw, 28px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  color: var(--green);
}

.divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 232, 121, .86), transparent);
}

.divider i {
  font-style: normal;
  font-size: .72rem;
  transform: rotate(45deg);
}

.lead {
  margin: 0 auto;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.75vw, 1.28rem);
  line-height: 1.62;
}

.lead strong {
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
}

.info-strip {
  width: min(820px, 94%);
  border-radius: 24px;
  padding: 17px 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 0;
  padding: 2px 18px;
  border-right: 1px solid rgba(213, 248, 255, .17);
}

.info-item:last-child { border-right: 0; }

.icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--green);
  border: 1px solid rgba(212, 247, 255, .18);
  background: rgba(255, 255, 255, .06);
  font-size: 1.35rem;
}

.info-item strong,
.info-item small { display: block; text-align: left; }

.info-item strong {
  color: #fff;
  font-size: .98rem;
  line-height: 1.2;
}

.info-item small {
  margin-top: 5px;
  color: rgba(246, 251, 255, .72);
  font-size: .88rem;
  line-height: 1.25;
}

.page-footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(246, 251, 255, .88);
  font-size: .98rem;
  text-align: center;
  text-shadow: 0 10px 24px rgba(0, 19, 32, .5);
}

.page-footer::before,
.page-footer::after {
  content: "";
  width: 110px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 251, 255, .5), transparent);
}

.page-footer img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 20, 34, .44));
}

.page-footer p { margin: 0; }

@media (max-width: 900px) {
  body::before { background-position: center center; }
  .page-shell { padding: 18px; }
  .maintenance-hero { gap: 16px; }
  .brand-header { width: min(430px, 92vw); }
  .glass-card { padding: 32px 20px; }
  .status-row .line { width: 42px; }
  .lead br { display: none; }
  .info-strip { grid-template-columns: 1fr; padding: 10px 14px; width: min(620px, 100%); }
  .info-item {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(213, 248, 255, .14);
    padding: 13px 4px;
  }
  .info-item:last-child { border-bottom: 0; }
  .watermark { width: 220px; right: -70px; top: 28%; }
}

@media (max-width: 560px) {
  body::before {
    background-position: 48% center;
    transform: scale(1.03);
  }
  body::after {
    background:
      linear-gradient(180deg, rgba(0, 18, 30, .30), rgba(0, 18, 30, .58)),
      linear-gradient(90deg, rgba(0, 18, 30, .36), rgba(0, 35, 52, .10), rgba(0, 18, 30, .36));
  }
  .page-shell {
    align-items: start;
    padding: 16px 12px 20px;
  }
  .brand-header { width: min(318px, 92vw); }
  .glass-card {
    border-radius: 22px;
    padding: 24px 15px 25px;
  }
  .status-row { margin-bottom: 16px; }
  .status-row .line { display: none; }
  .status-pill {
    font-size: .88rem;
    padding: 9px 13px;
    white-space: normal;
  }
  h1 {
    font-size: clamp(2.15rem, 12.6vw, 3.35rem);
    line-height: 1.03;
    letter-spacing: -.055em;
  }
  .divider {
    width: min(210px, 74%);
    margin: 16px auto 14px;
  }
  .lead {
    font-size: .98rem;
    line-height: 1.52;
  }
  .watermark {
    width: 180px;
    right: -84px;
    top: 20%;
    opacity: .09;
  }
  .info-strip {
    border-radius: 20px;
    padding: 8px 12px;
  }
  .info-item {
    gap: 11px;
    padding: 11px 0;
  }
  .icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    font-size: 1.15rem;
  }
  .info-item strong { font-size: .92rem; }
  .info-item small { font-size: .82rem; }
  .page-footer {
    gap: 8px;
    font-size: .9rem;
  }
  .page-footer::before,
  .page-footer::after { width: 82px; }
  .page-footer img { width: 34px; height: 34px; }
}

@media (max-width: 370px) {
  .brand-header { width: min(286px, 91vw); }
  .glass-card { padding: 21px 12px 22px; }
  h1 { font-size: clamp(1.95rem, 12.4vw, 2.72rem); }
  .lead { font-size: .93rem; }
  .info-strip { padding-inline: 10px; }
}

@media (max-height: 740px) and (min-width: 901px) {
  .page-shell { padding-top: 20px; padding-bottom: 20px; }
  .brand-header { width: min(500px, 70vw); }
  .glass-card { padding-top: 38px; padding-bottom: 42px; }
  h1 { font-size: clamp(3rem, 6.4vw, 5.3rem); }
  .status-row { margin-bottom: 22px; }
  .divider { margin-top: 20px; margin-bottom: 18px; }
}

@media (orientation: landscape) and (max-height: 520px) {
  .page-shell {
    min-height: auto;
    padding: 14px;
  }
  .brand-header { width: 320px; }
  .glass-card { padding: 20px 18px; }
  .status-row { margin-bottom: 12px; }
  h1 { font-size: 2.6rem; }
  .lead { font-size: .94rem; line-height: 1.45; }
  .info-strip,
  .page-footer { display: none; }
}

@supports not ((backdrop-filter: blur(18px))) {
  .glass-card,
  .info-strip { background: rgba(4, 47, 70, .86); }
}
