/* Wakatta — waitlist form component (shared across landing options). */

.wl {
  display: flex;
  align-items: stretch;
  gap: 9px;
  max-width: 440px;
  flex-wrap: wrap;
}
.wl-fields {
  display: flex;
  align-items: stretch;
  gap: 9px;
  width: 100%;
  background: var(--surface);
  border-radius: 999px;
  padding: 6px 6px 6px 8px;
  box-shadow: var(--shadow-card), inset 0 0 0 1.5px var(--line-strong);
  transition: box-shadow .2s ease;
}
.wl-fields:focus-within {
  box-shadow: var(--shadow-card), inset 0 0 0 1.6px var(--shu), 0 0 0 4px var(--shu-glow);
}
.wl input[type="email"] {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  padding: 0 6px 0 12px;
  outline: none;
}
.wl input[type="email"]::placeholder { color: var(--ink-3); }
.wl input[type="email"]:disabled { color: var(--ink-2); }

.wl button {
  flex-shrink: 0;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15.5px;
  color: #fff;
  background: var(--shu);
  border-radius: 999px;
  padding: 13px 24px;
  box-shadow: 0 6px 18px var(--shu-glow);
  transition: transform .12s ease, filter .2s ease;
  white-space: nowrap;
}
.wl button:hover:not(:disabled) { transform: translateY(-1px); filter: brightness(1.05); }
.wl button:disabled { opacity: .8; cursor: default; }

/* On dark (ink) sections the field card stays light for contrast */
.band.ink .wl-fields, .ink .wl-fields { box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.14); background: rgba(255,255,255,.06); }
.band.ink .wl input[type="email"], .ink .wl input[type="email"] { color: var(--ink-on-dark); }
.band.ink .wl input[type="email"]::placeholder, .ink .wl input[type="email"]::placeholder { color: var(--ink-on-dark-2); }

/* honeypot — hidden from humans & assistive tech; bots that autofill get caught */
.wl-hp { position: absolute !important; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
/* Turnstile widget slot (empty until a sitekey is configured) */
.wl-turnstile { width: 100%; }
.wl-turnstile:empty { display: none; }
.wl-turnstile .cf-turnstile { margin-top: 4px; }

.wl-note {
  width: 100%;
  font-size: 13px;
  color: var(--ink-3);
  margin: 0;
  min-height: 1em;
  transition: color .2s ease;
}
.wl-note[data-kind="error"] { color: var(--shu); font-weight: 600; }

/* success state */
.wl-success { display: none; }
.wl-success:not([hidden]) {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: var(--matcha-soft);
  border-radius: 16px;
  padding: 15px 18px;
  animation: wl-pop .5s cubic-bezier(.22,1,.36,1);
}
.wl-success .tick {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--matcha);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800;
}
.wl-success .msg { font-family: var(--serif); font-size: 16px; line-height: 1.4; color: var(--ink); }
.wl-success .msg b { font-weight: 600; color: var(--matcha); }

@keyframes wl-shake {
  10%,90% { transform: translateX(-1px); }
  20%,80% { transform: translateX(2px); }
  30%,50%,70% { transform: translateX(-4px); }
  40%,60% { transform: translateX(4px); }
}
.shake { animation: wl-shake .45s cubic-bezier(.36,.07,.19,.97); }

/* "coming soon" store badges */
.store-soon { display: inline-flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 11px;
  border-radius: 14px; padding: 11px 18px;
  background: transparent;
  box-shadow: inset 0 0 0 1.4px var(--line-strong);
  color: var(--ink-2);
  position: relative;
}
.ink .badge, .band.ink .badge { box-shadow: inset 0 0 0 1.4px rgba(255,255,255,.18); color: var(--ink-on-dark-2); }
.badge .glyph { font-size: 22px; line-height: 1; }
.badge .s1 { font-size: 10px; letter-spacing: .3px; opacity: .85; line-height: 1; }
.badge .s2 { font-family: var(--serif); font-size: 18px; line-height: 1.1; }
.badge .soon {
  position: absolute; top: -9px; right: 10px;
  font-family: var(--sans); font-weight: 800; font-size: 9px; letter-spacing: .6px; text-transform: uppercase;
  background: var(--gold); color: #fff;
  padding: 2px 7px; border-radius: 999px;
}
