/* ============================================================================
   Teho landing — page-specific styles
   Builds on colors_and_type.css. All tokens come from there.
   ============================================================================ */

/* ============================================================================
   Layout primitives
   ============================================================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
section { padding: 100px 0; position: relative; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

/* ============================================================================
   Skip link
   ============================================================================ */
.skip-link {
  position: absolute; left: -9999px; top: 8px;
  padding: 8px 14px; background: var(--t-ink); color: var(--t-paper);
  font-size: 13px; border-radius: var(--t-r-3);
  z-index: 100;
}
.skip-link:focus { left: 8px; }

/* ============================================================================
   Nav
   ============================================================================ */
nav.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(243, 239, 228, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--t-line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px; max-width: 1280px; margin: 0 auto;
  gap: 32px;
}
.nav-brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--t-ink); font-weight: 600;
  font-size: 16px; letter-spacing: -0.015em;
}
.nav-brand-wordmark { line-height: 1; }
.brand-pixel-mark {
  display: grid;
  grid-template-columns: repeat(3, 6px);
  grid-template-rows: repeat(2, 6px);
  gap: 2px;
  padding: 2px;
  flex: 0 0 auto;
}
.brand-pixel-mark i {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--t-brand);
  border-radius: 1px;
}
.brand-pixel-mark i:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}
.footer-brand .brand-pixel-mark i {
  background: var(--wt-execution);
}
.nav-links {
  display: flex; gap: 4px; align-items: center;
  flex: 1; justify-content: center;
}
.nav-links a {
  font-size: 13px; color: var(--t-muted);
  padding: 8px 12px; border-radius: var(--t-r-3);
  position: relative;
  transition: color var(--t-dur);
}
.nav-links a:hover { color: var(--t-ink); }
.nav-links a.is-active {
  color: var(--t-ink);
}
.nav-links a.is-active::after {
  content: ""; position: absolute;
  left: 12px; right: 12px; bottom: 2px;
  height: 1.5px; background: var(--t-brand);
}
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-cta .t-btn {
  min-height: 34px;
}
.mobile-menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--t-ink);
  padding: 0;
  transition: color var(--t-dur) var(--t-ease), background var(--t-dur) var(--t-ease);
}
.mobile-menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--t-dur) var(--t-ease), opacity var(--t-dur) var(--t-ease);
}
.mobile-menu-toggle:hover {
  color: var(--t-brand);
  background: color-mix(in srgb, var(--t-brand) 8%, transparent);
}
.mobile-menu-toggle:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--t-brand) 42%, transparent);
  outline-offset: 3px;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}
.mobile-menu {
  display: none;
}

