/* moleskinho — site institucional
   Tokens, type, layout */

:root {
  /* paper-warm palette */
  --paper: #F4F1E8;
  --paper-deep: #ECE7D8;
  --surface: #FFFFFF;
  --ink: #14140F;
  --ink-2: #2A2A22;
  --muted: #6B6B5E;
  --muted-2: #9C9A8C;
  --rule: #D9D3BF;
  --rule-2: #E7E1CE;

  /* accent — verde-musgo */
  --moss: #2D4A3E;
  --moss-deep: #1F362C;
  --moss-tint: #E4ECE6;

  /* type — defaults overridden by [data-font] on <html> */
  --display: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans: "Bricolage Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

/* font pairings — switched via [data-font] on <html> */
html[data-font="editorial"] {
  --display: "Newsreader", Georgia, serif;
  --sans: "Bricolage Grotesque", -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}
html[data-font="geometric"] {
  --display: "EB Garamond", Georgia, serif;
  --sans: "Space Grotesk", -apple-system, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;
}
html[data-font="soft"] {
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Plus Jakarta Sans", -apple-system, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}
html[data-font="minimal"] {
  --display: "Instrument Serif", Georgia, serif;
  --sans: "Onest", -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  /* layout */
  --max: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: 3px; }
button { font: inherit; cursor: pointer; }

/* — paper texture overlay (subtle) — */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse at top, rgba(255,255,255,.5), transparent 60%),
    repeating-linear-gradient(0deg, rgba(20,20,15,.012) 0 1px, transparent 1px 3px);
  mix-blend-mode: multiply;
  z-index: 1;
}

/* — layout primitives — */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

section {
  position: relative;
  z-index: 2;
}

.rule {
  height: 1px;
  background: var(--rule);
  border: 0;
  margin: 0;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--moss);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
  display: inline-block;
}

/* — display type — */
h1, h2, h3 { margin: 0; letter-spacing: -0.02em; font-weight: 500; }

.h1 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.h1 em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--moss);
}

.h2 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.h2 em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--moss);
}

.h3 {
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.lede {
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 56ch;
  margin: 0;
}

/* — header / nav — */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  border-bottom: 1px solid var(--rule-2);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  display: inline-flex; align-items: baseline; gap: 8px;
  text-decoration: none;
}
.brand-mark {
  width: 22px; height: 22px;
  background: var(--ink);
  border-radius: 5px;
  position: relative;
  align-self: center;
  transform: translateY(2px);
}
.brand-mark::after {
  content: "";
  position: absolute; left: 4px; top: 4px;
  width: 4px; height: 14px;
  background: var(--moss);
  border-radius: 1px;
}
.brand-word {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav-links {
  display: none; gap: 28px;
  font-size: 14px; color: var(--muted);
}
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--ink); }
@media (min-width: 860px) { .nav-links { display: inline-flex; } }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-size: 14px;
  border: 1px solid var(--ink);
  transition: transform .15s ease, background .2s ease;
}
.nav-cta:hover { background: var(--moss); border-color: var(--moss); }

.nav-right {
  display: flex; align-items: center; gap: 10px;
}

/* — buttons — */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--moss);
  color: #F4F1E8;
  border-color: var(--moss);
}
.btn-primary:hover { background: var(--moss-deep); border-color: var(--moss-deep); }
.btn-ghost {
  background: transparent; color: var(--ink);
}
.btn-ghost:hover { color: var(--moss); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-ghost:hover .arrow-down { transform: translateY(3px); }

/* — hero — */
.hero {
  padding: clamp(40px, 7vw, 120px) 0 clamp(48px, 8vw, 100px);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px 6px 8px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--moss);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--moss) 20%, transparent);
}

.hero h1 { margin: 0 0 24px; }
.hero .lede { margin-bottom: 28px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px 18px; align-items: center; }

