/* ============================================
   WAITLIST PAGE — overrides + page-specific
   Imports global theme from styles.css
   ============================================ */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Page bg with subtle radial glow behind the monogram */
body {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
    var(--black);
}

.wl-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px var(--gutter) 80px;
}

/* Kill inherited section padding from global styles.css */
.wl-hero,
.wl-features {
  padding-top: 0;
  padding-bottom: 0;
}

/* ============================================
   HERO
   ============================================ */
.wl-hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wl-monogram {
  width: 220px;
  height: auto;
  margin-bottom: 28px;
  position: relative;
  filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.35));
}
.wl-monogram img {
  width: 100%;
  height: auto;
  display: block;
}
.wl-brand-eyebrow {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 18px;
}
.wl-brand-eyebrow::after,
.wl-brand-eyebrow::before {
  content: none;
}
.wl-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 22px;
  max-width: 880px;
}
.wl-title em {
  font-style: italic;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wl-sub {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
}
.wl-cta-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.36em;
  color: var(--gold);
  margin-bottom: 32px;
}

/* ============================================
   FORM CARD
   ============================================ */
.wl-card {
  width: 100%;
  max-width: 560px;
  padding: 40px 44px 36px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(15, 13, 8, 0.6) 0%, rgba(8, 7, 5, 0.6) 100%);
  position: relative;
  text-align: center;
}
.wl-card::before,
.wl-card::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  pointer-events: none;
}
.wl-card::before { top: -1px; left: -1px; border-top-width: 1px; border-left-width: 1px; }
.wl-card::after  { bottom: -1px; right: -1px; border-bottom-width: 1px; border-right-width: 1px; }

.wl-card-title {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 12px;
}
.wl-card-sub {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.wl-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.mc-field-group {
  width: 100%;
}
.wl-input {
  width: 100%;
  padding: 16px 18px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--border);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.wl-input::placeholder {
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.wl-input:focus {
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.7);
}
.wl-responses {
  min-height: 0;
}
.wl-responses .response {
  font-size: 12.5px;
  line-height: 1.5;
  padding: 8px 0 0;
}
#mce-error-response { color: #d77; }
#mce-success-response { color: var(--gold); }

.wl-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 28px;
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dim) 100%);
  color: #1a1208;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  cursor: pointer;
  transition: filter 0.3s ease, transform 0.2s ease;
  margin-top: 2px;
}
.wl-submit svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.wl-submit:hover {
  filter: brightness(1.08);
}
.wl-submit:hover svg {
  transform: translateX(4px);
}
.wl-submit:active {
  transform: translateY(1px);
}

.wl-privacy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 11.5px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.wl-privacy svg {
  width: 12px;
  height: 12px;
  color: var(--gold);
  opacity: 0.8;
}

/* ============================================
   FEATURE ROW
   ============================================ */
.wl-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 24px;
  margin-top: 64px;
}
.wl-feature {
  text-align: center;
  padding: 0 8px;
}
.wl-feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wl-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.25));
}
.wl-feature h3 {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: 0;
  line-height: 1.3;
}
.wl-feature p {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 220px;
  margin: 0 auto;
}

/* ============================================
   FOOTER (waitlist-specific, centered)
   ============================================ */
.wl-footer {
  text-align: center;
  padding: 60px var(--gutter) 36px;
  border-top: 1px solid var(--border);
  margin-top: 80px;
}
.wl-footer-mark {
  width: 48px;
  margin: 0 auto 16px;
  filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.3));
}
.wl-footer-mark img {
  width: 100%;
  height: auto;
  display: block;
}
.wl-footer-brand {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--ink);
  margin-bottom: 8px;
}
.wl-footer-brand strong {
  font-weight: 600;
  color: var(--gold);
}
.wl-footer-copy {
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 880px) {
  .wl-main { padding: 130px var(--gutter) 60px; }
  .wl-monogram { width: 170px; }
  .wl-features { grid-template-columns: repeat(2, 1fr); margin-top: 56px; gap: 48px 18px; }
}

@media (max-width: 520px) {
  .wl-main { padding: 120px var(--gutter) 48px; }
  .wl-monogram { width: 140px; margin-bottom: 22px; }
  .wl-card { padding: 32px 24px 28px; }
  .wl-card-title { font-size: 11px; letter-spacing: 0.26em; }
  .wl-features { grid-template-columns: 1fr; gap: 44px; margin-top: 48px; }
  .wl-footer { margin-top: 56px; padding: 48px var(--gutter) 32px; }
}
