/* LiteModPlay app â€” simple promo + download gate */

:root {
  --lmp-teal: #2ec4a6;
  --lmp-deep: #0f766e;
  --lmp-ink: #0b1220;
  --lmp-muted: #64748b;
  --lmp-sticky-h: 54px;
}

.lmp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: .92rem;
  text-decoration: none;
  border: 0;
  box-sizing: border-box;
}
.lmp-btn--lg { min-height: 52px; padding: 0 22px; font-size: 1rem; }
.lmp-btn--primary {
  background: linear-gradient(135deg, var(--lmp-teal), var(--lmp-deep));
  color: #fff;
  box-shadow: 0 10px 22px rgba(15, 118, 110, .25);
}
.lmp-btn--ghost {
  background: rgba(15, 23, 42, .06);
  color: var(--lmp-ink);
  border: 1px solid rgba(15, 23, 42, .1);
}
.lmp-btn.is-waiting { opacity: .55; pointer-events: none; }
.lmp-btn__ico { display: inline-flex; }

/* App promo strip â€” scrolls with the page (not fixed/sticky) */
.lmp-sticky {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #071018, #0b1f24 50%, #134e4a);
  border-bottom: 1px solid rgba(46, 196, 166, .35);
}
.lmp-sticky__inner {
  max-width: 1100px;
  margin: 0 auto;
  min-height: var(--lmp-sticky-h);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lmp-sticky__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
  color: #fff;
  text-decoration: none;
}
.lmp-sticky__brand .lmp-mark { border-radius: 10px; flex-shrink: 0; }
.lmp-sticky__text { min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.lmp-sticky__text strong { font-size: .92rem; font-weight: 900; }
.lmp-sticky__text em {
  font-style: normal;
  font-size: .7rem;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(48vw, 380px);
}
.lmp-sticky__actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.lmp-sticky__dl {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--lmp-teal);
  color: #06201c;
  font-weight: 900;
  font-size: .78rem;
  text-decoration: none;
  white-space: nowrap;
}

