/* learnfromx — landing page (dusk merge).
 *
 * Centered poster composition over the live atmosphere dusk scene. The scene
 * itself (cool blue SVG + sunrise dusk-tint + hover-interactive stones + canvas
 * fireflies/particles) is rendered by partials/atmosphere.html with
 * atmosphere_mood="marketing" + atmosphere_tier="caught_up" — this file styles
 * only the content that scrolls over it.
 *
 * Layering: `.ld` is a fixed z-55 scroll container; atmosphere.css floats the
 * hover-interactive stones overlay at z-56 ABOVE it (so don't change .ld's
 * z-index). Content paints inside `.ld`; the fixed atmosphere stays put behind.
 *
 * Colour voices: cream = glowing UI text · warm-sand "scene" = JP labels, show
 * eyebrow, numerals · coral = the sun / the single action accent · violet =
 * the intermediate (further-along) track marker.
 */

:root {
  --ld-fui: 'Nunito', 'Helvetica Neue', system-ui, sans-serif;
  --ld-fjp: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;     /* display JP (vertical title, eyebrows) */
  --ld-fjp-text: 'Noto Sans JP', sans-serif;                   /* card JP (words, sentences) */

  --ld-cream: #fdf6ef;
  --ld-cream-90: rgba(253,246,239,0.95);
  --ld-cream-soft: rgba(245,226,217,0.88);
  --ld-cream-mute: rgba(236,212,204,0.66);
  --ld-cream-faint: rgba(228,200,192,0.42);

  --ld-scene: rgba(247,212,188,0.78);
  --ld-scene-soft: rgba(247,212,188,0.5);

  --ld-coral: #f1a07c;
  --ld-coral-solid: #f07a54;
  --ld-coral-solid-deep: #e0603a;
  --ld-violet: #c3b0ef;

  --ld-glass: rgba(26,20,48,0.40);
  --ld-glass-strong: rgba(24,18,44,0.52);
  --ld-glass-border: rgba(255,255,255,0.14);
  --ld-hair: rgba(255,224,208,0.15);

  /* The real in-app study card is a LIGHT frosted card with dark ink — the
     sample cards below mirror it exactly (values lifted from lav.css/phaseb.css)
     so the landing previews the actual product card, just on the dusk scene. */
  --ld-card-bg: rgba(255,255,255,0.9);
  --ld-card-edge: rgba(74,72,120,0.1);
  --ld-card-hairline: rgba(74,72,120,0.12);
  --ld-card-ink: #2a2440;
  --ld-card-ink-soft: #5b5575;
  --ld-card-ink-muted: #8d87a4;
  --ld-card-purple: #4a4878;
  --ld-card-green: #4a8a6e;
  --ld-card-stone: #627b9a;

  --ld-radius: 14px;
  --ld-radius-lg: 20px;
  --ld-shadow-card: 0 2px 6px rgba(10,6,28,0.20), 0 18px 48px -14px rgba(10,6,28,0.6);
  --ld-txt-glow: 0 1px 18px rgba(28,18,52,0.45);

  --ld-ease: cubic-bezier(0.2, 1, 0.3, 1);
}

/* The dark violet dusk base (shows in overscroll / safe-area gutters behind the
   fixed atmosphere) is set centrally in atmosphere.css via --dusk-base for all
   public dusk moods — body:has(.atmosphere--marketing/--auth/--legal) — so the
   landing, auth, and legal scenes composite the translucent tint identically. */

/* ── Scroll container (fixed, above the atmosphere; below the stones overlay) ── */
.ld {
  position: fixed; inset: 0; z-index: 55;
  overflow-y: auto; overflow-x: hidden;
  font-family: var(--ld-fui);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ld-cream-soft);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.ld::-webkit-scrollbar { display: none; }
.ld a { color: inherit; text-decoration: none; }

.ld-wrap { max-width: 1000px; margin: 0 auto; padding: 0 28px; }

