/* ============================================================
   SingDia — Landing template (Occasion hub)
   Shared styles for /wedding-song and future landing pages.
   Mobile-first: ~90% of traffic is on phones.
   Reuses tokens, .btn, .eyebrow from site.css and the shared
   .how / .faq / .final block stylesheets.
   ============================================================ */

/* ─────────────────────────────────────────────────────────────
   SEAMLESS PAGE FLOW
   One continuous warm wash behind the whole page so adjacent
   blocks never show a hard boundary. Every light section is made
   transparent and floats on this single background; only the hero
   and the final CTA keep their own (intentionally dark) fills.
   ───────────────────────────────────────────────────────────── */
.lpage {
  background: linear-gradient(180deg,
    var(--cream) 0%,
    var(--cream) 60%,
    #f9efe6 100%);
}
.lpage .lsection,
.lpage .lsection--warm,
.lpage .how,
.lpage .faq,
.lpage .lrelated {
  background: transparent;
}
/* The shared How/FAQ blocks carry their own decorative tint layers
   (how__bg / faq__bg). On the seamless wash they read as faint arcs /
   boundaries, so drop them entirely here. */
.lpage .how__bg,
.lpage .faq__bg { display: none; }

/* Soften the cream → dark Final CTA hand-off so it isn't a hard line.
   A short cream-to-transparent veil over the top of the (dark) final
   section blends it into the page wash above. */
.lpage .final { position: relative; }
.lpage .final::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(180deg, #f9efe6 0%, rgba(249,239,230,0) 100%);
  opacity: 0.9;
  z-index: 1;
  pointer-events: none;
}

/* ─────────────────────────────────────────────────────────────
   BLOCK 1 — HERO (landing variant)
   ───────────────────────────────────────────────────────────── */
.lhero {
  position: relative;
  width: 100%;
  height: 84vh;
  min-height: 560px;
  max-height: 920px;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-h);
  padding-bottom: 64px;
  overflow: hidden;
  background: var(--ink);
}
.lhero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 68% 22%, rgba(217,164,65,0.5) 0%, transparent 58%),
    radial-gradient(ellipse at 22% 78%, rgba(201,79,109,0.42) 0%, transparent 60%),
    linear-gradient(135deg, #5a0e28 0%, #3a0a1d 55%, #220611 100%);
}
.lhero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 11px);
  mix-blend-mode: overlay;
}
.lhero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.06) 0.5px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.04) 0.5px, transparent 1px);
  background-size: 6px 6px, 9px 9px;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.lhero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(18,3,8,0.6) 0%, rgba(18,3,8,0.16) 14%, rgba(18,3,8,0) 26%),
    linear-gradient(0deg, rgba(18,3,8,0.9) 0%, rgba(18,3,8,0.55) 28%, rgba(18,3,8,0.1) 56%, rgba(18,3,8,0) 74%),
    linear-gradient(75deg, rgba(18,3,8,0.72) 0%, rgba(18,3,8,0.28) 36%, rgba(18,3,8,0) 64%);
}
.lhero__inner {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 40px;
}
.lhero__content { max-width: 760px; color: #fff; }
.lhero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.lhero__eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.lhero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: #fff;
  margin: 0 0 22px;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,0,0,0.45);
}
.lhero__title em { font-style: italic; font-weight: 500; color: var(--gold-soft); }
.lhero__sub {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin: 0 0 26px;
  max-width: 600px;
  text-wrap: pretty;
  text-shadow: 0 1px 16px rgba(0,0,0,0.4);
}
.lhero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.lbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
}
.lbadge svg { color: var(--gold); flex-shrink: 0; }
.lbadge strong { font-weight: 600; }
.lhero__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 22px; }
.lhero__price {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ─────────────────────────────────────────────────────────────
   Shared section scaffolding
   ───────────────────────────────────────────────────────────── */
.lsection { position: relative; padding: 104px 0; background: var(--cream); overflow: hidden; }
.lsection--warm { background: var(--cream-warm); }
.lsection__head { max-width: 760px; margin: 0 auto 48px; text-align: center; padding: 0 24px; }
.lsection__head .eyebrow { justify-content: center; margin-bottom: 16px; }
.lsection__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 50px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.lsection__title em { font-style: italic; font-weight: 500; color: var(--maroon); }

/* ─────────────────────────────────────────────────────────────
   BLOCK 2 — INTRO ("Why a song") — animated bg + visual beats
   ───────────────────────────────────────────────────────────── */
.lintro__orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.lintro__orbs span { position: absolute; border-radius: 50%; filter: blur(80px); }
.lintro__orbs span:nth-child(1) {
  width: 460px; height: 460px; top: 60px; left: 30px;
  background: radial-gradient(circle, rgba(217,164,65,0.30), transparent 52%);
  animation: lintro-drift 19s ease-in-out infinite;
}
.lintro__orbs span:nth-child(2) {
  width: 420px; height: 420px; bottom: 60px; right: 30px;
  background: radial-gradient(circle, rgba(201,79,109,0.24), transparent 52%);
  animation: lintro-drift 24s ease-in-out infinite reverse;
}
.lintro__orbs span:nth-child(3) {
  width: 340px; height: 340px; top: 38%; left: 50%;
  background: radial-gradient(circle, rgba(230,122,43,0.18), transparent 52%);
  animation: lintro-drift2 28s ease-in-out infinite;
}
@keyframes lintro-drift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(44px,-32px); } }
@keyframes lintro-drift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-52px,42px); } }
@media (prefers-reduced-motion: reduce) { .lintro__orbs span { animation: none; } }

