@charset "UTF-8";

:root {
  --bg: #06131a;
  --bg-deep: #02080c;
  --surface: rgba(10, 23, 31, 0.72);
  --surface-strong: rgba(12, 30, 39, 0.88);
  --line: rgba(173, 231, 222, 0.16);
  --text: #eef7f5;
  --muted: rgba(238, 247, 245, 0.72);
  --teal: #57d6c3;
  --teal-deep: #148c86;
  --blue: #5ea2ff;
  --orange: #ff9b57;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

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

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

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(87, 214, 195, 0.16), transparent 20%),
    radial-gradient(circle at 85% 10%, rgba(94, 162, 255, 0.18), transparent 22%),
    radial-gradient(circle at 60% 85%, rgba(255, 155, 87, 0.14), transparent 24%),
    linear-gradient(180deg, #07141c 0%, #03090e 100%);
}

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

.maintenance-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  padding: 28px;
}

.ambient {
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

.ambient--one {
  top: 80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87, 214, 195, 0.22), transparent 70%);
  filter: blur(8px);
}

.ambient--two {
  right: -40px;
  bottom: 40px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 162, 255, 0.18), transparent 72%);
  filter: blur(14px);
}

.ambient--grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 92%);
}

.topbar {
  width: min(1180px, 100%);
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 19, 26, 0.52);
  backdrop-filter: blur(18px);
}

.topbar__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar__mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #06131a;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 10px 30px rgba(87, 214, 195, 0.22);
}

.topbar__brand strong,
.hero-copy h1,
.glass-card h2,
.hero-notes strong {
  font-family: "Space Grotesk", sans-serif;
}

.topbar__brand strong {
  display: block;
  font-size: 1rem;
}

.topbar__brand small,
.lead,
.glass-card p,
.contact-card small,
.footer-note p {
  color: var(--muted);
}

.topbar__link {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(173, 231, 222, 0.18);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 600;
}

.hero-card {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(9, 24, 32, 0.9), rgba(5, 12, 17, 0.82)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-copy {
  display: grid;
  align-content: center;
}

.eyebrow,
.glass-card__label,
.contact-card__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 62ch;
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #032123;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(87, 214, 195, 0.18);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hero-notes article {
  padding: 16px 18px;
  border: 1px solid rgba(173, 231, 222, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.hero-notes span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-notes strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.25;
}

.status-panel {
  display: grid;
  gap: 16px;
  align-content: start;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(87, 214, 195, 0.18);
  background: rgba(87, 214, 195, 0.08);
  color: #dffaf6;
  font-size: 0.9rem;
  font-weight: 700;
}

.status-badge__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(87, 214, 195, 0.12);
}

.glass-card,
.contact-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(16px);
}

.glass-card h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.glass-card p {
  margin: 14px 0 0;
  line-height: 1.74;
}

.contact-card {
  background: var(--surface-strong);
}

.contact-card a {
  display: inline-block;
  margin-top: 2px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.contact-card small {
  display: block;
  margin-top: 12px;
  line-height: 1.7;
}

.footer-note {
  width: min(1180px, 100%);
  margin: 20px auto 0;
  padding: 0 6px 10px;
}

.footer-note a {
  color: var(--teal);
}

body.is-ready .status-badge__dot {
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(87, 214, 195, 0.26);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 14px rgba(87, 214, 195, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(87, 214, 195, 0);
  }
}

@media (max-width: 920px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .maintenance-shell {
    padding: 18px;
  }

  .topbar {
    display: grid;
    border-radius: 24px;
  }

  .hero-notes {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }
}