@media (max-width: 1024px) {
  .nav-inner { padding: 14px 28px; gap: 16px; }
  .nav-links { display: none; }
  .nav-scoping-link { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
  .mobile-menu {
    display: grid;
    gap: 2px;
    padding: 8px 28px 16px;
    border-top: 1px solid color-mix(in srgb, var(--t-line) 70%, transparent);
    background: rgba(243, 239, 228, 0.96);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    border-radius: var(--t-r-3);
    color: var(--t-muted);
    font-size: 14px;
    padding: 0 10px;
  }
  .mobile-menu a:hover,
  .mobile-menu a.is-active {
    color: var(--t-ink);
    background: color-mix(in srgb, var(--t-canvas) 58%, transparent);
  }
  .mobile-menu .mobile-menu-cta {
    margin-top: 6px;
    background: var(--t-brand);
    color: var(--t-brand-ink);
    justify-content: center;
    font-weight: 500;
  }
  .mobile-menu .mobile-menu-cta:hover {
    background: var(--t-brand-deep);
    color: var(--t-brand-ink);
  }
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ============================================================================
   HERO — two-column with carousel + WPM
   ============================================================================ */
.hero {
  padding: 56px 0 84px;
  border-bottom: 1px solid var(--t-line);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: stretch;
}
.hero-copy,
.hero-wpm,
.hero-stage-panel,
.hero-stages {
  min-width: 0;
}
.hero-grid-copy-only {
  grid-template-columns: minmax(0, 760px);
}
.hero-method-visual {
  margin: 0;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-method-steps {
  width: 100%;
  max-width: 620px;
  align-self: center;
}
.method-step-drawing,
.privacy-diagram {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}
.method-flow,
.method-flow-dotted,
.method-signal-tether,
.method-output-rail,
.method-mini-icon,
.method-signal path,
.method-sheet path {
  fill: none;
  stroke: var(--t-ink);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.72;
}
.method-flow {
  stroke: var(--t-ink);
  stroke-width: 1.35;
  opacity: 0.62;
}
.method-flow-dotted,
.method-signal-tether {
  stroke-dasharray: 2 5;
  opacity: 0.42;
}
.method-signal-tether {
  opacity: 0.28;
}
.method-output-rail {
  stroke: var(--t-ink);
  stroke-dasharray: 2 5;
  opacity: 0.38;
}
.method-node-outline,
.method-scope-box,
.method-study-node,
.method-card-outline {
  fill: color-mix(in srgb, var(--t-canvas) 78%, var(--t-paper) 22%);
  stroke: var(--t-brand);
  stroke-width: 1.05;
}
.method-card-outline {
  stroke: var(--t-line-strong);
  opacity: 0.84;
}
.method-scope-box {
  stroke: var(--t-ink);
  opacity: 0.78;
}
.method-mini-icon {
  opacity: 0.58;
}
.method-dot,
.method-agent-core,
.method-sheet-green {
  fill: var(--t-brand);
}
.method-dot-gold {
  fill: var(--wt-coordination);
}
.method-dot-clay {
  fill: var(--wt-burden);
}
.method-fill-ink {
  fill: var(--t-ink);
}
.method-agent-halo {
  fill: none;
  stroke: var(--t-ink);
  stroke-width: 1.05;
  stroke-dasharray: 3 7;
  opacity: 0.42;
}
.method-agent-node rect {
  fill: var(--t-paper);
}
.method-study-band {
  fill: color-mix(in srgb, var(--t-canvas) 88%, var(--wt-execution-soft) 12%);
  stroke: var(--t-line);
  stroke-width: 1;
}
.method-week-node {
  fill: var(--t-brand);
  stroke: var(--t-brand);
  stroke-width: 1;
}
.method-week-text {
  fill: var(--t-paper);
  font-family: var(--t-font-mono);
  font-size: 9px;
  letter-spacing: 0;
  text-anchor: middle;
  dominant-baseline: central;
}
.method-week-token .method-week-text {
  fill: var(--t-brand);
}
.method-study-node {
  fill: color-mix(in srgb, var(--t-canvas) 82%, var(--t-paper) 18%);
}
.method-study-dot,
.method-sheet-soft {
  fill: var(--wt-execution);
  opacity: 0.86;
}
.method-signal circle {
  fill: var(--t-ink);
}
.method-signal circle.method-dot { fill: var(--t-brand); }
.method-signal circle.method-dot-gold { fill: var(--wt-coordination); }
.method-signal circle.method-dot-clay { fill: var(--wt-burden); }
.method-grid-signal circle:nth-of-type(1) { fill: var(--t-brand); }
.method-grid-signal circle:nth-of-type(2) { fill: var(--wt-execution); }
.method-signal-top circle:nth-of-type(1) { fill: var(--t-brand); }
.method-signal-top circle:nth-of-type(2) { fill: var(--wt-coordination); }
.method-signal-top circle:nth-of-type(3) { fill: var(--wt-burden); }
.method-dot-matrix circle {
  fill: var(--wt-execution);
  opacity: 0.64;
}
.method-dot-matrix circle:nth-of-type(3n) {
  fill: var(--wt-coordination);
}
.method-dot-matrix circle:nth-of-type(5n) {
  fill: var(--t-brand);
}
.method-dot-matrix circle:nth-of-type(7n) {
  fill: var(--wt-burden);
}
.method-sheet path:first-child {
  fill: color-mix(in srgb, var(--t-canvas) 88%, var(--t-paper) 12%);
  opacity: 1;
}

.privacy-flow,
.privacy-gate path,
.privacy-signal-tether,
.privacy-signal path,
.privacy-signal rect,
.privacy-break,
.privacy-muted-icon path,
.privacy-muted-icon rect,
.privacy-output-rail,
.privacy-output-card path,
.privacy-guardrails path {
  fill: none;
  stroke: var(--t-ink);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.privacy-flow {
  opacity: 0.62;
}
.privacy-gate path {
  stroke: var(--t-brand);
  opacity: 0.78;
}
.privacy-gate-dot {
  fill: var(--t-brand);
}
.privacy-signal-tether {
  stroke-dasharray: 2 5;
  opacity: 0.28;
}
.privacy-signal path,
.privacy-signal rect {
  opacity: 0.72;
}
.privacy-event-dots circle {
  fill: var(--t-ink);
  opacity: 0.72;
}
.privacy-event-dots circle:nth-of-type(2),
.privacy-event-dots circle:nth-of-type(7) {
  fill: var(--wt-coordination);
}
.privacy-event-dots circle:nth-of-type(4),
.privacy-event-dots circle:nth-of-type(9) {
  fill: var(--t-brand);
}
.privacy-break {
  stroke-dasharray: 2 5;
  opacity: 0.22;
}
.privacy-muted-icon path,
.privacy-muted-icon rect {
  stroke: var(--t-muted);
  opacity: 0.34;
}
.privacy-aggregate-ring {
  fill: color-mix(in srgb, var(--t-canvas) 82%, var(--t-paper) 18%);
  stroke: var(--t-brand);
  stroke-width: 1.05;
}
.privacy-suppressed {
  fill: color-mix(in srgb, var(--t-canvas) 70%, var(--t-line) 30%);
}
.privacy-output-rail {
  opacity: 0.44;
}
.privacy-output-card path:first-child {
  fill: color-mix(in srgb, var(--t-canvas) 88%, var(--t-paper) 12%);
  opacity: 1;
}
.privacy-output-card path {
  opacity: 0.72;
}
.privacy-guardrails path {
  stroke: var(--t-brand);
  opacity: 0.74;
}

/* ----- Carousel ------------------------------------------------------------ */
.hero-stage {
  display: flex; flex-direction: column;
  min-height: 540px;
  outline: none;
}
.hero-stage-top {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.hero-stage-top .rule {
  flex: 1; height: 1px; background: var(--t-line);
}
.hero-carousel-counter {
  font-family: var(--t-font-mono);
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--t-muted);
}
.hero-stage-titles {
  min-width: 136px;
  text-align: right;
}
.hero-stage-titles [data-stage-label] {
  display: none;
}
.hero-stage-titles [data-stage-label].is-active {
  display: inline;
}

.hero-stages {
  position: relative;
  flex: 1;
}
.hero-stage-panel {
  display: none;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity 460ms var(--t-ease), transform 460ms var(--t-ease), visibility 0s linear 460ms;
  pointer-events: none;
}
.hero-stage-panel.is-active {
  display: block;
  opacity: 1; visibility: visible;
  transform: translateY(0);
  transition: opacity 460ms var(--t-ease), transform 460ms var(--t-ease), visibility 0s linear 0s;
  pointer-events: auto;
}

.hero-variant {
  display: none;
}

.hero-variant.is-active {
  display: block;
}

.hero-eyebrow,
.hero-variant-eyebrow {
  font-family: var(--t-font-mono);
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--t-brand);
  font-weight: 500; margin-bottom: 22px;
}

.hero-headline {
  font-family: var(--t-font-sans);
  font-weight: 600;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.02; letter-spacing: -0.034em;
  color: var(--t-ink);
  text-wrap: balance;
  margin: 0 0 20px 0;
}
.hero-headline em {
  font-style: normal; font-weight: 600;
  color: var(--t-brand-deep);
}

.hero-sub {
  font-size: 17px; line-height: 1.5;
  letter-spacing: -0.008em;
  color: var(--t-body);
  max-width: 540px;
  margin: 0 0 28px 0;
}
.hero-sub strong { color: var(--t-ink); font-weight: 500; }

.hero-ctas {
  display: flex; gap: 10px; align-items: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero-trust {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 14px;
  background: var(--t-brand-soft);
  border-radius: var(--t-r-3);
  max-width: 540px;
  font-size: 12.5px;
  color: var(--t-ink);
  line-height: 1.45;
  margin-bottom: 16px;
}
.hero-trust .ic {
  flex-shrink: 0; width: 16px; height: 16px; margin-top: 1px;
  color: var(--t-brand);
}
.hero-trust .ic svg {
  width: 16px; height: 16px;
  stroke: currentColor; stroke-width: 1.75;
  fill: none;
}

/* Carousel controls */
.hero-controls {
  display: flex; align-items: center; gap: 10px;
  margin-top: auto; padding-top: 12px;
}
.hero-dots {
  display: flex; gap: 4px;
  flex-wrap: wrap;
}
.hero-dots button {
  min-height: 28px;
  border-radius: var(--t-r-3);
  border: 1px solid var(--t-line);
  padding: 6px 10px;
  background: transparent;
  color: var(--t-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--t-font-sans);
  font-size: 11.5px;
  line-height: 1;
  transition: background var(--t-dur), border-color var(--t-dur), color var(--t-dur);
}
.hero-dots button span {
  font-family: var(--t-font-mono);
  font-size: 9px;
  color: var(--t-subtle);
  transition: color var(--t-dur);
}
.hero-dots button.is-active {
  background: var(--t-canvas);
  border-color: var(--t-brand);
  color: var(--t-ink);
}
.hero-dots button.is-active span {
  color: var(--t-brand);
}
.hero-arrows {
  margin-left: auto;
  display: flex; gap: 4px;
}
.hero-arrows button {
  width: 28px; height: 28px;
  border: 1px solid var(--t-line);
  background: transparent; border-radius: var(--t-r-3);
  display: grid; place-items: center;
  cursor: pointer;
  color: var(--t-ink);
  transition: border-color var(--t-dur), background var(--t-dur);
}
.hero-arrows button:hover {
  border-color: var(--t-ink); background: var(--t-canvas);
}
.hero-arrows svg {
  width: 14px; height: 14px;
  stroke: currentColor; stroke-width: 1.5; fill: none;
}

/* ----- Hero WPM column ----------------------------------------------------- */
.hero-wpm {
  background: var(--t-canvas);
  border: 1px solid var(--t-line);
  border-radius: var(--t-r-4);
  padding: 24px 24px 20px;
  display: flex; flex-direction: column;
  position: relative;
  min-height: 552px;
}
.hero-wpm-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px; margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--t-line);
}
.hero-wpm-fig {
  font-family: var(--t-font-mono);
  font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-brand); font-weight: 500;
  margin-bottom: 4px;
}
.hero-wpm-legend {
  display: flex; gap: 10px 14px;
  font-family: var(--t-font-mono);
  font-size: 10.5px; color: var(--t-muted);
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: none;
}
.hero-wpm-legend span { display: inline-flex; align-items: center; gap: 5px; }
.hero-wpm-legend i {
  width: 8px; height: 8px; border-radius: 2px;
}

/* tier headers */
.hero-wpm-tiers {
  display: flex; gap: 4px;
  margin-bottom: 6px;
}
.hero-wpm-tier {
  font-family: var(--t-font-mono);
  font-size: 10.5px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--t-ink);
  font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}
