/* PM Starter Kit — Landing Page Stylesheet
   Mobile-first: base rules target the phone screen; larger layouts are added
   on top via min-width media queries. Nothing here is "shrink the desktop down". */

/* ============ TOKENS ============ */
:root {
  color-scheme: light;
  --bg: #FBFAF7;
  --bg-alt: #F1EFE6;
  --surface: #FFFFFF;
  --ink: #161B14;
  --ink-soft: #55604F;
  --line: #E4E0D2;

  --lime: #5FB92C;
  --lime-deep: #3E8A1B;
  --lime-tint: #E9F6DC;
  --blue: #0B6EF0;
  --blue-tint: #E4EFFE;
  --orange: #FF6A1A;
  --orange-tint: #FFE9DC;

  --shadow: 0 12px 32px -14px rgba(22, 27, 20, 0.18);
  --radius: 20px;
  --radius-sm: 14px;
  --radius-pill: 999px;

  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* This is a public sales page, not a tool — the brand palette stays fixed
   and vivid for every visitor. It intentionally does NOT follow the
   visitor's OS dark-mode preference (that's what produced the "dark AI
   vibe-coding" look the client rejected). */

/* ============ RESET ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ LAYOUT PRIMITIVES (mobile base) ============ */
.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

section { padding: 30px 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  text-wrap: balance;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--lime-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}

.section-head { margin-bottom: 18px; }
.section-head h2 { font-size: 1.55rem; margin-top: 8px; }
.section-head p { color: var(--ink-soft); font-size: 1rem; margin-top: 12px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--lime);
  color: #0E1509;
  box-shadow: 0 10px 24px -8px rgba(95, 185, 44, 0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(95, 185, 44, 0.55); }
.btn-dark { background: var(--ink); color: var(--bg); }
.btn-dark:hover { transform: translateY(-2px); }
.btn-ghost { border: 2px solid var(--line); color: var(--ink); }
.btn-block { width: 100%; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: var(--font-display);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); flex-shrink: 0; }
.nav-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-tint);
  color: var(--orange);
  border: 1px solid color-mix(in srgb, var(--orange) 35%, transparent);
  border-radius: var(--radius-pill);
  padding: 7px 12px;
  font-size: 0.74rem;
  font-weight: 600;
  white-space: nowrap;
}
.nav-timer svg { flex-shrink: 0; }
.nav-timer-clock {
  font-family: var(--font-mono);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ============ HERO (immediate sale — no scroll, no thinking) ============ */
.hero { padding-top: 16px; position: relative; }
.hero .wrap { display: flex; flex-direction: column; gap: 18px; text-align: center; align-items: center; }
.hero-copy h1 { font-size: 1.7rem; line-height: 1.15; margin: 10px 0 10px; }
.hero-copy h1 .hl { color: var(--lime-deep); }
.hero-copy p.sub { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 8px; }
.hero-visual-wrap { width: 100%; max-width: 340px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.hero-cta-row { display: flex; justify-content: center; }
.hero-cta-row .btn { width: 100%; }
.trust-line { font-size: 0.82rem; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.trust-line svg { flex-shrink: 0; }

.hero-visual {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(155deg, var(--lime-tint), var(--bg-alt));
  box-shadow: var(--shadow);
}
.hero-visual img { width: 100%; height: 100%; object-fit: contain; }
.badge-float {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.badge-float .num { font-family: var(--font-display); font-size: 1.3rem; color: var(--lime-deep); }
.badge-float .lbl { font-size: 0.68rem; color: var(--ink-soft); line-height: 1.2; }

/* ============ MARQUEE (infinite carousel) ============ */
.marquee-outer {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-gap { margin-top: 14px; }
.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}
.marquee-track.reverse { animation-name: scroll-right; animation-duration: 26s; }
.marquee-track.long { animation-duration: 38s; }
.marquee-outer:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.m-card {
  flex: 0 0 auto;
  width: 300px;
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  overflow: hidden;
}
.m-card img { width: 100%; height: 100%; object-fit: contain; }

/* ============ STATS BAND (white, number carries the color, animated count-up) ============ */
.stats-band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  overflow: hidden;
}
.stats-wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.stat {
  max-width: 168px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stat.in-view { opacity: 1; transform: translateY(0); }
.stat-alt { transition-delay: 0.15s; }
.stats-arrow {
  color: var(--line);
  flex: none;
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left center;
  transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s, color 0.4s ease 0.3s;
}
.stats-arrow.in-view { opacity: 1; transform: scaleX(1); color: var(--lime-deep); }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--lime-deep);
  font-variant-numeric: tabular-nums;
}
.stat span { display: block; margin-top: 4px; font-size: 0.82rem; line-height: 1.35; color: var(--ink-soft); }
@media (prefers-reduced-motion: reduce) {
  .stat, .stats-arrow { opacity: 1; transform: none; transition: none; }
}

/* ============ FIT LIST (editorial numbered list — replaces generic pills) ============ */
.fit-list { border-top: 3px solid var(--ink); padding-top: 20px; }
.fit-heading {
  font-size: 1.7rem;
  margin-bottom: 4px;
}
.fit-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.fit-row:last-child { border-bottom: none; }
.fit-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--lime-deep);
  flex-shrink: 0;
  width: 24px;
}
.fit-row p { font-size: 1.05rem; font-weight: 600; }