/* ── Nav — spread to the true corners (full width) ── */
.ld-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 42px;
}
.ld-logo {
  font-weight: 700; font-size: 12px; letter-spacing: 0.22em;
  color: var(--ld-cream-mute); text-decoration: none;
}
.ld-beta {
  display: inline-block; margin-left: 9px; vertical-align: middle;
  position: relative; top: -1px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ld-coral);
  border: 1px solid rgba(240,140,100,0.45); border-radius: 999px;
  padding: 2px 6px;
}
.ld-nav__r { display: flex; align-items: center; gap: 28px; }
.ld-nav__r a {
  font-size: 13.5px; letter-spacing: 0.02em; color: var(--ld-cream-mute);
  transition: color 0.2s; padding: 6px 2px;
}
.ld-nav__r a:hover { color: var(--ld-cream-90); }
.ld-nav__cta { font-weight: 600; color: var(--ld-coral) !important; }
.ld-nav__cta:hover { color: #fff !important; }

/* ── Buttons ── */
.ld-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ld-fui); font-weight: 600; font-size: 15px;
  letter-spacing: 0.03em; text-decoration: none; cursor: pointer; border: none;
  transition: transform 0.35s var(--ld-ease), background 0.25s, box-shadow 0.25s;
}
.ld-btn--primary {
  background: var(--ld-coral-solid); color: #fff;
  padding: 15px 38px; border-radius: var(--ld-radius);
  box-shadow: 0 0 0 1px rgba(255,180,150,0.25) inset,
    0 8px 30px -8px rgba(240,122,84,0.6), 0 0 36px -6px rgba(255,150,110,0.45);
}
.ld-btn--primary:hover {
  background: var(--ld-coral-solid-deep); transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255,190,160,0.3) inset,
    0 12px 38px -8px rgba(240,122,84,0.7), 0 0 48px -4px rgba(255,150,110,0.55);
}
.ld-btn--lg { padding: 17px 44px; font-size: 16px; }
.ld-ghost {
  font-size: 14.5px; font-weight: 500; color: var(--ld-scene);
  letter-spacing: 0.03em; transition: color 0.2s; text-shadow: var(--ld-txt-glow);
}
.ld-ghost:hover { color: var(--ld-cream-90); }
.ld-ghost span { display: inline-block; transition: transform 0.25s; }
.ld-ghost:hover span { transform: translateX(3px); }

/* ── Hero (centered poster composition) ── */
.ld-hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 28px 96px;
}
.ld-hero__inner { position: relative; max-width: 720px; }
.ld-halo {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 680px; height: 480px; z-index: -1; pointer-events: none; filter: blur(30px);
  background: radial-gradient(ellipse 52% 56% at 50% 48%,
    rgba(255,168,120,0.18) 0%, rgba(196,140,220,0.12) 44%, transparent 72%);
  animation: ld-haloBreathe 15s ease-in-out infinite;
}
.ld-h1 {
  font-family: var(--ld-fui); font-weight: 300;
  font-size: clamp(2.3rem, 5.4vw, 4rem); line-height: 1.14; letter-spacing: 0.005em;
  color: var(--ld-cream-90); margin: 0 0 22px; text-shadow: 0 2px 26px rgba(28,18,52,0.5);
}
.ld-h1 b { font-weight: 400; color: var(--ld-coral); text-shadow: 0 0 26px rgba(240,140,100,0.35); }
.ld-sub {
  font-size: clamp(1rem, 1.6vw, 1.16rem); font-weight: 300; color: var(--ld-cream-soft);
  letter-spacing: 0.02em; margin: 0 auto 40px; max-width: 30em; text-shadow: var(--ld-txt-glow);
}
.ld-cta-row { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; }

/* Vertical Japanese title (book-cover / poster spine, right side) */
.ld-vt {
  position: absolute; top: 0; bottom: 0; right: 5vw; z-index: 4;
  display: flex; align-items: center; gap: 18px; pointer-events: none;
}
.ld-vt b, .ld-vt i { writing-mode: vertical-rl; text-orientation: mixed; white-space: nowrap; }
.ld-vt b {
  font-family: var(--ld-fjp); font-weight: 400; font-size: 30px; letter-spacing: 0.18em;
  color: var(--ld-scene); text-shadow: 0 2px 20px rgba(28,18,52,0.5);
}
.ld-vt i {
  font-style: normal; font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--ld-cream-faint);
}