.lintro__inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; padding: 0 32px; }
.lintro .eyebrow { justify-content: center; display: flex; }
.lintro__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 16px 0 48px;
  text-wrap: balance;
}
.lintro__title em { font-style: italic; font-weight: 500; color: var(--maroon); }

.lintro__beats { list-style: none; margin: 0 auto; padding: 0; max-width: 660px; position: relative; }
.lintro__beats::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(180deg, rgba(217,164,65,0.55), rgba(201,79,109,0.3));
  border-radius: 2px;
}
.lintro__beat { display: flex; gap: 22px; align-items: flex-start; padding: 10px 0; position: relative; }
.lintro__node {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  box-shadow: 0 12px 24px -12px rgba(107,18,49,0.6);
  position: relative;
  z-index: 1;
}
.lintro__node svg { width: 24px; height: 24px; }
.lintro__beat-body { padding-top: 5px; }
.lintro__beat-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 6px;
}
.lintro__beat-text { font-size: 17px; line-height: 1.65; color: var(--ink-soft); margin: 0; text-wrap: pretty; }
.lintro__beat-text em { font-style: italic; font-weight: 500; color: var(--maroon); }
.lintro__beat-text strong { color: var(--maroon); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────
   BLOCK 3 — WHO IS IT FOR (interactive recipient picker)
   ───────────────────────────────────────────────────────────── */
.lwho__inner { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.lwho__tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 34px 14px 18px;
  scroll-padding-left: 18px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 14px, #000 calc(100% - 30px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 14px, #000 calc(100% - 30px), transparent 100%);
}
.lwho__tabs::-webkit-scrollbar { display: none; }
.lwho__tab {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(107,18,49,0.14);
  background: #fff;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.lwho__tab-ic { display: inline-flex; color: var(--maroon); }
.lwho__tab-ic svg { width: 18px; height: 18px; }
.lwho__tab:hover { border-color: var(--saffron); }
.lwho__tab.is-active {
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 24px -12px rgba(107,18,49,0.6);
}
.lwho__tab.is-active .lwho__tab-ic { color: #fff; }

.lwho__panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 20px;
  padding: 38px 40px;
  background: #fff;
  border: 1px solid rgba(107,18,49,0.09);
  border-radius: 26px;
  box-shadow: 0 26px 54px -32px rgba(74,8,32,0.5);
  animation: lwho-fade 0.45s ease;
}
@keyframes lwho-fade { from { transform: translateY(12px); } to { transform: none; } }
@media (prefers-reduced-motion: reduce) { .lwho__panel { animation: none; } }

.lwho__panel-art {
  position: relative;
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lwho__panel-ic {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  box-shadow: 0 18px 34px -14px rgba(107,18,49,0.6);
}
.lwho__panel-ic svg { width: 40px; height: 40px; }
.lwho__panel-ring {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  border: 1px dashed rgba(217,164,65,0.5);
  animation: lwho-spin 26s linear infinite;
}
.lwho__panel-ring--2 { inset: 0; border-color: rgba(201,79,109,0.25); animation-duration: 40s; animation-direction: reverse; }
@keyframes lwho-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .lwho__panel-ring { animation: none; } }

.lwho__panel-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--saffron);
}
.lwho__panel-name {
  font-family: var(--font-display);
  font-size: clamp(23px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.12;
  color: var(--ink);
  margin: 8px 0 14px;
  letter-spacing: -0.01em;
}
.lwho__panel-desc { font-size: 16px; line-height: 1.65; color: var(--ink-soft); margin: 0 0 24px; text-wrap: pretty; }
.lwho__panel-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.lwho__panel-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--saffron); }
.lwho__panel-link svg { transition: transform 0.18s ease; }
.lwho__panel-link:hover svg { transform: translateX(3px); }

