:root {
  color-scheme: light;
  --ink: #162033;
  --muted: #607083;
  --line: #d9e4ee;
  --accent: #17a398;
  --accent-dark: #0d716a;
  --bg: #f6fafb;
  --panel: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(23, 163, 152, 0.14), transparent 34rem),
    linear-gradient(135deg, #f7fbfc 0%, #edf5f7 50%, #f9fbf8 100%);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.status-panel {
  width: min(100%, 620px);
  padding: clamp(32px, 7vw, 58px);
  text-align: center;
  background: color-mix(in srgb, var(--panel) 92%, transparent);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(22, 32, 51, 0.09);
}

.brand-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #2f7dd3);
  font-weight: 800;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.intro {
  max-width: 520px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.16rem);
  line-height: 1.7;
}

.progress {
  height: 10px;
  max-width: 360px;
  margin: 34px auto 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #dce9ed;
}

.progress span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #2f7dd3);
}

.note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

@media (max-width: 520px) {
  .status-panel {
    padding: 30px 22px;
  }

  .brand-mark {
    width: 62px;
    height: 62px;
    border-radius: 16px;
  }
}
