/* =========================================================
   WATCH ME REBUILD — Landing page
   Built on the Watch Me Rebuild design system tokens.
   Warm paper-and-ink · dotted notebook + sunlit wash ·
   inked 2.5px outlines · wobble radii · sticker shadows ·
   Shantell (display) / Newsreader (body) / Caveat (hand).
   ========================================================= */

@import url("brand/tokens/fonts.css");
@import url("brand/tokens/colors.css");
@import url("brand/tokens/typography.css");
@import url("brand/tokens/spacing.css");
@import url("brand/tokens/radius.css");
@import url("brand/tokens/shadows.css");
@import url("brand/tokens/textures.css");

:root {
  --maxw: 1180px;
}

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

body {
  margin: 0;
  font: var(--role-body);
  color: var(--text-body);
  background-color: var(--bg-page);
  background-image: var(--tex-sun), var(--tex-dots);
  background-size: auto, var(--tex-dots-size);
  background-attachment: fixed, scroll;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; }
em { font-style: italic; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
img, svg { max-width: 100%; }

/* ---------- hand / scribble helpers ---------- */
.hand {
  font-family: var(--font-hand);
  font-weight: 600;
  line-height: 1.15;
}
.eyebrow {
  font-family: var(--font-hand);
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--clay-600);
  transform: rotate(-1.6deg);
  display: inline-block;
}
.kicker {
  font-family: var(--font-ui);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-size: var(--text-xs);
  color: var(--clay-600);
  display: inline-flex; align-items: center; gap: 10px;
}
.kicker::before { content: ""; width: 24px; height: 2.5px; background: var(--clay-500); border-radius: 2px; }

/* squiggly hand underline */
.uline { position: relative; white-space: nowrap; }
.uline svg {
  position: absolute; left: -2%; bottom: -0.32em; width: 104%; height: 0.4em;
  overflow: visible; pointer-events: none;
}
.uline svg path { stroke: var(--honey-500); stroke-width: 7; fill: none; stroke-linecap: round; }
.uline.clay svg path { stroke: var(--clay-500); }

/* hand-circled emphasis */
.circled { position: relative; }
.circled svg {
  position: absolute; left: -10%; top: -22%; width: 120%; height: 150%;
  overflow: visible; pointer-events: none;
}
.circled svg path { stroke: var(--clay-500); stroke-width: 3.4; fill: none; stroke-linecap: round; }

/* ---------- buttons (sticker) ---------- */
.btn {
  --bg: var(--clay-500);
  --bg-hover: var(--clay-600);
  --fg: var(--text-on-clay);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-ui); font-weight: 700; font-size: var(--text-base);
  line-height: 1.1;
  color: var(--fg);
  background: var(--bg);
  border: var(--stroke-bold) solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 13px 24px;
  cursor: pointer; text-decoration: none;
  box-shadow: var(--shadow-sticker);
  transition: transform .08s ease, box-shadow .08s ease, background .15s ease;
}
.btn:hover { background: var(--bg-hover); }
.btn:active { transform: translate(3px, 3px); box-shadow: 0 0 0 var(--ink); }
.btn .tick { font-weight: 900; }
.btn.coral { --bg: var(--clay-500); --bg-hover: var(--clay-600); --fg: var(--text-on-clay); }
.btn.sage { --bg: var(--sage-500); --bg-hover: var(--sage-600); --fg: #FBFDF8; }
.btn.big { font-size: var(--text-md); padding: 17px 32px; }
.btn.ghost {
  --bg: transparent; --fg: var(--ink);
  border-color: transparent; box-shadow: none;
}
.btn.ghost:hover { background: var(--clay-50); }
.btn.ghost:active { transform: none; box-shadow: none; }

.cta-note { font-family: var(--font-hand); font-size: 21px; color: var(--ink-soft); }

/* ---------- cards / sticky notes ---------- */
.card {
  background: var(--surface-card);
  border: var(--stroke-bold) solid var(--ink);
  border-radius: var(--wobble);
  box-shadow: var(--shadow-sticker-lg);
  padding: var(--pad-card-lg);
}
.note {
  position: relative;
  background: var(--honey-100);
  border: var(--stroke-bold) solid var(--ink);
  padding: 18px 20px;
  box-shadow: var(--shadow-sticker);
  border-radius: var(--wobble-sm);
  font-family: var(--font-hand);
  font-size: 20px; line-height: 1.15;
}

/* ---------- progress motif ("the progress bar lies") ---------- */
.installbar {
  background: var(--surface-card);
  border: var(--stroke-bold) solid var(--ink);
  border-radius: var(--wobble-sm);
  padding: 18px 20px 20px;
  box-shadow: var(--shadow-sticker-lg);
}
.installbar .ib-top {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-ui); font-weight: 700; font-size: 15px; margin-bottom: 12px;
  color: var(--ink);
}
.installbar .ib-top .dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--sage-500);
  display: inline-block; margin-right: 7px;
  animation: pulse 1.8s infinite;
}
.installbar .pct { font-variant-numeric: tabular-nums; color: var(--clay-600); }
.track {
  height: 18px; background: var(--paper-deep); border: 2px solid var(--ink); border-radius: var(--radius-pill);
  overflow: hidden; position: relative;
}
.fill {
  height: 100%; width: 0;
  background: repeating-linear-gradient(45deg, var(--honey-500) 0 11px, var(--honey-600) 11px 22px);
  transition: width 1.6s cubic-bezier(.2,.8,.2,1);
  border-right: 2px solid var(--ink);
}
.ib-sub { font-family: var(--font-hand); font-size: 19px; color: var(--ink-soft); margin-top: 10px; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(124,158,106,.5); }
  70% { box-shadow: 0 0 0 8px rgba(124,158,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(124,158,106,0); }
}

