/* --------------------------------------------------------------------------
   Luvio Landing — самостоятельная лендинг-страница (lp-* классы)
   Никаких зависимостей от base, style, variables и т.д.
   -------------------------------------------------------------------------- */

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.lp-page {
  --lp-font: "Poppins", sans-serif;
  --lp-bg: #120d24;
  --lp-bg-mid: #1e103a;
  --lp-bg-soft: #251a44;
  --lp-text: #f5f0ff;
  --lp-text-muted: rgba(245, 240, 255, 0.72);
  --lp-accent: #6b3ccb;
  --lp-accent-hover: #7d52d6;
  --lp-like: #e40c4e;
  --lp-card-bg: rgba(255, 255, 255, 0.06);
  --lp-card-border: rgba(255, 255, 255, 0.1);
  --lp-pill-bg: rgba(255, 255, 255, 0.08);
  --lp-surface: rgba(16, 10, 31, 0.7);
  --lp-outline: rgba(255, 255, 255, 0.16);
  --lp-radius: 16px;
  --lp-radius-pill: 999px;
}

.lp-page {
  min-height: 100vh;
  margin: 0;
  background: var(--lp-bg);
  color: var(--lp-text);
  font-family: var(--lp-font);
  position: relative;
  overflow-x: hidden;
}

/* Декоративный фон */
.lp-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.lp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: lp-float 12s ease-in-out infinite;
}

.lp-orb--a {
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, #6b3ccb 0%, #eaa7ee 100%);
  top: -120px;
  right: 5%;
}

.lp-orb--b {
  width: 260px;
  height: 260px;
  background: linear-gradient(160deg, #9d6ff8 0%, #6b3ccb 100%);
  bottom: 10%;
  left: -80px;
  animation-delay: 2.5s;
}

.lp-orb--c {
  width: 200px;
  height: 200px;
  background: linear-gradient(180deg, #ffdb59 0%, #e40c4e 100%);
  bottom: -60px;
  right: 25%;
  animation-delay: 5s;
}

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

@keyframes lp-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(0, -20px) scale(1.05); }
}

/* Контент поверх фона */
.lp-root {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 24px clamp(20px, 5vw, 64px) 48px;
}

/* Шапка */
.lp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

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

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

.lp-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--lp-radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--lp-text);
  background: var(--lp-card-bg);
  border: 1px solid var(--lp-card-border);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.lp-nav__link:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.lp-nav__link--primary {
  background: var(--lp-accent);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 24px rgba(129, 72, 247, 0.35);
}

.lp-nav__link--primary:hover {
  background: var(--lp-accent-hover);
  box-shadow: 0 12px 32px rgba(129, 72, 247, 0.4);
}

/* Hero */
.lp-hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .lp-hero {
    grid-template-columns: 1fr;
    text-align: center;
    margin-top: 40px;
  }
}

.lp-copy__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lp-accent);
  margin-bottom: 12px;
}

.lp-copy__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.lp-copy__subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--lp-text-muted);
  max-width: 420px;
  margin: 0 0 28px;
}

@media (max-width: 900px) {
  .lp-copy__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.lp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

@media (max-width: 900px) {
  .lp-actions {
    justify-content: center;
  }
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: var(--lp-radius-pill);
  font-family: var(--lp-font);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.lp-btn--primary {
  background: var(--lp-accent);
  color: #fff;
  border: none;
  box-shadow: 0 10px 28px rgba(129, 72, 247, 0.4);
}

.lp-btn--primary:hover {
  background: var(--lp-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(129, 72, 247, 0.45);
}

.lp-btn--ghost {
  background: var(--lp-card-bg);
  color: var(--lp-text);
  border: 1px solid var(--lp-card-border);
}

.lp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.lp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 900px) {
  .lp-pills {
    justify-content: center;
  }
}

.lp-pill {
  padding: 6px 14px;
  border-radius: var(--lp-radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--lp-pill-bg);
  color: var(--lp-text-muted);
}

/* Визуал hero */
.lp-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 360px;
}

@media (max-width: 900px) {
  .lp-visual {
    max-width: 360px;
    margin: 0 auto;
  }
}

.lp-card {
  background: var(--lp-card-bg);
  border: 1px solid var(--lp-card-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

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

.lp-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lp-card__body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.lp-card__bio {
  font-size: 0.9rem;
  color: var(--lp-text-muted);
  margin: 0;
  line-height: 1.4;
}

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

.lp-card__tag {
  padding: 4px 10px;
  border-radius: var(--lp-radius-pill);
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.12);
  color: var(--lp-text);
}

.lp-card--cta {
  padding: 28px 24px;
  text-align: center;
}

.lp-card--cta .lp-heart {
  font-size: 2.5rem;
  color: var(--lp-like);
  margin-bottom: 10px;
  display: block;
  animation: lp-pulse 2.5s ease-in-out infinite;
}

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

@keyframes lp-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.9; }
}

