:root {
  --navy-900: #0d2148;
  --teal: #35b0b5;
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #eaf0fb;
  background: radial-gradient(1200px 600px at 50% -10%, #1b4a8f 0%, var(--navy-900) 55%);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 22px;
  padding: 24px;
}

.hero__logo { width: min(340px, 78vw); height: auto; }

.hero__tag {
  margin: 0;
  max-width: 520px;
  font-size: clamp(15px, 2.4vw, 19px);
  color: #b9c8e6;
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #d7f5f6;
  background: rgba(53, 176, 181, 0.12);
  border: 1px solid rgba(53, 176, 181, 0.35);
}

.foot {
  text-align: center;
  padding: 18px;
  font-size: 12px;
  color: #6f83ad;
}
