/* Landing page — light hero + dark pricing */
.landing-page,
.landing-auth {
  color: #1f1230;
  background: #fff5f8;
}

.landing-page .site-bg,
.landing-auth .site-bg {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 105, 180, 0.18), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(255, 182, 193, 0.35), transparent 40%),
    repeating-radial-gradient(circle at 0 0, rgba(255, 120, 170, 0.08) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, #fff7fa 0%, #ffe8f1 45%, #fff5f8 100%);
}

.landing-page .nav-links .nav-link,
.landing-auth .nav-links .nav-link {
  color: #5b4a58;
}

.landing-page .nav-toggle,
.landing-auth .nav-toggle {
  color: #e91e8c;
  border-color: rgba(233, 30, 140, 0.28);
  background: #fff;
  box-shadow: 0 6px 16px rgba(233, 30, 140, 0.12);
}

.landing-page body.nav-open .nav-toggle,
.landing-page.nav-open .nav-toggle,
.landing-auth.nav-open .nav-toggle {
  color: #e91e8c;
}

.landing-page .nav-links .nav-link:hover,
.landing-auth .nav-links .nav-link:hover {
  color: #ff2e78;
}

.landing-page .brand,
.landing-auth .brand {
  color: #ff2e78;
  font-family: "Sora", system-ui, sans-serif;
  font-weight: 700;
}

.landing-page .brand-logo,
.landing-auth .brand-logo {
  box-shadow: 0 6px 16px rgba(233, 30, 140, 0.18);
}

.landing-page .lang-switch,
.landing-auth .lang-switch {
  border-color: rgba(255, 46, 120, 0.25);
  background: #fff;
}

.landing-page .lang-switch a,
.landing-auth .lang-switch a {
  color: #7a6674;
}

.landing-page .lang-switch a:not(.active),
.landing-auth .lang-switch a:not(.active) {
  color: #7a6674;
  background: #fff;
}

.landing-page .lang-switch a.active,
.landing-auth .lang-switch a.active {
  background: #ff2e78;
  color: #fff;
}

.landing-page .site-footer,
.landing-auth .site-footer {
  border-top-color: rgba(255, 46, 120, 0.15);
  color: #7a6674;
  background: #fff;
}

