﻿/* Full landing page â€” reference hero + mockup sections */

.landing-page {
  --bg: #05070b;
  --cyan: #10eaff;
  --pink: #ff3b98;
  --purple: #8b6cff;
  --white: #ffffff;
  --muted: #b8bfd0;
  background: var(--bg);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

body.landing-mode {
  background: #05070b !important;
}

body.landing-mode .app-shell {
  display: none;
}

/* â€”â€”â€” Nav â€”â€”â€” */

.landing-page .lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1510px, calc(100% - 80px));
  margin: 0 auto;
  padding: 18px 0;
  background: transparent;
}

.landing-page .lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  justify-self: start;
}

.landing-page .lp-brand-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.landing-page .lp-brand-icon svg {
  width: 100%;
  height: 100%;
}

.landing-page .lp-brand-text strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
}

.landing-page .lp-brand-accent {
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-page .lp-brand-text small {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  color: #8b90a0;
  font-weight: 600;
}

.landing-page .lp-brand-text small b {
  color: var(--cyan);
}

.landing-page .lp-tag-pink {
  color: var(--pink);
  font-weight: 700;
}

.landing-page .lp-links {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-self: center;
}

.landing-page .lp-links a {
  color: #d8dbe3;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.landing-page .lp-links a:hover {
  color: #fff;
}

.landing-page .lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.landing-page .lp-link-btn {
  height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.22);
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
}

.landing-page .lp-nav-btn {
  height: 44px;
  padding: 0 22px;
  border-radius: 12px;
  border: none;
  font-size: 14px;
  min-width: auto;
}

.landing-page .lp-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  justify-self: end;
  grid-column: 3;
}

.landing-page .lp-menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* â€”â€”â€” Hero (reference) â€”â€”â€” */

.landing-page .hero {
  position: relative;
  width: 100%;
  min-height: 450px;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 14%, rgba(0, 220, 220, .33), transparent 25%),
    radial-gradient(circle at 92% 45%, rgba(255, 36, 130, .31), transparent 25%),
    linear-gradient(90deg, #05090d 0%, #07080e 42%, #090510 100%);
}

.landing-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 21% 56%, rgba(0, 255, 255, .08), transparent 18%),
    radial-gradient(circle at 82% 45%, rgba(255, 0, 125, .12), transparent 25%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.22));
  pointer-events: none;
}

.landing-page .hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
}

.landing-page .hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,.45), transparent 68%);
  pointer-events: none;
}

.landing-page .hero__inner {
  position: relative;
  z-index: 1;
  width: min(1510px, calc(100% - 80px));
  min-height: 450px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 30px 0 34px;
}

.landing-page .hero__copy {
  padding-left: 18px;
}

.landing-page .pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 19px;
  border-radius: 999px;
  border: 1px solid rgba(16, 234, 255, .48);
  background: rgba(16, 234, 255, .13);
  color: var(--cyan);
  font-size: 16px;
  font-weight: 800;
  box-shadow: inset 0 0 22px rgba(16, 234, 255, .08), 0 0 26px rgba(16, 234, 255, .1);
}

.landing-page .pill span {
  color: #8bf9ff;
  text-shadow: 0 0 13px rgba(16, 234, 255, .7);
}

.landing-page .hero h1 {
  margin: 35px 0 18px;
  font-size: clamp(56px, 5.2vw, 88px);
  line-height: .92;
  letter-spacing: -.075em;
  font-weight: 900;
  text-shadow: 0 10px 34px rgba(0,0,0,.3);
  color: #fff;
}

.landing-page .hero h1 .hero-moots-accent {
  display: inline-block;
  background: linear-gradient(100deg, var(--cyan) 0%, #5cd7ff 27%, #a780ff 55%, var(--pink) 84%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-page .subtitle {
  margin: 0;
  color: #c7cfdd;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.48;
  font-weight: 500;
}

.landing-page .cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
}

.landing-page .btn {
  min-width: 220px;
  height: 58px;
  padding: 0 31px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform .18s ease, box-shadow .18s ease;
}

.landing-page .btn:hover {
  transform: translateY(-2px);
}

.landing-page .btn-primary {
  background: linear-gradient(105deg, #1de7ff 0%, #7a8fff 47%, #ff3a96 100%);
  box-shadow: 0 16px 44px rgba(255, 58, 150, .18), 0 12px 38px rgba(29, 231, 255, .13);
}

.landing-page .btn-ghost {
  gap: 13px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.2);
  color: #f2f5ff;
  box-shadow: inset 0 0 18px rgba(255,255,255,.025);
}

.landing-page .play {
  width: 23px;
  height: 23px;
  border: 1px solid rgba(16,234,255,.55);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--cyan);
  font-size: 10px;
  padding-left: 2px;
  box-shadow: 0 0 15px rgba(16,234,255,.2);
}

.landing-page .hero__visual {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.landing-page .hero-carousel-glow {
  position: relative;
  display: inline-block;
  border-radius: 28px;
}

.landing-page .hero-carousel-glow::before,
.landing-page .hero-carousel-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  pointer-events: none;
  z-index: 0;
}

.landing-page .hero-carousel-glow::before {
  background: radial-gradient(ellipse 50% 80% at 8% 50%, rgba(16, 234, 255, .18), transparent 70%);
  filter: blur(20px);
}

