/* =========================================================================
   Rosa Verde — creator revenue operations
   Light, editorial theme. Palette drawn from the logo: forest green + cream.
   Brand color used sparingly (Airbnb-style): accent word + primary button.
   ========================================================================= */

:root {
  /* Warm light palette */
  --bg:         #fdfbf6;   /* warm near-white */
  --surface:    #ffffff;
  --cream:      #f3ede0;   /* logo cream, secondary surface */
  --cream-deep: #ece4d3;
  --ink:        #1d1c1a;   /* warm near-black */
  --muted:      #6d6a63;
  --faint:      #9a968c;
  --line:       #e7e1d5;   /* warm hairline */
  --line-2:     #d9d2c3;

  --green:      #356b4f;   /* forest green from the logo */
  --green-deep: #2a5540;
  --green-soft: #eef3ee;
  --rose:       #c65b7c;   /* muted rose, used very rarely */

  --radius:     18px;
  --radius-sm:  12px;
  --maxw:       1200px;

  --shadow-sm:  0 1px 2px rgba(29,28,26,.05);
  --shadow:     0 12px 34px -14px rgba(29,28,26,.18);
  --shadow-lg:  0 30px 70px -30px rgba(29,28,26,.28);

  --ff-sans:    "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ff-display: "Fraunces", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--ff-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.5rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); font-weight: 600; }
p { margin: 0 0 1rem; }

.tabnum { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.25rem, 5vw, 3.75rem) 0; }
.section--cream { background: var(--cream); }
.center { text-align: center; }

.eyebrow {
  display: inline-block; font-family: var(--ff-sans);
  font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--green); margin-bottom: 1rem;
}
.lede { font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: var(--muted); max-width: 46ch; }
.lede.center { margin-inline: auto; }

/* accent word — the ONE place brand color leads, like Airbnb's "Airbnb it." */
.grad { color: var(--green); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--ff-sans); font-weight: 700; font-size: .98rem;
  padding: .8rem 1.4rem; border-radius: 12px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-deep); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 1rem 1.7rem; font-size: 1.05rem; border-radius: 14px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253,251,246,.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .65rem; font-family: var(--ff-display); font-weight: 600; font-size: 1.2rem; letter-spacing: -.01em; }
.brand__mark { width: 38px; height: 38px; border-radius: 10px; flex: none; object-fit: cover; box-shadow: var(--shadow-sm); }
.brand span { white-space: nowrap; line-height: 1.12; }
.brand small { display: block; font-family: var(--ff-sans); color: var(--muted); font-weight: 600; font-size: .62rem; letter-spacing: .14em; margin-top: 2px; }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { color: var(--muted); font-size: .96rem; font-weight: 600; transition: color .15s; }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: .75rem; }
.nav__toggle { display: none; background: none; border: 0; color: var(--ink); font-size: 1.3rem; cursor: pointer; padding: .3rem; }
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav.open .nav__links {
    display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column;
    align-items: flex-start; gap: 0; background: var(--surface); border-bottom: 1px solid var(--line); padding: .25rem 1.25rem 1.25rem;
  }
  .nav.open .nav__links a { padding: .85rem 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav__cta .btn--ghost { display: none; }
}
@media (max-width: 560px) {
  .nav__inner { gap: .55rem; }
  .brand { font-size: 1rem; gap: .5rem; }
  .brand__mark { width: 34px; height: 34px; }
  .brand small { font-size: .55rem; letter-spacing: .1em; }
  .nav__cta .btn--primary { padding: .6rem .95rem; font-size: .9rem; }
  .cta-more { display: none; }   /* nav CTA reads "Apply" on small screens */
}