.hero-wpm-tier .pct { color: var(--t-muted); font-weight: 400; }

/* The mekko itself */
.hero-wpm-mekko {
  display: flex; gap: 4px;
  height: 350px;
  flex: 0 0 350px;
  margin-bottom: 10px;
}
.hero-wpm-mekko .col {
  display: flex; flex-direction: column; gap: 3px;
  min-width: 0;
}
.hero-wpm-mekko [data-cell] {
  position: relative;
  display: flex; flex-direction: column;
  justify-content: flex-start;
  padding: 12px 14px;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  transition: opacity var(--t-dur), transform var(--t-dur), box-shadow var(--t-dur);
}
.hero-wpm-mekko [data-cell] .title {
  font-size: 12.5px; font-weight: 500;
  letter-spacing: -0.008em; line-height: 1.2;
}
.hero-wpm-mekko [data-cell] .meta {
  font-family: var(--t-font-mono);
  font-size: 10.5px; margin-top: 4px;
  opacity: 0.85;
}
.hero-wpm-mekko [data-cell].tight { padding: 8px 10px; }
.hero-wpm-mekko [data-cell].tight .title { font-size: 11px; line-height: 1.1; }
.hero-wpm-mekko [data-cell].tight .meta { font-size: 9.5px; }
.hero-wpm-mekko [data-cell].sliver { padding: 6px 8px; }
.hero-wpm-mekko [data-cell].sliver .title { font-size: 10px; line-height: 1.05; }
.hero-wpm-mekko [data-cell].sliver .meta { font-size: 9px; }

.hero-wpm-mekko [data-cell].on-dark .title,
.hero-wpm-mekko [data-cell].on-dark .meta { color: #fff; }

.hero-wpm-mekko [data-cell].is-dim { opacity: 0.42; }
.hero-wpm-mekko [data-cell]:hover,
.hero-wpm-mekko [data-cell].is-selected,
.hero-wpm-mekko [data-cell]:focus-visible {
  z-index: 2;
}

/* caption strip — updates on hover */
.hero-wpm-caption {
  font-size: 12.5px;
  color: var(--t-body);
  line-height: 1.5;
  padding-top: 10px;
  border-top: 1px solid var(--t-line);
  min-height: 34px;
}
.hero-wpm-caption strong { color: var(--t-ink); font-weight: 600; }
.hero-wpm-caption .wpm-cap-tier {
  display: inline-block;
  font-family: var(--t-font-mono);
  font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px; border-radius: 3px;
  margin-right: 8px;
}
.wpm-cap-tier--high { background: var(--wt-judgement-soft); color: var(--wt-judgement-edge); }
.wpm-cap-tier--mid  { background: var(--wt-coordination-soft); color: var(--wt-coordination-edge); }
.wpm-cap-tier--low  { background: var(--wt-burden-soft); color: var(--wt-burden-edge); }
.hero-wpm-caption .wpm-cap-route {
  font-family: var(--t-font-mono); font-size: 11px;
  color: var(--t-muted); margin-left: 8px;
}

.hero-wpm-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 12px;
  margin-top: 0;
  border-top: 1px solid var(--t-line);
}
.hero-wpm-proof-item .k {
  font-family: var(--t-font-mono);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--t-muted);
  margin-bottom: 7px;
}
.hero-wpm-proof-item .v {
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: var(--t-ink);
}

/* drill-in panel (covers the WPM card content) */
.hero-wpm-panel {
  position: absolute; inset: 0;
  z-index: 5;
  background: var(--t-canvas);
  border-radius: var(--t-r-4);
  padding: 28px 32px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity 240ms var(--t-ease), transform 240ms var(--t-ease), visibility 0s linear 240ms;
  overflow-y: auto;
}
.hero-wpm-panel.is-open {
  opacity: 1; visibility: visible;
  transform: translateY(0);
  transition: opacity 240ms var(--t-ease), transform 240ms var(--t-ease), visibility 0s linear 0s;
}
.wpm-panel-close {
  position: absolute; top: 16px; right: 16px;
  width: 28px; height: 28px;
  border: 1px solid var(--t-line);
  background: var(--t-canvas);
  border-radius: var(--t-r-3);
  font-size: 18px; line-height: 1;
  color: var(--t-muted);
  cursor: pointer;
}
.wpm-panel-close:hover { color: var(--t-ink); border-color: var(--t-ink); }
.wpm-panel-eyebrow {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px; padding-right: 40px;
}
.wpm-panel-route {
  font-family: var(--t-font-mono);
  font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-brand); font-weight: 500;
}
.wpm-panel-title {
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.022em; line-height: 1.15;
  color: var(--t-ink);
  margin: 0 0 18px 0;
}
.wpm-panel-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--t-line);
  border-bottom: 1px solid var(--t-line);
  margin-bottom: 16px;
}
.wpm-panel-lbl {
  font-family: var(--t-font-mono);
  font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-muted);
  margin-bottom: 6px;
}
.wpm-panel-val {
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.022em;
  color: var(--t-ink); font-variant-numeric: tabular-nums;
}
.wpm-panel-section { margin-bottom: 14px; }
.wpm-panel-section p {
  margin: 0; font-size: 13px;
  line-height: 1.55; color: var(--t-body);
}

/* ----- Hero outcomes band -------------------------------------------------- */
.hero-outcomes-band {
  background: var(--t-paper-2);
  border-bottom: 1px solid var(--t-line);
  padding: 32px 0;
}
.hero-outcomes-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.hero-caveat {
  margin-top: 20px;
  font-family: var(--t-font-mono);
  font-size: 11px; letter-spacing: 0.02em;
  color: var(--t-subtle);
  max-width: 720px;
}

/* ============================================================================
   Section: What Teho answers (4 questions)
   ============================================================================ */
.value-section { background: var(--t-paper); }
.value-grid {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 64px; align-items: start;
}
.value-lead { position: sticky; top: 96px; }
.value-lead .t-eyebrow { display: block; margin-bottom: 14px; }
.value-lead .t-h1 { margin-bottom: 20px; }

.value-list { border-top: 1px solid var(--t-line); }
.value-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--t-line);
  display: grid; grid-template-columns: 56px 1fr;
  gap: 20px;
}
.value-num {
  font-family: var(--t-font-mono);
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--t-brand);
  font-weight: 500; padding-top: 4px;
}
.value-text .t-h3 { margin-bottom: 8px; }
.value-text strong { color: var(--t-ink); font-weight: 500; }

/* ============================================================================
   Outcomes
   ============================================================================ */
.outcomes-section {
  background: var(--t-canvas);
  border-top: 1px solid var(--t-line);
  border-bottom: 1px solid var(--t-line);
}
.outcomes-head {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 64px; align-items: end;
  margin-bottom: 40px;
}
.outcomes-head .t-eyebrow { display: block; margin-bottom: 12px; }
.outcomes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--t-line);
  border: 1px solid var(--t-line);
  border-radius: var(--t-r-4);
  overflow: hidden;
}
.outcome-card {
  background: var(--t-canvas);
  padding: 30px 28px 28px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.outcome-index {
  font-family: var(--t-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-brand);
  font-weight: 500;
  margin-bottom: 18px;
}
.outcome-card h3 {
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.026em;
  color: var(--t-ink);
  margin: 0 0 16px 0;
}
.outcome-card p {
  font-size: 14px;
  line-height: 1.58;
  color: var(--t-muted);
  margin: 0 0 22px 0;
}
.outcome-card ul {
  list-style: none;
  padding: 0;
  margin: auto 0 0 0;
  border-top: 1px solid var(--t-line);
}
.outcome-card li {
  position: relative;
  padding: 10px 0 10px 18px;
  border-bottom: 1px solid var(--t-line);
  font-size: 13px;
  line-height: 1.42;
  color: var(--t-body);
}
.outcome-card li:last-child { border-bottom: none; }
.outcome-card li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--t-brand);
}
/* ============================================================================
   Work Mix
   ============================================================================ */