/* ─────────────────────────────────────────────────────────────
   BLOCK 4 — FOR EVERY MOMENT
   ───────────────────────────────────────────────────────────── */
.lmoments__inner { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.lmoments__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lmoment {
  position: relative;
  padding: 30px 26px 28px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255,255,255,0.92), rgba(253,241,222,0.7));
  border: 1px solid rgba(107,18,49,0.1);
  overflow: hidden;
}
.lmoment__tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
}
.lmoment__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--maroon);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.lmoment__desc { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin: 0; text-wrap: pretty; }
.lmoment__num {
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 40px;
  color: rgba(107,18,49,0.08);
  line-height: 1;
}

/* ─────────────────────────────────────────────────────────────
   BLOCK 6 — WHY SINGDIA (5 reasons)
   ───────────────────────────────────────────────────────────── */
.lwhy__inner { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.lwhy__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.lwhy__item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 22px;
  background: #fff;
  border: 1px solid rgba(107,18,49,0.09);
  border-radius: 20px;
  box-shadow: 0 12px 26px -22px rgba(74,8,32,0.35);
}
.lwhy__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  box-shadow: 0 8px 18px -10px rgba(107,18,49,0.6);
}
.lwhy__h { font-family: var(--font-display); font-size: 18px; font-weight: 500; line-height: 1.2; color: var(--ink); margin: 0; letter-spacing: -0.01em; }
.lwhy__p { font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); margin: 0; text-wrap: pretty; }

/* ─────────────────────────────────────────────────────────────
   BLOCK 7 — EXAMPLES (player placeholders, brand-styled)
   ───────────────────────────────────────────────────────────── */
.lex__inner { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.lex__note {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: -28px 0 36px;
}
.lex__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.lplayer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid rgba(107,18,49,0.1);
  border-radius: 20px;
  box-shadow: 0 14px 30px -24px rgba(74,8,32,0.4);
}
.lplayer__btn {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  box-shadow: 0 10px 22px -10px rgba(107,18,49,0.6);
  cursor: not-allowed;
}
.lplayer__btn svg { margin-left: 2px; }
.lplayer__body { flex: 1; min-width: 0; }
.lplayer__head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.lplayer__title {
  flex: 1;
  min-width: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.lplayer__sub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 12px;
}
.lplayer__wave { display: flex; align-items: center; gap: 3px; height: 28px; }
.lplayer__wave span {
  flex: 1;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(217,164,65,0.55), rgba(201,79,109,0.4));
  opacity: 0.5;
}
.lplayer__chip {
  flex-shrink: 0;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
  padding: 4px 9px;
  border: 1px solid rgba(217,164,65,0.4);
  border-radius: 999px;
  background: rgba(217,164,65,0.08);
}

/* ─────────────────────────────────────────────────────────────
   Related pages (internal linking strip) — full-bleed + scroll
   ───────────────────────────────────────────────────────────── */
.lrelated { background: var(--cream-warm); padding: 36px 0 60px; }
.lrelated__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.lrelated__label {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.lrelated__list {
  display: flex;
  gap: 10px;
  min-width: 0;
  list-style: none;
  margin: 0;
  padding: 4px 34px 4px 18px;
  scroll-padding-left: 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 14px, #000 calc(100% - 30px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 14px, #000 calc(100% - 30px), transparent 100%);
}
.lrelated__list::-webkit-scrollbar { display: none; }
.lrelated__list li { flex: 0 0 auto; scroll-snap-align: start; }
.lrelated__list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(107,18,49,0.12);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--maroon);
  white-space: nowrap;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.lrelated__list a:hover { border-color: var(--saffron); transform: translateY(-2px); }
