/* Cloudflare Pages static prelander */
:root{
  --bg:#f2f3f7;
  --card:#ffffff;
  --head:#264e9b; /* deep blue */
  --text:#102a43;
  --muted:#6b7280;
  --border:#e5e7eb;
  --shadow: 0 18px 40px rgba(16,24,40,.10);
  --cta:#1fbf66;
  --cta-hover:#18aa5a;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.wrap{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 40px 16px;
}

.card{
  width:min(860px, 100%);
  border-radius: 10px;
  background: var(--card);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.card__head{
  background: var(--head);
  color:#fff;
  padding: 34px 38px 28px;
}

.card__head h1{
  margin:0 0 18px;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: .2px;
}

.card__head p{
  margin: 10px 0;
  font-size: 15px;
  line-height: 1.5;
  opacity: .95;
}

.card__body{
  padding: 22px 38px 34px;
}

.fineprint{
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.fineprint a{
  color: #3b82f6;
  text-decoration: none;
}
.fineprint a:hover{ text-decoration: underline; }

.bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.compat{
  display:flex;
  align-items:center;
  gap: 14px;
  min-width: 220px;
}

.compat__title{
  font-weight: 600;
  color:#1f2937;
}
.compat__sub{
  color:#2563eb;
  font-size: 14px;
}

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--cta);
  color:#fff;
  font-weight: 700;
  letter-spacing: .6px;
  border-radius: 6px;
  text-decoration:none;
  min-width: 240px;
  text-align:center;
  box-shadow: 0 8px 18px rgba(31,191,102,.18);
}

.cta:hover{ background: var(--cta-hover); }
.arrow{ font-size: 22px; line-height: 1; transform: translateY(-1px); }

@media (max-width: 640px){
  .card__head, .card__body{ padding-left: 18px; padding-right: 18px; }
  .bottom{ flex-direction: column; align-items: stretch; }
  .compat{ min-width: unset; justify-content: center; }
  .cta{ width: 100%; }
}
