:root {
  color-scheme: light;
  --navy: #102a43;
  --muted: #52697d;
  --blue: #dff3ff;
  --blue-strong: #85c9ef;
  --border: #cde6f4;
  --surface: #ffffff;
  --background: #f6fbfe;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--navy);
  background: var(--background);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

main {
  width: min(100% - 32px, 680px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px 0;
  display: grid;
  place-items: center;
}

.card {
  width: 100%;
  padding: clamp(28px, 7vw, 52px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: 0 20px 55px rgba(37, 88, 120, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 44px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--blue);
  font-size: 1.25rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: #356f91;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2.35rem, 10vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.intro {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 3.8vw, 1.25rem);
  line-height: 1.55;
}

.status {
  margin-top: 34px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--blue);
  color: #214f6b;
  font-size: 0.98rem;
  line-height: 1.45;
}

.status strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
}

.trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.trust-item {
  min-height: 96px;
  padding: 17px;
  border: 1px solid #e2edf3;
  border-radius: 18px;
  color: var(--muted);
  line-height: 1.4;
}

.trust-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
}

footer {
  margin-top: 34px;
  color: #718393;
  font-size: 0.82rem;
  line-height: 1.5;
}

@media (max-width: 520px) {
  main {
    width: min(100% - 20px, 680px);
    padding: 10px 0;
  }

  .card {
    min-height: calc(100vh - 20px);
    border-radius: 25px;
  }

  .brand {
    margin-bottom: 56px;
  }

  .trust {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
