/* RC107D9SEO: авто-собранный CSS для серверных SEO-страниц
   (landing-tokens + landing-home без @import). Подключается через <link>
   в seo-html-shell.js, чтобы страницы были стилизованы как главная. */

/* Scoped design tokens — homepage redesign 090. Do not apply globally. */
.landing-page {
  --ml-black: #0b0b0b;
  --ml-white: #ffffff;
  --ml-accent: #adff2f;
  --ml-accent-hover: #94e800;
  --ml-text: #151515;
  --ml-muted: #666666;
  --ml-border: #deded8;
  --ml-surface: #f5f6f1;
  --ml-logo-mark-bg: #adff2f;
  --ml-logo-mark-fg: #0b0b0b;
  --ml-container: 1280px;
  --ml-navy: #0b0b0b;
  --ml-navy-deep: #000000;
  --ml-ink: #111111;
}



.landing-page {
  margin: 0;
  background: var(--ml-white);
  color: var(--ml-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

.landing-page a {
  color: inherit;
  text-decoration: none;
}

.landing-page img {
  display: block;
  width: 100%;
}

.landing-page .lp-container {
  width: min(var(--ml-container), calc(100% - 48px));
  margin: 0 auto;
}

.landing-page .lp-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--ml-border);
  background: var(--ml-white);
  padding-top: env(safe-area-inset-top, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

.landing-page .lp-header-row {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.landing-page .lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--ml-logo-mark-fg);
}

.landing-page .lp-brand-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.landing-page .lp-brand--footer {
  color: var(--ml-white);
}

.landing-page .lp-brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ml-logo-mark-bg);
  color: var(--ml-logo-mark-fg);
  flex-shrink: 0;
}

.landing-page .lp-brand-mark::before {
  content: "✦";
  font-size: 17px;
  transform: translateY(-2px);
}

.landing-page .lp-brand-mark::after {
  content: "";
  position: absolute;
  bottom: 7px;
  width: 3px;
  height: 12px;
  border-radius: 2px;
  background: var(--ml-logo-mark-fg);
}

.landing-page .lp-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  color: #545454;
  font-size: 14px;
  font-weight: 560;
}

.landing-page .lp-nav a:hover {
  color: var(--ml-navy-deep);
  text-decoration: underline;
  text-decoration-color: var(--ml-accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.landing-page .lp-header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
}

.landing-page .lp-header-login {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 4px;
  font-weight: 700;
}

.landing-page .lp-header-login:hover {
  color: var(--ml-navy-deep);
  text-decoration: underline;
  text-decoration-color: var(--ml-accent);
  text-underline-offset: 4px;
}

.landing-page .lp-join-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--ml-accent);
  color: var(--ml-navy-deep);
}

.landing-page .lp-join-link:hover {
  background: var(--ml-accent-hover);
}

.landing-page .lp-menu-button {
  display: none;
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--ml-border);
  border-radius: 6px;
  background: var(--ml-white);
  color: var(--ml-ink);
  cursor: pointer;
}

.landing-page .lp-menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 20px;
}

.landing-page .lp-menu-icon span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.landing-page .lp-menu-icon .open-top {
  transform: translateY(7px) rotate(45deg);
}

.landing-page .lp-menu-icon .open-mid {
  opacity: 0;
}

.landing-page .lp-menu-icon .open-bot {
  transform: translateY(-7px) rotate(-45deg);
}

.landing-page .lp-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0 20px;
  border-top: 1px solid var(--ml-border);
  background: var(--ml-white);
  max-height: calc(100dvh - 68px - env(safe-area-inset-top, 0px));
  overflow-y: auto;
  overscroll-behavior: contain;
}

.landing-page .lp-nav-mobile.open {
  display: flex;
}

.landing-page .lp-nav-mobile a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ml-ink);
}

.landing-page .lp-nav-mobile a.lp-mobile-register {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  padding: 12px 16px;
  border-radius: 6px;
  background: var(--ml-accent);
  color: var(--ml-navy-deep);
  font-weight: 750;
}

.landing-page .lp-nav-mobile a.lp-mobile-register:hover {
  background: var(--ml-accent-hover);
}

.landing-page .lp-nav-mobile a.lp-mobile-register:focus-visible {
  outline: 2px solid var(--ml-navy-deep);
  outline-offset: 2px;
}

.landing-page .lp-nav-mobile a.lp-mobile-register:active {
  background: var(--ml-accent-hover);
}