/* Card */
.lmp-card {
  margin: 12px 0 16px;
  border-radius: 18px;
  border: 1px solid rgba(15, 118, 110, .2);
  background: linear-gradient(160deg, #fff, #f0fdfa);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}
.lmp-card__main { padding: 16px; display: flex; flex-direction: column; gap: 14px; }
.lmp-card__head { display: flex; align-items: center; gap: 12px; }
.lmp-card__head .lmp-mark { border-radius: 14px; flex-shrink: 0; box-shadow: 0 8px 18px rgba(15,118,110,.25); }
.lmp-card__kicker { font-size: .68rem; font-weight: 800; color: var(--lmp-deep); letter-spacing: .04em; text-transform: uppercase; }
.lmp-card__title { display: block; margin-top: 2px; font-size: 1.2rem; font-weight: 900; color: var(--lmp-ink); }
.lmp-card__sub { margin: 4px 0 0; font-size: .84rem; line-height: 1.4; color: var(--lmp-muted); font-weight: 600; }
.lmp-card__icons {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px;
}
.lmp-card__icons li {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 10px 6px; border-radius: 12px; text-align: center;
  background: rgba(15,118,110,.07); font-size: .68rem; font-weight: 800; color: var(--lmp-deep);
}
.lmp-card__ico {
  display: inline-flex; width: 32px; height: 32px; align-items: center; justify-content: center;
  border-radius: 10px; background: linear-gradient(135deg, var(--lmp-teal), var(--lmp-deep)); color: #fff;
}
.lmp-card__cta { display: flex; flex-wrap: wrap; gap: 8px; }
.lmp-card__cta .lmp-btn { flex: 1 1 140px; }

html.site-dark .lmp-card,
html[data-apk-theme-dark] .lmp-card { background: linear-gradient(160deg, #151c2c, #0f1f24); border-color: rgba(46,196,166,.25); }
html.site-dark .lmp-card__title,
html[data-apk-theme-dark] .lmp-card__title { color: #f8fafc; }
html.site-dark .lmp-card__sub,
html[data-apk-theme-dark] .lmp-card__sub { color: #94a3b8; }
html.site-dark .lmp-btn--ghost,
html[data-apk-theme-dark] .lmp-btn--ghost {
  background: rgba(255,255,255,.06); color: #e2e8f0; border-color: rgba(255,255,255,.12);
}

/* Full article-width landing */
body.lmp-app-page #app-main {
  max-width: none !important;
  padding-inline: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.lmp-article {
  --lmp-max: var(--apk-shell-max, 1120px);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 48px;
  color: var(--lmp-ink);
  box-sizing: border-box;
}

.lmp-hero-wide {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(46,196,166,.28), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 20%, rgba(15,118,110,.35), transparent 50%),
    linear-gradient(160deg, #061018 0%, #0b1a22 45%, #0f2f2c 100%);
  color: #fff;
  padding: 28px 16px 36px;
  margin-bottom: 8px;
}
.lmp-hero-wide__inner {
  max-width: var(--lmp-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
}
.lmp-hero-wide__kicker {
  margin: 0 0 8px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lmp-teal);
}
.lmp-hero-wide__title {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.1;
}
.lmp-hero-wide__lead {
  margin: 12px 0 16px;
  max-width: 42ch;
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
  font-weight: 600;
}
.lmp-hero-wide__chips {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lmp-hero-wide__chips li {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  font-size: .75rem;
  font-weight: 800;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.06);
}
.lmp-hero-wide__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.lmp-hero-wide__cta .lmp-btn--ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.2);
}
.lmp-hero-wide__meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px;
  margin: 0;
}
.lmp-hero-wide__meta div {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}
.lmp-hero-wide__meta dt {
  margin: 0;
  font-size: .65rem;
  font-weight: 800;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.lmp-hero-wide__meta dd {
  margin: 4px 0 0;
  font-size: .85rem;
  font-weight: 900;
  color: #fff;
}
.lmp-hero-wide__phone {
  margin: 0;
  justify-self: center;
  width: min(100%, 300px);
  filter: drop-shadow(0 28px 48px rgba(0,0,0,.45));
}
.lmp-hero-wide__phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  border: 1px solid rgba(46,196,166,.35);
}

.lmp-trust,
.lmp-feats-grid,
.lmp-stories,
.lmp-mosaic,
.lmp-cta-band,
.lmp-help--wide {
  max-width: var(--lmp-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: max(14px, env(safe-area-inset-left));
  padding-right: max(14px, env(safe-area-inset-right));
  box-sizing: border-box;
}

.lmp-trust { margin-top: 18px; margin-bottom: 10px; }
.lmp-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.lmp-trust__item {
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15,118,110,.14);
  box-shadow: 0 8px 24px rgba(15,23,42,.04);
}
.lmp-trust__item strong {
  display: block;
  font-size: .95rem;
  font-weight: 900;
  color: var(--lmp-deep);
  margin-bottom: 6px;
}
.lmp-trust__item p {
  margin: 0;
  font-size: .82rem;
  line-height: 1.45;
  color: var(--lmp-muted);
  font-weight: 600;
}

.lmp-sec-head { text-align: center; margin: 28px 0 18px; }
.lmp-sec-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--lmp-ink);
}
.lmp-sec-head p {
  margin: 8px auto 0;
  max-width: 46ch;
  font-size: .95rem;
  line-height: 1.5;
  color: var(--lmp-muted);
  font-weight: 600;
}

.lmp-feats-grid__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
  margin-bottom: 12px;
}
.lmp-feats-grid__card {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(165deg, #fff, #f0fdfa);
  border: 1px solid rgba(15,118,110,.16);
}
.lmp-feats-grid__ico {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 12px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--lmp-teal), var(--lmp-deep));
  color: #fff;
}
.lmp-feats-grid__card strong {
  display: block;
  font-size: .95rem;
  font-weight: 900;
  color: var(--lmp-ink);
}
.lmp-feats-grid__card span {
  display: block;
  margin-top: 4px;
  font-size: .8rem;
  line-height: 1.4;
  color: var(--lmp-muted);
  font-weight: 600;
}

.lmp-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.lmp-story--reverse .lmp-story__text { order: 2; }
.lmp-story--reverse .lmp-story__media { order: 1; }
.lmp-story__eyebrow {
  margin: 0 0 6px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--lmp-deep);
}
.lmp-story__text h2 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.25;
  color: var(--lmp-ink);
}
.lmp-story__body {
  margin: 0 0 14px;
  font-size: .98rem;
  line-height: 1.65;
  color: #334155;
  font-weight: 600;
}
.lmp-story__bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lmp-story__bullets li {
  position: relative;
  padding-inline-start: 22px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--lmp-ink);
  line-height: 1.4;
}
.lmp-story__bullets li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: .45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lmp-teal), var(--lmp-deep));
}
.lmp-story__media {
  margin: 0;
  justify-self: center;
  width: min(100%, 320px);
}
.lmp-story__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  border: 1px solid rgba(15,118,110,.2);
  box-shadow: 0 22px 48px rgba(15,23,42,.12);
}

