/* IuVe Pulse landing — mockup layout (MyTape-style), Pulse data */

body.landing-page {
  color-scheme: light;
  background: #ffffff;
  color: #0b0d14;
}

body.landing-page .messages {
  max-width: 1200px;
  margin: 0.75rem auto;
}

.landing-main {
  max-width: none;
  margin: 0;
  padding: 0;
}

/* —— Top bar —— */
.lp-top {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.lp-top-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  min-height: 72px;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #0b0d14;
  z-index: 2;
}
.lp-brand:hover { color: #0b0d14; }
.lp-brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(255, 45, 143, 0.28));
}
.lp-brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.lp-hand {
  font-family: "Caveat", cursive;
  font-weight: 600;
  color: #9aa3b5;
  line-height: 1.1;
  margin: 0;
  pointer-events: none;
}
.lp-hand-brand {
  font-size: 1.15rem;
  margin-left: 0.15rem;
  transform: rotate(-4deg);
  display: none;
}
@media (min-width: 1100px) {
  .lp-hand-brand { display: block; }
}

.lp-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lp-nav-primary {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.1rem;
}

.lp-nav-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #6b7280;
  padding: 0.2rem 0.35rem;
  position: relative;
}
.lp-nav-item svg { opacity: 0.85; }
.lp-nav-item:hover,
.lp-nav-item.is-active { color: #7c3aed; }
.lp-nav-item.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.35rem;
  width: 1.35rem;
  height: 3px;
  border-radius: 99px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff2d8f, #7c3aed);
}

.lp-nav-tools {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.lp-icon-btn {
  position: relative;
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #4b5563;
}
.lp-icon-btn:hover {
  background: rgba(124, 58, 237, 0.08);
  color: #7c3aed;
}
.lp-dot {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 99px;
  background: #7c3aed;
  box-shadow: 0 0 0 2px #fff;
}

.lp-signin {
  border-radius: 999px !important;
  padding: 0.55rem 1rem !important;
  gap: 0.4rem !important;
}
.lp-signin img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

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

/* —— Hero —— */
.lp-hero {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 1.25rem 1.5rem;
}

.lp-blobs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.lp-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: lp-blob 14s ease-in-out infinite alternate;
}
.lp-blob-a {
  width: 420px; height: 420px;
  left: -80px; top: 40px;
  background: rgba(255, 45, 143, 0.28);
}
.lp-blob-b {
  width: 380px; height: 380px;
  right: 8%; top: -40px;
  background: rgba(124, 58, 237, 0.22);
  animation-delay: -4s;
}
.lp-blob-c {
  width: 320px; height: 320px;
  right: -40px; bottom: 10%;
  background: rgba(45, 226, 255, 0.22);
  animation-delay: -7s;
}
@keyframes lp-blob {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(18px, 22px, 0) scale(1.08); }
}

.lp-hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2rem 1.5rem;
  align-items: center;
  min-height: min(78vh, 720px);
}

.lp-copy {
  max-width: 34rem;
  animation: lp-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes lp-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.lp-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8b93a7;
}