.landing-page #profiles,
.landing-page #how,
.landing-page #price,
.landing-page #seo {
  scroll-margin-top: calc(68px + env(safe-area-inset-top, 0px));
}

.landing-page .lp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  height: auto;
  max-height: none;
  min-height: 0;
  overflow: visible;
  background: var(--ml-navy);
}

.landing-page .lp-hero-visual {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  aspect-ratio: 27 / 32.1;
  width: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #252525;
}

.landing-page .lp-hero-visual-slot {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-left: 2px solid var(--ml-white);
}

.landing-page .lp-hero-visual-slot:first-child {
  border-left: 0;
}

.landing-page .lp-hero-visual-slot--woman {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.landing-page .lp-hero-visual-slot--wedding {
  grid-column: 2;
  grid-row: 1;
  border-left: 2px solid var(--ml-white);
}

.landing-page .lp-hero-visual-slot--couple {
  grid-column: 2;
  grid-row: 2;
  border-top: 2px solid var(--ml-white);
  border-left: 2px solid var(--ml-white);
}

@media (max-width: 767px) {
  .landing-page .lp-hero-visual {
    border-top: 2px solid var(--ml-white);
  }
}

.landing-page .lp-hero-visual-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #141414 0%, #262626 48%, #1a1a1a 100%);
}

.landing-page .lp-hero-visual-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(173, 255, 47, 0.08), transparent 55%);
  pointer-events: none;
}

.landing-page .lp-hero-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hero gallery layout — tablet: 3 equal panels in one row (768–1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
  .landing-page .lp-hero-visual {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: minmax(0, 1fr);
    aspect-ratio: 27 / 16.08;
  }
  .landing-page .lp-hero-visual-slot--woman,
  .landing-page .lp-hero-visual-slot--wedding,
  .landing-page .lp-hero-visual-slot--couple {
    grid-column: auto;
    grid-row: auto;
    border-top: 0;
  }
  .landing-page .lp-hero-visual-slot--woman {
    border-left: 0;
  }
  .landing-page .lp-hero-visual {
    border-top: 2px solid var(--ml-white);
  }
}

/* Hero gallery layout — desktop: text 48% + 3 equal 9:16 panels (≥1200px) */
@media (min-width: 1200px) {
  .landing-page .lp-hero {
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
    align-items: stretch;
  }
  .landing-page .lp-hero-visual {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: minmax(0, 1fr);
    aspect-ratio: 27 / 16;
    width: 100%;
    height: auto;
    align-self: center;
    border-top: 0;
  }
  .landing-page .lp-hero-visual-slot--woman,
  .landing-page .lp-hero-visual-slot--wedding,
  .landing-page .lp-hero-visual-slot--couple {
    grid-column: auto;
    grid-row: auto;
    border-top: 0;
  }
  .landing-page .lp-hero-visual-slot--woman {
    border-left: 0;
  }
}

.landing-page .lp-hero-message {
  display: flex;
  align-items: center;
  color: var(--ml-white);
}

.landing-page .lp-hero-message-inner {
  width: min(640px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - var(--ml-container)) / 2));
  padding: 58px 48px 62px 0;
}

.landing-page .lp-eyebrow {
  margin-bottom: 22px;
  color: var(--ml-accent);
  font-size: clamp(28px, 2.65vw, 40px);
  line-height: 1.05;
  font-weight: 780;
  letter-spacing: -0.035em;
}

.landing-page .lp-hero h1 {
  max-width: min(720px, 100%);
  margin: 0;
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.048em;
  font-weight: 760;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.landing-page .lp-hero-lead {
  max-width: 590px;
  margin: 26px 0 0;
  color: #f2f2f2;
  font-size: 19px;
  line-height: 1.55;
}

.landing-page .lp-hero-note {
  margin: 8px 0 0;
  color: #d9ff9e;
  font-size: 14px;
  line-height: 1.5;
}

.landing-page .lp-hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.landing-page .lp-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 0;
  border-radius: 6px;
  font-weight: 740;
  cursor: pointer;
}

.landing-page .lp-button-accent {
  background: var(--ml-accent);
  color: var(--ml-navy-deep);
}

.landing-page .lp-button-accent:hover {
  background: var(--ml-accent-hover);
}

.landing-page .lp-hero-secondary {
  color: var(--ml-white);
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 3px;
}

.landing-page .lp-hero-secondary:hover {
  border-color: var(--ml-white);
}