.lmp-mosaic { margin-top: 8px; margin-bottom: 8px; }
.lmp-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.lmp-mosaic__item { margin: 0; text-align: center; }
.lmp-mosaic__item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 1px solid rgba(15,118,110,.18);
  box-shadow: 0 14px 32px rgba(15,23,42,.08);
}
.lmp-mosaic__item figcaption {
  margin-top: 8px;
  font-size: .8rem;
  font-weight: 800;
  color: var(--lmp-muted);
}

.lmp-cta-band { margin: 28px auto; }
.lmp-cta-band__box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, #071018, #0f2f2c);
  color: #fff;
  border: 1px solid rgba(46,196,166,.3);
}
.lmp-cta-band__box .lmp-mark { border-radius: 16px; flex-shrink: 0; }
.lmp-cta-band__text { flex: 1 1 200px; min-width: 0; }
.lmp-cta-band__text strong { display: block; font-size: 1.15rem; font-weight: 900; }
.lmp-cta-band__text span { display: block; margin-top: 4px; font-size: .88rem; color: rgba(255,255,255,.68); font-weight: 600; }

.lmp-help--wide { margin-top: 8px; }
.lmp-help__title {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--lmp-ink);
}
.lmp-help__list { display: flex; flex-direction: column; gap: 8px; }
.lmp-help__item {
  border-radius: 14px;
  border: 1px solid #e8edf3;
  background: #fff;
  padding: 0 14px;
}
.lmp-help__item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
  font-weight: 800;
  color: var(--lmp-ink);
}
.lmp-help__item summary::-webkit-details-marker { display: none; }
.lmp-help__item p {
  margin: 0 0 14px;
  font-size: .88rem;
  line-height: 1.5;
  color: var(--lmp-muted);
  font-weight: 600;
}

html.site-dark .lmp-trust__item,
html[data-apk-theme-dark] .lmp-trust__item,
html.site-dark .lmp-feats-grid__card,
html[data-apk-theme-dark] .lmp-feats-grid__card,
html.site-dark .lmp-help__item,
html[data-apk-theme-dark] .lmp-help__item {
  background: #151c2c;
  border-color: rgba(46,196,166,.22);
}
html.site-dark .lmp-sec-head h2,
html[data-apk-theme-dark] .lmp-sec-head h2,
html.site-dark .lmp-story__text h2,
html[data-apk-theme-dark] .lmp-story__text h2,
html.site-dark .lmp-feats-grid__card strong,
html[data-apk-theme-dark] .lmp-feats-grid__card strong,
html.site-dark .lmp-help__title,
html[data-apk-theme-dark] .lmp-help__title,
html.site-dark .lmp-help__item summary,
html[data-apk-theme-dark] .lmp-help__item summary,
html.site-dark .lmp-story__bullets li,
html[data-apk-theme-dark] .lmp-story__bullets li { color: #f8fafc; }
html.site-dark .lmp-story__body,
html[data-apk-theme-dark] .lmp-story__body { color: #cbd5e1; }

@media (max-width: 960px) {
  .lmp-hero-wide__inner { grid-template-columns: 1fr; text-align: center; }
  .lmp-hero-wide__lead { margin-inline: auto; }
  .lmp-hero-wide__chips,
  .lmp-hero-wide__cta { justify-content: center; }
  .lmp-hero-wide__meta { grid-template-columns: repeat(2, minmax(0,1fr)); text-align: start; }
  .lmp-hero-wide__phone { width: min(100%, 260px); }
  .lmp-trust__grid,
  .lmp-feats-grid__list { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .lmp-story { grid-template-columns: 1fr; gap: 18px; }
  .lmp-story--reverse .lmp-story__text,
  .lmp-story--reverse .lmp-story__media { order: unset; }
  .lmp-story__media { width: min(100%, 280px); }
  .lmp-mosaic__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px) {
  .lmp-sticky__text em { display: none; }
  .lmp-trust__grid,
  .lmp-feats-grid__list { grid-template-columns: 1fr; }
  .lmp-hero-wide__meta { grid-template-columns: 1fr 1fr; }
  .lmp-cta-band__box { justify-content: center; text-align: center; }
  .lmp-card__icons { grid-template-columns: 1fr; }
}
