.lp-page {
  --lp-font: var(--LUVIO-font, "Poppins", sans-serif);
  --lp-bg: #120d24;
  --lp-bg-soft: #1a1231;
  --lp-surface: rgba(255, 255, 255, 0.08);
  --lp-surface-strong: rgba(255, 255, 255, 0.12);
  --lp-surface-muted: rgba(255, 255, 255, 0.05);
  --lp-border: rgba(255, 255, 255, 0.12);
  --lp-border-strong: rgba(184, 150, 249, 0.4);
  --lp-text: #f8f4ff;
  --lp-text-muted: rgba(248, 244, 255, 0.74);
  --lp-text-soft: rgba(248, 244, 255, 0.56);
  --lp-primary: var(--LUVIO-btn-primary, #6b3ccb);
  --lp-primary-hover: var(--LUVIO-btn-primary-hover, #5430a0);
  --lp-primary-bright: var(--LUVIO-primary, #8148f7);
  --lp-secondary: var(--LUVIO-secondary, #eaa7ee);
  --lp-secondary-light: var(--LUVIO-secondary-light, #f7e2f8);
  --lp-success: var(--LUVIO-accent-1, #30f28e);
  --lp-warning: var(--LUVIO-accent-2, #ffdb59);
  --lp-like: var(--LUVIO-like, #e40c4e);
  --lp-shadow: 0 24px 64px rgba(8, 4, 20, 0.36);
  --lp-shadow-soft: 0 14px 40px rgba(8, 4, 20, 0.22);
  --lp-radius: 24px;
  --lp-radius-card: 28px;
  --lp-radius-pill: var(--LUVIO-radius-button, 60px);
  --lp-motion-fast: 200ms;
  --lp-motion-base: 260ms;
  --lp-motion-slow: 320ms;
}

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

html {
  scroll-behavior: smooth;
}

body.lp-page {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(234, 167, 238, 0.12), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(129, 72, 247, 0.18), transparent 28%),
    linear-gradient(180deg, #120d24 0%, #1a1231 54%, #140f25 100%);
  color: var(--lp-text);
  font-family: var(--lp-font);
  display: flex;
  flex-direction: column;
}

img {
  display: block;
  max-width: 100%;
}

a,
button,
input,
textarea,
summary {
  font: inherit;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid rgba(240, 201, 242, 0.9);
  outline-offset: 4px;
}

.lp-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.lp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.56;
}

.lp-orb--a {
  top: -120px;
  right: -20px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(234, 167, 238, 0.9), rgba(129, 72, 247, 0.74));
}

.lp-orb--b {
  left: -88px;
  bottom: 12%;
  width: 240px;
  height: 240px;
  background: linear-gradient(160deg, rgba(129, 72, 247, 0.82), rgba(240, 201, 242, 0.36));
}

.lp-orb--c {
  right: 12%;
  bottom: -32px;
  width: 180px;
  height: 180px;
  background: linear-gradient(180deg, rgba(255, 219, 89, 0.7), rgba(228, 12, 78, 0.54));
}

.lp-mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.32;
}

.lp-root {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 20px 16px 52px;
}

.lp-header {
  position: sticky;
  top: 12px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--lp-radius) + 4px);
  background: rgba(20, 13, 37, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(5, 2, 16, 0.18);
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.lp-brand__logo {
  width: 36px;
  height: 36px;
}

.lp-brand span {
  color: #f3f3f3;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-nav__link,
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--lp-radius-pill);
  background: transparent;
  color: var(--lp-text);
  font-size: 0.96rem;
  font-weight: var(--LUVIO-font-button, 500);
  line-height: 1;
  text-decoration: none;
  transition:
    transform var(--lp-motion-base) ease,
    box-shadow var(--lp-motion-base) ease,
    border-color var(--lp-motion-fast) ease,
    background-color var(--lp-motion-fast) ease,
    color var(--lp-motion-fast) ease;
}

.lp-nav__link:hover,
.lp-btn:hover {
  transform: translateY(-2px);
}

.lp-nav__link {
  border-color: var(--lp-border);
  background: rgba(255, 255, 255, 0.04);
}

.lp-nav__link:hover {
  background: rgba(255, 255, 255, 0.09);
}

.lp-nav__link--primary,
.lp-btn--primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-bright) 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(107, 60, 203, 0.32);
}

.lp-nav__link--primary:hover,
.lp-btn--primary:hover {
  background: linear-gradient(135deg, var(--lp-primary-hover) 0%, var(--lp-primary) 100%);
  box-shadow: 0 22px 42px rgba(107, 60, 203, 0.42);
}

.lp-btn--ghost {
  border-color: var(--lp-border);
  background: rgba(255, 255, 255, 0.05);
}

.lp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 12px 30px rgba(4, 2, 13, 0.18);
}

.lp-section {
  margin-top: 72px;
}

.lp-section__header {
  margin-bottom: 26px;
  max-width: 660px;
}

.lp-section__eyebrow {
  margin: 0 0 10px;
  color: rgba(240, 201, 242, 0.88);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lp-section__title {
  margin: 0 0 12px;
  color: var(--lp-text);
  font-size: clamp(1.85rem, 6vw, 3rem);
  font-weight: var(--LUVIO-font-h1, 700);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.lp-section__subtitle {
  margin: 0;
  color: var(--lp-text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--lp-motion-base) ease,
    transform var(--lp-motion-base) ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-hero {
  display: grid;
  gap: 28px;
  padding-top: 30px;
}

.lp-copy {
  max-width: 600px;
}

.lp-copy__eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border: 1px solid rgba(240, 201, 242, 0.2);
  border-radius: var(--lp-radius-pill);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(240, 201, 242, 0.9);
  font-size: 0.8rem;
  font-weight: 500;
}

.lp-copy__title {
  margin: 0;
  max-width: 8.3ch;
  font-size: clamp(2.5rem, 9vw, 4.6rem);
  font-weight: var(--LUVIO-font-h1, 700);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.lp-copy__subtitle {
  margin: 18px 0 0;
  max-width: 35rem;
  color: var(--lp-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.lp-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.lp-actions .lp-btn {
  width: 100%;
}

.lp-trust-cue {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--lp-text-soft);
  font-size: 0.9rem;
}

.lp-trust-cue li {
  position: relative;
}

.lp-trust-cue li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(240, 201, 242, 0.56);
  transform: translateY(-50%);
}

.lp-social {
  margin-top: 20px;
}

.lp-social__label {
  margin: 0 0 12px;
  color: var(--lp-text-soft);
  font-size: 0.86rem;
}

.lp-social__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lp-social__form {
  margin: 0;
}

.lp-social__btn {
  min-width: min(100%, 280px);
  padding: 0 18px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-pill);
  background: rgba(255, 255, 255, 0.05);
  color: var(--lp-text);
  cursor: pointer;
}

.lp-social__btn:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 28px rgba(6, 3, 18, 0.22);
}

.lp-visual {
  order: 2;
}

.lp-hero-stack {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  padding: 10px 10px 26px;
}

.lp-card,
.lp-step,
.lp-feature-card,
.lp-flow,
.lp-trust,
.lp-story-card,
.lp-proof__item,
.lp-premium,
.lp-inline-cta,
.lp-cta {
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow-soft);
  transition:
    transform var(--lp-motion-base) ease,
    box-shadow var(--lp-motion-base) ease,
    border-color var(--lp-motion-fast) ease,
    background-color var(--lp-motion-fast) ease;
}

.lp-card:hover,
.lp-step:hover,
.lp-feature-card:hover,
.lp-story-card:hover,
.lp-proof__item:hover,
.lp-premium:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 201, 242, 0.24);
  box-shadow: 0 20px 48px rgba(8, 4, 20, 0.3);
}