.landing-page .lp-hero-mosaic {
  min-width: 0;
  display: grid;
  grid-template-columns: 58% 42%;
  grid-template-rows: 1fr 1fr;
  background: #252525;
}

.landing-page .lp-mosaic-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-left: 2px solid var(--ml-white);
  border-bottom: 2px solid var(--ml-white);
}

.landing-page .lp-mosaic-card:first-child {
  grid-row: 1 / 3;
  border-bottom: 0;
}

.landing-page .lp-mosaic-card:last-child {
  border-bottom: 0;
}

.landing-page .lp-mosaic-card img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88);
  transition: transform 0.45s ease;
}

.landing-page .lp-mosaic-card:hover img {
  transform: scale(1.025);
}

.landing-page .lp-mosaic-placeholder {
  height: 100%;
  min-height: 120px;
  background: #3a3a3a;
}

.landing-page .lp-hero-mosaic--loading {
  display: grid;
  grid-template-columns: 58% 42%;
  grid-template-rows: 1fr 1fr;
  background: #252525;
  gap: 0;
}

.landing-page .lp-mosaic-skeleton {
  background: linear-gradient(90deg, #2e2e2e 0%, #3a3a3a 50%, #2e2e2e 100%);
  background-size: 200% 100%;
  animation: lp-shimmer 1.2s ease-in-out infinite;
  border-left: 2px solid var(--ml-white);
  border-bottom: 2px solid var(--ml-white);
  min-height: 120px;
}

.landing-page .lp-mosaic-skeleton-main {
  grid-row: 1 / 3;
  border-bottom: 0;
}

.landing-page .lp-hero-mosaic--brand {
  display: grid;
  place-items: center;
  background: #111111;
  min-height: 280px;
}

.landing-page .lp-hero-brand-panel {
  text-align: center;
  color: var(--ml-white);
  padding: 24px;
}

.landing-page .lp-hero-brand-panel p {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.landing-page .lp-hero-mosaic--count-1 {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.landing-page .lp-hero-mosaic--count-1 .lp-mosaic-card:first-child {
  grid-row: auto;
  border-bottom: 0;
}

.landing-page .lp-hero-mosaic--count-2 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}

.landing-page .lp-hero-mosaic--count-2 .lp-mosaic-card:first-child {
  grid-row: auto;
  border-bottom: 0;
}

.landing-page .lp-hero-mosaic--count-2 .lp-mosaic-card:last-child {
  border-bottom: 0;
}

@keyframes lp-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.landing-page .lp-mosaic-caption {
  position: absolute;
  inset: auto 0 0;
  padding: 42px 20px 17px;
  background: linear-gradient(to top, rgba(5, 28, 45, 0.78), transparent);
  color: var(--ml-white);
}

.landing-page .lp-mosaic-caption strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.landing-page .lp-mosaic-caption span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: #e5e5e5;
}

.landing-page .lp-finder-wrap {
  border-bottom: 1px solid var(--ml-border);
  background: var(--ml-white);
}

.landing-page .lp-finder {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: stretch;
  min-height: 96px;
}

.landing-page .lp-finder-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 30px;
  border-right: 1px solid var(--ml-border);
}

.landing-page .lp-finder-title strong {
  font-size: 19px;
  letter-spacing: -0.02em;
}

.landing-page .lp-finder-title span {
  margin-top: 4px;
  color: var(--ml-muted);
  font-size: 12px;
}

.landing-page .lp-compact-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 28px;
  border-right: 1px solid var(--ml-border);
}

.landing-page .lp-compact-field label {
  margin-bottom: 5px;
  color: var(--ml-muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.landing-page .lp-compact-field select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ml-ink);
  font-weight: 700;
  cursor: pointer;
}

.landing-page .lp-finder-action {
  display: flex;
  align-items: center;
  padding-left: 28px;
}

.landing-page .lp-section {
  padding: 76px 0;
}

.landing-page .lp-section-soft {
  background: var(--ml-surface);
}

.landing-page .lp-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 30px;
}

