/* ══════════════════════════════════════════════════════════════
   TradeLynQ — v12 marketing site
   Self-contained: tokens, base, shared nav + footer, and every page's
   components. Built from designs/ (the design files win on any conflict).
   Mobile integrity is a gate: box-sizing:border-box everywhere, media max
   100%, and no fixed widths wider than the viewport — no horizontal bleed
   from 320px up.
══════════════════════════════════════════════════════════════ */

:root {
  --ink:        #17222F;
  --ink-about:  #14202C;
  --primary:    #E8622A;
  --primary-hover:#C2531F;
  --panel:      #10202E;
  --panel-2:    #1C3A52;
  --bg:         #FAF8F5;   /* Home / Pricing */
  --bg-about:   #FAF7F2;
  --bg-soft:    #F5F6F8;   /* homepage light sections */
  --bg-cool:    #eef1f5;   /* under-the-hood */
  --stage:      #E7E9EE;
  --border:     #ECE6DC;
  --border-2:   #ECE4D8;
  --line:       #e6e8ec;   /* card hairline used in the app mockups */
  --card:       #FFFFFF;
  --muted:      #5F6B78;
  --faint:      #8A94A3;
  --slate:      #7b8794;
  --ink-soft:   #3a4652;
  --green:      #12A06A;
  --ai:         #6D3AD6;
  --ai-bg:      #F3EFFE;
  --head:       'Space Grotesk', system-ui, sans-serif;
  --body:       'Figtree', system-ui, sans-serif;
  --nav-h:      72px;
  --edge:       40px;   /* N1: per-page side padding. 40 default (About/Blog/Legal/Compare). */
}

/* N1 per-page side padding — the shared left edge holds because nav, hero,
   sections and footer all read --edge, so they shift together per page.
   Home 44 (→992 usable, the hero-clamp target); Pricing/Contact 28 (→1024). */
body.tlq-edge-44 { --edge: 44px; }
body.tlq-edge-28 { --edge: 28px; }
/* Mobile: the per-page desktop padding (44/40/28) is too wide at 390. The mock
   draws mobile at ~22px; keep sections there (the hero has its own 20px rule). */