.lrelated__ic { display: inline-flex; color: var(--saffron); }
.lrelated__ic svg { width: 16px; height: 16px; }
.lrelated__list a > svg { color: var(--saffron); }

/* ============================================================
   TABLET
   ============================================================ */
@media (max-width: 920px) {
  .lmoments__grid { grid-template-columns: repeat(2, 1fr); }
  .lwhy__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   MOBILE (primary target — ~90% of traffic)
   ============================================================ */
@media (max-width: 768px) {
  .lhero {
    height: auto;
    min-height: 88vh;
    max-height: none;
    padding-top: var(--header-h-mobile);
    padding-bottom: 36px;
  }
  .lhero__inner { padding: 0 18px; }
  .lhero__content { max-width: 100%; }
  .lhero__title { font-size: clamp(29px, 8.5vw, 40px); }
  .lhero__sub { font-size: 15px; }
  .lhero__badges { gap: 8px; margin-bottom: 24px; }
  .lbadge { padding: 8px 13px; font-size: 12.5px; }
  .lhero__actions { gap: 14px; }
  .lhero__actions .btn { width: 100%; }

  .lsection { padding: 60px 0; }
  .lsection__head { margin-bottom: 32px; padding: 0 18px; }

  /* Intro */
  .lintro__inner { padding: 0 18px; }
  .lintro__title { margin: 14px 0 32px; }
  .lintro__orbs span:nth-child(1) { width: 280px; height: 280px; top: 30px; left: 10px; }
  .lintro__orbs span:nth-child(2) { width: 250px; height: 250px; bottom: 30px; right: 10px; }
  .lintro__orbs span:nth-child(3) { width: 210px; height: 210px; }
  .lintro__beats::before { left: 22px; top: 34px; bottom: 34px; }
  .lintro__beat { gap: 16px; padding: 9px 0; }
  .lintro__node { width: 46px; height: 46px; }
  .lintro__node svg { width: 20px; height: 20px; }
  .lintro__beat-text { font-size: 15.5px; line-height: 1.6; }

  /* Who picker */
  .lwho__inner { padding: 0 18px; }
  .lwho__tabs { padding: 4px 34px 12px 18px; margin: 0 -18px; }
  .lwho__panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 22px;
    margin-top: 16px;
    text-align: center;
  }
  .lwho__panel-art { width: 110px; height: 110px; margin: 0 auto; }
  .lwho__panel-ic { width: 64px; height: 64px; border-radius: 20px; }
  .lwho__panel-ic svg { width: 32px; height: 32px; }
  .lwho__panel-desc { font-size: 15px; }
  .lwho__panel-actions { justify-content: center; gap: 14px; }
  .lwho__panel-actions .btn { width: 100%; }

  /* Moments */
  .lmoments__inner { padding: 0 18px; }
  .lmoments__grid { grid-template-columns: 1fr; gap: 12px; }
  .lmoment { padding: 24px 22px; }
  .lmoment__name { font-size: 22px; }

  /* Why */
  .lwhy__inner { padding: 0 18px; }
  .lwhy__grid { grid-template-columns: 1fr; gap: 12px; }
  .lwhy__item { flex-direction: row; align-items: flex-start; gap: 16px; padding: 20px 20px; }
  .lwhy__icon { flex-shrink: 0; }
  .lwhy__h { font-size: 17px; }
  .lwhy__p { font-size: 14px; }

  /* Examples */
  .lex__inner { padding: 0 18px; }
  .lex__grid { grid-template-columns: 1fr; }
  .lex__note { margin-top: -18px; }
  .lplayer__head { flex-wrap: wrap; gap: 6px 10px; }
  .lplayer__title { font-size: 16.5px; flex-basis: 100%; }

  /* Related */
  .lrelated { padding: 28px 0 48px; }
  .lrelated__inner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 0; }
  .lrelated__label { padding: 0 18px; }
  .lrelated__list { width: 100%; padding: 4px 34px 4px 18px; scroll-snap-type: x mandatory; }
}

/* ============================================================
   Content-driven additions: hero video + live example players
   ============================================================ */
.lhero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lplayer__time {
  flex-shrink: 0;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
}
.lplayer__wave span { transition: opacity 0.18s ease; }
.lplayer__wave span.is-lit { opacity: 1; }
.lplayer.is-playing .lplayer__btn {
  background: linear-gradient(135deg, var(--maroon), var(--saffron));
}
