:root {
  --bg: #f5f9ff;
  --panel: #ffffff;
  --text: #12314f;
  --muted: #557089;
  --accent: #1f6fff;
  --accent-dark: #1253c6;
  --ring: rgba(31, 111, 255, 0.28);
  --border: rgba(18, 49, 79, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 20%, #deebff 0%, transparent 42%),
    radial-gradient(circle at 86% 18%, #e6f2ff 0%, transparent 36%),
    linear-gradient(180deg, #fafdff 0%, var(--bg) 100%);
  display: flex;
  flex-direction: column;
}

.page {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 2.5rem 1.25rem 1rem;
}

.hero {
  width: min(760px, 100%);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow:
    0 10px 30px rgba(18, 49, 79, 0.08),
    0 2px 8px rgba(18, 49, 79, 0.04);
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.supporting-copy {
  margin: 1.05rem 0 1.7rem;
  max-width: 60ch;
  font-size: clamp(1rem, 2.2vw, 1.14rem);
  line-height: 1.65;
  color: var(--muted);
}

.cta {
  appearance: none;
  border: 0;
  background: linear-gradient(180deg, #2d7dff 0%, var(--accent) 100%);
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.78rem 1.25rem;
  border-radius: 11px;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
  box-shadow: 0 8px 20px rgba(31, 111, 255, 0.24);
}

.cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #2f84ff 0%, var(--accent-dark) 100%);
}

.cta:active {
  transform: translateY(0);
}

.cta:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.footer {
  padding: 0.7rem 1rem 1.1rem;
  text-align: center;
  color: #607b95;
  font-size: 0.82rem;
}

@media (max-width: 480px) {
  .hero {
    border-radius: 14px;
  }

  .supporting-copy {
    margin-bottom: 1.35rem;
  }

  .cta {
    width: 100%;
  }
}