.workmix-section {
  background: var(--t-canvas);
  border-top: 1px solid var(--t-line);
  border-bottom: 1px solid var(--t-line);
}
.workmix-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: end; margin-bottom: 40px;
}
.wm-fig-label {
  font-family: var(--t-font-mono);
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--t-muted);
  margin-bottom: 14px;
}
.wm-bar {
  height: 80px; display: flex;
  border-radius: var(--t-r-2);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--t-line);
}
.wm-segment {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 14px 16px;
}
.wm-segment .pct {
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.028em; line-height: 1;
}
.wm-segment .lbl {
  font-family: var(--t-font-mono);
  font-size: 10px; letter-spacing: 0.06em;
  text-transform: uppercase; line-height: 1.2;
}
.wm-legend-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.wm-legend-cell { padding: 14px 0; border-top: 1px solid var(--t-line); }
.wm-legend-swatch { width: 100%; height: 3px; margin-bottom: 12px; }
.wm-legend-cell .name { font-size: 13px; font-weight: 500; color: var(--t-ink); margin-bottom: 4px; }
.wm-legend-cell .posture { font-family: var(--t-font-mono); font-size: 11px; color: var(--t-muted); }

/* ============================================================================
   The Case for Teho — compressed dark section
   ============================================================================ */
.case-section {
  background: var(--t-ink); color: var(--t-paper);
  position: relative;
}
.case-section .t-eyebrow { color: var(--wt-execution); }
.case-section .t-h1, .case-section .t-h2 { color: var(--t-paper); }
.case-section .t-body { color: rgba(243, 239, 228, 0.78); }
.case-section .t-lede { color: rgba(243, 239, 228, 0.78); }

.case-grid {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 56px; align-items: start;
  margin-bottom: 64px;
}
.case-quote {
  border-left: 2px solid var(--wt-execution);
  padding: 4px 0 4px 22px;
}
.case-quote .t-eyebrow { display: block; margin-bottom: 12px; }
.case-quote .body {
  font-family: var(--t-font-sans);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.4; letter-spacing: -0.018em;
  color: var(--t-paper); font-weight: 400;
  margin: 0 0 12px 0;
}
.case-quote .attr {
  font-family: var(--t-font-mono);
  font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(243, 239, 228, 0.55);
}
.case-thesis .t-eyebrow { display: block; margin-bottom: 12px; }
.case-thesis .t-h1 { margin-bottom: 20px; }
.case-thesis .t-body {
  font-size: 15px; line-height: 1.65;
  margin-bottom: 16px;
}
.case-thesis .pull {
  border-top: 1px solid rgba(243, 239, 228, 0.2);
  border-bottom: 1px solid rgba(243, 239, 228, 0.2);
  padding: 22px 0; margin: 28px 0;
  font-family: var(--t-font-sans);
  font-weight: 500; font-size: 19px;
  line-height: 1.4; letter-spacing: -0.012em;
  color: var(--t-paper);
}
.case-thesis .thesis-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 4px; font-size: 13px;
  color: var(--wt-execution); font-weight: 500;
  border-bottom: 1px solid rgba(107, 162, 126, 0.3);
  padding-bottom: 2px;
}
.case-thesis .thesis-link:hover { border-color: var(--wt-execution); }

/* When-Teho-helps panels */
.case-when-head {
  display: flex; align-items: end; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  margin-bottom: 28px; padding-bottom: 22px;
  border-bottom: 1px solid rgba(243, 239, 228, 0.2);
}
.case-when-head .t-h2 { max-width: 600px; }
.case-when-head .lede {
  font-size: 14px; color: rgba(243, 239, 228, 0.65);
  max-width: 360px;
}
.case-when-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(243, 239, 228, 0.15);
  border: 1px solid rgba(243, 239, 228, 0.15);
}
.case-when-panel { padding: 32px 28px; background: var(--t-ink); }
.case-when-panel .label {
  font-family: var(--t-font-mono);
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--wt-execution);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.case-when-panel .label::before {
  content: ""; width: 24px; height: 1px;
  background: var(--wt-execution);
}
.case-when-panel .question {
  font-family: var(--t-font-sans);
  font-weight: 600;
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.12; letter-spacing: -0.022em;
  color: var(--t-paper); margin: 0 0 16px 0;
}
.case-when-panel .body {
  font-size: 13.5px; line-height: 1.6;
  color: rgba(243, 239, 228, 0.72); margin-bottom: 20px;
}
.case-when-panel ul { list-style: none; padding: 0; margin: 0; }
.case-when-panel ul li {
  font-size: 13px; padding: 9px 0 9px 16px;
  border-top: 1px solid rgba(243, 239, 228, 0.15);
  color: var(--t-paper); position: relative;
  line-height: 1.4;
}
.case-when-panel ul li::before {
  content: "—"; position: absolute; left: 0;
  color: var(--wt-execution);
}


/* ============================================================================
   Sample readout
   ============================================================================ */
.sample-section {
  background: var(--t-paper-2);
  border-bottom: 1px solid var(--t-line);
}
.sample-intro {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(220px, 300px);
  gap: 40px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 46px;
}
.sample-intro-copy { min-width: 0; }
.sample-intro .t-eyebrow { display: block; margin-bottom: 12px; }
.sample-intro .t-h1 { margin-bottom: 18px; }
.sample-pack-cta {
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
}
.sample-pack {
  background: var(--t-canvas);
  border: 1px solid var(--t-line);
  border-radius: var(--t-r-4);
  overflow: hidden;
}
.sample-pack-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
  gap: 28px;
  padding: 28px;
  border-bottom: 1px solid var(--t-line);
  background: linear-gradient(180deg, var(--t-canvas), color-mix(in srgb, var(--t-canvas) 86%, var(--t-paper-2)));
}
.sample-pack-kicker,
.sample-label,
.sample-route {
  font-family: var(--t-font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.sample-pack-kicker {
  color: var(--t-brand);
  margin-bottom: 12px;
}
.sample-pack-top h3 {
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--t-ink);
  margin: 0 0 12px 0;
}
.sample-pack-top p {
  margin: 0;
  max-width: 54ch;
  color: var(--t-muted);
  font-size: 14px;
  line-height: 1.55;
}
.sample-question {
  border-left: 1px solid var(--t-line);
  padding-left: 22px;
}
.sample-label { color: var(--t-muted); margin-bottom: 8px; }
.sample-readout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 1px;
  background: var(--t-line);
  border-bottom: 1px solid var(--t-line);
}
.sample-big-stat,
.sample-conclusions {
  background: var(--t-canvas);
  padding: 28px;
}
.sample-stat-value {
  margin: 10px 0 14px;
  color: var(--t-ink);
  font-size: clamp(48px, 6.2vw, 78px);
  line-height: .92;
  letter-spacing: -0.058em;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}
.sample-big-stat p,
.sample-conclusions li,
.sample-metrics p,
.sample-insight-card p,
.sample-hotspot p {
  color: var(--t-muted);
  font-size: 13.5px;
  line-height: 1.52;
}
.sample-conclusions ol {
  margin: 14px 0 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}