/* — chat mockup (original UI, neutral) — */
.phone {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 18.5;
  margin: 0 auto;
  background: #1a1a16;
  border-radius: 38px;
  padding: 11px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.04) inset,
    0 30px 60px -30px rgba(20,20,15,.4),
    0 12px 30px -20px rgba(20,20,15,.3);
}
@media (min-width: 980px) {
  .phone { max-width: 380px; border-radius: 44px; padding: 14px; }
}
.phone-screen {
  position: relative;
  height: 100%;
  background: var(--paper);
  border-radius: 32px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.phone-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #1a1a16;
  border-radius: 99px;
  z-index: 3;
}
.chat-head {
  padding: 38px 18px 14px;
  border-bottom: 1px solid var(--rule-2);
  display: flex; align-items: center; gap: 12px;
  background: color-mix(in srgb, var(--paper-deep) 60%, var(--surface));
}
.chat-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink);
  position: relative;
  flex-shrink: 0;
}
.chat-avatar::after {
  content: "";
  position: absolute; left: 8px; top: 8px;
  width: 6px; height: 20px;
  background: var(--moss);
  border-radius: 1px;
}
.chat-name { font-weight: 500; font-size: 14px; }
.chat-status { font-size: 11px; color: var(--moss); display: flex; align-items: center; gap: 5px; }
.chat-status .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--moss); }

