/*
 * Ignition Canvas — report stylesheet
 * Loaded only on the ignition_canvas post type via single-ignition_canvas.php.
 * Fonts are self-hosted below — no external Google Fonts request.
 */

/* Bree Serif — latin */
@font-face {
  font-family: 'Bree Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/bree-serif-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Inter — latin (weights 300–700, normal only) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/inter-300-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-500-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --canvas:     #f3ede0;
  --canvas-2:   #ede5d3;
  --paper:      #faf6ec;
  --ink:        #1f1c18;
  --ink-soft:   #3d3833;
  --muted:      #5a5248;
  --faint:      #b0a89b;
  --line:       #ddd2bf;
  --line-soft:  #e8dfcc;
  --orange:     #e8650a;
  --orange-dk:  #c95208;
  --orange-lt:  #ff8a3d;
  --orange-bg:  rgba(232,101,10,0.06);
  --orange-br:  rgba(232,101,10,0.3);
}

* { box-sizing:border-box; }

body.single-ignition_canvas {
  background: var(--canvas);
  background-image:
    radial-gradient(circle at 15% 5%, rgba(255,255,255,0.5) 0%, transparent 45%),
    radial-gradient(circle at 85% 95%, rgba(232,101,10,0.03) 0%, transparent 50%);
  color: var(--ink-soft);
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  min-height: 100vh;
}

/* MASTHEAD */
.masthead {
  padding: 28px 48px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: var(--canvas);
  max-width: 1100px;
  margin: 0 auto;
}

.logo-lock { display: flex; align-items: center; gap: 12px; }

