:root {
  --bg: #f6f8fc;
  --panel: rgba(255, 255, 255, 0.86);
  --panel-border: rgba(24, 50, 97, 0.14);
  --txt: #0f1b33;
  --txt-dim: #5f6f90;
  --acc1: #2d5baf;
  --acc2: #36a4b5;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--txt);
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(66, 112, 197, 0.16), transparent 60%),
    radial-gradient(1000px 700px at 90% 120%, rgba(97, 171, 185, 0.14), transparent 55%),
    var(--bg);
  overflow: hidden;
}

#warpCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.92;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background-image: radial-gradient(circle, #3f5e8f 0.6px, transparent 0.6px);
  background-size: 4px 4px;
  pointer-events: none;
}

.layout {
  position: relative;
  z-index: 2;
  min-height: 100dvh;
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 1.2rem 1.2rem 1rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--acc1), var(--acc2));
  box-shadow: 0 0 14px rgba(54, 164, 181, 0.35);
}

.hero {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 0.7rem;
}

.pretitle {
  margin: 0;
  font-size: clamp(0.68rem, 1.7vw, 0.9rem);
  letter-spacing: 0.24em;
  color: #6f809f;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 14vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  font-weight: 900;
  text-transform: uppercase;
  color: #12213f;
  text-shadow:
    0 8px 20px rgba(43, 84, 151, 0.12);
  animation: titlePulse 3.2s ease-in-out infinite;
}

h2 {
  margin: 0;
  font-size: clamp(1rem, 4vw, 2rem);
  font-weight: 700;
}

.lead {
  margin: 0.45rem auto 0.85rem;
  max-width: min(78ch, 92vw);
  color: var(--txt-dim);
  line-height: 1.6;
}

.status-card {
  width: min(760px, 96vw);
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  padding: 1rem;
  backdrop-filter: blur(11px);
  box-shadow:
    0 16px 34px rgba(15, 32, 67, 0.12),
    inset 0 0 30px rgba(43, 84, 151, 0.04);
}

.status-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
  color: #637496;
}

.status-head strong {
  color: #1a2d53;
}

.bar {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(29, 58, 104, 0.1);
  border: 1px solid rgba(45, 91, 175, 0.16);
}

.bar-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--acc1), #95aeff 45%, var(--acc2));
  box-shadow: 0 0 18px rgba(54, 164, 181, 0.22);
  transition: width 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.footnote {
  text-align: center;
  color: #7a8aa9;
  font-size: 0.86rem;
}

@keyframes titlePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.015);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .layout {
    padding: 0.85rem 0.85rem 1rem;
  }

  .topbar {
    justify-content: center;
  }
}