.ld-scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ld-cream-faint);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.ld-scroll-cue::after {
  content: ""; width: 1px; height: 30px;
  background: linear-gradient(var(--ld-scene-soft), transparent);
}

/* ── Sample cards = the BACK (answer side) of real cards, at two levels ── */
.ld-sample { display: flex; flex-direction: column; align-items: center; padding: 24px 28px 110px; }
.ld-cards {
  display: flex; justify-content: center; align-items: flex-start; gap: 96px;
  flex-wrap: wrap; width: 100%; max-width: 980px;
}
.ld-track { flex: 1 1 400px; max-width: 444px; display: flex; flex-direction: column; }
.ld-track__head { min-height: 104px; margin-bottom: 18px; }
.ld-track__label {
  font-size: 1.12rem; font-weight: 600; color: var(--ld-cream-90); margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px; text-shadow: var(--ld-txt-glow);
}
.ld-track__label::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; flex: none;
  background: var(--ld-coral); box-shadow: 0 0 10px rgba(240,140,100,0.55);
}
.ld-track--adv .ld-track__label::before { background: var(--ld-violet); box-shadow: 0 0 10px rgba(176,150,235,0.5); }
.ld-track__desc {
  font-size: 13.5px; font-weight: 300; color: var(--ld-cream-soft); line-height: 1.6;
  margin: 0; text-shadow: var(--ld-txt-glow);
}
.ld-track__note {
  font-size: 12.5px; font-weight: 300; font-style: italic;
  color: var(--ld-cream-soft); line-height: 1.55; opacity: 0.75;
  margin: 16px 4px 0; text-align: center; text-shadow: var(--ld-txt-glow);
}
.ld-card {
  width: 100%; background: var(--ld-card-bg);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--ld-card-edge); border-radius: var(--ld-radius-lg);
  box-shadow: var(--ld-shadow-card); padding: 26px 28px; text-align: left;
}
.ld-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.ld-card__src { font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ld-card-stone); }
/* lead sits on the dusk scene (not on the card) so it keeps the cream voice */
.ld-sample__lead {
  text-align: center; font-size: 14.5px; font-weight: 300; color: var(--ld-cream-soft);
  margin: 14px auto 30px; max-width: 30em; text-shadow: var(--ld-txt-glow);
}
.ld-word {
  font-family: var(--ld-fjp-text); font-weight: 700; font-size: 40px; color: var(--ld-card-ink);
  line-height: 1; margin-bottom: 6px; letter-spacing: -0.02em;
}
.ld-reading { font-family: var(--ld-fjp-text); font-size: 14px; font-weight: 500; color: var(--ld-card-green); margin-bottom: 2px; }
.ld-romaji { font-size: 12px; font-style: italic; color: var(--ld-card-ink-muted); letter-spacing: 0.02em; margin: 0 0 10px; }
.ld-meaning { font-size: 18px; font-weight: 500; color: var(--ld-card-ink-soft); margin: 6px 0 16px; }
.ld-sent-group { border-top: 1px solid var(--ld-card-hairline); padding-top: 14px; margin-bottom: 14px; }
.ld-sent { font-family: var(--ld-fjp-text); font-size: 15.5px; color: var(--ld-card-ink); line-height: 1.7; margin: 0; }
.ld-sent em { font-style: normal; font-weight: 600; color: var(--ld-card-purple); }
.ld-romaji--sent { margin: 5px 0 0; }
.ld-trans { font-size: 13px; color: var(--ld-card-ink-muted); margin: 6px 0 0; }
.ld-audio { display: flex; gap: 9px; margin-bottom: 16px; }
.ld-audio-btn {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--ld-card-ink-soft); border: 1px solid var(--ld-card-edge);
  border-radius: 999px; padding: 6px 12px;
}
.ld-audio-btn svg { width: 9px; height: 9px; }
.ld-blocks { display: flex; flex-direction: column; gap: 14px; border-top: 1px solid var(--ld-card-hairline); padding-top: 15px; }
.ld-block-h {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ld-card-purple); opacity: 0.6; margin-bottom: 7px;
}
.ld-block-t { font-size: 12.5px; color: var(--ld-card-ink-soft); line-height: 1.6; margin: 0; }
.ld-kanji { display: flex; gap: 11px; margin-bottom: 9px; }
.ld-kanji:last-child { margin-bottom: 0; }
.ld-kanji__char { font-family: var(--ld-fjp-text); font-size: 24px; font-weight: 600; color: var(--ld-card-ink); line-height: 1; flex: none; }
.ld-kanji__gloss { font-size: 12px; color: var(--ld-card-ink-soft); margin-bottom: 2px; }
.ld-kanji__parts { font-size: 11px; color: var(--ld-card-ink-muted); line-height: 1.55; }
.ld-role {
  font-size: 8.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 1px 5px; border-radius: 4px; vertical-align: middle;
}
.ld-role--m { background: rgba(98,123,154,0.14); color: var(--ld-card-stone); }
.ld-role--s { background: rgba(74,72,120,0.12); color: var(--ld-card-purple); }
.ld-mnemonic { color: var(--ld-card-ink-muted); font-style: italic; }