.landing-page .lp-section-kicker {
  margin-bottom: 10px;
  display: inline-flex;
  width: fit-content;
  padding: 4px 7px;
  background: var(--ml-accent);
  color: var(--ml-navy-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-page .lp-section-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  font-weight: 750;
}

.landing-page .lp-profile-tabs {
  display: flex;
  gap: 22px;
  border-bottom: 1px solid var(--ml-border);
}

.landing-page .lp-profile-tabs button {
  border: 0;
  border-bottom: 3px solid transparent;
  padding: 10px 0 9px;
  background: transparent;
  color: #696969;
  font-weight: 750;
  cursor: pointer;
}

.landing-page .lp-profile-tabs button.active {
  color: var(--ml-navy-deep);
  border-bottom-color: var(--ml-accent);
}

.landing-page .lp-profiles {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.landing-page .lp-profile {
  min-width: 0;
}

.landing-page .lp-profile-photo {
  position: relative;
  height: 286px;
  overflow: hidden;
  border-radius: 8px;
  background: #e6e6e1;
}

.landing-page .lp-profile-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.landing-page .lp-profile:hover .lp-profile-photo img {
  transform: scale(1.025);
}

.landing-page .lp-online {
  position: absolute;
  top: 11px;
  right: 11px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--ml-white);
  border-radius: 50%;
  background: var(--ml-accent);
}

.landing-page .lp-profile-info {
  padding: 12px 2px 0;
}

.landing-page .lp-profile-name {
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.landing-page .lp-profile-meta {
  margin-top: 4px;
  color: var(--ml-muted);
  font-size: 12px;
  line-height: 1.45;
}

.landing-page .lp-profiles-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 31px;
  padding-top: 20px;
  border-top: 1px solid var(--ml-border);
}

.landing-page .lp-profiles-state {
  padding: 48px 0;
  text-align: center;
  color: var(--ml-muted);
  font-size: 15px;
}

.landing-page .lp-text-link {
  color: var(--ml-navy-deep);
  font-weight: 750;
  border-bottom: 3px solid var(--ml-accent);
  padding-bottom: 3px;
}

.landing-page .lp-price-band {
  background: var(--ml-accent);
  border-top: 1px solid var(--ml-navy-deep);
  border-bottom: 1px solid var(--ml-navy-deep);
}

.landing-page .lp-price-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr 1fr;
  min-height: 280px;
}

.landing-page .lp-price-heading,
.landing-page .lp-price-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px 48px;
}

.landing-page .lp-price-heading {
  padding-left: 0;
}

.landing-page .lp-price-heading h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.landing-page .lp-price-heading p {
  margin: 13px 0 0;
  color: #303030;
  line-height: 1.55;
  font-size: 14px;
}

.landing-page .lp-price-item {
  border-left: 1px solid rgba(0, 0, 0, 0.28);
}

.landing-page .lp-price-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ml-navy);
}

.landing-page .lp-price {
  margin-top: 8px;
  font-size: clamp(52px, 6vw, 78px);
  font-weight: 780;
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--ml-navy);
}

.landing-page .lp-price small {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.landing-page .lp-price-desc {
  max-width: 330px;
  margin: 15px 0 0;
  color: #303030;
  font-size: 13px;
  line-height: 1.55;
}

.landing-page .lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border-top: 1px solid var(--ml-border);
  border-bottom: 1px solid var(--ml-border);
}

.landing-page .lp-step {
  min-height: 190px;
  padding: 29px 38px;
  border-right: 1px solid var(--ml-border);
}

.landing-page .lp-step:first-child {
  padding-left: 0;
}

.landing-page .lp-step:last-child {
  border-right: 0;
}

.landing-page .lp-step-number {
  display: inline-flex;
  padding: 3px 6px;
  background: var(--ml-accent);
  color: var(--ml-navy-deep);
  font-size: 13px;
  font-weight: 850;
}

.landing-page .lp-step h3 {
  margin: 35px 0 8px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.landing-page .lp-step p {
  margin: 0;
  color: var(--ml-muted);
  font-size: 14px;
  line-height: 1.55;
}

.landing-page .lp-safety-line {
  display: grid;
  grid-template-columns: 0.65fr 1.4fr auto;
  align-items: center;
  gap: 42px;
  min-height: 128px;
}

.landing-page .lp-safety-line h2 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.landing-page .lp-safety-line p {
  margin: 0;
  color: #595959;
  line-height: 1.6;
  font-size: 14px;
}

.landing-page .lp-seo-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 84px;
}

.landing-page .lp-seo-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.landing-page .lp-seo-copy p {
  max-width: 420px;
  color: var(--ml-muted);
  line-height: 1.65;
}

.landing-page .lp-link-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 52px;
}

.landing-page .lp-link-group {
  padding-top: 14px;
  border-top: 1px solid var(--ml-border);
}