/* ---------- sections ---------- */
section { position: relative; }
.section-pad { padding: clamp(64px, 8vw, 112px) 0; }
.panel-warm { background: var(--paper-deep); }
.panel-ink  { background: var(--ink); color: var(--paper); }
.panel-ink h1, .panel-ink h2, .panel-ink h3 { color: var(--paper); }

.h-sec { font-size: clamp(32px, 4.6vw, 56px); color: var(--ink); }
.lead { font-family: var(--font-body); font-size: var(--text-md); line-height: var(--leading-body); color: var(--ink-soft); }

/* reveal — transform only (never opacity) so capture/print never blanks */
.reveal { transition: transform .7s cubic-bezier(.2,.8,.2,1); will-change: transform; }
.reveal.in { transform: none; }
.reveal.d1 { transition-delay: .07s; }
.reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; }
.reveal.d4 { transition-delay: .28s; }
@media (prefers-reduced-motion: no-preference) {
  html.reveal-ready .reveal:not(.in) { transform: translateY(22px); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .fill { transition: none; }
}
@media print { .reveal, .reveal:not(.in) { transform: none !important; } }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(251,241,225,.85);
  backdrop-filter: blur(8px);
  border-bottom: 1.5px solid var(--border-soft);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; height: 74px; }
.nav .btn { white-space: nowrap; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand img { width: 38px; height: 38px; display: block; }
.brand .word { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--ink); letter-spacing: -.01em; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav .btn { padding: 10px 18px; font-size: 15px; }

/* =========================================================
   HERO
   ========================================================= */
.hero { padding: clamp(40px, 5vw, 72px) 0 clamp(56px, 7vw, 92px); }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(36px, 4vw, 60px); align-items: center; }
.hero h1 { font-size: clamp(42px, 6.2vw, 80px); }
.hero h1 .why { color: var(--berry-500); text-decoration: line-through; text-decoration-thickness: 3px; }
.hero h1 .watch { color: var(--clay-600); }
.hero .sub { font-family: var(--font-body); font-size: clamp(19px, 2vw, 23px); line-height: var(--leading-body); color: var(--ink-soft); margin-top: 22px; max-width: 32ch; }
.hero .aside {
  margin-top: 20px; font-family: var(--font-hand); font-size: clamp(21px, 2.3vw, 27px);
  color: var(--clay-700); line-height: 1.2; max-width: 26ch;
  border-left: 3px solid var(--honey-500); padding-left: 16px; transform: rotate(-.6deg);
}
.hero-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 32px; }

