/* ========== Tokens ========== */
:root {
  --green: #1d660a;
  --green-deep: #143f08;
  --green-black: #10240a;
  --gold: #c6aa58;
  --gold-deep: #a88c3f;
  --gold-soft: #f0e6cc;
  --ink: #20211c;
  --ink-soft: #55544a;
  --line: #eae6da;
  --white: #ffffff;
  --paper: #fcfbf7;
  --max-w: 1120px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22,1,.36,1);
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; margin: 0; }
p { margin: 0; }
a { text-decoration: none; color: inherit; }
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

.section-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--green);
  font-size: 1.02rem;
  margin-bottom: 0.7rem;
}

/* ========== Reveal on scroll ========== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
  cursor: pointer;
  border: none;
}
.btn:active { transform: scale(0.97); }
.btn__icon { width: 18px; height: 18px; fill: currentColor; }

.btn--primary { background: var(--green); color: var(--white); }
.btn--primary:hover { background: var(--green-deep); box-shadow: 0 8px 20px rgba(29,102,10,0.28); transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); }

.btn--gold { background: var(--gold); color: var(--green-black); }
.btn--gold:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(198,170,88,0.35); }

.btn--large { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn--small { padding: 0.55rem 1.05rem; font-size: 0.86rem; }
.btn--nav { padding: 0.6rem 1.2rem; font-size: 0.9rem; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--paper);
  transition: background 0.18s var(--ease), transform 0.18s var(--ease);
}
.icon-btn svg { width: 16px; height: 16px; fill: var(--ink); }
.icon-btn:hover { background: var(--green); transform: translateY(-2px); }
.icon-btn:hover svg { fill: var(--white); }

/* Official brand colors: X (black) and Instagram (gradient) */
.icon-btn.icon-btn--x { background: #000000; }
.icon-btn.icon-btn--x svg { fill: #ffffff; }
.icon-btn.icon-btn--x:hover { background: #000000; filter: brightness(1.3); transform: translateY(-2px); }
.icon-btn.icon-btn--x:hover svg { fill: #ffffff; }

.icon-btn.icon-btn--instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.icon-btn.icon-btn--instagram svg { fill: #ffffff; }
.icon-btn.icon-btn--instagram:hover { filter: brightness(1.1); transform: translateY(-2px); }
.icon-btn.icon-btn--instagram:hover svg { fill: #ffffff; }

/* ========== Nav ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { height: 34px; width: auto; display: block; }
.nav__right { display: flex; align-items: center; gap: 1rem; }
.nav__socials { display: flex; gap: 0.5rem; }

/* ========== Hero ========== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3.6rem 1.5rem 2.5rem;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__roof { position: absolute; bottom: -10px; width: 100%; height: 220px; opacity: 0.5; }
.roof { fill: none; stroke-width: 26; stroke-linejoin: round; stroke-linecap: round; }
.roof--gold { stroke: var(--gold-soft); }

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.6rem;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--gold-soft);
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1.1rem;
}
.hero__headline {
  font-size: 2.3rem;
  line-height: 1.18;
  color: var(--ink);
}
.hero__headline em { color: var(--green); font-style: italic; }
.hero__sub {
  margin-top: 1.1rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 460px;
}
.hero__actions { margin-top: 1.7rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero__meta { margin-top: 1.1rem; font-size: 0.85rem; color: #8b8a7c; }

.hero__visual { position: relative; display: flex; justify-content: center; }

/* Phone mockup */
.phone {
  width: 240px;
  background: var(--green-black);
  border-radius: 34px;
  padding: 10px;
  box-shadow: 0 30px 60px -20px rgba(16,36,8,0.4);
  animation: float 5s ease-in-out infinite;
}
.phone--sticky { animation: none; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.phone__notch {
  width: 70px; height: 16px;
  background: var(--green-black);
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.phone__screen {
  background: var(--paper);
  border-radius: 24px;
  margin-top: -16px;
  padding: 1.5rem 1rem 1.6rem;
  min-height: 340px;
}

.mscreen__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
}
.mscreen__pin { width: 14px; height: 14px; fill: var(--green); flex: none; }

.mcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.6rem;
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}
.mcard__img {
  width: 52px; height: 52px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  flex: none;
}
.mcard__img--alt { background: linear-gradient(135deg, var(--green), var(--green-deep)); }
.mcard__row { display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; margin-bottom: 0.25rem; }
.mcard__price { font-size: 0.88rem; font-weight: 700; color: var(--ink); }
.mcard__price span { font-weight: 400; font-size: 0.72rem; color: var(--ink-soft); }
.badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 10px;
}
.badge--verified { background: var(--gold-soft); color: var(--gold-deep); }

.hero__chip {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  animation: bob 4s ease-in-out infinite;
}
.hero__chip svg { width: 14px; height: 14px; fill: var(--green); }
.hero__chip--1 { top: 6%; left: 2%; }
.hero__chip--2 { bottom: 10%; right: 0%; animation-delay: 1.2s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ========== Marquee ========== */
.marquee {
  background: var(--green-black);
  overflow: hidden;
  padding: 0.85rem 0;
}
.marquee__track {
  display: inline-flex;
  white-space: nowrap;
  animation: scroll-left 22s linear infinite;
  color: var(--gold-soft);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.marquee__track span { padding: 0 0.3rem; }
.marquee__track .dot { color: var(--gold); padding: 0 0.6rem; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== Pain / chart ========== */
.pain {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}
.pain__title {
  font-size: 1.7rem;
  line-height: 1.3;
  margin-bottom: 2.4rem;
  color: var(--ink);
}
.chart { text-align: left; margin-bottom: 2.2rem; }
.chart__row { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1rem; }
.chart__label { width: 110px; flex: none; font-size: 0.85rem; color: var(--ink-soft); }
.chart__track { flex: 1; height: 14px; background: var(--paper); border-radius: 20px; overflow: hidden; }
.chart__fill { height: 100%; width: 0%; border-radius: 20px; transition: width 1.4s var(--ease); }
.chart__fill--cost { background: var(--gold); }
.chart__fill--spend { background: var(--green); }
.chart__value { width: 110px; flex: none; text-align: right; font-weight: 700; font-family: var(--font-display); }
.pain__body { font-size: 1.02rem; color: var(--ink-soft); }

/* ========== Revolution ========== */
.revolution { background: var(--gold-soft); padding: 3.4rem 1.5rem; }
.revolution__text {
  max-width: 620px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.45;
  text-align: center;
  color: var(--green-black);
}

/* ========== Features ========== */
.features { max-width: var(--max-w); margin: 0 auto; padding: 4.2rem 1.5rem; text-align: center; }
.features__title { font-size: 1.9rem; margin-bottom: 2.6rem; }
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; text-align: left; }
.feature-tabs { display: flex; flex-direction: column; gap: 0.7rem; }
.feature-tab {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  text-align: left;
  background: var(--paper);
  border: 1.5px solid transparent;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
  font-family: var(--font-body);
}
.feature-tab:hover { transform: translateX(3px); }
.feature-tab.is-active { background: var(--white); border-color: var(--green); box-shadow: 0 10px 26px rgba(29,102,10,0.1); }
.feature-tab__icon { width: 34px; height: 34px; flex: none; }
.feature-tab__icon svg { width: 100%; height: 100%; fill: var(--green); }
.feature-tab__text { display: flex; flex-direction: column; gap: 0.2rem; }
.feature-tab__text strong { font-size: 1rem; color: var(--ink); }
.feature-tab__text em { font-style: normal; font-size: 0.85rem; color: var(--ink-soft); }
.feature-visual { display: flex; justify-content: center; }

/* ========== Vision ========== */
.vision { background: var(--green-black); color: var(--white); padding: 4.6rem 1.5rem; text-align: center; }
.vision__text { font-family: var(--font-display); font-weight: 500; font-size: 2rem; line-height: 1.3; color: var(--gold); max-width: 560px; margin: 0 auto; }
.vision__sub { margin-top: 1.2rem; font-size: 1rem; color: var(--gold-soft); }

/* ========== Owners ========== */
.owners {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4.2rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  align-items: center;
}
.owners__title { font-size: 1.6rem; line-height: 1.35; margin-bottom: 1.1rem; }
.owners__body { font-size: 1rem; color: var(--ink-soft); max-width: 440px; margin-bottom: 1.7rem; }
.owners__meta { margin-top: 1.1rem; font-size: 0.85rem; color: #8b8a7c; }
.owners__visual { display: flex; justify-content: center; }
.ohouse { position: relative; width: 220px; }
.ohouse svg { width: 100%; height: auto; }
.ohouse__roof { fill: var(--green); }
.ohouse__wall { fill: var(--gold-soft); }
.ohouse__door { fill: var(--green-deep); }
.ohouse__window { fill: var(--gold); }
.ohouse__flag {
  position: absolute;
  top: -10px; right: -10px;
  background: var(--gold);
  color: var(--green-black);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  transform: rotate(6deg);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* ========== Download ========== */
.download { background: var(--paper); padding: 4.4rem 1.5rem; text-align: center; }
.download__title { font-size: 1.9rem; margin-bottom: 1rem; }
.download__body { font-size: 1.02rem; color: var(--ink-soft); max-width: 440px; margin: 0 auto 2rem; }

.stores { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 1.2rem; }
.store-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--green-black);
  color: var(--white);
  padding: 0.7rem 1.3rem;
  border-radius: 10px;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.store-badge:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(16,36,8,0.25); }
.store-badge__glyph { width: 26px; height: 26px; fill: var(--white); }
.store-badge span { display: flex; flex-direction: column; text-align: left; line-height: 1.2; }
.store-badge small { font-size: 0.62rem; letter-spacing: 0.04em; color: var(--gold-soft); }
.store-badge strong { font-size: 1.02rem; font-family: var(--font-body); }
.store-badge.is-disabled { opacity: 0.55; cursor: default; }
.store-badge.is-disabled:hover { transform: none; box-shadow: none; }

.download__note { font-size: 0.85rem; color: #9a9888; margin-bottom: 1.6rem; }
.download__referral {
  font-size: 0.88rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  max-width: 420px;
  margin: 0 auto;
}

/* ========== Contact ========== */
.contact { max-width: var(--max-w); margin: 0 auto; padding: 4.4rem 1.5rem; text-align: center; }
.contact__title { font-size: 1.8rem; margin-bottom: 2.4rem; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; text-align: left; }
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.6rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(0,0,0,0.08); border-color: var(--green); }
.contact-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.contact-card__icon svg { width: 22px; height: 22px; fill: var(--white); }
.contact-card__icon--whatsapp { background: #25b85a; }
.contact-card__icon--support { background: var(--green); }
.contact-card__icon--info { background: var(--gold-deep); }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.contact-card p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 0.8rem; }
.contact-card__cta { font-size: 0.82rem; font-weight: 700; color: var(--green); }

/* ========== Footer ========== */
.site-footer { text-align: center; padding: 3rem 1.5rem 7rem; border-top: 1px solid var(--line); }
.site-footer__logo { width: 80px; height: auto; opacity: 0.9; }
.site-footer__tag { margin-top: 0.5rem; font-family: var(--font-display); font-style: italic; font-size: 0.85rem; color: #9a9888; }
.site-footer__socials { display: flex; justify-content: center; gap: 0.6rem; margin-top: 1.1rem; }
.site-footer__copy { margin-top: 1.4rem; font-size: 0.78rem; color: #b3b19f; }

/* ========== Floating WhatsApp FAB ========== */
.wa-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25b85a;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,184,90,0.4);
  z-index: 55;
  transition: bottom 0.3s var(--ease);
  animation: wa-pulse 2.6s ease-in-out infinite;
}
.wa-fab svg { width: 27px; height: 27px; fill: var(--white); }
.wa-fab.is-shifted { bottom: 4.6rem; }
@keyframes wa-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.07); } }

/* ========== Floating social rail ========== */
.social-rail {
  position: fixed;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 54;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.social-rail.is-visible { opacity: 1; }
.icon-btn--rail { background: var(--white); border: 1px solid var(--line); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }

/* ========== Floating download bar ========== */
.float-bar {
  position: fixed;
  left: 0.9rem;
  right: 0.9rem;
  bottom: -80px;
  background: var(--green-black);
  color: var(--white);
  border-radius: 12px;
  padding: 0.7rem 0.9rem 0.7rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  box-shadow: 0 8px 24px rgba(15,35,8,0.35);
  transition: bottom 0.5s var(--ease);
  z-index: 50;
}
.float-bar.is-visible { bottom: 1rem; }
.float-bar__text { font-size: 0.85rem; color: var(--gold-soft); }

/* ========== Responsive ========== */
@media (min-width: 760px) {
  .hero__inner { grid-template-columns: 1.05fr 0.95fr; text-align: left; }
  .hero__headline { font-size: 3rem; }
  .hero__sub { font-size: 1.15rem; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .owners { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
  .social-rail { display: flex; }
  .wa-fab { right: 1.6rem; bottom: 1.6rem; }
}

@media (min-width: 1000px) {
  .hero__headline { font-size: 3.3rem; }
  .pain__title { font-size: 2rem; }
  .vision__text { font-size: 2.3rem; }
}
