/* Warn Optimize — landing estilo Moon Bio (claro + lime) */

:root {
  --land-bg: #f2f3f5;
  --land-text: #151515;
  --land-muted: #6a7282;
  --land-card: #ffffff;
  --land-card-2: #ffffff;
  --land-line: #e5e7eb;
  --land-lime: #c4f042;
  --land-lime-dim: #c4f04255;
  --land-font: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.moon-landing {
  margin: 0;
  background: var(--land-bg);
  color: var(--land-text);
  font-family: var(--land-font);
  min-height: 100vh;
}

#landing {
  position: relative;
  z-index: 1;
  background: var(--land-bg);
}

/* —— Nav pill —— */
.nav-shell {
  margin-top: 22px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: fixed;
  z-index: 9999;
  pointer-events: none;
}
.nav-pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: min(78rem, calc(100% - 48px));
  border-radius: 50px;
  padding: 0 20px;
  height: 72px;
  background: #ffffffd9;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 28px #00000012;
}
.nav-blur {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  inset: 0;
  position: absolute;
  border-radius: 50px;
  z-index: -1;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 2;
}
.nav-brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}
.nav-brand h1 {
  margin: 0;
  color: #151515;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
}
.nav-brand h1 span { color: #6a8f12; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.nav-links a,
.nav-links button.nav-link-login {
  border: 0;
  background: transparent;
  color: #4b5563;
  font: 500 15px/1 var(--land-font);
  padding: 0 12px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: .2s;
}
.nav-links a:hover,
.nav-links button.nav-link-login:hover {
  background: #f3f4f6;
  color: #151515;
}
.nav-cta {
  margin-left: 4px;
  border-radius: 999px !important;
  background: var(--land-lime) !important;
  border: 1px solid #b4da38 !important;
  color: #151515 !important;
  padding: 0 18px !important;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 700 14px/1 var(--land-font);
  text-decoration: none;
  cursor: pointer;
  transition: .2s;
}
.nav-links button[hidden],
.nav-mobile button[hidden],
.nav-cta[hidden] {
  display: none !important;
}
.nav-cta:hover {
  background: #d6ff6a !important;
  box-shadow: 0 2px 18px #c4f04255;
}
.nav-burger {
  display: none;
  background: none;
  border: 0;
  color: #151515;
  cursor: pointer;
  z-index: 3;
  padding: 4px;
}
.nav-mobile {
  position: absolute;
  top: 80px;
  left: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: .3s;
  z-index: 2;
}
.nav-mobile-links { display: flex; flex-direction: column; gap: 8px; }
.nav-mobile a,
.nav-mobile button.nav-mobile-register,
.nav-mobile button#loginBtnMobile {
  text-decoration: none;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #151515;
  padding: 12px 16px;
  border-radius: 14px;
  font: 600 14px/1.2 var(--land-font);
  text-align: left;
  cursor: pointer;
  width: 100%;
}
.nav-mobile button.nav-cta {
  width: 100%;
  justify-content: center;
  height: 46px;
  margin: 0;
  border: 1px solid #b4da38 !important;
}
.nav-pill.is-open {
  border-radius: 28px;
  flex-direction: column;
  height: min(420px, calc(100vh - 48px));
  align-items: stretch;
  padding-top: 16px;
}
.nav-pill.is-open .nav-brand {
  position: absolute;
  top: 18px;
  left: 20px;
}
.nav-pill.is-open .nav-burger {
  position: absolute;
  top: 18px;
  right: 20px;
  display: flex !important;
}
.nav-pill.is-open .nav-links {
  opacity: 0;
  pointer-events: none;
}
.nav-pill.is-open .nav-mobile {
  opacity: 1;
  height: calc(100% - 80px);
  overflow: auto;
  pointer-events: auto;
  top: 72px;
}