.logo-mark {
  width: 42px; height: 42px;
  background: var(--ink);
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark::after {
  content: '';
  position: absolute;
  top: -4px; right: -4px;
  width: 10px; height: 10px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.logo-text {
  font-family: 'Bree Serif', serif;
  font-size: 22px;
  letter-spacing: -0.2px;
  color: var(--ink);
  line-height: 1.05;
}
.logo-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 2px;
}

.masthead-meta {
  text-align: right;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.6;
}

/* RECIPIENT MASTHEAD — "Prepared for" header strip */
.canvas-masthead {
  background: var(--canvas);
  border-bottom: 2px solid var(--line);
}

.canvas-masthead__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.canvas-masthead__text { flex: 1; }

.canvas-masthead__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.canvas-masthead__name {
  font-family: 'Bree Serif', serif;
  font-size: 38px;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.canvas-masthead__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.canvas-masthead__logo {
  height: 110px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.9;
}

.canvas-masthead__context {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px 28px;
  font-size: 15px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .canvas-masthead__inner {
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .canvas-masthead__name { font-size: 28px; }
  .canvas-masthead__logo { height: 72px; }
  .canvas-masthead__context { padding: 0 24px 24px; }
}

/* DOC CONTAINER */
.doc {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 48px 80px;
  position: relative;
}

/* HEADER */
.doc-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.doc-eyebrow::after {
  content: '';
  width: 16px; height: 16px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.doc-title {
  font-family: 'Bree Serif', serif;
  font-size: 48px;
  letter-spacing: -1px;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 16px;
}

.doc-title-accent { color: var(--orange); }

.doc-prepared-for {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.doc-prepared-for strong {
  font-family: 'Bree Serif', serif;
  font-size: 22px;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.1;
  display: block;
  margin-bottom: 4px;
}

.prospect-logo {
  height: 64px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.9;
}

/* SECTION */
.section { margin-bottom: 40px; }

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.1;
}

.section-heading {
  font-family: 'Bree Serif', serif;
  font-size: 28px;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.section p {
  margin-bottom: 14px;
  color: var(--ink-soft);
}

.section p:last-child { margin-bottom: 0; }

.section strong { color: var(--ink); font-weight: 600; }

/* HEADLINE OBSERVATION CARD */
.headline-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  padding: 26px 30px;
  margin-bottom: 40px;
}

.headline-card .section-eyebrow { margin-bottom: 14px; }

.headline-text {
  font-family: 'Bree Serif', serif;
  font-size: 24px;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.2px;
}

/* WHAT WE HEARD — post-call canvases only */
.what-we-heard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--ink-soft);
  border-radius: 6px;
  padding: 24px 28px;
  margin-bottom: 40px;
}

.what-we-heard .section-eyebrow { margin-bottom: 12px; }

.what-we-heard__intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.thread-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.thread-list li {
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.thread-list li:first-child { padding-top: 0; }
.thread-list li:last-child { border-bottom: none; padding-bottom: 0; }

.thread-list strong {
  color: var(--ink);
  font-weight: 600;
}

.what-we-heard__closing {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-size: 16px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
}

/* ASSUMPTIONS LIST */
.assumptions {
  background: var(--canvas-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px 26px;
  margin-bottom: 40px;
}

.assumptions .section-eyebrow { margin-bottom: 14px; }

.assumption-list {
  list-style: none;
  counter-reset: assumption;
}

.assumption-list li {
  counter-increment: assumption;
  padding: 12px 0 12px 36px;
  position: relative;
  border-bottom: 1px dashed var(--line);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.assumption-list li:last-child { border-bottom: none; padding-bottom: 0; }
.assumption-list li:first-child { padding-top: 0; }

.assumption-list li::before {
  content: counter(assumption);
  position: absolute;
  left: 0; top: 10px;
  width: 22px; height: 22px;
  background: var(--orange);
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.assumption-list li:first-child::before { top: 0; }

/* BUYER VOICE TABS */
.bv-tabs {
  margin: 20px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.bv-tab-nav {
  display: flex;
  background: var(--canvas-2);
  border-bottom: 2px solid var(--line);
  flex-wrap: wrap;
}

.bv-tab-btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  border-right: 1px solid var(--line);
  padding: 12px 20px 14px;
  cursor: pointer;
  position: relative;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  flex: 1;
  text-align: center;
}

.bv-tab-btn:last-child { border-right: none; }

.bv-tab-btn:hover { color: var(--ink-soft); background: var(--canvas); }

.bv-tab-btn.is-active {
  color: var(--orange);
  background: var(--paper);
}

.bv-tab-btn.is-active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
}

.bv-tab-panel { display: none; background: var(--paper); padding: 4px 0; }
.bv-tab-panel.is-active { display: block; }

/* BUYER VOICE BAR CHARTS - VERTICAL */
.bv-chart {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.bv-chart-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.bv-chart-eyebrow span:first-child { color: var(--orange); font-weight: 500; }

.bv-chart-area {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  margin-top: 4px;
}

.bv-y-axis {
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding-right: 8px;
  border-right: 1px solid var(--ink);
}

.bv-y-axis span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  line-height: 1.2;
  text-align: right;
}

.bv-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.bv-vbar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bv-vbar-wrap {
  height: 160px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--ink);
}

.bv-vbar-fill {
  width: 100%;
  background: var(--ink-soft);
  border-radius: 2px 2px 0 0;
}

.bv-vbar-col.is-t2t .bv-vbar-fill {
  background: var(--orange);
}

.bv-vbar-name {
  font-size: 10px;
  text-align: center;
  margin-top: 8px;
  line-height: 1.3;
  color: var(--ink-soft);
  min-height: 32px;
}

.bv-vbar-col.is-t2t .bv-vbar-name {
  color: var(--orange-dk);
  font-weight: 600;
}

@media (max-width: 700px) {
  .bv-chart-area { grid-template-columns: 48px 1fr; gap: 6px; }
  .bv-y-axis { height: 130px; padding-right: 5px; }
  .bv-y-axis span { font-size: 8px; }
  .bv-vbar-wrap { height: 130px; }
  .bv-vbar-name { font-size: 9px; min-height: 30px; }
  .bv-bars { gap: 4px; }
}

/* LINE CHART (SVG) */
.bv-line-svg { display: block; width: 100%; overflow: visible; }

/* COMPETITOR TABLE */
.comp-list {
  margin-top: 12px;
  border-top: 1px solid var(--line);
}

.comp-row {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
}

.comp-row:last-child { border-bottom: none; }

.comp-name {
  font-family: 'Bree Serif', serif;
  font-size: 18px;
  color: var(--ink);
}

.comp-desc {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.comp-desc em {
  font-family: 'Bree Serif', serif;
  font-style: italic;
  color: var(--ink);
  font-size: 17px;
}

/* CASE STUDY CALLOUT */
.case-study {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  padding: 24px 28px;
  margin-bottom: 36px;
}

.case-study .section-eyebrow { margin-bottom: 10px; }

.case-study h3 {
  font-family: 'Bree Serif', serif;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}

.case-study p {
  font-size: 17px;
  margin-bottom: 14px;
  line-height: 1.6;
}

.case-study p:last-child { margin-bottom: 0; }

/* NEXT STEP CALLOUT */
.next-step {
  background: var(--ink);
  color: var(--paper);
  border-radius: 6px;
  padding: 28px 30px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.next-step::before {
  content: '';
  position: absolute;
  top: -14px; right: -14px;
  width: 36px; height: 36px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.next-step .section-eyebrow {
  color: var(--orange-lt);
  margin-bottom: 12px;
}

.next-step h3 {
  font-family: 'Bree Serif', serif;
  font-size: 26px;
  color: var(--paper);
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

.next-step p {
  color: rgba(242,234,216,0.92);
  font-size: 18px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.next-step p:last-child { margin-bottom: 0; }

.next-step strong { color: var(--paper); }

/* FOOTER */
.doc-footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.doc-footer a { color: var(--orange-dk); text-decoration: none; }
.doc-footer a:hover { text-decoration: underline; }

@media (max-width: 700px) {
  .doc { padding: 32px 24px 60px; }
  .doc-title { font-size: 36px; }
  .masthead { padding: 22px 24px; flex-direction: column; gap: 12px; align-items: flex-start; }
  .masthead-meta { text-align: left; }
  .comp-row { grid-template-columns: 1fr; gap: 6px; }
  .comp-name { font-size: 15px; }
  .section-heading { font-size: 21px; }
}

/* ============================================================
   CANVAS V2 — tabbed layout, new canvases only.
   Everything below is scoped under .canvas-v2 (or the cv2- prefix)
   so it never touches the rules above, which the 14 existing
   canvases (rendered via canvas-layout.php) still depend on.

   Values mirror the site's live global tokens (style.css :root) —
   NOT the legacy --orange/--ink/--paper/--muted redeclared at the
   top of this file. Those names are reused here deliberately with
   a v2- prefix to avoid being silently shadowed by the block above.
   ============================================================ */
.canvas-v2 {
  --v2-ink:       #43352F;
  --v2-cream:     #F7F4E0;
  --v2-paper:     #F4F2EC;
  --v2-beige:     #B5AC8D;
  --v2-mustard:   #FFD365;
  --v2-accent:    #E36038;
  --v2-amber:     #F39200;
  --v2-evergreen: #6A7A5C;
  --v2-muted:     #6e6258;
  --v2-hairline:  rgba(67,53,47,0.07);
  --v2-band-h:        clamp(340px, 36vw, 500px);
  --v2-band-h-finale: clamp(380px, 44vw, 560px);
  --v2-content: 1180px;
  --v2-gutter:  clamp(1.25rem, 4vw, 3rem);

  /* Transparent, not opaque -- the sitewide body rule already paints the canvas
     texture (var(--canvas-bg)) with !important. Matches how .hero-shell / .final-cta /
     .canvas-bg stay transparent elsewhere so it's never repainted, only ever shown
     through or lightly tinted. */
  background: transparent;
  color: var(--v2-ink);
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 16px;
}

.canvas-v2 h1, .canvas-v2 h2, .canvas-v2 h3, .canvas-v2 h4 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.06;
  color: var(--v2-ink);
  margin: 0;
}

.canvas-v2 p { line-height: 1.6; color: var(--v2-muted); margin: 0; }
.canvas-v2 strong { color: var(--v2-ink); }

/* masthead — headline + subhead + body live here now (reconciled against the
   approved design PDF), not split off into the Summary tab band.
   The real canvas-bg texture is a near-white woven pattern with very low
   contrast -- at 0.88 alpha it was fully washed out (confirmed by
   compositing the actual texture file at several alphas). 0.32 is where
   it actually reads. Not sticky, so no blur needed. */
.canvas-v2 .canvas-masthead {
  background: rgba(244,242,236,0.32);
  border-bottom: 1px solid var(--v2-hairline);
  max-width: var(--v2-content);
  margin: 0 auto;
  padding: clamp(2rem,4vw,3rem) var(--v2-gutter);
}
.canvas-v2 .canvas-masthead__top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  padding-bottom: clamp(1.25rem,3vw,2rem);
  margin-bottom: clamp(1.25rem,3vw,2rem);
  border-bottom: 1px solid var(--v2-hairline);
}
.canvas-v2 .canvas-masthead__eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--v2-accent);
}
.canvas-v2 .canvas-masthead__logo { height: 48px; width: auto; flex-shrink: 0; }
.canvas-v2 .canvas-masthead__headline {
  font-size: clamp(2rem, 1.3rem + 2.2vw, 3.25rem);
  color: var(--v2-accent); letter-spacing: -0.018em; line-height: 1.1; max-width: 22ch;
  margin-bottom: 12px;
}
.canvas-v2 .canvas-masthead__subhead {
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.5rem);
  font-weight: 600; color: var(--v2-ink); letter-spacing: -0.01em; line-height: 1.25;
  margin-bottom: 0;
}
.canvas-v2 .canvas-masthead__context {
  font-style: italic; color: var(--v2-muted); font-size: 1rem; line-height: 1.6;
  margin-top: clamp(1.25rem,3vw,2rem); padding-top: clamp(1.25rem,3vw,2rem);
  border-top: 1px solid var(--v2-hairline);
}
.canvas-v2 .canvas-masthead__prompt {
  font-weight: 600; color: var(--v2-accent); font-size: 1rem; letter-spacing: -0.005em;
  margin-top: clamp(1.25rem,3vw,1.75rem); margin-bottom: 0;
}
@media (max-width: 700px) {
  .canvas-v2 .canvas-masthead__top { flex-direction: column; gap: 14px; }
  .canvas-v2 .canvas-masthead__logo { height: 36px; }
}

/* top-level tab rail — centered. Higher alpha than the masthead: this bar
   is sticky and stays visible when scrolled over a dark photo band, so it
   needs more opacity to keep tab text legible there, not just over the
   plain texture. */
.canvas-v2 .cv2-tabnav {
  display: flex; gap: 22px; flex-wrap: wrap; justify-content: center;
  padding: 10px var(--v2-gutter) 0;
  border-bottom: 1px solid var(--v2-hairline);
  background: rgba(244,242,236,0.5);
  backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 40;
}
.canvas-v2 .cv2-tab {
  appearance: none; background: none; border: none; cursor: pointer;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 15px; color: var(--v2-muted);
  padding: 8px 2px 12px; position: relative;
  display: inline-flex; gap: 7px; align-items: baseline; white-space: nowrap;
}
.canvas-v2 .cv2-tab__num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.14em; color: var(--v2-beige);
}
.canvas-v2 .cv2-tab.is-active { color: var(--v2-ink); font-weight: 600; }
.canvas-v2 .cv2-tab.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--v2-accent);
}

.canvas-v2 .cv2-panel { display: none; }
.canvas-v2 .cv2-panel.is-active { display: block; }

/* hero band */
.canvas-v2 .cv2-band {
  position: relative; overflow: hidden;
  min-height: var(--v2-band-h);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.canvas-v2 .cv2-band--finale { min-height: var(--v2-band-h-finale); }
.canvas-v2 .cv2-band__img {
  position: absolute; inset: 0; background-size: cover; background-position: center 42%;
}
.canvas-v2 .cv2-band__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(180deg, rgba(16,9,18,0.28) 0%, rgba(16,9,18,0.2) 40%, rgba(12,7,12,0.82) 100%),
    linear-gradient(100deg, rgba(12,7,12,0.52), transparent 62%);
}
.canvas-v2 .cv2-band--ink {
  background-image:
    radial-gradient(120% 90% at 12% 8%, rgba(227,96,56,0.16), transparent 55%),
    radial-gradient(90% 80% at 92% 92%, rgba(255,211,101,0.12), transparent 50%),
    linear-gradient(160deg, #312822, #221a16);
}
.canvas-v2 .cv2-band__body {
  position: relative; z-index: 2;
  max-width: var(--v2-content); margin: 0 auto; width: 100%;
  padding: clamp(3rem,6vw,5rem) var(--v2-gutter);
}
.canvas-v2 .cv2-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--v2-mustard); margin: 0 0 16px;
}
.canvas-v2 .cv2-eyebrow.on-light { color: var(--v2-accent); }
.canvas-v2 .cv2-headline {
  font-size: clamp(2.25rem, 1.4rem + 2.4vw, 3.5rem);
  letter-spacing: -0.018em; line-height: 1.06; max-width: 24ch; color: var(--v2-cream);
}
.canvas-v2 .cv2-lede {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: clamp(1.2rem, 1rem + 0.5vw, 1.45rem); line-height: 1.55;
  color: rgba(247,244,224,0.92); margin: 16px 0 0; max-width: 64ch;
}