/* hero visual — before/after split card */
.hero-visual { position: relative; padding-bottom: 38px; }
.split {
  position: relative;
  border: var(--stroke-bold) solid var(--ink); border-radius: var(--wobble); overflow: hidden;
  box-shadow: var(--shadow-sticker-lg);
  background: var(--surface-card);
  transform: rotate(1deg);
}
.split-top {
  display: flex; align-items: center; gap: 7px; padding: 11px 15px;
  border-bottom: 2px solid var(--ink); background: var(--paper-deep);
  font-family: var(--font-ui); font-size: 12px; font-weight: 700; color: var(--ink-soft);
}
.split-top i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; border: 1.5px solid var(--ink); }
.split-top i.r { background: var(--clay-500); } .split-top i.y { background: var(--honey-500); } .split-top i.g { background: var(--sage-500); }
.split-top span { margin-left: auto; letter-spacing: .03em; }
.split-body { display: grid; grid-template-columns: 1fr 1fr; min-height: 360px; }
.split-side { padding: 18px 16px; display: flex; flex-direction: column; gap: 11px; position: relative; }
.split-side.before { background: var(--paper-deep); }
.split-side.after { background: var(--sage-50); border-left: 2px dashed var(--ink); }
.side-label { font-family: var(--font-hand); font-size: 23px; line-height: 1; margin-bottom: 2px; }
.side-label.before { color: var(--ink-faint); }
.side-label.after  { color: var(--sage-600); }
.mini {
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.35; background: var(--surface-card); border: 2px solid var(--ink);
  border-radius: var(--radius-sm); padding: 9px 11px; display: flex; gap: 8px; align-items: flex-start;
  box-shadow: var(--shadow-sticker);
}
.mini .ic { font-size: 14px; line-height: 1.2; flex: none; }
.split-side.before .mini { transform: rotate(-.5deg); }
.split-side.before .mini:nth-child(3) { transform: rotate(.7deg); }
.split-side.after .mini { border-color: var(--sage-600); }
.split-side.after .mini .ic { color: var(--sage-600); font-weight: 900; }

.bridge {
  position: absolute; left: 50%; bottom: -24px; transform: translateX(-50%) rotate(-1.2deg);
  width: min(330px, 84%); z-index: 5;
}
.note-float {
  position: absolute; right: -24px; bottom: 4px; z-index: 6;
  background: var(--honey-100); border: var(--stroke-bold) solid var(--ink);
  padding: 13px 15px; border-radius: var(--wobble-sm);
  box-shadow: var(--shadow-sticker); transform: rotate(4deg); max-width: 168px;
  font-family: var(--font-hand); font-size: 19px; line-height: 1.15; color: var(--ink);
}

/* =========================================================
   PROBLEM — career grief
   ========================================================= */
.grief-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,5vw,72px); align-items: center; }
.loss-list { display: grid; gap: 13px; margin-top: 22px; }
.loss {
  display: flex; align-items: center; gap: 16px; background: var(--surface-card);
  border: 2px solid var(--ink); border-radius: var(--wobble-sm); padding: 14px 18px;
  box-shadow: var(--shadow-sticker); font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--ink);
}
.loss .x { color: var(--berry-500); font-family: var(--font-ui); font-weight: 900; font-size: 20px; }
.grief-pull {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(22px,2.6vw,30px);
  line-height: 1.2; letter-spacing: -.01em; color: var(--ink);
}
.grief-pull em { font-style: normal; color: var(--clay-600); }
.grief-sub { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--ink); }
.stamp {
  display: inline-block; font-family: var(--font-hand); font-size: 24px; color: var(--clay-600);
  border: 2.5px solid var(--clay-500); border-radius: var(--wobble-sm); padding: 6px 16px;
  transform: rotate(-3deg); margin-top: 24px;
}

/* =========================================================
   HUMOR — chat cards
   ========================================================= */