.lp-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--lp-radius-card);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(18px);
}

.lp-card__media,
.lp-flow-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.lp-card__img,
.lp-flow-card__media img,
.lp-mini-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-card__body {
  padding: 18px;
}

.lp-card__topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.lp-card__status,
.lp-card__tag,
.lp-story-card__badge,
.lp-flow-match__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: var(--lp-radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
}

.lp-card__status {
  background: rgba(48, 242, 142, 0.14);
  color: #dfffe9;
}

.lp-card__status--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--lp-text-soft);
}

.lp-card__name {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 600;
}

.lp-card__bio {
  margin: 10px 0 0;
  color: var(--lp-text-muted);
  font-size: 0.97rem;
  line-height: 1.6;
}

.lp-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.lp-card__tag {
  background: rgba(255, 255, 255, 0.08);
  color: var(--lp-text);
}

.lp-float {
  position: absolute;
  border-radius: 22px;
  background: rgba(17, 11, 31, 0.88);
  border: 1px solid rgba(240, 201, 242, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(7, 3, 17, 0.34);
}

.lp-float--match {
  top: 28px;
  left: -4px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  animation: lp-drift-a 8s ease-in-out infinite;
}

.lp-float__value {
  font-size: 1rem;
  font-weight: 700;
}

.lp-float__meta {
  color: var(--lp-text-soft);
  font-size: 0.82rem;
}

.lp-float--profile {
  right: -4px;
  top: 116px;
  width: 148px;
  overflow: hidden;
  animation: lp-drift-b 9s ease-in-out infinite;
}

.lp-mini-card__media {
  aspect-ratio: 4 / 5;
}

.lp-mini-card__body {
  display: grid;
  gap: 3px;
  padding: 10px 12px 12px;
}

.lp-mini-card__body strong {
  font-size: 0.92rem;
}

.lp-mini-card__body span {
  color: var(--lp-text-soft);
  font-size: 0.76rem;
}

.lp-float--chat {
  right: 18px;
  bottom: 0;
  display: grid;
  gap: 10px;
  width: min(82%, 260px);
  padding: 14px;
  animation: lp-drift-c 10s ease-in-out infinite;
}

.lp-chat-bubble,
.lp-flow-chat__bubble {
  margin: 0;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--lp-text);
  font-size: 0.88rem;
  line-height: 1.45;
}

.lp-chat-bubble--accent,
.lp-flow-chat__bubble--accent {
  justify-self: end;
  background: linear-gradient(135deg, rgba(107, 60, 203, 0.88), rgba(129, 72, 247, 0.96));
}

@keyframes lp-drift-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes lp-drift-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 8px, 0);
  }
}

@keyframes lp-drift-c {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -6px, 0);
  }
}

.lp-steps {
  display: grid;
  gap: 16px;
}

.lp-step {
  padding: 20px;
  border-radius: var(--lp-radius);
  background: rgba(17, 11, 31, 0.68);
}

.lp-step__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lp-step__icon,
.lp-feature-card__icon,
.lp-trust-item__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(129, 72, 247, 0.22), rgba(234, 167, 238, 0.16));
  border: 1px solid rgba(240, 201, 242, 0.18);
}

.lp-step__icon img,
.lp-feature-card__icon img,
.lp-trust-item__icon img {
  filter: brightness(1.2);
}

.lp-step__index {
  color: rgba(240, 201, 242, 0.84);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lp-step__title {
  margin: 18px 0 8px;
  font-size: 1.1rem;
  line-height: 1.35;
}

.lp-step__text {
  margin: 0;
  color: var(--lp-text-muted);
  line-height: 1.6;
}

.lp-flow {
  margin-top: 28px;
  padding: 22px;
  border-radius: calc(var(--lp-radius) + 4px);
  background: linear-gradient(180deg, rgba(17, 11, 31, 0.82) 0%, rgba(24, 16, 45, 0.74) 100%);
}

.lp-flow__header h3 {
  margin: 0;
  font-size: 1.4rem;
}

.lp-flow__header p {
  margin: 10px 0 0;
  color: var(--lp-text-muted);
  line-height: 1.6;
}

.lp-flow__track {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.lp-flow-step {
  position: relative;
  display: grid;
  gap: 12px;
}

.lp-flow-step__label {
  color: rgba(240, 201, 242, 0.88);
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.lp-flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -10px;
  width: 1px;
  height: 14px;
  background: linear-gradient(180deg, rgba(240, 201, 242, 0.72), rgba(240, 201, 242, 0));
  opacity: 0;
  transform: scaleY(0.4);
  transform-origin: top;
  transition: opacity var(--lp-motion-base) ease, transform var(--lp-motion-base) ease;
}

.lp-flow.is-visible .lp-flow-step:not(:last-child)::after {
  opacity: 1;
  transform: scaleY(1);
}

.lp-flow-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.lp-flow-card__body {
  display: grid;
  gap: 4px;
  padding: 12px 14px 14px;
}

.lp-flow-card__body strong {
  font-size: 1rem;
}

.lp-flow-card__body span {
  color: var(--lp-text-soft);
  font-size: 0.82rem;
}

.lp-flow-card__stamp {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(228, 12, 78, 0.94), rgba(255, 128, 156, 0.82));
  box-shadow: 0 14px 34px rgba(228, 12, 78, 0.28);
  color: #fff;
  font-size: 1.1rem;
  animation: lp-soft-pulse 2.2s ease-in-out infinite;
}

@keyframes lp-soft-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.07);
  }
}

.lp-flow-match {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(129, 72, 247, 0.3), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(240, 201, 242, 0.22);
}

