.stck-lpl {
  --lpl-bg: #ffffff;
  --lpl-surface: #f5f5f7;
  --lpl-card: #ffffff;
  --lpl-ink: #1d1d1f;
  --lpl-ink-2: #6e6e73;
  --lpl-line: #ececec;
  --lpl-accent: #4d6eff;
  --lpl-accent-press: #3f5ce6;
  --lpl-yellow: #ffc900;
  --lpl-yellow-hover: #f0b800;
  --lpl-green: #1d8a3f;
  --lpl-violet: #8b5cf6;
  --lpl-blue: #4d6eff;
  --lpl-teal: #0aa4a4;
  --lpl-radius: 18px;
  --lpl-radius-sm: 10px;
  --lpl-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  --lpl-shadow-lift: 0 8px 28px rgba(0, 0, 0, 0.1);
  --lpl-pad: clamp(20px, 5vw, 48px);
  --lpl-max: 980px;
  --lpl-max-wide: 1120px;
  --lpl-cards: 3;
  --lpl-gap: 20px;
  --lpl-card-w: calc((min(100vw, var(--lpl-max-wide)) - var(--lpl-pad) - var(--lpl-cards) * var(--lpl-gap)) / var(--lpl-cards));
}

:where(.stck-lpl) * {
  box-sizing: border-box;
}
:where(.stck-lpl) *,
:where(.stck-lpl) *::before,
:where(.stck-lpl) *::after {
  margin: 0;
  padding: 0;
}

.stck-lpl {
  margin: 0;
  background: var(--lpl-bg);
  color: var(--lpl-ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.stck-lpl :where(a) {
  color: inherit;
  text-decoration: none;
}
.stck-lpl :where(ul, ol) {
  list-style: none;
}
.stck-lpl :where(img, svg) {
  display: block;
  max-width: 100%;
}
.stck-lpl :where(button) {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.lpl-section-heading {
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.lpl-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lpl-accent);
  margin-bottom: 10px;
}

.lpl-textlink {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--lpl-accent);
  font-size: 17px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.lpl-textlink svg {
  width: 16px;
  height: 16px;
}
.lpl-textlink:hover {
  opacity: 0.7;
}

.lpl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.lpl-btn--lg {
  padding: 16px 34px;
  font-size: 17px;
}
.lpl-btn--primary {
  background: var(--lpl-yellow);
  color: var(--lpl-ink);
}
.lpl-btn--primary:hover {
  background: var(--lpl-yellow-hover);
}
.lpl-btn--ghost {
  background: transparent;
  color: var(--lpl-accent);
  box-shadow: inset 0 0 0 1.5px var(--lpl-accent);
}
.lpl-btn--ghost:hover {
  background: rgba(77, 110, 255, 0.08);
}

.lpl-announcement {
  background: var(--lpl-surface);
  border-bottom: 1px solid var(--lpl-line);
}
.lpl-announcement__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: var(--lpl-max-wide);
  margin: 0 auto;
  padding: 10px var(--lpl-pad);
  font-size: 14px;
  color: var(--lpl-ink-2);
  transition: color 0.2s ease;
}
.lpl-announcement__link strong {
  color: var(--lpl-ink);
  font-weight: 600;
}
.lpl-announcement__link:hover {
  color: var(--lpl-ink);
}
.lpl-announcement__link:hover .lpl-announcement__chevron {
  transform: translateX(2px);
}
.lpl-announcement__badge {
  flex: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--lpl-accent);
  border-radius: 999px;
  padding: 3px 9px;
}
.lpl-announcement__chevron {
  flex: none;
  transition: transform 0.2s ease;
}
.lpl-announcement span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lpl-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--lpl-line);
}
.lpl-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--lpl-max-wide);
  margin: 0 auto;
  min-height: 57px;
  padding: 0 var(--lpl-pad);
}

.lpl-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.lpl-brand .lpl-brand-mark {
  width: 28px;
  height: 28px;
}

.lpl-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lpl-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  color: var(--lpl-ink);
  transition: background 0.2s ease, color 0.2s ease;
}
.lpl-nav-btn--icon {
  padding: 9px;
  color: var(--lpl-ink-2);
}
.lpl-nav-btn--icon svg {
  width: 19px;
  height: 19px;
}
.lpl-nav-btn--icon:hover {
  color: var(--lpl-ink);
  background: var(--lpl-surface);
}
.lpl-nav-btn--signin:hover {
  background: var(--lpl-surface);
}
.lpl-nav-btn--primary {
  background: var(--lpl-yellow);
  color: var(--lpl-ink);
}
.lpl-nav-btn--primary:hover {
  background: var(--lpl-yellow-hover);
}

