/* Gated landing download popup — additive surface; does not restyle locked landing-v2. */
html,
body.landing-downloads-page {
  margin: 0;
  min-height: 100%;
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  background: #042f24;
  color: #f8fafc;
}
.ld-wrap {
  min-height: 100vh;
  padding: 28px 20px 40px;
  box-sizing: border-box;
}
.ld-card {
  width: min(440px, 100%);
  margin: 0 auto;
  background: #064e3b;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.28);
}
.ld-card h1 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}
.ld-card p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}
.ld-card label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
}
.ld-card input {
  width: 100%;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #042f24;
  color: #f8fafc;
  font-size: 14px;
}
.ld-card button.primary,
.ld-file-btn {
  width: 100%;
  padding: 11px 12px;
  border: none;
  border-radius: 10px;
  background: #0d9488;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.ld-card button.primary:hover,
.ld-file-btn:hover {
  background: #0f766e;
}
.ld-status {
  min-height: 18px;
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #fda4af;
}
.ld-status.ok {
  color: #5eead4;
}
.ld-file {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
  background: rgba(4, 47, 36, 0.55);
}
.ld-file h2 {
  margin: 0 0 4px;
  font-size: 15px;
}
.ld-file p {
  margin: 0 0 10px;
}
.ld-hidden {
  display: none !important;
}