.lp-flow-match__avatars {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-flow-match__avatars img {
  width: 72px;
  height: 72px;
  margin-left: -10px;
  border: 3px solid rgba(26, 18, 49, 0.92);
  border-radius: 50%;
  object-fit: cover;
}

.lp-flow-match__avatars img:first-child {
  margin-left: 0;
}

.lp-flow-match__badge {
  width: fit-content;
  background: rgba(48, 242, 142, 0.14);
  color: #dffff1;
}

.lp-flow-match p {
  margin: 0;
  color: var(--lp-text-muted);
  line-height: 1.55;
}

.lp-flow-chat {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.lp-inline-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  margin-top: 24px;
  padding: 18px;
  border-radius: var(--lp-radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(107, 60, 203, 0.18));
}

.lp-inline-cta p {
  margin: 0;
  color: var(--lp-text);
  line-height: 1.55;
}

.lp-inline-cta .lp-btn {
  width: 100%;
}

.lp-feature-grid,
.lp-trust__grid {
  display: grid;
  gap: 16px;
}

.lp-feature-card {
  padding: 20px;
  border-radius: var(--lp-radius);
  background: rgba(17, 11, 31, 0.7);
}

.lp-feature-card h3 {
  margin: 16px 0 8px;
  font-size: 1.08rem;
}

.lp-feature-card p {
  margin: 0;
  color: var(--lp-text-muted);
  line-height: 1.6;
}

.lp-trust {
  margin-top: 24px;
  padding: 22px;
  border-radius: calc(var(--lp-radius) + 4px);
  background: rgba(255, 255, 255, 0.04);
}

.lp-trust__header h3 {
  margin: 0;
  font-size: 1.35rem;
}

.lp-trust-item {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-trust-item h4 {
  margin: 14px 0 8px;
  font-size: 1rem;
}

.lp-trust-item p {
  margin: 0;
  color: var(--lp-text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.lp-story-shell {
  margin-top: 8px;
}

.lp-story-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(84%, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.lp-story-track::-webkit-scrollbar {
  display: none;
}

.lp-story-card {
  scroll-snap-align: start;
  min-height: 100%;
  padding: 20px;
  border-radius: var(--lp-radius);
  background: rgba(255, 255, 255, 0.05);
}

.lp-story-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lp-story-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.lp-story-card__name {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
}

.lp-story-card__badge {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(240, 201, 242, 0.96);
}

.lp-story-card__quote {
  margin: 18px 0 0;
  color: var(--lp-text);
  line-height: 1.7;
}

.lp-story-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.lp-story-dots__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: transform var(--lp-motion-fast) ease, background-color var(--lp-motion-fast) ease;
}

.lp-story-dots__dot.is-active {
  background: rgba(240, 201, 242, 0.96);
  transform: scale(1.14);
}

.lp-proof {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.lp-proof__item {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.lp-proof__value {
  display: block;
  margin-bottom: 6px;
  font-size: 1.22rem;
  font-weight: 700;
}

.lp-proof__label {
  color: var(--lp-text-soft);
  font-size: 0.9rem;
}

.lp-premium {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: 22px;
  border-radius: calc(var(--lp-radius) + 2px);
  background: linear-gradient(135deg, rgba(107, 60, 203, 0.28), rgba(234, 167, 238, 0.08));
  border-color: var(--lp-border-strong);
}

.lp-premium__copy h3 {
  margin: 0;
  font-size: 1.45rem;
}

.lp-premium__copy p:last-child {
  margin: 10px 0 0;
  color: var(--lp-text-muted);
  line-height: 1.6;
}

.lp-premium__list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-premium__list li {
  position: relative;
  padding-left: 20px;
  color: var(--lp-text);
  line-height: 1.55;
}

.lp-premium__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-warning), var(--lp-secondary));
}

.lp-faq {
  display: grid;
  gap: 12px;
}

.lp-faq__item {
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid var(--lp-border);
  background: rgba(255, 255, 255, 0.04);
}

.lp-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}

.lp-faq__item summary::-webkit-details-marker {
  display: none;
}

.lp-faq__item summary::after {
  content: "+";
  color: var(--lp-text-soft);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform var(--lp-motion-fast) ease, color var(--lp-motion-fast) ease;
}

.lp-faq__item[open] summary::after {
  color: var(--lp-text);
  transform: rotate(45deg);
}

.lp-faq__item p {
  margin: 12px 0 0;
  color: var(--lp-text-muted);
  line-height: 1.6;
}

.lp-cta {
  display: grid;
  gap: 20px;
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(107, 60, 203, 0.46), rgba(240, 201, 242, 0.16));
  border-color: rgba(240, 201, 242, 0.22);
  box-shadow: var(--lp-shadow);
}

.lp-cta__content h2 {
  margin: 0;
  font-size: clamp(1.8rem, 6vw, 2.7rem);
  line-height: 1.08;
}

.lp-cta__content p {
  margin: 12px 0 0;
  color: var(--lp-text-muted);
  line-height: 1.65;
}

.lp-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-cta__actions .lp-btn {
  width: 100%;
}

.lp-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.lp-footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.lp-footer__brand-text strong {
  color: #f3f3f3;
  font-size: 1rem;
  font-weight: 600;
}

.lp-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.lp-footer__links a {
  color: var(--lp-text-soft);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--lp-motion-fast) ease;
}

.lp-footer__links a:hover {
  color: var(--lp-text);
}

.lp-footer__meta {
  color: rgba(248, 244, 255, 0.5);
  font-size: 0.84rem;
}

@media (min-width: 680px) {
  .lp-root {
    padding-left: 24px;
    padding-right: 24px;
  }

  .lp-section {
    margin-top: 84px;
  }

  .lp-steps,
  .lp-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .lp-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .lp-root {
    padding-top: 26px;
    padding-bottom: 72px;
  }

  .lp-header {
    padding: 14px 18px;
  }

  .lp-hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    align-items: center;
    gap: clamp(32px, 5vw, 72px);
    padding-top: 48px;
  }

  .lp-actions {
    flex-direction: row;
  }

  .lp-actions .lp-btn,
  .lp-inline-cta .lp-btn,
  .lp-cta__actions .lp-btn {
    width: auto;
  }

  .lp-copy__title {
    max-width: 9.2ch;
  }

  .lp-social__btn {
    min-width: 224px;
  }

  .lp-hero-stack {
    max-width: 500px;
  }

  .lp-flow__track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }

  .lp-flow-step:not(:last-child)::after {
    left: auto;
    right: -11px;
    top: calc(50% + 12px);
    bottom: auto;
    width: 22px;
    height: 1px;
    transform: scaleX(0.4);
    transform-origin: left;
    background: linear-gradient(90deg, rgba(240, 201, 242, 0.72), rgba(240, 201, 242, 0));
  }

  .lp-flow.is-visible .lp-flow-step:not(:last-child)::after {
    transform: scaleX(1);
  }

  .lp-inline-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .lp-feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lp-trust__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
  }

  .lp-trust__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lp-story-track {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-columns: unset;
    overflow: visible;
  }

  .lp-story-dots {
    display: none;
  }

  .lp-premium {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
  }

  .lp-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .lp-cta__actions {
    flex-direction: row;
  }

  .lp-footer {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    text-align: left;
  }

  .lp-footer__brand,
  .lp-footer__links {
    justify-content: flex-start;
  }

  .lp-footer__meta {
    text-align: right;
  }
}