.lp-title {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5.4vw, 4.1rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  color: #0b0d14;
}
.lp-title-grad {
  display: block;
  background: linear-gradient(100deg, #ff2d8f 0%, #7c3aed 48%, #2b7cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-lead {
  margin: 0 0 1.5rem;
  color: #5b6475;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 32rem;
}
.lp-lead strong { color: #0b0d14; font-weight: 700; }

.lp-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  animation: lp-rise 0.95s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lp-cta-primary {
  border-radius: 999px !important;
  padding: 0.9rem 1.45rem !important;
  font-size: 0.98rem !important;
}
.lp-cta-secondary {
  border-radius: 999px !important;
  padding: 0.9rem 1.35rem !important;
  background: #fff !important;
  border-color: rgba(15, 23, 42, 0.12) !important;
}

.lp-social-proof {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.lp-avatars {
  display: flex;
  align-items: center;
}
.lp-avatars img,
.lp-avatar-fallback {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 2px solid #fff;
  margin-left: -10px;
  object-fit: cover;
  background: #f3f4f6;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}
.lp-avatars > :first-child { margin-left: 0; }
.lp-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #7c3aed;
  background: #f3e8ff;
}
.lp-social-proof p {
  margin: 0;
  font-size: 0.86rem;
  color: #6b7280;
  max-width: 16rem;
  line-height: 1.35;
}

/* —— Collage —— */
.lp-collage {
  position: relative;
  min-height: 560px;
  animation: lp-rise 1s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lp-hand-float-a {
  position: absolute;
  right: 6%;
  top: 2%;
  font-size: 1.35rem;
  transform: rotate(6deg);
  z-index: 5;
}
.lp-hand-float-b {
  position: absolute;
  left: 2%;
  bottom: 18%;
  font-size: 1.2rem;
  transform: rotate(-8deg);
  z-index: 5;
  max-width: 9rem;
}

.lp-phone {
  position: absolute;
  left: 4%;
  top: 4%;
  width: min(250px, 46%);
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.22);
  z-index: 2;
  color: #fff;
}
.lp-phone-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-phone-fallback {
  background:
    linear-gradient(160deg, rgba(255, 45, 143, 0.55), rgba(45, 226, 255, 0.45)),
    #1f2937;
}
.lp-phone-note {
  position: absolute;
  left: 12%;
  top: 18%;
  z-index: 2;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.35rem;
  max-width: 8rem;
  transform: rotate(-8deg);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.lp-phone-actions {
  position: absolute;
  right: 0.7rem;
  top: 42%;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}
.lp-phone-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  gap: 0.55rem;
  align-items: center;
  padding: 0.85rem 0.8rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
}
.lp-phone-foot img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
  flex: none;
  background: #fff;
}
.lp-phone-foot strong {
  display: block;
  font-size: 0.82rem;
}
.lp-phone-foot span {
  display: block;
  font-size: 0.68rem;
  opacity: 0.88;
  line-height: 1.25;
}

.lp-feed-card {
  position: absolute;
  right: 0;
  top: 8%;
  width: min(300px, 58%);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  padding: 0.85rem;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
  z-index: 3;
}
.lp-feed-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}
.lp-feed-head img {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  object-fit: contain;
  background: #f8fafc;
}
.lp-feed-head strong { font-size: 0.88rem; }
.lp-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  margin-left: 0.2rem;
  border-radius: 999px;
  background: #3b82f6;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
}
.lp-badge {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  white-space: nowrap;
}
.lp-feed-text {
  margin: 0 0 0.65rem;
  font-size: 0.86rem;
  color: #374151;
  line-height: 1.4;
}
.lp-feed-media {
  display: block;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.65rem;
}
.lp-feed-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.lp-feed-media-caption {
  position: absolute;
  left: 0.65rem;
  bottom: 0.55rem;
  right: 0.65rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}
.lp-feed-meta {
  display: flex;
  gap: 0.85rem;
  font-size: 0.78rem;
  color: #6b7280;
  font-weight: 600;
}

