html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

body {
  font-family:
    'Manrope',
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  background:
    radial-gradient(circle at top, rgba(14, 165, 233, 0.12), transparent 42%),
    #f8fafc;
}

a {
  text-decoration: none;
}

::selection {
  background: rgba(56, 189, 248, 0.22);
}

/* Built-with-Serverpod fallback card (legacy / dev) */
.content {
  width: min(100%, 36rem);
  margin: 8rem auto;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.logo-box {
  text-align: center;
}

.logo-box a,
.link-box a {
  color: #0f172a;
}

.logo-box a {
  font-weight: 600;
}

.info-box p + p {
  margin-top: 0.5rem;
}

hr {
  margin: 1.5rem 0;
  border: 0;
  border-top: 1px solid #e2e8f0;
}

.link-box {
  text-align: center;
  color: #64748b;
}

.cta {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #0284c7;
  padding: 0.9rem 1.25rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background-color 0.12s ease;
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.24);
}

.cta:hover {
  background: #0369a1;
  transform: translateY(-1px);
}

.cta:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.45);
  outline-offset: 2px;
}