/* ===================== EARN HERO (Airbnb-style tool up top) ===================== */
.hero-earn { padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem); }
.earn { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (max-width: 940px) { .earn { grid-template-columns: 1fr; gap: 2.5rem; } }
.earn__lead, .earn__panel { min-width: 0; }   /* allow children to shrink, prevents mobile overflow */

.earn__lead .kicker { font-family: var(--ff-display); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--green); font-weight: 500; margin: 0 0 .2rem; letter-spacing: -.02em; }
.earn__lead h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; color: var(--ink); margin: 0; }
.bignum {
  font-family: var(--ff-display); font-weight: 500;
  font-size: clamp(4.5rem, 12vw, 8rem); line-height: .95; letter-spacing: -.04em;
  color: var(--ink); margin: .15em 0 .1em; font-variant-numeric: tabular-nums;
}
.bignum-sub { font-size: clamp(1rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 34ch; margin: 0 0 2rem; }
.bignum-sub strong { color: var(--ink); font-weight: 700; }

.slider-wrap { margin: 0 0 .9rem; }
.slider-label { color: var(--muted); font-size: .98rem; margin: 0 0 1.5rem; }
.slider-label u { color: var(--ink); text-decoration-thickness: 1.5px; text-underline-offset: 3px; font-weight: 600; }

.learn { display: inline-block; color: var(--ink); font-weight: 600; font-size: .96rem; border-bottom: 1.5px solid var(--line-2); padding-bottom: 2px; margin-bottom: 1.75rem; transition: border-color .15s; }
.learn:hover { border-color: var(--ink); }

.context-pill {
  display: flex; align-items: center; gap: .85rem; width: 100%; max-width: 380px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: .75rem 1.1rem; box-shadow: var(--shadow-sm);
}
.context-pill .icn { width: 34px; height: 34px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; flex: none; font-size: 1.05rem; }
.context-pill b { display: block; font-size: .98rem; }
.context-pill span { display: block; color: var(--muted); font-size: .85rem; }

/* Right panel — the "map" analog: live revenue recovery */
.earn__panel {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 22px; padding: clamp(1.5rem, 2.5vw, 2.25rem); box-shadow: var(--shadow-lg);
}
.earn__panel h2 { font-family: var(--ff-sans); font-size: 1.15rem; font-weight: 700; letter-spacing: 0; margin-bottom: .35rem; }
.earn__panel .panel-note { color: var(--muted); font-size: .9rem; margin: 0 0 1.75rem; }

/* ===================== EXPLAINER HERO (what this is) ===================== */
.explainer { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(1.5rem, 3vw, 2.5rem); }
.explain { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 940px) { .explain { grid-template-columns: 1fr; gap: 2.5rem; } }
.explain__lead h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 500; }
.explain__sub { font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: var(--muted); max-width: 46ch; margin: 1.25rem 0 1.75rem; }
.explain__actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.trustrow { list-style: none; display: flex; flex-wrap: wrap; gap: .55rem 1.4rem; padding: 0; margin: 0; }
.trustrow li { display: flex; align-items: center; gap: .45rem; color: var(--muted); font-size: .9rem; font-weight: 600; }
.trustrow li::before { content: "✓"; color: var(--green); font-weight: 800; }