.lpl-hero {
  text-align: center;
  padding: clamp(28px, 8vw, 38px) var(--lpl-pad) clamp(28px, 6vw, 64px);
  max-width: var(--lpl-max);
  margin: 0 auto;
}
.lpl-hero__eyebrow {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.lpl-hero__heading {
  font-size: clamp(46px, 8vw, 88px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.lpl-hero__media {
  margin: clamp(28px, 5vw, 36px) auto 18px;
  max-width: 860px;
}
.lpl-hero__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  border-radius: var(--lpl-radius);
  background: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.018) 0 18px, transparent 18px 36px), var(--lpl-surface);
  color: var(--lpl-ink-2);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lpl-hero__subheading {
  font-size: clamp(21px, 2.8vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 620px;
  margin: 0 auto;
}
.lpl-hero__sub {
  font-size: 17px;
  color: var(--lpl-ink-2);
  max-width: 560px;
  margin: 12px auto 0;
}
.lpl-hero__actions {
  margin-top: 26px;
}

.lpl-shelf {
  background: var(--lpl-surface);
  border-bottom: 1px solid var(--lpl-line);
  display: flex;
  justify-content: center;
}
.lpl-shelf__track {
  display: flex;
  align-items: flex-start;
  gap: clamp(8px, 2vw, 36px);
  max-width: 100%;
  padding: clamp(10px, 1.1vw, 12px) var(--lpl-pad);
  overflow-x: auto;
  scrollbar-width: none;
}
.lpl-shelf__track::-webkit-scrollbar {
  display: none;
}
.lpl-shelf__item {
  flex: 0 0 auto;
  position: relative;
}
.lpl-shelf__item > a, .lpl-shelf__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 4px 6px;
  color: var(--lpl-ink);
  text-align: center;
  transition: color 0.2s ease;
}
.lpl-shelf__item > a:hover, .lpl-shelf__btn:hover {
  color: var(--lpl-accent);
}
.lpl-shelf__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
}
.lpl-shelf__icon svg {
  width: 28px;
  height: 28px;
}
.lpl-shelf__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.lpl-shelf__new {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #c2410c;
}
.lpl-shelf__label {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.lpl-shelf__caret {
  width: 13px;
  height: 13px;
  transition: transform 0.2s ease;
}
.lpl-shelf__item--menu.is-open .lpl-shelf__caret {
  transform: rotate(180deg);
}
.lpl-shelf__menu {
  position: fixed;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 230px;
  padding: 8px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.16), 0 1px 3px rgba(0, 0, 0, 0.1);
  animation: lpl-shelf-pop 0.16s ease;
}
.lpl-shelf__menu[hidden] {
  display: none;
}
.lpl-shelf__menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 9px;
  color: var(--lpl-ink);
  transition: background 0.15s ease;
}
.lpl-shelf__menu-item svg {
  width: 22px;
  height: 22px;
  flex: none;
}
.lpl-shelf__menu-item span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.lpl-shelf__menu-item strong {
  font-size: 15px;
  font-weight: 600;
}
.lpl-shelf__menu-item small {
  font-size: 12px;
  color: var(--lpl-ink-2);
}
.lpl-shelf__menu-item:hover {
  background: var(--lpl-surface);
}

@keyframes lpl-shelf-pop {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
}
.lpl-highlights {
  max-width: var(--lpl-max-wide);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) var(--lpl-pad);
}
.lpl-highlights__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.lpl-highlights__viewport {
  overflow: hidden;
  border-radius: var(--lpl-radius);
  touch-action: pan-y;
}
.lpl-highlights__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lpl-highlight {
  flex: 0 0 100%;
  min-width: 0;
}
.lpl-highlight__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  background: var(--lpl-surface);
  border-radius: var(--lpl-radius);
  padding: clamp(28px, 4vw, 56px);
  min-height: 440px;
}
.lpl-highlight__title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.lpl-highlight__body {
  font-size: 16px;
  color: var(--lpl-ink-2);
  margin-top: 16px;
  max-width: 460px;
}
.lpl-highlight .lpl-how__actions,
.lpl-highlight .lpl-how__apps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  align-items: center;
}
.lpl-highlight .lpl-how__apps img {
  height: 44px;
  width: auto;
}
.lpl-highlight__media img {
  width: 100%;
  height: auto;
  border-radius: var(--lpl-radius-sm);
}