/* paper body below the band */
.canvas-v2 .cv2-body {
  max-width: var(--v2-content); margin: 0 auto; width: 100%;
  padding: clamp(2rem,4vw,3rem) var(--v2-gutter) clamp(3rem,5vw,5rem);
}

/* card — headline observation, claim callouts */
.canvas-v2 .cv2-card {
  background: #fff; border: 1px solid var(--v2-hairline);
  border-radius: 12px; box-shadow: 0 1px 2px rgba(67,53,47,0.04), 0 8px 24px rgba(67,53,47,0.06);
  padding: 26px 28px;
}

/* assumptions / can't-see lists */
.canvas-v2 .cv2-list { list-style: none; margin: 16px 0 0; padding: 0; }
.canvas-v2 .cv2-list li {
  padding: 16px 0; border-bottom: 1px solid var(--v2-hairline);
  font-size: 1.075rem; line-height: 1.58; color: var(--v2-ink);
}
.canvas-v2 .cv2-list li:first-child { padding-top: 0; }

/* competitive rows */
.canvas-v2 .cv2-comp-row {
  display: grid; grid-template-columns: 200px 1fr; gap: 24px;
  padding: 20px 0; border-bottom: 1px solid var(--v2-hairline); align-items: start;
}
.canvas-v2 .cv2-comp-name { font-weight: 600; color: var(--v2-ink); }
.canvas-v2 .cv2-comp-desc { font-size: 1.05rem; line-height: 1.58; color: var(--v2-muted); }