.projteaser { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: clamp(1.5rem, 2.5vw, 2.25rem); box-shadow: var(--shadow-lg); }
.projteaser__tag { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.projteaser__big { font-family: var(--ff-display); font-weight: 500; font-size: clamp(3rem, 7vw, 4rem); color: var(--green); letter-spacing: -.03em; line-height: 1; margin: .35rem 0 .15rem; font-variant-numeric: tabular-nums; }
.projteaser__lbl { color: var(--muted); font-size: .9rem; margin-bottom: 1.35rem; }
.projteaser__rows { display: grid; gap: .75rem; border-top: 1px solid var(--line); padding-top: 1.15rem; }
.projteaser__rows .rrow b { font-variant-numeric: tabular-nums; }

/* Two co-equal hero stats (money + time) */
.heroes { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-bottom: 1.1rem; }
@media (max-width: 560px) { .heroes { grid-template-columns: 1fr; } }
.herostat { position: relative; min-width: 0; background: var(--cream); border: 1px solid var(--line); border-radius: 16px; padding: 1.15rem 1.15rem 1rem; }
.herostat--money { background: var(--green-soft); border-color: #cfe0d4; }
.herostat__num { font-family: var(--ff-display); font-weight: 500; font-size: clamp(1.9rem, 4.5vw, 2.55rem); line-height: 1; letter-spacing: -.03em; color: var(--ink); font-variant-numeric: tabular-nums; }
.herostat--money .herostat__num { color: var(--green); }
.herostat__num small { font-size: .42em; font-family: var(--ff-sans); font-weight: 700; color: var(--muted); margin-left: 3px; }
.herostat__lbl { color: var(--muted); font-size: .8rem; margin-top: .5rem; line-height: 1.35; }
.badge { position: absolute; top: -11px; right: 11px; background: var(--green); color: #fff; font-size: .72rem; font-weight: 700; padding: .25rem .6rem; border-radius: 999px; font-variant-numeric: tabular-nums; box-shadow: var(--shadow-sm); }
.hero-gain { font-size: .92rem; color: var(--muted); margin: 0 0 1.35rem; line-height: 1.5; }
.hero-gain b { color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; }

/* Day / week / month breakdown table */
.breakdown { overflow-x: auto; max-width: 100%; }
.breakdown table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.breakdown th, .breakdown td { text-align: right; padding: .55rem .45rem; font-size: .9rem; white-space: nowrap; }
.breakdown th:first-child, .breakdown td:first-child { text-align: left; color: var(--muted); font-weight: 500; }
.breakdown thead th { color: var(--faint); font-weight: 700; font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; border-bottom: 1px solid var(--line); }
.breakdown tbody td { border-bottom: 1px solid var(--line); }
.breakdown tr.cut td { color: var(--muted); }
.breakdown tr.net td { font-weight: 700; color: var(--ink); font-size: 1rem; }
.breakdown tr.net td:last-child { color: var(--green); }
.breakdown tbody tr:last-child td { border-bottom: 0; }

/* ---------- Sliders (shared) ---------- */
.field { margin-bottom: 1.5rem; }
.field:last-child { margin-bottom: 0; }
.field__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .55rem; }
.field label { font-weight: 600; font-size: .96rem; }
.field__val { color: var(--green); font-weight: 700; font-variant-numeric: tabular-nums; font-size: 1.05rem; }
.field__hint { color: var(--muted); font-size: .82rem; margin-top: .5rem; }

input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 4px;
  border-radius: 999px; background: var(--line-2); outline: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--ink); border: 4px solid var(--surface); box-shadow: 0 1px 6px rgba(0,0,0,.25); margin-top: -1px;
}
input[type="range"]::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%; background: var(--ink); border: 4px solid var(--surface); box-shadow: 0 1px 6px rgba(0,0,0,.25);
}
.earn__panel input[type="range"]::-webkit-slider-thumb { background: var(--green); }
.earn__panel input[type="range"]::-moz-range-thumb { background: var(--green); }

/* result rows */
.result-rows { border-top: 1px solid var(--line); margin-top: 1.75rem; padding-top: 1.5rem; display: grid; gap: .85rem; }
.rrow { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.rrow span { color: var(--muted); font-size: .95rem; }
.rrow b { font-weight: 700; font-variant-numeric: tabular-nums; font-size: 1.1rem; }
.rrow.total { border-top: 1px dashed var(--line-2); padding-top: .85rem; margin-top: .1rem; }
.rrow.total span { color: var(--ink); font-weight: 600; }
.rrow.total b { color: var(--green); font-size: 1.5rem; font-family: var(--ff-display); }

/* ---------- Standalone calculator (fallback / other uses) ---------- */
.calc { border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: var(--surface); box-shadow: var(--shadow); }
.calc__grid { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) { .calc__grid { grid-template-columns: 1fr; } }
.calc__inputs { padding: clamp(1.5rem, 3vw, 2.25rem); border-right: 1px solid var(--line); }
@media (max-width: 900px) { .calc__inputs { border-right: 0; border-bottom: 1px solid var(--line); } }
.calc__results { padding: clamp(1.5rem, 3vw, 2.25rem); background: var(--cream); }

/* ---------- Pain quotes ---------- */
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 760px) { .quotes { grid-template-columns: 1fr; } }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.9rem 1.6rem; position: relative; box-shadow: var(--shadow-sm); }
.quote p { font-family: var(--ff-display); font-size: 1.25rem; line-height: 1.4; color: var(--ink); font-weight: 400; }
.quote cite { color: var(--muted); font-style: normal; font-size: .9rem; }