.landing-page .hero-carousel-glow::after {
  background: radial-gradient(ellipse 50% 80% at 92% 50%, rgba(255, 59, 152, .16), transparent 70%);
  filter: blur(20px);
}

.landing-page .hero-carousel-img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(705px, 100%);
  height: auto;
  max-width: 100%;
}

/* â€”â€”â€” Below hero â€”â€”â€” */

.landing-page .lp-wrap {
  width: min(1510px, calc(100% - 80px));
  margin: 0 auto;
  padding: 36px 0 56px;
}

.landing-page .lp-mootly-teaser {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  margin-bottom: 24px;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.landing-page .lp-mootly-teaser p {
  margin: 0;
  font-size: 15px;
  color: #d8dbe3;
}

.landing-page .lp-mootly-teaser strong {
  color: var(--cyan);
}

.landing-page .lp-mootly-teaser a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.landing-page .lp-mootly-teaser a:hover {
  color: var(--cyan);
}

.landing-page .lp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.landing-page .lp-feature {
  padding: 22px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.landing-page .lp-feature-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  margin-bottom: 14px;
}

.landing-page .lp-feature-icon.cyan {
  background: rgba(16,234,255,.1);
  color: var(--cyan);
  border: 1px solid rgba(16,234,255,.2);
}

.landing-page .lp-feature-icon.pink {
  background: rgba(255,59,152,.1);
  color: var(--pink);
  border: 1px solid rgba(255,59,152,.2);
}

.landing-page .lp-feature h2 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
}

.landing-page .lp-feature p {
  margin: 0;
  color: #9aa0ae;
  font-size: 13px;
  line-height: 1.5;
}

.landing-page .lp-split {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 16px;
  margin-bottom: 40px;
  align-items: stretch;
}

.landing-page .lp-shop {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 28px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(16,234,255,.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 40px rgba(16,234,255,.08);
}

.landing-page .lp-shop::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(16,234,255,.6), rgba(16,234,255,.1) 50%, rgba(255,59,152,.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.landing-page .lp-shop-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(6, 8, 12, .9);
  border: 2px solid rgba(255,59,152,.45);
  color: #fff;
  box-shadow: 0 0 32px rgba(255,59,152,.25);
}

.landing-page .lp-shop-label {
  margin: 0 0 6px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.landing-page .lp-shop h2 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
}

.landing-page .lp-shop p {
  margin: 0;
  color: #9aa0ae;
  font-size: 13px;
  line-height: 1.55;
}

.landing-page .lp-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.landing-page .lp-step-line {
  align-self: center;
  width: 100%;
  min-width: 24px;
  height: 2px;
  margin-top: 36px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.25) 0 4px, transparent 4px 10px);
}

.landing-page .lp-step {
  padding: 16px 12px;
  text-align: center;
}

.landing-page .lp-step-ring {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  background: rgba(8, 10, 14, .9);
  position: relative;
}

.landing-page .lp-step-ring::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  padding: 2px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.landing-page .ring-1 { box-shadow: 0 0 20px rgba(16,234,255,.35); }
.landing-page .ring-1::before { background: linear-gradient(135deg, var(--cyan), #2b9fff); }

.landing-page .ring-2 { box-shadow: 0 0 20px rgba(139,108,255,.35); }
.landing-page .ring-2::before { background: linear-gradient(135deg, #b347ff, var(--pink)); }

.landing-page .ring-3 { box-shadow: 0 0 20px rgba(255,59,152,.35); }
.landing-page .ring-3::before { background: linear-gradient(135deg, var(--pink), #ff6b3d); }

.landing-page .lp-step-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
}

.landing-page .lp-step-icon.cyan { color: var(--cyan); border-color: rgba(16,234,255,.2); }
.landing-page .lp-step-icon.pink { color: var(--pink); border-color: rgba(255,59,152,.2); }

.landing-page .lp-step p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: #e2e5ec;
}

.landing-page .lp-footer-cta {
  text-align: center;
  padding: 10px 0 20px;
}

.landing-page .lp-footer-btn {
  min-width: 280px;
}

.landing-page .lp-trust {
  margin: 16px 0 0;
  color: #8b90a0;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .landing-page .hero__inner {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 58px 0;
  }

  .landing-page .hero__copy { padding-left: 0; }
  .landing-page .lp-grid { grid-template-columns: repeat(2, 1fr); }
  .landing-page .lp-split { grid-template-columns: 1fr; }
  .landing-page .lp-steps { grid-template-columns: 1fr; }
  .landing-page .lp-step-line { display: none; }
}

@media (max-width: 960px) {
  .landing-page .lp-links,
  .landing-page .lp-nav-actions { display: none; }
  .landing-page .lp-menu-btn { display: flex; }
}

@media (max-width: 760px) {
  .landing-page .lp-nav,
  .landing-page .hero__inner,
  .landing-page .lp-wrap {
    width: min(100% - 32px, 520px);
  }

  .landing-page .hero h1 { font-size: 58px; }

  .landing-page .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-page .btn { width: 100%; }

  .landing-page .hero-carousel-img {
    width: 100%;
  }

  .landing-page .lp-grid { grid-template-columns: 1fr; }
}