/* case study / next step */
.canvas-v2 .cv2-case-study,
.canvas-v2 .cv2-next-step {
  padding-top: 4px;
}
.canvas-v2 .cv2-next-step p { color: var(--v2-muted); }
.canvas-v2 .cv2-next-step a.btn { margin-top: 22px; }

/* footnote */
.canvas-v2 .cv2-footnote {
  font-style: italic; color: var(--v2-beige); max-width: 78ch;
  margin: 18px 0 0; font-size: 1rem; line-height: 1.6;
}

/* Summary tab — intro paragraph (moved down from the masthead), then the
   3-card breakdown (Finding / Why it holds / The Move) */
.canvas-v2 .cv2-summary-intro {
  font-size: 1.15rem; line-height: 1.6; color: var(--v2-ink); max-width: 80ch;
  margin: 0 0 24px;
}
.canvas-v2 .cv2-summary-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.canvas-v2 .cv2-summary-card {
  background: #fff; border: 1px solid var(--v2-hairline);
  border-radius: 12px; box-shadow: 0 1px 2px rgba(67,53,47,0.04), 0 8px 24px rgba(67,53,47,0.06);
  padding: 24px 22px;
}
.canvas-v2 .cv2-summary-card__eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--v2-accent); margin-bottom: 10px;
}
.canvas-v2 .cv2-summary-card__heading {
  font-size: 1.2rem; line-height: 1.3; margin-bottom: 10px;
}
.canvas-v2 .cv2-summary-card__body {
  font-size: 0.975rem; line-height: 1.55; color: var(--v2-muted);
}
@media (max-width: 860px) {
  .canvas-v2 .cv2-summary-cards { grid-template-columns: 1fr; }
}