.sample-conclusions li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding-top: 13px;
  border-top: 1px solid var(--t-line);
}
.sample-conclusions li:first-child {
  padding-top: 0;
  border-top: none;
}
.sample-conclusions li span {
  font-family: var(--t-font-mono);
  font-size: 11px;
  color: var(--t-brand);
  padding-top: 3px;
}
.sample-conclusions li div {
  min-width: 0;
}
.sample-conclusions li strong {
  color: var(--t-ink);
  font-weight: 600;
}
.sample-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--t-line);
  border-bottom: 1px solid var(--t-line);
}
.sample-metrics > div {
  background: var(--t-canvas);
  padding: 20px;
}
.sample-metric-value {
  margin: 8px 0;
  color: var(--t-ink);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}
.sample-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 1px;
  background: var(--t-line);
  border-bottom: 1px solid var(--t-line);
}
.sample-map-card,
.sample-insight-card {
  background: var(--t-canvas);
  padding: 24px;
}
.sample-map-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  margin-bottom: 14px;
}
.sample-map-head h4 {
  margin: 0;
  color: var(--t-ink);
  font-size: 19px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.sample-map-head span {
  font-family: var(--t-font-mono);
  font-size: 11px;
  color: var(--t-muted);
  text-align: right;
}
.sample-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--t-line);
  color: var(--t-muted);
  font-family: var(--t-font-mono);
  font-size: 10.5px;
}
.sample-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sample-legend i {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 2px;
}
.sample-map-tiers {
  display: grid;
  grid-template-columns: 52fr 40fr 8fr;
  gap: 5px;
  margin-bottom: 5px;
}
.sample-map-tiers span {
  min-width: 0;
  padding: 7px 9px;
  background: var(--t-paper-2);
  color: var(--t-muted);
  font-family: var(--t-font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}
.sample-map-tiers strong {
  color: var(--t-ink);
  font-weight: 600;
}
.sample-mekko {
  height: 285px;
  display: flex;
  gap: 5px;
  background: var(--t-line);
  border: 1px solid var(--t-line);
  overflow: hidden;
}
.sample-mekko-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sample-mekko-col > div {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 14px;
  color: var(--t-ink);
  overflow: hidden;
}
.sample-mekko-col > div.on-dark,
.sample-mekko-col > div.on-dark .title,
.sample-mekko-col > div.on-dark .meta {
  color: #fff;
}
.sample-mekko-col > div.tight {
  padding: 9px 10px;
}
.sample-mekko-col .title {
  display: block;
  font-size: 13px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 600;
}
.sample-mekko-col .meta {
  display: block;
  margin-top: 10px;
  font-family: var(--t-font-mono);
  font-size: 10.5px;
  line-height: 1.15;
  color: color-mix(in srgb, currentColor 78%, transparent);
}
.sample-mekko-col > .light {
  color: color-mix(in srgb, var(--t-ink) 78%, transparent);
}
.sample-mekko-col > .hot {
  box-shadow: none;
}
.sample-map-note {
  margin-top: 10px;
  font-family: var(--t-font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--t-muted);
  line-height: 1.25;
  text-align: right;
}
.sample-insight-card {
  display: grid;
  align-content: start;
  gap: 22px;
}
.sample-insight-line {
  padding: 20px 0;
  border-top: 1px solid var(--t-line);
  border-bottom: 1px solid var(--t-line);
}
.sample-insight-value {
  margin: 8px 0;
  color: var(--t-ink);
  font-size: 48px;
  line-height: .9;
  letter-spacing: -0.05em;
  font-weight: 650;
}
.sample-hotspot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--t-line);
}
.sample-hotspot {
  background: var(--t-canvas);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sample-hotspot-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}
.sample-hotspot h4 {
  margin: 0;
  color: var(--t-ink);
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.sample-hotspot-top span {
  border: 1px solid color-mix(in srgb, var(--t-brand) 35%, var(--t-line));
  border-radius: 999px;
  background: var(--t-brand-soft);
  color: var(--t-brand-deep);
  padding: 4px 8px;
  font-family: var(--t-font-mono);
  font-size: 10.5px;
  white-space: nowrap;
}
.sample-hotspot-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--t-line);
  border-bottom: 1px solid var(--t-line);
}
.sample-hotspot-values strong {
  color: var(--t-ink);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}
.sample-route {
  margin-top: auto;
  color: var(--t-brand-deep);
}
.sample-foot {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--t-muted);
  font-size: 12.5px;
  line-height: 1.5;
  font-family: var(--t-font-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
/* ============================================================================
   Anti-features
   ============================================================================ */
.antifeatures-section { background: var(--t-paper); }
.antifeatures-head {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 64px; margin-bottom: 40px; align-items: end;
}
.antifeatures-head .t-eyebrow { display: block; margin-bottom: 12px; }
.antifeatures-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--t-line);
  border: 1px solid var(--t-line);
  border-radius: var(--t-r-4);
  overflow: hidden;
}
.antifeature {
  background: var(--t-canvas);
  padding: 22px 26px;
  display: flex; gap: 16px;
}
.antifeature-mark {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1px solid var(--wt-burden);
  border-radius: 50%;
  margin-top: 2px;
  position: relative;
}
.antifeature-mark::before, .antifeature-mark::after {
  content: ""; position: absolute;
  top: 50%; left: 50%;
  width: 11px; height: 1.4px;
  background: var(--wt-burden);
}
.antifeature-mark::before { transform: translate(-50%, -50%) rotate(45deg); }
.antifeature-mark::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.antifeature-content .title { font-size: 14px; font-weight: 600; color: var(--t-ink); letter-spacing: -0.01em; margin-bottom: 6px; line-height: 1.25; }
.antifeature-content .desc { font-size: 13px; color: var(--t-muted); line-height: 1.55; }
.antifeatures-foot {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--t-line);
  font-size: 14px; color: var(--t-muted); line-height: 1.6;
  max-width: 820px;
}


/* ============================================================================
   Opportunity routes
   ============================================================================ */
.opp-section {
  background: var(--t-canvas);
  border-top: 1px solid var(--t-line);
  border-bottom: 1px solid var(--t-line);
}
.opp-intro { margin-bottom: 48px; max-width: 760px; }
.opp-intro .t-eyebrow { display: block; margin-bottom: 12px; }
.opp-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--t-line);
  border: 1px solid var(--t-line);
  border-radius: var(--t-r-3);
  overflow: hidden;
}
.opp-route {
  background: var(--t-canvas);
  padding: 28px 20px; min-height: 240px;
  display: flex; flex-direction: column;
  position: relative;
}
.opp-route .accent-bar { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.opp-route[data-route="stop"] .accent-bar { background: var(--wt-burden); }
.opp-route[data-route="simplify"] .accent-bar { background: var(--wt-overhead); }
.opp-route[data-route="automate"] .accent-bar { background: var(--wt-coordination); }
.opp-route[data-route="ai"] .accent-bar { background: var(--wt-execution); }
.opp-route[data-route="keep"] .accent-bar { background: var(--wt-judgement); }
.opp-route .num {
  font-family: var(--t-font-mono);
  font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--t-muted);
  margin-bottom: 14px; padding-top: 6px;
}
.opp-route .name {
  font-size: 19px; font-weight: 600;
  letter-spacing: -0.018em; line-height: 1.15;
  color: var(--t-ink); margin-bottom: 12px;
}
.opp-route .desc {
  font-size: 13px; color: var(--t-muted); line-height: 1.5;
  flex-grow: 1;
}
.opp-route .eg {
  font-family: var(--t-font-mono);
  font-size: 11px; color: var(--t-subtle);
  margin-top: 16px; padding-top: 12px;
  border-top: 1px solid var(--t-line);
  line-height: 1.5;
}
.opp-foot { margin-top: 28px; font-size: 14px; color: var(--t-muted); line-height: 1.6; max-width: 860px; }


