/* ==========================================================================
   story.css — StoryBrand audience pages (owners / brokers / buyers) + pricing.
   Layers ON TOP of tokens.css + coverage-model.css + landing.css.
   Reuses landing.css primitives: .wrap, .btn, .eyebrow, .band, .faq*, footer,
   nav, and the .cv2-card Coverage component. This file adds the full-bleed
   storytelling frame system + the components those frames need.
   ========================================================================== */

/* ─── Page intro: sub-nav row showing which audience you're on ─────────── */
.subnav { border-bottom: 1px solid var(--line); background: var(--bg); }
.subnav .wrap { display: flex; align-items: center; gap: 6px; height: 50px; overflow-x: auto; }
.subnav a {
  font-size: 14px; font-weight: 500; color: var(--brown-4);
  padding: 7px 14px; border-radius: 100px; white-space: nowrap;
  transition: background .14s ease, color .14s ease;
}
.subnav a:hover { color: var(--accent); background: var(--surface-2); }
.subnav a.is-active { color: var(--accent); background: rgba(23,95,100,0.08); font-weight: 600; }
.subnav .subnav-lab {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brown-3); font-weight: 600; margin-right: 8px; white-space: nowrap;
}

/* ─── Full-bleed image frame (the core storytelling device) ────────────── */
.fb {
  position: relative; isolation: isolate;
  min-height: 86vh; display: flex; align-items: center;
  padding: 96px 0; overflow: hidden;
  background: var(--brown-2);
}
.fb-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transform: scale(1.04);
}
/* ink scrim so overlaid text always reads — left-weighted by default */
.fb::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(15,13,11,0.82) 0%, rgba(15,13,11,0.55) 38%, rgba(15,13,11,0.12) 70%, rgba(15,13,11,0.04) 100%),
    linear-gradient(0deg, rgba(15,13,11,0.45) 0%, rgba(15,13,11,0) 40%);
}
.fb.fb-center { text-align: center; }
.fb.fb-center::before {
  background:
    radial-gradient(120% 100% at 50% 50%, rgba(15,13,11,0.35), rgba(15,13,11,0.72) 100%),
    linear-gradient(0deg, rgba(15,13,11,0.5) 0%, rgba(15,13,11,0.1) 50%);
}
.fb-inner { max-width: 760px; }
.fb.fb-center .fb-inner { margin: 0 auto; }
.fb-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft);
  margin-bottom: 22px;
}
.fb-kicker .seal {
  width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center;
  border: 1.5px solid var(--gold-soft); color: var(--gold-soft); font-size: 12px;
}
.fb h1, .fb h2 {
  font-family: var(--serif); font-weight: 600; color: #f6f1e6;
  letter-spacing: -0.015em; line-height: 1.02; margin: 0;
  text-wrap: balance;
}
.fb h1 { font-size: clamp(40px, 6vw, 76px); }
.fb h2 { font-size: clamp(34px, 5vw, 62px); }
.fb h1 em, .fb h2 em { font-style: italic; color: var(--gold-soft); }
.fb-sub {
  font-size: clamp(17px, 1.6vw, 21px); line-height: 1.55;
  color: rgba(246,241,230,0.86); max-width: 54ch; margin: 26px 0 0; text-wrap: pretty;
}
.fb.fb-center .fb-sub { margin-inline: auto; }
.fb-cta { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.fb.fb-center .fb-cta { justify-content: center; }
.fb-trust {
  display: flex; align-items: center; gap: 10px; margin-top: 24px;
  font-size: 13px; color: rgba(246,241,230,0.88);
}
.fb.fb-center .fb-trust { justify-content: center; }
.fb-trust i { font-size: 16px; color: var(--gold-soft); }

/* a product card floating inside a hero frame */
.fb-card {
  position: absolute; z-index: 1; right: 6%; bottom: 9%;
  width: 340px; max-width: 40vw;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.5));
}
.fb-card .cv2-card { background: var(--surface); }
@media (max-width: 1040px) { .fb-card { display: none; } }