.chat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 48px; }
.chat {
  background: var(--surface-card); border: var(--stroke-bold) solid var(--ink); border-radius: var(--wobble);
  box-shadow: var(--shadow-sticker-lg); padding: 22px 20px 24px; display: flex; flex-direction: column; gap: 14px;
  min-height: 270px;
}
.chat:nth-child(2) { transform: rotate(-1deg); }
.chat:nth-child(3) { transform: rotate(.8deg); }
.chat .head { font-family: var(--font-ui); font-weight: 700; font-size: 14px; color: var(--ink-soft); display: flex; align-items: center; gap: 9px; }
.chat .head .pic { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 800; border: 1.5px solid var(--ink); }
.bub { max-width: 88%; padding: 11px 15px; border-radius: 16px; font-family: var(--font-body); font-size: 16px; line-height: 1.4; position: relative; border: 2px solid var(--ink); }
.bub.you { align-self: flex-end; background: var(--clay-500); color: var(--text-on-clay); border-bottom-right-radius: 5px; }
.bub.them { align-self: flex-start; background: var(--paper-deep); color: var(--ink); border-bottom-left-radius: 5px; }
.bub .who { display: block; font-family: var(--font-ui); font-size: 11px; font-weight: 700; opacity: .75; margin-bottom: 3px; }
.seen { align-self: flex-end; font-family: var(--font-hand); font-size: 18px; color: var(--ink-faint); margin-top: -4px; }
.refresh { align-self: flex-end; text-align: right; font-family: var(--font-hand); font-size: 20px; color: var(--ink-soft); line-height: 1.1; }
.linkedin-post { background: var(--surface-card); border: 2px solid var(--ink); border-radius: var(--radius-sm); padding: 12px 14px; font-family: var(--font-body); font-size: 15px; }
.linkedin-post .lk { font-family: var(--font-ui); font-weight: 700; font-size: 12px; color: var(--sky-600); letter-spacing: -.01em; }

/* =========================================================
   REFRAME — the signature
   ========================================================= */
.reframe-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; margin-top: 46px; }
.col-head { font-family: var(--font-hand); font-size: 30px; margin-bottom: 16px; display: inline-block; }
.col-head.before { color: var(--ink-faint); }
.col-head.after { color: var(--sage-600); }
.frame-list { display: grid; gap: 12px; padding: var(--space-5); border-radius: var(--wobble); border: 2.5px solid; }
.reframe-cols .reveal:first-child .frame-list { background: var(--old-story-tint); border-color: var(--old-story); }
.reframe-cols .reveal:last-child .frame-list { background: var(--new-story-tint); border-color: var(--new-story); }
.frame {
  display: flex; align-items: center; gap: 13px; padding: 13px 16px; border-radius: var(--wobble-sm);
  font-family: var(--font-body); font-size: 18.5px; font-weight: 500; line-height: 1.3; background: var(--surface-card);
  border: 2px solid;
}
.frame.bad { color: var(--ink-soft); border-color: var(--berry-300); }
.frame.bad .mk { color: var(--berry-500); }
.frame.bad .txt { text-decoration: line-through; text-decoration-color: var(--berry-500); }
.frame.good { color: var(--ink); border-color: var(--sage-300); }
.frame.good .mk { color: var(--new-story); font-weight: 900; }
.frame .mk { font-family: var(--font-ui); font-size: 18px; flex: none; }

/* =========================================================
   FRAMEWORK — steps
   ========================================================= */
