:root {
  --paper: #f2eee5;
  --paper-soft: #ece6d9;
  --ink: #0b0b0a;
  --ink-2: #1a1a18;
  --dark: #050606;
  --teal: #05383b;
  --teal-2: #082629;
  --copper: #b87333;
  --orange: #e8541c;
  --muted: #655f55;
  --faint: #a39c8c;
  --line: rgba(11, 11, 10, 0.13);
  --line-dark: rgba(242, 238, 229, 0.16);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Geist", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; border: 0; }
::selection { background: var(--orange); color: var(--paper); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.chrome {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px 34px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  pointer-events: none;
}
.chrome > * { pointer-events: auto; }
.brand { font-family: var(--serif); font-size: 24px; letter-spacing: 0; text-transform: none; }
.brand em { color: var(--orange); font-style: italic; }
.chrome nav { display: flex; gap: 22px; color: var(--faint); }
.chrome nav a:hover { color: var(--orange); }
.chrome-cta {
  justify-self: end;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 9px 15px;
  background: transparent;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 10px;
}
.chrome.is-dark { color: var(--paper); }
.chrome.is-dark nav { color: rgba(242,238,229,.55); }

.case-scroll { height: 600vh; position: relative; }
.case-viewport { height: 100vh; position: sticky; top: 0; overflow: hidden; }
.case-track { height: 100%; display: flex; will-change: transform; transition: transform 80ms linear; }
.scene {
  flex: 0 0 100vw;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 104px clamp(28px, 5vw, 76px) 84px;
  display: grid;
  align-items: center;
}
.paper { background: var(--paper); color: var(--ink); }
.paper-soft { background: var(--paper-soft); color: var(--ink); }
.dark {
  background:
    radial-gradient(circle at 72% 20%, rgba(184,115,51,.2), transparent 34%),
    linear-gradient(135deg, var(--teal), var(--dark) 58%);
  color: var(--paper);
}
.cta-scene {
  background:
    linear-gradient(120deg, rgba(5,56,59,.92), rgba(5,6,6,.96)),
    radial-gradient(circle at 72% 20%, rgba(184,115,51,.28), transparent 34%);
  color: var(--paper);
}

.scene-grid, .split, .flow-layout, .result-layout {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}
.scene-hero .scene-grid { padding-bottom: 118px; }
.flow-layout, .result-layout { grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); }
.copy { max-width: 610px; }
.copy.narrow { max-width: 520px; }
.eyebrow {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
}
h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: .98;
  letter-spacing: 0;
}
h1 { font-size: clamp(54px, 7.4vw, 104px); max-width: 760px; }
h2 { font-size: clamp(44px, 6vw, 84px); }
h3 { font-size: clamp(28px, 3.2vw, 46px); line-height: 1.04; }
.stacked-heading span { display: block; }
.split .stacked-heading { font-size: clamp(44px, 5.2vw, 74px); }
.flow-layout .stacked-heading { font-size: clamp(42px, 4.6vw, 66px); }
em { font-style: italic; color: var(--orange); }
.lead, .copy p {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
  color: var(--muted);
}
.dark .copy p, .cta-scene .copy p, .cta-panel p { color: rgba(242,238,229,.72); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; align-items: center; }
.primary, .secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
}
.primary {
  background: linear-gradient(135deg, var(--orange), var(--copper));
  color: var(--paper);
  box-shadow: 0 16px 44px rgba(184,115,51,.24);
}
.primary.large { min-height: 56px; padding-inline: 30px; font-weight: 600; }
.secondary { color: var(--ink); border: 1px solid var(--line); background: rgba(255,255,255,.25); }
.dark .secondary, .cta-scene .secondary { color: var(--paper); border-color: var(--line-dark); }

