*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  margin: 0;
  background: #f8fafc;
  color: #1e293b;
  line-height: 1.6;
}
.wrap {
  max-width: 520px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  text-align: center;
}
.art-wrap {
  overflow: hidden;
  margin: 0 auto 32px;
  max-width: 320px;
  height: 256px;
  position: relative;
}
.art {
  position: absolute;
  width: 125%;
  height: auto;
  left: -12.5%;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
h1 {
  font-size: 36px;
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.tagline {
  font-size: 18px;
  font-weight: 600;
  color: #475569;
  margin: 0 0 16px;
}
.desc {
  font-size: 15px;
  color: #64748b;
  margin: 0 0 40px;
}
code {
  background: #e2e8f0;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 13px;
  font-family: 'SF Mono', Menlo, monospace;
}

/* Form */
.form {
  text-align: left;
  background: #fff;
  padding: 32px 28px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.form input.honeypot { display: none !important; }
.form label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
}
.form input[type="text"],
.form input[type="email"],
.form textarea {
  display: block;
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #fff;
  font-family: inherit;
  margin-top: 6px;
}
.form textarea { resize: vertical; min-height: 90px; }
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: #1E40AF;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.12);
}
.form button {
  display: block;
  width: 100%;
  padding: 14px;
  background: #1E40AF;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 8px;
}
.form button:hover { background: #1e3a8a; }

/* Footer */
footer {
  margin-top: 40px;
  font-size: 13px;
  color: #94a3b8;
}
footer a { color: #64748b; text-decoration: none; }
footer a:hover { color: #1E40AF; text-decoration: underline; }
.back-link { margin-top: 24px; }
.back-link a { color: #1E40AF; font-weight: 600; text-decoration: none; }
.back-link a:hover { text-decoration: underline; }

/* Thanks check icon */
.thanks-check {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}
.thanks-check svg { width: 100%; height: 100%; display: block; }

@media (max-width: 480px) {
  .wrap { padding: 32px 16px 48px; }
  .form { padding: 24px 20px; }
  h1 { font-size: 30px; }
}