.steps { display: grid; gap: 18px; margin-top: 48px; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: start;
  background: var(--surface-card); border: var(--stroke-bold) solid var(--ink); border-radius: var(--wobble);
  box-shadow: var(--shadow-sticker-lg); padding: 26px 30px; position: relative;
}
.step .num {
  width: 62px; height: 62px; border-radius: var(--wobble-sm); background: var(--honey-500); border: var(--stroke-bold) solid var(--ink);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--ink);
  box-shadow: var(--shadow-sticker); transform: rotate(-3deg);
}
.step:nth-child(2) .num { background: var(--clay-500); color: var(--text-on-clay); transform: rotate(3deg); }
.step:nth-child(3) .num { background: var(--sage-500); color: #FBFDF8; transform: rotate(-2deg); }
.step:nth-child(4) .num { background: var(--honey-500); transform: rotate(2.5deg); }
.step:nth-child(5) .num { background: var(--clay-500); color: var(--text-on-clay); transform: rotate(-2.5deg); }
.step h3 { font-size: clamp(21px, 2.3vw, 27px); color: var(--ink); }
.step p { font-family: var(--font-body); color: var(--ink-soft); font-size: 18px; line-height: 1.5; margin-top: 7px; }
.step .stepword { font-family: var(--font-hand); color: var(--clay-600); font-size: 23px; }

/* =========================================================
   SOCIAL PROOF (heading only now)
   ========================================================= */

/* =========================================================
   LEAD MAGNET — form
   ========================================================= */
.magnet-grid { display: grid; gap: clamp(36px,5vw,64px); align-items: center; }
.includes { display: grid; gap: 12px; margin: 24px 0 28px; }
.inc { display: flex; align-items: center; gap: 14px; font-family: var(--font-body); font-size: 18.5px; font-weight: 500; color: var(--ink); }
.inc .tk { width: 30px; height: 30px; border-radius: var(--radius-sm); background: var(--sage-500); color: #fff; display: grid; place-items: center; font-weight: 900; border: 2px solid var(--ink); flex: none; }

.signup { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
.signup input {
  width: 100%; font-family: var(--font-body); font-size: 18px;
  padding: 15px 18px; border: var(--stroke-bold) solid var(--ink); border-radius: var(--radius-md); background: var(--surface-raised);
  color: var(--ink);
}
.signup input::placeholder { color: var(--ink-faint); }
.signup input:focus { outline: none; border-color: var(--clay-500); box-shadow: 0 0 0 3px var(--sky-100); }
.signup input.err { border-color: var(--berry-500); box-shadow: 0 0 0 3px var(--berry-50); }
.signup .btn { width: 100%; }
.form-msg { font-family: var(--font-hand); font-size: 21px; min-height: 26px; margin-top: 12px; }
.form-msg:empty { min-height: 0; margin-top: 0; }
.form-msg.ok { color: var(--sage-600); }
.form-msg.no { color: var(--berry-600); }
.privacy { font-family: var(--font-body); font-size: 14px; color: var(--ink-faint); margin-top: 10px; }

/* =========================================================
   FINAL CTA (ink panel)
   ========================================================= */
.final { text-align: center; }
.final h2 { font-size: clamp(38px, 6vw, 76px); }
.final h2 .y { color: var(--honey-500); }
.final .copy { font-family: var(--font-body); max-width: 52ch; margin: 24px auto 0; color: rgba(251,241,225,.78); font-size: clamp(18px,2vw,21px); line-height: var(--leading-body); }
.final .copy .em { color: var(--paper); font-weight: 600; font-style: italic; }
.final .installbar { max-width: 520px; margin: 38px auto 0; text-align: left; background: #2A2118; color: var(--paper); border-color: #5a4a38; box-shadow: 5px 6px 0 rgba(0,0,0,.45); }
.final .installbar .ib-top { color: var(--paper); }
.final .installbar .track { background: #1d1610; border-color: #5a4a38; }
.final .installbar .ib-sub { color: rgba(251,241,225,.66); }
.final .btn.big { margin-top: 36px; }
.final-aside { font-family: var(--font-hand); font-size: 23px; color: var(--honey-300); margin-top: 18px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { padding: 56px 0 64px; border-top: 1.5px solid var(--border-soft); }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
.footer .tagline { font-family: var(--font-hand); font-size: 21px; color: var(--ink-soft); margin-top: 10px; }
.footer .fineprint { font-family: var(--font-body); color: var(--ink-faint); font-size: 13px; margin-top: 8px; }

/* =========================================================
   STICKY MINI CTA
   ========================================================= */
.minibar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--ink); color: var(--paper);
  transform: translateY(110%); transition: transform .4s cubic-bezier(.2,.8,.2,1);
  border-top: 2.5px solid var(--honey-500);
}
.minibar.show { transform: translateY(0); }
.minibar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 13px 28px; }
.minibar .mtxt { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--paper); }
.minibar .mtxt span { color: var(--honey-300); font-family: var(--font-hand); font-weight: 600; font-size: 21px; }
.minibar .btn { padding: 11px 20px; font-size: 15px; box-shadow: 4px 4px 0 rgba(0,0,0,.5); }
@media (max-width: 620px){ .minibar .mtxt { display: none; } .minibar .wrap { justify-content: center; } }

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* ---- tablet landscape / small desktop ---- */
@media (max-width: 1024px){
  .chat-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

/* ---- tablet portrait ---- */
@media (max-width: 900px){
  .section-pad { padding: clamp(56px, 9vw, 92px) 0; }
  .chat-grid { margin-top: 38px; }
  .steps { margin-top: 38px; }
  .reframe-cols { margin-top: 34px; }
  .lead { font-size: clamp(18px, 2.4vw, 21px); }
  .lead, .grief-pull, .h-sec { text-wrap: balance; }
  /* keep reading measure comfortable on centred intros */
  #humor .lead, #reframe .lead, #proof .lead, #framework .lead { max-width: 60ch; margin-inline: auto; }
}

@media (max-width: 980px){
  .hero-grid, .grief-grid { grid-template-columns: 1fr; }
  .reframe-cols { grid-template-columns: 1fr; }
  .note-float { display: none; }
  .hero-visual { margin: 18px auto 0; max-width: 520px; }
  .hero h1 { font-size: clamp(40px, 7.4vw, 70px); }
  .hero .sub, .hero .aside { max-width: 46ch; }
}

@media (max-width: 760px){
  .chat-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; gap: 18px; }
  .chat { min-height: 0; }
  .chat:nth-child(2), .chat:nth-child(3) { transform: none; }
}

/* ---- phones ---- */
@media (max-width: 600px){
  .wrap { padding: 0 18px; }
  .nav .wrap { height: 64px; }
  .brand .word { font-size: 18px; }
  .brand img { width: 32px; height: 32px; }
  .nav .btn { padding: 9px 14px; font-size: 13px; }
  .section-pad { padding: clamp(48px, 13vw, 68px) 0; }

  /* hero */
  .hero { padding: 28px 0 48px; }
  .hero h1 { font-size: clamp(34px, 9vw, 52px); }
  .hero .sub { font-size: 18px; line-height: 1.6; max-width: none; margin-top: 18px; }
  .hero .aside { font-size: 18px !important; max-width: none; }
  .hero-cta { gap: 14px; margin-top: 26px; }
  .hero-cta .btn.big, .hero-cta .btn.ghost { width: 100%; }
  .btn.ghost { text-align: center; }

  /* hero visual */
  .hero-visual { max-width: 100%; padding-bottom: 0; }
  .split-body { grid-template-columns: 1fr; min-height: 0; }
  .split-side { padding: 16px 14px; }
  .split-side.after { border-left: none; border-top: 2px dashed var(--ink); }
  .bridge { position: relative; left: auto; bottom: auto; transform: rotate(-1.2deg); width: 100%; margin: 16px auto 0; }

  /* readable body copy everywhere */
  .lead { font-size: 18px; line-height: 1.6; }
  .grief-pull { font-size: clamp(20px, 6vw, 26px); }
  .grief-sub { font-size: 18px; }
  .loss { font-size: 18px; padding: 13px 16px; }
  .frame { font-size: 17px; padding: 12px 14px; }
  .frame-list { padding: 16px; }
  .col-head { font-size: 26px; }
  .step h3 { font-size: 21px; }
  .step p { font-size: 17px; line-height: 1.55; }
  .bub { font-size: 16px; max-width: 92%; }
  .chat .head { font-size: 13px; }

  /* steps stack */
  .step { gap: 16px; padding: 20px 18px; }
  .step .num { width: 52px; height: 52px; font-size: 25px; }

  /* form */
  .h-sec { font-size: clamp(30px, 8.5vw, 44px); }
  .signup input { font-size: 16px; padding: 15px 16px; }
  .final .installbar { margin-top: 28px; }
  .magnet-grid { padding-inline: 0; }

  /* mini sticky bar */
  .minibar .wrap { padding: 11px 18px; }
}

/* ---- small phones ---- */
@media (max-width: 400px){
  .wrap { padding: 0 14px; }
  .brand .word { font-size: 15px; }
  .brand img { width: 28px; height: 28px; }
  .nav .btn { padding: 8px 11px; font-size: 12px; }
  .hero h1 { font-size: clamp(28px, 9.6vw, 44px); }
  .step { grid-template-columns: 1fr; }
  .step .num { width: 48px; height: 48px; font-size: 22px; }
  .h-sec { font-size: clamp(27px, 8.8vw, 38px); }
  .chat { padding: 18px 16px; }
  .loss { font-size: 16.5px; padding: 12px 14px; }
  .col-head { font-size: 24px; }
}