.landing-page .lp-link-group h3 {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-page .lp-link-group p {
  margin: 0;
  color: #5f5f5f;
  font-size: 13px;
  line-height: 1.95;
}

.landing-page .lp-link-group a:hover {
  color: var(--ml-navy-deep);
  text-decoration: underline;
  text-decoration-color: var(--ml-accent);
  text-decoration-thickness: 3px;
}

.landing-page .lp-faq-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 74px;
}

.landing-page .lp-faq-grid h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.landing-page .lp-faq-grid details {
  border-top: 1px solid var(--ml-border);
}

.landing-page .lp-faq-grid details:last-child {
  border-bottom: 1px solid var(--ml-border);
}

.landing-page .lp-faq-grid summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 20px 34px 20px 0;
  font-size: 15px;
  font-weight: 740;
}

.landing-page .lp-faq-grid summary::-webkit-details-marker {
  display: none;
}

.landing-page .lp-faq-grid summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 14px;
  color: var(--ml-navy-deep);
  font-size: 26px;
  font-weight: 600;
}

.landing-page .lp-faq-grid details[open] summary::after {
  content: "−";
}

.landing-page .lp-faq-grid details p {
  max-width: 700px;
  margin: 0 0 20px;
  color: var(--ml-muted);
  font-size: 14px;
  line-height: 1.65;
}

.landing-page .lp-final-cta {
  background: var(--ml-navy);
  color: var(--ml-white);
}

.landing-page .lp-final-row {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.landing-page .lp-final-row h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 51px);
  letter-spacing: -0.045em;
}

.landing-page .lp-final-row p {
  margin: 10px 0 0;
  color: #d6d6d6;
}

.landing-page .lp-site-footer {
  background: #050505;
  color: var(--ml-white);
  padding: 50px 0 24px;
}

.landing-page .lp-footer-top {
  display: grid;
  grid-template-columns: 0.9fr 2.1fr;
  gap: 72px;
}

.landing-page .lp-footer-brand p {
  max-width: 340px;
  margin: 17px 0 0;
  color: #b5b5b5;
  font-size: 13px;
  line-height: 1.6;
}

.landing-page .lp-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.landing-page .lp-footer-links strong {
  display: block;
  margin-bottom: 14px;
  font-size: 13px;
}

.landing-page .lp-footer-links a {
  display: block;
  margin: 9px 0;
  color: #bcbcbc;
  font-size: 12px;
  line-height: 1.4;
}

.landing-page .lp-footer-links a:hover {
  color: var(--ml-white);
}

.landing-page .lp-footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  margin-top: 36px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #9f9f9f;
  font-size: 12px;
  line-height: 1.75;
}

.landing-page .lp-footer-legal p {
  margin: 0;
}

.landing-page .lp-footer-legal strong {
  color: var(--ml-white);
}

.landing-page .lp-legal-right {
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .landing-page .lp-nav {
    display: none;
  }
  .landing-page .lp-header-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 8px 10px;
    min-height: 64px;
  }
  .landing-page .lp-brand {
    grid-column: 1;
    min-width: 0;
  }
  .landing-page .lp-header-actions {
    display: contents;
  }
  .landing-page .lp-header-login {
    grid-column: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0 6px;
  }
  .landing-page .lp-join-link {
    display: none;
  }
  .landing-page .lp-menu-button {
    grid-column: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .landing-page .lp-profiles {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
  }
  .landing-page .lp-price-layout {
    grid-template-columns: 0.7fr 1fr 1fr;
  }
  .landing-page .lp-price-heading,
  .landing-page .lp-price-item {
    padding: 38px 30px;
  }
  .landing-page .lp-price-heading {
    padding-left: 0;
  }
}

