:root {
  --lp-pink: #ec0b8c;
  --lp-pink-dark: #c40872;
  --lp-pink-soft: #ff5eb8;
  --lp-cyan: #5ee4ff;
  --lp-mint: #b8f5e4;
  --lp-navy: #1a1530;
  --lp-muted: #5c5470;
  --lp-white: #ffffff;
  --lp-radius: 18px;
  --lp-shadow: 0 24px 60px rgba(236, 11, 140, 0.18);
  --lp-max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body.lp {
  margin: 0;
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--lp-navy);
  background-color: #9ee8f8;
  background-image: url('/stack/landing-bg.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  overflow-x: hidden;
}

.lp-clouds {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.08) 35%,
    rgba(255, 255, 255, 0.12) 70%,
    rgba(255, 255, 255, 0.22) 100%
  );
}

.lp-wrap {
  position: relative;
  z-index: 1;
}

.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(236, 11, 140, 0.12);
}

.lp-header-inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--lp-navy);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.lp-brand img {
  width: 44px;
  height: 44px;
}

.lp-nav {
  display: none;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: auto;
}

.lp-nav a {
  text-decoration: none;
  color: var(--lp-muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.lp-nav a:hover {
  color: var(--lp-pink);
}

.lp-actions {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.lp-btn-ghost {
  background: var(--lp-white);
  border-color: rgba(236, 11, 140, 0.35);
  color: var(--lp-pink);
}

.lp-btn-primary {
  background: linear-gradient(135deg, var(--lp-pink-soft), var(--lp-pink));
  color: #fff;
  box-shadow: 0 10px 28px rgba(236, 11, 140, 0.35);
}

.lp-menu-btn {
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 16px rgba(26, 21, 48, 0.08);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.lp-menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--lp-navy);
  border-radius: 2px;
}

.lp-mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(26, 21, 48, 0.45);
}

.lp-mobile-drawer.open {
  display: block;
}

.lp-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: #fff;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
}

.lp-mobile-panel a {
  text-decoration: none;
  color: var(--lp-navy);
  font-weight: 700;
  padding: 10px 0;
}

.lp-hero {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 36px 20px 64px;
  display: grid;
  gap: 40px;
  align-items: center;
}

.lp-online {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(26, 21, 48, 0.06);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lp-muted);
  margin-bottom: 18px;
}

.lp-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

.lp-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 6vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 900;
  text-transform: uppercase;
}

.lp-hero h1 em {
  font-style: normal;
  color: var(--lp-pink);
}

.lp-hero-lead {
  margin: 0 0 24px;
  max-width: 520px;
  color: var(--lp-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.lp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}

.lp-btn-hero {
  padding: 16px 28px;
  font-size: 0.95rem;
  border-radius: 999px;
}

.lp-link-muted {
  color: var(--lp-navy);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
}

.lp-link-muted:hover {
  color: var(--lp-pink);
}

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

.lp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lp-navy);
  box-shadow: 0 6px 18px rgba(26, 21, 48, 0.06);
}

.lp-pill svg {
  flex-shrink: 0;
}

.lp-visual {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
}

.lp-phone-glow {
  position: absolute;
  width: min(480px, 95vw);
  height: min(480px, 95vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 11, 140, 0.22), rgba(94, 228, 255, 0.18) 45%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}

.lp-phone-hero {
  position: relative;
  z-index: 1;
  display: block;
  width: min(440px, 92vw);
  max-height: min(72vh, 560px);
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 28px 56px rgba(67, 44, 73, 0.18));
  user-select: none;
  -webkit-user-drag: none;
}

.lp-block {
  height: 22px;
  border-radius: 6px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.12);
}

.lp-float-cube {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  opacity: 0.85;
  animation: lp-float 4s ease-in-out infinite;
}

.lp-float-cube.c1 {
  top: 8%;
  left: 6%;
  background: linear-gradient(135deg, #5ee4ff, #3b82f6);
  animation-delay: 0s;
}

.lp-float-cube.c2 {
  top: 18%;
  right: 4%;
  background: linear-gradient(135deg, #ff7ac8, var(--lp-pink));
  animation-delay: 0.8s;
}

.lp-float-cube.c3 {
  bottom: 12%;
  left: 0;
  background: linear-gradient(135deg, #fde047, #f97316);
  animation-delay: 1.4s;
}

@keyframes lp-float {
  0%,
  100% {
    transform: translateY(0) rotate(8deg);
  }
  50% {
    transform: translateY(-12px) rotate(-4deg);
  }
}

.lp-section {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 56px 20px;
}

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

.lp-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-pink);
}

.lp-section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
}

.lp-section-head p {
  margin: 0;
  color: var(--lp-muted);
  line-height: 1.6;
}

.lp-steps {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.lp-step {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--lp-radius);
  padding: 22px 20px;
  box-shadow: 0 16px 40px rgba(26, 21, 48, 0.06);
  border: 1px solid rgba(236, 11, 140, 0.08);
}

.lp-step-num {
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--lp-pink);
  letter-spacing: 0.12em;
}

.lp-step h3 {
  margin: 8px 0 8px;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.lp-step-art {
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  line-height: 0;
}

.lp-step-art img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  border: 0;
  outline: none;
  vertical-align: top;
}

.lp-split {
  display: grid;
  gap: 32px;
  align-items: center;
}

.lp-tower {
  position: relative;
  height: 280px;
  display: grid;
  place-items: end center;
}

.lp-tower-base {
  width: 160px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(236, 11, 140, 0.25), transparent 70%);
  margin-bottom: -8px;
}

.lp-tower-stack {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 4px;
  margin-bottom: 20px;
}

.lp-footer {
  margin-top: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), #dcfce7);
  border-top: 1px solid rgba(236, 11, 140, 0.1);
  padding: 48px 20px 28px;
}

.lp-footer-grid {
  max-width: var(--lp-max);
  margin: 0 auto;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

.lp-footer h4 {
  margin: 0 0 12px;
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lp-footer a,
.lp-footer p {
  margin: 0 0 8px;
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 0.88rem;
}

.lp-footer a:hover {
  color: var(--lp-pink);
}

.lp-footer-bottom {
  max-width: var(--lp-max);
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 21, 48, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--lp-muted);
}

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

@media (min-width: 900px) {
  .lp-menu-btn {
    display: none;
  }

  .lp-nav {
    display: flex;
  }

  .lp-actions {
    display: flex;
  }

  .lp-hero {
    grid-template-columns: 1fr 1fr;
    padding-top: 48px;
  }

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

  .lp-split {
    grid-template-columns: 1fr 1fr;
  }

  .lp-footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}

@media (max-width: 899px) {
  .lp-header-inner {
    padding: 12px 16px;
  }

  .lp-hero {
    padding-top: 28px;
    text-align: center;
  }

  .lp-hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .lp-cta-row,
  .lp-pills {
    justify-content: center;
  }

  .lp-phone-hero {
    max-height: none;
    width: min(380px, 94vw);
  }

  body.lp {
    background-attachment: scroll;
  }
}
