:root {
  --ink: #18313a;
  --muted: #58727b;
  --brand: #0087a5;
  --brand-dark: #006c83;
  --surface: #ffffff;
  --soft: #eef7f5;
  --line: #d7e8e4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(0, 135, 165, 0.16), transparent 34rem),
    linear-gradient(135deg, #f7fbfa 0%, #eef7f5 50%, #ffffff 100%);
}

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

.intro {
  width: min(100%, 760px);
  text-align: center;
  padding: clamp(34px, 7vw, 68px) clamp(22px, 6vw, 64px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(24, 49, 58, 0.12);
}

.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.logo {
  width: min(250px, 70vw);
  height: auto;
  display: block;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0 0;
  padding: 12px 20px;
  color: #ffffff;
  background: var(--brand);
  border-radius: 999px;
  font-size: clamp(1rem, 3.8vw, 1.35rem);
  font-weight: 700;
}

.description {
  max-width: 620px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.8vw, 1.18rem);
  line-height: 1.7;
}

.topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.topics span {
  padding: 10px 14px;
  color: var(--brand-dark);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
}

@media (max-width: 520px) {
  .page {
    align-items: start;
    padding-top: 22px;
  }

  .intro {
    padding: 30px 18px;
  }

  .logo-wrap {
    margin-bottom: 22px;
  }

  .topics {
    display: grid;
    grid-template-columns: 1fr;
  }
}