.lpl-highlights__controls {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.lpl-playpause {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--lpl-surface);
  color: var(--lpl-ink);
  transition: background 0.2s ease;
}
.lpl-playpause:hover {
  background: #ebebed;
}
.lpl-playpause svg {
  width: 18px;
  height: 18px;
}
.lpl-playpause__play {
  display: none;
}
.lpl-playpause.is-playing .lpl-playpause__pause {
  display: block;
}
.lpl-playpause.is-playing .lpl-playpause__play {
  display: none;
}
.lpl-playpause:not(.is-playing) .lpl-playpause__pause {
  display: none;
}
.lpl-playpause:not(.is-playing) .lpl-playpause__play {
  display: block;
}

.lpl-dots {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--lpl-surface);
  border-radius: 999px;
  padding: 10px 16px;
}

.lpl-dot {
  position: relative;
  overflow: hidden;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c7c7cc;
  transition: width 0.3s ease, background 0.3s ease;
}
.lpl-dot.is-active {
  width: 26px;
  background: rgba(0, 0, 0, 0.14);
}
.lpl-dot__fill {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--lpl-ink);
  transform: scaleX(0);
  transform-origin: left center;
}
.lpl-dot.is-active .lpl-dot__fill {
  animation: lpl-dot-progress 5s linear forwards;
}

.lpl-highlights:not(.is-playing) .lpl-dot.is-active .lpl-dot__fill,
.lpl-highlights.is-offscreen .lpl-dot.is-active .lpl-dot__fill {
  animation-play-state: paused;
}

@keyframes lpl-dot-progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .lpl-dot.is-active {
    background: var(--lpl-ink);
  }
  .lpl-dot.is-active .lpl-dot__fill {
    animation: none;
    transform: scaleX(0);
  }
}
.lpl-why {
  background: var(--lpl-surface);
  padding: clamp(48px, 7vw, 88px) 0;
}
.lpl-why__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  max-width: var(--lpl-max-wide);
  margin: 0 auto 32px;
  padding: 0 var(--lpl-pad);
}
.lpl-why__viewport {
  overflow: hidden;
}
.lpl-why__track {
  display: flex;
  gap: var(--lpl-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--lpl-pad);
  padding: 4px var(--lpl-pad) 8px;
  max-width: var(--lpl-max-wide);
  margin: 0 auto;
  scrollbar-width: none;
}
.lpl-why__track::-webkit-scrollbar {
  display: none;
}
.lpl-why__nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  max-width: var(--lpl-max-wide);
  margin: 20px auto 0;
  padding: 0 var(--lpl-pad);
}

.lpl-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #fff;
  color: var(--lpl-ink);
  box-shadow: var(--lpl-shadow);
  transition: opacity 0.2s ease, background 0.2s ease;
}
.lpl-arrow svg {
  width: 18px;
  height: 18px;
}
.lpl-arrow:hover {
  background: #fafafa;
}
.lpl-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.lpl-why-card {
  flex: 0 0 var(--lpl-card-w);
  width: var(--lpl-card-w);
  scroll-snap-align: start;
  position: relative;
  background: var(--lpl-card);
  border: 1px solid var(--lpl-line);
  border-radius: var(--lpl-radius);
  box-shadow: var(--lpl-shadow);
  padding: 28px 26px;
  min-height: 280px;
}
.lpl-why-card__icon {
  display: inline-flex;
  color: var(--lpl-ink);
}
.lpl-why-card__icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.7;
}
.lpl-why-card__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 22px;
}
.lpl-why-card__body {
  font-size: 15px;
  color: var(--lpl-ink-2);
  margin-top: 12px;
}

