/* leviathansi.xyz subscribe widget — shared across all static pages.
   Parchment-aesthetic friendly. Gold border + glass blur. */

.lvtn-subscribe {
  margin: 2.5rem 0 1.5rem;
  padding: 1.5rem 1.6rem;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(251, 191, 36, 0.4);
  border-radius: 0.85rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 560px;
}

.lvtn-subscribe__heading {
  font-family: 'Cinzel', 'Times New Roman', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fbbf24;
  text-shadow: 0 0 16px rgba(251, 191, 36, 0.35);
}

.lvtn-subscribe__pitch {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(245, 230, 200, 0.78);
  font-style: italic;
}

.lvtn-subscribe__row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.lvtn-subscribe input[type="email"] {
  flex: 1 1 240px;
  min-width: 0;
  padding: 0.7rem 0.9rem;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(245, 230, 200, 0.25);
  border-radius: 0.4rem;
  color: #f5e6c8;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.lvtn-subscribe input[type="email"]:focus {
  border-color: rgba(251, 191, 36, 0.7);
}
.lvtn-subscribe input[type="email"]::placeholder {
  color: rgba(245, 230, 200, 0.35);
}

.lvtn-subscribe button {
  padding: 0.7rem 1.2rem;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.6);
  border-radius: 0.4rem;
  color: #fbbf24;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.lvtn-subscribe button:hover {
  background: rgba(251, 191, 36, 0.25);
  border-color: rgba(251, 191, 36, 0.9);
}
.lvtn-subscribe button:disabled {
  opacity: 0.5;
  cursor: wait;
}

/* The honeypot — visually + accessibly hidden, but bots will fill it. */
.lvtn-subscribe input[name="lvtn_check"] {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.lvtn-subscribe__status {
  margin-top: 0.4rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  line-height: 1.55;
  min-height: 1.2rem;
}
.lvtn-subscribe__status--ok    { color: #4ade80; }
.lvtn-subscribe__status--error { color: #f87171; }

.lvtn-subscribe__fineprint {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: rgba(245, 230, 200, 0.4);
  line-height: 1.6;
}