.lp-hero {
  padding: 2.5rem 0 4rem;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.lp-kicker {
  margin: 0 0 0.75rem;
  color: #ff2e78;
  font-weight: 700;
  font-size: 0.95rem;
}

.lp-hero-copy h1 {
  margin: 0 0 1rem;
  font-family: "Sora", system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #17141c;
  font-weight: 800;
}

.lp-lead {
  margin: 0 0 1.75rem;
  color: #6b5b66;
  font-size: 1.05rem;
  max-width: 36rem;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lp-btn:hover {
  transform: translateY(-1px);
}

.lp-btn-pink {
  background: #ff2e78;
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 46, 120, 0.28);
}

.lp-btn-outline {
  background: #fff;
  color: #ff2e78;
  border-color: #ff2e78;
}

.lp-btn-ghost {
  width: 100%;
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.lp-hero-visual {
  display: grid;
  place-items: center;
}

.lp-window {
  width: min(100%, 380px);
  aspect-ratio: 1.05;
  border-radius: 28px;
  background: linear-gradient(160deg, #ff4f8b, #ff2e78 55%, #e01860);
  box-shadow: 0 30px 60px rgba(255, 46, 120, 0.35);
  padding: 1rem;
  position: relative;
  overflow: hidden;
  animation: lp-float 5s ease-in-out infinite;
}

@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.lp-window-dots {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.lp-window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.lp-hearts {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.lp-heart {
  font-size: 4.5rem;
  color: #fff;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.7);
  position: absolute;
}

.lp-heart-a { transform: translate(-18px, -8px) rotate(-12deg); animation: lp-pulse 2.4s ease-in-out infinite; }
.lp-heart-b { transform: translate(22px, 10px) rotate(14deg); font-size: 3.4rem; opacity: 0.9; animation: lp-pulse 2.4s ease-in-out 0.3s infinite; }

@keyframes lp-pulse {
  0%, 100% { transform: translate(-18px, -8px) rotate(-12deg) scale(1); }
  50% { transform: translate(-18px, -8px) rotate(-12deg) scale(1.06); }
}

.lp-heart-b {
  animation-name: lp-pulse-b;
}

@keyframes lp-pulse-b {
  0%, 100% { transform: translate(22px, 10px) rotate(14deg) scale(1); }
  50% { transform: translate(22px, 10px) rotate(14deg) scale(1.08); }
}

.lp-spark {
  position: absolute;
  color: #ffe56a;
  font-size: 1rem;
  animation: lp-twinkle 2s ease-in-out infinite;
}
.lp-spark.s1 { top: 28%; left: 22%; }
.lp-spark.s2 { top: 24%; right: 24%; animation-delay: 0.4s; }
.lp-spark.s3 { bottom: 30%; left: 28%; animation-delay: 0.8s; }
.lp-spark.s4 { bottom: 26%; right: 26%; animation-delay: 1.1s; }

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

.lp-together {
  padding: 3.5rem 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 182, 203, 0.28), transparent 45%),
    #fff;
}

.lp-together-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.lp-together-grid article {
  padding: 1.35rem 1.4rem;
  border-radius: 18px;
  background: #fff5f8;
  border: 1px solid rgba(255, 46, 120, 0.12);
}

.lp-together-grid h3 {
  margin: 0 0 0.45rem;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #17141c;
}

.lp-together-grid p {
  margin: 0;
  color: #6b5b66;
  font-size: 0.94rem;
  line-height: 1.55;
}

.lp-how {
  padding: 3.5rem 0;
  background: #fff8fb;
}

.lp-templates {
  padding: 4rem 0 3.5rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 182, 203, 0.35), transparent 42%),
    radial-gradient(circle at 88% 70%, rgba(255, 214, 160, 0.28), transparent 40%),
    #fff8fb;
}

.lp-tpl-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.lp-tpl-grid-single {
  grid-template-columns: 1fr;
  max-width: 420px;
  margin: 0 auto;
}

.lp-tpl-preview {
  position: relative;
  display: block;
  margin: -0.15rem -0.15rem 1rem;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, #ffe4ec, #ffc2d4);
}
.lp-tpl-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.lp-tpl-preview:hover img {
  transform: scale(1.04);
}
.lp-tpl-preview-play {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #e91e8c;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.lp-tpl-badge {
  margin: -0.35rem 0 0.85rem !important;
  color: #8a7380 !important;
  font-size: 0.82rem !important;
  font-weight: 600;
  flex: 0 !important;
}

.lp-tpl-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(255, 46, 120, 0.1);
  box-shadow: 0 12px 32px rgba(120, 40, 70, 0.06);
}

.lp-tpl-card.featured-tpl {
  border-color: rgba(255, 46, 120, 0.28);
  box-shadow: 0 16px 40px rgba(233, 30, 140, 0.12);
}

.lp-tpl-icon {
  display: grid;
  place-items: center;
  height: 140px;
  margin-bottom: 1rem;
  border-radius: 18px;
  font-size: 3.2rem;
}