/* the on-photo readiness chip row (hero) */
.fb-stamps { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.fb.fb-center .fb-stamps { justify-content: center; }
.fb-stamp {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 500; color: #f1ebdc;
  background: rgba(246,241,230,0.1); border: 1px solid rgba(246,241,230,0.22);
  padding: 7px 13px; border-radius: 100px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.fb-stamp i { font-size: 14px; color: var(--gold-soft); }

/* ─── Section heading helpers on light bands ───────────────────────────── */
.frame-head { max-width: 64ch; }
.frame-head.center { margin: 0 auto; text-align: center; }
.frame-head .lede { margin-top: 18px; }
.frame-head.center .lede { margin-inline: auto; }
.story-note {
  font-size: 18px; line-height: 1.62; color: var(--brown-3);
  max-width: 60ch; margin: 22px 0 0; text-wrap: pretty;
}
.story-note.center { margin-inline: auto; text-align: center; }
.resolve-line {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 30px;
  font-family: var(--serif); font-size: clamp(19px, 2vw, 24px); color: var(--accent);
  font-weight: 600;
}
.resolve-line i { font-size: 22px; }
.band-ink .resolve-line { color: var(--gold-soft); }

/* ─── Split frame: image on one side, body on the other ────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); min-height: 440px;
  background-size: cover; background-position: center;
  box-shadow: 0 40px 80px -50px rgba(36,30,22,0.5);
}
.split-media.tall { min-height: 560px; }
/* ─── Embedded animation panel (square, self-framed) ───────────────────── */
.split-embed {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: #faf9f5;
  box-shadow: 0 40px 80px -50px rgba(36,30,22,0.5);
  aspect-ratio: 1 / 1; width: 100%;
}
.split-anim { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
/* ─── Embedded self-framed slider (brings its own radius + shadow) ─────── */
.split-slider { width: 100%; aspect-ratio: 1 / 1; }
.split.reverse .split-slider { order: 2; }
.split-slider iframe { width: 100%; height: 100%; border: 0; display: block; background: transparent; }
@media (max-width: 1000px) { .split.reverse .split-slider { order: 0; } }
.split-cap {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: #fff;
  background: rgba(21,19,15,0.55); padding: 7px 13px; border-radius: 100px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.split-cap i { font-size: 14px; color: var(--gold-soft); }
.split-body h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.06; margin: 14px 0 0; color: var(--brown); text-wrap: balance; }

/* ─── Striped photo placeholder (user fills these later) ───────────────── */
.ph-photo {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px dashed var(--line-strong); min-height: 440px;
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(135deg, rgba(179,136,74,0.12) 0 14px, rgba(179,136,74,0.04) 14px 28px),
    linear-gradient(160deg, #e6dcc6, #d8c8a6);
}
.ph-photo span {
  font-family: var(--mono); font-size: 12px; color: #6f5a36;
  background: rgba(255,253,247,0.78); padding: 8px 14px; border-radius: 6px;
  border: 1px solid rgba(111,90,54,0.25); max-width: 80%; text-align: center;
  line-height: 1.5;
}
.ph-photo.dark {
  border-color: rgba(246,241,230,0.2);
  background:
    repeating-linear-gradient(135deg, rgba(246,241,230,0.07) 0 14px, rgba(246,241,230,0.02) 14px 28px),
    linear-gradient(160deg, #2b2722, #1c1915);
}
.ph-photo.dark span { color: #cdbf9f; background: rgba(28,25,21,0.7); border-color: rgba(205,191,159,0.25); }

/* ─── Problem cards (worry-as-a-question) ──────────────────────────────── */
.q-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.q-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: 12px;
  padding: 26px 24px; position: relative;
}
.q-card .q-mark {
  font-family: var(--serif); font-size: 30px; color: var(--gold); line-height: 1;
}
.q-card p { font-family: var(--serif); font-size: 20px; font-weight: 600; line-height: 1.3; color: var(--brown); margin: 14px 0 0; text-wrap: pretty; }
.q-card small { display: block; font-family: var(--sans); font-size: 14.5px; color: var(--brown-4); margin-top: 12px; line-height: 1.5; }
.band-ink .q-card { background: rgba(246,241,230,0.05); border-color: rgba(246,241,230,0.14); }
.band-ink .q-card p { color: #f3eee2; }
.band-ink .q-card small { color: rgba(246,241,230,0.62); }

/* ─── Richer problem cards (icon + lift) ───────────────────────────────── */
.q-cards-rich .q-card {
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.q-cards-rich .q-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold); border-radius: 12px 0 0 12px; opacity: 0; transition: opacity .2s ease;
}
.q-cards-rich .q-card:hover {
  transform: translateY(-4px); border-color: var(--gold);
  box-shadow: 0 14px 30px rgba(60,40,20,0.1);
}
.q-cards-rich .q-card:hover::before { opacity: 1; }
.q-cards-rich .q-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(23,95,100,0.07); color: var(--accent);
  font-size: 21px; margin-bottom: 16px;
}
.q-cards-rich .q-card .q-mark { display: none; }


/* ─── Plan: three calm steps with reward lines ─────────────────────────── */
.plan { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.plan-step {
  background: var(--bg); border: 1px solid var(--line); border-radius: 14px;
  padding: 28px 26px 26px; position: relative; display: flex; flex-direction: column;
}
.plan-num {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; font-size: 19px;
  color: #f5f2e7; background: radial-gradient(circle at 50% 36%, #237b80, #175f64 72%);
  box-shadow: 0 5px 14px -7px rgba(23,95,100,0.55); margin-bottom: 18px;
}
.plan-step h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin: 0 0 8px; color: var(--brown); }
.plan-step p { font-size: 15.5px; line-height: 1.55; color: var(--brown-3); margin: 0; text-wrap: pretty; }
.plan-reward {
  display: flex; align-items: center; gap: 9px; margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px; font-weight: 500; color: var(--success);
}
.plan-reward i { font-size: 16px; }

/* ─── Role / permission flow ───────────────────────────────────────────── */
.roles {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 46px;
  position: relative;
}
.role {
  background: var(--bg); border: 1px solid var(--line); border-radius: 12px;
  padding: 24px 20px; text-align: center; position: relative;
}
.role.lead { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(23,95,100,0.08); }
.role-ic {
  width: 50px; height: 50px; border-radius: 13px; margin: 0 auto 14px;
  display: grid; place-items: center; background: var(--surface-2);
  color: var(--accent); font-size: 26px;
}
.role.lead .role-ic { background: var(--accent); color: #f3efe3; }
.role h4 { font-family: var(--serif); font-size: 19px; font-weight: 600; margin: 0 0 4px; color: var(--brown); }
.role-tag { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--gold); display: block; margin-bottom: 12px; }
.role p { font-size: 16px; line-height: 1.5; color: var(--brown-3); margin: 0; text-wrap: pretty; }
.roles .role-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: var(--brown-4); font-size: 18px; z-index: 2;
}

/* permissions, three columns */
.perm-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.perm {
  background: var(--bg); border: 1px solid var(--line); border-radius: 12px;
  padding: 26px 24px;
}
.perm-head { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.perm-head .role-ic { margin: 0; width: 40px; height: 40px; font-size: 21px; border-radius: 10px; }
.perm-head h4 { font-family: var(--serif); font-size: 20px; font-weight: 600; margin: 0; color: var(--brown); }
.perm ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.perm li { display: flex; align-items: flex-start; gap: 9px; font-size: 16px; color: var(--brown-3); line-height: 1.45; }
.perm li i { font-size: 15px; color: var(--accent); flex: 0 0 auto; margin-top: 1px; }

/* ─── Passport-stamp / reward set + timeline ───────────────────────────── */
.stamps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 46px; }
.stamp-card {
  display: flex; align-items: center; gap: 15px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 18px 20px;
}
.stamp-seal {
  width: 52px; height: 52px; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center; color: var(--accent); font-size: 23px;
  background: radial-gradient(circle at 50% 38%, #fbfaf4, #f1ede0);
  box-shadow: inset 0 0 0 1.5px var(--gold), 0 4px 12px -8px rgba(36,30,22,0.4);
}
.stamp-card h4 { font-family: var(--serif); font-size: 17px; font-weight: 600; margin: 0; color: var(--brown); line-height: 1.15; }
.stamp-card small { display: block; font-size: 12px; color: var(--brown-3); margin-top: 3px; }

.timeline {
  display: flex; gap: 0; margin-top: 46px; overflow-x: auto; padding-bottom: 8px;
  border-top: 2px solid var(--line); position: relative;
}
.tl-node { flex: 1 1 0; min-width: 130px; padding: 22px 14px 0; position: relative; text-align: center; }
.tl-node::before {
  content: ""; position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px; border-radius: 50%; background: var(--surface);
  border: 2px solid var(--gold);
}
.tl-node.now::before { background: var(--accent); border-color: var(--accent); }
.tl-year { font-family: var(--serif); font-weight: 600; font-size: 21px; color: var(--accent); }
.tl-node p { font-size: 15.5px; color: var(--brown-3); margin: 4px 0 0; line-height: 1.45; }

/* ─── Avoid-failure scenario list ──────────────────────────────────────── */
.avoid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 40px; }
.avoid-item {
  display: flex; align-items: flex-start; gap: 13px;
  background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  padding: 18px 20px; font-size: 15.5px; line-height: 1.5; color: var(--brown-2);
}
.avoid-item i { font-size: 19px; color: var(--gold); flex: 0 0 auto; margin-top: 1px; }
.band-ink .avoid-item { background: rgba(246,241,230,0.05); border-color: rgba(246,241,230,0.14); color: #ece6d8; }

/* ─── Success / value bullets ──────────────────────────────────────────── */
.wins { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 28px; margin-top: 40px; list-style: none; padding: 0; }
.wins li { display: flex; align-items: flex-start; gap: 11px; font-size: 16px; line-height: 1.45; color: var(--brown-2); }
.wins li i { font-size: 19px; color: var(--accent); flex: 0 0 auto; margin-top: 1px; }
.fb .wins li { color: #f1ebdc; }
.fb .wins li i { color: var(--gold-soft); }

/* ─── Educational card set (what belongs in a HomeCV) ──────────────────── */
.edu-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 44px; }
.edu-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: 10px;
  padding: 18px 18px; display: flex; align-items: center; gap: 12px;
}
.edu-card i { font-size: 22px; color: var(--accent); flex: 0 0 auto; }
.edu-card span { font-size: 16px; font-weight: 500; color: var(--brown-2); }

/* ─── Ask the House (buyer) ────────────────────────────────────────────── */
.ath { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; margin-top: 40px; }
.ath-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.ath-chip {
  font-size: 16px; font-weight: 500; color: var(--brown-2);
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 100px;
  padding: 11px 18px; cursor: pointer; transition: all .14s ease; text-align: left;
}
.ath-chip:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.ath-chip.is-active { background: var(--accent); border-color: var(--accent); color: #f3efe3; }
.ath-panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px; min-height: 300px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 30px 70px -50px rgba(36,30,22,0.5);
}
.ath-bubble { max-width: 88%; padding: 13px 16px; border-radius: 14px; font-size: 15px; line-height: 1.5; }
.ath-bubble.q { align-self: flex-end; background: var(--accent); color: #f3efe3; border-bottom-right-radius: 4px; }
.ath-bubble.a { align-self: flex-start; background: var(--bg); border: 1px solid var(--line); color: var(--brown-2); border-bottom-left-radius: 4px; }
.ath-bubble.a b { color: var(--brown); }
.ath-src { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-family: var(--mono); font-size: 12px; color: var(--brown-3); letter-spacing: 0.02em; }
.ath-src i { font-size: 12px; color: var(--accent); }
.ath-foot { font-size: 12px; color: var(--brown-3); line-height: 1.5; padding-top: 6px; border-top: 1px solid var(--line); text-wrap: pretty; }

/* ─── Clarity cards (buyer: on-file vs not-shared) ─────────────────────── */
.clarity { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 40px; }
.clarity-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: 11px;
  padding: 20px 22px; display: flex; align-items: center; gap: 13px;
}
.clarity-card i { font-size: 22px; flex: 0 0 auto; }
.clarity-card.on i { color: var(--success); }
.clarity-card.off { background: var(--surface); border-style: dashed; }
.clarity-card.off i { color: var(--brown-4); }
.clarity-card b { font-size: 15px; font-weight: 600; color: var(--brown); display: block; }
.clarity-card small { font-size: 12px; color: var(--brown-4); }

/* ─── Pricing ──────────────────────────────────────────────────────────── */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; align-items: stretch; }
.price-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: 16px;
  padding: 30px 28px; display: flex; flex-direction: column; position: relative;
}
.price-card.is-feature {
  border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 30px 70px -45px rgba(36,30,22,0.55);
  transform: translateY(-8px);
}
.price-ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #2a1d09; background: var(--gold-soft); padding: 6px 16px; border-radius: 100px;
  white-space: nowrap; box-shadow: 0 6px 16px -8px rgba(157,118,55,0.6);
}
.price-ribbon i { font-size: 13px; }
.price-name { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brown-3); }
.price-fig { font-family: var(--serif); font-weight: 600; color: var(--brown); margin: 14px 0 2px; line-height: 1; font-variant-numeric: tabular-nums; }
.price-fig .amt { font-size: 48px; }
.price-fig .per { font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--brown-4); }
.price-card.is-feature .price-fig .amt { color: var(--accent); }
.price-desc { font-size: 15.5px; line-height: 1.55; color: var(--brown-3); margin: 12px 0 22px; text-wrap: pretty; min-height: 42px; }
.price-card ul { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.price-card li { display: flex; align-items: flex-start; gap: 9px; font-size: 16px; line-height: 1.45; color: var(--brown-2); }
.price-card li i { font-size: 16px; color: var(--accent); flex: 0 0 auto; margin-top: 1px; }
.price-card .btn { margin-top: auto; width: 100%; }
.price-foot-note { text-align: center; margin-top: 26px; font-size: 13.5px; color: var(--brown-4); }

/* concierge band */
.concierge { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.concierge .price-fig { margin-top: 8px; }

/* comparison table */
.cmp-wrap { margin-top: 48px; overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; }
.cmp-table { width: 100%; border-collapse: collapse; min-width: 720px; font-size: 15px; }
.cmp-table th, .cmp-table td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.cmp-table thead th { font-family: var(--sans); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brown-3); font-weight: 600; background: var(--surface); }
.cmp-table thead th.feat { background: var(--accent); color: #f3efe3; }
.cmp-table td.feat { background: rgba(23,95,100,0.04); }
.cmp-table tbody td { text-align: center; color: var(--brown-3); }
.cmp-table tbody td:first-child { text-align: left; font-weight: 500; color: var(--brown-2); }
.cmp-table .yes { color: var(--success); font-size: 18px; }
.cmp-table .no { color: var(--surface-3); font-size: 16px; }
.cmp-table .addon { font-size: 12px; color: var(--gold); font-weight: 600; }

/* ─── Mobile nav drawer ────────────────────────────────────────────────── */
.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid var(--line-strong); background: var(--bg);
  align-items: center; justify-content: center; color: var(--brown-2); font-size: 22px;
}
.mnav { position: fixed; inset: 0; z-index: 100; visibility: hidden; }
.mnav.open { visibility: visible; }
.mnav-scrim { position: absolute; inset: 0; background: rgba(15,13,11,0.5); opacity: 0; transition: opacity .25s ease; }
.mnav.open .mnav-scrim { opacity: 1; }
.mnav-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(86vw, 360px);
  background: var(--bg); padding: 24px; transform: translateX(100%);
  transition: transform .28s cubic-bezier(.16,.84,.34,1);
  display: flex; flex-direction: column; gap: 4px; overflow-y: auto;
}
.mnav.open .mnav-panel { transform: none; }
.mnav-close { align-self: flex-end; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); background: var(--surface); font-size: 22px; color: var(--brown-2); display: grid; place-items: center; margin-bottom: 10px; }
.mnav-panel a { font-family: var(--serif); font-size: 21px; color: var(--brown); padding: 13px 6px; border-bottom: 1px solid var(--line); }
.mnav-panel a.is-active { color: var(--accent); }
.mnav-panel .btn { margin-top: 18px; font-size: 16px; padding: 15px; }