/* ── Generic section (centered heads) ── */
.ld-sec { padding: 92px 0; }
.ld-sec__head { margin-bottom: 54px; text-align: center; }
.ld-eyebrow {
  font-family: var(--ld-fjp); font-weight: 400; font-size: 13px; letter-spacing: 0.3em;
  color: var(--ld-scene); margin-bottom: 10px; text-shadow: var(--ld-txt-glow);
}
.ld-h2 {
  font-family: var(--ld-fui); font-weight: 300; font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  letter-spacing: 0.005em; color: var(--ld-cream-90); margin: 0; text-shadow: 0 2px 22px rgba(24,15,48,0.45);
}

/* ── Features (centered text) ── */
.ld-feat { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 56px; }
.ld-feat__item { padding: 30px 0; text-align: center; }
.ld-feat__item h3 {
  font-family: var(--ld-fui); font-weight: 600; font-size: 1.18rem; color: var(--ld-cream-90);
  margin: 0 0 12px; letter-spacing: 0.005em; text-shadow: var(--ld-txt-glow);
}
.ld-feat__item p {
  font-weight: 400; font-size: 15px; color: var(--ld-cream-soft); margin: 0 auto;
  line-height: 1.7; max-width: 24em; text-shadow: var(--ld-txt-glow);
}
.ld-feat__item--sep { border-top: 1px solid var(--ld-hair); }

/* ── How it works (centered numerals) ── */
.ld-steps { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; counter-reset: step; }
.ld-step { display: flex; gap: 24px; align-items: baseline; padding: 22px 0; border-top: 1px solid var(--ld-hair); }
.ld-step:first-child { border-top: none; }
.ld-step__n {
  counter-increment: step; font-family: var(--ld-fui); font-weight: 200; font-size: 32px;
  color: var(--ld-scene); line-height: 1; min-width: 58px; font-variant-numeric: tabular-nums;
  text-shadow: 0 0 20px rgba(255,170,120,0.25);
}
.ld-step__n::before { content: "0" counter(step); }
.ld-step__t { font-weight: 400; font-size: 1.08rem; color: var(--ld-cream-soft); line-height: 1.5; padding-top: 6px; text-shadow: var(--ld-txt-glow); }