/* Prev/Next pagenav — sits just below the hero band, first thing in the
   paper body, so people can jump sections without scrolling past all the
   content first. Outlined pills, not solid orange -- that fill is reserved
   for the one primary CTA (see the active-tab-styling discussion). Dark ink
   border/text on the paper texture gives clear contrast without competing
   with the accent color. */
.canvas-v2 .cv2-pagenav {
  display: flex; align-items: stretch; justify-content: space-between; gap: 16px;
  margin-bottom: clamp(2rem,4vw,3rem);
}
.canvas-v2 .cv2-pagenav__btn {
  display: inline-flex; align-items: center; gap: 12px;
  appearance: none; cursor: pointer;
  background: #fff;
  border: 1.5px solid var(--v2-ink);
  border-radius: 999px;
  padding: 12px 22px;
  color: var(--v2-ink);
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}
.canvas-v2 .cv2-pagenav__btn:hover {
  background: var(--v2-ink);
  color: var(--v2-cream);
  transform: translateY(-1px);
}
.canvas-v2 .cv2-pagenav__btn--next { margin-left: auto; }
.canvas-v2 .cv2-pagenav__arrow { font-size: 18px; line-height: 1; }
.canvas-v2 .cv2-pagenav__text { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.canvas-v2 .cv2-pagenav__btn--next .cv2-pagenav__text { text-align: right; }
.canvas-v2 .cv2-pagenav__label {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.65;
}
.canvas-v2 .cv2-pagenav__name {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 500; font-size: 0.975rem;
}
@media (max-width: 600px) {
  .canvas-v2 .cv2-pagenav__label { display: none; }
  .canvas-v2 .cv2-pagenav__btn { padding: 10px 16px; }
}

/* Inline CTA band — bottom of every tab except Next step */
.canvas-v2 .cv2-cta-band {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  margin-top: clamp(2rem,4vw,3rem);
  padding: clamp(1.5rem,3vw,2rem) clamp(1.5rem,3vw,2.25rem);
  background: var(--v2-ink);
  border-radius: 14px;
}
.canvas-v2 .cv2-cta-band__eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--v2-mustard); margin-bottom: 8px;
}
.canvas-v2 .cv2-cta-band__headline {
  color: var(--v2-cream); font-size: clamp(1.15rem, 1rem + 0.5vw, 1.4rem);
  letter-spacing: -0.01em; line-height: 1.3;
}
.canvas-v2 .cv2-cta-band__btn { flex-shrink: 0; }