/* Social buttons */
.lp-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.lp-social__label {
  font-size: 0.85rem;
  color: var(--lp-text-muted);
  margin: 0;
}

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

.lp-social__form {
  margin: 0;
}

.lp-social__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--lp-card-border);
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.lp-social__btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 24px rgba(12, 6, 24, 0.4);
}

@media (max-width: 900px) {
  .lp-social {
    align-items: center;
  }
}

/* Sections */
.lp-section {
  margin-top: clamp(56px, 10vw, 96px);
  display: grid;
  gap: 32px;
}

.lp-section__header {
  max-width: 620px;
}

.lp-section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: rgba(245, 240, 255, 0.62);
  font-weight: 600;
  margin: 0 0 12px;
}

.lp-section__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 12px;
  line-height: 1.2;
}

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

/* How it works */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.lp-step {
  padding: 24px;
  border-radius: var(--lp-radius);
  background: var(--lp-surface);
  border: 1px solid var(--lp-outline);
  box-shadow: 0 20px 40px rgba(12, 6, 24, 0.35);
}

.lp-step__index {
  font-size: 0.9rem;
  color: var(--lp-accent);
  font-weight: 600;
  letter-spacing: 0.15em;
}

.lp-step__title {
  margin: 12px 0 8px;
  font-size: 1.1rem;
}

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

/* Features */
.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.lp-feature-card {
  padding: 22px;
  border-radius: var(--lp-radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--lp-outline);
  display: grid;
  gap: 10px;
}

.lp-feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(107, 60, 203, 0.2);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.lp-feature-card__icon img {
  width: 22px;
  height: 22px;
  display: block;
  filter: brightness(1.2);
}

.lp-feature-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

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

/* Stories */
.lp-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.lp-story-card {
  padding: 24px;
  border-radius: var(--lp-radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--lp-outline);
  display: grid;
  gap: 16px;
}

.lp-story-card__quote {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--lp-text);
}

.lp-story-card__name {
  margin: 0;
  color: var(--lp-text-muted);
  font-weight: 500;
}

.lp-proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.lp-proof__item {
  padding: 18px;
  border-radius: var(--lp-radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--lp-outline);
  text-align: center;
}

.lp-proof__value {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
}

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

/* Pricing */
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.lp-pricing-card {
  padding: 26px;
  border-radius: 20px;
  border: 1px solid var(--lp-outline);
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  gap: 18px;
  position: relative;
}

.lp-pricing-card--pro {
  background: linear-gradient(160deg, rgba(107, 60, 203, 0.2), rgba(255, 255, 255, 0.04));
  border-color: rgba(107, 60, 203, 0.4);
  box-shadow: 0 24px 48px rgba(12, 6, 24, 0.35);
}

.lp-pricing-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 12px;
  border-radius: var(--lp-radius-pill);
  background: rgba(107, 60, 203, 0.25);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
}

.lp-pricing-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.lp-pricing-card__head h3 {
  margin: 0;
  font-size: 1.2rem;
}

.lp-pricing-card__price {
  font-weight: 600;
}

.lp-pricing-card__list {
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--lp-text-muted);
  display: grid;
  gap: 8px;
}

.lp-pricing-card__cta {
  width: 100%;
}

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

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

.lp-faq__item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

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

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

/* CTA */
.lp-cta {
  padding: clamp(28px, 6vw, 40px);
  border-radius: 24px;
  border: 1px solid rgba(107, 60, 203, 0.4);
  background: linear-gradient(140deg, rgba(107, 60, 203, 0.35), rgba(20, 12, 38, 0.8));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.lp-cta__content h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.lp-cta__content p {
  margin: 0;
  color: var(--lp-text-muted);
}

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

/* Footer */
.lp-footer {
  margin-top: clamp(56px, 8vw, 80px);
  padding: 32px 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 20px;
}

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

.lp-footer__brand p {
  margin: 4px 0 0;
  color: var(--lp-text-muted);
}

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

.lp-footer__links a {
  color: var(--lp-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.lp-footer__links a:hover {
  color: #fff;
}

.lp-footer__meta {
  color: rgba(245, 240, 255, 0.5);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .lp-section__header,
  .lp-section__subtitle,
  .lp-cta__content {
    text-align: center;
  }

  .lp-cta {
    justify-content: center;
    text-align: center;
  }

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

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

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