/* mobile dropdown accordions */
.mnav-acc {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  background: none; border: 0; border-bottom: 1px solid var(--line); cursor: pointer;
  font-family: var(--serif); font-size: 21px; color: var(--brown); padding: 13px 6px;
}
.mnav-acc .ti { font-size: 20px; color: var(--brown-4); transition: transform .2s ease; }
.mnav-group.open .mnav-acc .ti { transform: rotate(180deg); color: var(--accent); }
.mnav-sub { display: none; padding: 2px 0 10px; }
.mnav-group.open .mnav-sub { display: block; }
.mnav-sub a {
  font-family: var(--sans) !important; font-size: 15px !important; color: var(--brown-3) !important;
  padding: 10px 8px 10px 14px !important; border-bottom: 0 !important;
  display: flex; align-items: center; gap: 11px;
}
.mnav-sub a i { font-size: 17px; color: var(--accent); }
.mnav-sub a:active { color: var(--accent) !important; }

/* ─── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .split-media, .ph-photo { min-height: 320px; }
  .roles, .perm-cols, .price-cards, .q-cards, .clarity { grid-template-columns: 1fr; }
  .roles .role-arrow { display: none; }
  .plan { grid-template-columns: 1fr; }
  .ath { grid-template-columns: 1fr; }
  .wins { grid-template-columns: 1fr 1fr; }
  .edu-cards { grid-template-columns: 1fr 1fr; }
  .concierge { grid-template-columns: 1fr; }
  .price-card.is-feature { transform: none; }
  .fb { min-height: 0; padding: 80px 0; }
}
@media (max-width: 760px) {
  .nav-links, .nav-signin, .nav .btn-primary { display: none; }
  .nav-toggle { display: inline-flex; }
  .avoid, .wins, .edu-cards { grid-template-columns: 1fr; }
  .fb-card { display: none; }
}

/* ─── Calm warm canvas (HubSpot-like) — marketing site only ─────────────
   Soft off-white sections with crisp white cards. Scoped here so the
   onboarding app (its own tokens) is untouched. White cards (--bg) keep
   their pop against the warm bands. */
body { background: #f5f4ef; }
.nav { background: rgba(245,244,239,0.82); }
.hero {
  background:
    radial-gradient(80% 60% at 88% 0%, rgba(179,136,74,0.05), transparent 55%),
    radial-gradient(70% 70% at 0% 100%, rgba(23,95,100,0.04), transparent 60%),
    #f5f4ef;
}
.band-paper { background: #eeece4; border-block-color: rgba(36,30,22,0.07); }
.footer { background: #eeece4; border-top-color: rgba(36,30,22,0.08); }
.trust-strip { border-bottom-color: rgba(36,30,22,0.08); }