/* pill buttons — reuse the sitewide .btn.btn--accent, just round it per spec */
.canvas-v2 .btn { border-radius: 999px; }

@media (max-width: 860px) {
  .canvas-v2 .cv2-comp-row { grid-template-columns: 1fr; gap: 8px; }
  .canvas-v2 .cv2-cta-band { flex-direction: column; align-items: flex-start; }
}


/* ===========================================================
   EVENTS — single-ic_event.php + archive-ic_event.php
   Hero reuses .exp-banner/.exp-intro; the grid reuses
   .cases/.case from the case-studies listing. These rules only
   cover what's new: hero date/time/location chips, the
   description+RSVP two-column body, and the co-host logo strip.
   =========================================================== */

.evt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}
.evt-chip {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.evt-body {
  padding: clamp(1.5rem, 3vw, 2.5rem) var(--gutter) clamp(4rem, 6vw, 6rem);
}
.evt-body__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.evt-desc p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 1.25rem;
}
.evt-desc ul,
.evt-desc ol {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.evt-desc ul li,
.evt-desc ol li {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
}
.evt-desc ul li::marker,
.evt-desc ol li::marker { color: var(--accent); }

.evt-sub-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 2rem 0 0.75rem;
}
.evt-location {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 1.5rem;
}
.evt-contact {
  font-size: 0.9375rem;
  color: var(--muted);
}
.evt-contact a { color: var(--accent); }

.evt-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 12px 32px rgba(31, 28, 24, 0.08);
}
.evt-form-card__label {
  display: block;
  width: 100%;
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 1.1rem + 1vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  text-align: center;
  margin: 0 0 1.5rem;
}
.evt-form-placeholder {
  border: 2px dashed rgba(67, 53, 47, 0.25);
  border-radius: 10px;
  padding: 2.5rem 1.25rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
}

.evt-logos {
  padding: clamp(3rem, 5vw, 5rem) var(--gutter) clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.evt-logos__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.75rem;
}
.evt-logos__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.evt-logos__row img {
  max-height: 92px;
  max-width: 320px;
  object-fit: contain;
  opacity: 0.85;
}

.evt-empty {
  text-align: center;
  font-size: 1.125rem;
  color: var(--muted);
  padding: 3rem 0;
}

/* ---------- RSVP HubSpot embed — mirrors the guide-page .pdf-card
   treatment (template-parts/guide/pdf-card.php), stacked instead of
   inline since this form has three fields, not one. Button stays flat/
   square, not the gradient pill — that's reserved for the primary CTA. */
.evt-form-card .hs-form-field { margin-bottom: 16px !important; }
.evt-form-card label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.evt-form-card .hs-error-msgs { margin: 4px 0 0; padding: 0; list-style: none; }
.evt-form-card .hs-error-msgs li { font-size: 12px; color: #c0392b; }
.evt-form-card .hs-input {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 14px;
  border: 1px solid rgba(67, 53, 47, 0.18);
  border-radius: 6px;
  background: var(--white);
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--ink);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.evt-form-card .hs-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(227, 96, 56, 0.18);
}
.evt-form-card .hs-button,
.evt-form-card input[type="submit"] {
  display: flex !important;
  width: 100% !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 13px 18px !important;
  margin-top: 4px !important;
  border: none !important;
  border-radius: 6px !important;
  background: var(--accent) !important;
  color: var(--white) !important;
  font-family: inherit !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: transform 150ms ease, filter 150ms ease !important;
}
.evt-form-card .hs-button:hover,
.evt-form-card input[type="submit"]:hover {
  transform: translateY(-1px) !important;
  filter: brightness(1.04) !important;
}

@media (max-width: 860px) {
  .evt-body__inner { grid-template-columns: 1fr; }
}