@media (min-width: 1200px) {
  .lp-root {
    padding-left: 32px;
    padding-right: 32px;
  }

  .lp-header {
    top: 18px;
  }

  .lp-section {
    margin-top: 96px;
  }

  .lp-card__body {
    padding: 22px;
  }

  .lp-float--match {
    left: -20px;
  }

  .lp-float--profile {
    right: -12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Light landing redesign */
.lp-page {
  --lp-bg: var(--LUVIO-bg, #fafafa);
  --lp-bg-soft: #fbf7ff;
  --lp-surface: rgba(255, 255, 255, 0.94);
  --lp-surface-strong: #ffffff;
  --lp-surface-soft: rgba(247, 226, 248, 0.4);
  --lp-border: rgba(129, 72, 247, 0.14);
  --lp-border-strong: rgba(129, 72, 247, 0.22);
  --lp-text: var(--LUVIO-text, #040404);
  --lp-text-muted: rgba(4, 4, 4, 0.66);
  --lp-text-soft: rgba(4, 4, 4, 0.52);
  --lp-primary: var(--LUVIO-btn-primary, #6b3ccb);
  --lp-primary-hover: var(--LUVIO-btn-primary-hover, #5430a0);
  --lp-primary-bright: var(--LUVIO-primary, #8148f7);
  --lp-secondary: var(--LUVIO-secondary, #eaa7ee);
  --lp-secondary-light: var(--LUVIO-secondary-light, #f7e2f8);
  --lp-like: var(--LUVIO-like, #e40c4e);
  --lp-shadow: 0 20px 60px rgba(53, 22, 108, 0.08);
  --lp-shadow-soft: 0 14px 36px rgba(53, 22, 108, 0.07);
  --lp-radius: 26px;
  --lp-radius-card: 34px;
}

body.lp-page {
  background:
    radial-gradient(circle at top left, rgba(234, 167, 238, 0.18), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(129, 72, 247, 0.12), transparent 22%),
    linear-gradient(180deg, #fefbff 0%, #fbf6ff 30%, #ffffff 68%, #fdfbff 100%);
  color: var(--lp-text);
}

body.lp-page.is-nav-open {
  overflow: hidden;
}

:focus-visible {
  outline: 2px solid rgba(129, 72, 247, 0.82);
}

.lp-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.lp-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.58;
}

.lp-glow--a {
  top: -120px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: rgba(234, 167, 238, 0.64);
}

.lp-glow--b {
  right: -40px;
  top: 22%;
  width: 280px;
  height: 280px;
  background: rgba(129, 72, 247, 0.22);
}

.lp-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(129, 72, 247, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(129, 72, 247, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.46;
}

.lp-root {
  width: min(100%, 1440px);
  padding: 18px 16px 72px;
}

.lp-main {
  display: grid;
  gap: 88px;
  padding-top: 22px;
}

.lp-section {
  margin-top: 0;
}

.lp-section__intro {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
  max-width: 680px;
}

.lp-section__intro--wide {
  max-width: none;
}

.lp-section__eyebrow {
  margin: 0;
  color: var(--lp-primary);
  letter-spacing: 0.18em;
}

.lp-section__title {
  color: var(--lp-text);
  font-size: clamp(2rem, 5vw, 4rem);
}

.lp-section__subtitle {
  color: var(--lp-text-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.lp-header {
  position: sticky;
  top: 16px;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(129, 72, 247, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 50px rgba(63, 27, 135, 0.08);
  backdrop-filter: blur(20px);
}

.lp-brand .lp-brand__name {
  color: var(--lp-text);
  font-size: 1.08rem;
  font-weight: 600;
}

.lp-nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--lp-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.lp-nav-toggle span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--lp-text);
  transition: transform var(--lp-motion-base) ease, opacity var(--lp-motion-fast) ease;
}

.lp-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.lp-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.lp-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.lp-nav {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--lp-border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(45, 15, 112, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--lp-motion-base) ease, transform var(--lp-motion-base) ease;
}

.lp-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lp-nav__anchor,
.lp-nav__signin,
.lp-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: var(--lp-radius-pill);
  text-decoration: none;
  transition: transform var(--lp-motion-base) ease, box-shadow var(--lp-motion-base) ease, background-color var(--lp-motion-fast) ease, border-color var(--lp-motion-fast) ease;
}

.lp-nav__anchor,
.lp-nav__signin {
  border: 1px solid transparent;
  color: rgba(4, 4, 4, 0.72);
  font-weight: 500;
}

.lp-nav__anchor:hover,
.lp-nav__signin:hover,
.lp-nav__cta:hover,
.lp-btn:hover {
  transform: translateY(-2px);
}

.lp-nav__cta,
.lp-btn--primary {
  background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-bright) 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(107, 60, 203, 0.2);
}

.lp-nav__cta:hover,
.lp-btn--primary:hover {
  background: linear-gradient(135deg, var(--lp-primary-hover) 0%, var(--lp-primary) 100%);
  box-shadow: 0 20px 36px rgba(107, 60, 203, 0.24);
}

.lp-btn,
.lp-nav__cta,
.lp-nav__signin {
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: var(--LUVIO-font-button, 500);
}

.lp-btn {
  min-height: 54px;
}

.lp-btn--secondary {
  border-color: var(--lp-border);
  background: rgba(255, 255, 255, 0.86);
  color: var(--lp-text);
  box-shadow: var(--lp-shadow-soft);
}

.lp-btn--secondary:hover {
  border-color: rgba(129, 72, 247, 0.2);
  background: #fff;
}

.lp-hero {
  gap: 34px;
  padding-top: 8px;
}

.lp-hero__copy {
  max-width: 640px;
}

.lp-pill {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(129, 72, 247, 0.12);
  border-radius: var(--lp-radius-pill);
  background: rgba(255, 255, 255, 0.86);
  color: var(--lp-primary);
  font-size: 0.82rem;
  font-weight: 500;
}

.lp-hero__title {
  margin: 0;
  max-width: 9ch;
  color: var(--lp-text);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.lp-hero__subtitle {
  margin: 18px 0 0;
  max-width: 38rem;
  color: var(--lp-text-muted);
  font-size: 1.06rem;
  line-height: 1.8;
}

.lp-actions {
  gap: 14px;
  margin-top: 28px;
}

.lp-actions .lp-btn {
  width: 100%;
}

.lp-trust-cue {
  gap: 10px;
  margin-top: 18px;
}

.lp-trust-cue li {
  padding: 9px 14px;
  border-radius: var(--lp-radius-pill);
  background: rgba(255, 255, 255, 0.82);
  color: var(--lp-text-soft);
  box-shadow: 0 10px 26px rgba(54, 18, 117, 0.06);
}

.lp-trust-cue li:not(:last-child)::after {
  display: none;
}

.lp-hero__highlights {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.lp-highlight {
  padding: 18px 20px;
  border: 1px solid var(--lp-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--lp-shadow-soft);
}

.lp-highlight__label {
  display: block;
  margin-bottom: 8px;
  color: var(--lp-primary);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-highlight p {
  margin: 0;
  color: var(--lp-text-muted);
  line-height: 1.7;
}

.lp-hero__visual {
  order: 2;
}

.lp-stage {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 16px 6px 58px;
}

.lp-phone,
.lp-step,
.lp-showcase,
.lp-editorial,
.lp-benefit-card,
.lp-safety-panel,
.lp-story-card,
.lp-proof-card,
.lp-premium-panel,
.lp-inline-cta,
.lp-cta-band {
  box-shadow: var(--lp-shadow-soft);
}

.lp-phone {
  position: relative;
  overflow: hidden;
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(129, 72, 247, 0.12);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.lp-phone__status {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--lp-primary);
  font-size: 0.8rem;
  font-weight: 600;
}

.lp-phone__media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
}

.lp-phone__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-phone__body {
  padding: 18px 8px 8px;
}

.lp-phone__body h2 {
  margin: 0;
  font-size: 1.5rem;
}

.lp-phone__body p {
  margin: 10px 0 0;
  color: var(--lp-text-muted);
  line-height: 1.7;
}

.lp-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.lp-tag-row span,
.lp-flow-match__badge,
.lp-story-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: var(--lp-radius-pill);
  background: rgba(129, 72, 247, 0.1);
  color: var(--lp-primary);
  font-size: 0.8rem;
  font-weight: 600;
}

.lp-float-card,
.lp-mini-profile,
.lp-chat-card {
  position: absolute;
  border: 1px solid var(--lp-border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(55, 22, 120, 0.12);
  animation: lp-light-float 9s ease-in-out infinite;
}

.lp-float-card--match {
  top: 24px;
  left: -2px;
  display: grid;
  gap: 6px;
  width: min(70%, 240px);
  padding: 16px 18px;
}

.lp-float-card__eyebrow {
  color: var(--lp-primary);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.lp-float-card strong {
  font-size: 1rem;
}

.lp-float-card p {
  margin: 0;
  color: var(--lp-text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.lp-mini-profile {
  top: 136px;
  right: 0;
  width: 190px;
  overflow: hidden;
  animation-delay: -2.5s;
}

.lp-mini-profile__media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.lp-mini-profile__media img,
.lp-screen-chip img,
.lp-device-card img,
.lp-editorial__stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-mini-profile__body {
  display: grid;
  gap: 4px;
  padding: 12px 14px 14px;
}

.lp-mini-profile__body strong {
  font-size: 0.98rem;
}

.lp-mini-profile__body span {
  color: var(--lp-text-soft);
  font-size: 0.8rem;
  line-height: 1.45;
}

.lp-chat-card {
  right: 10px;
  bottom: 46px;
  display: grid;
  gap: 10px;
  width: min(82%, 280px);
  padding: 14px;
  animation-delay: -5s;
}

.lp-chat-card__bubble,
.lp-chat-preview p,
.lp-flow-chat p {
  margin: 0;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(129, 72, 247, 0.08);
  color: var(--lp-text);
  line-height: 1.6;
}

.lp-chat-card__bubble--accent,
.lp-chat-preview__accent {
  justify-self: end;
  background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-bright) 100%);
  color: #fff;
}

.lp-screen-ribbon {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  overflow: hidden;
}

.lp-screen-chip {
  display: grid;
  gap: 6px;
  width: 120px;
  padding: 12px;
  border: 1px solid var(--lp-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(54, 18, 117, 0.08);
}

.lp-screen-chip strong {
  color: var(--lp-text);
  font-size: 0.82rem;
  line-height: 1.35;
}

.lp-screen-chip span {
  color: var(--lp-text-soft);
  font-size: 0.76rem;
  line-height: 1.45;
}

@keyframes lp-light-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -7px, 0);
  }
}

.lp-step-grid,
.lp-benefit-grid,
.lp-safety-grid,
.lp-proof-strip {
  display: grid;
  gap: 16px;
}

.lp-step {
  padding: 24px;
  border: 1px solid var(--lp-border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
}

.lp-step__icon,
.lp-benefit-card__icon,
.lp-safety-item__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: rgba(129, 72, 247, 0.1);
}

.lp-step__icon img,
.lp-benefit-card__icon img,
.lp-safety-item__icon img {
  filter: none;
}

.lp-step__index {
  color: var(--lp-primary);
}

.lp-step h3 {
  margin: 18px 0 8px;
  color: var(--lp-text);
  font-size: 1.2rem;
}

.lp-step p {
  margin: 0;
  color: var(--lp-text-muted);
  line-height: 1.68;
}

.lp-showcase {
  display: grid;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--lp-border);
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(250, 244, 255, 0.92) 100%);
}

.lp-device-wall {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: 14px;
  align-items: end;
}

.lp-device-card {
  overflow: hidden;
  border: 1px solid rgba(129, 72, 247, 0.12);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(52, 19, 117, 0.08);
}

.lp-device-card--primary {
  grid-row: span 2;
}

.lp-showcase__content h3 {
  margin: 0;
  color: var(--lp-text);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.06;
}

.lp-showcase__content > p:last-of-type {
  margin: 12px 0 0;
  color: var(--lp-text-muted);
  line-height: 1.72;
}

.lp-flow {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lp-flow-step {
  display: grid;
  gap: 10px;
}

.lp-flow-step__label {
  color: var(--lp-primary);
}

.lp-flow-step__card,
.lp-flow-match,
.lp-flow-chat {
  border: 1px solid var(--lp-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(52, 19, 117, 0.07);
}

.lp-flow-step__card {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.lp-flow-step__card strong {
  color: var(--lp-text);
  font-size: 1rem;
}

.lp-flow-step__card span {
  color: var(--lp-text-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.lp-flow-step__card--accent {
  background: linear-gradient(180deg, rgba(129, 72, 247, 0.08), rgba(255, 255, 255, 0.96));
}

.lp-flow-step:not(:last-child)::after {
  background: linear-gradient(180deg, rgba(129, 72, 247, 0.42), rgba(129, 72, 247, 0));
}

.lp-flow-match {
  justify-items: center;
  gap: 12px;
  padding: 18px;
}

.lp-flow-match__avatars img {
  border-color: #fff;
}

.lp-flow-chat {
  padding: 16px;
}

.lp-inline-cta {
  gap: 14px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid var(--lp-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
}

.lp-inline-cta p {
  margin: 0;
  color: var(--lp-text);
  line-height: 1.6;
}

.lp-editorial-grid {
  display: grid;
  gap: 20px;
}

.lp-editorial {
  display: grid;
  gap: 24px;
  padding: 26px;
  border: 1px solid var(--lp-border);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
}

.lp-editorial__copy h3,
.lp-safety-panel__intro h3,
.lp-premium-panel__copy h3 {
  margin: 0;
  color: var(--lp-text);
  font-size: clamp(1.55rem, 3.8vw, 2.4rem);
  line-height: 1.1;
}

.lp-editorial__copy p,
.lp-safety-panel__intro p,
.lp-premium-panel__copy p:last-child {
  margin: 12px 0 0;
  color: var(--lp-text-muted);
  line-height: 1.72;
}

.lp-editorial__visual {
  display: grid;
}

.lp-editorial__stack {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 360px;
  padding: 20px;
  border-radius: 30px;
  background: linear-gradient(160deg, rgba(240, 201, 242, 0.42), rgba(129, 72, 247, 0.08));
}

.lp-editorial__stack img {
  width: min(100%, 250px);
  margin-left: auto;
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(51, 18, 113, 0.18);
}

.lp-editorial-note {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(129, 72, 247, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.lp-editorial-note strong {
  color: var(--lp-text);
  font-size: 0.98rem;
}

.lp-editorial-note span {
  color: var(--lp-text-soft);
  font-size: 0.86rem;
  line-height: 1.55;
}

.lp-bullet-list,
.lp-premium-panel__list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.lp-bullet-list li,
.lp-premium-panel__list li {
  position: relative;
  padding-left: 20px;
  color: var(--lp-text);
  line-height: 1.6;
}

.lp-bullet-list li::before,
.lp-premium-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-primary-bright), var(--lp-secondary));
}

.lp-chat-preview {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 226, 248, 0.58));
  border: 1px solid var(--lp-border);
}

.lp-chat-preview p {
  max-width: 20rem;
}

.lp-benefit-card {
  padding: 22px;
  border: 1px solid var(--lp-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
}

.lp-benefit-card h3,
.lp-safety-item h4 {
  margin: 16px 0 8px;
  color: var(--lp-text);
  font-size: 1.1rem;
}

.lp-benefit-card p,
.lp-safety-item p {
  margin: 0;
  color: var(--lp-text-muted);
  line-height: 1.65;
}

.lp-safety-panel {
  display: grid;
  gap: 22px;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--lp-border);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 244, 255, 0.92));
}

.lp-safety-item {
  padding: 20px;
  border: 1px solid rgba(129, 72, 247, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
}

.lp-story-shell {
  margin-top: 0;
}

.lp-story-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(88%, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.lp-story-card {
  padding: 24px;
  border: 1px solid var(--lp-border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  scroll-snap-align: start;
}

.lp-story-card__meta {
  align-items: center;
}

.lp-story-card__avatar {
  width: 60px;
  height: 60px;
}

.lp-story-card__name {
  color: var(--lp-text);
}

.lp-story-card__quote {
  color: var(--lp-text-muted);
  line-height: 1.74;
}

.lp-story-dots__dot {
  background: rgba(129, 72, 247, 0.18);
}

.lp-story-dots__dot.is-active {
  background: var(--lp-primary);
}

.lp-proof-card {
  padding: 20px;
  border: 1px solid var(--lp-border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 244, 255, 0.88));
}

.lp-proof-card__value {
  display: block;
  margin-bottom: 8px;
  color: var(--lp-primary);
  font-size: 1.08rem;
  font-weight: 700;
}

.lp-proof-card p {
  margin: 0;
  color: var(--lp-text-muted);
  line-height: 1.65;
}

.lp-premium-panel {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: 26px;
  border: 1px solid rgba(129, 72, 247, 0.14);
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(129, 72, 247, 0.14), rgba(240, 201, 242, 0.52));
}

.lp-faq {
  gap: 14px;
}

.lp-faq__item {
  padding: 18px 20px;
  border: 1px solid var(--lp-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.lp-faq__item summary::after {
  color: var(--lp-primary);
}

.lp-faq__item p {
  color: var(--lp-text-muted);
}

.lp-cta-band {
  display: grid;
  gap: 22px;
  padding: 32px 28px;
  border: 1px solid rgba(129, 72, 247, 0.12);
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(129, 72, 247, 0.16), rgba(255, 255, 255, 0.94));
  box-shadow: 0 18px 48px rgba(61, 24, 132, 0.1);
}

.lp-cta-band__copy h2 {
  margin: 0;
  color: var(--lp-text);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.04;
}

.lp-cta-band__copy p:last-child {
  margin: 12px 0 0;
  color: var(--lp-text-muted);
  line-height: 1.72;
}

.lp-cta-band__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-cta-band__actions .lp-btn {
  width: 100%;
}

.lp-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 26px;
  margin-top: 84px;
  padding-top: 36px;
  border-top: 1px solid var(--lp-border);
  text-align: left;
}

.lp-footer__top {
  display: grid;
  gap: 30px;
}

.lp-footer__brand p {
  margin: 16px 0 0;
  max-width: 28rem;
  color: var(--lp-text-muted);
  line-height: 1.72;
}

.lp-footer__cols {
  display: grid;
  gap: 24px;
}

.lp-footer__col {
  display: grid;
  gap: 10px;
}

.lp-footer__col h3 {
  margin: 0 0 4px;
  color: var(--lp-text);
  font-size: 0.98rem;
}

.lp-footer__col a {
  color: var(--lp-text-muted);
  text-decoration: none;
  transition: color var(--lp-motion-fast) ease;
}

.lp-footer__col a:hover {
  color: var(--lp-text);
}

.lp-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lp-footer__socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--lp-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(63, 27, 135, 0.08);
}

.lp-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(129, 72, 247, 0.08);
  color: var(--lp-text-soft);
  font-size: 0.92rem;
}

@media (min-width: 680px) {
  .lp-root {
    padding-left: 24px;
    padding-right: 24px;
  }

  .lp-step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .lp-proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .lp-root {
    padding-top: 24px;
    padding-bottom: 88px;
  }

  .lp-main {
    gap: 112px;
    padding-top: 34px;
  }

  .lp-header {
    padding: 16px 20px;
  }

  .lp-nav-toggle {
    display: none;
  }

  .lp-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .lp-nav__anchor {
    color: var(--lp-text-muted);
  }

  .lp-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
    align-items: center;
    gap: clamp(40px, 6vw, 92px);
    padding-top: 18px;
  }

  .lp-actions {
    flex-direction: row;
  }

  .lp-actions .lp-btn,
  .lp-inline-cta .lp-btn,
  .lp-cta-band__actions .lp-btn {
    width: auto;
  }

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

  .lp-stage {
    max-width: 620px;
    padding-bottom: 30px;
  }

  .lp-phone {
    width: min(100%, 440px);
  }

  .lp-float-card--match {
    left: -26px;
  }

  .lp-mini-profile {
    right: -18px;
  }

  .lp-showcase {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    padding: 30px;
  }

  .lp-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .lp-flow-step:not(:last-child)::after {
    left: auto;
    right: -11px;
    top: calc(50% + 10px);
    bottom: auto;
    width: 22px;
    height: 1px;
    transform-origin: left;
    background: linear-gradient(90deg, rgba(129, 72, 247, 0.42), rgba(129, 72, 247, 0));
  }

  .lp-inline-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .lp-editorial {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    align-items: center;
  }

  .lp-editorial--reverse .lp-editorial__copy {
    order: 2;
  }

  .lp-editorial--reverse .lp-editorial__visual {
    order: 1;
  }

  .lp-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-safety-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lp-story-track {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

  .lp-story-dots {
    display: none;
  }

  .lp-premium-panel {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    align-items: center;
  }

  .lp-cta-band {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .lp-cta-band__actions {
    flex-direction: row;
  }

  .lp-footer__top {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  }

  .lp-footer__cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-footer__bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .lp-root {
    padding-left: 32px;
    padding-right: 32px;
  }

  .lp-section__intro--wide {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: end;
  }

  .lp-stage {
    max-width: 660px;
  }

  .lp-screen-ribbon {
    position: absolute;
    left: -8px;
    right: auto;
    bottom: 10px;
    margin-top: 0;
  }
}

/* Mobile-first responsive refinements */
.lp-root {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 16px 16px 64px;
}

.lp-main {
  gap: 72px;
  padding-top: 20px;
}

.lp-section[id] {
  scroll-margin-top: 108px;
}

.lp-section__intro {
  gap: 12px;
  margin-bottom: 24px;
}

.lp-section__title {
  font-size: clamp(1.9rem, 9vw, 3.8rem);
}

.lp-header {
  top: 12px;
  gap: 10px;
  padding: 12px 14px;
}

.lp-brand {
  min-width: 0;
}

.lp-brand .lp-brand__name {
  font-size: 1rem;
}

.lp-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.lp-header__signin,
.lp-header__cta {
  min-height: 44px;
}

.lp-header__signin {
  padding: 0 4px;
  color: var(--lp-text-muted);
  font-size: 0.92rem;
  text-decoration: none;
}

.lp-header__cta {
  min-width: 0;
  padding: 0 16px;
  box-shadow: 0 12px 24px rgba(107, 60, 203, 0.18);
}

.lp-nav-toggle {
  width: 42px;
  height: 42px;
  margin-left: 0;
}

.lp-nav {
  top: calc(100% + 10px);
  padding: 16px;
  max-height: min(72vh, 420px);
  overflow-y: auto;
}

.lp-nav .lp-nav__signin,
.lp-nav .lp-nav__cta {
  display: none;
}

.lp-hero {
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  padding-top: 6px;
}

.lp-hero__copy {
  max-width: none;
}

.lp-hero__title {
  max-width: 8.4ch;
  font-size: clamp(2.65rem, 12vw, 5.6rem);
}

.lp-hero__subtitle {
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.72;
}

.lp-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.lp-actions .lp-btn,
.lp-inline-cta .lp-btn,
.lp-premium-panel__actions .lp-btn,
.lp-cta-band__actions .lp-btn {
  width: 100%;
  min-height: 48px;
}

.lp-trust-cue {
  gap: 10px;
}

.lp-trust-cue li {
  line-height: 1.45;
}

.lp-hero__highlights {
  grid-template-columns: minmax(0, 1fr);
}

.lp-hero__visual {
  order: 2;
}

.lp-stage {
  max-width: 100%;
  padding: 14px 0 58px;
}

.lp-phone {
  width: min(100%, 344px);
  padding: 12px;
}

.lp-phone__body {
  padding: 16px 6px 6px;
}

.lp-float-card--match {
  top: 14px;
  left: 10px;
  width: min(64%, 212px);
  padding: 14px 16px;
}

.lp-mini-profile {
  top: auto;
  right: 10px;
  bottom: 190px;
  width: 152px;
}

.lp-chat-card {
  right: 10px;
  left: 10px;
  bottom: 18px;
  width: auto;
  padding: 12px;
}

.lp-screen-ribbon {
  margin-top: 14px;
  overflow-x: auto;
  padding: 0 6px 6px;
  scroll-snap-type: x proximity;
}

.lp-screen-chip {
  flex: 0 0 118px;
  scroll-snap-align: start;
}

.lp-step-grid,
.lp-benefit-grid,
.lp-proof-strip {
  grid-template-columns: minmax(0, 1fr);
}

.lp-step,
.lp-benefit-card,
.lp-safety-item,
.lp-story-card,
.lp-proof-card,
.lp-inline-cta,
.lp-editorial,
.lp-showcase,
.lp-premium-panel,
.lp-cta-band {
  transition:
    transform var(--lp-motion-base) ease,
    box-shadow var(--lp-motion-base) ease,
    border-color var(--lp-motion-fast) ease;
}

.lp-step,
.lp-benefit-card,
.lp-proof-card {
  padding: 22px;
}

.lp-showcase {
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  padding: 20px;
}

.lp-device-wall {
  gap: 12px;
}

.lp-flow {
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.lp-flow-step:not(:last-child)::after {
  left: 18px;
  bottom: -10px;
  width: 1px;
  height: 12px;
  transform-origin: top;
}

.lp-inline-cta {
  display: grid;
}

.lp-editorial-grid {
  gap: 18px;
}

.lp-editorial {
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
}

.lp-editorial__copy {
  order: 2;
}

.lp-editorial__visual {
  order: 1;
}

.lp-editorial__stack {
  min-height: 300px;
}

.lp-editorial__stack img {
  width: min(100%, 220px);
}

.lp-benefit-grid {
  gap: 16px;
}

.lp-safety-panel {
  gap: 18px;
  padding: 22px;
}

.lp-safety-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lp-safety-item {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  padding: 18px 14px;
}

.lp-safety-item h4,
.lp-safety-item p {
  max-width: 15ch;
}

.lp-story-shell {
  overflow: hidden;
}

.lp-story-track {
  grid-auto-flow: column;
  grid-auto-columns: calc(100% - 12px);
  gap: 14px;
  padding: 0 8px 8px 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-left: 0;
}

.lp-story-card {
  display: grid;
  gap: 16px;
  min-height: 100%;
  padding: 22px;
}

.lp-story-card__meta {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.lp-story-card__avatar {
  width: 72px;
  height: 72px;
}

.lp-story-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.lp-premium-panel {
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin-top: 24px;
  padding: 20px;
}

.lp-premium-panel__media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(129, 72, 247, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(52, 19, 117, 0.1);
}

.lp-premium-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-premium-panel__content,
.lp-premium-panel__actions {
  display: grid;
  gap: 18px;
}

.lp-premium-panel__copy {
  display: grid;
  gap: 8px;
}

.lp-premium-panel__copy p:last-child {
  margin-top: 0;
}

.lp-faq {
  gap: 12px;
}

.lp-cta-band {
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  padding: 26px 22px;
}

.lp-cta-band__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.lp-footer {
  margin-top: 72px;
}

.lp-footer__top {
  gap: 24px;
}

.lp-footer__cols {
  gap: 22px;
}

@media (hover: hover) and (pointer: fine) {
  .lp-step:hover,
  .lp-benefit-card:hover,
  .lp-safety-item:hover,
  .lp-story-card:hover,
  .lp-proof-card:hover,
  .lp-inline-cta:hover,
  .lp-editorial:hover,
  .lp-showcase:hover,
  .lp-premium-panel:hover,
  .lp-cta-band:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(53, 22, 108, 0.12);
  }
}

@media (min-width: 768px) {
  .lp-root {
    padding: 20px 24px 76px;
  }

  .lp-main {
    gap: 88px;
    padding-top: 24px;
  }

  .lp-header {
    gap: 14px;
    padding: 14px 16px;
  }

  .lp-step-grid,
  .lp-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-showcase {
    padding: 24px;
  }

  .lp-story-track {
    grid-auto-columns: minmax(47%, 1fr);
  }

  .lp-premium-panel {
    padding: 24px;
  }

  .lp-cta-band {
    padding: 30px 26px;
  }

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

@media (min-width: 1024px) {
  .lp-root {
    padding: 24px 28px 88px;
  }

  .lp-main {
    gap: 108px;
    padding-top: 30px;
  }

  .lp-header {
    gap: 18px;
    padding: 16px 20px;
  }

  .lp-header__actions {
    display: none;
  }

  .lp-nav-toggle {
    display: none;
  }

  .lp-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    padding: 0;
    max-height: none;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .lp-nav .lp-nav__signin,
  .lp-nav .lp-nav__cta {
    display: inline-flex;
  }

  .lp-nav__anchor {
    color: var(--lp-text-muted);
  }

  .lp-hero {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    align-items: center;
    gap: clamp(40px, 5vw, 86px);
    padding-top: 14px;
  }

  .lp-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .lp-actions .lp-btn,
  .lp-inline-cta .lp-btn,
  .lp-premium-panel__actions .lp-btn,
  .lp-cta-band__actions .lp-btn {
    width: auto;
  }

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

  .lp-stage {
    max-width: 620px;
    padding: 12px 8px 28px;
  }

  .lp-phone {
    width: min(100%, 432px);
    padding: 14px;
  }

  .lp-float-card--match {
    top: 24px;
    left: -24px;
    width: min(62%, 240px);
  }

  .lp-mini-profile {
    top: 126px;
    right: -18px;
    bottom: auto;
    width: 188px;
  }

  .lp-chat-card {
    left: auto;
    right: 8px;
    bottom: 44px;
    width: min(80%, 280px);
  }

  .lp-screen-ribbon {
    position: absolute;
    left: -8px;
    right: auto;
    bottom: 10px;
    margin-top: 0;
    overflow: visible;
    padding: 0;
  }

  .lp-step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-showcase {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 28px;
    padding: 30px;
  }

  .lp-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .lp-flow-step:not(:last-child)::after {
    left: auto;
    right: -11px;
    top: calc(50% + 10px);
    bottom: auto;
    width: 22px;
    height: 1px;
    transform-origin: left;
  }

  .lp-inline-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .lp-editorial {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    align-items: center;
    gap: 28px;
    padding: 26px;
  }

  .lp-editorial__copy,
  .lp-editorial__visual {
    order: initial;
  }

  .lp-editorial--reverse .lp-editorial__copy {
    order: 2;
  }

  .lp-editorial--reverse .lp-editorial__visual {
    order: 1;
  }

  .lp-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-safety-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .lp-safety-item {
    justify-items: start;
    text-align: left;
    padding: 20px;
  }

  .lp-safety-item h4,
  .lp-safety-item p {
    max-width: none;
  }

  .lp-story-track {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    overflow: visible;
    padding: 0;
  }

  .lp-story-card__meta {
    display: flex;
    align-items: center;
  }

  .lp-story-dots {
    display: none;
  }

  .lp-premium-panel {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    padding: 28px;
  }

  .lp-premium-panel__content {
    gap: 20px;
  }

  .lp-premium-panel__actions {
    display: flex;
    align-items: center;
  }

  .lp-cta-band {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 34px 30px;
  }

  .lp-cta-band__actions {
    display: flex;
    flex-direction: row;
  }

  .lp-footer__top {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  }

  .lp-footer__cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-footer__bottom {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

@media (min-width: 1280px) {
  .lp-root {
    padding-left: 32px;
    padding-right: 32px;
  }

  .lp-section__intro--wide {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: end;
  }

  .lp-stage {
    max-width: 660px;
  }

  .lp-phone {
    width: min(100%, 448px);
  }

  .lp-editorial,
  .lp-showcase,
  .lp-premium-panel,
  .lp-cta-band {
    padding: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-float-card,
  .lp-mini-profile,
  .lp-chat-card {
    animation: none;
  }

  .lp-step,
  .lp-benefit-card,
  .lp-safety-item,
  .lp-story-card,
  .lp-proof-card,
  .lp-inline-cta,
  .lp-editorial,
  .lp-showcase,
  .lp-premium-panel,
  .lp-cta-band,
  .lp-nav,
  .lp-btn,
  .lp-nav__anchor,
  .lp-nav__signin,
  .lp-nav__cta {
    transition-duration: 1ms;
  }

  .lp-flow-step:not(:last-child)::after {
    transition: none;
  }
}

/* Landing photography integration */
.lp-phone__media img {
  object-position: center 18%;
}

.lp-mini-profile__media img {
  object-position: center 16%;
}

.lp-step {
  display: grid;
  gap: 16px;
}

.lp-step h3 {
  margin: 0;
}

.lp-step__visual {
  overflow: hidden;
  aspect-ratio: 5 / 4;
  border: 1px solid rgba(129, 72, 247, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.lp-step__visual img,
.lp-safety-panel__media img,
.lp-story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-step__visual--discover img {
  object-position: center 24%;
}

.lp-step__visual--match img {
  object-position: center 26%;
}

.lp-step__visual--chat img {
  object-position: center 18%;
}

.lp-device-card {
  position: relative;
}

.lp-device-card--secondary img {
  object-position: center 18%;
}

.lp-device-card--tertiary img {
  object-position: center 14%;
}

.lp-device-card__body {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 226, 248, 0.88));
  box-shadow: 0 14px 28px rgba(52, 19, 117, 0.12);
}

.lp-device-card__body strong {
  color: var(--lp-text);
  font-size: 0.94rem;
}

.lp-device-card__body span {
  color: var(--lp-text-soft);
  font-size: 0.8rem;
  line-height: 1.45;
}

.lp-flow-match__avatars img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(52, 19, 117, 0.12);
}

.lp-flow-match__avatar--a {
  object-position: center 20%;
}

.lp-flow-match__avatar--b {
  object-position: center 14%;
}

.lp-editorial__stack img {
  width: 100%;
  height: 100%;
  margin-left: 0;
  object-fit: cover;
}

.lp-editorial__stack:not(.lp-editorial__stack--conversation) img {
  object-position: center 20%;
}

.lp-editorial__stack--conversation {
  overflow: hidden;
}

.lp-editorial__stack--conversation img {
  object-position: center 18%;
}

.lp-chat-preview--overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  gap: 10px;
  max-width: min(100% - 36px, 320px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 34px rgba(51, 18, 113, 0.18);
}

.lp-chat-preview--overlay p {
  max-width: none;
}

.lp-safety-panel__intro {
  display: grid;
  gap: 18px;
}

.lp-safety-panel__copy {
  display: grid;
}

.lp-safety-panel__media {
  overflow: hidden;
  width: min(100%, 280px);
  margin: 0;
  aspect-ratio: 1;
  border: 1px solid rgba(129, 72, 247, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(52, 19, 117, 0.1);
}

.lp-safety-panel__media img {
  object-position: center 18%;
}

.lp-story-card {
  align-content: start;
}

.lp-story-card__media {
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(52, 19, 117, 0.1);
}

.lp-story-card__media img {
  object-position: center 18%;
}

.lp-story-card:nth-child(2) .lp-story-card__media img {
  object-position: center 14%;
}

.lp-story-card:nth-child(3) .lp-story-card__media img {
  object-position: center 20%;
}

.lp-story-card__meta {
  display: grid;
  gap: 10px;
}

.lp-story-card__quote {
  margin: 0;
}

@media (min-width: 768px) {
  .lp-step__visual {
    aspect-ratio: 16 / 11;
  }

  .lp-story-track {
    grid-auto-columns: minmax(44%, 1fr);
  }
}

@media (min-width: 1024px) {
  .lp-device-card__body {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .lp-chat-preview--overlay {
    max-width: 330px;
  }

  .lp-safety-panel__intro {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
    align-items: center;
  }

  .lp-safety-panel__media {
    justify-self: end;
  }

  .lp-story-card__meta {
    display: grid;
    gap: 10px;
    align-items: start;
  }
}

/* Landing cleanup: vertical page flow and responsive width containment */
.lp-root,
.lp-main,
.lp-hero,
.lp-hero__copy,
.lp-hero__visual,
.lp-showcase,
.lp-showcase__media,
.lp-showcase__content,
.lp-footer__top,
.lp-footer__cols,
.lp-footer__brand,
.lp-footer__col {
  min-width: 0;
}

.lp-root {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  min-height: 100vh;
}

.lp-main {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.lp-main > *,
.lp-section,
.lp-hero,
.lp-section__intro,
.lp-section__intro--wide,
.lp-step-grid,
.lp-showcase,
.lp-editorial-grid,
.lp-safety-panel,
.lp-story-shell,
.lp-premium-panel,
.lp-cta-band,
.lp-footer {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.lp-step,
.lp-benefit-card,
.lp-safety-item,
.lp-story-card,
.lp-proof-card,
.lp-inline-cta,
.lp-editorial,
.lp-showcase,
.lp-premium-panel,
.lp-cta-band,
.lp-highlight,
.lp-flow-step,
.lp-device-card,
.lp-footer__col {
  min-width: 0;
  max-width: 100%;
}

.lp-section__title,
.lp-hero__title,
.lp-showcase__content h3,
.lp-editorial__copy h3,
.lp-safety-panel__intro h3,
.lp-premium-panel__copy h3,
.lp-cta-band h2,
.lp-story-card__quote,
.lp-footer__brand p,
.lp-footer__col a,
.lp-faq__item summary {
  overflow-wrap: anywhere;
}

.lp-hero__highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 16px;
}

.lp-step-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.lp-benefit-grid,
.lp-proof-strip {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
}

.lp-safety-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
}

.lp-footer__cols {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
}

.lp-footer__brand {
  display: grid;
  gap: 16px;
}

.lp-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  grid-template-columns: none;
  width: 100%;
  max-width: 100%;
}

.lp-footer__brand-link {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.lp-footer__brand-link .lp-brand__logo {
  width: 40px;
  height: 40px;
}

.lp-footer__brand-link .lp-brand__name {
  line-height: 1.1;
}

.lp-footer__bottom {
  align-self: stretch;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 1023.98px) {
  .lp-root {
    padding-left: 0;
    padding-right: 0;
  }

  .lp-main,
  .lp-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .lp-header {
    top: 0;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 0 0 24px 24px;
  }

  .lp-header__actions {
    display: none;
  }

  .lp-header__actions--single {
    display: inline-flex;
    margin-left: auto;
  }

  .lp-nav-toggle {
    margin-left: auto;
    flex-shrink: 0;
  }

  .lp-header__actions--single + .lp-nav-toggle {
    margin-left: 0;
  }

  .lp-nav .lp-nav__signin,
  .lp-nav .lp-nav__cta {
    display: inline-flex;
  }

  .lp-stage {
    padding-left: 0;
    padding-right: 0;
  }

  .lp-float-card--match {
    left: 8px;
  }

  .lp-mini-profile {
    right: 8px;
  }

  .lp-brand {
    min-width: 0;
  }

  .lp-brand__name {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .lp-main,
  .lp-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .lp-header {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 767.98px) {
  .lp-float-card--match {
    display: none;
  }

  .lp-device-wall {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
    align-items: start;
  }

  .lp-device-card--primary {
    display: none;
  }

  .lp-device-card--secondary,
  .lp-device-card--tertiary {
    display: grid;
  }

  .lp-device-card--secondary img,
  .lp-device-card--tertiary img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .lp-device-card__body {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 12px 12px 14px;
    border-top: 1px solid rgba(129, 72, 247, 0.12);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .lp-editorial__stack--conversation {
    min-height: auto;
    gap: 12px;
    padding: 12px;
    align-items: stretch;
  }

  .lp-chat-preview--overlay {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: 0;
    padding: 14px;
  }

  .lp-story-shell {
    overflow: hidden;
  }

  .lp-story-track {
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding: 0 0 8px;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .lp-story-track::-webkit-scrollbar {
    display: none;
  }

  .lp-story-card {
    scroll-snap-align: start;
  }

  .lp-story-dots {
    display: flex;
    justify-content: center;
  }

  .lp-footer {
    text-align: center;
  }

  .lp-footer__top,
  .lp-footer__brand,
  .lp-footer__cols,
  .lp-footer__col {
    justify-items: center;
  }

  .lp-footer__brand-link {
    align-items: center;
  }

  .lp-footer__brand p,
  .lp-footer__col a,
  .lp-footer__col h3 {
    text-align: center;
  }

  .lp-footer__socials {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .lp-step-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  }

  .lp-device-wall {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  }
}

@media (min-width: 1024px) {
  .lp-benefit-grid,
  .lp-proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-safety-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lp-footer__top {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  }

  .lp-footer__cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