.chat-body {
  flex: 1;
  padding: 16px 14px;
  display: flex; flex-direction: column; gap: 8px;
  overflow: hidden;
  font-size: 13.5px;
  line-height: 1.4;
}
.bubble {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 16px;
  word-wrap: break-word;
  animation: bubbleIn .5s cubic-bezier(.2,.7,.2,1) both;
}
.bubble.them {
  background: var(--surface);
  border: 1px solid var(--rule-2);
  border-bottom-left-radius: 6px;
  align-self: flex-start;
  color: var(--ink);
}
.bubble.me {
  background: var(--moss);
  color: var(--paper);
  border-bottom-right-radius: 6px;
  align-self: flex-end;
}
.bubble .time {
  display: block;
  font-size: 10px;
  margin-top: 4px;
  opacity: .55;
  font-family: var(--mono);
}
.bubble.brief {
  background: linear-gradient(180deg, #fff, #fbf8ef);
  border: 1px solid var(--rule);
  padding: 14px;
  border-radius: 14px;
  align-self: flex-start;
  max-width: 92%;
}
.bubble.brief b { display: block; font-size: 12px; color: var(--moss); font-family: var(--mono); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.bubble.brief ul { margin: 6px 0 0; padding: 0 0 0 0; list-style: none; }
.bubble.brief li { display: flex; gap: 8px; padding: 2px 0; font-size: 12.5px; }
.bubble.brief li::before {
  content: attr(data-mark);
  font-family: var(--mono);
  color: var(--moss);
  flex-shrink: 0;
}

.bubble:nth-child(1) { animation-delay: .1s; }
.bubble:nth-child(2) { animation-delay: .45s; }
.bubble:nth-child(3) { animation-delay: .9s; }
.bubble:nth-child(4) { animation-delay: 1.25s; }
.bubble:nth-child(5) { animation-delay: 1.6s; }

/* hero chat scripted: bubbles enter as-they-appear, no stagger needed */
#chat-hero .bubble { animation: bubbleIn .35s cubic-bezier(.2,.7,.2,1) both; animation-delay: 0s !important; }
#chat-hero .typing {
  align-self: flex-start;
  background: var(--surface);
  border: 1px solid var(--rule-2);
  padding: 10px 14px;
  border-radius: 16px;
  border-bottom-left-radius: 6px;
  display: inline-flex;
  gap: 4px;
  animation: bubbleIn .25s cubic-bezier(.2,.7,.2,1) both;
}
#chat-hero .typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--muted-2);
  animation: typingDot 1.1s infinite ease-in-out both;
}
#chat-hero .typing span:nth-child(2) { animation-delay: .15s; }
#chat-hero .typing span:nth-child(3) { animation-delay: .30s; }
@keyframes typingDot {
  0%, 60%, 100% { opacity: .35; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

@keyframes bubbleIn {
  0% { opacity: 0; transform: translateY(8px) scale(.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-input {
  padding: 10px 14px;
  border-top: 1px solid var(--rule-2);
  display: flex; align-items: center; gap: 8px;
  background: var(--paper-deep);
}
.chat-input .ipt {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  color: var(--muted-2);
}
.chat-input .send {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--moss);
  display: grid; place-items: center;
  color: var(--paper);
  font-size: 14px;
}

/* — for-whom strip — */
.for-whom {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
  background: color-mix(in srgb, var(--paper-deep) 50%, var(--paper));
}
.for-whom p {
  margin: 0; max-width: 980px;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.01em;
  color: var(--ink-2);
}
.for-whom p em { font-family: var(--display); font-style: italic; color: var(--moss); }

/* — section heading block — */
.section { padding: clamp(72px, 10vw, 130px) 0; }
.section-head {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 880px;
}
.section-head .lede { margin-top: 4px; }

/* — problem stats — */
.stats {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 56px;
}
@media (min-width: 720px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat {
  background: var(--surface);
  border: 1px solid var(--rule-2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.stat-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(60px, 7vw, 96px);
  line-height: 1;
  color: var(--moss);
  letter-spacing: -0.03em;
}
.stat-label {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink-2);
  max-width: 28ch;
}
.stat-foot {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.problem-prose {
  font-size: clamp(19px, 1.5vw, 22px);
  line-height: 1.55;
  max-width: 60ch;
  color: var(--ink-2);
  margin: 0;
}
.problem-prose em { font-family: var(--display); font-style: italic; color: var(--moss); }

/* — steps — */
.steps {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 760px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(4, 1fr); } }

.step {
  background: var(--surface);
  border: 1px solid var(--rule-2);
  border-radius: var(--radius-lg);
  padding: 26px 24px 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.step-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.step-num b { color: var(--moss); font-weight: 500; }
.step h3 { font-size: 19px; }
.step h3 em { font-family: var(--display); font-style: italic; color: var(--moss); }
.step p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.5; }
.step-illu {
  height: 86px;
  border-radius: 10px;
  background: var(--paper-deep);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.step-illu svg { width: 100%; height: 100%; }

/* — benefits — */
.benefits {
  display: grid; gap: 0;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
@media (min-width: 720px) { .benefits { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .benefits { grid-template-columns: repeat(3, 1fr); } }
.benefit {
  padding: 36px 32px 40px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: color-mix(in srgb, var(--surface) 60%, var(--paper));
  display: flex; flex-direction: column; gap: 12px;
  transition: background .25s ease;
}
.benefit:hover { background: var(--surface); }
.benefit-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--ink);
  margin-bottom: 6px;
}
.benefit h3 { font-size: 19px; letter-spacing: -0.015em; }
.benefit p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }

/* — plans — */
.plans {
  display: grid; gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 920px) { .plans { grid-template-columns: repeat(3, 1fr); } }
.plan {
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  background: var(--surface);
  display: flex; flex-direction: column;
  position: relative;
}
.plan.featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.plan.featured .plan-name { color: var(--paper); }
.plan.featured .plan-price em { color: var(--paper); }
.plan.featured .plan-features li { color: color-mix(in srgb, var(--paper) 80%, transparent); border-color: rgba(244,241,232,.1); }
.plan.featured .plan-features li::before { color: #C7D9CE; }
.plan-tag {
  position: absolute; top: 16px; right: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--moss);
  background: var(--moss-tint);
  padding: 4px 8px;
  border-radius: 4px;
}
.plan.featured .plan-tag { color: var(--paper); background: rgba(244,241,232,.12); }
.plan-name { font-family: var(--mono); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); }
.plan-price {
  font-family: var(--display);
  font-style: italic;
  font-size: 44px;
  line-height: 1.1;
  margin: 14px 0 6px;
}
.plan-sub { font-size: 13px; color: var(--muted); margin: 0 0 26px; }
.plan.featured .plan-sub { color: color-mix(in srgb, var(--paper) 70%, transparent); }
.plan-features { list-style: none; margin: 0 0 28px; padding: 0; flex: 1; }
.plan-features li {
  padding: 11px 0;
  border-top: 1px solid var(--rule-2);
  font-size: 14.5px;
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--ink-2);
}
.plan-features li::before {
  content: "—";
  color: var(--moss);
  font-family: var(--mono);
  flex-shrink: 0;
}
.plan-cta {
  width: 100%; justify-content: center;
}
.plan.featured .plan-cta {
  background: var(--paper); color: var(--ink); border-color: var(--paper);
}
.plan.featured .plan-cta:hover { background: var(--moss); color: var(--paper); border-color: var(--moss); }

/* — team — */
.team {
  display: grid; gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team { grid-template-columns: repeat(3, 1fr); } }
.person {
  background: var(--surface);
  border: 1px solid var(--rule-2);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; gap: 18px; align-items: flex-start;
}
.person-photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--paper-deep);
  border: 1px solid var(--rule);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.person-photo .ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  color: var(--moss);
}
.person h3 { font-size: 17px; margin-bottom: 2px; }
.person .role { font-family: var(--mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.person p { margin: 10px 0 0; font-size: 14px; color: var(--muted); line-height: 1.5; }

/* — faq — */
.faq { max-width: 880px; }
.faq-item {
  border-top: 1px solid var(--rule);
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: clamp(17px, 1.4vw, 20px);
  font-family: var(--sans);
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  letter-spacing: -0.01em;
}
.faq-q .plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  transition: background .2s, border-color .2s, transform .25s;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
}
.faq-q .plus::before { width: 10px; height: 1.5px; }
.faq-q .plus::after { width: 1.5px; height: 10px; transition: transform .25s; }
.faq-item[open] .plus { background: var(--moss); border-color: var(--moss); }
.faq-item[open] .plus::before, .faq-item[open] .plus::after { background: var(--paper); }
.faq-item[open] .plus::after { transform: scaleY(0); }
.faq-a {
  padding: 0 0 26px;
  max-width: 64ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.faq-a strong { color: var(--ink-2); font-weight: 500; }

/* — cta / form — */
.cta {
  background: var(--ink);
  color: var(--paper);
  border-radius: 28px;
  padding: clamp(40px, 5vw, 64px);
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
}
@media (min-width: 980px) { .cta { grid-template-columns: 1fr 1fr; gap: 64px; } }
.cta::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--moss) 0%, transparent 70%);
  opacity: .55;
  pointer-events: none;
}
.cta h2 { color: var(--paper); }
.cta h2 em { color: #C7D9CE; }
.cta .lede { color: color-mix(in srgb, var(--paper) 70%, transparent); }

.cta-meta {
  margin-top: 32px;
  display: flex; flex-direction: column; gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  color: color-mix(in srgb, var(--paper) 60%, transparent);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.cta-meta div { display: flex; align-items: center; gap: 10px; }
.cta-meta div::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--moss);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--moss) 25%, transparent);
}

