:root {
  --bg:        #0A0F0D;
  --bg-soft:   #0E1512;
  --panel:     rgba(255,255,255,0.035);
  --panel-2:   rgba(255,255,255,0.055);
  --cream:     #F3ECDC;
  --text:      #ECE6D7;
  --muted:     #A8A293;
  --faint:     #6E6A5E;
  --green:     #3E9468;
  --green-lt:  #6FC79A;
  --gold:      #C8923A;
  --gold-lt:   #E4B264;
  --border:    rgba(243,236,220,0.10);
  --border-2:  rgba(243,236,220,0.16);
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --maxw: 1140px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
h1, h2, h3 { font-family: "Lora", Georgia, serif; line-height: 1.12; font-weight: 600; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }

/* ─── Ambient background ───────────────────────────────── */
.lp-aura {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(60% 50% at 78% 8%, rgba(200,146,58,0.16), transparent 60%),
    radial-gradient(55% 45% at 12% 22%, rgba(62,148,104,0.18), transparent 60%),
    radial-gradient(80% 60% at 50% 110%, rgba(62,148,104,0.10), transparent 60%),
    var(--bg);
}
.lp-grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.5;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 3px 3px;
}

/* ─── Nav ──────────────────────────────────────────────── */
.lp-nav {
  position: sticky; top: 0; z-index: 30; width: 100%;
  background: rgba(10,15,13,0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.lp-nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  max-width: var(--maxw); margin: 0 auto;
  padding: 14px clamp(16px, 4vw, 40px);
}
.lp-brand { display: flex; align-items: center; gap: 9px; font-family: "Lora", serif; font-weight: 600; font-size: 1.25rem; }
.lp-brand-mark { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--panel-2); border: 1px solid var(--border); }
.lp-brand-mark svg { width: 20px; height: 20px; fill: none; stroke: var(--green-lt); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.lp-nav-links { display: flex; gap: 26px; }
.lp-nav-links a { font-size: 0.9rem; color: var(--muted); transition: color .2s var(--ease); }
.lp-nav-links a:hover { color: var(--text); }
.lp-nav-right { display: flex; align-items: center; gap: 12px; }
.lp-lang { display: flex; gap: 5px; }
.lang-flag {
  width: 38px; height: 30px; padding: 0; border-radius: 9px; border: 1px solid var(--border);
  background: var(--panel); cursor: pointer; opacity: 0.45;
  display: grid; place-items: center;
  transition: opacity .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.lang-flag svg { width: 24px; height: 17px; border-radius: 3px; display: block; }
.lang-flag:hover { opacity: 0.85; }
.lang-flag.is-active { opacity: 1; border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }

/* ─── Buttons ──────────────────────────────────────────── */
.lp-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer; white-space: nowrap;
  border-radius: 999px; padding: 13px 24px; border: 1px solid transparent;
  transition: transform .15s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease);
}
.lp-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lp-btn-primary {
  background: linear-gradient(180deg, var(--green-lt), var(--green));
  color: #06140D; box-shadow: 0 12px 30px -10px rgba(62,148,104,0.7), inset 0 1px 0 rgba(255,255,255,0.25);
}
.lp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(62,148,104,0.85), inset 0 1px 0 rgba(255,255,255,0.25); }
.lp-btn-ghost { background: var(--panel); color: var(--text); border-color: var(--border-2); }
.lp-btn-ghost:hover { background: var(--panel-2); transform: translateY(-1px); }
.lp-btn-lg { padding: 16px 30px; font-size: 1.02rem; }

/* ─── Hero ─────────────────────────────────────────────── */
.lp-hero {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(40px, 7vw, 96px) clamp(18px, 4vw, 40px) clamp(40px, 6vw, 80px);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: center;
}
.lp-pill {
  display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--gold-lt); background: rgba(200,146,58,0.10); border: 1px solid rgba(200,146,58,0.28);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.lp-h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); margin-bottom: 20px; }
.lp-h1 span { display: block; }
.lp-h1-accent {
  background: linear-gradient(100deg, var(--cream) 10%, var(--gold-lt) 90%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-style: italic; font-weight: 500;
}
.lp-lead { font-size: 1.1rem; color: var(--muted); max-width: 520px; margin-bottom: 30px; }
.lp-cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 38px; }
.lp-cta-note { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--faint); font-weight: 500; }
.lp-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-lt); box-shadow: 0 0 10px var(--green-lt); animation: lp-pulse 2.4s var(--ease) infinite; }
@keyframes lp-pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.lp-stats { display: flex; gap: 30px; }
.lp-stat { display: flex; flex-direction: column; }
.lp-stat strong { font-family: "Lora", serif; font-size: 1.7rem; font-weight: 700; color: var(--text); }
.lp-stat span { font-size: 0.78rem; color: var(--faint); }