.lp-mini-card {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  z-index: 4;
}
.lp-community-card {
  width: min(210px, 42%);
  right: 8%;
  top: 58%;
}
.lp-market-card {
  width: min(150px, 32%);
  right: 2%;
  bottom: 4%;
}
.lp-mini-cover {
  height: 78px;
  display: flex;
  align-items: flex-end;
  padding: 0.55rem 0.7rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
}
.lp-mini-cover-grad {
  background:
    linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.45)),
    linear-gradient(135deg, #ff2d8f, #7c3aed 50%, #2de2ff);
}
.lp-mini-cover-product {
  height: 88px;
  align-items: center;
  justify-content: center;
  background: #111827;
}
.lp-mini-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem 0.8rem;
}
.lp-mini-body strong {
  font-size: 0.84rem;
}
.lp-join {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff !important;
  background: linear-gradient(135deg, #ff2d8f, #7c3aed);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
}
.lp-price {
  font-size: 0.78rem;
  font-weight: 700;
  color: #7c3aed;
  text-transform: capitalize;
}
.lp-hand-support {
  position: absolute;
  right: -0.2rem;
  bottom: -1.6rem;
  font-size: 1.15rem;
  transform: rotate(8deg);
  white-space: nowrap;
}

/* —— Features —— */
.lp-features {
  max-width: 1180px;
  margin: 0.5rem auto 0;
  padding: 1.75rem 1.25rem 1rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.lp-feature h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 750;
}
.lp-feature p {
  margin: 0;
  color: #6b7280;
  font-size: 0.86rem;
  line-height: 1.45;
}
.lp-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}
.lp-fi-a { background: rgba(255, 45, 143, 0.12); color: #ff2d8f; }
.lp-fi-b { background: rgba(124, 58, 237, 0.12); color: #7c3aed; }
.lp-fi-c { background: rgba(59, 130, 246, 0.12); color: #3b82f6; }
.lp-fi-d { background: rgba(45, 226, 255, 0.16); color: #0891b2; }
.lp-fi-e { background: rgba(244, 114, 182, 0.14); color: #db2777; }

/* —— From @iuveai —— */
.lp-from-ai {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 0.5rem;
}
.lp-from-ai h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 750;
}
.lp-from-list {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}
.lp-from-item {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.25rem 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  color: #0b0d14;
}
.lp-from-item:hover { color: #ff2d8f; }
.lp-from-item time {
  font-size: 0.8rem;
  color: #8b93a7;
  grid-row: 1 / span 2;
}
.lp-from-title {
  font-family: var(--font-display);
  font-weight: 650;
}
.lp-from-meta {
  font-size: 0.78rem;
  color: #8b93a7;
  grid-column: 2;
}
.lp-from-more {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
}
.lp-from-more a { color: #6b7280; }
.lp-from-more a:hover { color: #ff2d8f; }

.lp-scroll {
  text-align: center;
  margin: 1.5rem 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9aa3b5;
  font-weight: 600;
}

.lp-foot {
  max-width: 1180px;
  margin: 1rem auto 2rem;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #8b93a7;
  font-size: 0.86rem;
}
.lp-foot img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.lp-foot strong {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* —— Responsive —— */
@media (max-width: 980px) {
  .lp-hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .lp-collage {
    min-height: 520px;
    margin-top: 0.5rem;
  }
  .lp-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lp-nav-primary { display: none; }
  .lp-nav-toggle { display: inline-flex; margin-left: auto; }
  body.nav-open .lp-nav {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem 1.15rem;
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  }
  .lp-nav {
    display: none;
    margin-left: 0;
  }
  body.nav-open .lp-nav { display: flex; }
  body.nav-open .lp-nav-primary {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .lp-nav-item {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.55rem;
    padding: 0.65rem 0.4rem;
    font-size: 0.92rem;
  }
  .lp-nav-item.is-active::after { display: none; }
  .lp-nav-tools {
    justify-content: space-between;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }
  .lp-signin { flex: 1; justify-content: center; }
}

@media (max-width: 640px) {
  .lp-title { font-size: clamp(2.2rem, 10vw, 2.8rem); }
  .lp-collage { min-height: 480px; }
  .lp-phone { width: 46%; left: 0; }
  .lp-feed-card { width: 58%; right: 0; top: 4%; }
  .lp-community-card { top: 62%; right: 4%; width: 48%; }
  .lp-market-card { width: 38%; }
  .lp-hand-float-a,
  .lp-hand-float-b,
  .lp-hand-support { display: none; }
  .lp-features { grid-template-columns: 1fr; }
  .lp-from-item { grid-template-columns: 1fr; }
  .lp-from-item time { grid-row: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-blob,
  .lp-copy,
  .lp-ctas,
  .lp-collage { animation: none !important; }
}
