*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #EDEDF3;
  --teal: #67B6B9;
  --navy: #2B4A64;
  --violet: #596397;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 4px 24px rgba(43, 74, 100, 0.10);
  text-align: center;
}

.logo { width: 72px; height: 72px; margin: 0 auto 1.5rem; display: block; }

h1 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 50%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
}

.divider {
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--violet));
  border-radius: 2px;
  margin: 0 auto 1.5rem;
  width: 60px;
}

.content { font-size: 1rem; line-height: 1.7; }
.content p + p { margin-top: 0.75rem; }

footer { margin-top: 1.75rem; font-size: 0.75rem; color: var(--violet); opacity: 0.65; }