form.lead {
  background: var(--paper);
  color: var(--ink);
  border-radius: 18px;
  padding: 28px;
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.field { display: grid; gap: 6px; }
.field.row-2 { grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 540px) { .field.row-2 { grid-template-columns: 1fr; } }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
}
.field label sup { color: var(--moss); }
.field input, .field select {
  border: 1px solid var(--rule);
  background: var(--surface);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--moss) 18%, transparent);
}
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M3 4.5L6 7.5L9 4.5' stroke='%232D4A3E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--muted);
  line-height: 1.5;
  margin-top: 4px;
}
.consent input { margin-top: 3px; accent-color: var(--moss); }
.consent a { color: var(--moss); }

.form-submit {
  margin-top: 6px;
  background: var(--moss);
  color: var(--paper);
  border: 0;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 500;
  width: 100%;
  transition: background .2s;
}
.form-submit:hover { background: var(--moss-deep); }
.form-success {
  display: none;
  padding: 22px;
  border: 1px solid var(--moss);
  background: var(--moss-tint);
  border-radius: 12px;
  color: var(--moss-deep);
  font-size: 15px;
}
.form-success strong { display: block; font-family: var(--display); font-style: italic; font-size: 22px; margin-bottom: 6px; color: var(--moss-deep); }
form.lead.submitted .field, form.lead.submitted .consent, form.lead.submitted .form-submit { display: none; }
form.lead.submitted .form-success { display: block; }