/* ============================================================================
   How it works (dark)
   ============================================================================ */
.how { background: var(--t-ink); color: var(--t-paper); }
.how .t-eyebrow { color: var(--wt-execution); }
.how .t-h1 { color: var(--t-paper); margin-bottom: 18px; }
.how .t-lede { color: rgba(243, 239, 228, 0.72); }
.how-intro { max-width: 760px; margin-bottom: 56px; }
.how-intro .t-eyebrow { display: block; margin-bottom: 12px; }
.how-steps { display: grid; gap: 0; }
.how-step {
  display: grid; grid-template-columns: 80px 1fr 1.2fr;
  gap: 50px; padding: 28px 0;
  border-top: 1px solid rgba(243, 239, 228, 0.15);
  align-items: start;
}
.how-step:last-child { border-bottom: 1px solid rgba(243, 239, 228, 0.15); }
.how-step .num {
  font-family: var(--t-font-mono);
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--wt-execution); font-weight: 500;
  padding-top: 4px;
}
.how-step .head {
  font-size: 21px; font-weight: 600;
  letter-spacing: -0.022em; line-height: 1.2;
  color: var(--t-paper);
}
.how-step .body {
  font-size: 14px; line-height: 1.6;
  color: rgba(243, 239, 228, 0.72);
}

/* ============================================================================
   Comparison
   ============================================================================ */
.compare-section { background: var(--t-paper); }
.compare-intro { margin-bottom: 48px; max-width: 820px; }
.compare-intro .t-eyebrow { display: block; margin-bottom: 12px; }
.compare-table-wrap {
  background: var(--t-canvas);
  border: 1px solid var(--t-line);
  border-radius: var(--t-r-4);
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%; min-width: 640px; border-collapse: collapse;
  font-family: var(--t-font-sans);
  font-size: 13.5px;
}
.compare-table thead th {
  text-align: left;
  font-family: var(--t-font-mono);
  font-weight: 500; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--t-muted);
  padding: 16px 20px;
  border-bottom: 1px solid var(--t-line);
  background: var(--t-paper-2);
  vertical-align: bottom;
}
.compare-table thead th:first-child { width: 22%; }
.compare-table thead th:nth-child(5) {
  background: var(--t-brand-soft);
  color: var(--t-brand-deep);
}
.compare-table tbody tr { border-bottom: 1px solid var(--t-line); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table td {
  padding: 18px 20px; vertical-align: top;
  line-height: 1.55; color: var(--t-muted);
}
.compare-table td:first-child {
  font-weight: 600; font-size: 14px;
  color: var(--t-ink); letter-spacing: -0.012em;
  background: var(--t-paper-2);
  border-right: 1px solid var(--t-line);
}
.compare-table td:last-child {
  background: rgba(31, 122, 97, 0.04);
  border-left: 1px solid var(--t-brand-soft);
  color: var(--t-body);
}
.compare-table td:last-child strong { color: var(--t-brand-deep); font-weight: 600; }
.compare-foot {
  margin-top: 28px; font-size: 14px;
  color: var(--t-muted); line-height: 1.6;
  max-width: 800px;
}
.compare-foot strong { color: var(--t-ink); font-weight: 500; }


/* ============================================================================
   Offers
   ============================================================================ */
.offers-section {
  background: var(--t-canvas);
  border-top: 1px solid var(--t-line);
  border-bottom: 1px solid var(--t-line);
}
.offers-intro { max-width: 760px; margin-bottom: 48px; }
.offers-intro .t-eyebrow { display: block; margin-bottom: 12px; }
.offers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.offer {
  background: var(--t-canvas);
  border: 1px solid var(--t-line);
  border-radius: var(--t-r-4);
  padding: 32px;
  display: flex; flex-direction: column;
  transition: border-color var(--t-dur), transform var(--t-dur);
}
.offer:hover { border-color: var(--t-line-2); transform: translateY(-1px); }
.offer.primary {
  background: var(--t-ink); color: var(--t-paper);
  border-color: var(--t-ink);
}
.offer.primary .mark { color: var(--wt-execution); }
.offer.primary .name { color: var(--t-paper); }
.offer.primary .tag { color: rgba(243, 239, 228, 0.72); border-bottom-color: rgba(243, 239, 228, 0.18); }
.offer.primary .meta-label { color: rgba(243, 239, 228, 0.5); }
.offer.primary .meta-value { color: var(--t-paper); }
.offer.primary .feature { border-top-color: rgba(243, 239, 228, 0.15); color: var(--t-paper); }
.offer.primary .feature::before { color: var(--wt-execution); }
.offer.primary .offer-cta { color: var(--wt-execution); }
.offer .mark {
  font-family: var(--t-font-mono);
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--t-brand);
  font-weight: 500; margin-bottom: 14px;
}
.offer .name {
  font-size: 26px; font-weight: 600;
  letter-spacing: -0.026em; line-height: 1.05;
  color: var(--t-ink); margin-bottom: 14px;
}
.offer .tag {
  font-size: 14px; line-height: 1.55;
  color: var(--t-muted);
  margin-bottom: 24px; padding-bottom: 22px;
  border-bottom: 1px solid var(--t-line);
}
.offer .meta { display: flex; gap: 32px; margin-bottom: 24px; }
.offer .meta-item { flex: 1; }
.offer .meta-label {
  font-family: var(--t-font-mono);
  font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--t-muted);
  margin-bottom: 6px; font-weight: 500;
}
.offer .meta-value { font-size: 14px; font-weight: 500; color: var(--t-ink); }
.offer ul { list-style: none; padding: 0; margin: 0 0 24px 0; flex-grow: 1; }
.offer .feature {
  padding: 10px 0 10px 22px;
  border-top: 1px solid var(--t-line);
  font-size: 13.5px; color: var(--t-body); line-height: 1.45;
  position: relative;
}
.offer .feature::before {
  content: "→"; position: absolute; left: 0;
  color: var(--t-brand); font-size: 13px;
}
.offer-cta {
  font-size: 13.5px; font-weight: 500; color: var(--t-brand);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap var(--t-dur);
}
.offer-cta:hover { gap: 14px; }

/* ============================================================================
   Trust + Team view (paired)
   ============================================================================ */
.trust-section { background: var(--t-paper); border-top: 1px solid var(--t-line); }
.trust-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: start; }
.trust-lead { position: sticky; top: 96px; }
.trust-lead .t-eyebrow { display: block; margin-bottom: 12px; }
.trust-lead .t-h1 { margin-bottom: 22px; }
.trust-agent-note {
  margin: 24px 0 28px;
  padding: 18px 20px;
  background: var(--t-bg-elev, #fafaf7);
  border-left: 2px solid var(--t-brand);
  border-radius: 2px;
}
.trust-agent-label {
  display: block;
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--t-brand-deep);
  margin-bottom: 8px;
}
.trust-agent-note p {
  font-size: 14px; line-height: 1.55;
  color: var(--t-ink);
  margin: 0;
}
.trust-agent-note strong { color: var(--t-ink); font-weight: 500; }
.trust-quote {
  font-size: 20px; line-height: 1.3;
  letter-spacing: -0.016em;
  color: var(--t-ink); font-weight: 500;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--t-line);
}
.trust-quote strong { color: var(--t-brand-deep); }
.trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 8px;
}
.trust-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px;
  color: var(--t-brand); font-weight: 500;
}
.principles { border-top: 1px solid var(--t-line); }
.principle {
  padding: 22px 0;
  border-bottom: 1px solid var(--t-line);
  display: grid; grid-template-columns: 56px 1fr;
  gap: 16px; align-items: start;
}
.principle .num {
  font-family: var(--t-font-mono);
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--t-brand);
  font-weight: 500; padding-top: 4px;
}
.principle .head {
  font-size: 16px; font-weight: 600;
  letter-spacing: -0.012em; line-height: 1.25;
  color: var(--t-ink); margin-bottom: 6px;
}
.principle .body { font-size: 13.5px; color: var(--t-muted); line-height: 1.6; }