.lpl-stats {
  max-width: var(--lpl-max-wide);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) var(--lpl-pad);
}
.lpl-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lpl-stat-card {
  display: flex;
  flex-direction: column;
  background: var(--lpl-card);
  border-radius: var(--lpl-radius);
  box-shadow: var(--lpl-shadow);
  padding: 30px 28px;
  min-height: 200px;
}
.lpl-stat-card__icon {
  display: inline-flex;
}
.lpl-stat-card__icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
}
.lpl-stat-card__number {
  font-size: clamp(34px, 4.4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-top: auto;
}
.lpl-stat-card__label {
  font-size: 16px;
  font-weight: 500;
  color: var(--lpl-ink);
  margin-top: 6px;
}
.lpl-stat-card--violet .lpl-stat-card__icon,
.lpl-stat-card--violet .lpl-stat-card__number {
  color: var(--lpl-violet);
}
.lpl-stat-card--blue .lpl-stat-card__icon,
.lpl-stat-card--blue .lpl-stat-card__number {
  color: var(--lpl-blue);
}
.lpl-stat-card--teal .lpl-stat-card__icon,
.lpl-stat-card--teal .lpl-stat-card__number {
  color: var(--lpl-teal);
}

.lpl-discover {
  background: var(--lpl-surface);
  padding: clamp(48px, 7vw, 88px) 0;
}
.lpl-discover__head {
  max-width: var(--lpl-max-wide);
  margin: 0 auto clamp(20px, 3vw, 28px);
  padding: 0 var(--lpl-pad);
}
.lpl-discover__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--lpl-max-wide);
  margin: 0 auto 22px;
  padding: 0 var(--lpl-pad);
}
.lpl-discover__nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  max-width: var(--lpl-max-wide);
  margin: 20px auto 0;
  padding: 0 var(--lpl-pad);
}

.lpl-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 999px;
  overflow-x: auto;
  scrollbar-width: none;
}
.lpl-tabs::-webkit-scrollbar {
  display: none;
}

.lpl-tab {
  flex: none;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--lpl-ink-2);
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.lpl-tab:hover {
  color: var(--lpl-ink);
}
.lpl-tab.is-active {
  background: #fff;
  color: var(--lpl-ink);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.lpl-row {
  max-width: var(--lpl-max-wide);
  margin: 0 auto;
}
.lpl-row__nav {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lpl-row__nav .lpl-textlink {
  font-size: 15px;
}
.lpl-row__viewport {
  overflow: hidden;
}
.lpl-row__track {
  display: flex;
  gap: var(--lpl-gap);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding-inline: var(--lpl-pad);
  padding: 4px var(--lpl-pad) 8px;
  max-width: var(--lpl-max-wide);
  margin: 0 auto;
  scrollbar-width: none;
}
.lpl-row__track::-webkit-scrollbar {
  display: none;
}

.lpl-tile {
  scroll-snap-align: start;
  flex: 0 0 var(--lpl-card-w);
  width: var(--lpl-card-w);
  background: var(--lpl-card);
  border: 1px solid var(--lpl-line);
  border-radius: var(--lpl-radius);
  box-shadow: var(--lpl-shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lpl-tile a {
  display: block;
  color: inherit;
}
.lpl-tile__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: #e9e9ec;
}
.lpl-tile__media picture,
.lpl-tile__media img {
  display: block;
  width: 100%;
  height: 100%;
}
.lpl-tile__media--square img {
  object-fit: cover;
}
.lpl-tile__media--book {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lpl-surface);
}
.lpl-tile__media--book picture {
  width: auto;
  height: 88%;
  aspect-ratio: 2/3;
}
.lpl-tile__media--book img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.lpl-tile__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px 20px;
}
.lpl-tile__title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--lpl-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lpl-tile__sub {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--lpl-ink-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lpl-tile__price {
  flex: none;
  margin-left: auto;
  font-weight: 700;
  color: var(--lpl-green);
}
.lpl-tile:hover {
  transform: translateY(-4px);
}

.lpl-skel {
  position: relative;
  overflow: hidden;
  background: #e7e7ea;
}
.lpl-skel::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: lpl-shimmer 1.4s infinite;
}
.lpl-skel--line {
  height: 11px;
  border-radius: 6px;
}
.lpl-skel--short {
  width: 60%;
}

.lpl-tile.is-skeleton {
  pointer-events: none;
}
.lpl-tile.is-skeleton:hover {
  transform: none;
  box-shadow: var(--lpl-shadow);
}

@keyframes lpl-shimmer {
  100% {
    transform: translateX(100%);
  }
}
.lpl-faq {
  max-width: var(--lpl-max-wide);
  margin: 0 auto clamp(20px, 3vw, 28px);
  padding: clamp(40px, 6vw, 72px) var(--lpl-pad) clamp(56px, 8vw, 96px);
}
.lpl-faq__head {
  margin-bottom: 28px;
}
.lpl-faq__list {
  border-top: 1px solid var(--lpl-line);
}
.lpl-faq__item {
  border-bottom: 1px solid var(--lpl-line);
}
.lpl-faq__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  padding: 22px 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--lpl-ink);
  transition: color 0.2s ease;
}
.lpl-faq__header:hover {
  color: var(--lpl-accent);
}
.lpl-faq__icon {
  position: relative;
  flex: none;
  width: 18px;
  height: 18px;
}
.lpl-faq__icon::before, .lpl-faq__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease;
}
.lpl-faq__icon::before {
  inset: 8px 0;
  height: 2px;
}
.lpl-faq__icon::after {
  inset: 0 8px;
  width: 2px;
}
.lpl-faq__item.is-open .lpl-faq__icon::after {
  transform: scaleY(0);
}
.lpl-faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.lpl-faq__body > p {
  overflow: hidden;
  font-size: 16px;
  color: var(--lpl-ink-2);
  max-width: 640px;
}
.lpl-faq__item.is-open .lpl-faq__body {
  grid-template-rows: 1fr;
  padding-bottom: 22px;
}