.phone-stage {
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 42%, rgba(232,84,28,.24), transparent 30%),
    linear-gradient(145deg, #f7f2e8, #dfd5c3);
  display: grid;
  place-items: center;
  padding: 72px 20px 38px;
  position: relative;
  box-shadow: 0 38px 90px rgba(11,11,10,.13);
}
.live-pill {
  position: absolute;
  top: 26px;
  left: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
}
.live-pill span { width: 7px; height: 7px; border-radius: 50%; background: #2c7a4b; box-shadow: 0 0 0 7px rgba(44,122,75,.12); }
.phone {
  width: min(360px, 84%);
  min-height: 540px;
  border-radius: 42px;
  background: linear-gradient(180deg, #061b1e, #071010);
  color: var(--paper);
  padding: 24px;
  box-shadow: inset 0 0 0 1px rgba(242,238,229,.12), 0 32px 70px rgba(0,0,0,.3);
}
.phone-top, .phone-call { display: flex; justify-content: space-between; gap: 16px; font-family: var(--mono); font-size: 11px; color: rgba(242,238,229,.55); }
.phone-call { display: block; margin-top: 58px; }
.phone-call strong { display: block; margin-top: 10px; font-family: var(--serif); font-size: 34px; color: var(--paper); font-weight: 400; }
.phone-call p { margin: 6px 0 0; }
.mini-label { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); }
.transcript { margin-top: 38px; display: grid; gap: 12px; }
.transcript p {
  margin: 0;
  padding: 13px 14px;
  border: 1px solid rgba(242,238,229,.12);
  border-radius: 14px;
  background: rgba(242,238,229,.06);
  color: rgba(242,238,229,.82);
  line-height: 1.45;
  font-size: 14px;
}
.transcript b { color: var(--orange); margin-right: 8px; font-weight: 600; }

.proof-strip {
  position: absolute;
  left: clamp(28px, 5vw, 76px);
  right: clamp(28px, 5vw, 76px);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(242,238,229,.78);
  backdrop-filter: blur(16px);
}
.proof-strip div { padding: 18px 22px; border-right: 1px solid var(--line); }
.proof-strip div:last-child { border-right: 0; }
.proof-strip strong { display: block; font-family: var(--serif); font-size: 36px; line-height: 1; font-weight: 400; color: var(--teal); }
.proof-strip span { display: block; margin-top: 7px; color: var(--muted); font-size: 13px; }

.chaos-board {
  min-height: 560px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(11,11,10,.55), rgba(11,11,10,.55)),
    linear-gradient(135deg, #8f806d, #3f3a31);
  position: relative;
  overflow: hidden;
}
.chaos-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 80px 80px;
}
.note {
  position: absolute;
  z-index: 1;
  width: 190px;
  padding: 18px;
  border-radius: 10px;
  background: #f4efe4;
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(0,0,0,.24);
  transform: rotate(-3deg);
  font-weight: 600;
}
.note small { display: block; margin-top: 6px; color: var(--muted); font-weight: 400; }
.note:nth-child(1) { left: 10%; top: 14%; }
.note:nth-child(2) { left: 44%; top: 10%; transform: rotate(4deg); }
.note:nth-child(3) { right: 9%; top: 33%; transform: rotate(-5deg); }
.note:nth-child(4) { left: 20%; bottom: 19%; transform: rotate(3deg); }
.note:nth-child(5) { right: 22%; bottom: 13%; transform: rotate(-2deg); }
.note.hot { border-left: 5px solid var(--orange); }
.note.muted { opacity: .86; }

.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; }
.check-list li {
  padding: 12px 15px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(242,238,229,.06);
  color: rgba(242,238,229,.82);
  line-height: 1.35;
}
.handover-card {
  border-radius: 28px;
  border: 1px solid var(--line-dark);
  background: rgba(242,238,229,.07);
  padding: 28px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.handover-card p {
  margin: 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--sans);
  font-size: clamp(18px, 2.1vw, 28px);
  color: rgba(242,238,229,.78);
}
.handover-card p:last-child { border-bottom: 0; }
.handover-card span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 13px;
  padding-top: .35em;
}

.flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: stretch; gap: 14px; }
.flow-step {
  min-height: 220px;
  border: 1px solid rgba(184,115,51,.42);
  border-radius: 22px;
  padding: 22px;
  background: rgba(242,238,229,.06);
}
.flow-step span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(232,84,28,.18);
  color: var(--orange);
  font-family: var(--mono);
  font-size: 12px;
}
.flow-step strong { display: block; margin-top: 28px; font-family: var(--serif); font-size: 30px; font-weight: 400; }
.flow-step p { margin: 10px 0 0; color: rgba(242,238,229,.66); line-height: 1.5; }
.flow-arrow { display: grid; place-items: center; color: var(--orange); font-size: 28px; }

.result-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.result-grid div {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.28);
}
.result-grid strong { display: block; font-family: var(--serif); font-size: clamp(28px, 3.2vw, 44px); line-height: 1.02; font-weight: 400; color: var(--teal); }
.result-grid span { display: block; margin-top: 14px; color: var(--muted); }