/* ============ BENEFITS (real large numerals, no card container) ============ */
.benefits-layout { display: flex; flex-direction: column; gap: 8px; }
.benefits-heading {
  font-size: 1.7rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
.benefits-heading .hl { color: var(--lime-deep); }
.grid-4 { display: flex; flex-direction: column; }
.b-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.grid-4 .b-card:last-child { border-bottom: 1px solid var(--line); }
.b-big-num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--lime-deep);
  width: 56px;
}
.b-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 1rem; line-height: 1.3; }

/* ============ URGENCY BAND (light card, lime is the CTA — not the whole block) ============ */
.urgency {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  text-align: center;
  border-radius: 24px;
  padding: 36px 22px;
  margin: 0 auto;
  max-width: 1000px;
}
.urgency h2 { font-size: 1.3rem; margin-bottom: 22px; }
.urgency .btn-primary { padding: 18px 34px; }

/* ============ SEGMENT CARDS ============ */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 16px; }
.seg-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 26px 22px;
  border: 1px solid var(--line);
}
.seg-card .emoji { font-size: 1.7rem; margin-bottom: 12px; display: block; }
.seg-card h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.02rem; margin-bottom: 8px; }
.seg-card p { color: var(--ink-soft); font-size: 0.92rem; }

/* ============ RECEIVE BAND (light card, not dark) ============ */
.receive {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.receive .eyebrow { color: var(--lime-deep); }
.receive h2 { color: var(--ink); margin: 10px 0 16px; font-size: 1.5rem; }
.receive-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.receive-list li:last-child { border-bottom: none; }
.receive-list svg { flex-shrink: 0; margin-top: 3px; color: var(--lime-deep); }
.receive-visual {
  aspect-ratio: 1/1;
  border-radius: 20px;
  background: var(--lime-tint);
  overflow: hidden;
  width: 100%;
}
.receive-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ============ BONUS GRID ============ */
.bonus-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.bonus-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  position: relative;
}
.bonus-img {
  aspect-ratio: 3/2;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--bg-alt);
}
.bonus-img img { width: 100%; height: 100%; object-fit: cover; }
.bonus-card .tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--lime-deep);
  background: var(--lime-tint);
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.bonus-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.bonus-card p { font-size: 0.86rem; color: var(--ink-soft); }

/* ============ TESTIMONIALS MARQUEE (WhatsApp mockups, built in HTML/CSS —
   not real screenshots, each one explicitly tagged "Example") ============ */
.wa-mock {
  flex: 0 0 auto;
  width: 250px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #E7DFD4;
  position: relative;
}
.wa-mock-head {
  background: #075E54;
  color: #fff;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wa-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-name { font-size: 0.86rem; font-weight: 600; }
.wa-mock-body { padding: 14px; min-height: 150px; display: flex; flex-direction: column; }
.wa-mock-date {
  align-self: center;
  background: rgba(255,255,255,0.55);
  color: #4b5347;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 8px;
  margin-bottom: 12px;
}
.wa-mock-bubble {
  background: #fff;
  border-radius: 8px;
  border-top-left-radius: 2px;
  padding: 8px 10px 6px;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #1a1a1a;
  max-width: 92%;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  margin-bottom: 8px;
}
.wa-mock-time {
  display: block;
  text-align: right;
  font-size: 0.63rem;
  color: #8b9188;
  margin-top: 3px;
}
.wa-mock-check { color: #53BDEB; }

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
}
.price-card {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
}
.price-card.featured { border-color: var(--lime); position: relative; box-shadow: var(--shadow); padding-top: 30px; }
.price-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--lime-tint);
}
.price-img img { width: 100%; height: auto; display: block; }
.upsell-nudge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-align: center;
  margin-bottom: 12px;
}
.price-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: #0E1509;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.price-card h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.12rem; }
.price-card .desc { color: var(--ink-soft); font-size: 0.86rem; margin: 6px 0 16px; }
.price-list { margin-bottom: 20px; flex-grow: 1; }
.price-list li { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; font-size: 0.88rem; }
.price-list li.no { color: var(--ink-soft); }
.price-list svg { flex-shrink: 0; margin-top: 3px; }
.price-amount { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.price-amount .old { text-decoration: line-through; color: var(--ink-soft); font-size: 0.95rem; }
.price-amount .new { font-family: var(--font-display); font-size: 1.9rem; }
.price-amount .save { font-family: var(--font-mono); font-size: 0.72rem; color: var(--lime-deep); background: var(--lime-tint); padding: 4px 8px; border-radius: 6px; }

/* ============ STEPS (big numerals + arrows, same language as benefits) ============ */
.steps-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.step-item { text-align: center; }
.step-big-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--lime-deep);
  margin-bottom: 6px;
}
.step-item h3 { font-family: var(--font-body); font-weight: 700; font-size: 0.88rem; }
.step-arrow {
  color: var(--line);
  flex-shrink: 0;
  margin: 0 4px 22px;
}