@media (max-width: 770px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* —— Hero —— */
.hero {
  min-height: 100vh;
  padding: 140px 6vw 72px;
  display: flex;
  align-items: center;
}
.hero-layout {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero-kicker {
  margin: 0 0 18px;
  color: #6a8f12;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-text h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.05;
}
.hero-line-2 {
  margin-top: 4px !important;
  color: #151515;
}
.slide {
  display: inline-block;
  height: 1.1em;
  overflow: hidden;
  vertical-align: bottom;
  margin-left: 10px;
}
.slide .wrapper {
  display: flex;
  flex-direction: column;
  animation: slideWords 8s cubic-bezier(.4,0,.2,1) infinite;
}
.slide-item {
  color: #6a8f12;
  height: 1.1em;
  display: flex;
  align-items: center;
}
@keyframes slideWords {
  0%, 20% { transform: translateY(0); }
  25%, 45% { transform: translateY(-25%); }
  50%, 70% { transform: translateY(-50%); }
  75%, 95% { transform: translateY(-75%); }
  100% { transform: translateY(0); }
}
.hero-sub {
  margin: 22px 0 0;
  max-width: 520px;
  color: var(--land-muted);
  font-size: 16px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  align-items: center;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  color: #151515;
  background: linear-gradient(90deg, #d6ff6a, #c4f042 55%, #a8d636);
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 8px 28px #c4f04244;
  transition: transform .2s, box-shadow .2s;
}
.cta-primary svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px #c4f04255;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  background: #fff;
  color: #151515;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #e5e7eb;
  transition: .2s;
}
.btn-ghost:hover { background: #f3f4f6; }

/* Showcase phones */
.hero-right { position: relative; min-height: 420px; }
.showcase {
  position: relative;
  height: 460px;
  display: grid;
  place-items: center;
}
.showcase-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, #c4f04255, transparent 70%);
  filter: blur(10px);
}
.phone {
  position: absolute;
  width: 210px;
  border-radius: 28px;
  background: linear-gradient(160deg, #1a1a1a, #0d0d0d);
  border: 1px solid #ffffff18;
  box-shadow: 0 24px 60px #000000aa;
  padding: 16px;
  color: #fff;
}
.phone-back {
  transform: translate(-90px, 20px) rotate(-12deg);
  opacity: .7;
  width: 180px;
}
.phone-mid {
  transform: translate(70px, -10px) rotate(8deg);
  width: 200px;
  z-index: 1;
}
.phone-front {
  transform: translate(0, 40px);
  z-index: 2;
  width: 230px;
  animation: floatPhone 5s ease-in-out infinite;
}
@keyframes floatPhone {
  0%, 100% { transform: translate(0, 40px); }
  50% { transform: translate(0, 28px); }
}
.phone-bar {
  height: 10px;
  border-radius: 999px;
  background: #ffffff18;
  margin-bottom: 14px;
}
.phone-bar.lime { background: var(--land-lime); width: 42%; }
.phone-lines i {
  display: block;
  height: 10px;
  border-radius: 8px;
  background: #ffffff12;
  margin-bottom: 8px;
}
.phone-lines i:nth-child(2) { width: 70%; }
.phone-lines i:nth-child(3) { width: 85%; }
.phone-user {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}
.phone-user img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #222;
}
.phone-user b { display: block; font-size: 13px; }
.phone-user span { color: #9aa3ad; font-size: 11px; }
.phone-stat {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 14px;
  background: #ffffff0c;
  margin-bottom: 8px;
  font-size: 12px;
}
.phone-stat.soft { color: #9aa3ad; }
.phone-stat b { color: var(--land-lime); }
.phone-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
  color: #b8c0c8;
}
.phone-row .lime { color: var(--land-lime); }
.phone-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}
.pv {
  height: 72px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.pv.before { background: #2a2a2a; color: #888; }
.pv.after { background: #24310f; color: var(--land-lime); }

/* —— Sections —— */
.section {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
}
.section-head,
.stats-head {
  max-width: 720px;
  margin-bottom: 36px;
}
.section-head h2,
.stats-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -.035em;
  line-height: 1.15;
  font-weight: 700;
}
.section-head p,
.stats-head p {
  margin: 14px 0 0;
  color: var(--land-muted);
  font-size: 15px;
  line-height: 1.65;
}
.stat-highlight { color: #6a8f12; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid #e5e7eb;
}
.stat-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  min-height: 0;
}
.stat-card h3 {
  margin: 0 0 12px;
  font-size: clamp(48px, 5.4vw, 76px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .95;
  color: #151515;
}
.stat-card h3 span {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
}
.stat-card > div > span {
  display: block;
  color: var(--land-muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
  max-width: 210px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid #e5e7eb;
}
.how-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.how-card b {
  color: var(--land-lime);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -.04em;
  font-weight: 800;
}
.how-card h3 {
  margin: 14px 0 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.how-card p {
  margin: 0;
  color: var(--land-muted);
  font-size: 14px;
  line-height: 1.55;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.plans .plan {
  background: var(--land-card);
  border: 1px solid var(--land-line);
  border-radius: 24px;
  padding: 24px;
  position: relative;
  color: #151515;
  box-shadow: 0 1px 2px #00000008;
}
.plans .plan.hot {
  background: var(--land-lime);
  border-color: #b4da38;
}
.plans .flag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #151515;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
}
.plans h3 { margin: 0 0 8px; font-size: 18px; }
.plans .price {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.04em;
  margin-bottom: 14px;
}
.plans ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
}
.plans li {
  color: var(--land-muted);
  font-size: 13px;
}
.plans .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}
.plans .btn.primary {
  background: #151515;
  color: #fff;
}
.plans .btn.ghost {
  background: #f3f4f6;
  color: #151515;
  border: 1px solid #e5e7eb;
}
.plans .plan.hot .btn.primary {
  background: #151515;
  color: #fff;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  border-radius: 28px;
  background: var(--land-lime);
  border: 1px solid #b4da38;
  color: #151515;
}
.cta-banner h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -.03em;
}
.cta-banner p {
  margin: 10px 0 0;
  color: #3f4a2a;
}
.cta-banner .btn-ghost {
  background: rgba(255,255,255,.45);
  border-color: rgba(21,21,21,.12);
}

.site-footer {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  padding: 40px 0 64px;
  border-top: 1px solid var(--land-line);
  display: grid;
  gap: 18px;
}
.foot-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.foot-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}
.foot-brand b { display: block; }
.foot-brand span { color: var(--land-muted); font-size: 13px; }
.foot-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.foot-links a {
  color: #374151;
  text-decoration: none;
  font-size: 14px;
}
.site-footer > p {
  margin: 0;
  color: #6b7280;
  font-size: 12px;
}

.rv {
  opacity: 0;
  transform: translateY(18px);
  transition: .7s cubic-bezier(.2,.7,.2,1);
}
.rv.in {
  opacity: 1;
  transform: none;
}

.maintenance {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: #c4f042;
  color: #151515;
  text-align: center;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 13px;
}

@media (max-width: 980px) {
  .hero-layout,
  .stats-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 120px;
    min-height: auto;
  }
  .hero-right { min-height: 380px; }
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slide .wrapper,
  .phone-front { animation: none; }
}