.cta-panel {
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
  padding: clamp(34px, 6vw, 76px);
  border: 1px solid var(--line-dark);
  border-radius: 34px;
  background: rgba(242,238,229,.06);
}
.cta-panel h2 { max-width: 820px; margin-inline: auto; }
.cta-panel p { max-width: 650px; margin: 24px auto 30px; font-size: 19px; line-height: 1.65; }
.text-link { display: block; margin-top: 20px; color: rgba(242,238,229,.68); text-decoration: underline; text-underline-offset: 4px; }

.progress {
  position: fixed;
  z-index: 40;
  left: 34px;
  right: 34px;
  bottom: 26px;
  height: 1px;
  background: rgba(11,11,10,.18);
  pointer-events: none;
}
.progress span { display: block; width: 0%; height: 100%; background: var(--orange); }

.funnel[hidden] { display: none; }
.funnel { position: fixed; z-index: 80; inset: 0; display: grid; place-items: center; padding: 20px; }
.funnel-backdrop { position: absolute; inset: 0; background: rgba(5,6,6,.68); backdrop-filter: blur(10px); }
.funnel-card {
  position: relative;
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 32px));
  overflow: auto;
  border-radius: 28px;
  background: var(--paper);
  color: var(--ink);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 34px 110px rgba(0,0,0,.4);
}
.funnel-close { position: absolute; top: 14px; right: 18px; font-size: 30px; line-height: 1; color: var(--muted); background: transparent; }
.funnel-progress { display: flex; gap: 7px; margin-bottom: 24px; }
.funnel-progress span { flex: 1; height: 4px; border-radius: 999px; background: rgba(11,11,10,.12); }
.funnel-progress span.active, .funnel-progress span.done { background: var(--orange); }
.funnel-step { display: none; }
.funnel-step.active { display: block; }
.funnel-step h3 { color: var(--ink); margin-bottom: 22px; }
.funnel-options { display: grid; gap: 12px; }
.funnel-options button {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffaf2;
  color: var(--ink);
}
.funnel-options button:hover { border-color: var(--orange); }
.funnel-options.compact { grid-template-columns: repeat(3, 1fr); }
form { display: grid; gap: 12px; }
input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 14px;
  background: #fffaf2;
  color: var(--ink);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.submit {
  min-height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--copper));
  color: var(--paper);
}
.back { margin-top: 12px; background: transparent; color: var(--muted); }
.honey { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.whatsapp { display: inline-flex; margin-top: 14px; color: var(--orange); text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 980px) {
  .chrome { grid-template-columns: 1fr auto; padding: 16px 20px; height: 66px; }
  .chrome nav { display: none; }
  .chrome-cta { font-size: 9px; padding: 8px 11px; }
  .case-scroll { height: auto; }
  .case-viewport { height: auto; position: relative; overflow: visible; }
  .case-track { display: block; transform: none !important; transition: none; }
  .scene { min-height: auto; padding: 92px 20px 62px; }
  .scene-grid, .split, .flow-layout, .result-layout { grid-template-columns: 1fr; gap: 30px; }
  .scene-hero .scene-grid { padding-bottom: 0; }
  h1 { font-size: clamp(50px, 15vw, 76px); }
  h2 { font-size: clamp(38px, 12vw, 58px); }
  .phone-stage { min-height: 560px; border-radius: 24px; }
  .proof-strip { position: static; margin: 28px auto 0; width: min(1240px, 100%); grid-template-columns: repeat(2, 1fr); }
  .proof-strip div:nth-child(2) { border-right: 0; }
  .proof-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .chaos-board { min-height: 460px; }
  .flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); min-height: 28px; }
  .result-grid { grid-template-columns: 1fr; }
  .progress { display: none; }
}

@media (max-width: 560px) {
  .brand { font-size: 21px; }
  .chrome-cta { max-width: 170px; white-space: normal; line-height: 1.25; }
  .lead, .copy p { font-size: 16px; }
  .hero-actions { align-items: stretch; }
  .primary, .secondary { width: 100%; }
  .phone { width: 92%; min-height: 500px; border-radius: 34px; }
  .phone-call strong { font-size: 30px; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip div:last-child { border-bottom: 0; }
  .note { width: 158px; padding: 14px; font-size: 14px; }
  .handover-card { padding: 18px; border-radius: 20px; }
  .handover-card p { grid-template-columns: 40px 1fr; font-size: 17px; }
  .funnel-options.compact, .form-row { grid-template-columns: 1fr; }
}