@media (max-width: 820px) {
  .landing-page .lp-container {
    width: min(var(--ml-container), calc(100% - 30px));
  }
  .landing-page .lp-header-row {
    min-height: 64px;
  }
  .landing-page .lp-hero-message-inner {
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 48px 0 52px;
  }
  .landing-page .lp-hero h1 {
    max-width: min(720px, 100%);
    font-size: clamp(36px, 10.2vw, 58px);
    line-height: 1.05;
  }
  .landing-page .lp-hero-mosaic {
    min-height: 500px;
    border-top: 2px solid var(--ml-white);
  }
  .landing-page .lp-mosaic-card:first-child {
    border-left: 0;
  }
  .landing-page .lp-finder {
    grid-template-columns: 1fr 1fr;
  }
  .landing-page .lp-finder-title {
    padding: 20px 22px 20px 0;
  }
  .landing-page .lp-compact-field {
    padding: 16px 22px;
  }
  .landing-page .lp-compact-field:nth-child(3) {
    border-top: 1px solid var(--ml-border);
  }
  .landing-page .lp-finder-action {
    padding: 14px 0 14px 22px;
    border-top: 1px solid var(--ml-border);
  }
  .landing-page .lp-section {
    padding: 60px 0;
  }
  .landing-page .lp-section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .landing-page .lp-profile-tabs {
    width: 100%;
  }
  .landing-page .lp-profiles {
    grid-template-columns: repeat(2, 1fr);
  }
  .landing-page .lp-price-layout {
    grid-template-columns: 1fr 1fr;
  }
  .landing-page .lp-price-heading {
    grid-column: 1 / -1;
    padding: 36px 0 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.28);
  }
  .landing-page .lp-price-item:first-of-type {
    border-left: 0;
    padding-left: 0;
  }
  .landing-page .lp-steps {
    grid-template-columns: 1fr;
  }
  .landing-page .lp-step,
  .landing-page .lp-step:first-child {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--ml-border);
  }
  .landing-page .lp-step:last-child {
    border-bottom: 0;
  }
  .landing-page .lp-step h3 {
    margin-top: 18px;
  }
  .landing-page .lp-safety-line {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 0;
  }
  .landing-page .lp-seo-grid,
  .landing-page .lp-faq-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .landing-page .lp-footer-top {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 560px) {
  .landing-page .lp-brand {
    font-size: 15px;
  }
  .landing-page .lp-brand-mark {
    width: 34px;
    height: 34px;
  }
  .landing-page .lp-footer-links {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .landing-page .lp-footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }
  .landing-page .lp-legal-right {
    text-align: left;
    white-space: normal;
  }
  .landing-page .lp-hero-message-inner {
    padding: 40px 0 44px;
  }
  .landing-page .lp-eyebrow {
    margin-bottom: 18px;
    font-size: 26px;
  }
  .landing-page .lp-hero h1 {
    font-size: 40px;
    line-height: 1.05;
  }
  .landing-page .lp-hero-lead {
    font-size: 17px;
  }
  .landing-page .lp-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .landing-page .lp-hero-mosaic {
    grid-template-columns: 62% 38%;
    min-height: 390px;
  }
  .landing-page .lp-mosaic-caption {
    padding: 34px 12px 12px;
  }
  .landing-page .lp-mosaic-caption strong {
    font-size: 15px;
  }
  .landing-page .lp-mosaic-caption span {
    font-size: 10px;
  }
  .landing-page .lp-finder {
    grid-template-columns: 1fr;
  }
  .landing-page .lp-finder-title,
  .landing-page .lp-compact-field,
  .landing-page .lp-finder-action {
    padding: 17px 0;
    border-right: 0;
    border-top: 1px solid var(--ml-border);
  }
  .landing-page .lp-finder-title {
    border-top: 0;
  }
  .landing-page .lp-finder-action .lp-button {
    width: 100%;
  }
  .landing-page .lp-section-title {
    font-size: 37px;
  }
  .landing-page .lp-profiles {
    display: flex;
    gap: 12px;
    margin-right: -15px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
  }
  .landing-page .lp-profile {
    min-width: 74%;
    scroll-snap-align: start;
  }
  .landing-page .lp-profile-photo {
    height: 370px;
  }
  .landing-page .lp-profiles-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .landing-page .lp-price-layout {
    grid-template-columns: 1fr;
  }
  .landing-page .lp-price-item,
  .landing-page .lp-price-item:first-of-type {
    padding: 30px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.28);
  }
  .landing-page .lp-price-item:last-child {
    border-bottom: 0;
  }
  .landing-page .lp-price {
    font-size: 62px;
  }
  .landing-page .lp-link-columns {
    grid-template-columns: 1fr;
  }
  .landing-page .lp-final-row {
    min-height: 270px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }
  .landing-page .lp-footer-links {
    grid-template-columns: 1fr;
  }
  .landing-page .lp-footer-legal {
    flex-direction: column;
  }
  .landing-page .lp-legal-right {
    text-align: left;
  }
}

@media (max-width: 390px) {
  .landing-page .lp-hero-message-inner {
    padding: 32px 0 36px;
  }
  .landing-page .lp-hero h1 {
    font-size: 34px;
    line-height: 1.06;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page .lp-mosaic-card img,
  .landing-page .lp-profile-photo img {
    transition: none;
  }
}