/* — footer — */
footer {
  border-top: 1px solid var(--rule);
  padding: 56px 0 36px;
  margin-top: clamp(64px, 8vw, 100px);
  color: var(--muted);
  font-size: 14px;
}
.foot-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.foot-grid h4 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-2);
  margin: 0 0 14px;
  font-weight: 500;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.foot-grid a { text-decoration: none; }
.foot-grid a:hover { color: var(--ink); }
.foot-tagline {
  margin: 18px 0 0;
  max-width: 36ch;
  color: var(--muted);
  font-size: 14px;
}
.foot-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted-2);
}

/* — reveal on scroll — */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* — utility — */
.center { text-align: center; }
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
.muted { color: var(--muted); }

/* small screens nav tweak */
@media (max-width: 540px) {
  .nav-cta { padding: 9px 14px; font-size: 13px; }
}

/* — mobile-only horizontal scroll nav — */
.nav-scroll {
  display: none;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px var(--gutter) 12px;
  border-top: 1px solid var(--rule-2);
  background: color-mix(in srgb, var(--paper) 80%, transparent);
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.nav-scroll::-webkit-scrollbar { display: none; }
.nav-scroll a {
  display: inline-flex; align-items: center; gap: 6px;
  flex-shrink: 0;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 999px;
  white-space: nowrap;
}
.nav-scroll a::before {
  content: attr(data-step);
  font-family: var(--mono);
  font-size: 10px;
  color: var(--moss);
  font-weight: 400;
  letter-spacing: .06em;
}
.nav-scroll a:active { background: var(--moss-tint); }
@media (max-width: 859px) {
  .nav-scroll { display: flex; }
}

/* — yellow marker highlight on display italic — */
.h1 em, .h2 em, .h3 em,
.for-whom p em, .problem-prose em,
.step h3 em, .benefit h3 em {
  background-image: linear-gradient(
    180deg,
    transparent 0%,
    transparent 18%,
    #F2DD6F 18%,
    #F2DD6F 92%,
    transparent 92%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 .12em;
  margin: 0 -.04em;
  color: var(--ink);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border-radius: 1px;
}

/* slight off-axis on the marker for a hand-stroked feel */
.h1 em, .h2 em {
  background-image: linear-gradient(
    178deg,
    transparent 0%,
    transparent 16%,
    #F2DD6F 18%,
    #F2DD6F 90%,
    transparent 94%
  );
}

/* on the dark CTA block, use a slightly warmer yellow + darker ink */
.cta h2 em {
  background-image: linear-gradient(
    178deg,
    transparent 0%,
    transparent 16%,
    #F0D55E 18%,
    #F0D55E 90%,
    transparent 94%
  );
  color: var(--ink);
}

/* keep stat numbers, brand wordmark, etc. untouched — these are .h1 em / .h2 em scoped */
.tweaks {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 100;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 16px;
  box-shadow: 0 18px 40px -20px rgba(20,20,15,.25), 0 6px 16px -10px rgba(20,20,15,.18);
  padding: 18px;
  width: 280px;
  display: none;
  font-family: var(--sans);
}
.tweaks.open { display: block; }
.tweaks-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.tweaks-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.tweaks-close {
  background: transparent; border: 0; padding: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.tweaks-close:hover { color: var(--ink); }
.tweaks-section { display: grid; gap: 6px; }
.tweak-opt {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--rule-2);
  border-radius: 10px;
  background: var(--paper);
  text-align: left;
  color: var(--ink);
  font-size: 13px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.tweak-opt:hover { border-color: var(--ink); }
.tweak-opt[aria-pressed="true"] {
  border-color: var(--moss);
  background: var(--moss-tint);
}
.tweak-opt b { font-weight: 500; }
.tweak-opt .preview {
  font-family: var(--prev-display, serif);
  font-style: italic;
  font-size: 18px;
  color: var(--moss);
  line-height: 1;
}
