/* Shared whitepaper gate form (one file for all /whitepaper/* pages). */
.hero .hero-grid { align-items: start; }
.form-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 28px 26px;
  box-shadow: 0 24px 60px rgba(11, 36, 51, 0.10);
  max-width: 440px;
  margin-left: auto;
  width: 100%;
}
.form-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.form-card .sub {
  font-size: 13.5px;
  color: #8AA0AC;
  margin-bottom: 4px;
  line-height: 1.45;
}
.form-card label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin: 14px 0 6px;
}
.form-card input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--body);
  font-size: 15px;
  background: var(--paper);
  color: var(--ink);
}
.form-card input:focus {
  outline: 2px solid var(--qliq);
  border-color: var(--qliq);
}
.form-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
}
.form-note {
  font-size: 12.5px;
  color: #8AA0AC;
  margin-top: 12px;
  text-align: center;
  line-height: 1.45;
}
.form-success {
  display: none;
  text-align: center;
  padding: 36px 8px;
}
.form-success .big {
  font-size: 40px;
  margin-bottom: 8px;
  color: var(--sage-deep);
}
@media (max-width: 900px) {
  .form-card {
    max-width: none;
    margin: 8px 0 0;
  }
}