.lpl-footer {
  background: var(--lpl-surface);
  border-top: 1px solid var(--lpl-line);
}
.lpl-footer__primary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--lpl-max-wide);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) var(--lpl-pad);
}
.lpl-footer__col h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lpl-ink-2);
  margin-bottom: 14px;
}
.lpl-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lpl-footer__col a {
  font-size: 15px;
  color: var(--lpl-ink);
  transition: color 0.2s ease;
}
.lpl-footer__col a:hover {
  color: var(--lpl-accent);
}
.lpl-footer__secondary {
  border-top: 1px solid var(--lpl-line);
}
.lpl-footer__secondary-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: var(--lpl-max-wide);
  margin: 0 auto;
  padding: 22px var(--lpl-pad);
}
.lpl-footer__legal {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.lpl-footer__legal .lpl-foot-mark {
  width: 26px;
  height: 26px;
}
.lpl-footer__legal ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.lpl-footer__legal a {
  font-size: 13px;
  color: var(--lpl-ink-2);
  transition: color 0.2s ease;
}
.lpl-footer__legal a:hover {
  color: var(--lpl-ink);
}
.lpl-footer__social {
  display: flex;
  gap: 8px;
}
.lpl-footer__social a {
  display: block;
  border-radius: 999px;
  transition: transform 0.2s ease;
}
.lpl-footer__social a:hover {
  transform: translateY(-2px);
}
.lpl-footer__social rect {
  fill: #ffffff !important;
}
.lpl-footer__social svg {
  box-shadow: var(--lpl-shadow);
  border-radius: 999px;
}

.stck-lpl .show-when-signed-in {
  display: none;
}
.stck-lpl.signed-in .hide-when-signed-in {
  display: none;
}
.stck-lpl.signed-in .show-when-signed-in {
  display: inline-flex;
}

@media (min-width: 901px) {
  .stck-lpl {
    --lpl-card-w: calc(
    	(min(100vw, var(--lpl-max-wide)) - 2 * var(--lpl-pad) - (var(--lpl-cards) - 1) * var(--lpl-gap)) /
    		var(--lpl-cards)
    );
  }
  .lpl-why__viewport,
  .lpl-row__viewport {
    max-width: calc(var(--lpl-max-wide) - 2 * var(--lpl-pad));
    margin-inline: auto;
  }
  .lpl-why__track,
  .lpl-row__track {
    padding-inline: 0;
    scroll-padding-inline: 0;
  }
}
@media (max-width: 900px) {
  .stck-lpl {
    --lpl-cards: 2;
  }
  .lpl-stats__grid {
    grid-template-columns: 1fr;
  }
  .lpl-highlight__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    text-align: left;
    height: 100%;
  }
  .lpl-highlight__media {
    order: -1;
    max-width: 420px;
  }
}
@media (max-width: 720px) {
  .lpl-announcement span:nth-child(2) {
    display: none;
  }
  .lpl-footer__primary {
    grid-template-columns: 1fr 1fr;
  }
  .lpl-highlights__head,
  .lpl-why__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .stck-lpl {
    --lpl-card-w: 80vw;
  }
}
@media (max-width: 480px) {
  .lpl-footer__primary {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=stck-landing-light.css.map */