/* Team view (now part of trust pairing) */
.team-view-section {
  background: var(--t-paper-2);
  border-top: 1px solid var(--t-line);
  border-bottom: 1px solid var(--t-line);
}
.team-view-intro { max-width: 760px; margin-bottom: 48px; }
.team-view-intro .t-eyebrow { display: block; margin-bottom: 12px; }
/* Signal contract grid — sees / doesn't see */
.signal-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--t-line);
  background: var(--t-canvas);
}
.signal-col { padding: 28px 28px 24px; }
.signal-col + .signal-col { border-left: 1px solid var(--t-line); }
.signal-sees { background: var(--t-canvas); }
.signal-doesnt { background: var(--t-paper); }
.signal-col-head {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--t-line);
}
.signal-mark {
  font-family: var(--t-font-mono);
  font-size: 16px; font-weight: 500;
  line-height: 1;
}
.signal-sees .signal-mark { color: var(--t-brand); }
.signal-doesnt .signal-mark { color: var(--t-muted); }
.signal-label {
  font-family: var(--t-font-mono);
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t-ink);
  font-weight: 500;
}
.signal-col ul { list-style: none; padding: 0; margin: 0; }
.signal-col li {
  font-size: 14px; line-height: 1.55;
  color: var(--t-muted);
  padding: 12px 0;
  border-bottom: 1px dashed var(--t-line);
}
.signal-col li:last-child { border-bottom: none; padding-bottom: 0; }
.signal-col li strong { color: var(--t-ink); font-weight: 500; }
.signal-doesnt li strong { color: var(--t-brand-deep); }
.team-script {
  margin-top: 32px;
  background: var(--t-canvas);
  border: 1px solid var(--t-line);
  border-left: 3px solid var(--t-brand);
  border-radius: var(--t-r-3);
  padding: 24px 28px;
}
.team-script .label {
  font-family: var(--t-font-mono);
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--t-brand);
  font-weight: 500; margin-bottom: 12px;
}
.team-script .body {
  font-size: 15.5px; line-height: 1.5;
  color: var(--t-ink); letter-spacing: -0.008em;
}
.team-script .body strong { color: var(--t-brand-deep); font-weight: 600; }


/* ============================================================================
   FAQ
   ============================================================================ */
.faq-section { background: var(--t-canvas); border-top: 1px solid var(--t-line); }
.faq-intro { max-width: 760px; margin-bottom: 40px; }
.faq-intro .t-eyebrow { display: block; margin-bottom: 12px; }
.faq-list { border-top: 1px solid var(--t-line-2); }
.faq-item { border-bottom: 1px solid var(--t-line-2); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  font-size: 17px; font-weight: 500;
  letter-spacing: -0.012em; line-height: 1.3;
  color: var(--t-ink);
  transition: color var(--t-dur);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--t-brand); }
.faq-item summary::after {
  content: "+"; flex-shrink: 0;
  font-family: var(--t-font-mono);
  font-size: 22px; line-height: 1;
  color: var(--t-brand); font-weight: 400;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item-body { padding: 0 0 26px 0; max-width: 820px; }
.faq-item-body p {
  font-size: 14.5px; line-height: 1.62;
  color: var(--t-muted); margin: 0 0 12px 0;
}
.faq-item-body p:last-child { margin-bottom: 0; }
.faq-item-body strong { color: var(--t-ink); font-weight: 500; }
.faq-item-body a {
  color: var(--t-brand);
  font-weight: 500;
}
.faq-item-body a:hover { color: var(--t-brand-deep); }

/* ============================================================================
   Final CTA
   ============================================================================ */
.final-cta-section { background: var(--t-ink); color: var(--t-paper); }
.final-cta-inner {
  display: grid; grid-template-columns: 3fr 2fr;
  gap: 64px; align-items: end;
}
.final-cta-left .t-eyebrow { color: var(--wt-execution); display: block; margin-bottom: 12px; }
.final-cta-left .t-display {
  color: var(--t-paper); margin: 0 0 22px 0;
  max-width: 600px;
}
.final-cta-left .lede {
  font-size: 16px; line-height: 1.55;
  color: rgba(243, 239, 228, 0.72);
  max-width: 520px; margin: 0;
}
.final-cta-right { display: flex; flex-direction: column; gap: 12px; }
.final-cta-section .t-btn-primary { background: var(--wt-execution); color: var(--t-ink); }
.final-cta-section .t-btn-primary:hover { background: #84B493; }
.final-cta-section .t-btn-ghost { color: var(--t-paper); border-color: rgba(243, 239, 228, 0.3); }
.final-cta-section .t-btn-ghost:hover { border-color: var(--t-paper); }
.final-cta-tagline {
  margin-top: 56px;
  font-family: var(--t-font-sans);
  font-weight: 600;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.028em;
  color: var(--wt-execution);
}

/* ============================================================================
   FOOTER
   ============================================================================ */
footer.site-footer {
  background: var(--t-ink);
  color: rgba(243, 239, 228, 0.72);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(243, 239, 228, 0.15);
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr repeat(4, minmax(0, 1fr));
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(243, 239, 228, 0.12);
}
.footer-brand-block .footer-brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--t-paper); font-weight: 600;
  font-size: 17px; letter-spacing: -0.014em;
  margin-bottom: 18px;
}
.footer-positioning {
  font-size: 13.5px; line-height: 1.5;
  color: rgba(243, 239, 228, 0.62);
  max-width: 320px; margin: 0 0 22px 0;
}
.footer-business {
  font-family: var(--t-font-mono);
  font-size: 11px; line-height: 1.7;
  color: rgba(243, 239, 228, 0.45);
  letter-spacing: 0.01em;
}
.footer-business a { color: rgba(243, 239, 228, 0.65); }
.footer-business a:hover { color: var(--t-paper); }

.footer-col-title {
  font-family: var(--t-font-mono);
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243, 239, 228, 0.45);
  font-weight: 500;
  margin: 0 0 16px 0;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 13.5px;
  color: rgba(243, 239, 228, 0.78);
  transition: color var(--t-dur);
}
.footer-col a:hover { color: var(--t-paper); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  margin-top: 24px;
}
.footer-bottom-left {
  font-family: var(--t-font-mono);
  font-size: 11px; letter-spacing: 0.04em;
  color: rgba(243, 239, 228, 0.4);
}
.footer-social {
  display: flex; gap: 14px;
}
.footer-social a {
  font-family: var(--t-font-mono);
  font-size: 11px; letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(243, 239, 228, 0.55);
  border: 1px solid rgba(243, 239, 228, 0.15);
  padding: 6px 12px; border-radius: var(--t-r-3);
  transition: color var(--t-dur), border-color var(--t-dur);
}
.footer-social a:hover { color: var(--t-paper); border-color: rgba(243, 239, 228, 0.35); }