/* ─── Phone mockup ─────────────────────────────────────── */
.lp-hero-device { position: relative; display: grid; place-items: center; }
.lp-device-glow {
  position: absolute; width: 80%; height: 70%; border-radius: 50%;
  background: radial-gradient(circle, rgba(62,148,104,0.35), transparent 70%);
  filter: blur(50px); z-index: 0;
}
.lp-phone {
  position: relative; z-index: 1; width: clamp(250px, 30vw, 300px); aspect-ratio: 295 / 600;
  background: linear-gradient(160deg, #20262a, #0d1113);
  border-radius: 44px; padding: 11px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.18);
  animation: lp-float 7s var(--ease) infinite;
}
@keyframes lp-float { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-14px) rotate(-1deg)} }
.lp-phone-island { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 78px; height: 22px; background: #05080a; border-radius: 999px; z-index: 3; }
.lp-screen { position: relative; width: 100%; height: 100%; border-radius: 34px; overflow: hidden; background: #0b0f0d; display: flex; flex-direction: column; }
.lp-app-sky { position: relative; flex: 1.35; background: linear-gradient(180deg, #2a6aa8 0%, #5da0d0 45%, #9ecde8 78%, #cfeeae 100%); overflow: hidden; }
.lp-app-sun { position: absolute; top: 16%; right: 18%; width: 64px; height: 64px; border-radius: 50%; background: radial-gradient(circle, #fff8c0, rgba(255,233,122,0.0) 70%); }
.lp-app-tree { position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%); width: 64%; }
.lp-app-tree svg { width: 100%; height: auto; }
.lp-leaf-sway { transform-origin: 100px 196px; animation: lp-sway 6s var(--ease) infinite; }
@keyframes lp-sway { 0%,100%{transform:rotate(-2deg)} 50%{transform:rotate(2deg)} }
.lp-app-hud { position: absolute; top: 40px; left: 12px; right: 12px; display: flex; gap: 6px; }
.lp-hud-pill { font-size: 0.62rem; font-weight: 700; color: #06140d; background: rgba(255,255,255,0.75); backdrop-filter: blur(4px); padding: 4px 9px; border-radius: 999px; }
.lp-app-card { background: #0b0f0d; padding: 16px 16px 20px; margin-top: -18px; border-radius: 18px 18px 0 0; position: relative; z-index: 2; }
.lp-app-eyebrow { font-size: 0.58rem; font-weight: 800; letter-spacing: 0.18em; color: var(--green-lt); }
.lp-app-greet { font-size: 1.35rem; color: var(--cream); margin: 4px 0 6px; }
.lp-app-bless { font-size: 0.74rem; color: var(--muted); line-height: 1.5; margin-bottom: 14px; }
.lp-app-phase { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; }
.lp-app-badge { font-size: 0.66rem; font-weight: 700; color: var(--gold-lt); background: rgba(200,146,58,0.14); padding: 3px 10px; border-radius: 999px; }
.lp-app-pct { font-size: 0.74rem; font-weight: 800; color: var(--gold-lt); }
.lp-app-track { height: 7px; background: rgba(255,255,255,0.08); border-radius: 999px; overflow: hidden; }
.lp-app-track span { display: block; height: 100%; background: linear-gradient(90deg, var(--green), var(--green-lt)); border-radius: 999px; }

/* ─── Sections ─────────────────────────────────────────── */
.lp-section { max-width: var(--maxw); margin: 0 auto; padding: clamp(50px, 8vw, 100px) clamp(18px, 4vw, 40px); }
#how, #features, #garden { scroll-margin-top: 84px; }
.lp-kicker { display: inline-block; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 14px; }
.lp-h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); color: var(--text); }
.lp-section-head { margin-bottom: 44px; max-width: 640px; }
.lp-section-sub { color: var(--muted); font-size: 1.02rem; margin-top: 12px; }

.lp-essence { max-width: 900px; }
.lp-essence-text { font-family: "Lora", serif; font-size: clamp(1.3rem, 2.6vw, 1.9rem); font-weight: 500; line-height: 1.5; color: var(--cream); }
.lp-essence .lp-kicker { display: block; margin-bottom: 20px; }

/* ─── Steps ────────────────────────────────────────────── */
.lp-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.lp-step {
  position: relative; padding: 28px 24px 26px; border-radius: var(--r-lg);
  background: var(--panel); border: 1px solid var(--border);
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.lp-step:hover { transform: translateY(-5px); border-color: var(--border-2); background: var(--panel-2); }
.lp-step-n { position: absolute; top: 22px; right: 24px; font-family: "Lora", serif; font-size: 1.1rem; color: var(--faint); }
.lp-step-ico { font-size: 2rem; margin-bottom: 16px; }
.lp-step h3 { font-size: 1.18rem; color: var(--text); margin-bottom: 8px; }
.lp-step p { font-size: 0.92rem; color: var(--muted); }

/* ─── Como instalar ────────────────────────────────────── */
.lp-install-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 28px; }
.lp-install-card { padding: 24px 24px 22px; border-radius: var(--r-lg); background: var(--panel); border: 1px solid var(--border); }
.lp-install-head { display: flex; align-items: center; gap: 9px; font-family: "Lora", serif; font-size: 1.18rem; color: var(--text); margin-bottom: 14px; }
.lp-install-steps { margin: 0; padding: 0; list-style: none; counter-reset: ins; }
.lp-install-steps li {
  counter-increment: ins; position: relative; padding: 9px 0 9px 38px; font-size: 0.95rem;
  color: var(--muted); border-top: 1px solid var(--border);
}
.lp-install-steps li:first-child { border-top: none; }
.lp-install-steps li::before {
  content: counter(ins); position: absolute; left: 0; top: 7px;
  width: 25px; height: 25px; border-radius: 50%;
  background: rgba(62, 148, 104, 0.16); color: #6fc79a;
  display: grid; place-items: center; font-size: 0.82rem; font-weight: 700;
}
.lp-install-note { text-align: center; color: var(--faint); font-size: 0.9rem; margin-top: 22px; }

/* ─── Phases (garden) ──────────────────────────────────── */
.lp-phases { display: flex; gap: 12px; overflow-x: auto; padding: 6px 2px 16px; scroll-snap-type: x proximity; }
.lp-phases::-webkit-scrollbar { height: 5px; }
.lp-phases::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 6px; }
.lp-phase {
  flex: 0 0 auto; width: 150px; scroll-snap-align: start;
  border-radius: var(--r-md); border: 1px solid var(--border); overflow: hidden;
  background: var(--panel); transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.lp-phase:hover { transform: translateY(-4px); border-color: var(--border-2); }
.lp-phase-sky { height: 96px; display: grid; place-items: center; font-size: 2.2rem; }
.lp-phase-body { padding: 12px 14px 16px; }
.lp-phase-n { font-size: 0.66rem; font-weight: 800; letter-spacing: .08em; color: var(--faint); }
.lp-phase-name { font-family: "Lora", serif; font-size: 1.05rem; color: var(--text); margin: 2px 0 2px; }
.lp-phase-wk { font-size: 0.72rem; color: var(--muted); }

/* ─── Features ─────────────────────────────────────────── */
.lp-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.lp-feat {
  padding: 28px 26px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--border);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.lp-feat:hover { transform: translateY(-5px); border-color: rgba(200,146,58,0.4); }
.lp-feat-ico { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; background: var(--bg); border: 1px solid var(--border); font-size: 1.6rem; margin-bottom: 16px; }
.lp-feat h3 { font-size: 1.18rem; color: var(--text); margin-bottom: 8px; }
.lp-feat p { font-size: 0.94rem; color: var(--muted); }

/* ─── Quote ────────────────────────────────────────────── */
.lp-quote { max-width: 860px; margin: 0 auto; padding: clamp(50px, 8vw, 90px) clamp(18px, 4vw, 40px); text-align: center; }
.lp-quote-text { font-family: "Lora", serif; font-style: italic; font-weight: 500; font-size: clamp(1.5rem, 3.6vw, 2.4rem); line-height: 1.4; color: var(--cream); }

/* ─── Final CTA ────────────────────────────────────────── */
.lp-final { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(18px, 4vw, 40px) clamp(50px, 8vw, 100px); }
.lp-final-card {
  text-align: center; padding: clamp(44px, 7vw, 80px) 28px; border-radius: var(--r-lg);
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(62,148,104,0.18), transparent 70%),
    var(--bg-soft);
  border: 1px solid var(--border-2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.lp-final-card h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 14px; }
.lp-final-card p { font-family: "Lora", serif; font-style: italic; color: var(--muted); font-size: 1.1rem; margin-bottom: 30px; max-width: 460px; margin-left: auto; margin-right: auto; }

/* ─── Footer ───────────────────────────────────────────── */
.lp-footer { border-top: 1px solid var(--border); max-width: var(--maxw); margin: 0 auto; padding: 34px clamp(18px, 4vw, 40px); display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.lp-brand-mini { font-family: "Lora", serif; font-weight: 600; font-size: 1.1rem; color: var(--gold-lt); }
.lp-foot-slogan { font-family: "Lora", serif; font-style: italic; font-size: 0.9rem; color: var(--muted); }
.lp-foot-link { font-size: 0.82rem; color: var(--muted); text-decoration: none; border-bottom: 1px solid var(--border); padding-bottom: 2px; transition: color 0.18s ease; }
.lp-foot-link:hover { color: var(--text); }
.lp-foot-copy { font-size: 0.76rem; color: var(--faint); }

/* ─── Reveal on scroll ─────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 860px) {
  .lp-hero { grid-template-columns: 1fr; text-align: center; }
  .lp-hero-copy { order: 1; }
  .lp-hero-device { order: 2; }
  .lp-lead { margin-left: auto; margin-right: auto; }
  .lp-cta-row, .lp-stats { justify-content: center; }
  .lp-nav-links { display: none; }
  .lp-section-head { margin-left: auto; margin-right: auto; text-align: center; }
}
@media (max-width: 520px) {
  .lp-nav-cta { display: none; }
  .lp-stats { gap: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-phone, .lp-leaf-sway, .lp-dot { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}
