/* Shared styles for the /m/ keyword landing-page family. */
.ldp-page {
  --ldp-ink: #0f1636;
  --ldp-muted: rgba(15, 22, 54, 0.66);
  --ldp-brand: #4f6bff;
  --ldp-brand-dark: #3d57f5;
  --ldp-border: #e5e7eb;
  --ldp-blue-surface: #e5efff;
  --ldp-purple-surface: #f1eaff;
  margin: 0;
  background: #ffffff;
}

.ldp-main *,
.ldp-main *::before,
.ldp-main *::after {
  box-sizing: border-box;
}

.ldp-main {
  overflow: hidden;
  color: var(--ldp-ink);
  font-family: var(--public-html-font-family, "Inter", "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Arial, sans-serif);
}

.ldp-shell {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.ldp-eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 5px 18px;
  border-radius: 80px;
  color: var(--ldp-brand);
  background: #eef2ff;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
}

.ldp-hero {
  position: relative;
  isolation: isolate;
  padding: 88px 0 110px;
  background:
    radial-gradient(circle at 18% 32%, rgba(70, 215, 232, 0.16), transparent 31%),
    radial-gradient(circle at 83% 35%, rgba(108, 99, 255, 0.2), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fbfbff 100%);
}

.ldp-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.46;
  background-image:
    linear-gradient(rgba(79, 107, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 107, 255, 0.1) 1px, transparent 1px);
  background-position: center;
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 72%, transparent);
  pointer-events: none;
}

.ldp-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 72px;
  align-items: center;
}

.ldp-hero__content {
  min-width: 0;
}

.ldp-hero__title {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--ldp-ink);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.ldp-hero__description {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--ldp-muted);
  font-size: 18px;
  line-height: 1.65;
}

.ldp-hero__benefits,
.ldp-checklist {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.ldp-hero__benefits li,
.ldp-checklist li {
  position: relative;
  padding-left: 30px;
  color: var(--ldp-ink);
  font-size: 15px;
  line-height: 1.55;
}

.ldp-hero__benefits li::before,
.ldp-checklist li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  content: "✓";
  color: #ffffff;
  background: var(--ldp-brand);
  font-size: 12px;
  font-weight: 700;
}

.ldp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

.ldp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 66px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ldp-button:hover {
  transform: translateY(-2px);
}

.ldp-button:focus-visible,
.ldp-hero__preview:focus-visible,
.ldp-video-dialog__close:focus-visible,
.ldp-bottom-cta__link:focus-visible,
.ldp-faq__question:focus-visible,
.ldp-faq__description a:focus-visible,
.ldp-source-note a:focus-visible,
.ldp-fit-card a:focus-visible {
  outline: 3px solid rgba(79, 107, 255, 0.4);
  outline-offset: 4px;
}

