:root {
  --accent: #06a3e0;
  --accent-dark: #0480b3;
  --text: #0f2a3a;
  --text-dim: #55758a;
  --bg-1: #ffffff;
  --bg-2: #eaf6fd;
}

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

html,
body {
  min-height: 100%;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 55%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  min-height: 100vh;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding: 64px 24px 0;
  display: flex;
  flex-direction: column;
}

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

.logo {
  width: auto;
  height: clamp(160px, 24vw, 240px);
  max-width: 90vw;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(6, 163, 224, 0.22));
}

.content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 600;
}

h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
}

.tagline {
  color: var(--text-dim);
  line-height: 1.6;
  font-size: 1rem;
}

.footer {
  flex-shrink: 0;
  width: 100%;
  padding: 24px 0 32px;
  text-align: center;
}

.footer p {
  font-size: 0.8rem;
  color: rgba(85, 117, 138, 0.55);
}