@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");

:root {
  color-scheme: light;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: #0f172a;
  background-color: #f8fafc;
}

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

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #cbd5f5 0%, transparent 45%),
    #f8fafc;
}

.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header h1 {
  font-size: 2.25rem;
  margin-bottom: 0.25rem;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
}

nav a {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: none;
}

main {
  background: #ffffff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.email {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
}

.note {
  color: #475569;
  font-size: 0.95rem;
}

.faq {
  display: grid;
  gap: 16px;
}

.faq h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.faq-item {
  background: #f1f5f9;
  padding: 20px;
  border-radius: 16px;
}

ol {
  padding-left: 1.5rem;
  color: #0f172a;
}

ol li {
  margin-bottom: 0.25rem;
}

h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

ul {
  list-style: disc;
  margin-left: 1.25rem;
}

.lede {
  font-size: 1rem;
  color: #475569;
}

footer {
  text-align: center;
  color: #475569;
  font-size: 0.95rem;
}

footer a {
  color: #1d4ed8;
}

@media (max-width: 600px) {
  .page {
    padding: 20px;
  }

  .site-header {
    flex-direction: column;
    gap: 12px;
  }

  main {
    padding: 24px;
  }
}