.ldp-button--primary {
  color: #ffffff;
  background: linear-gradient(98deg, #46bfe8 -10%, #4f6bff 48%, #7658ff 105%);
  box-shadow: 0 14px 30px rgba(79, 107, 255, 0.25);
}

.ldp-button--primary:hover {
  color: #ffffff;
  background: linear-gradient(98deg, #39afd8 -10%, #3d57f5 48%, #6848ef 105%);
  box-shadow: 0 18px 34px rgba(79, 107, 255, 0.32);
}

.ldp-button--secondary {
  border-color: var(--ldp-border);
  color: var(--ldp-ink);
  background: rgba(255, 255, 255, 0.86);
}

.ldp-button--secondary:hover {
  border-color: #cfd5f1;
  color: var(--ldp-brand-dark);
  background: #ffffff;
}

.ldp-button__arrow {
  width: 14px;
  height: 14px;
  margin-left: 10px;
  background: currentColor;
  -webkit-mask: url("/home/img/svg/arrow.svg") center / contain no-repeat;
  mask: url("/home/img/svg/arrow.svg") center / contain no-repeat;
}

.ldp-hero__note {
  margin: 14px 0 0;
  color: rgba(15, 22, 54, 0.52);
  font-size: 13px;
  line-height: 1.5;
}

.ldp-hero__visual {
  position: relative;
  min-width: 0;
  padding: 28px;
}

.ldp-hero__visual::before {
  position: absolute;
  z-index: -1;
  inset: 8% 3%;
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, rgba(70, 215, 232, 0.34), rgba(108, 99, 255, 0.34));
  filter: blur(40px);
}

.ldp-hero__visual-card {
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 60px rgba(67, 77, 138, 0.22), 0 0 32px rgba(167, 180, 201, 0.42);
  backdrop-filter: blur(14px);
}

.ldp-hero__visual-bar {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 8px 10px;
}

.ldp-hero__visual-bar > span {
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
  background: #d9ddea;
}

.ldp-hero__visual-bar > span:first-child {
  background: #ff8d8d;
}

.ldp-hero__visual-bar > span:nth-child(2) {
  background: #ffd576;
}

.ldp-hero__visual-bar > span:nth-child(3) {
  background: #78d9ad;
}

.ldp-hero__visual-bar strong {
  margin-left: auto;
  color: rgba(15, 22, 54, 0.58);
  font-size: 12px;
  font-weight: 600;
}

.ldp-hero__picture,
.ldp-hero__image {
  display: block;
  width: 100%;
}

.ldp-hero__picture {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  background: #050505;
}

.ldp-hero__picture--mega {
  aspect-ratio: 700 / 468;
  background: linear-gradient(135deg, #f0f2ff, #fff0fb);
}

.ldp-hero__picture--mega .ldp-hero__image {
  object-fit: contain;
}

.ldp-hero__image {
  height: 100%;
  object-fit: cover;
}

.ldp-hero__preview {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: #050505;
  cursor: pointer;
}

.ldp-hero__preview::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 50%, rgba(2, 4, 16, 0.32));
  transition: background-color 180ms ease;
}

.ldp-hero__preview:hover::after {
  background-color: rgba(79, 107, 255, 0.1);
}

.ldp-hero__play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  background: rgba(15, 22, 54, 0.72);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
  transition: background-color 180ms ease, transform 180ms ease;
}

.ldp-hero__preview:hover .ldp-hero__play {
  background: var(--ldp-brand);
  transform: translate(-50%, -50%) scale(1.06);
}

.ldp-hero__play-icon {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #ffffff;
}

.ldp-hero__float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 66px;
  color: var(--ldp-ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(50, 60, 115, 0.14);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.ldp-hero__float::before {
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  content: "";
  background: var(--ldp-brand);
  box-shadow: 0 0 0 5px rgba(79, 107, 255, 0.12);
}

.ldp-hero__float--voice {
  top: 4px;
  right: 2px;
}

.ldp-hero__float--captions {
  bottom: 2px;
  left: 2px;
}

.ldp-definition {
  position: relative;
  z-index: 2;
  margin-top: -42px;
}

.ldp-definition__box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 30px 34px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(70, 81, 142, 0.12);
  backdrop-filter: blur(16px);
}

.ldp-definition__icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(145deg, #ff7b71, #ff4f65);
  box-shadow: 0 10px 24px rgba(255, 79, 101, 0.24);
  font-size: 15px;
  font-weight: 700;
}

.ldp-definition__title {
  margin: 0;
  color: var(--ldp-ink);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
}

.ldp-definition__text {
  max-width: 990px;
  margin: 8px 0 0;
  color: var(--ldp-muted);
  font-size: 15px;
  line-height: 1.7;
}

.ldp-value {
  padding: 28px 0 20px;
}

.ldp-section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.ldp-section-heading__title {
  margin: 16px 0 0;
  color: var(--ldp-ink);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.ldp-section-heading__description {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--ldp-muted);
  font-size: 16px;
  line-height: 1.65;
}

.ldp-value__list {
  display: grid;
  gap: 20px;
  margin-top: 0;
}

.ldp-value-card {
  overflow: hidden;
  margin: 0 12px;
  border-radius: 32px;
}

.ldp-value-card__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 74px;
  align-items: center;
  min-height: 540px;
  padding: 64px;
}

.ldp-value-card__heading {
  grid-column: 1 / -1;
  grid-row: 1;
}

.ldp-value-card--blue {
  background: var(--ldp-blue-surface);
}