/* ============================================================================
   Tweaks panel
   ============================================================================ */
.teho-tweaks-panel {
  position: fixed; bottom: 24px; right: 24px;
  width: 320px; max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--t-canvas);
  border: 1px solid var(--t-line-2);
  border-radius: var(--t-r-4);
  box-shadow: 0 16px 40px -16px rgba(0,0,0,0.25), 0 0 0 1px rgba(0,0,0,0.05);
  z-index: 200;
  opacity: 0; transform: translateY(8px);
  transition: opacity 200ms var(--t-ease), transform 200ms var(--t-ease);
  font-family: var(--t-font-sans);
  color: var(--t-body);
}
.teho-tweaks-panel.is-open { opacity: 1; transform: translateY(0); }
.ttp-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--t-line);
  font-size: 13px;
  color: var(--t-ink);
}
.ttp-close {
  border: 0; background: transparent;
  font-size: 18px; line-height: 1;
  color: var(--t-muted); cursor: pointer;
  padding: 0 4px;
}
.ttp-close:hover { color: var(--t-ink); }
.ttp-section {
  padding: 16px 18px;
  border-bottom: 1px solid var(--t-line);
}
.ttp-section:last-child { border-bottom: 0; }
.ttp-label {
  font-family: var(--t-font-mono);
  font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-ink); font-weight: 500;
  margin-bottom: 6px;
}
.ttp-help {
  font-size: 12px; color: var(--t-muted); line-height: 1.45;
  margin-bottom: 12px;
}
.ttp-help code {
  font-family: var(--t-font-mono); font-size: 11.5px;
  background: var(--t-paper-2); padding: 1px 5px;
  border-radius: 3px; color: var(--t-ink);
}
.ttp-segmented {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.ttp-segmented--col {
  grid-template-columns: 1fr;
}
.ttp-segmented button {
  border: 1px solid var(--t-line);
  background: var(--t-canvas-2);
  padding: 8px 10px;
  font-size: 12px; font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--t-body);
  border-radius: var(--t-r-3);
  text-align: left;
  cursor: pointer;
  transition: border-color var(--t-dur), background var(--t-dur), color var(--t-dur);
}
.ttp-segmented button:hover { border-color: var(--t-ink); }
.ttp-segmented button.is-active {
  background: var(--t-ink); color: var(--t-paper);
  border-color: var(--t-ink);
}
.ttp-action {
  margin-top: 10px; width: 100%;
  border: 1px solid var(--t-line);
  background: var(--t-canvas-2);
  padding: 8px 12px;
  font-size: 12.5px; font-weight: 500;
  color: var(--t-ink);
  border-radius: var(--t-r-3);
  cursor: pointer;
}
.ttp-action:hover { border-color: var(--t-ink); }
.ttp-link-row { display: flex; gap: 6px; }
.ttp-link-row a {
  flex: 1; text-align: center;
  font-family: var(--t-font-mono);
  font-size: 12px;
  padding: 8px 0; border: 1px solid var(--t-line);
  border-radius: var(--t-r-3);
  color: var(--t-ink); background: var(--t-canvas-2);
}
.ttp-link-row a:hover { border-color: var(--t-ink); background: var(--t-paper); }

/* ============================================================================
   Print
   ============================================================================ */
@media print {
  nav.site-nav, .teho-tweaks-panel,
  .hero-arrows, .hero-dots,
  .hero-wpm-panel { display: none !important; }
  body { background: #fff; color: #000; }
  section { padding: 24pt 0; break-inside: avoid; }
  .hero-grid { grid-template-columns: 1fr; gap: 24pt; }
}

/* ============================================================================
   Responsive
   ============================================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-stage { min-height: 0; }
  .hero-method-visual { min-height: 280px; }
  .hero-wpm { padding: 18px 18px 16px; }
  .hero-outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr; gap: 40px; }
  .value-lead { position: static; }
  .outcomes-head { grid-template-columns: 1fr; gap: 24px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome-card { min-height: 0; }
  .workmix-head { grid-template-columns: 1fr; gap: 24px; }
  .wm-legend-grid { grid-template-columns: repeat(2, 1fr); }
  .sample-intro { grid-template-columns: 1fr; gap: 22px; }
  .sample-pack-cta { justify-self: start; }
  .sample-pack-top,
  .sample-readout-grid,
  .sample-profile-grid { grid-template-columns: 1fr; }
  .sample-question {
    border-left: none;
    border-top: 1px solid var(--t-line);
    padding-left: 0;
    padding-top: 18px;
  }
  .sample-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sample-hotspot-grid { grid-template-columns: 1fr; }
  .opp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offers-grid { grid-template-columns: 1fr; }
  .team-timeline { grid-template-columns: 1fr 1fr; }
  .timeline-step:nth-child(2) { border-right: none; }
  .timeline-step:nth-child(-n+2) { border-bottom: 1px solid var(--t-line); }
  .signal-col + .signal-col { border-left: none; border-top: 1px solid var(--t-line); }
  .trust-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-lead { position: static; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .how-step { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .container { padding: 0 22px; }
  section, .hero { padding: 56px 0; }
  .hero { padding: 32px 0 56px; }
  .hero-headline { font-size: clamp(32px, 8vw, 44px); }
  .hero-method-visual { min-height: 220px; }
  .hero-outcomes-grid { grid-template-columns: 1fr; }
  .hero-wpm-mekko { height: auto; min-height: 320px; flex-direction: column; }
  .hero-wpm-mekko .col { flex-direction: row !important; min-height: 80px; }
  .hero-wpm-tiers { flex-direction: column; gap: 4px; margin-bottom: 8px; }
  .hero-wpm-proof { grid-template-columns: 1fr; gap: 12px; }
  .hero-wpm-proof-item .v { font-size: 30px; }
  .hero-controls { flex-wrap: wrap; }
  .outcome-card { padding: 24px 22px; }
  .sample-pack-cta { width: 100%; }
  .sample-pack-top,
  .sample-big-stat,
  .sample-conclusions,
  .sample-map-card,
  .sample-insight-card,
  .sample-hotspot { padding: 22px; }
  .sample-stat-value { font-size: 40px; }
  .sample-metrics { grid-template-columns: 1fr; }
  .sample-map-head { grid-template-columns: 1fr; }
  .sample-map-head span { text-align: left; }
  .sample-map-tiers { grid-template-columns: 1fr; }
  .sample-mekko { height: auto; min-height: 360px; flex-direction: column; }
  .sample-mekko-col { flex-direction: row; min-height: 92px; }
  .sample-mekko-col > div { min-width: 0; padding: 8px; }
  .sample-mekko-col .title { font-size: 10.5px; }
  .sample-mekko-col .meta { font-size: 9px; }
  .sample-map-note { text-align: left; }
  .sample-hotspot-values { grid-template-columns: 1fr; }
  .wm-bar {
    height: auto;
    flex-direction: column;
  }
  .wm-segment {
    min-height: 58px;
  }
  .case-grid,
  .antifeatures-head,
  .antifeatures-grid {
    grid-template-columns: 1fr;
  }
  .case-grid {
    gap: 32px;
    margin-bottom: 40px;
  }
  .opp-grid { grid-template-columns: 1fr; }
  .opp-route { min-height: 0; padding: 24px 20px; }
  .opp-route .desc { flex-grow: 0; }
  .team-timeline { grid-template-columns: 1fr; }
  .timeline-step { border-right: none; border-bottom: 1px solid var(--t-line); }
  .timeline-step:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .teho-tweaks-panel { right: 12px; left: 12px; bottom: 12px; width: auto; }
}