/* ---------- Pivot ---------- */
.pivot { text-align: center; }
.pivot h2 { max-width: 20ch; margin-inline: auto; }

/* ---------- Operations grid ---------- */
.ops { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 900px) { .ops { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ops { grid-template-columns: 1fr; } }
.op { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; transition: transform .2s, box-shadow .2s; }
.op:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.op__icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--green-soft); color: var(--green); margin-bottom: 1rem; font-size: 1.15rem; }
.op h3 { font-family: var(--ff-sans); font-size: 1.1rem; font-weight: 700; }
.op p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Metrics ---------- */
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 700px) { .metrics { grid-template-columns: 1fr; } }
.metric { border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.75rem; background: var(--surface); }
.metric__num { font-family: var(--ff-display); font-size: clamp(2.6rem, 5vw, 3.4rem); font-weight: 500; letter-spacing: -.03em; color: var(--green); }
.metric__label { color: var(--muted); font-size: .96rem; }

/* ---------- Selectivity ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; } }
.forwho { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem; background: var(--surface); }
.forwho h3 { font-family: var(--ff-sans); font-weight: 700; }
.forwho ul { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .75rem; }
.forwho li { display: flex; gap: .7rem; color: var(--muted); }
.forwho li::before { content: ""; flex: none; margin-top: .55rem; width: 7px; height: 7px; border-radius: 50%; }
.forwho--yes li::before { background: var(--green); }
.forwho--no li::before { background: var(--line-2); }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 1rem; counter-reset: step; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: start; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.75rem; background: var(--surface); }
.step__n { counter-increment: step; width: 48px; height: 48px; border-radius: 12px; flex: none; display: grid; place-items: center; font-family: var(--ff-display); font-weight: 600; font-size: 1.3rem; color: var(--green); background: var(--green-soft); }
.step__n::before { content: counter(step); }
.step h3 { font-family: var(--ff-sans); font-weight: 700; margin-bottom: .3rem; }
.step p { color: var(--muted); margin: 0; }

/* ---------- Cases ---------- */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 860px) { .cases { grid-template-columns: 1fr; } }
.case { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem; background: var(--surface); }
.case__delta { font-family: var(--ff-display); font-size: 2.6rem; font-weight: 500; color: var(--green); letter-spacing: -.03em; }
.case__meta { color: var(--muted); font-size: .9rem; }
.case p { margin-top: 1rem; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.form label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .4rem; }
.form .req { color: var(--rose); }
.input, select.input, textarea.input {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line-2); border-radius: var(--radius-sm);
  padding: .8rem .95rem; transition: border-color .15s, box-shadow .15s;
}
.input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(53,107,79,.14); }
textarea.input { resize: vertical; min-height: 110px; }
.form__note { color: var(--muted); font-size: .82rem; }
.form-error { color: #b3261e; font-size: .9rem; margin: .75rem 0 0; }
.form-error a { text-decoration: underline; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-panel { border: 1px solid var(--line); border-radius: 22px; padding: clamp(1.75rem, 3vw, 2.75rem); background: var(--surface); box-shadow: var(--shadow); }
.form-success { display: none; text-align: center; padding: 2rem 1rem; }
.form-success.show { display: block; }
.form-success .check { width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 1.25rem; display: grid; place-items: center; background: var(--green-soft); color: var(--green); font-size: 1.8rem; }

/* ---------- Wizard ---------- */
.wizard { max-width: 640px; margin-inline: auto; }
.wizard__bar { height: 6px; background: var(--line); border-radius: 999px; overflow: hidden; margin-bottom: 2.25rem; }
.wizard__fill { height: 100%; width: 0; background: var(--green); transition: width .35s ease; }
.wstep { display: none; }
.wstep.active { display: block; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.wstep__count { color: var(--green); font-weight: 700; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.wstep h2 { margin: .5rem 0 1.5rem; font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.choices { display: grid; gap: .7rem; }
.choice { border: 1.5px solid var(--line-2); border-radius: var(--radius-sm); padding: 1rem 1.15rem; cursor: pointer; transition: border-color .15s, background .15s; font-weight: 600; }
.choice:hover { border-color: var(--green); }
.choice.sel { border-color: var(--green); background: var(--green-soft); }
.wizard__actions { display: flex; justify-content: space-between; margin-top: 2rem; gap: 1rem; }
.wizard__actions .btn--ghost[disabled] { opacity: .35; pointer-events: none; }

.audit-result { display: none; }
.audit-result.show { display: block; }
.gap-hero { text-align: center; margin-bottom: 2.5rem; }
.gap-hero .cap { color: var(--muted); text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; font-weight: 700; }
.gap-hero .big { font-family: var(--ff-display); font-size: clamp(3rem, 8vw, 4.6rem); font-weight: 500; color: var(--green); letter-spacing: -.04em; margin: .2rem 0; }
.findings { display: grid; gap: .9rem; margin: 2rem 0; }
.finding { display: grid; grid-template-columns: auto 1fr; gap: 1rem; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; background: var(--surface); }
.finding__icn { color: var(--green); font-size: 1.2rem; }
.finding h4 { margin: 0 0 .25rem; font-size: 1.05rem; }
.finding p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ---------- Ambassador ---------- */
.offer { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 800px) { .offer { grid-template-columns: 1fr; } }
.offer__card { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem; background: var(--surface); text-align: center; }
.offer__amt { font-family: var(--ff-display); font-size: 2.6rem; font-weight: 500; color: var(--green); letter-spacing: -.03em; }
.offer__card h3 { font-family: var(--ff-sans); font-size: 1.05rem; font-weight: 700; }
.offer__card p { color: var(--muted); font-size: .9rem; margin: .5rem 0 0; }

.faq { display: grid; gap: .75rem; }
details.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); overflow: hidden; }
details.faq__item summary { cursor: pointer; padding: 1.15rem 1.4rem; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
details.faq__item summary::-webkit-details-marker { display: none; }
details.faq__item summary::after { content: "+"; color: var(--green); font-size: 1.5rem; font-weight: 300; }
details.faq__item[open] summary::after { content: "\2013"; }
details.faq__item p { color: var(--muted); padding: 0 1.4rem 1.25rem; margin: 0; }

/* ---------- Chat mockup (product shot) ---------- */
.chatmock {
  background: var(--surface); border: 1px solid var(--line); border-radius: 24px;
  box-shadow: var(--shadow-lg); overflow: hidden; max-width: 420px; width: 100%;
}
.chatmock__bar { display: flex; align-items: center; gap: .6rem; padding: .9rem 1.1rem; border-bottom: 1px solid var(--line); background: var(--cream); }
.chatmock__ava { width: 34px; height: 34px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .9rem; flex: none; }
.chatmock__who b { display: block; font-size: .92rem; }
.chatmock__who span { color: var(--muted); font-size: .78rem; }
.chatmock__body { padding: 1.25rem 1.1rem; display: grid; gap: .7rem; background:
  linear-gradient(0deg, rgba(53,107,79,.03), rgba(53,107,79,.03)); }
.bubble { max-width: 78%; padding: .7rem .95rem; border-radius: 16px; font-size: .95rem; line-height: 1.4; }
.bubble.fan { background: var(--cream-deep); color: var(--ink); border-bottom-left-radius: 5px; justify-self: start; }
.bubble.you { background: var(--green); color: #fff; border-bottom-right-radius: 5px; justify-self: end; }
.bubble.tag { justify-self: center; background: transparent; color: var(--faint); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; padding: .2rem; max-width: none; }
.chatmock__foot { padding: .8rem 1.1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; display: flex; align-items: center; gap: .5rem; }

/* Product-cover shot — Etsy-style lead-magnet hero (on brand: green + cream + gold badge) */
.product-shot { position: relative; width: min(100%, 360px); }
.product-shot .sheet { position: absolute; inset: 0; border-radius: 20px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.product-shot .sheet.s1 { transform: rotate(-6deg) translate(-16px, 12px); }
.product-shot .sheet.s2 { transform: rotate(6deg) translate(16px, 6px); }
.product-shot__badge {
  position: absolute; top: -18px; right: -12px; z-index: 4;
  width: 78px; height: 78px; border-radius: 50%; display: grid; place-items: center;
  text-align: center; line-height: 1.05; font-weight: 800; font-size: .82rem;
  color: #3a2a06; background: radial-gradient(circle at 34% 30%, #f6d888, #c8912f);
  border: 3px solid #fff8e6; box-shadow: 0 10px 22px rgba(0,0,0,.28); transform: rotate(10deg);
}
.product-cover {
  position: relative; z-index: 2; border-radius: 20px; padding: 2.25rem 1.9rem;
  background: linear-gradient(155deg, var(--green) 0%, var(--green-deep) 72%, #1c3d2c 100%);
  color: #f3ede0; box-shadow: var(--shadow-lg); overflow: hidden;
}
.pc-logo { width: 40px; height: 40px; border-radius: 9px; display: block; margin-bottom: 1.1rem; }
.pc-eyebrow { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: #f6d888; }
.pc-title { font-family: var(--ff-display); font-weight: 600; font-size: clamp(2rem, 5.5vw, 2.7rem); line-height: 1.02; color: #fff; margin: .35rem 0 0; }
.pc-rule { width: 48px; height: 3px; background: #f6d888; border-radius: 2px; margin: 1.1rem 0; }
.pc-sub { color: rgba(243, 237, 224, .85); font-size: .95rem; margin: 0 0 1.35rem; }
.pc-tag { display: inline-block; background: rgba(255, 255, 255, .14); color: #fff; font-weight: 700; font-size: .82rem; padding: .5rem .95rem; border-radius: 999px; }

/* worked-example figure block (ambassador) */
.figure-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 1.5rem; }
@media (max-width: 700px) { .figure-row { grid-template-columns: 1fr; } }
.figure { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; background: var(--surface); }
.figure .lbl { color: var(--muted); font-size: .85rem; }
.figure .amt { font-family: var(--ff-display); font-size: 2.2rem; color: var(--green); letter-spacing: -.02em; }

/* payout breakdown rows reuse .result-rows/.rrow */

/* ---------- Scripts ---------- */
.scripts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
@media (max-width: 700px) { .scripts { grid-template-columns: 1fr; } }
.scriptcard { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; background: var(--surface); position: relative; }
.scriptcard__tag { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
.scriptcard h3 { font-family: var(--ff-sans); font-size: 1.12rem; font-weight: 700; margin: .5rem 0; }
.scriptcard p { color: var(--muted); font-size: .93rem; margin: 0; }
.scriptcard .lock { position: absolute; top: 1.3rem; right: 1.3rem; }
.scriptcard.locked { background: var(--cream); }

/* ---------- Trial page ---------- */
.outcomes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 700px) { .outcomes { grid-template-columns: 1fr; } }
.outcome { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem; background: var(--surface); box-shadow: var(--shadow-sm); }
.outcome--win { background: var(--green-soft); border-color: #cfe0d4; }
.outcome__tag { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
.outcome__big { font-family: var(--ff-display); font-size: 2.9rem; color: var(--green); letter-spacing: -.02em; line-height: 1; margin: .35rem 0 .1rem; }
.outcome h3 { font-family: var(--ff-sans); font-weight: 700; margin: .5rem 0 .4rem; }
.outcome p { color: var(--muted); margin: 0; }

.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 2.2rem; }
@media (max-width: 640px) { .checks { grid-template-columns: 1fr; } }
.check-item { display: grid; grid-template-columns: auto 1fr; gap: .75rem; align-items: start; }
.check-item .ic { color: var(--green); font-weight: 700; margin-top: .1rem; }
.check-item b { display: block; }
.check-item span { color: var(--muted); font-size: .92rem; }

.qualify { border: 1px solid var(--line); border-left: 3px solid var(--green); border-radius: var(--radius-sm); padding: 1.4rem 1.6rem; background: var(--surface); color: var(--muted); }
.qualify b { color: var(--ink); }

.platforms { display: flex; flex-wrap: wrap; gap: .6rem; }
.platform { border: 1px solid var(--line); border-radius: 999px; padding: .55rem 1.1rem; background: var(--surface); font-weight: 600; font-size: .92rem; }

/* Platform logo bar ("platforms we can help you with") */
.platform-bar { padding: 1.9rem 0; background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.platform-bar .eyebrow { display: block; margin: 0 0 1.25rem; }
.logostrip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.75rem, 5vw, 3.5rem); }
.logostrip img {
  height: 52px; width: auto; max-width: 260px; object-fit: contain;
  filter: grayscale(1); opacity: .6; transition: filter .2s ease, opacity .2s ease;
}
.logostrip img:hover { filter: none; opacity: 1; }
@media (max-width: 560px) { .platform-bar { padding: 1.4rem 0; } .logostrip img { height: 44px; } }

.trial-two { display: grid; gap: 1.25rem; margin-top: .5rem; }
.trial-two > div + div { border-top: 1px solid var(--line); padding-top: 1.25rem; }
.trial-two .outcome__big { margin: 0 0 .2rem; }
.trial-two p { margin: 0; color: var(--muted); font-size: .95rem; }
.projteaser__foot { margin: 1.25rem 0 0; color: var(--faint); font-size: .83rem; line-height: 1.5; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--green); color: #fff; border-radius: 24px; text-align: center; padding: clamp(2.75rem, 6vw, 4.25rem) 1.5rem; }
.cta-band .eyebrow { color: #bfe0cd; }
.cta-band h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.cta-band p { color: #d9e7dd; max-width: 46ch; margin: 0 auto 1.75rem; }
.cta-band .btn--primary { background: #fff; color: var(--green); }
.cta-band .btn--primary:hover { background: var(--cream); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 3rem 0 2.5rem; margin-top: 1rem; }
.footer__grid { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer__links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer__links a { color: var(--muted); font-size: .92rem; font-weight: 600; }
.footer__links a:hover { color: var(--ink); }
.footer__legal { color: var(--faint); font-size: .8rem; margin-top: 2rem; max-width: 74ch; line-height: 1.65; }

/* ---------- Misc ---------- */
.disclaimer { color: var(--muted); font-size: .84rem; border-top: 1px solid var(--line); padding-top: 1.5rem; line-height: 1.7; }
.mathbox { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem; background: var(--surface); }
.mathbox h3 { color: var(--green); font-family: var(--ff-sans); font-weight: 700; }
.mathbox code { background: var(--cream); border-radius: 6px; padding: .1rem .4rem; font-size: .88em; }
.hidden { display: none !important; }
.mt-lg { margin-top: 2rem; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