/* ── What you get ── */
.ld-get { max-width: 760px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 48px; }
.ld-get__i {
  display: flex; gap: 13px; align-items: flex-start; font-weight: 400; font-size: 15px;
  color: var(--ld-cream-soft); line-height: 1.5; text-shadow: var(--ld-txt-glow);
}
.ld-get__i svg {
  flex: none; width: 18px; height: 18px; margin-top: 3px; stroke: var(--ld-coral);
  fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.ld-hood { margin: 42px auto 0; max-width: 620px; text-align: center; }
.ld-hood summary {
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.04em; color: var(--ld-scene);
  cursor: pointer; list-style: none; text-shadow: var(--ld-txt-glow);
}
.ld-hood summary::-webkit-details-marker { display: none; }
.ld-hood summary::before { content: "+ "; color: var(--ld-coral); }
.ld-hood[open] summary::before { content: "\2212 "; }
.ld-hood p { font-weight: 400; font-size: 13.5px; color: var(--ld-cream-mute); margin: 14px 0 0; line-height: 1.8; text-shadow: var(--ld-txt-glow); }

/* ── Final CTA ── */
/* interlude — a breath between sections, not a section itself */
.ld-credo {
  text-align: center; padding: 36px 28px 36px;
  max-width: 36em; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.ld-credo .ld-eyebrow {
  font-size: 13px; opacity: 0.55; letter-spacing: 0.18em;
  background: none; border: none; padding: 0; margin: 0;
}
.ld-credo .ld-h2 {
  font-size: 18px; font-weight: 400; font-style: italic;
  letter-spacing: 0.01em; margin: 0; line-height: 1.4;
  color: var(--ld-cream-soft);
}
.ld-credo p {
  margin: 0; max-width: 28em;
  font-size: 13.5px; font-weight: 300; color: var(--ld-cream-soft);
  opacity: 0.75; text-shadow: var(--ld-txt-glow);
}
.ld-final { text-align: center; padding: 120px 28px; }
.ld-final h2 {
  font-family: var(--ld-fui); font-weight: 300; font-size: clamp(1.9rem, 4vw, 2.9rem);
  letter-spacing: 0.005em; color: var(--ld-cream-90); margin: 0 0 36px; text-shadow: 0 2px 24px rgba(24,15,48,0.5);
}
.ld-final__jp {
  font-family: var(--ld-fjp); font-size: 14px; letter-spacing: 0.3em; color: var(--ld-scene);
  margin-bottom: 18px; text-shadow: var(--ld-txt-glow);
}

/* ── Footer (airy; no panel/blur — just the dusk ground falling into shadow.
   The fixed sky is brightest at its very bottom edge, exactly where the footer
   sits, so a soft to-bottom scrim darkens precisely where legibility is worst
   while the brand row up top stays open.) ── */
.ld-foot {
  border-top: 1px solid var(--ld-hair); padding: 54px 42px 40px;
  background: linear-gradient(to bottom, transparent 0%, rgba(26,16,44,0.52) 100%);
}
.ld-foot__in { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 36px; }
.ld-foot__brand .ld-logo { color: var(--ld-cream-soft); text-shadow: var(--ld-txt-glow); }
.ld-foot__brand p { margin: 10px 0 0; font-weight: 300; font-size: 14px; color: var(--ld-cream-soft); text-shadow: var(--ld-txt-glow); }
.ld-foot__prov { font-family: var(--ld-fjp); font-size: 13px; letter-spacing: 0.22em; color: var(--ld-scene); margin-top: 14px !important; }
.ld-foot__cols { display: flex; gap: 60px; }
.ld-foot__cols h5 { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ld-cream-mute); margin: 0 0 14px; text-shadow: var(--ld-txt-glow); }
.ld-foot__cols a { display: block; font-size: 14px; color: var(--ld-cream-soft); margin-bottom: 8px; transition: color 0.2s; text-shadow: var(--ld-txt-glow); }
.ld-foot__cols a:hover { color: var(--ld-cream-90); }
.ld-foot__copy { max-width: 1000px; margin: 40px auto 0; font-size: 12px; color: var(--ld-cream-mute); letter-spacing: 0.04em; text-shadow: var(--ld-txt-glow); }

/* ── Reveal (observed by index.html's IntersectionObserver, rooted on .ld) ── */
.ld-reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s var(--ld-ease); }
.ld-reveal.is-visible { opacity: 1; transform: none; }

/* ── Animations ── */
@keyframes ld-haloBreathe {
  0%,100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%,-50%) scale(1.05); }
}