/* ============ GUARANTEE ============ */
.guarantee-box {
  background: var(--lime-tint);
  border: 2px dashed var(--lime-deep);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.guarantee-badge {
  flex-shrink: 0;
  width: 132px;
  height: 132px;
  object-fit: contain;
}
.guarantee-box h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.1rem; margin-bottom: 6px; }
.guarantee-box p { font-size: 0.92rem; color: var(--ink-soft); max-width: 340px; }

/* ============ FAQ ============ */
.faq-list { max-width: 720px; margin: 0 auto; }
details { border-bottom: 1px solid var(--line); padding: 16px 0; }
summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.96rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 12px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--lime-deep);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
details[open] summary::after { transform: rotate(45deg); }
details p { color: var(--ink-soft); font-size: 0.9rem; margin-top: 10px; }

/* ============ FINAL CTA ============ */
.final-cta { text-align: center; }
.final-cta h2 { font-size: 1.6rem; margin-bottom: 20px; }

/* ============ FOOTER (compact) ============ */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 22px 0;
  font-size: 0.85rem;
}
.foot-top { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
footer .flogo { font-family: var(--font-display); color: var(--ink); font-size: 0.9rem; }
.foot-links { display: flex; gap: 16px; }
.foot-links a:hover { color: var(--lime-deep); }
footer .legal { font-size: 0.72rem; opacity: 0.7; }

/* ============================================================
   BREAKPOINTS — progressively enhance UP from the mobile base
   ============================================================ */

/* Small tablets and large phones */
@media (min-width: 480px) {
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta-row { flex-direction: row; align-items: center; }
}

/* Tablets */
@media (min-width: 720px) {
  .wrap { padding-left: 28px; padding-right: 28px; }
  section { padding: 52px 0; }
  .section-head { max-width: 620px; margin-bottom: 28px; }
  .section-head h2 { font-size: 2rem; }
  .section-head p { font-size: 1.02rem; }

  .hero-copy h1 { font-size: 2.2rem; }
  .hero-visual-wrap { max-width: 400px; }

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

  .receive { flex-direction: row; align-items: center; padding: 44px; }
  .receive-visual { flex: 1; max-width: 340px; }
  .receive > div:last-child { flex: 1.1; }

  .guarantee-box { flex-direction: row; text-align: left; padding: 36px 40px; }

  .foot-top { flex-direction: row; align-items: center; gap: 20px; }
  footer .legal { max-width: 640px; }
}

/* Desktop */
@media (min-width: 980px) {
  section { padding: 72px 0; }
  .section-head h2 { font-size: 2.4rem; }

  .hero { padding-top: 56px; }
  .hero .wrap {
    flex-direction: row;
    align-items: center;
    gap: 56px;
  }
  .hero-copy { flex: 1.05; text-align: left; display: flex; flex-direction: column; align-items: flex-start; }
  .hero-visual-wrap { flex: 1; margin: 0; max-width: none; }
  .hero-copy h1 { font-size: 2.7rem; }
  .hero-copy p.sub { max-width: 460px; }
  .hero-cta-row { justify-content: flex-start; }
  .hero-cta-row .btn { width: auto; }

  .stats-wrap { gap: 32px; }
  .stat { max-width: 220px; }
  .stat b { font-size: 2.3rem; }
  .stats-arrow { width: 40px; height: 20px; }

  .benefits-layout { flex-direction: row; align-items: flex-start; gap: 56px; }
  .benefits-heading { flex-shrink: 0; width: 280px; font-size: 2.3rem; margin-bottom: 0; }
  .grid-4 { flex: 1; }
  .b-big-num { font-size: 2.6rem; }
  .b-card h3 { font-size: 1.1rem; }

  .urgency { padding: 56px; }
  .urgency h2 { font-size: 2rem; }

  .bonus-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }

  .m-card { width: 380px; }
  .wa-mock { width: 270px; }
}
