:root {
  --bg-1: #f5fbf4;
  --bg-2: #e7f2ef;
  --ink: #132734;
  --accent: #0a8a72;
  --accent-2: #ffc857;
  --card: rgba(255, 255, 255, 0.9);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: "Avenir Next", "Avenir", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1300px 620px at 15% -10%, #d8efe8 0%, transparent 55%),
    radial-gradient(900px 480px at 100% 100%, #c9e5dd 0%, transparent 60%),
    linear-gradient(140deg, var(--bg-1), var(--bg-2));
}

.shell {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 24px;
}

.card {
  width: min(680px, 100%);
  border-radius: 28px;
  padding: 44px 28px;
  text-align: center;
  background: var(--card);
  border: 1px solid rgba(19, 39, 52, 0.08);
  box-shadow:
    0 24px 48px rgba(19, 39, 52, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  animation: rise 650ms ease-out both;
}

.logo {
  display: block;
  margin: 0 auto 14px;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.08));
}

.tag {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--ink), white 34%);
}

h1 {
  margin: 12px 0 14px;
  font-size: clamp(2.15rem, 5vw, 3.5rem);
  line-height: 1.05;
}

.body {
  margin: 0 auto;
  max-width: 46ch;
  font-size: clamp(1rem, 2.3vw, 1.15rem);
  line-height: 1.56;
}

.foot {
  margin: 18px 0 0;
  font-weight: 600;
  color: var(--accent);
}

.trust-banner {
  width: min(1120px, 100%);
  height: auto;
  display: block;
  border-radius: 22px;
  border: 1px solid rgba(19, 39, 52, 0.08);
  box-shadow: 0 22px 42px rgba(19, 39, 52, 0.16);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
