:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2744;
  background: #f4f5f8;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 760px;
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 28px;
  box-shadow: 0 20px 50px rgba(23, 37, 84, 0.12);
  text-align: center;
}

.logo {
  width: min(500px, 100%);
  height: auto;
}

h1 {
  margin: 28px 0 12px;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.1;
}

p {
  margin: 0 auto;
  max-width: 560px;
  font-size: clamp(16px, 2.4vw, 19px);
  line-height: 1.5;
  color: #334155;
}

.meta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 8px 14px;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
}

.shield {
  width: 24px;
  height: 24px;
}