.ldp-value-card--purple {
  background: var(--ldp-purple-surface);
}

.ldp-value-card--reverse .ldp-value-card__content {
  grid-column: 2;
  grid-row: 2;
}

.ldp-value-card--reverse .ldp-value-card__media {
  grid-column: 1;
  grid-row: 2;
}

.ldp-value-card__content {
  min-width: 0;
}

.ldp-value-card__number {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  color: var(--ldp-brand);
  background: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 700;
}

.ldp-value-card__title {
  margin: 20px 0 0;
  color: var(--ldp-ink);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.ldp-value-card__description {
  margin: 18px 0 0;
  color: var(--ldp-muted);
  font-size: 16px;
  line-height: 1.7;
}

.ldp-value-card__media {
  min-width: 0;
}

.ldp-value-card__picture {
  display: block;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 32px rgba(164, 174, 229, 0.42);
}

.ldp-value-card__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.ldp-capability-panel {
  max-width: 540px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 46px rgba(94, 77, 155, 0.16);
  backdrop-filter: blur(12px);
}

.ldp-capability-panel__header {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(15, 22, 54, 0.08);
}

.ldp-capability-panel__header > div {
  display: grid;
  gap: 3px;
}

.ldp-capability-panel__header strong {
  color: var(--ldp-ink);
  font-size: 16px;
}

.ldp-capability-panel__header span {
  color: var(--ldp-muted);
  font-size: 13px;
}

.ldp-capability-panel__icon {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 14px;
  background: linear-gradient(145deg, #4f6bff, #8b57ff);
}

.ldp-capability-panel__icon::before {
  position: absolute;
  top: 13px;
  left: 17px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #ffffff;
  content: "";
  transform: scale(0.7);
  transform-origin: left center;
}

.ldp-capability-panel__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.ldp-capability-panel__item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px 10px 34px;
  border: 1px solid rgba(15, 22, 54, 0.08);
  border-radius: 12px;
  color: var(--ldp-ink);
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 600;
}

.ldp-capability-panel__item::before {
  position: absolute;
  left: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: #aeb7d6;
}

.ldp-capability-panel__item--active {
  border-color: rgba(79, 107, 255, 0.22);
  color: var(--ldp-brand-dark);
  background: #eef2ff;
}

.ldp-capability-panel__item--active::before {
  background: var(--ldp-brand);
  box-shadow: 0 0 0 4px rgba(79, 107, 255, 0.12);
}

.ldp-capability-panel__timeline {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1.6fr 0.65fr;
  gap: 6px;
  height: 52px;
  align-items: end;
  margin-top: 28px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(79, 107, 255, 0.07);
}

.ldp-capability-panel__timeline span {
  display: block;
  height: 18px;
  border-radius: 5px;
  background: linear-gradient(90deg, #4f6bff, #8c62ff);
}

.ldp-capability-panel__timeline span:nth-child(2) {
  height: 30px;
  background: linear-gradient(90deg, #46cbe0, #54a1ff);
}

.ldp-capability-panel__timeline span:nth-child(3) {
  height: 24px;
}

.ldp-capability-panel__timeline span:nth-child(4) {
  height: 36px;
  background: linear-gradient(90deg, #ff8e9d, #ffb278);
}

.ldp-source-note {
  margin: 22px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(79, 107, 255, 0.12);
  border-radius: 12px;
  color: rgba(15, 22, 54, 0.58);
  background: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.65;
}

.ldp-source-note a {
  color: var(--ldp-brand-dark);
  font-weight: 600;
  text-underline-offset: 3px;
}

.ldp-compare {
  margin: 0 12px 20px;
  padding: 104px 0;
  border-radius: 32px;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 191, 127, 0.18), transparent 28%),
    linear-gradient(180deg, #fff8f1 0%, #fff4e9 100%);
}

.ldp-compare__table {
  overflow: hidden;
  margin-top: 54px;
  border: 1px solid rgba(15, 22, 54, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 44px rgba(97, 73, 51, 0.08);
}

.ldp-compare__row {
  display: grid;
  grid-template-columns: minmax(190px, 0.74fr) repeat(2, minmax(0, 1fr));
}

.ldp-compare__row + .ldp-compare__row {
  border-top: 1px solid rgba(15, 22, 54, 0.08);
}

.ldp-compare__row > div {
  min-width: 0;
  padding: 19px 22px;
  color: var(--ldp-muted);
  font-size: 14px;
  line-height: 1.55;
}

.ldp-compare__row > div + div {
  border-left: 1px solid rgba(15, 22, 54, 0.08);
}

.ldp-compare__row--head {
  color: #ffffff;
  background: var(--ldp-ink);
}

.ldp-compare__row--head > div {
  color: #ffffff;
  font-weight: 600;
}

.ldp-compare__criterion {
  color: var(--ldp-ink) !important;
  background: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.ldp-compare__mobile-label {
  display: none;
}

.ldp-compare__note {
  max-width: 880px;
  margin: 18px auto 0;
  color: rgba(15, 22, 54, 0.58);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.ldp-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.ldp-fit-card {
  min-width: 0;
  padding: 34px;
  border: 1px solid rgba(15, 22, 54, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 38px rgba(97, 73, 51, 0.07);
}

.ldp-fit-card--brand {
  border-color: rgba(79, 107, 255, 0.18);
  background: linear-gradient(145deg, rgba(238, 242, 255, 0.96), rgba(245, 238, 255, 0.96));
}

.ldp-fit-card__label {
  color: var(--ldp-brand-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ldp-fit-card h3 {
  margin: 12px 0 0;
  color: var(--ldp-ink);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.35;
}

.ldp-fit-card p {
  margin: 14px 0 0;
  color: var(--ldp-muted);
  font-size: 14px;
  line-height: 1.7;
}

.ldp-fit-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--ldp-brand-dark);
  font-size: 14px;
  font-weight: 600;
  text-underline-offset: 4px;
}

.ldp-steps {
  margin: 0 12px;
  padding: 110px 0;
  border-radius: 32px;
  background: #f5f7ff;
}

.ldp-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 0;
  margin: 60px 0 0;
  list-style: none;
  counter-reset: none;
}

.ldp-step-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 15px 35px rgba(86, 99, 161, 0.1);
}

.ldp-step-card__picture,
.ldp-step-card__picture img {
  display: block;
  width: 100%;
}

.ldp-step-card__picture {
  overflow: hidden;
  background: #dfe5ff;
}

.ldp-step-card__picture img {
  height: auto;
}

.ldp-step-card__content {
  padding: 24px;
}

.ldp-step-card__number {
  color: var(--ldp-brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ldp-step-card h3 {
  margin: 10px 0 0;
  color: var(--ldp-ink);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
}

.ldp-step-card p {
  margin: 10px 0 0;
  color: var(--ldp-muted);
  font-size: 14px;
  line-height: 1.65;
}

.ldp-steps__action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.ldp-faq {
  padding: 120px 0;
}

.ldp-faq__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
  align-items: start;
}

.ldp-faq__header {
  position: sticky;
  top: 96px;
}

.ldp-faq__title {
  margin: 18px 0 0;
  color: var(--ldp-ink);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.ldp-faq__description {
  margin: 18px 0 0;
  color: var(--ldp-muted);
  font-size: 15px;
  line-height: 1.65;
}

.ldp-faq__description a {
  color: var(--ldp-brand-dark);
  font-weight: 600;
}

.ldp-faq__list {
  display: grid;
  gap: 12px;
}

.ldp-faq__item {
  overflow: hidden;
  border: 1px solid var(--ldp-border);
  border-radius: 16px;
  background: #ffffff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.ldp-faq__item[open] {
  border-color: rgba(79, 107, 255, 0.3);
  box-shadow: 0 12px 30px rgba(74, 86, 145, 0.08);
}

.ldp-faq__question {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 20px 24px;
  color: var(--ldp-ink);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  list-style: none;
  cursor: pointer;
}

.ldp-faq__question::-webkit-details-marker {
  display: none;
}

.ldp-faq__plus {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: #eef2ff;
}

.ldp-faq__plus::before,
.ldp-faq__plus::after {
  position: absolute;
  top: 13px;
  left: 8px;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  content: "";
  background: var(--ldp-brand);
  transition: transform 180ms ease;
}

.ldp-faq__plus::after {
  transform: rotate(90deg);
}

.ldp-faq__item[open] .ldp-faq__plus::after {
  transform: rotate(0deg);
}

.ldp-faq__answer {
  padding: 0 24px 24px;
}

.ldp-faq__answer p {
  margin: 0;
  color: var(--ldp-muted);
  font-size: 15px;
  line-height: 1.7;
}

.ldp-bottom-cta {
  position: relative;
  overflow: hidden;
  margin: 0 12px 12px;
  padding: 96px 0;
  border-radius: 32px;
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 79, 136, 0.58), transparent 28%),
    radial-gradient(circle at 12% 80%, rgba(70, 215, 232, 0.46), transparent 30%),
    linear-gradient(118deg, #435cff 0%, #7552ff 58%, #904fff 100%);
}

.ldp-bottom-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.26) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
  pointer-events: none;
}

.ldp-bottom-cta__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ldp-bottom-cta__label {
  display: inline-flex;
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 66px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 600;
}

.ldp-bottom-cta__title {
  max-width: 780px;
  margin: 20px 0 0;
  color: #ffffff;
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.ldp-bottom-cta__description {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.6;
}

.ldp-bottom-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
}

.ldp-button--light {
  color: var(--ldp-brand-dark);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(29, 36, 98, 0.2);
}

.ldp-button--light:hover {
  color: #2f47d9;
  background: #f7f8ff;
}

.ldp-bottom-cta__link {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-underline-offset: 4px;
}

.ldp-brand-disclaimer {
  padding: 22px 0 30px;
  color: rgba(15, 22, 54, 0.48);
  background: #ffffff;
}

.ldp-brand-disclaimer p {
  max-width: 920px;
  margin: 0 auto;
  font-size: 11px;
  line-height: 1.65;
  text-align: center;
}

.ldp-video-dialog {
  width: min(1180px, calc(100% - 40px));
  max-width: none;
  max-height: calc(100vh - 40px);
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: transparent;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.ldp-video-dialog::backdrop {
  background: rgba(7, 10, 27, 0.76);
  backdrop-filter: blur(7px);
}

.ldp-video-dialog__panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  color: #ffffff;
  background: #0f1636;
}

.ldp-video-dialog__header {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 12px 18px 12px 24px;
}

.ldp-video-dialog__title {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}

.ldp-video-dialog__close {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  flex: 0 0 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font-family: inherit;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.ldp-video-dialog__close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.ldp-video-dialog__viewer {
  aspect-ratio: 16 / 9;
  background: #000000;
}

.ldp-video-dialog__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1000px) {
  .ldp-hero {
    padding: 72px 0 96px;
  }

  .ldp-hero__inner {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .ldp-hero__content {
    max-width: 760px;
  }

  .ldp-hero__title {
    max-width: 720px;
  }

  .ldp-hero__visual {
    width: min(720px, 100%);
    margin: 0 auto;
  }

  .ldp-section-heading__title {
    font-size: 38px;
  }

  .ldp-value-card__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: 0;
    padding: 48px;
  }

  .ldp-value-card--reverse .ldp-value-card__content,
  .ldp-value-card--reverse .ldp-value-card__media {
    grid-column: 1;
  }

  .ldp-value-card--reverse .ldp-value-card__content {
    grid-row: 2;
  }

  .ldp-value-card--reverse .ldp-value-card__media {
    grid-row: 3;
  }

  .ldp-value-card__title {
    font-size: 32px;
  }

  .ldp-value-card__media {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .ldp-compare {
    padding: 88px 0;
  }

  .ldp-compare__row {
    grid-template-columns: minmax(160px, 0.64fr) repeat(2, minmax(0, 1fr));
  }

  .ldp-compare__row > div {
    padding: 17px;
  }

  .ldp-steps__grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
  }

  .ldp-step-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
  }

  .ldp-faq__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .ldp-faq__header {
    position: static;
    max-width: 720px;
  }
}

@media (max-width: 600px) {
  .ldp-shell {
    width: min(100% - 32px, 1200px);
  }

  .ldp-eyebrow {
    min-height: 30px;
    padding: 4px 13px;
    font-size: 12px;
    line-height: 20px;
  }

  .ldp-hero {
    padding: 44px 0 76px;
  }

  .ldp-hero::before {
    background-size: 38px 38px;
  }

  .ldp-hero__inner {
    gap: 38px;
  }

  .ldp-hero__title {
    margin-top: 14px;
    font-size: 38px;
    letter-spacing: -0.035em;
  }

  .ldp-hero__description {
    margin-top: 18px;
    font-size: 15px;
  }

  .ldp-hero__benefits {
    gap: 9px;
    margin-top: 22px;
  }

  .ldp-hero__benefits li,
  .ldp-checklist li {
    font-size: 14px;
  }

  .ldp-actions {
    display: grid;
    margin-top: 28px;
  }

  .ldp-button {
    width: 100%;
    min-height: 54px;
    padding: 13px 20px;
    font-size: 15px;
  }

  .ldp-hero__visual {
    padding: 16px 8px 24px;
  }

  .ldp-hero__visual-card {
    padding: 7px;
    border-radius: 16px;
  }

  .ldp-hero__visual-bar {
    min-height: 30px;
    padding-bottom: 6px;
  }

  .ldp-hero__visual-bar strong {
    font-size: 10px;
  }

  .ldp-hero__picture {
    border-radius: 11px;
  }

  .ldp-hero__preview {
    border-radius: 11px;
  }

  .ldp-hero__play {
    width: 58px;
    height: 58px;
  }

  .ldp-hero__play-icon {
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 16px;
  }

  .ldp-hero__float {
    min-height: 34px;
    padding: 7px 11px;
    font-size: 11px;
  }

  .ldp-hero__float--voice {
    top: -2px;
  }

  .ldp-definition {
    margin-top: -34px;
  }

  .ldp-definition__box {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .ldp-definition__icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    font-size: 13px;
  }

  .ldp-definition__title {
    font-size: 19px;
  }

  .ldp-definition__text {
    font-size: 14px;
  }

  .ldp-value {
    padding: 12px 0;
  }

  .ldp-section-heading__title {
    font-size: 30px;
    line-height: 1.28;
  }

  .ldp-section-heading__description {
    font-size: 14px;
  }

  .ldp-value__list {
    gap: 14px;
    margin-top: 0;
  }

  .ldp-value-card {
    margin: 0 6px;
    border-radius: 24px;
  }

  .ldp-value-card__inner {
    gap: 28px;
    padding: 30px 22px;
  }

  .ldp-value-card__number {
    width: 42px;
    height: 42px;
  }

  .ldp-value-card__title {
    margin-top: 16px;
    font-size: 25px;
  }

  .ldp-value-card__description {
    margin-top: 14px;
    font-size: 14px;
  }

  .ldp-checklist {
    gap: 9px;
    margin-top: 20px;
  }

  .ldp-value-card__picture,
  .ldp-capability-panel {
    padding: 8px;
    border-radius: 16px;
  }

  .ldp-source-note {
    font-size: 11px;
  }

  .ldp-compare {
    margin: 0 6px 14px;
    padding: 74px 0;
    border-radius: 24px;
  }

  .ldp-compare__table {
    overflow: visible;
    margin-top: 36px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .ldp-compare__row {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid rgba(15, 22, 54, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
  }

  .ldp-compare__row + .ldp-compare__row {
    margin-top: 12px;
    border-top: 1px solid rgba(15, 22, 54, 0.1);
  }

  .ldp-compare__row--head {
    display: none;
  }

  .ldp-compare__row > div {
    padding: 16px 18px;
    font-size: 13px;
  }

  .ldp-compare__row > div + div {
    border-top: 1px solid rgba(15, 22, 54, 0.08);
    border-left: 0;
  }

  .ldp-compare__criterion {
    background: var(--ldp-ink);
    color: #ffffff !important;
  }

  .ldp-compare__mobile-label {
    display: block;
    margin-bottom: 5px;
    color: var(--ldp-brand-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .ldp-fit-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
  }

  .ldp-fit-card {
    padding: 26px 22px;
    border-radius: 18px;
  }

  .ldp-fit-card h3 {
    font-size: 22px;
  }

  .ldp-capability-panel {
    padding: 18px;
  }

  .ldp-capability-panel__list {
    grid-template-columns: 1fr;
  }

  .ldp-steps {
    margin: 0 6px;
    padding: 78px 0;
    border-radius: 24px;
  }

  .ldp-steps__grid {
    gap: 14px;
    margin-top: 38px;
  }

  .ldp-step-card {
    display: block;
  }

  .ldp-step-card__content {
    padding: 22px;
  }

  .ldp-faq {
    padding: 80px 0;
  }

  .ldp-faq__inner {
    gap: 30px;
  }

  .ldp-faq__title {
    font-size: 30px;
  }

  .ldp-faq__question {
    min-height: 66px;
    padding: 18px;
    font-size: 15px;
  }

  .ldp-faq__answer {
    padding: 0 18px 20px;
  }

  .ldp-faq__answer p {
    font-size: 14px;
  }

  .ldp-bottom-cta {
    margin: 0 6px 6px;
    padding: 72px 0;
    border-radius: 24px;
  }

  .ldp-bottom-cta__title {
    font-size: 34px;
  }

  .ldp-bottom-cta__description {
    font-size: 15px;
  }

  .ldp-bottom-cta__actions {
    display: grid;
    width: 100%;
    gap: 18px;
  }

  .ldp-brand-disclaimer {
    padding: 18px 0 24px;
  }

  .ldp-brand-disclaimer p {
    font-size: 10px;
    text-align: left;
  }

  .ldp-video-dialog {
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    border-radius: 16px;
  }

  .ldp-video-dialog__panel {
    border-radius: 16px;
  }

  .ldp-video-dialog__header {
    min-height: 56px;
    padding: 8px 10px 8px 16px;
  }

  .ldp-video-dialog__title {
    font-size: 14px;
  }

  .ldp-video-dialog__close {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ldp-button,
  .ldp-hero__preview::after,
  .ldp-hero__play,
  .ldp-video-dialog__close,
  .ldp-faq__item,
  .ldp-faq__plus::before,
  .ldp-faq__plus::after {
    transition: none;
  }
}

/* /m/ resource hub */
.ldp-hub-page {
  background: #ffffff;
}

.ldp-hub-hero {
  padding: 92px 0 104px;
}

.ldp-hub-hero__inner {
  grid-template-columns: minmax(0, 0.96fr) minmax(440px, 0.78fr);
  gap: 84px;
}

.ldp-hub-hero .ldp-hero__title {
  max-width: 720px;
}

.ldp-hub-hero__panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 28px 70px rgba(67, 77, 138, 0.2), 0 0 34px rgba(167, 180, 201, 0.32);
  backdrop-filter: blur(16px);
}

.ldp-hub-hero__summary {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 18px 18px 12px;
  color: var(--ldp-muted);
  font-size: 14px;
  line-height: 1.4;
}

.ldp-hub-hero__summary strong {
  color: var(--ldp-ink);
  font-size: 42px;
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1;
}

.ldp-hub-topic-link {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 18px;
  gap: 14px;
  align-items: center;
  min-height: 86px;
  padding: 14px 16px;
  border: 1px solid rgba(15, 22, 54, 0.07);
  border-radius: 18px;
  color: var(--ldp-ink);
  background: rgba(245, 247, 255, 0.88);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ldp-hub-topic-link:hover {
  border-color: rgba(79, 107, 255, 0.24);
  box-shadow: 0 12px 28px rgba(67, 77, 138, 0.12);
  transform: translateY(-2px);
}

.ldp-hub-topic-link:focus-visible,
.ldp-hub-card:focus-visible {
  outline: 3px solid rgba(79, 107, 255, 0.4);
  outline-offset: 4px;
}

.ldp-hub-topic-link__number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #49bee8, #5868ff 58%, #7658ff);
  font-size: 13px;
  font-weight: 700;
}

.ldp-hub-topic-link strong,
.ldp-hub-topic-link small {
  display: block;
}

.ldp-hub-topic-link strong {
  overflow: hidden;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ldp-hub-topic-link small {
  margin-top: 5px;
  color: var(--ldp-muted);
  font-size: 12px;
  line-height: 1.35;
}

.ldp-hub-topic-link__arrow,
.ldp-hub-card__arrow {
  width: 16px;
  height: 16px;
  background: currentColor;
  -webkit-mask: url("/home/img/svg/arrow.svg") center / contain no-repeat;
  mask: url("/home/img/svg/arrow.svg") center / contain no-repeat;
  transition: transform 180ms ease;
}

.ldp-hub-topic-link:hover .ldp-hub-topic-link__arrow,
.ldp-hub-card:hover .ldp-hub-card__arrow {
  transform: translateX(4px);
}

.ldp-hub-sections {
  display: grid;
  gap: 14px;
  padding: 14px 0;
}

.ldp-hub-section {
  margin: 0 12px;
  padding: 96px 0 104px;
  border-radius: 34px;
  scroll-margin-top: 84px;
}

.ldp-hub-section--blue {
  background: #eaf3ff;
}

.ldp-hub-section--peach {
  background: #fff1e5;
}

.ldp-hub-section--purple {
  background: #f1eaff;
}

.ldp-hub-section__heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.ldp-hub-section__heading .ldp-eyebrow {
  margin: 0 auto;
}

.ldp-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.ldp-hub-card {
  display: flex;
  min-width: 0;
  min-height: 310px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(15, 22, 54, 0.08);
  border-radius: 22px;
  color: var(--ldp-ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(67, 77, 138, 0.09);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ldp-hub-card:hover {
  border-color: rgba(79, 107, 255, 0.22);
  color: var(--ldp-ink);
  box-shadow: 0 22px 44px rgba(67, 77, 138, 0.15);
  transform: translateY(-5px);
}

.ldp-hub-card__topline,
.ldp-hub-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ldp-hub-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(15, 22, 54, 0.07);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(67, 77, 138, 0.09);
}

.ldp-hub-card__icon img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.ldp-hub-card__kind {
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--ldp-brand-dark);
  background: #eef2ff;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.4;
}

.ldp-hub-card__content {
  display: block;
  margin-top: 24px;
}

.ldp-hub-card__title {
  margin: 0;
  color: var(--ldp-ink);
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.ldp-hub-card__description {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 13px;
  color: var(--ldp-muted);
  font-size: 14px;
  line-height: 1.62;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.ldp-hub-card__footer {
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--ldp-brand-dark);
  font-size: 13px;
  font-weight: 650;
}

.ldp-hub-bottom-cta {
  margin-top: 0;
}

@media (max-width: 1000px) {
  .ldp-hub-hero__inner {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .ldp-hub-hero__panel {
    max-width: 700px;
  }

  .ldp-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .ldp-hub-hero {
    padding: 68px 0 76px;
  }

  .ldp-hub-hero__inner {
    gap: 38px;
  }

  .ldp-hub-hero__panel {
    padding: 10px;
    border-radius: 20px;
  }

  .ldp-hub-hero__summary {
    padding: 16px 12px 10px;
  }

  .ldp-hub-hero__summary strong {
    font-size: 34px;
  }

  .ldp-hub-topic-link {
    grid-template-columns: 42px minmax(0, 1fr) 16px;
    min-height: 76px;
    padding: 12px;
    border-radius: 15px;
  }

  .ldp-hub-topic-link__number {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .ldp-hub-section {
    margin: 0 6px;
    padding: 72px 0 78px;
    border-radius: 24px;
  }

  .ldp-hub-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
  }

  .ldp-hub-card {
    min-height: 0;
    padding: 21px;
    border-radius: 18px;
  }

  .ldp-hub-card__title {
    font-size: 19px;
  }

  .ldp-hub-card__description {
    -webkit-line-clamp: 5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ldp-hub-topic-link,
  .ldp-hub-topic-link__arrow,
  .ldp-hub-card,
  .ldp-hub-card__arrow {
    transition: none;
  }
}