@media (max-width: 640px) { body, body.tlq-edge-44, body.tlq-edge-28 { --edge: 22px; } }

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;               /* belt: nothing bleeds horizontally */
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4 { font-family: var(--head); letter-spacing: -.02em; margin: 0; }
p { margin: 0; }
a { color: var(--primary-hover); text-decoration: none; }
a:hover { color: var(--primary); }
::selection { background: var(--primary); color: #fff; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.num { font-feature-settings: "tnum"; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 var(--edge); }
.section { padding: 72px 0; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--head); font-weight: 700; cursor: pointer;
  border: none; border-radius: 11px; text-align: center;
  transition: background .15s ease, transform .05s ease;
}
.btn-primary {
  background: var(--primary); color: #fff; font-size: 17px; padding: 16px 30px;
  box-shadow: 0 14px 30px -8px rgba(232,98,42,.55);
}
.btn-primary:hover { background: var(--primary-hover); color: #fff; }
.btn-primary:active { transform: translateY(1px); }
.btn-block { display: flex; width: 100%; }
.btn-auto { width: auto; }
.cta-micro { font-size: 13.5px; color: #8b97a3; margin-top: 13px; }
.link-demo { color: var(--primary-hover); font-weight: 600; }
.link-demo:hover { color: var(--primary); }

/* Shared eyebrow used across sections */
.eyebrow {
  font-family: var(--head); font-weight: 700; font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--primary);
}

/* ══════════════════════════════════════════════════════════════
   NAV (shared header)
══════════════════════════════════════════════════════════════ */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,242,236,.82);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid #e6e0d6;
}
.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 var(--edge);
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo { display: inline-flex; align-items: center; gap: 10px; }
.nav-logo svg { display: block; flex: 0 0 auto; }
.logo-wordmark { font-family: var(--head); font-weight: 700; font-size: 20px; letter-spacing: -.02em; line-height: 1; }
.logo-trade { color: var(--ink); }
.logo-lynq  { color: var(--primary); }
.logo-wordmark--dark .logo-trade { color: #fff; }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-family: var(--head); font-size: 14px; font-weight: 600; color: var(--muted);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); border-bottom: 2px solid var(--primary); padding-bottom: 2px; }

.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-login { font-family: var(--head); font-size: 14px; font-weight: 600; color: var(--muted); }
.nav-login:hover { color: var(--ink); }
.nav-cta {
  background: var(--primary); color: #fff; font-family: var(--head); font-weight: 700;
  font-size: 13.5px; padding: 10px 18px; border-radius: 9px;
  box-shadow: 0 8px 18px -6px rgba(232,98,42,.5);
}
.nav-cta:hover { background: var(--primary-hover); color: #fff; }

.nav-toggle {
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: none; border: none; width: 44px; height: 44px; padding: 0; cursor: pointer;   /* N14: ≥44px tap gate (was 38×32) */
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* Mobile drawer — solid, full-screen, flex column, CTA pinned bottom */
.nav-drawer { display: none; }
/* N5: on the navy (#10202E) drawer the wordmark's "TRADE" inherited ink
   #17222F and vanished — the open menu read "LYNQ". Force TRADE white here. */
.nav-drawer .logo-trade { color: #fff; }
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  /* design: background:#fff, border-bottom:1px solid #eef0f3. The translucent
     cream + blur rendered as murky grey over the dark hero photo. */
  .site-nav { background: #fff; -webkit-backdrop-filter: none; backdrop-filter: none; border-bottom-color: #eef0f3; }
  .nav-inner { height: auto; padding: 12px 18px; }
  .nav-drawer[hidden] { display: none; }
  .nav-drawer {
    display: flex; flex-direction: column; position: fixed; inset: 0; z-index: 9999;
    height: 100vh; height: 100dvh; background: #10202E; overscroll-behavior: contain;
  }
  .drawer-head { flex: 0 0 56px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.09); }
  .drawer-head .logo-wordmark { font-size: 17px; }
  .drawer-close { width: 34px; height: 34px; border: none; border-radius: 9px; background: rgba(255,255,255,.08); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; }
  .drawer-nav { flex: 1; min-height: 0; overflow-y: auto; padding: 8px 0; display: flex; flex-direction: column; }
  .drawer-nav { padding: 12px 22px; }
  .drawer-nav a { display: flex; align-items: center; min-height: 56px; padding: 15px 0; font-family: var(--head); font-size: 21px; font-weight: 600; color: #fff; border-bottom: 1px solid rgba(255,255,255,.09); }
  .drawer-foot { flex: 0 0 auto; padding: 16px 22px calc(20px + env(safe-area-inset-bottom, 0px)); display: flex; flex-direction: column-reverse; gap: 11px; }
  .drawer-login { text-align: center; color: #c4cdd6; font-family: var(--head); font-weight: 600; padding: 12px; }
  .drawer-cta { display: flex; justify-content: center; align-items: center; text-align: center; width: 100%; padding: 16px; font-size: 16px; border-radius: 11px; }
  .drawer-login { display: block; text-align: center; margin-top: 14px; font-size: 15px; font-weight: 600; color: #c4cdd6; }
}

/* ══════════════════════════════════════════════════════════════
   FOOTER (shared)
══════════════════════════════════════════════════════════════ */
/* v13: minimal footer bar. The four-column footer was removed by design. */
.site-footer { background: #101a24; color: #8fa0af; }
.footer-inner {
  max-width: 1080px; margin: 0 auto; padding: 44px var(--edge);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-logo { display: inline-flex; align-items: center; gap: 9px; }
.footer-meta { display: flex; align-items: center; gap: 22px; font-size: 13px; flex-wrap: wrap; }
.footer-tag { color: #6f8093; }
.footer-meta a { color: #8fa0af; text-decoration: none; }
.footer-meta a:hover { color: #fff; }
@media (max-width: 640px) {
  .footer-inner { padding: 34px 22px; flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-meta { gap: 16px; }
  .footer-meta a { min-height: 44px; display: inline-flex; align-items: center; }   /* N60: ≥44px tap gate (was 20px tall) */
}

/* ══════════════════════════════════════════════════════════════
   HOME (front-page.php) — v12
══════════════════════════════════════════════════════════════ */
.home main { display: block; }

/* N94: the "Product" nav link targets #product-tour (the Under-the-hood
   section). Offset the sticky nav (position:sticky; top:0) so the eyebrow
   isn't hidden under it on jump. */
#product-tour { scroll-margin-top: 80px; }

/* ── Hero ── */
.hero { position: relative; background: #0d1926; overflow: hidden; }

/* the photograph + the two scrims that keep the copy legible over it */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-scrim-x, .hero-scrim-y { position: absolute; inset: 0; display: block; }
.hero-scrim-x { background: linear-gradient(90deg,#0d1926 0%,#0d1926 43%,rgba(13,25,38,.52) 70%,rgba(13,25,38,.14) 100%); }
.hero-scrim-y { background: linear-gradient(180deg,rgba(13,25,38,.12),transparent 30%,transparent 78%,rgba(13,25,38,.4)); }

.hero-inner { position: relative; z-index: 2; max-width: 1080px; margin: 0 auto; padding: 62px var(--edge) 60px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 1.15fr; gap: 44px; align-items: center; }
.hero-chip {
  display: inline-block; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: #f6b48f; font-family: var(--head); font-weight: 700; font-size: 12px; letter-spacing: .03em;
  padding: 7px 14px; border-radius: 999px;
}
.hero h1 { font-family: var(--head); font-size: clamp(31px,4.4vw,46px); line-height: 1.06; letter-spacing: -.02em; color: #fff; margin: 20px 0 0; }
.hero h1 span { color: var(--primary); }
.hero-sub { font-size: 16.5px; line-height: 1.58; color: #c4cdd6; margin: 20px 0 0; max-width: 520px; }
.hero-cta { margin-top: 28px; }
.btn-lg { font-size: 17px; padding: 16px 30px; border-radius: 11px; box-shadow: 0 14px 30px -8px rgba(232,98,42,.6); }
.hero-micro { font-size: 13px; color: #8b97a3; margin: 13px 0 0; }
.hero-micro i { color: #3ec98e; font-style: normal; }
.hero-proof { display: flex; align-items: center; gap: 22px; margin-top: 32px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-proof > div { min-width: 0; }
.hero-proof .sm { display: none; }
.hero-proof b { font-family: var(--head); font-weight: 700; font-size: 14px; color: #fff; }
.hero-proof b.big { font-size: 21px; }
.hero-proof span { font-size: 12.5px; color: #8b97a3; }
.hero-proof .rule { width: 1px; height: 26px; background: rgba(255,255,255,.15); }

/* the measured deal, floating over the kitchen */
.hero-visual { justify-self: end; width: 100%; max-width: 384px; }
.dealcard { background: #fff; border-radius: 16px; box-shadow: 0 44px 90px -28px rgba(0,0,0,.72); overflow: hidden; }
.dealcard-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 16px 18px; border-bottom: 1px solid #eef0f3; }
.dealcard-head .dn { font-family: var(--head); font-weight: 700; font-size: 16px; color: var(--ink); }
.dealcard-head .ds { font-size: 11.5px; color: var(--slate); }
.measured-tag { display: inline-flex; align-items: center; gap: 5px; flex: 0 0 auto; background: rgba(18,160,106,.12); color: #0f8b5c; font-family: var(--head); font-weight: 700; font-size: 10.5px; padding: 6px 11px; border-radius: 999px; white-space: nowrap; }
.measured-tag .d { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.dealcard-body { padding: 14px 16px; }
.plan-frame { border: 1px solid var(--line); border-radius: 9px; overflow: hidden; background: #fff; }
.plan-frame .fh { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 7px 11px; background: #f7f8fa; border-bottom: 1px solid #eef0f3; }
.plan-frame .fh .t { font-family: var(--head); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--primary); }
.plan-frame .fh .s { font-size: 9.5px; color: #9aa4af; }
.plan-frame .img { height: 188px; background: #fff; padding: 8px; overflow: hidden; }
.plan-frame .img img { width: 100%; height: 100%; object-fit: contain; display: block; transform: scale(1.14); }
.dealcard-stats { display: flex; gap: 9px; margin-top: 12px; }
.dealcard-stats .s { flex: 1; min-width: 0; background: #f7f8fa; border: 1px solid #eef0f3; border-radius: 8px; padding: 9px 11px; }
.dealcard-stats .k { font-size: 9.5px; color: #9aa4af; }
.dealcard-stats .v { font-family: var(--head); font-size: 12.5px; font-weight: 700; color: var(--ink); }
.dealcard-stats .v.o { color: var(--primary); }

@media (max-width: 900px) {
  .hero-inner { padding: 44px 20px 46px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { justify-self: stretch; max-width: 100%; }
  /* the photo has no left-anchored copy column to protect on mobile: even scrim */
  .hero-scrim-x { background: linear-gradient(180deg,rgba(13,25,38,.9),rgba(13,25,38,.82)); }
  /* the design's mobile proof strip is a bordered CARD, not a bare row */
  .hero-proof {
    gap: 12px; margin-top: 18px; padding: 12px 14px; border-top: none;
    background: rgba(13,25,38,.4); border: 1px solid rgba(255,255,255,.1); border-radius: 12px;
  }
  .hero-proof .rule { display: block; height: 22px; }
  .hero-proof b { font-size: 12.5px; }
  .hero-proof b.big { font-size: 16px; }
  .hero-proof span { font-size: 10px; color: #c4cdd6; }
  .hero-proof .lg { display: none; }        /* desktop labels off */
  .hero-proof .sm { display: block; }       /* "not guesses" / "not generic" */
}

/* ── the rest of HOME (restored): problem · difference · hood · widget ·
   pills · spotlight · four-things · founder · pricing teaser · final CTA ── */
/* hero app-shot visual */































/* ── Problem ── */
.problem { background: var(--bg-soft); }
.problem-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 50px; align-items: center; }
.problem h2 { font-size: clamp(24px,3vw,31px); color: var(--ink); margin: 12px 0 8px; letter-spacing: -.01em; }
.problem-lede { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 8px 0 22px; }
.problem-list { display: flex; flex-direction: column; gap: 14px; border-left: 2px dashed rgba(232,98,42,.4); padding-left: 24px; margin-left: 7px; }
.problem-item { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 11px; padding: 15px 18px; box-shadow: 0 8px 20px -16px rgba(16,32,46,.4); font-size: 14.5px; line-height: 1.45; color: var(--ink-soft); }
.problem-item::before { content: ""; position: absolute; left: -32px; top: 16px; width: 15px; height: 15px; border-radius: 50%; background: var(--primary); border: 3px solid var(--bg-soft); box-shadow: 0 0 0 1px var(--primary); }
.problem-visual { position: relative; }
.chatcard { position: relative; z-index: 2; max-width: 322px; margin: 6px 0 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 26px 54px -22px rgba(16,32,46,.4); overflow: hidden; }
.chatcard .hd { display: flex; align-items: center; gap: 9px; padding: 12px 15px; background: var(--panel); }
.chatcard .av { width: 28px; height: 28px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--head); font-weight: 700; font-size: 12px; flex: 0 0 28px; }
.chatcard .hd .nm { color: #fff; font-family: var(--head); font-weight: 700; font-size: 13px; }
.chatcard .hd .mt { color: #8b97a3; font-size: 10.5px; }
.chatcard .body { padding: 15px; display: flex; flex-direction: column; gap: 9px; background: #f4f5f7; }
.bubble { max-width: 82%; font-size: 12.5px; line-height: 1.4; padding: 9px 12px; }
.bubble.in { align-self: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 13px 13px 13px 4px; color: var(--ink-soft); }
.bubble.out { align-self: flex-end; background: var(--primary); color: #fff; border-radius: 13px 13px 4px 13px; }
.bubble.img { padding: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 13px 13px 13px 4px; }
.bubble.img img { width: 100%; display: block; height: 88px; object-fit: cover; }
.bubble.img .cap { background: #fff; padding: 6px 10px; font-size: 11px; color: var(--slate); }
.stickynote { position: absolute; left: 4px; bottom: 14px; z-index: 3; transform: rotate(-7deg); background: #fdf3d6; border: 1px solid #efe0ac; border-radius: 4px; padding: 13px 15px 15px; width: 158px; box-shadow: 0 14px 26px -12px rgba(16,32,46,.35); }
.stickynote .t { font-family: var(--head); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #b58a1f; }
.stickynote .m { font-size: 15px; color: #5b4a1f; margin-top: 6px; line-height: 1.5; }
.problem-caption { margin: 18px 0 0; text-align: center; font-size: 13.5px; color: var(--slate); line-height: 1.5; }
.problem-caption strong { color: var(--ink); }

/* ── Difference / not a generic CRM ── */
.difference { background: #fff; }
.diff-head { text-align: center; max-width: 700px; margin: 0 auto 32px; }
.diff-head h2 { font-size: clamp(24px,3vw,31px); color: var(--ink); margin: 12px 0 8px; }
.diff-head p { font-size: 15.5px; line-height: 1.6; color: var(--muted); }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 920px; margin: 0 auto; }
.diff-card { border-radius: 14px; padding: 26px 26px 22px; }
.diff-card--generic { background: var(--bg-soft); border: 1px solid var(--line); }
.diff-card--tlq { background: #fff; border: 1.5px solid var(--primary); box-shadow: 0 18px 44px -20px rgba(232,98,42,.4); }
.diff-card .h { font-family: var(--head); font-weight: 700; font-size: 16px; color: var(--slate); display: flex; align-items: center; gap: 9px; }
.diff-card--tlq .h { color: var(--ink); }
.diff-card .sub { font-size: 12.5px; color: #9aa4af; margin: 2px 0 16px; }
.diff-card--tlq .sub { color: var(--primary); font-weight: 600; }
.diff-row { display: flex; align-items: center; gap: 11px; padding: 9px 0; border-top: 1px solid var(--line); font-size: 14px; }
.diff-card--tlq .diff-row { border-top-color: #f0e2d9; }
.diff-mark { width: 20px; height: 20px; flex: 0 0 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; }
.diff-mark--x { background: #e6e8ec; color: #9aa4af; }
.diff-note { font-size: 13px; margin: 16px 0 0; line-height: 1.5; }
.diff-card--generic .diff-note { color: #9aa4af; font-style: italic; }
.diff-card--tlq .diff-note { color: var(--muted); }

/* ── Under the hood (workflow rail) ── */
.hood { background: var(--bg-cool); position: relative; overflow: hidden; }
.hood-head { position: relative; text-align: center; max-width: 640px; margin: 0 auto; }
.hood-head h2 { font-size: clamp(24px,3vw,31px); color: var(--ink); margin: 12px 0 8px; }
.hood-rule { width: 52px; height: 4px; background: var(--primary); border-radius: 2px; margin: 14px auto 12px; }
.hood-head p { font-size: 15.5px; color: var(--muted); }
.workflow { position: relative; display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; margin-top: 36px; }
.wstep { background: #fff; border: 1px solid var(--line); border-radius: 11px; padding: 16px 15px; position: relative; }
.wstep .n { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 7px; background: var(--ink); color: #fff; font-family: var(--head); font-weight: 700; font-size: 12px; }
.wstep .nm { font-family: var(--head); font-weight: 700; font-size: 14px; color: var(--ink); margin-top: 10px; }
.wstep .ds { font-size: 12.5px; line-height: 1.45; color: var(--slate); margin-top: 5px; }
.wstep--pivot { background: var(--ink); border-color: var(--ink); box-shadow: 0 16px 34px -12px rgba(16,32,46,.5); }
.wstep--pivot .n { background: var(--primary); }
.wstep--pivot .nm { color: #fff; }
.wstep--pivot .ds { color: rgba(255,255,255,.72); }
.wstep--only { background: #fff; border-color: var(--primary); box-shadow: 0 14px 30px -14px rgba(232,98,42,.4); }
.wstep--only .n { background: var(--primary); }
.wstep .flag { position: absolute; top: -11px; left: 15px; background: var(--primary); color: #fff; font-family: var(--head); font-weight: 700; font-size: 9.5px; letter-spacing: .04em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; white-space: nowrap; }

/* ── Measurement widget ── */
.measure { background: #fff; }
.measure-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.measure h2 { font-size: clamp(24px,3vw,31px); color: var(--ink); margin: 12px 0 0; }
.measure p { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 16px 0 0; }
.measure-points { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 11px; }
.measure-points li { display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: var(--ink-soft); }
.tick { width: 22px; height: 22px; flex: 0 0 22px; border-radius: 50%; background: rgba(18,160,106,.12); color: #0f8b5c; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; }
.widgetdemo { background: #fff; border: 1px solid var(--line); border-radius: 13px; overflow: hidden; box-shadow: 0 20px 44px -18px rgba(16,32,46,.28); }
.widgetdemo .bd { padding: 22px; }
/* Live embed (TLQ_MEASURE_EMBED_KEY set). The illustration's 22px padding would
   double up on the widget's own chrome, so the live body is flush. Height is
   fixed because a cross-origin iframe cannot size itself. */
.widgetdemo .bd--live { padding: 0; }
.widgetdemo .measure-embed { display: block; width: 100%; height: 430px; border: 0; background: #fff; }
@media (max-width: 900px) { .widgetdemo .measure-embed { height: 460px; } }
.widgetdemo .row1 { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.widgetdemo .ttl { font-family: var(--head); font-weight: 700; font-size: 16px; color: var(--ink); }
.widgetdemo .wall { background: rgba(232,98,42,.1); color: var(--primary); font-family: var(--head); font-weight: 700; font-size: 11px; padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
.progress { display: flex; gap: 6px; margin: 16px 0 20px; }
.progress span { flex: 1; height: 5px; border-radius: 3px; background: var(--line); }
.progress span.on { background: var(--primary); }
.wfield { display: flex; align-items: center; justify-content: space-between; gap: 8px; background: #f7f8fa; border: 1px solid #eef0f3; border-radius: 9px; padding: 13px 15px; margin-bottom: 10px; font-size: 13.5px; color: var(--muted); }
.wfield b { font-family: var(--head); font-weight: 700; font-size: 15px; color: var(--ink); }
.wfield--photo { border-style: dashed; border-color: #cdd4dc; color: var(--slate); gap: 10px; justify-content: flex-start; }
.widgetdemo .send { margin-top: 8px; background: var(--primary); color: #fff; font-family: var(--head); font-weight: 700; font-size: 14.5px; text-align: center; padding: 13px; border-radius: 9px; }

/* ── Capability pills ── */
.pills { background: var(--bg-soft); }
.pills-kicker { text-align: center; font-family: var(--head); font-size: 13px; font-weight: 700; letter-spacing: .05em; color: var(--slate); margin: 0 0 26px; }
.pills-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }




.only-tag { background: rgba(232,98,42,.12); color: var(--primary); font-size: 9.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; }


/* ── Designer spotlight ── */
.spotlight { background: var(--panel); }
.spotlight-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.spotlight-art { position: relative; }
.spotlight-art .render { margin: 0; border-radius: 12px; overflow: hidden; box-shadow: 0 24px 50px -16px rgba(0,0,0,.6); position: relative; }
.spotlight-art .render img { width: 100%; display: block; height: 250px; object-fit: cover; }
.render-tag { position: absolute; top: 12px; left: 12px; background: rgba(16,32,46,.82); color: #fff; font-family: var(--head); font-weight: 700; font-size: 11px; padding: 6px 12px; border-radius: 999px; }
.spotlight-art .elev { margin: -34px 0 0 46px; border-radius: 10px; overflow: hidden; border: 3px solid #fff; box-shadow: 0 22px 44px -12px rgba(0,0,0,.7); background: #fff; }
.spotlight-art .elev img { width: 100%; display: block; }
.spotlight-art .elev figcaption { display: flex; align-items: center; gap: 7px; padding: 8px 12px; font-size: 11px; color: var(--muted); background: #fff; border-top: 1px solid #eef0f3; }
.elev-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex: 0 0 7px; }
.spotlight-copy .badge { display: inline-block; background: rgba(232,98,42,.16); color: #f6b48f; font-family: var(--head); font-weight: 700; font-size: 12px; letter-spacing: .03em; padding: 6px 13px; border-radius: 999px; }
.spotlight-copy h2 { font-size: clamp(26px,3.2vw,33px); color: #fff; margin: 16px 0 0; }
.spotlight-copy p { font-size: 16px; line-height: 1.6; color: #c4cdd6; margin: 16px 0 0; }
.spotlight-copy p strong { color: #fff; }
.spotlight-stats { display: flex; gap: 28px; margin-top: 26px; flex-wrap: wrap; }
.spotlight-stats b { font-family: var(--head); font-weight: 700; font-size: 22px; color: #fff; }
.spotlight-stats .lbl { font-size: 12px; color: #8b97a3; }
.spotlight-link { display: inline-flex; align-items: center; gap: 8px; color: #f6b48f; font-family: var(--head); font-weight: 600; font-size: 14px; margin-top: 24px; }
.spotlight-link:hover { color: #fff; }

/* ── Four differentiators ── */
.diff4 { background: #fff; }
.diff4-head { text-align: center; }
.diff4-head h2 { font-size: clamp(24px,3vw,31px); color: var(--ink); margin: 12px 0 8px; }
.diff4-rule { width: 52px; height: 4px; background: var(--primary); border-radius: 2px; margin: 14px auto 30px; }
.diff4-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.weapon { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 24px 22px; }
.weapon-ico { width: 46px; height: 46px; border-radius: 11px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.weapon h3 { font-size: 16px; color: var(--ink); margin: 14px 0 6px; }
.weapon p { font-size: 13.5px; line-height: 1.5; color: var(--slate); }

/* ── Founder ── */
.founder { background: var(--bg-soft); }
.founder-inner { max-width: 760px; margin: 0 auto; display: flex; gap: 26px; align-items: flex-start; }
.founder-inner img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; flex: 0 0 84px; }
.founder-quote { font-family: var(--head); font-size: 19px; line-height: 1.5; color: var(--ink); margin: 12px 0 12px; }
.founder cite { font-size: 14px; color: var(--muted); font-style: normal; font-weight: 600; }

/* ── Pricing teaser ── */
.priceteaser { background: #fff; text-align: center; }
.priceteaser h2 { font-size: clamp(24px,3vw,31px); color: var(--ink); margin: 12px 0 8px; }
.priceteaser .rule { width: 52px; height: 4px; background: var(--primary); border-radius: 2px; margin: 14px auto 8px; }
.priceteaser .lede { font-size: 15px; color: var(--muted); margin: 0 auto 30px; max-width: 560px; }
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; max-width: 860px; margin: 0 auto; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: 28px 24px; position: relative; text-align: left; }
.plan--featured { border-color: var(--primary); box-shadow: 0 8px 40px rgba(232,98,42,.16); }
.plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-family: var(--head); font-weight: 700; font-size: 11px; padding: 5px 13px; border-radius: 999px; white-space: nowrap; }
.plan-tier { font-family: var(--head); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); }
.plan-price { font-family: var(--head); font-weight: 700; font-size: 34px; color: var(--ink); margin: 8px 0 2px; }
.plan-price small { font-size: 15px; font-weight: 500; color: #9aa4af; }
.plan-meta { font-size: 13px; color: var(--slate); margin-bottom: 16px; }
.plan-feats { border-top: 1px solid #eef0f3; padding-top: 15px; }
.plan-feat { display: flex; gap: 9px; align-items: flex-start; margin-bottom: 9px; font-size: 13.5px; color: var(--ink-soft); }
.plan-feat .c { color: var(--primary); font-weight: 700; }
.priceteaser-cta { margin-top: 32px; }
.priceteaser-cta .sub { font-size: 13px; color: #9aa4af; margin: 14px 0 0; }

/* ── Final CTA ── */
.finalcta { position: relative; overflow: hidden; background: #0d1926; text-align: center; }
/* the photo + the 90% navy wash, exactly as the design layers them */
.finalcta-bg { position: absolute; inset: 0; z-index: 0; }
.finalcta-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.finalcta-wash { position: absolute; inset: 0; display: block; background: linear-gradient(rgba(13,25,38,.9), rgba(13,25,38,.9)); }
.finalcta > .container { position: relative; z-index: 2; }
.finalcta h2 { font-size: clamp(26px,3.4vw,34px); color: #fff; margin: 0 0 12px; }
.finalcta p { font-size: 16px; line-height: 1.6; color: #c4cdd6; margin: 0 auto 26px; max-width: 600px; }

/* Mobile-only + desktop-only helpers */



/* ── Home hero: mobile visual (abstract mini-pipeline + floor-plan peek) ── */








/* the sliding card gets its own card chrome */




/* ══ HOME — responsive / mobile ══ */
@media (max-width: 900px) {
  .section { padding: 44px 0; }
  .container { padding: 0 20px; }
  .problem-grid, .measure-grid, .spotlight-grid { grid-template-columns: 1fr; gap: 30px; }
  .diff-grid { grid-template-columns: 1fr; }
  .problem-list { margin-left: 0; padding-left: 22px; }
  .problem-visual { max-width: 360px; margin: 0 auto; }
  .stickynote { left: 0; }
  .workflow { grid-template-columns: 1fr 1fr; gap: 8px; }
  .wstep { padding: 12px; }
  .wstep .ds { display: none; }
  .wstep .flag { font-size: 8px; padding: 3px 7px; left: 10px; top: -9px; }
  .pills-grid, .diff4-grid { grid-template-columns: 1fr 1fr; }
  .spotlight-art .elev { margin-left: 20px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 420px; }
  .founder-inner { flex-direction: column; gap: 16px; }
}

@media (max-width: 600px) {
  .pills-grid, .diff4-grid { grid-template-columns: 1fr; }
  .spotlight-stats { gap: 20px; }
}


/* ── restored: dropped in error by the hero swap ──
   .appshot-chrome is the browser chrome on the measurement-widget DEMO (not the
   old hero app-shot). .pill-* are the capability-pill cards — they only shared a
   name prefix with the v12 hero's .pill chip, which v13 replaced with .hero-chip. */
.appshot-chrome { height: 34px; background: #f1f2f5; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 6px; padding: 0 12px; }
.appshot-chrome .dot { width: 8px; height: 8px; border-radius: 50%; background: #d6dae0; }
.appshot-chrome .url { margin-left: 8px; font-size: 11px; color: #9aa4af; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pill-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px 20px; }
.pill-card.only { border-color: #f0d9cd; }
.pill-ico { width: 44px; height: 44px; border-radius: 10px; background: rgba(232,98,42,.1); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.pill-label { font-family: var(--head); font-weight: 700; font-size: 15px; color: var(--ink); margin-top: 14px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pill-sub { font-size: 13px; line-height: 1.45; color: var(--slate); margin-top: 6px; }


/* ── Difference: the closing-half showcase (proposal builder + portal) ── */
.showcase-head { margin: 44px 0 20px; text-align: center; font-family: var(--head); font-weight: 700; font-size: 13px; letter-spacing: .05em; color: var(--slate); }
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 920px; margin: 0 auto; }
.showcase { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px; }
.showcase-cap .t { font-family: var(--head); font-weight: 700; font-size: 15px; color: var(--ink); }
.showcase-cap .s { font-size: 13px; color: var(--slate); margin-top: 3px; }
.mock { margin-top: 16px; border: 1px solid #eef0f3; border-radius: 11px; background: #fbfcfd; padding: 14px; }
.mock-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-bottom: 11px; border-bottom: 1px solid #eef0f3; }
.mock-t { font-family: var(--head); font-weight: 700; font-size: 13px; color: var(--ink); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mock-badge { flex: 0 0 auto; font-family: var(--head); font-weight: 700; font-size: 10px; text-transform: uppercase; letter-spacing: .05em; color: var(--slate); background: #eef1f5; border-radius: 999px; padding: 4px 9px; }
.mock-line { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid #f2f4f8; font-size: 13px; color: var(--muted); }
.mock-line span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mock-line b { flex: 0 0 auto; font-family: var(--head); font-size: 13px; color: var(--ink); font-feature-settings: "tnum"; }
.mock-line--total { border-bottom: none; padding-bottom: 2px; }
.mock-line--total span { font-family: var(--head); font-weight: 700; color: var(--ink); }
.mock-line--total b { color: var(--primary); font-size: 15px; }

.mock--portal { background: #fff; }
.portal-head { display: flex; align-items: center; gap: 10px; }
.portal-logo { width: 30px; height: 30px; flex: 0 0 30px; border-radius: 8px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--head); font-weight: 700; font-size: 14px; }
.portal-head .pn { font-family: var(--head); font-weight: 700; font-size: 13px; color: var(--ink); }
.portal-head .pl { font-size: 10px; color: var(--faint); }
.portal-sub { font-size: 11.5px; color: var(--faint); margin: 10px 0 12px; padding-bottom: 10px; border-bottom: 1px solid #f2f4f8; }
.portal-step { display: flex; align-items: center; gap: 9px; padding: 7px 0; font-size: 12.5px; color: var(--muted); }
.portal-step .pd { width: 18px; height: 18px; flex: 0 0 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.portal-step.done .pd { background: rgba(18,160,106,.14); color: var(--green); }
.portal-step.now { color: var(--ink); font-weight: 600; }
.portal-step.now .pd { border: 2px solid var(--primary); }
.portal-pay { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 12px; background: var(--primary); color: #fff; border-radius: 9px; padding: 11px 13px; font-family: var(--head); font-weight: 700; font-size: 13px; }
.portal-pay b { font-feature-settings: "tnum"; }

@media (max-width: 900px) {
  .showcase-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   PRICING (page-pricing.php) — v13.  bg #FAF8F5
   Starter $499 / Pro $899 (dark, MOST POPULAR) / Scale from $1,499.
   AI in every plan. Phone lines $19/mo. No buildout packages.
══════════════════════════════════════════════════════════════ */
.page-pricing { background: var(--bg); }
.pricing-hero { background: var(--bg); padding: 76px 0 8px; text-align: center; }
/* the purple "AI is included in every plan" pill — exact values from the design */
.ai-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--ai-bg); border: 1px solid #e2d8fb; border-radius: 999px;
  padding: 6px 14px; margin-bottom: 20px;
  font-family: var(--head); font-size: 12.5px; font-weight: 700; color: #4b2ea0;
}
.ai-pill svg { color: var(--ai); flex: 0 0 auto; }
/* one h1, one colour — the second line is a <br>, not a lighter subtitle */
.pricing-hero h1 { font-size: clamp(34px,5vw,50px); line-height: 1.04; color: var(--ink); margin: 0; }
.pricing-hero p { max-width: 620px; margin: 18px auto 0; font-size: 18px; line-height: 1.55; color: var(--muted); }
.pricing-hero p em { font-style: normal; font-weight: 600; color: var(--ink); }

.plans-section { padding-top: 44px; }
.plans { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; align-items: start; }

.price-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 28px 26px; box-shadow: 0 1px 2px rgba(16,24,40,.04); }
.price-card--pop { background: var(--panel); border-color: var(--panel); padding: 34px 26px 28px; box-shadow: 0 30px 70px -28px rgba(16,32,46,.55); margin-top: -8px; }
.pop-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; font-family: var(--head); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; padding: 5px 13px; border-radius: 999px; white-space: nowrap;
}
.pc-name { font-family: var(--head); font-weight: 700; font-size: 22px; color: var(--ink); }
.price-card--pop .pc-name { color: #fff; }
.pc-desc { font-size: 13.5px; line-height: 1.5; color: var(--muted); margin-top: 8px; min-height: 58px; }
.price-card--pop .pc-desc { color: #b9c3cd; }

.pc-price { display: flex; align-items: baseline; gap: 6px; margin-top: 14px; flex-wrap: wrap; }
.pc-price .from { font-size: 13px; color: #9aa2ad; align-self: center; }
.price-card--pop .pc-price .from { color: #8fa0af; }
.pc-price .amt { font-family: var(--head); font-weight: 700; font-size: 38px; color: var(--ink); }
.price-card--pop .pc-price .amt { color: #fff; }
.pc-price .per { font-size: 14px; color: #9aa2ad; }
.price-card--pop .pc-price .per { color: #8fa0af; }

.pc-cta { display: flex; width: 100%; margin-top: 18px; font-size: 15px; font-weight: 600; padding: 13px; border-radius: 11px; box-shadow: 0 6px 16px rgba(232,98,42,.22); }
.price-card--pop .pc-cta { box-shadow: 0 10px 24px rgba(232,98,42,.4); }
.pc-micro { text-align: center; font-size: 11.5px; color: #aab2bd; margin-top: 9px; }
.price-card--pop .pc-micro { color: #8fa0af; }
.pc-rule { height: 1px; background: #f0ebe2; margin: 20px 0 16px; }
.price-card--pop .pc-rule { background: rgba(255,255,255,.12); }

.pc-ai { display: flex; align-items: center; gap: 8px; color: var(--primary-hover); font-family: var(--head); font-weight: 700; font-size: 13px; }
.price-card--pop .pc-ai { color: #f2a077; }
.pc-feats { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pc-feats li { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; line-height: 1.4; color: #3b4453; }
.price-card--pop .pc-feats li { color: #dbe3ea; }
.pc-feats .tick { flex: 0 0 16px; width: 16px; margin-top: 1px; color: var(--green); display: flex; }
.price-card--pop .pc-feats .tick { color: #7fe0b8; }

.onebill { max-width: 860px; margin: 34px auto 0; text-align: center; font-size: 14.5px; line-height: 1.7; color: var(--muted); }
.onebill strong { color: var(--ink); }

/* ── Assistant vs Autopilot ── */
/* Assistant vs Autopilot — warm section, but AI stays PURPLE (Mwenge: AI = purple everywhere). */
.aisplit { background: #fff; }
.aisplit-head { text-align: center; margin-bottom: 28px; }
.aisplit-head h2 { font-size: clamp(24px,3vw,32px); color: var(--ink); margin-top: 10px; }
.aisplit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 940px; margin: 0 auto; }
.ais-card { background: var(--bg); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.ais-card--auto { background: var(--ai-bg); border-color: #e0d6fb; }
.ais-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ais-ico { width: 34px; height: 34px; flex: 0 0 34px; border-radius: 9px; background: rgba(109,58,214,.1); color: var(--ai); display: flex; align-items: center; justify-content: center; }
.ais-card--auto .ais-ico { background: rgba(109,58,214,.14); color: var(--ai); }
.ais-name { font-family: var(--head); font-weight: 700; font-size: 17px; color: var(--ink); }
.ais-tag { margin-left: auto; flex: 0 0 auto; font-family: var(--head); font-weight: 700; font-size: 10.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--slate); background: #eef1f5; border-radius: 999px; padding: 4px 9px; }
.ais-tag--pro { color: var(--ai); background: rgba(109,58,214,.12); }
.ais-card p { margin-top: 12px; font-size: 14.5px; line-height: 1.65; color: var(--muted); }

/* ── In every plan ── */
.included { background: var(--bg); }
.included-head { text-align: center; font-size: clamp(22px,2.8vw,29px); color: var(--ink); margin-bottom: 28px; }
.included-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.inc-item { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.inc-ico { width: 36px; height: 36px; flex: 0 0 36px; border-radius: 9px; background: rgba(232,98,42,.1); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.inc-item .t { font-family: var(--head); font-weight: 700; font-size: 14.5px; color: var(--ink); }
.inc-item .s { font-size: 13px; line-height: 1.5; color: var(--slate); margin-top: 3px; }

/* ── FAQ — static cards. NOT an accordion: the design shows every answer. ── */
.faq { background: #fff; }
.faq-head { text-align: center; font-size: clamp(22px,2.8vw,29px); color: var(--ink); margin-bottom: 26px; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-card { background: #fff; border: 1px solid var(--border); border-radius: 13px; padding: 18px 20px; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; margin: 0; padding: 0; background: none; border: 0; text-align: left; cursor: pointer;
  font-family: var(--head); font-weight: 600; font-size: 15.5px; color: var(--ink); }
.faq-ic { display: inline-flex; flex: 0 0 17px; }
.faq-ic--minus { display: none; }               /* desktop + collapsed cards: plus only */
.faq-q svg { display: block; flex: 0 0 17px; color: #c2c9d2; }
.faq-a { overflow: hidden; }
.faq-card p { margin-top: 9px; font-size: 14px; line-height: 1.6; color: var(--muted); }
/* Mobile: FAQ becomes a tap-to-open accordion (mock: Q1 open, Q2–Q6 collapsed).
   Desktop keeps every answer visible — see the note in page-pricing.php. */
@media (max-width: 640px) {
  .faq-a { max-height: 0; opacity: 0; transition: max-height .32s ease, opacity .22s ease; }
  .faq-card.open .faq-a { max-height: 600px; opacity: 1; }
  .faq-card.open .faq-ic--plus { display: none; }
  .faq-card.open .faq-ic--minus { display: inline-flex; }
}
/* ── Final CTA ── */
.pricing-final-wrap { padding: 36px 0 72px; }
.pricing-final {
  position: relative; overflow: hidden; border-radius: 22px; padding: 48px 34px; text-align: center;
  background: linear-gradient(135deg, var(--panel), var(--panel-2)); color: #fff;
}
.pf-glow { position: absolute; inset: 0; display: block;
  background-image: radial-gradient(70% 120% at 50% 0%, rgba(232,98,42,.22), transparent 60%); }
.pf-inner { position: relative; z-index: 2; }
.pricing-final h2 { font-size: clamp(26px,3.4vw,38px); color: #fff; }
.pricing-final p { max-width: 560px; margin: 14px auto 22px; font-size: 15px; line-height: 1.65; color: #b9c3cd; }
/* Quiet secondary "Talk to us" link under the primary trial CTA (navy cards). */
.pf-talk, .cta-talk { margin: 16px 0 0; }
.pf-talk a, .cta-talk a { font-size: 13.5px; color: #c4cdd6; border-bottom: 1px solid rgba(255,255,255,.28); padding-bottom: 1px; transition: color .15s ease, border-color .15s ease; }
.pf-talk a:hover, .cta-talk a:hover { color: #fff; border-bottom-color: rgba(255,255,255,.65); }

@media (max-width: 900px) {
  .plans { grid-template-columns: 1fr; gap: 16px; max-width: 460px; margin: 0 auto; }
  .price-card--pop { margin-top: 0; }
  .pc-desc { min-height: 0; }
  .aisplit-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .pricing-hero { padding: 44px 0 0; }
  .pricing-final .btn { display: flex; width: 100%; }
}

/* ══════════════════════════════════════════════════════════════
   COMPARE (page-compare.php) — v12
══════════════════════════════════════════════════════════════ */
.page-compare { background: var(--bg); }
.cmp-hero { text-align: center; padding: 60px 0 0; }
.cmp-hero h1 { font-size: clamp(28px,3.6vw,40px); color: var(--ink); margin: 12px auto 12px; max-width: 820px; line-height: 1.1; }
.cmp-hero h1 span { color: var(--primary); }
.cmp-hero .sub { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 720px; margin: 0 auto; }

/* Lifecycle timeline (dark) */
.lifecycle { background: var(--panel); color: #fff; border-radius: 20px; padding: 44px 40px; margin: 40px auto 0; max-width: 1000px; }
.lifecycle .eyebrow { color: #f0894f; }
.lifecycle h2 { color: #fff; font-size: clamp(22px,2.8vw,29px); margin: 10px 0 10px; }
.lifecycle .lede { color: #9fb0bf; font-size: 15px; line-height: 1.6; max-width: 720px; }
.lifecycle .only { color: #fff; font-weight: 600; font-size: 14.5px; margin: 14px 0 0; }
.lifecycle .only b { color: var(--primary); }
.lc-stages { display: flex; gap: 2px; margin: 30px 0 12px; padding-left: 184px; }
.lc-stages span { flex: 1; text-align: center; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #7c8b99; }
.lc-rows { display: flex; flex-direction: column; gap: 10px; }
.lc-row { display: flex; align-items: center; }
.lc-name { width: 184px; flex: 0 0 184px; font-size: 13.5px; font-weight: 600; padding-right: 16px; white-space: nowrap; }
.lc-track { flex: 1; position: relative; height: 38px; background: rgba(255,255,255,.05); border-radius: 9px; }
.lc-bar { position: absolute; top: 50%; transform: translateY(-50%); border-radius: 9px; display: flex; align-items: center; padding: 0 13px; overflow: hidden; }
.lc-bar .l { font-size: 11.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Arguments */
.cmp-args-head { text-align: center; }
.cmp-args-head h2 { font-size: clamp(24px,3vw,31px); color: var(--ink); margin: 12px 0 30px; }
.cmp-args { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 1000px; margin: 0 auto; }
.arg-card { border-radius: 16px; padding: 22px 20px; }
.arg-card--dark { background: var(--panel); border: 1px solid var(--panel); }
.arg-card--light { background: #fff; border: 1px solid #e9ecf1; }
.arg-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .06em; color: #f2a077; background: rgba(232,98,42,.18); border-radius: 999px; padding: 4px 10px; margin-bottom: 10px; }
.arg-card h3 { font-size: 18px; margin: 0 0 8px; }
.arg-card--dark h3 { color: #fff; } .arg-card--light h3 { color: var(--ink); }
.arg-card p { font-size: 14px; line-height: 1.55; }
.arg-card--dark p { color: #b9c3cd; } .arg-card--light p { color: var(--muted); }
.arg-kicker { font-family: var(--head); font-weight: 700; font-size: 13px; margin-top: 12px; }
.arg-card--dark .arg-kicker { color: #f0894f; } .arg-card--light .arg-kicker { color: var(--primary-hover); }

/* Matrix */
.cmp-matrix-head { text-align: center; }
.cmp-matrix-head h2 { font-size: clamp(24px,3vw,31px); color: var(--ink); margin: 12px 0 8px; }
.cmp-legend { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; font-size: 12.5px; color: var(--muted); margin: 10px 0 22px; }
.cmp-legend span { display: inline-flex; align-items: center; gap: 6px; }
.cmp-legend i { width: 16px; height: 16px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.leg-yes { background: #e7f6ef; color: #0f9d6b; } .leg-part { background: #fdf1de; color: #bd7f24; } .leg-no { background: #f4f6f8; color: #cbd2db; }
.cmp-vs-ui { display: none; max-width: 420px; margin: 0 auto 18px; }
.cmp-vs-ui label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.cmp-vs-ui select { width: 100%; font-family: var(--body); font-size: 15px; padding: 12px 14px; border: 1px solid var(--border); border-radius: 11px; background: #fff; color: var(--ink); }
/* container ruling: the matrix is the one 1180 exception. It must break out of the 1080 .container (else it clamps to ~1016, narrower than the 7 columns need) and center on the viewport. */
.cmp-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; width: min(1180px, calc(100vw - 40px)); margin-left: 50%; transform: translateX(-50%); }
.cmp-table { width: 100%; min-width: 900px; border-collapse: collapse; background: #fff; border: 1px solid #eef0f3; border-radius: 14px; overflow: hidden; }
.cmp-table th, .cmp-table td { padding: 14px 12px; text-align: center; }
.cmp-table thead th { background: #fbfcfd; color: #5a6472; font-family: var(--head); font-size: 13px; font-weight: 600; border-bottom: 1px solid #e9ecf1; }
.cmp-table thead th.cmp-rowhead { color: #17222f; font-weight: 600; } /* N43: "Capability" ink on light header (was #3b4453 on #10202e navy = invisible) */
.cmp-table thead th .p { display: block; font-size: 11px; font-weight: 500; opacity: .72; margin-top: 3px; }
.cmp-table thead th.cmp-us { background: #10202e; color: #fff; border-top: 3px solid var(--primary); } /* mock: TradeLynQ column navy w/ orange cap, not solid orange */
.cmp-table thead th.cmp-us .badge { display: block; font-size: 9.5px; letter-spacing: .06em; color: #f2a077; opacity: 1; }
.cmp-table .cmp-rowhead { text-align: left; font-size: 14px; color: #3b4453; font-weight: 500; border-bottom: 1px solid #f1f3f6; border-left: 3px solid transparent; }
.cmp-table tr.cmp-pivot { background: rgba(232,98,42,.06); } /* N44: mock's light-orange pivot tint. Row class renamed hero->cmp-pivot to break the global .hero{background:#0d1926} collision that turned this row navy and hid its ink label. */
.cmp-table tr.cmp-pivot .cmp-rowhead { font-weight: 700; color: var(--ink); border-left-color: var(--primary); }
.cmp-table td.cmp-us { background: #fff7f2; border-left: 1px solid #f6ded1; border-right: 1px solid #f6ded1; }
.cmp-table tbody td { border-bottom: 1px solid #f4f6f8; }
.cmp-dot { display: inline-flex; width: 26px; height: 26px; border-radius: 50%; align-items: center; justify-content: center; }
.cmp-dot--yes { background: #e7f6ef; color: #0f9d6b; } .cmp-dot--partial { background: #fdf1de; color: #bd7f24; } .cmp-dot--no { background: #f4f6f8; color: #cbd2db; }
.cmp-disclaimer { max-width: 900px; margin: 20px auto 0; font-size: 12.5px; line-height: 1.6; color: var(--faint); text-align: center; }
.cmp-disclaimer b { color: var(--muted); }

/* Compare final */
.cmp-final { text-align: center; }
.cmp-final h2 { font-size: clamp(24px,3vw,31px); color: var(--ink); margin: 12px 0 10px; }
.cmp-final p { font-size: 15.5px; line-height: 1.6; color: var(--muted); max-width: 640px; margin: 0 auto 24px; }
.cmp-final .sub { font-size: 13px; color: var(--faint); margin-top: 14px; }

@media (max-width: 900px) {
  .cmp-args { grid-template-columns: 1fr; }
  .lifecycle { padding: 32px 20px; }
  .lc-stages { padding-left: 0; display: none; }
  .lc-rows { gap: 14px; }
  .lc-row { flex-direction: column; align-items: stretch; gap: 6px; }
  .lc-name { width: auto; flex: none; padding-right: 0; }
  /* mobile: the positioned timeline bars can't fit a phone width (they overflow
     their tracks and collide). Render each as an in-flow coverage chip under its
     name — full label, fixed height, no overlap. */
  .lc-track { height: auto; background: none; border-radius: 0; }
  .lc-bar { position: relative; top: auto; left: auto !important; width: auto !important; max-width: 100%; height: auto !important; min-height: 34px; transform: none; padding: 8px 14px; box-shadow: none !important; }
  .lc-bar .l { white-space: normal; overflow: visible; }
  /* pick-one head-to-head: hide every competitor col, show the selected one */
  .cmp-scroll { overflow-x: visible; width: auto; margin-left: 0; transform: none; }
  .cmp-table { min-width: 0; table-layout: fixed; }
  .cmp-table .cmp-rowhead { width: 54%; }
  .cmp-vs-ui { display: block; }
  .cmp-table[data-vs] .col-ghl, .cmp-table[data-vs] .col-bt, .cmp-table[data-vs] .col-jt,
  .cmp-table[data-vs] .col-jb, .cmp-table[data-vs] .col-hcp, .cmp-table[data-vs] .col-sf { display: none; }
  .cmp-table[data-vs="ghl"] .col-ghl, .cmp-table[data-vs="bt"] .col-bt, .cmp-table[data-vs="jt"] .col-jt,
  .cmp-table[data-vs="jb"] .col-jb, .cmp-table[data-vs="hcp"] .col-hcp, .cmp-table[data-vs="sf"] .col-sf { display: table-cell; }
  .cmp-table th, .cmp-table td { padding: 12px 8px; font-size: 12.5px; }
  .cmp-final .btn { width: 100%; }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT (page-about.php) — v12.  bg #FAF7F2, headings #14202C
══════════════════════════════════════════════════════════════ */
.page-about { background: var(--bg-about); }
.page-about h1, .page-about h2, .page-about h3 { color: var(--ink-about); }
.about-hero { padding: 62px 0 0; }
.about-hero-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 48px; align-items: center; }
.about-hero .eyebrow { color: var(--primary); }
.about-hero h1 { font-size: clamp(30px,3.8vw,42px); line-height: 1.08; margin: 12px 0 16px; }
.about-hero p { font-size: 16.5px; line-height: 1.65; color: var(--muted); }
.founder-card { background: #fff; border: 1px solid var(--border-2); border-radius: 18px; padding: 26px; text-align: center; box-shadow: 0 18px 44px -24px rgba(16,32,46,.4); }
.founder-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; object-position: center top; display: block; margin: 0 auto 16px; }
.founder-card .nm { font-family: var(--head); font-weight: 700; font-size: 19px; color: var(--ink-about); }
.founder-card .rl { font-size: 13.5px; color: var(--muted); margin-top: 4px; }

.about-why { max-width: 820px; margin: 0 auto; }
.about-why .eyebrow { color: var(--primary); }
.about-why h2 { font-size: clamp(22px,2.6vw,28px); margin: 12px 0 18px; }
.about-why p { font-size: 16px; line-height: 1.8; color: var(--ink-soft); margin: 0 0 18px; }
.about-why p em, .about-why p strong { color: var(--ink-about); font-style: normal; font-weight: 700; }

/* N52: cream 2-col — copy left, remodel-kitchen-2.jpg right (was a full-width navy card, no photo; the navy had swapped here off the principles band below). */
.conviction { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 52px; align-items: center; max-width: 1000px; margin: 0 auto; }
.conviction .eyebrow { color: var(--primary); }
.conviction h2 { color: var(--ink); font-size: clamp(24px,3vw,32px); margin: 12px 0 16px; }
.conviction p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 16px; }
.conviction p:last-child { margin-bottom: 0; }
.conviction-photo img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: 20px; box-shadow: 0 24px 50px -24px rgba(20,32,44,.35); display: block; }

.principles-head { text-align: center; }
.principles-head .eyebrow { color: var(--primary); }
.principles-head h2 { font-size: clamp(24px,3vw,31px); margin: 12px 0 30px; }
.principles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 900px; margin: 0 auto; }
.principle { background: #fff; border: 1px solid var(--border-2); border-radius: 16px; padding: 26px; }
.principle-ico { width: 46px; height: 46px; border-radius: 11px; background: rgba(232,98,42,.1); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.principle h3 { font-size: 17px; margin: 14px 0 7px; }
.principle p { font-size: 14px; line-height: 1.6; color: var(--muted); }

.about-note { max-width: 760px; margin: 0 auto; display: flex; gap: 26px; align-items: flex-start; }
.about-note img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; object-position: center top; flex: 0 0 84px; }
.about-note .eyebrow { color: var(--primary); }
.about-note blockquote { margin: 0; }
.about-note .q { font-family: var(--head); font-size: 19px; line-height: 1.55; color: var(--ink-about); margin: 12px 0 12px; }
.about-note cite.about-sig { display: block; font-style: normal; margin-top: 14px; }
.about-note .sig-name { display: block; font-family: var(--head); font-weight: 600; font-size: 15px; color: #14202c; line-height: 1.25; }
.about-note .sig-role { display: block; font-size: 13px; color: #8a94a3; margin-top: 2px; }

.about-final { background: var(--panel); color: #fff; text-align: center; position: relative; overflow: hidden; }
.about-final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 100% at 50% 0%, rgba(232,98,42,.18), transparent 60%); pointer-events: none; }
.about-final .inner { position: relative; }
.about-final h2 { color: #fff; font-size: clamp(24px,3.2vw,33px); margin: 0 0 12px; }
.about-final h2 em { color: var(--primary); font-style: normal; }
.about-final p { font-size: 15.5px; color: #c4cdd6; max-width: 560px; margin: 0 auto 24px; line-height: 1.6; }
.about-final .sub { font-size: 13px; color: #8b97a3; margin-top: 14px; }
.about-final .sub a { color: #f6b48f; }

@media (max-width: 860px) {
  .about-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .conviction { grid-template-columns: 1fr; gap: 28px; }
  .conviction-photo img { aspect-ratio: 16/10; }
  .principles-grid { grid-template-columns: 1fr; }
  .about-note { flex-direction: column; gap: 14px; }
  .about-final .btn { width: 100%; }
}

/* ══════════════════════════════════════════════════════════════
   CONTACT (page-contact.php) — v12.  Demo = secondary path
══════════════════════════════════════════════════════════════ */
.page-contact { background: var(--bg); }
.contact-hero { text-align: center; padding: 60px 0 0; }
.contact-hero .eyebrow { color: var(--primary); }
.contact-hero h1 { font-size: clamp(28px,3.6vw,40px); color: var(--ink); margin: 12px 0 14px; }
.contact-hero p { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 640px; margin: 0 auto 26px; }
.contact-hero .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-secondary { display: inline-flex; align-items: center; justify-content: center; font-family: var(--head); font-weight: 700; font-size: 15px; padding: 15px 26px; border-radius: 11px; background: #fff; color: var(--ink); border: 1px solid var(--border); }
.btn-secondary:hover { color: var(--ink); border-color: var(--slate); }


/* N72: share the hero's 1080/28 rail (→1024) instead of a separate max-width:1000
   (→944) — the mock puts hero and form on ONE rail. Grid 1.35/.9 gap 24 → 600/400. */
.contact-grid { display: grid; grid-template-columns: 1.35fr .9fr; gap: 24px; align-items: start; margin: 0 auto; }
.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 30px; box-shadow: 0 18px 44px -26px rgba(16,32,46,.35); }
.contact-form-card .eyebrow { color: var(--primary); }
.contact-form-card h2 { font-size: 24px; color: var(--ink); margin: 10px 0 8px; }
.contact-form-card .lede { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0 0 20px; }
.cf-group { margin-bottom: 16px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-group label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; }
.cf-group input, .cf-group textarea { width: 100%; font-family: var(--body); font-size: 15px; padding: 12px 14px; border: 1px solid var(--border); border-radius: 11px; background: #fff; color: var(--ink); }
.cf-group input:focus, .cf-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,98,42,.12); }
.cf-group textarea { resize: vertical; min-height: 96px; }
.cf-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cf-submit { display: flex; width: 100%; margin-top: 4px; font-size: 16px; }
.cf-privacy { text-align: center; font-size: 12.5px; color: var(--faint); margin: 12px 0 0; }
.form-message { border-radius: 11px; padding: 14px 16px; font-size: 14.5px; margin-bottom: 18px; }
.form-message--success { background: #e7f6ef; color: #0f7a4f; border: 1px solid #bfe6d3; }
.form-message--error { background: #fdecec; color: #b3261e; border: 1px solid #f5cccb; }


@media (max-width: 860px) {
  .contact-hero .btns .btn, .contact-hero .btns .btn-secondary { width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px 20px; }
  .cf-row { grid-template-columns: 1fr; }
}

/* ── Home spotlight tweak: 72h stamp + quote + full-width compare chip ── */
.spotlight-stamp { position: absolute; bottom: -46px; left: -10px; display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 13px; padding: 11px 15px; box-shadow: 0 18px 36px -12px rgba(0,0,0,.55); }
.stamp-check { display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; flex: 0 0 30px; border-radius: 50%; background: #e4f4ec; color: var(--green); }
.spotlight-stamp .st { font-family: var(--head); font-weight: 700; font-size: 13.5px; color: var(--ink-about); line-height: 1.25; }
.spotlight-stamp .ss { font-size: 11.5px; color: var(--faint); line-height: 1.25; }
.spotlight-quote { margin: 22px 0 0; padding: 2px 0 2px 18px; border-left: 3px solid var(--primary); font-family: var(--head); font-weight: 500; font-size: 17px; line-height: 1.4; color: #fff; }
.spotlight-chip { display: flex; align-items: center; justify-content: space-between; gap: 14px; width: 100%; margin-top: 22px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.16); border-radius: 13px; padding: 16px 20px; color: #fff; font-family: var(--head); font-weight: 600; font-size: 15px; }
.spotlight-chip:hover { color: #fff; background: rgba(255,255,255,.08); }
.spotlight-chip .ar { color: #f6b48f; display: flex; }
@media (max-width: 900px) {
  .spotlight-stamp { display: none; }               /* desktop flourish only; mobile design omits it */
  .spotlight-quote { font-size: 15.5px; }
}

/* ── Legal pages (Privacy / Terms) — v12 styling, original copy ── */
.legal-hero { background: #fff; border-bottom: 1px solid var(--border); padding: 92px 0 40px; } /* N77: distinct white band under the nav (was var(--bg) = same cream as page) */
.legal-hero h1 { font-family: var(--head); font-weight: 600; font-size: clamp(30px, 5vw, 44px); letter-spacing: -0.02em; color: var(--ink); margin: 0 0 12px; }
.legal-hero p { font-size: 16px; color: var(--muted); max-width: 640px; margin: 0; }
.legal-body { background: var(--bg); padding: 48px 0 88px; }
.legal-grid { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 56px; align-items: start; }
.legal-toc { position: sticky; top: 96px; }
.legal-toc-title { font-family: var(--head); font-weight: 600; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); margin: 0 0 12px; }
.legal-toc ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.legal-toc a { display: block; padding: 7px 12px; border-radius: 9px; font-size: 14px; color: var(--muted); text-decoration: none; transition: background .15s, color .15s; }
.legal-toc a:hover { background: #fff; color: var(--primary); }
.legal-prose { max-width: 720px; }
.legal-lede { font-family: var(--head); font-weight: 500; font-size: 19px; line-height: 1.5; color: var(--ink-about); margin: 0 0 40px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.legal-prose section { margin: 0 0 36px; scroll-margin-top: 96px; }
.legal-prose h2 { font-family: var(--head); font-weight: 600; font-size: 22px; letter-spacing: -0.01em; color: var(--ink-about); margin: 0 0 14px; }
.legal-prose p { font-size: 15.5px; line-height: 1.72; color: #3f4a57; margin: 0 0 14px; }
.legal-prose p:last-child { margin-bottom: 0; }
.legal-prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.legal-prose a:hover { color: var(--primary-hover); }
.legal-prose strong { color: var(--ink-about); font-weight: 600; }
.legal-updated { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); font-size: 13.5px; color: var(--faint); }
@media (max-width: 860px) {
  .legal-hero { padding: 76px 0 32px; }
  .legal-grid { grid-template-columns: 1fr; gap: 28px; }
  .legal-toc { position: static; top: auto; }
  .legal-toc ul { flex-flow: row wrap; gap: 6px; }
  .legal-toc a { background: #fff; border: 1px solid var(--border); padding: 6px 14px; font-size: 13px; min-height: 44px; display: inline-flex; align-items: center; }   /* N82: ≥44px tap gate (chips were 34px) */
  .legal-prose, .legal-lede { max-width: 100%; }
}

/* ── Sticky mobile "Start free" bar (v13 ship gate, every page) ── */
.sticky-cta { display: none; }
@media (max-width: 900px) {
  .sticky-cta {
    display: block; position: sticky; bottom: 0; z-index: 900;
    background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  }
  .sticky-cta .btn { display: flex; width: 100%; min-height: 48px; align-items: center; justify-content: center; font-size: 15.5px; border-radius: 11px; }
  .sticky-cta p { margin: 7px 0 0; text-align: center; font-size: 11.5px; color: var(--faint); }
  /* sticky (not fixed): the bar settles in-flow right after the footer at the
     page bottom, so no body padding is needed and there's no empty cream gap
     below the footer (the fixed+padding combo left one, worst on iOS Safari). */
  /* the drawer is fixed at z-9999 and must sit above the bar */
}

/* ── Contact v13: side panel + form bits (demo covers removed) ── */
.cf-optional { font-weight: 400; color: var(--faint); }
.contact-form-card select {
  width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid var(--border);
  border-radius: 11px; background: #fff; font-family: var(--body); font-size: 15px; color: var(--ink);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f6b78' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 18px;
}
.contact-form-card select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,98,42,.13); }
.contact-side { display: flex; flex-direction: column; gap: 14px; }
.cside { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 22px; }
.cside .t { font-family: var(--head); font-weight: 700; font-size: 16px; color: var(--ink); }
.cside p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 8px 0 0; }
.cside .fine { font-size: 12px; color: var(--faint); margin-top: 10px; }
.cside--cta { background: var(--bg); border-color: #e6dcce; }
.cside--cta .btn { display: flex; width: 100%; min-height: 48px; align-items: center; justify-content: center; margin-top: 14px; }
.cside-phone { display: inline-flex; align-items: center; min-height: 44px; margin-top: 8px; font-family: var(--head); font-weight: 700; font-size: 19px; color: var(--ink); text-decoration: none; }   /* N73: keep the tel: link, pad to ≥44px tap gate */
.cside-phone:hover { color: var(--primary); }

/* ══════════════════════════════════════════════════════════════
   HOME v13: AI band · FAQ · trial strip
══════════════════════════════════════════════════════════════ */

/* ── AI: "AI chases. You close." ── */
.aiband { background: #F5F6F8; }
.aiband-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 56px; align-items: center; }
.aiband-copy .eyebrow { color: var(--ai); }
.aiband-copy h2 { font-family: var(--head); font-weight: 600; font-size: clamp(26px,3.4vw,36px); letter-spacing: -0.02em; color: var(--ink); margin: 12px 0 14px; }
.aiband-copy .lede { font-size: 16px; line-height: 1.7; color: var(--muted); margin: 0 0 26px; }
.ai-points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.ai-points li { display: flex; gap: 13px; align-items: flex-start; }
.ai-tick { flex: 0 0 24px; width: 24px; height: 24px; margin-top: 2px; border-radius: 50%; background: var(--ai-bg); color: var(--ai); display: flex; align-items: center; justify-content: center; }
.ai-points b { display: block; font-family: var(--head); font-weight: 600; font-size: 15.5px; color: var(--ink); }
.ai-points span { display: block; font-size: 14.5px; line-height: 1.6; color: var(--muted); margin-top: 3px; }

.ai-panel { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px; box-shadow: 0 24px 50px -26px rgba(16,32,46,.34); }
.ai-panel-head { display: flex; align-items: center; gap: 11px; padding-bottom: 16px; border-bottom: 1px solid #eef1f5; }
.ai-dot { width: 34px; height: 34px; flex: 0 0 34px; border-radius: 10px; background: var(--ai-bg); color: var(--ai); display: flex; align-items: center; justify-content: center; }
.ai-panel-head .t { font-family: var(--head); font-weight: 700; font-size: 15px; color: var(--ink); }
.ai-panel-head .s { font-size: 12.5px; color: var(--faint); }
.ai-row { display: flex; align-items: center; gap: 12px; padding: 15px 0; border-bottom: 1px solid #f2f4f8; }
.ai-row-dot { width: 8px; height: 8px; flex: 0 0 8px; border-radius: 50%; }
.ai-row-body { min-width: 0; flex: 1; }
.ai-row .t { font-family: var(--head); font-weight: 600; font-size: 14px; color: var(--ink); }
.ai-row .s { font-size: 12.5px; color: var(--faint); margin-top: 2px; }
.ai-chip { flex: 0 0 auto; font-family: var(--head); font-weight: 600; font-size: 11.5px; color: var(--ai); background: var(--ai-bg); border-radius: 999px; padding: 5px 10px; }
.ai-foot { padding-top: 15px; font-family: var(--head); font-weight: 600; font-size: 13.5px; color: var(--green); }

/* ── FAQ "Straight answers" — 2-col static cards, NOT an accordion ── */
.homefaq { background: #fff; }
.homefaq-head { text-align: center; margin-bottom: 30px; }
.homefaq-head .eyebrow { color: var(--primary); }
.homefaq-head h2 { font-family: var(--head); font-weight: 600; font-size: clamp(24px,3vw,32px); letter-spacing: -0.02em; color: var(--ink); margin: 10px 0 0; }
.homefaq-rule { width: 52px; height: 4px; background: var(--primary); border-radius: 2px; margin: 14px auto 0; }
.homefaq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 920px; margin: 0 auto; }
.hf-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 24px; display: flex; align-items: flex-start; gap: 13px; }
.hf-ico { width: 28px; height: 28px; flex: 0 0 28px; border-radius: 8px; background: rgba(232,98,42,.1); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.hf-q { font-family: var(--head); font-weight: 700; font-size: 15.5px; color: var(--ink); }
.hf-card p { margin-top: 7px; font-size: 14px; line-height: 1.6; color: var(--muted); }

/* ── Final CTA: "How the trial works" ── */
/* mock: three separate translucent cards on the navy band — no outer wrapper,
   grey section label, peach uppercase day labels, no arrows on desktop. */
.trialstrip { margin: 28px 0 0; }
.trialstrip-t { font-family: var(--head); font-weight: 700; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #8b97a3; margin: 0 0 14px; }
.trialstrip-steps { display: flex; align-items: stretch; justify-content: center; gap: 12px; max-width: 780px; margin: 0 auto 28px; }
.ts-step { flex: 1; min-width: 0; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; padding: 14px 18px; text-align: left; }
.ts-step b { display: block; font-family: var(--head); font-weight: 700; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: #f6b48f; }
.ts-step span { display: block; font-size: 13px; color: #c4cdd6; margin-top: 5px; }
.ts-arrow { display: none; }   /* desktop mock has no arrows between the cards */

@media (max-width: 900px) {
  .aiband-grid { grid-template-columns: 1fr; gap: 30px; }
  .homefaq-list { grid-template-columns: 1fr; }
  /* mock mobile: keep the 3 cards in a tight row WITH horizontal arrows (not a stack) */
  .trialstrip-steps { gap: 6px; }
  .ts-step { padding: 13px 11px; }
  .ts-step b { font-size: 9.5px; letter-spacing: .07em; }
  .ts-step span { font-size: 12px; line-height: 1.35; color: #e6ebf0; margin-top: 7px; }
  .ts-arrow { display: flex; align-self: center; flex: 0 0 auto; color: #E8622A; }
}

/* ══════════════════════════════════════════════════════════════
   BLOG — "The Measured Cut" (page-blog.php) — v13.  bg #FAF7F2
   Chrome is verbatim from the design; the ARTICLES come from real
   WP posts (the mock's sample posts are fabricated — see page-blog.php).
══════════════════════════════════════════════════════════════ */
.page-blog { background: var(--bg-about); }
.blog-hero { padding: 64px 0 22px; }
.blog-hero h1 { font-size: clamp(34px,5vw,52px); letter-spacing: -.02em; color: var(--ink-about); margin: 0; }
.blog-hero .tag { font-family: var(--head); font-weight: 500; font-size: clamp(16px,2vw,20px); color: var(--primary); margin: 10px 0 0; }
.blog-hero .lede { max-width: 640px; font-size: 15.5px; line-height: 1.65; color: var(--muted); margin: 14px 0 0; }

.post-card { display: block; background: #fff; border: 1px solid #e9e2d7; border-radius: 16px; overflow: hidden; color: inherit; transition: transform .15s ease, box-shadow .15s ease; }
.post-card:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -22px rgba(16,32,46,.4); color: inherit; }

/* featured */
.blog-featured { padding: 14px 0 8px; }
.post-card.feat { border-radius: 22px; }
.feat-grid { display: grid; grid-template-columns: 1.05fr 1fr; }
.feat-img { position: relative; background: #e6ded2; min-height: 360px; }
.feat-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feat-tag { position: absolute; top: 18px; left: 18px; background: var(--ink-about); color: #fff; font-family: var(--head); font-size: 12px; font-weight: 700; letter-spacing: .02em; padding: 6px 12px; border-radius: 999px; text-transform: uppercase; }
.feat-body { padding: 38px 40px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.feat-body h2 { font-size: clamp(24px,2.8vw,32px); line-height: 1.18; color: var(--ink-about); }
.feat-body p { font-size: 15px; line-height: 1.65; color: var(--muted); }

.chip { align-self: flex-start; display: inline-block; background: rgba(232,98,42,.1); color: var(--primary-hover); font-family: var(--head); font-weight: 700; font-size: 11.5px; padding: 5px 11px; border-radius: 999px; }
.byline { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 12.5px; color: var(--faint); }
.byline .who { font-family: var(--head); font-weight: 700; color: var(--ink-about); }

/* feed */
.feed-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.feed-head h2 { font-size: clamp(20px,2.4vw,26px); color: var(--ink-about); }
.all-posts { font-family: var(--head); font-weight: 600; font-size: 14px; }
.cat-rail { display: flex; gap: 9px; margin: 18px 0 22px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 2px; }
.cat-rail::-webkit-scrollbar { display: none; }
.cat { flex: 0 0 auto; font-family: var(--head); font-size: 13px; font-weight: 600; color: var(--muted); background: #fff; border: 1px solid #e4dccf; padding: 8px 15px; border-radius: 999px; white-space: nowrap; }
.cat:hover { color: var(--primary); }
.cat--on { background: var(--primary); border-color: var(--primary); color: #fff; font-weight: 700; }
.cat--on:hover { color: #fff; }

.feed-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.pc-img { height: 176px; background: #e6ded2; }
.pc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pc-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.pc-body h3 { font-size: 16.5px; line-height: 1.35; color: var(--ink-about); }
.pc-body p { font-size: 13.5px; line-height: 1.55; color: var(--muted); }

.feed-empty { background: #fff; border: 1px dashed #e0d7c9; border-radius: 16px; padding: 44px 24px; text-align: center; color: var(--muted); }
.feed-empty p { margin: 0 0 6px; font-size: 15px; line-height: 1.6; }
.feed-empty strong { color: var(--ink-about); font-family: var(--head); }
.feed-more { margin-top: 26px; display: flex; justify-content: center; gap: 8px; }
.feed-more .page-numbers { font-family: var(--head); font-weight: 600; font-size: 14px; color: var(--muted); background: #fff; border: 1px solid #e4dccf; border-radius: 9px; padding: 8px 13px; }
.feed-more .page-numbers.current { background: var(--primary); border-color: var(--primary); color: #fff; }

/* subscribe — warm light card (navy pulled per brand call), copy left / form right. */
.blog-sub { background: transparent; }
.blog-sub-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 24px; padding: 44px 40px; display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; }
.blog-sub h2 { font-size: clamp(22px,2.8vw,30px); color: var(--ink); }
.blog-sub-copy p { max-width: 420px; margin: 12px 0 0; font-size: 14.5px; line-height: 1.65; color: var(--muted); }
.sub-form { display: flex; gap: 10px; width: 340px; max-width: 100%; margin: 0; flex-wrap: wrap; }
.sub-form input[type="email"] {
  flex: 1; min-width: 0; min-height: 48px; padding: 12px 15px; border-radius: 11px;
  border: 1px solid var(--border); background: #fff; color: var(--ink);
  font-family: var(--body); font-size: 15px;
}
.sub-form input[type="email"]::placeholder { color: var(--faint); }
.sub-form input[type="email"]:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(232,98,42,.25); }
.sub-form .btn { flex: 0 0 auto; min-height: 48px; }
.sub-done { margin-top: 14px; font-size: 14px; color: #7fe0b8; }

@media (max-width: 900px) {
  .feat-grid { grid-template-columns: 1fr; }
  .feat-img { min-height: 220px; }
  .feat-body { padding: 24px 20px; }
  .feed-grid { grid-template-columns: 1fr; }
  .blog-hero { padding: 44px 0 18px; }
  .blog-sub-card { grid-template-columns: 1fr; gap: 24px; padding: 34px 24px; border-radius: 18px; }
  .sub-form { width: 100%; flex-direction: column; }
  .sub-form .btn { display: flex; width: 100%; }
}

/* ── FIXES from live QA ─────────────────────────────────────── */
.demo-badge { margin-left: auto; background: var(--ink); color: #fff; font-family: var(--head); font-weight: 700; font-size: 9px; letter-spacing: .14em; padding: 3px 9px; border-radius: 999px; flex: 0 0 auto; }
/* N18: DEMO disclaimer + closer/CTA now live INSIDE the widget card (mock 236-241).
   Scoped under .widgetdemo so they outrank `.measure p` (0,0,1,1). */
.widgetdemo .measure-note { display: flex; gap: 8px; align-items: flex-start; margin: 0; padding: 14px 22px 0; font-size: 11.5px; line-height: 1.5; color: var(--slate); }
.mn-tick { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 1px; border-radius: 50%; background: rgba(18,160,106,.14); color: var(--green); display: flex; align-items: center; justify-content: center; }
.widgetdemo .measure-cta { margin: 13px 0 0; border-top: 1px solid #eef0f3; padding: 13px 22px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.widgetdemo .mc-line { margin: 0; font-family: var(--head); font-weight: 700; font-size: 12.5px; line-height: 1.4; color: var(--ink); }
.widgetdemo .measure-cta-link { font-family: var(--head); font-weight: 700; font-size: 12.5px; color: var(--primary); white-space: nowrap; }
.widgetdemo .measure-cta-link:hover { color: #d4571f; }

@media (max-width: 900px) {
  /* the design's mobile under-the-hood is ONE column and keeps the detail
     lines. A 2-col grid of bare titles was neither. */
  .workflow { grid-template-columns: 1fr !important; }
  .wstep .ds { display: block !important; }
  .widgetdemo .measure-cta { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ══════════════════════════════════════════════════════════════
   v15 — BLOG ARTICLE + ARCHIVES + 404
   (single.php / archive.php / 404.php / index.php)
   v14 shipped none of these, so posts, archives and search fell through to
   index.php's hardcoded "Page Not Found" at HTTP 200 (N123). These templates
   fix that; the styles below dress them in the v13 brand (marketing.css tokens).
══════════════════════════════════════════════════════════════ */
.container--single { max-width: 720px; }

/* archive / index / search headers reuse .blog-hero */
.archive-hero { text-align: left; }
.archive-hero h1 { text-transform: none; }

/* single article */
.single { background: #faf7f2; }
.single-hero { padding: 40px 0 6px; }
.single-back { display: inline-block; font-family: var(--head); font-weight: 600; font-size: 13.5px; color: var(--muted); text-decoration: none; margin-bottom: 18px; }
.single-back:hover { color: var(--primary); }
.single-hero .chip { display: inline-block; margin-bottom: 12px; }
.single-hero h1 { font-family: var(--head); font-weight: 700; font-size: clamp(28px,4vw,40px); line-height: 1.1; letter-spacing: -.02em; color: var(--ink); margin: 0 0 16px; }
.single-byline { display: flex; gap: 14px; flex-wrap: wrap; font-size: 14px; color: var(--muted); }
.single-byline .who { font-weight: 600; color: var(--ink); }
.single-cover { margin: 26px auto; }
.single-cover img { width: 100%; height: auto; border-radius: 16px; display: block; }
.single-body { font-size: 17.5px; line-height: 1.75; color: #2c3742; padding-bottom: 10px; }
.single-body > * { margin: 0 0 1.15em; }
.single-body > *:last-child { margin-bottom: 0; }
.single-body h2 { font-family: var(--head); font-weight: 600; font-size: 25px; line-height: 1.25; color: var(--ink); margin: 1.6em 0 .5em; }
.single-body h3 { font-family: var(--head); font-weight: 600; font-size: 20px; color: var(--ink); margin: 1.5em 0 .4em; }
.single-body a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.single-body img { max-width: 100%; height: auto; border-radius: 12px; }
.single-body blockquote { margin: 1.4em 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--primary); color: var(--muted); font-style: italic; }
.single-body ul, .single-body ol { padding-left: 1.3em; }
.single-body li { margin: 0 0 .5em; }
.single-body code { background: #eef1f5; padding: 2px 6px; border-radius: 6px; font-size: .9em; }
.single-foot { padding: 20px 0 60px; margin-top: 22px; border-top: 1px solid var(--border); }

/* single-page final CTA (navy band) */
.single-cta { text-align: center; background: #0d1926; color: #fff; padding: 68px 0; }
.single-cta h2 { font-family: var(--head); font-weight: 700; font-size: clamp(24px,3vw,32px); color: #fff; margin: 0 0 12px; }
.single-cta p { font-size: 16px; color: #b9c3cd; max-width: 560px; margin: 0 auto 24px; }
.single-cta .cta-fine { font-size: 13px; color: #8fa0af; margin-top: 14px; }

/* 404 */
.notfound .nf-hero { text-align: center; padding: 96px 0 120px; }
.nf-hero .eyebrow { color: var(--primary); }
.nf-hero h1 { font-family: var(--head); font-weight: 700; font-size: clamp(30px,4vw,44px); color: var(--ink); margin: 12px 0 12px; }
.nf-hero p { font-size: 17px; color: var(--muted); margin: 0 auto 28px; max-width: 460px; }
.nf-links { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.nf-alt { font-family: var(--head); font-weight: 600; color: var(--muted); text-decoration: none; }
.nf-alt:hover { color: var(--primary); }

/* ══ Cluster B — mobile copy / type scale (N8 family) ═══════════════════════
   Mocks author shorter mobile strings + a smaller Legal scale. Render BOTH
   strings in the markup and toggle at the phone breakpoint. */
.u-mob { display: none; }
@media (max-width: 640px) {
  .u-desk { display: none; }
  .u-mob  { display: inline; }
  /* N70/N71: the mobile form starts at the first field — the hero already says
     "Talk to a human", so drop the repeated heading + subhead. */
  .contact-form-card h2, .contact-form-card .lede { display: none; }
  /* N84: Legal mobile type scale (was shipping the desktop scale). */
  .legal-hero h1 { font-size: 27px; }
  .legal-prose h2 { font-size: 17px; }
  .legal-prose p, .legal-prose li { font-size: 13.5px; }
}
