/* ── License Gate ── */

.license-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* Decorative glow */
.license-glow {
  position: absolute;
  width: 900px;
  height: 900px;
  top: -340px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212,168,75,.16) 0%, rgba(212,168,75,.05) 35%, transparent 70%);
  pointer-events: none;
}

/* Vignette */
.license-vign {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(8,9,26,.55) 100%);
  pointer-events: none;
}

/* Brand lockup */
.license-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 34px;
  z-index: 2;
}

/* Center content */
.license-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 560px;
  padding: 40px 24px 96px;
  text-align: center;
  z-index: 2;
}
.license-eyebrow {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(212,168,75,.85);
  margin-bottom: 20px;
}
.license-headline {
  font-family: var(--font-serif);
  font-size: var(--fs-h1);
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--cream);
  margin-bottom: 14px;
}
.license-sub {
  font-size: 16px;
  color: rgba(253,246,236,.62);
  line-height: 1.55;
  max-width: 38ch;
}

/* Form */
.license-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 440px;
  margin-top: 40px;
}
.license-field {
  position: relative;
}
.license-field label {
  position: absolute;
  top: -8px;
  left: 16px;
  background: var(--navy);
  padding: 0 7px;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(212,168,75,.75);
  font-weight: 600;
  z-index: 1;
}
.license-input {
  width: 100%;
  padding: 19px 18px;
  border-radius: 12px;
  font-size: 16px;
  letter-spacing: .14em;
  font-weight: 500;
  color: var(--cream);
  background: rgba(253,246,236,.03);
  border: 1px solid rgba(253,246,236,.14);
  transition: border-color .18s, background .18s, box-shadow .18s;
}
.license-input::placeholder {
  color: rgba(253,246,236,.28);
}
.license-input:focus {
  border-color: rgba(212,168,75,.6);
  background: rgba(253,246,236,.05);
  box-shadow: 0 0 0 4px rgba(212,168,75,.08);
}
.license-error {
  font-size: 13px;
  color: rgba(253,246,236,.72);
  border-left: 2px solid rgba(212,168,75,.6);
  padding: 8px 0 8px 12px;
  margin-bottom: 16px;
}

.license-btn {
  width: 100%;
  padding: 19px 24px;
  border-radius: 12px;
  font-size: 15.5px;
  font-weight: 600;
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 12px 30px -12px rgba(212,168,75,.55);
  transition: transform .14s, box-shadow .18s, background .18s;
}
.license-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px -12px rgba(212,168,75,.7);
  background: var(--gold-hover);
}
.license-btn:active {
  transform: translateY(0);
}

.license-helper {
  font-size: 13px;
  color: rgba(253,246,236,.42);
  margin-top: 18px;
  text-wrap: balance;
}
.license-helper a {
  color: rgba(212,168,75,.9);
  text-decoration: underline;
  text-decoration-color: rgba(212,168,75,.3);
  white-space: nowrap;
}

/* Footer */
.license-foot {
  position: absolute;
  bottom: 28px;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(253,246,236,.22);
  z-index: 2;
}

@media (max-width: 720px) {
  .license-headline { font-size: 34px; }
  .license-center { padding: 40px 20px 80px; }
  .license-helper { padding: 0 12px; }
}