/* ── Responsive ── */
@media (max-width: 1024px) { .ld-vt { display: none; } }
@media (max-width: 760px) {
  .ld-nav { padding: 18px 22px; }
  .ld-nav__r { gap: 18px; }
  .ld-nav__r a[href="#how"] { display: none; }
  .ld-hero { padding: 108px 24px 80px; }
  .ld-track { max-width: 100%; }
  .ld-track__head { min-height: 0; }
  .ld-feat, .ld-get { grid-template-columns: 1fr; gap: 0; }
  .ld-feat__item { padding: 26px 0; border-top: 1px solid var(--ld-hair); }
  .ld-feat__item:first-child { border-top: none; }
  .ld-get { gap: 14px; }
  .ld-foot { padding: 48px 24px 36px; }
  .ld-foot__in { flex-direction: column; gap: 30px; }
  .ld-sec { padding: 72px 0; }
  .ld-cta-row { gap: 18px; }
}

/* ── Waitlist (pre-launch, issue 0286) ── */
.ld-soon {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ld-scene);
  margin: 0 0 18px; text-shadow: var(--ld-txt-glow);
}
.ld-soon__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ld-coral);
  box-shadow: 0 0 10px 2px rgba(240,140,100,0.55);
  animation: ld-soonPulse 2.6s ease-in-out infinite;
}
@keyframes ld-soonPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.78); }
}
.ld-wl { max-width: 460px; margin: 0 auto 26px; }
.ld-wl__form {
  display: flex; gap: 6px; padding: 6px;
  background: var(--ld-glass-strong);
  border: 1px solid var(--ld-glass-border);
  border-radius: var(--ld-radius-lg);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.ld-wl__form:focus-within {
  border-color: rgba(241,160,124,0.55);
  box-shadow: 0 0 28px -6px rgba(240,140,100,0.35);
}
.ld-wl__input {
  flex: 1; min-width: 0; border: none; background: transparent; outline: none;
  font-family: var(--ld-fui); font-size: 15px; font-weight: 400;
  color: var(--ld-cream-90); padding: 10px 12px 10px 16px;
}
.ld-wl__input::placeholder { color: var(--ld-cream-faint); }
.ld-wl__btn {
  font-family: var(--ld-fui); font-weight: 600; font-size: 14.5px;
  letter-spacing: 0.03em; cursor: pointer; border: none; white-space: nowrap;
  background: var(--ld-coral-solid); color: #fff;
  padding: 12px 24px; border-radius: var(--ld-radius);
  box-shadow: 0 0 0 1px rgba(255,180,150,0.25) inset,
    0 8px 30px -8px rgba(240,122,84,0.6);
  transition: background 0.25s, box-shadow 0.25s;
}
.ld-wl__btn:hover {
  background: var(--ld-coral-solid-deep);
  box-shadow: 0 0 0 1px rgba(255,190,160,0.3) inset,
    0 10px 34px -8px rgba(240,122,84,0.7);
}
.ld-wl__btn:disabled { opacity: 0.6; cursor: default; }
.ld-wl__msg {
  min-height: 1.4em; margin: 10px 4px 0; font-size: 14px; font-weight: 500;
  color: var(--ld-cream-soft); letter-spacing: 0.02em; text-shadow: var(--ld-txt-glow);
}
.ld-wl__msg.is-err { color: var(--ld-coral); }
.ld-wl.is-done .ld-wl__form { display: none; }
.ld-wl.is-done .ld-wl__msg {
  font-size: 16.5px; font-weight: 600; color: var(--ld-cream-90);
}
.ld-wl.is-done .ld-wl__msg::before {
  content: ''; display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; margin-right: 10px; vertical-align: 1px;
  background: var(--ld-coral); box-shadow: 0 0 12px 2px rgba(240,140,100,0.55);
}
.ld-final .ld-wl { margin-top: 6px; }
@media (max-width: 480px) {
  .ld-wl__form { flex-direction: column; gap: 8px; padding: 8px; }
  .ld-wl__input { text-align: center; padding: 10px 12px; }
  .ld-wl__btn { padding: 13px 24px; }
}