.lp-tpl-icon.pink {
  background: linear-gradient(160deg, #ffe4ec, #ffc2d4);
}

.lp-tpl-icon.yellow {
  background: linear-gradient(160deg, #fff4d6, #ffe7a8);
}

.lp-tpl-card h3 {
  margin: 0 0 0.45rem;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #17141c;
}

.lp-tpl-card > p {
  margin: 0;
  color: #6b5b66;
  font-size: 0.92rem;
  line-height: 1.5;
  flex: 1;
}

.lp-tpl-price {
  margin: 0.85rem 0 1rem !important;
  color: #e91e8c !important;
  font-weight: 800;
  font-size: 1.15rem !important;
}

.lp-tpl-demo,
.lp-tpl-buy {
  display: block;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.lp-tpl-demo {
  margin-bottom: 0.55rem;
  color: #e91e8c;
  border: 1.5px solid #e91e8c;
  background: transparent;
}

.lp-tpl-buy {
  color: #fff;
  background: linear-gradient(90deg, #ff4d8d, #e91e8c);
  border: 1.5px solid transparent;
}

.lp-tpl-demo:hover,
.lp-tpl-buy:hover {
  transform: translateY(-1px);
}

.lp-tpl-note {
  margin: 1.5rem auto 0;
  max-width: 36rem;
  text-align: center;
  color: #8a7380;
  font-size: 0.9rem;
}

.lp-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.lp-section-head h2 {
  margin: 0 0 0.6rem;
  font-family: "Sora", system-ui, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lp-section-head.light h2 { color: #17141c; }
.lp-section-head.light p { color: #6b5b66; margin: 0; }
.lp-section-head.dark h2 { color: #fff; }
.lp-section-head.dark p { color: rgba(255, 255, 255, 0.72); margin: 0; }

.lp-how-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.lp-how-grid article {
  padding: 1.35rem;
  border-radius: 18px;
  background: #fff5f8;
  border: 1px solid rgba(255, 46, 120, 0.12);
}

.lp-how-grid span {
  display: block;
  color: #ff2e78;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.lp-how-grid h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.lp-how-grid p {
  margin: 0;
  color: #6b5b66;
  font-size: 0.92rem;
}

.lp-pricing,
.lp-compare {
  padding: 4rem 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 46, 120, 0.22), transparent 55%),
    linear-gradient(180deg, #2a0413 0%, #12020a 100%);
  color: #fff;
}

.lp-billing-toggle {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 auto 2rem;
  padding: 0.35rem;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-billing-toggle button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.lp-billing-toggle button.is-active {
  background: #fff;
  color: #1f1230;
}

.lp-billing-toggle em {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: #3b82f6;
  color: #fff;
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
}

.lp-price-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.lp-price-card {
  position: relative;
  padding: 1.6rem 1.35rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.lp-price-card.featured {
  border-color: #ff4d8d;
  box-shadow: 0 0 0 1px rgba(255, 77, 141, 0.35), 0 20px 50px rgba(255, 46, 120, 0.2);
  background: rgba(255, 46, 120, 0.08);
}

.lp-badge {
  position: absolute;
  top: -0.65rem;
  right: 1rem;
  background: #ff2e78;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.lp-price-card h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.lp-price-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.lp-price-amount {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.lp-price-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.lp-price-card li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff4d8d;
  font-weight: 800;
}

.lp-table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  -webkit-overflow-scrolling: touch;
}

.lp-compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.lp-compare-table th,
.lp-compare-table td {
  padding: 0.95rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.lp-compare-table th:first-child,
.lp-compare-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.lp-compare-table th {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
}

.lp-compare-table td.yes {
  color: #ff4d8d;
  font-weight: 700;
}

.lp-compare-table td.no {
  color: rgba(255, 255, 255, 0.4);
}

.lp-faq {
  padding: 4rem 0;
  background: #fff;
}

.lp-faq-list {
  max-width: 44rem;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.lp-faq-item {
  border-radius: 16px;
  border: 1px solid rgba(255, 46, 120, 0.14);
  background: #fff8fb;
  padding: 0.15rem 1rem 0.15rem;
}

.lp-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.75rem 1rem 0;
  font-family: "Sora", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #17141c;
  position: relative;
}

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

.lp-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #e91e8c;
  font-size: 1.35rem;
  font-weight: 700;
}

.lp-faq-item[open] summary::after {
  content: "–";
}

.lp-faq-item p {
  margin: 0 0 1rem;
  color: #6b5b66;
  font-size: 0.95rem;
  line-height: 1.55;
}

.lp-faq-item a {
  color: #e91e8c;
  font-weight: 700;
  text-decoration: none;
}

.lp-faq-item a:hover {
  text-decoration: underline;
}

.lp-final {
  padding: 4rem 0;
  text-align: center;
  background: #fff5f8;
}

.lp-final h2 {
  margin: 0 0 1.25rem;
  font-family: "Sora", system-ui, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 800;
  color: #17141c;
}

@media (max-width: 900px) {
  .lp-hero {
    padding: 1.25rem 0 2.5rem;
  }

  .lp-hero-grid,
  .lp-how-grid,
  .lp-price-grid,
  .lp-tpl-grid,
  .lp-together-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero-visual {
    order: -1;
  }

  .lp-window {
    width: min(100%, 260px);
  }

  .lp-hero-actions {
    flex-direction: column;
  }

  .lp-hero-actions .lp-btn {
    width: 100%;
    min-height: 48px;
  }

  .lp-billing-toggle {
    width: 100%;
  }

  .lp-billing-toggle button {
    flex: 1;
    min-height: 48px;
  }

  .lp-price-card .lp-btn,
  .lp-tpl-demo,
  .lp-tpl-buy {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lp-section-head {
    padding-inline: 0.25rem;
  }

  .lp-pricing,
  .lp-compare,
  .lp-templates,
  .lp-faq,
  .lp-together,
  .lp-how,
  .lp-final {
    padding: 2.75rem 0;
  }

  .lp-table-wrap::before {
    content: attr(data-scroll-hint);
    display: block;
    padding: 0.55rem 0.85rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 640px) {
  .lp-hero-copy h1 {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
  }

  .lp-lead {
    font-size: 0.98rem;
  }

  .lp-price-amount {
    font-size: 2rem;
  }

  .lp-faq-item summary {
    font-size: 0.95rem;
    padding-right: 1.5rem;
  }

  .lp-final h2 {
    padding-inline: 0.5rem;
  }
}

/* Scroll heart trail — landing only (also in style.css as fallback) */
.scroll-hearts {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 900;
  overflow: visible;
}

.scroll-heart {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.55rem;
  line-height: 1;
  color: #ff2e78;
  will-change: transform, opacity;
  text-shadow: 0 2px 10px rgba(255, 46, 120, 0.45);
  user-select: none;
}

.scroll-heart-lead {
  font-size: 1.9rem;
  color: #e91e8c;
  z-index: 2;
  filter: drop-shadow(0 4px 10px rgba(233, 30, 140, 0.55));
  pointer-events: none;
  transition: none;
}

.scroll-heart-trail {
  z-index: 1;
  animation: scroll-heart-fade 1.2s ease-out forwards;
  transform: translate3d(var(--sx, 0), var(--sy, 0), 0) scale(var(--sc, 1)) rotate(var(--rot, 0deg));
  transform-origin: center center;
}

.scroll-heart-trail.is-mouse {
  color: #ff5fa2;
  font-size: 1.15rem;
  animation-duration: 0.9s;
}

@keyframes scroll-heart-fade {
  0% {
    opacity: 0.95;
    transform: translate3d(var(--sx, 0), var(--sy, 0), 0) scale(var(--sc, 1)) rotate(var(--rot, 0deg));
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--sx, 0), calc(var(--sy, 0px) - 40px), 0) scale(0.35) rotate(var(--rot, 0deg));
  }
}

@media (max-width: 640px) {
  .scroll-heart-lead {
    font-size: 1.55rem;
  }
  .scroll-heart {
    font-size: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-heart-trail {
    display: none;
  }
}

/* ——— Occasions strip ——— */
.lp-occasions {
  padding: 1.1rem 0;
  background:
    linear-gradient(180deg, rgba(255, 247, 250, 0.95), #fff5f8);
  border-block: 1px solid rgba(120, 70, 90, 0.08);
}

.lp-occasions-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0;
}

.lp-occasions-track li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  font-family: "Montserrat", "Sora", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4a3b45;
  border-right: 1px solid rgba(90, 60, 75, 0.14);
}

.lp-occasions-track li:last-child {
  border-right: 0;
}

.lp-occasions-track span {
  font-size: 0.95rem;
  letter-spacing: 0;
}

/* ——— Studio info card ——— */
.lp-studio {
  padding: 2.5rem 0 1rem;
}

.lp-studio-card {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 1.5rem;
  padding: 1.75rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, #ffd0e4 0%, #f4b8d4 42%, #b89bb8 100%);
  box-shadow: 0 22px 50px rgba(120, 40, 80, 0.16);
}

.lp-studio-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.85rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #d81b60;
  font-family: "Montserrat", "Sora", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-studio-copy h2 {
  margin: 0 0 0.75rem;
  font-family: "Sora", system-ui, sans-serif;
  font-size: clamp(1.55rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: #1a1220;
  line-height: 1.2;
}

.lp-studio-lead {
  margin: 0 0 1rem;
  color: #5a4654;
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 34rem;
}

.lp-studio-checks {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.lp-studio-checks li {
  position: relative;
  padding-left: 1.7rem;
  color: #4a3a46;
  font-size: 0.92rem;
}

.lp-studio-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #2e9d6a;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.lp-studio-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.lp-studio-demo {
  color: #6a4a5a;
  font-weight: 700;
  text-decoration: none;
}

.lp-studio-demo:hover {
  color: #e91e8c;
}

.lp-studio-steps {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.lp-studio-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 18px rgba(80, 30, 60, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.lp-studio-step:hover {
  transform: translateY(-1px);
}

.lp-studio-step.is-done {
  border-color: rgba(233, 30, 140, 0.45);
  background: #fff5f9;
}

.lp-studio-step-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #ffe6f0;
  flex-shrink: 0;
}

.lp-studio-step-text {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 0.1rem;
}

.lp-studio-step-text strong {
  font-family: "Sora", system-ui, sans-serif;
  font-size: 0.92rem;
  color: #1a1220;
}

.lp-studio-step-text em {
  font-style: normal;
  font-size: 0.8rem;
  color: #7a6572;
}

.lp-studio-step-go {
  color: #b08a9a;
  font-size: 1.15rem;
}

.lp-studio-step.is-done .lp-studio-step-go {
  color: #e91e8c;
  font-weight: 800;
}

/* ——— Phone demo grid ——— */
.lp-demo-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-demo-grid-three {
  max-width: 980px;
  margin-inline: auto;
}

.lp-demo-cover {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 11.5rem;
  background: #ffe4ec;
  margin-bottom: 0;
}

.lp-demo-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.lp-demo-cover:hover img {
  transform: scale(1.04);
}

.lp-demo-cover-icon {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.lp-demo-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.15rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(255, 46, 120, 0.1);
  box-shadow: 0 12px 32px rgba(120, 40, 70, 0.06);
}

.lp-demo-card.is-featured {
  border-color: rgba(233, 30, 140, 0.3);
  box-shadow: 0 16px 40px rgba(233, 30, 140, 0.12);
}

.lp-demo-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: 0.95rem;
  min-height: 0;
}

.lp-demo-badge {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 0.55rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: #fff0f6;
  color: #b01268;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.lp-demo-badge.is-special {
  background: #ffe8f3;
  color: #d41478;
  box-shadow: inset 0 0 0 1px rgba(233, 30, 140, 0.18);
}

.lp-demo-card h3 {
  margin: 0 0 0.35rem;
  font-family: "Sora", system-ui, sans-serif;
  font-size: 1.08rem;
  line-height: 1.25;
  color: #1a1218;
}

.lp-demo-card .lp-demo-lead {
  margin: 0 0 0.75rem;
  color: #6b5b66;
  font-size: 0.88rem;
  line-height: 1.4;
}

.lp-demo-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.lp-demo-points li {
  position: relative;
  padding-left: 1.1rem;
  color: #4f3f4a;
  font-size: 0.8rem;
  line-height: 1.4;
}

.lp-demo-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #e91e8c;
  box-shadow: inset 0 0 0 2px #fff, 0 0 0 1px rgba(233, 30, 140, 0.3);
}

.lp-demo-actions {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.1rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(233, 30, 140, 0.1);
}

.lp-demo-actions .lp-tpl-demo,
.lp-demo-actions .lp-tpl-buy {
  margin: 0;
}

.lp-phone-link {
  position: relative;
  display: grid;
  place-items: center;
  text-decoration: none;
  padding: 0.35rem 0 0;
  min-height: 11.5rem;
}

.lp-phone-mini {
  width: min(100%, 132px);
  aspect-ratio: 9 / 16;
  padding: 7px;
  border-radius: 20px;
  background: #1a1218;
  box-shadow:
    0 14px 32px rgba(40, 10, 30, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.lp-phone-mini-screen {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.85rem 0.7rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.lp-phone-mini-icon {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  font-size: 1.1rem;
}

.lp-phone-mini-label {
  font-family: "Montserrat", "Sora", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
}

.phone-float-chip {
  position: absolute;
  left: 12%;
  top: 18%;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(80, 20, 50, 0.15);
  font-size: 0.85rem;
  pointer-events: none;
}

.lp-demo-actions .lp-tpl-demo,
.lp-demo-actions .lp-tpl-buy {
  margin: 0;
}

/* ——— Full demo show page ——— */
.demo-show {
  padding: 2.5rem 0 4rem;
}

.demo-show-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.demo-show-copy h1 {
  font-family: "Sora", system-ui, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0.35rem 0 0.75rem;
}

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.phone-float {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(80, 30, 60, 0.12);
  color: #8a4058;
  z-index: 2;
}

.phone-float-a { left: 8%; top: 22%; }
.phone-float-b { left: 4%; top: 48%; }
.phone-float-c { left: 12%; top: 72%; color: #7b5ea7; }

.phone-frame {
  width: min(100%, 280px);
  aspect-ratio: 9 / 19;
  padding: 10px;
  border-radius: 36px;
  background: linear-gradient(160deg, #2a1a22, #120d12);
  box-shadow: 0 30px 60px rgba(40, 10, 30, 0.35);
  position: relative;
  z-index: 1;
}

.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 10px;
  border-radius: 999px;
  background: #0a0709;
  z-index: 3;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(90, 20, 50, 0.35), rgba(40, 8, 28, 0.82)),
    var(--mock-photo) center / cover no-repeat;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem 0.85rem 1.15rem;
}

.mock-music {
  position: absolute;
  top: 2rem;
  left: 0.75rem;
  right: 0.75rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.72rem;
  backdrop-filter: blur(8px);
}

.mock-pair {
  position: absolute;
  top: 5.2rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
}

.mock-pair span {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 800;
}

.mock-pair i {
  font-style: normal;
  color: #ff6b9d;
}

.mock-glass {
  background: rgba(20, 8, 16, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 0.95rem 0.85rem;
  backdrop-filter: blur(10px);
}

.mock-kicker {
  margin: 0 0 0.55rem;
  font-family: "Montserrat", "Sora", system-ui, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.7rem;
}

.mock-stats div {
  background: rgba(0, 0, 0, 0.28);
  border-radius: 10px;
  padding: 0.45rem 0.2rem;
  text-align: center;
}

.mock-stats strong {
  display: block;
  font-size: 1rem;
}

.mock-stats em {
  font-style: normal;
  font-size: 0.62rem;
  opacity: 0.8;
}

.mock-quote {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  opacity: 0.9;
}

.mock-date {
  margin: 0.65rem 0 0;
  font-size: 0.72rem;
  opacity: 0.85;
}

.mock-date b {
  color: #ff7eb3;
}

.mock-script {
  font-family: "Great Vibes", "Playfair Display", cursive;
  font-size: 1.6rem;
  margin: 0 0 0.4rem;
  color: #ffc1d6;
}

.mock-hero-photo {
  position: absolute;
  inset: 0;
  background: inherit;
  opacity: 0.2;
}

.mock-q {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
}

.mock-opts {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.mock-opts span {
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.mock-opts .is-on {
  background: rgba(233, 30, 140, 0.55);
}

.mock-score {
  margin: 0;
  font-weight: 800;
  color: #ffc1d6;
}

.mock-puzzle-grid {
  position: absolute;
  inset: 2.5rem 0.85rem auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  height: 42%;
}

.mock-puzzle-grid i {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 6px;
}

.mock-cards {
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  margin: 0.75rem 0;
}

.mock-cards span {
  width: 3rem;
  height: 4rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
}

.mock-cards .heart {
  background: linear-gradient(160deg, #ff6b9d, #c2185b);
  font-size: 1.3rem;
}

@media (max-width: 980px) {
  .lp-studio-card,
  .demo-show-grid {
    grid-template-columns: 1fr;
  }
  .lp-demo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .lp-demo-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }
  .lp-occasions-track li {
    border-right: 0;
    width: 100%;
    justify-content: center;
    padding: 0.45rem 0.5rem;
  }
  .phone-float {
    display: none;
  }
}
