:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #041f34;
  color: #ffffff;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: #041f34;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 88% 12%, rgba(105, 198, 232, 0.24), transparent 31rem),
    radial-gradient(circle at 8% 88%, rgba(255, 118, 15, 0.12), transparent 24rem),
    linear-gradient(145deg, #041f34 0%, #075a83 58%, #087cb8 100%);
}

.page-shell {
  width: min(1120px, 100%);
  margin: auto;
  padding: clamp(2rem, 7vw, 6rem) clamp(1.25rem, 5vw, 4rem);
}

.hero {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.brand {
  display: block;
  width: min(580px, 100%);
  height: auto;
}

.content-card {
  max-width: 880px;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border: 1px solid rgba(105, 198, 232, 0.35);
  border-radius: 1.5rem;
  background: rgba(4, 31, 52, 0.76);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.22);
}

.eyebrow {
  margin: 0 0 1rem;
  color: #69c6e8;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.status-badge {
  width: fit-content;
  margin: 0 0 1.5rem;
  padding: 0.52rem 0.78rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 118, 15, 0.7);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 118, 15, 0.13);
  font-size: 0.86rem;
  font-weight: 700;
}

.status-badge span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #ff760f;
  box-shadow: 0 0 0 0.28rem rgba(255, 118, 15, 0.18);
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.1rem, 6vw, 4.5rem);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.introduction {
  max-width: 740px;
  margin: 1.6rem 0 0;
  color: #dcebf2;
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  line-height: 1.7;
}

.status-panel {
  max-width: 740px;
  margin-top: clamp(2rem, 5vw, 3.2rem);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  border-left: 0.3rem solid #ff760f;
  border-radius: 0 1rem 1rem 0;
  background: rgba(7, 90, 131, 0.34);
}

.status-panel p {
  margin: 0;
  color: #dcebf2;
  line-height: 1.65;
}

.status-panel p + p {
  margin-top: 0.85rem;
}

.status-panel .status-title {
  color: #ffffff;
  font-weight: 750;
}

.status-panel .notice {
  color: #ffffff;
  font-weight: 650;
}

footer {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 5vw, 4rem) 2rem;
  color: #b7d0dc;
  font-size: 0.84rem;
}

@media (max-width: 600px) {
  .page-shell {
    padding-top: 2.5rem;
  }

  .content-card {
    border-radius: 1.1rem;
  }

  h1 {
    letter-spacing: -0.035em;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
