@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600;8..60,700&display=swap");

:root {
  --ink: #071011;
  --alpine: #062e2a;
  --evergreen: #174c43;
  --glacier: #f6f7f4;
  --paper: #ffffff;
  --stone: #e7e0d4;
  --zinc: #8f9691;
  --copper: #b07a4a;
  --cyan: #00c6e8;
  --coral: #d95d49;
  --line: rgba(7, 16, 17, .08);
  --line-strong: rgba(7, 16, 17, .20);
  --muted: rgba(7, 16, 17, .60);
  --shadow: 0 24px 70px rgba(7, 16, 17, .10);
  --soft-shadow: 0 12px 40px rgba(7, 16, 17, .08);
  --deep-shadow: 0 35px 60px -15px rgba(7, 16, 17, .30);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-precise: cubic-bezier(.16, 1, .3, 1);
  --focus-ring: 0 0 0 4px rgba(0, 198, 232, .16);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --body-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --border-hairline: rgba(7, 16, 17, .05);
  --border-soft: rgba(7, 16, 17, .10);
  --border-inverse: rgba(255, 255, 255, .10);
  --fg-inverse-2: rgba(255, 255, 255, .60);
  --fg-inverse-3: rgba(255, 255, 255, .40);
  --fg-inverse-4: rgba(255, 255, 255, .20);
}

* { box-sizing: border-box; }

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  background: var(--glacier);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .82), var(--glacier) 34rem, var(--paper));
  font-family: var(--body-serif);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .34;
  background-image:
    linear-gradient(rgba(7, 16, 17, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 16, 17, .028) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 76%);
}

body::after {
  content: "";
  position: fixed;
  inset: -100%;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  animation: grain-shuffle 8s steps(10) infinite;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-underline-offset: 4px;
}

:focus-visible {
  outline: 1px solid rgba(0, 198, 232, .68);
  outline-offset: 3px;
  box-shadow: var(--focus-ring);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 0;
  z-index: 100;
  transform: translateY(-220%);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 247, 244, .74);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px);
  transition: box-shadow .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(246, 247, 244, .92);
  border-bottom-color: var(--border-hairline);
  box-shadow: 0 14px 30px rgba(7, 16, 17, .04);
}

.nav {
  width: min(1480px, calc(100% - 48px));
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: var(--alpine);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 500;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 38px);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  color: rgba(7, 16, 17, .78);
  text-decoration: none;
  transition: color .18s var(--ease);
}

.nav-links a:hover { color: var(--ink); }

.nav-links a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}

.nav-links a:hover::before,
.nav-links a:focus-visible::before {
  transform: scaleX(1);
}

.nav-links a[aria-current="page"] {
  position: relative;
  color: var(--ink);
  font-weight: 700;
}

.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--copper);
}

.nav-links a[aria-current="page"]::before {
  display: none;
}

.button,
button {
  --button-bg: var(--alpine);
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--button-bg);
  border-radius: 0;
  background: var(--button-bg);
  color: var(--paper);
  padding: 15px 24px;
  font: 600 11px/1 var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .5s var(--ease-precise), background .5s var(--ease-precise), border-color .5s var(--ease-precise), box-shadow .5s var(--ease-precise), color .5s var(--ease-precise);
}

.button svg,
button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s var(--ease);
}

.button:hover,
button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 15px 30px rgba(6, 46, 42, .14);
}

.button:hover svg { transform: translateX(3px); }

.button.secondary {
  --button-bg: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, .72);
}

.btn {
  text-decoration: none;
}

.btn-primary {
  --button-bg: var(--alpine);
}

.btn-secondary {
  --button-bg: transparent;
}

.btn-tertiary,
.btn-link {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--evergreen);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-tertiary:hover,
.btn-link:hover {
  color: var(--copper);
  transform: none;
  box-shadow: none;
}

.button.small {
  min-height: 38px;
  padding: 10px 13px;
  font-size: 12px;
}

.button.ghost {
  --button-bg: transparent;
  color: var(--muted);
  border-color: var(--line);
  background: transparent;
}

.button.light {
  --button-bg: var(--paper);
  color: var(--alpine);
}

.nav-cta { justify-self: end; }

.kinetic-hero {
  width: min(1280px, calc(100% - 48px));
  min-height: auto;
  margin: 0 auto;
  padding: clamp(72px, 9vh, 118px) 0 clamp(76px, 8vw, 118px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .72fr);
  align-items: center;
  gap: clamp(40px, 6vw, 92px);
  position: relative;
}

.hero-copy-block {
  max-width: 820px;
  min-width: 0;
  position: relative;
  z-index: 3;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p,
li {
  line-height: 1.58;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: .98;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(48px, 5.4vw, 78px);
}

.kinetic-hero h1 {
  max-width: 860px;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  text-wrap: balance;
}

.kinetic-hero h1 span {
  display: block;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 4vw, 58px);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 30px;
  color: #36423e;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.5;
}

.hero-copy-secondary {
  margin-top: -12px;
  color: var(--evergreen);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 700;
}

.hero-actions,
.link-row,
.status-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-action-note {
  margin: 24px 0 0;
  color: #53605c;
  font-size: 13px;
  line-height: 1.45;
}

.hero-action-note a {
  color: var(--evergreen);
  font-weight: 800;
  text-decoration: none;
}

.hero-action-note a:hover {
  text-decoration: underline;
}

.hero-preview-shell {
  position: relative;
  z-index: 2;
  max-width: 100%;
  min-width: 0;
  min-height: 520px;
  border: 1px solid rgba(23, 76, 67, .18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(246, 247, 244, .76)),
    radial-gradient(circle at 84% 18%, rgba(0, 198, 232, .16), transparent 18rem);
  box-shadow: var(--deep-shadow);
  overflow: hidden;
}

.hero-preview-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(7, 16, 17, .08);
  pointer-events: none;
}

.hero-preview-shell::after {
  content: "";
  position: absolute;
  top: -32%;
  bottom: -32%;
  left: 54%;
  width: 120px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
  opacity: .62;
  transform: rotate(30deg);
  animation: threshold-scan 6.4s var(--ease) infinite alternate;
  pointer-events: none;
}

.hero-preview-topline {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 0;
  color: var(--evergreen);
  font-size: 12px;
  font-weight: 800;
}

.hero-preview-topline span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-preview-topline strong {
  padding: 7px 10px;
  border: 1px solid rgba(0, 198, 232, .34);
  background: rgba(0, 198, 232, .08);
  color: var(--alpine);
}

.hero-preview-stage {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 470px;
  padding: 28px;
}

.preview-card,
.preview-report-card {
  border: 1px solid rgba(7, 16, 17, .12);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 44px rgba(7, 16, 17, .10);
}

.preview-card {
  position: absolute;
  padding: 16px;
}

.preview-label {
  display: block;
  margin-bottom: 8px;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.preview-card strong,
.preview-report-card strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.18;
}

.preview-card p {
  margin: 8px 0 0;
  color: #53605c;
  font-size: 12px;
  line-height: 1.4;
}

.preview-card-inputs {
  top: 18px;
  left: 4px;
  width: min(220px, 46%);
  z-index: 1;
  animation: subtle-float 6s var(--ease) infinite;
}

.preview-report-card {
  position: absolute;
  top: 88px;
  right: 30px;
  width: min(310px, 66%);
  min-height: 292px;
  padding: 22px;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(6, 46, 42, .96), rgba(23, 76, 67, .95)),
    var(--alpine);
  color: var(--paper);
  transform: rotate(-1.4deg);
}

.preview-report-card .preview-label {
  color: rgba(255, 255, 255, .68);
}

.preview-report-card strong {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(30px, 3.1vw, 44px);
  font-weight: 500;
  line-height: 1;
}

.preview-report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 800;
}

.preview-page-lines {
  display: grid;
  gap: 8px;
  margin-top: 30px;
}

.preview-page-lines span {
  height: 7px;
  background: rgba(255, 255, 255, .18);
}

.preview-page-lines span:nth-child(1) { width: 96%; }
.preview-page-lines span:nth-child(2) { width: 82%; }
.preview-page-lines span:nth-child(3) { width: 92%; }
.preview-page-lines span:nth-child(4) { width: 64%; }

.preview-evidence-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 22px;
}

.preview-evidence-strip span {
  display: grid;
  min-height: 42px;
  align-items: center;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .82);
  font-size: 11px;
  font-weight: 800;
}

.preview-card-ledger {
  right: 0;
  top: 0;
  width: min(230px, 48%);
  z-index: 3;
  animation: subtle-float 7.2s var(--ease) infinite reverse;
}

.preview-card-ledger dl {
  display: grid;
  gap: 11px;
  margin: 0;
}

.preview-card-ledger div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 12px;
}

.preview-card-ledger dt {
  color: #4d5955;
  font-size: 12px;
}

.preview-card-ledger dd {
  margin: 0;
  color: var(--alpine);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
}

.preview-card-outlook {
  left: 28px;
  bottom: 10px;
  width: min(300px, 62%);
  min-height: 176px;
  z-index: 4;
}

.preview-outlook-chart {
  width: 100%;
  height: 68px;
  margin-top: 14px;
  overflow: visible;
}

.preview-chart-grid,
.preview-chart-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.preview-chart-grid {
  stroke: rgba(7, 16, 17, .10);
  stroke-width: 1;
}

.preview-chart-line {
  stroke: var(--cyan);
  stroke-width: 4;
  stroke-dasharray: 230;
  stroke-dashoffset: 230;
  animation: chart-draw 1.6s .45s var(--ease-precise) forwards;
}

.preview-chart-dot {
  fill: var(--cyan);
  filter: drop-shadow(0 0 8px rgba(0, 198, 232, .44));
}

.section-kicker,
.eyebrow {
  display: block;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section h2 {
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1;
}

.section-kicker,
.eyebrow {
  margin-bottom: 22px;
  line-height: 1.35;
}
.confidence-card {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(12px);
  padding: 18px;
  transition: transform .26s var(--ease), border-color .26s var(--ease), box-shadow .26s var(--ease);
}

.confidence-card:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 46, 42, .25);
  box-shadow: var(--shadow);
}

.confidence-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: clamp(78px, 8vw, 128px) 0;
  border-top: 1px solid var(--line);
  position: relative;
}

.section-inner {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
}

.section-eyebrow {
  margin: 0;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-copy {
  max-width: 570px;
}

.section-copy p,
.split-head p {
  color: var(--muted);
  font-size: 18px;
}

.centered {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  align-items: end;
  gap: 34px;
  margin-bottom: 42px;
}

.workflow-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(246, 247, 244, .7)),
    var(--paper);
}

.workflow-band h2 {
  max-width: 960px;
  margin-bottom: 52px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .66);
  box-shadow: var(--soft-shadow);
}

.plain-step-list,
.plain-output-list {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.plain-step,
.plain-output {
  padding: clamp(22px, 3vw, 32px);
  border-left: 3px solid rgba(176, 122, 74, .64);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--soft-shadow);
}

.plain-step p,
.plain-output p {
  margin: 0;
  color: #34413d;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.plain-step strong,
.plain-output strong {
  color: var(--ink);
}

.honest-block {
  background: rgba(246, 247, 244, .72);
}

.honest-panel {
  max-width: 900px;
  padding: clamp(26px, 4vw, 42px);
  border-left: 3px solid var(--copper);
  background:
    linear-gradient(135deg, rgba(255, 250, 241, .92), rgba(255, 255, 255, .84)),
    var(--paper);
  box-shadow: var(--soft-shadow);
}

.honest-panel h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(32px, 3.6vw, 50px);
}

.honest-panel p {
  max-width: 780px;
  color: #34413d;
  font-size: 17px;
  line-height: 1.58;
}

.workflow-step {
  min-height: 316px;
  padding: 28px;
  border-right: 1px solid var(--line);
  display: grid;
  align-content: start;
  gap: 18px;
  transition: background .24s var(--ease), transform .24s var(--ease), box-shadow .24s var(--ease);
}

.workflow-step:last-child { border-right: 0; }

.workflow-step:hover {
  background: rgba(255, 255, 255, .86);
  transform: translateY(-2px);
  box-shadow: inset 0 3px 0 rgba(176, 122, 74, .42);
}

.workflow-step > span,
.output-card > span {
  font-family: var(--mono);
  color: var(--copper);
  font-weight: 700;
  font-size: 12px;
}

.workflow-step p,
.output-card p,
.trust-grid-modern p,
.sample-card p,
.card p,
.muted {
  color: var(--muted);
}

.upload-glyph,
.node-field,
.flow-lines,
.synthesis-bars,
.qa-list,
.mini-page {
  height: 96px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--paper), var(--glacier));
  position: relative;
  overflow: hidden;
}

.upload-glyph {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 28px;
}

.upload-glyph i {
  background: var(--stone);
  border-bottom: 2px solid var(--evergreen);
}

.node-field::before {
  content: "";
  position: absolute;
  inset: 18px;
  background-image: radial-gradient(circle, var(--evergreen) 1.8px, transparent 2px);
  background-size: 24px 18px;
  opacity: .8;
}

.flow-lines i {
  position: absolute;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--evergreen);
  transform-origin: left;
}

.flow-lines i:nth-child(1) { top: 26px; transform: rotate(8deg); }
.flow-lines i:nth-child(2) { top: 48px; background: var(--cyan); }
.flow-lines i:nth-child(3) { top: 70px; transform: rotate(-8deg); opacity: .55; }

.synthesis-bars {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
}

.synthesis-bars i {
  height: 10px;
  background: linear-gradient(90deg, var(--evergreen), var(--stone));
}

.synthesis-bars i:nth-child(2) { width: 78%; }
.synthesis-bars i:nth-child(3) { width: 58%; background: var(--copper); }
.synthesis-bars i:nth-child(4) { width: 68%; }

.qa-list {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
}

.qa-list i {
  height: 10px;
  border-left: 12px solid var(--cyan);
  background: rgba(23, 76, 67, .14);
}

.mini-page::before {
  content: "";
  position: absolute;
  inset: 18px 34px;
  background:
    linear-gradient(var(--evergreen), var(--evergreen)) 0 0/42% 8px no-repeat,
    linear-gradient(var(--stone), var(--stone)) 0 28px/100% 8px no-repeat,
    linear-gradient(var(--stone), var(--stone)) 0 48px/70% 8px no-repeat;
}

.evidence-layout,
.season-layout,
.pricing-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(560px, 1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 98px);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #34413d;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 10px;
  height: 10px;
  border: 1px solid var(--evergreen);
  background: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: var(--alpine);
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--copper);
  transition: transform .2s var(--ease), width .2s var(--ease);
}

.text-link:hover::after {
  width: 38px;
  transform: translateX(5px);
}

.evidence-board,
.season-board {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--soft-shadow);
}

.source-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.source-metrics article {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.source-metrics article:last-child { border-right: 0; }

.source-metrics span,
.source-metrics small,
.pricing-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.source-metrics strong {
  display: block;
  margin: 8px 0 2px;
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 500;
}

.chart-panel {
  padding: 28px;
}

.chart-panel svg { width: 100%; height: auto; }

.confidence-card {
  position: relative;
  margin: 0 28px 28px auto;
  width: min(260px, calc(100% - 56px));
}

.confidence-card strong {
  display: block;
  margin: 4px 0;
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 500;
}

.season-board {
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(300px, 1fr);
  gap: 26px;
}

.season-section .section-copy h2 {
  max-width: 560px;
}

.season-rails {
  display: grid;
  gap: 16px;
  align-content: center;
}

.season-rails div {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 16px;
}

.season-rails span {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.season-rails i {
  height: 18px;
  background:
    linear-gradient(90deg, var(--evergreen) var(--fill), rgba(23, 76, 67, .12) var(--fill)),
    var(--glacier);
}

.matrix-preview {
  border: 1px solid var(--line);
  background: var(--paper);
}

.matrix-preview > div {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .5fr;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.matrix-preview > div:last-child { border-bottom: 0; }

.matrix-head {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px !important;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.matrix-preview b {
  width: 42px;
  height: 8px;
  background: var(--evergreen);
}

.matrix-preview b.mid { background: rgba(23, 76, 67, .45); }
.matrix-preview b.low { background: var(--stone); }

.matrix-preview em {
  font-style: normal;
  color: var(--copper);
  font-weight: 700;
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.output-card,
.card,
.sample-card,
.price-panel,
.form-panel,
.dashboard-panel,
.list-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--soft-shadow);
  transition: transform .24s var(--ease), border-color .24s var(--ease), box-shadow .24s var(--ease), background .24s var(--ease);
}

.output-card {
  min-height: 440px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.output-card h3 { margin-top: 8px; }

.output-card a {
  margin-top: auto;
  color: var(--alpine);
  font-weight: 700;
  text-decoration: none;
}

.artifact {
  height: 172px;
  margin: 18px 0;
  border: 1px solid var(--line);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.pdf-artifact {
  background:
    linear-gradient(var(--alpine), var(--alpine)) 22px 24px/64px 10px no-repeat,
    linear-gradient(var(--stone), var(--stone)) 22px 52px/130px 8px no-repeat,
    linear-gradient(var(--stone), var(--stone)) 22px 72px/105px 8px no-repeat,
    linear-gradient(135deg, transparent 45%, rgba(176, 122, 74, .65) 45.2%, transparent 45.8%),
    var(--paper);
}

.deck-artifact {
  background:
    linear-gradient(var(--stone), var(--stone)) 22px 34px/110px 8px no-repeat,
    linear-gradient(90deg, var(--evergreen), var(--cyan)) 22px 88px/150px 46px no-repeat,
    linear-gradient(var(--paper), var(--paper));
}

.table-artifact {
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 100% 34px, 33.333% 100%;
}

.dashboard-artifact {
  background:
    linear-gradient(90deg, var(--alpine) 0 42px, transparent 42px),
    linear-gradient(var(--stone), var(--stone)) 70px 36px/160px 8px no-repeat,
    linear-gradient(var(--evergreen), var(--evergreen)) 70px 76px/220px 16px no-repeat,
    linear-gradient(var(--stone), var(--stone)) 70px 116px/180px 10px no-repeat,
    var(--paper);
}

.sample-table {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--soft-shadow);
}

.sample-row {
  display: grid;
  grid-template-columns: minmax(250px, 1.35fr) minmax(180px, 1fr) minmax(220px, 1.15fr) minmax(160px, .8fr) 120px;
  gap: 18px;
  align-items: center;
  min-height: 84px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  transition: background .2s var(--ease), color .2s var(--ease);
}

.sample-row:last-child { border-bottom: 0; }

.sample-row:not(.table-head):hover {
  background: rgba(246, 247, 244, .74);
}

.sample-row span:first-child {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.08;
}

.sample-row small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
}

.sample-row a {
  color: var(--alpine);
  font-weight: 700;
  text-decoration: none;
}

.sample-row-muted {
  background: rgba(246, 247, 244, .72);
}

.home-sample-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-sample-card {
  min-height: 430px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px;
  padding: clamp(24px, 2.6vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--soft-shadow);
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}

.home-sample-card:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 46, 42, .26);
  box-shadow: var(--shadow);
}

.home-sample-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.02;
}

.home-sample-card p {
  margin: 0;
  color: #4f5b56;
  font-size: 15px;
  line-height: 1.58;
}

.home-sample-card .sample-location {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-sample-card a {
  width: fit-content;
  color: var(--alpine);
  font-weight: 800;
  text-decoration: none;
}

.home-sample-card a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 5px;
  background: var(--copper);
}

.home-sample-card-outline {
  border: 2px solid rgba(23, 76, 67, .28);
  background:
    linear-gradient(180deg, rgba(246, 247, 244, .82), rgba(255, 255, 255, .9)),
    var(--paper);
  box-shadow: none;
}

.table-head {
  min-height: 48px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.table-head span:first-child {
  font-family: var(--mono);
  font-size: 11px;
}

.trust-section {
  background: var(--paper);
}

.trust-grid-modern {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid-modern article {
  padding: 30px 24px;
  border-right: 1px solid var(--line);
}

.trust-grid-modern article:last-child { border-right: 0; }

.icon-circle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--copper);
  font-family: var(--mono);
  font-weight: 700;
}

.pricing-section {
  background:
    linear-gradient(180deg, rgba(246, 247, 244, .8), rgba(255, 255, 255, .96)),
    var(--paper);
}

.home-bundle-section {
  padding: clamp(112px, 11vw, 176px) 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(176, 122, 74, .18), transparent 30rem),
    linear-gradient(180deg, rgba(6, 46, 42, .06), rgba(255, 255, 255, .96)),
    var(--paper);
}

.pricing-card {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: clamp(30px, 4vw, 54px);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::after {
  content: "";
  position: absolute;
  inset: -30% auto auto 82%;
  width: 1px;
  height: 170%;
  background: var(--copper);
  transform: rotate(29deg);
}

.home-bundle-card {
  text-align: left;
}

.home-bundle-card::after {
  opacity: .44;
}

.pricing-card strong {
  display: block;
  margin: 16px 0 12px;
  font-family: var(--serif);
  font-size: clamp(68px, 8vw, 118px);
  font-weight: 500;
  line-height: .9;
}

.pricing-card p {
  max-width: 360px;
  margin: 0 auto 24px;
  color: var(--muted);
}

.pricing-card .button {
  width: min(320px, 100%);
  position: relative;
  z-index: 2;
}

.pricing-card-actions {
  display: grid;
  justify-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.pricing-card-actions .text-link {
  max-width: 360px;
  margin-top: 4px;
  text-align: left;
}

.home-bundle-card h3 {
  margin: 0;
  color: var(--evergreen);
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: .95;
}

.home-bundle-unit {
  display: grid;
  gap: 6px;
  max-width: 420px;
  margin: 18px 0 28px !important;
  color: #4f5b56 !important;
  font-size: 16px;
  text-align: left;
}

.home-bundle-unit span {
  display: block;
  color: var(--evergreen);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 800;
  line-height: 1.05;
}

.home-bundle-card em {
  color: var(--evergreen);
  font-style: normal;
  font-weight: 800;
}

.inline-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
}

.inline-link-row a {
  color: var(--alpine);
  font-weight: 800;
  text-decoration: none;
}

.referral-home-section {
  padding: clamp(104px, 10vw, 164px) 0;
}

.will-wont-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.will-wont-grid article {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--soft-shadow);
}

.will-wont-grid h3 {
  margin-top: 0;
  color: var(--evergreen);
  font-size: clamp(24px, 2.8vw, 36px);
}

.will-wont-grid ul,
.dashboard-referral-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.will-wont-grid li,
.dashboard-referral-list li {
  position: relative;
  padding-left: 22px;
  color: #34413d;
}

.will-wont-grid li::before,
.dashboard-referral-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  background: var(--copper);
}

.email-fit-button {
  margin-top: 24px;
}

.final-cta-section {
  padding: clamp(112px, 11vw, 176px) 0;
  background:
    linear-gradient(135deg, rgba(6, 46, 42, .08), rgba(255, 255, 255, .94)),
    var(--paper);
}

.final-cta-panel {
  display: grid;
  gap: 20px;
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid rgba(176, 122, 74, .34);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.final-cta-panel p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.final-cta-note a {
  color: var(--alpine);
  font-weight: 800;
}

.faq-layout {
  align-items: start;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
  padding: 22px 24px;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
}

summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg) translateY(-1px);
  transition: transform .2s var(--ease);
}

details[open] {
  background: var(--paper);
  border-color: rgba(6, 46, 42, .24);
  box-shadow: var(--soft-shadow);
}

details[open] summary::before {
  transform: rotate(45deg) translateY(-2px);
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.site-footer {
  background: var(--alpine);
  color: var(--paper);
  padding: 56px 0 28px;
}

.footer-inner {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto minmax(220px, .45fr);
  gap: 48px;
  align-items: start;
}

.footer-brand {
  color: var(--paper);
}

.footer-brand .brand-mark {
  background: var(--paper);
  color: var(--alpine);
}

.footer-inner p {
  max-width: 360px;
  color: rgba(255, 255, 255, .68);
}

.footer-referral {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.45;
}

.footer-referral strong {
  color: var(--paper);
}

.footer-referral a {
  color: var(--paper);
  font-weight: 800;
  white-space: nowrap;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 34px;
}

.footer-links a,
.footer-links button,
.footer-contact a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
}

.footer-links button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .78);
  font: inherit;
  line-height: inherit;
  cursor: pointer;
}

.footer-links button:hover,
.footer-links button:focus-visible {
  color: var(--paper);
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact span {
  display: block;
  color: rgba(255, 255, 255, .52);
  font-size: 12px;
  margin-bottom: 0;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: rise-in .72s var(--ease) both;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(176, 122, 74, .10); }
  50% { box-shadow: 0 0 0 16px rgba(176, 122, 74, .04); }
}

@keyframes rise-in {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes threshold-scan {
  from { transform: translateX(-10px) rotate(31deg); }
  to { transform: translateX(12px) rotate(31deg); }
}

@keyframes chart-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes subtle-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

@keyframes grain-shuffle {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-15%, 5%); }
  30% { transform: translate(7%, -25%); }
  40% { transform: translate(-5%, 25%); }
  50% { transform: translate(-15%, 10%); }
  60% { transform: translate(15%, 0); }
  70% { transform: translate(0, 15%); }
  80% { transform: translate(3%, 35%); }
  90% { transform: translate(-10%, 10%); }
}

@keyframes float-up {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes float-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(14px); }
}

@keyframes pulse-bars {
  0%, 100% { opacity: .38; transform: scaleY(.72); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes deliverable-line-in {
  from { transform: scaleX(.24); opacity: .32; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.motion-ready .reveal:not(.is-visible) {
  opacity: 1;
  transform: none;
}

.designer-hero {
  position: relative;
  min-height: min(860px, calc(100vh - 74px));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(56px, 7vw, 92px) 0 clamp(54px, 6vw, 82px);
}

.designer-hero::before,
.designer-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: .045;
  background: var(--ink);
}

.designer-hero::before {
  left: 0;
  right: 0;
  top: 25%;
  height: 1px;
  box-shadow: 0 50vh 0 var(--ink);
}

.designer-hero::after {
  top: 0;
  bottom: 0;
  left: 25%;
  width: 1px;
  box-shadow: 50vw 0 0 var(--ink);
}

.designer-hero-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.designer-hero-copy {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 920px;
}

.designer-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(46px, 5.8vw, 86px);
  line-height: .95;
  font-weight: 500;
}

.display-italic {
  font-family: var(--serif);
  font-style: italic;
}

.designer-hero-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.5;
}

.designer-hero-copy .hero-price-anchor {
  max-width: 820px;
  color: rgba(7, 16, 17, .78);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
}

.hero-cta-subnote {
  margin: 14px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 650;
}

.hero-cta-subnote a {
  color: var(--evergreen);
  font-weight: 850;
  text-decoration: none;
}

.hero-cta-subnote a:hover {
  color: var(--copper);
  text-decoration: underline;
}

.section-vs {
  padding: clamp(70px, 8vw, 112px) 0;
  background: var(--glacier);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-vs .section-inner,
.section-not-feasibility .section-inner,
.section-founder .section-inner,
.bundle-upsell .section-inner {
  width: min(1160px, calc(100% - 48px));
}

.section-vs h2 {
  max-width: 860px;
  margin: 10px 0 18px;
  font-size: clamp(32px, 3.7vw, 54px);
  line-height: 1.08;
}

.section-vs .section-lede {
  max-width: 760px;
  margin: 0 0 clamp(28px, 4vw, 48px);
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.58;
}

.vs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}

.vs-column {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .64);
}

.vs-column--them {
  border-style: dashed;
  opacity: .86;
}

.vs-column--us {
  border-color: rgba(23, 76, 67, .52);
  background: var(--paper);
  box-shadow: inset 0 3px 0 var(--evergreen), var(--soft-shadow);
}

.vs-column-title {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
}

.vs-column-sub {
  margin: 0 0 8px;
  color: var(--zinc);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.vs-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.vs-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: #34413d;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
}

.vs-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.vs-footnote {
  max-width: 620px;
  margin: clamp(24px, 3vw, 34px) auto 0;
  color: var(--muted);
  font-size: 16px;
  font-style: italic;
  text-align: center;
}

.threshold-console {
  --threshold: 50%;
  width: min(1080px, 100%);
  margin: clamp(28px, 4.6vw, 50px) auto clamp(24px, 3.8vw, 42px);
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(7, 16, 17, .14);
  background:
    linear-gradient(90deg, rgba(6, 46, 42, .045), transparent 24%, transparent 76%, rgba(176, 122, 74, .06)),
    rgba(255, 255, 255, .76);
  box-shadow: 0 28px 80px rgba(7, 16, 17, .08);
  backdrop-filter: blur(8px);
}

.threshold-proof-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
}

.threshold-proof-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.06;
}

.threshold-labels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
  color: rgba(7, 16, 17, .36);
  font-family: var(--mono);
  font-size: clamp(10px, .85vw, 12px);
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.threshold-labels span:nth-child(1) { text-align: left; }
.threshold-labels span:nth-child(2) { color: var(--copper); text-align: center; }
.threshold-labels span:nth-child(3) { text-align: right; }

.threshold-track {
  position: relative;
  height: 18px;
  margin: 0 14px;
  cursor: ew-resize;
  touch-action: none;
}

.threshold-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(7, 16, 17, .20);
}

.threshold-track::after {
  content: "";
  position: absolute;
  inset: 3px 0 auto;
  height: 12px;
  background:
    linear-gradient(rgba(7, 16, 17, .26), rgba(7, 16, 17, .26)) 0 50%/1px 8px no-repeat,
    linear-gradient(rgba(176, 122, 74, .58), rgba(176, 122, 74, .58)) 50% 50%/1px 12px no-repeat,
    linear-gradient(rgba(6, 46, 42, .36), rgba(6, 46, 42, .36)) 100% 50%/1px 8px no-repeat;
}

.threshold-track-fill {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  width: var(--threshold);
  height: 2px;
  background: var(--copper);
  transform: translateY(-50%);
  transition: width .32s var(--ease), background .32s var(--ease);
}

.threshold-console[data-threshold-mode="low"] .threshold-track-fill {
  background: rgba(7, 16, 17, .26);
}

.threshold-console[data-threshold-mode="high"] .threshold-track-fill {
  background: var(--alpine);
}

.threshold-range {
  position: absolute;
  inset: -18px 0;
  z-index: 4;
  width: 100%;
  opacity: 0;
  cursor: ew-resize;
  pointer-events: none;
}

.threshold-knob {
  position: absolute;
  top: 50%;
  left: var(--threshold);
  z-index: 3;
  width: 26px;
  height: 44px;
  display: grid;
  place-items: center;
  gap: 3px;
  border: 1px solid rgba(7, 16, 17, .22);
  background: var(--glacier);
  box-shadow: 0 12px 28px rgba(7, 16, 17, .14);
  transform: translate(-50%, -50%);
  transition: left .32s var(--ease), border-color .32s var(--ease), box-shadow .32s var(--ease);
}

.threshold-console[data-threshold-mode="mid"] .threshold-knob {
  border-color: rgba(176, 122, 74, .78);
}

.threshold-console[data-threshold-mode="high"] .threshold-knob {
  border-color: rgba(6, 46, 42, .76);
}

.threshold-knob::before,
.threshold-knob::after,
.threshold-knob span {
  content: "";
  width: 1px;
  height: 10px;
  background: rgba(7, 16, 17, .44);
}

.threshold-track:focus-within .threshold-knob {
  box-shadow: var(--focus-ring), 0 12px 28px rgba(7, 16, 17, .14);
}

.threshold-reveal {
  position: relative;
  min-height: 286px;
  margin-top: clamp(24px, 3.4vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(7, 16, 17, .10);
  background:
    linear-gradient(180deg, rgba(246, 247, 244, .66), rgba(255, 255, 255, .84)),
    var(--paper);
}

.threshold-panel {
  display: none;
  min-height: 286px;
  padding: clamp(22px, 3.6vw, 40px);
  animation: rise-in .42s var(--ease) both;
}

.threshold-panel.is-active {
  display: grid;
}

.threshold-panel-low {
  grid-template-columns: minmax(220px, .68fr) minmax(260px, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  text-align: left;
}

.threshold-blank-stack {
  position: relative;
  width: min(330px, 100%);
  min-height: 208px;
  margin: 0 auto;
}

.threshold-blank-stack span {
  position: absolute;
  inset: 26px 34px 0 34px;
  border: 1px solid rgba(7, 16, 17, .16);
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(246, 247, 244, .78));
  box-shadow: 0 20px 45px rgba(7, 16, 17, .08);
}

.threshold-blank-stack span:nth-child(1) { transform: rotate(-4deg) translate(-18px, 12px); }
.threshold-blank-stack span:nth-child(2) { transform: rotate(2deg) translate(8px, -2px); }
.threshold-blank-stack span:nth-child(3) { transform: rotate(-1deg) translate(22px, 18px); }

.threshold-copy h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.threshold-copy p,
.threshold-caption {
  margin: 0;
  color: rgba(7, 16, 17, .66);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.5;
}

.threshold-panel-mid,
.threshold-panel-high {
  align-content: center;
  gap: clamp(18px, 2.6vw, 26px);
}

.threshold-panel-title {
  justify-self: center;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(28px, 2.7vw, 42px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
  text-align: center;
}

.threshold-artifact-stack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: end;
}

.threshold-artifact {
  min-height: 214px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(16px, 2vw, 20px);
  border: 1px solid rgba(7, 16, 17, .12);
  background: var(--paper);
  box-shadow: 0 24px 50px rgba(7, 16, 17, .10);
  transition: transform .34s var(--ease), border-color .34s var(--ease), box-shadow .34s var(--ease);
}

.threshold-panel-mid .threshold-artifact:nth-child(1) { transform: rotate(-1deg) translateY(8px); }
.threshold-panel-mid .threshold-artifact:nth-child(2) { transform: translateY(-10px); }
.threshold-panel-mid .threshold-artifact:nth-child(3) { transform: rotate(1.4deg) translateY(12px); }

.threshold-artifact-stack-polished .threshold-artifact {
  border-color: rgba(6, 46, 42, .22);
  box-shadow: 0 32px 64px rgba(7, 16, 17, .14);
}

.threshold-artifact-stack-polished .threshold-artifact:nth-child(1) { transform: rotate(-2deg) translateY(2px); }
.threshold-artifact-stack-polished .threshold-artifact:nth-child(2) { transform: translateY(-18px) scale(1.03); }
.threshold-artifact-stack-polished .threshold-artifact:nth-child(3) { transform: rotate(2deg) translateY(0); }

.threshold-real-artifacts {
  align-items: center;
  padding: clamp(8px, 1vw, 14px) clamp(4px, 1vw, 10px) 2px;
}

.threshold-real-artifact {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: var(--glacier);
  box-shadow: var(--soft-shadow);
  transform-origin: center;
  transition: transform .4s cubic-bezier(.2, .7, .2, 1), border-color .4s var(--ease), box-shadow .4s cubic-bezier(.2, .7, .2, 1);
}

.threshold-real-artifact svg {
  display: block;
  width: 100%;
  height: auto;
}

.threshold-artifact-stack-polished.threshold-real-artifacts .threshold-real-artifact {
  border-color: rgba(6, 46, 42, .20);
  box-shadow: var(--soft-shadow);
}

.threshold-artifact-stack-polished.threshold-real-artifacts .threshold-real-artifact:nth-child(1) {
  transform: rotate(-1.2deg) translateY(8px);
}

.threshold-artifact-stack-polished.threshold-real-artifacts .threshold-real-artifact:nth-child(2) {
  z-index: 2;
  transform: translateY(-12px);
  box-shadow: var(--deep-shadow);
}

.threshold-artifact-stack-polished.threshold-real-artifacts .threshold-real-artifact:nth-child(3) {
  transform: rotate(1.4deg) translateY(6px);
}

.threshold-real-artifacts .threshold-real-artifact:hover,
.threshold-real-artifacts .threshold-real-artifact:focus-within {
  z-index: 6;
  border-color: rgba(176, 122, 74, .42);
  box-shadow: var(--deep-shadow);
  transform: translateY(-4px) rotate(0deg);
}

.threshold-forward-badge {
  position: absolute;
  top: -22px;
  right: clamp(8px, 2vw, 24px);
  z-index: 4;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(6, 46, 42, .24);
  background: var(--alpine);
  color: var(--glacier);
  box-shadow: 0 18px 36px rgba(7, 16, 17, .18);
  text-decoration: none;
  transition: background .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}

.threshold-forward-badge:hover,
.threshold-forward-badge:focus-visible {
  border-color: rgba(6, 46, 42, .36);
  background: var(--evergreen);
  box-shadow: var(--deep-shadow);
  outline: none;
}

.threshold-forward-badge svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
  transition: transform .28s var(--ease);
}

.threshold-forward-badge:hover svg,
.threshold-forward-badge:focus-visible svg {
  transform: translateX(2px);
}

.threshold-artifact span {
  min-height: 28px;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.threshold-artifact div {
  min-height: 142px;
  border: 1px solid rgba(7, 16, 17, .06);
  background:
    linear-gradient(var(--alpine), var(--alpine)) 18px 20px/44% 8px no-repeat,
    linear-gradient(var(--stone), var(--stone)) 18px 56px/76% 7px no-repeat,
    linear-gradient(var(--stone), var(--stone)) 18px 79px/60% 7px no-repeat,
    var(--glacier);
}

.threshold-artifact-report div {
  background:
    linear-gradient(var(--alpine), var(--alpine)) 18px 22px/54% 8px no-repeat,
    repeating-linear-gradient(180deg, transparent 0 18px, rgba(7, 16, 17, .08) 18px 19px) 18px 58px/calc(100% - 36px) 74px no-repeat,
    var(--glacier);
}

.threshold-artifact-appendix div {
  background:
    linear-gradient(90deg, rgba(6, 46, 42, .18) 0 1px, transparent 1px) 0 0/33.333% 100%,
    linear-gradient(rgba(7, 16, 17, .08) 1px, transparent 1px) 0 0/100% 31px,
    var(--glacier);
}

.threshold-real-artifact .threshold-artifact-label {
  position: absolute;
  top: 12px;
  left: 14px;
  z-index: 3;
  min-height: auto;
  padding: 5px 8px 4px;
  background: rgba(246, 247, 244, .84);
  color: var(--copper);
  font-size: 8px;
  letter-spacing: .15em;
  line-height: 1;
  backdrop-filter: blur(2px);
}

.threshold-caption {
  justify-self: center;
  max-width: 680px;
  color: rgba(7, 16, 17, .74);
  font-family: var(--serif);
  font-size: clamp(18px, 1.65vw, 24px);
}

.threshold-sample-row {
  justify-self: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: -4px;
  padding-top: 18px;
  border-top: 1px solid rgba(7, 16, 17, .12);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.threshold-sample-eyebrow {
  margin-right: 14px;
  color: var(--zinc);
}

.threshold-sample-link {
  padding: 4px 12px;
  border-left: 1px solid rgba(7, 16, 17, .12);
  color: var(--evergreen);
  text-decoration: none;
  transition: color .24s var(--ease);
}

.threshold-sample-link.is-active,
.threshold-sample-link:hover,
.threshold-sample-link:focus-visible {
  color: var(--copper);
  outline: none;
}

.designer-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 42px;
  margin-top: 30px;
  color: rgba(7, 16, 17, .40);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: opacity .7s var(--ease), filter .7s var(--ease);
}

.designer-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.designer-trust-row span::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, .42);
}

.designer-dark-section {
  position: relative;
  overflow: hidden;
  padding: clamp(94px, 10vw, 140px) 0;
  background: var(--ink);
  color: var(--paper);
}

.designer-dark-section h2,
.designer-dark-section h3 {
  color: var(--paper);
}

.designer-dark-section p {
  color: var(--fg-inverse-2);
}

.designer-dark-section .plain-step-list {
  margin-top: clamp(30px, 4vw, 48px);
}

.designer-dark-section .hairline-row span:last-child {
  color: var(--fg-inverse-2);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.designer-dark-grid {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .78fr);
  gap: clamp(38px, 7vw, 86px);
  align-items: center;
}

.hairline-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hairline-row .line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--copper);
  transition: width .3s var(--ease);
}

.hairline-row:hover .line {
  width: 48px;
}

.designer-case-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--border-inverse);
  background: rgba(255, 255, 255, .05);
}

.designer-case-map {
  position: relative;
  min-height: 320px;
  margin-top: 28px;
  border: 1px solid var(--border-inverse);
  background: rgba(255, 255, 255, .05);
  overflow: hidden;
}

.designer-case-map::before {
  content: "";
  position: absolute;
  inset: 22%;
  border: 1px dashed rgba(255, 255, 255, .16);
  border-radius: 999px;
  animation: spin-slow 20s linear infinite;
}

.designer-case-map::after {
  content: "";
  position: absolute;
  inset: 25%;
  border-radius: 999px;
  background: rgba(0, 198, 232, .11);
  filter: blur(48px);
}

.designer-case-map p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 30px;
  color: var(--fg-inverse-3);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  line-height: 2;
  text-transform: uppercase;
}

.designer-float-tag {
  position: absolute;
  padding: 16px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  box-shadow: var(--deep-shadow);
}

.designer-float-tag.copper {
  top: -32px;
  right: -22px;
  background: var(--copper);
  animation: float-up 4s ease-in-out infinite;
}

.designer-float-tag.cyan {
  left: -22px;
  bottom: 36px;
  background: var(--cyan);
  animation: float-down 5s ease-in-out infinite 1s;
}

.deliverable-explorer {
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 52px);
  align-items: start;
}

.deliverable-tabs {
  display: grid;
  gap: 12px;
}

.deliverable-tab {
  display: grid;
  gap: 10px;
  min-height: 138px;
  padding: 26px;
  border: 1px solid var(--border-hairline);
  background: var(--paper);
  color: var(--ink);
  text-align: left;
  box-shadow: none;
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease), box-shadow .28s var(--ease);
}

.deliverable-tab:hover {
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}

.deliverable-tab:focus-visible {
  border-color: var(--cyan);
}

.deliverable-tab.is-active {
  border-color: var(--alpine);
  background: var(--glacier);
  box-shadow: inset 3px 0 0 var(--copper);
}

.deliverable-tab span {
  color: rgba(7, 16, 17, .34);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.deliverable-tab.is-active span {
  color: var(--copper);
}

.deliverable-tab strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.08;
  text-transform: none;
  letter-spacing: 0;
}

.deliverable-tab em {
  color: var(--muted);
  font-family: var(--body-serif);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.deliverable-stage {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--border-hairline);
  background: var(--glacier);
  overflow: hidden;
}

.deliverable-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 16, 17, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 16, 17, .035) 1px, transparent 1px);
  background-size: 44px 44px;
}

.deliverable-document {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 58px));
  min-height: 440px;
  margin: 56px auto;
  display: none;
  grid-template-rows: 64px 1fr;
  border: 1px solid var(--border-hairline);
  background: var(--paper);
  box-shadow: var(--deep-shadow);
  animation: rise-in .5s var(--ease) both;
}

.deliverable-document.is-active {
  display: grid;
}

.deliverable-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 28px;
  border-bottom: 1px solid var(--border-hairline);
  background: rgba(246, 247, 244, .42);
}

.deliverable-chrome span,
.deliverable-source-chip {
  color: rgba(7, 16, 17, .32);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.deliverable-page-body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(180px, .62fr);
  gap: 34px;
  padding: clamp(26px, 5vw, 48px);
}

.deliverable-page-body h3 {
  margin: 8px 0 18px;
  font-size: clamp(32px, 4vw, 52px);
}

.deliverable-lines {
  display: grid;
  gap: 12px;
}

.deliverable-lines i {
  height: 12px;
  background: var(--glacier);
  transform-origin: left center;
}

.deliverable-document.is-active .deliverable-lines i {
  animation: deliverable-line-in .62s var(--ease) both;
}

.deliverable-document.is-active .deliverable-lines i:nth-child(2) {
  animation-delay: 70ms;
}

.deliverable-document.is-active .deliverable-lines i:nth-child(3) {
  animation-delay: 140ms;
}

.deliverable-lines i:nth-child(1) { width: 100%; }
.deliverable-lines i:nth-child(2) { width: 82%; }
.deliverable-lines i:nth-child(3) { width: 56%; }

.deliverable-visual {
  min-height: 180px;
  border: 1px solid var(--border-hairline);
  background:
    linear-gradient(135deg, transparent, rgba(6, 46, 42, .055)),
    var(--glacier);
}

.deliverable-source-chip {
  position: absolute;
  right: clamp(20px, 4vw, 42px);
  bottom: clamp(20px, 4vw, 42px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--copper);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.designer-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
}

.designer-comparison-table th,
.designer-comparison-table td {
  padding: clamp(18px, 2.8vw, 30px) clamp(16px, 2vw, 24px);
  border-bottom: 1px solid var(--border-hairline);
  text-align: left;
}

.designer-comparison-table th {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.designer-comparison-table th:first-child {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.designer-comparison-table td:first-child {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.designer-comparison-table td:nth-child(3),
.designer-comparison-table th:nth-child(3) {
  background: var(--glacier);
  color: var(--ink);
}

.designer-evidence-console {
  display: grid;
  gap: 14px;
  padding: clamp(26px, 4vw, 48px);
  background: var(--ink);
  color: var(--fg-inverse-3);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.8;
}

.designer-evidence-console strong {
  color: var(--cyan);
  font-weight: 600;
}

.designer-console-bars {
  display: flex;
  align-items: end;
  gap: 4px;
  margin-top: 14px;
}

.designer-console-bars i {
  width: 4px;
  height: 22px;
  background: var(--cyan);
  transform-origin: bottom;
  animation: pulse-bars 1.5s ease-in-out infinite;
}

.designer-console-bars i:nth-child(2) { animation-delay: .1s; }
.designer-console-bars i:nth-child(3) { animation-delay: .2s; }
.designer-console-bars i:nth-child(4) { animation-delay: .3s; }
.designer-console-bars i:nth-child(5) { animation-delay: .4s; }
.designer-console-bars i:nth-child(6) { animation-delay: .5s; }

@media (hover: hover) and (pointer: fine) {
  .output-card:hover,
  .card:hover,
  .sample-card:hover,
  .price-panel:hover,
  .dashboard-panel:hover,
  .list-card:hover,
  .method-output-grid article:hover,
  .fit-grid article:hover,
  .decision-grid article:hover,
  .dashboard-checklist li:hover {
    transform: translateY(-3px);
    border-color: rgba(6, 46, 42, .24);
    box-shadow: var(--shadow);
  }
}

/* Legacy page compatibility */
.hero {
  min-height: 520px;
  display: grid;
  align-items: end;
  background: var(--glacier);
  border-bottom: 1px solid var(--line);
}

.hero-inner,
.page-hero .section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-inner {
  padding: 84px 0;
}

.page-hero {
  padding: clamp(72px, 8vw, 116px) 0 clamp(56px, 6vw, 78px);
  background:
    radial-gradient(circle at 78% 0%, rgba(0, 198, 232, .11), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(246, 247, 244, .92)),
    var(--glacier);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: -40% auto auto 74%;
  width: 1px;
  height: 160%;
  background: rgba(176, 122, 74, .32);
  transform: rotate(29deg);
  pointer-events: none;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(46px, 5.6vw, 78px);
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.start-page .page-hero {
  padding: clamp(24px, 3.2vw, 38px) 0 clamp(24px, 3vw, 34px);
}

.start-page .page-hero h1 {
  max-width: 780px;
  font-size: clamp(36px, 4vw, 52px);
}

.start-page .page-hero p {
  max-width: 620px;
  font-size: 16px;
}

.start-page.is-final-step .nav-cta {
  display: none;
}

.pricing-hero {
  padding: clamp(46px, 5vw, 72px) 0 clamp(34px, 4vw, 50px);
}

.pricing-hero h1 {
  max-width: 820px;
  font-size: clamp(44px, 5vw, 72px);
}

.pricing-hero-actions {
  margin-top: 28px;
}

.pricing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(340px, .42fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: end;
}

.pricing-hero-copy {
  display: grid;
  justify-items: start;
}

.pricing-hero-ledger {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-hairline);
  background: rgba(255, 255, 255, .76);
  box-shadow: var(--soft-shadow);
}

.pricing-hero-ledger::before {
  content: "";
  position: absolute;
  inset: -24% auto auto 58%;
  width: 1px;
  height: 150%;
  background: rgba(176, 122, 74, .40);
  transform: rotate(31deg);
}

.pricing-ledger-head,
.pricing-ledger-row {
  position: relative;
  z-index: 1;
}

.pricing-ledger-head {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-bottom: 1px solid var(--border-hairline);
}

.pricing-ledger-head span,
.pricing-ledger-row span {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pricing-ledger-head strong {
  max-width: 320px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.05;
}

.pricing-ledger-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 72px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-hairline);
}

.pricing-ledger-row:last-child {
  border-bottom: 0;
}

.pricing-ledger-row strong,
.pricing-ledger-row b {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pricing-ledger-row b {
  color: var(--evergreen);
}

.pricing-ledger-row.is-recommended {
  background: var(--alpine);
  color: var(--paper);
}

.pricing-ledger-row.is-recommended b,
.pricing-ledger-row.is-recommended span {
  color: var(--cyan);
}

.trust-bar {
  background: var(--alpine);
  color: var(--paper);
}

.trust-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
  font-weight: 800;
}

.section.alt { background: var(--glacier); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(280px, .46fr);
  align-items: start;
  gap: clamp(24px, 5vw, 68px);
  margin-bottom: clamp(38px, 5vw, 58px);
}

.section-head p {
  max-width: 560px;
  color: var(--muted);
  margin: 44px 0 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid.five { grid-template-columns: repeat(5, 1fr); }

.card {
  padding: 24px;
}

.sample-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 150px 1fr;
}

.sample-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.sample-body {
  padding: 18px;
}

.sample-body strong {
  display: block;
  margin-bottom: 4px;
}

.price-panel {
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}

.price {
  font-size: 58px;
  font-weight: 900;
  color: var(--alpine);
}

.mini-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
}

.mini-list li {
  list-style: none;
  padding-left: 20px;
  position: relative;
}

.mini-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--copper);
  position: absolute;
  top: .7em;
  left: 0;
}

.form-shell,
.dashboard-layout {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 90px;
}

.start-page .form-shell {
  padding-top: clamp(24px, 3vw, 34px);
}

.content {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0 110px;
}

.content h1 {
  font-size: clamp(44px, 6vw, 78px);
}

.content h2 {
  margin-top: 42px;
  font-size: clamp(28px, 3vw, 42px);
}

.form-panel,
.dashboard-panel {
  padding: clamp(28px, 3.2vw, 46px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.credit-access-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(23, 76, 67, .16);
  background: rgba(255, 255, 255, .68);
}

.credit-access-panel strong {
  color: var(--evergreen);
  font-size: 13px;
}

.credit-access-panel p {
  margin: 2px 0 0;
  color: #53605c;
  font-size: 13px;
  line-height: 1.42;
}

.credit-access-panel .field-helper {
  min-height: 18px;
  margin-top: 6px;
}

.credit-access-panel .button {
  white-space: nowrap;
}

.draft-resume-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(23, 76, 67, .22);
  background: rgba(238, 248, 249, .78);
}

.draft-resume-banner[hidden] {
  display: none;
}

.draft-resume-banner strong {
  color: var(--evergreen);
}

.draft-resume-banner p {
  margin: 3px 0 0;
  color: #53605c;
  font-size: 14px;
  line-height: 1.45;
}

.draft-resume-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.field-helper[data-mode="saved"] {
  color: var(--evergreen);
}

.field-helper[data-mode="loading"] {
  color: #664321;
}

.field-helper[data-mode="error"] {
  color: var(--coral);
}

.intake-stepper {
  display: grid;
  gap: 22px;
}

.form-progress {
  display: grid;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-progress h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 3vw, 44px);
}

.intake-promise-panel {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid rgba(23, 76, 67, .16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(238, 248, 249, .58)),
    var(--paper);
}

.intake-promise-panel p {
  max-width: 500px;
  margin: 8px 0 0;
  color: #34413d;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.45;
}

.intake-promise-panel.is-compact {
  grid-template-columns: 1fr;
  padding: 12px 16px;
  border-color: rgba(176, 122, 74, .22);
  background: rgba(255, 255, 255, .72);
}

.intake-promise-panel.is-compact .last-step-note {
  max-width: none;
  margin: 0;
  color: #34413d;
  font-size: 14px;
}

.intake-promise-panel.is-compact strong {
  color: var(--evergreen);
}

.intake-promise-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.intake-promise-list li {
  display: grid;
  gap: 5px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(23, 76, 67, .14);
  background: rgba(255, 255, 255, .78);
}

.intake-promise-list strong {
  color: var(--evergreen);
  font-size: 13px;
}

.intake-promise-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.38;
}

.intake-assist-card {
  grid-column: 1 / -1;
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(23, 76, 67, .24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(238, 248, 249, .62)),
    var(--paper);
}

.intake-assist-head,
.assist-review-head,
.assist-actions,
.assist-row-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.intake-assist-head h3,
.assist-review-head h4,
.step-assist-summary h3,
.form-step > h3 {
  margin: 5px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 600;
  line-height: 1.1;
}

.assist-input-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.assist-input-grid textarea {
  min-height: 92px;
}

#assist_input_notes {
  min-height: 136px;
}

.assist-field-preview,
.assist-cta-row,
.assist-suggestion-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.assist-field-preview {
  flex-wrap: wrap;
}

.assist-field-preview span {
  padding: 7px 10px;
  border: 1px solid rgba(23, 76, 67, .18);
  background: rgba(255, 255, 255, .74);
  color: var(--evergreen);
  font-size: 12px;
  font-weight: 800;
}

.assist-cta-row {
  align-items: stretch;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid rgba(23, 76, 67, .2);
  background: rgba(23, 76, 67, .055);
}

.assist-cta-row .button {
  min-width: 240px;
  justify-content: center;
}

.assist-cta-row p {
  align-self: center;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.assist-status {
  padding: 12px 14px;
  border: 1px solid rgba(23, 76, 67, .22);
  background: rgba(0, 198, 232, .07);
  color: var(--evergreen);
  font-size: 13px;
  font-weight: 700;
}

.assist-status[data-mode="error"] {
  border-color: rgba(189, 83, 70, .34);
  background: rgba(189, 83, 70, .08);
  color: var(--coral);
}

.assist-status[data-mode="loading"] {
  background: rgba(176, 122, 74, .09);
  color: #664321;
}

.step-assist-summary {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(23, 76, 67, .2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(238, 248, 249, .52)),
    var(--paper);
}

.step-assist-summary p,
.step-assist-questions {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.step-assist-questions {
  display: grid;
  gap: 7px;
  padding-top: 2px;
}

.step-assist-questions strong {
  color: var(--ink);
  font-size: 13px;
}

.step-assist-questions ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-assist-questions li {
  padding-left: 14px;
  position: relative;
}

.step-assist-questions li::before {
  content: "";
  position: absolute;
  top: .68em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--copper);
}

.form-step[data-step-title="Decision and economics"] .form-grid {
  grid-template-columns: 1fr;
}

.assist-results {
  display: grid;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.assist-review-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.assist-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}

.assist-action-caption {
  flex-basis: 100%;
  margin: 0 0 -2px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.assist-suggestion-list {
  display: grid;
  gap: 12px;
}

.assist-suggestion {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
}

.assist-suggestion.has-conflict {
  border-color: rgba(176, 122, 74, .42);
  background: #fffaf1;
}

.assist-suggestion.is-edited {
  border-color: rgba(0, 198, 232, .38);
}

.assist-suggestion.is-applied {
  border-color: rgba(23, 76, 67, .5);
  box-shadow: inset 3px 0 0 var(--evergreen);
}

.assist-suggestion.is-applied .assist-current-note {
  background: rgba(0, 198, 232, .08);
  color: var(--evergreen);
  font-weight: 750;
}

.assist-suggestion.is-ignored {
  opacity: .55;
}

.assist-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
}

.assist-check input {
  width: auto;
  margin-top: 3px;
}

.assist-check strong {
  display: block;
  font-size: 15px;
}

.assist-check em {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.assist-suggestion-head {
  justify-content: space-between;
  align-items: flex-start;
}

.assist-step-badge {
  padding: 6px 9px;
  border: 1px solid rgba(23, 76, 67, .18);
  background: rgba(246, 247, 244, .76);
  color: var(--evergreen);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.assist-draft-editor {
  display: grid;
  gap: 7px;
}

.assist-draft-editor span {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.assist-draft-editor textarea {
  min-height: 92px;
  background: rgba(255, 255, 255, .92);
}

.assist-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.assist-compare div {
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(246, 247, 244, .66);
}

.assist-compare span,
.assist-followups h5,
.assist-sources h5 {
  display: block;
  margin-bottom: 6px;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.assist-compare p,
.assist-rationale,
.assist-conflict,
.assist-current-note {
  margin: 0;
  color: #34413d;
  font-size: 13px;
  line-height: 1.45;
  white-space: pre-wrap;
}

.assist-rationale {
  color: var(--muted);
}

.assist-current-note {
  padding: 10px 12px;
  background: rgba(246, 247, 244, .64);
  color: var(--muted);
}

.field-assist-note {
  display: grid;
  gap: 4px;
  margin: 8px 0 0;
  padding: 9px 11px;
  border-left: 3px solid var(--evergreen);
  background: rgba(0, 198, 232, .06);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.field-assist-note strong {
  color: var(--evergreen);
}

.field-assist-note.is-owner {
  border-left-color: var(--copper);
  background: rgba(176, 122, 74, .08);
}

.field-assist-note.is-owner strong {
  color: #664321;
}

.field.has-assist-note input,
.field.has-assist-note select,
.field.has-assist-note textarea {
  border-color: rgba(23, 76, 67, .28);
  background: rgba(0, 198, 232, .055);
}

.text-button.inline {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--evergreen);
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.assist-conflict {
  color: #664321;
  font-weight: 700;
}

.assist-row-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.assist-row-actions .draft-action-secondary,
.assist-actions .draft-action-secondary {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border: 1px solid rgba(23, 76, 67, .24);
  background: rgba(255, 255, 255, .78);
  color: var(--evergreen);
  font: 700 13px/1 var(--sans);
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}

.assist-row-actions .draft-action-secondary:hover,
.assist-actions .draft-action-secondary:hover,
.assist-row-actions .draft-action-secondary:focus-visible,
.assist-actions .draft-action-secondary:focus-visible {
  border-color: rgba(6, 46, 42, .46);
  background: var(--glacier);
  color: var(--alpine);
  box-shadow: 0 10px 22px rgba(6, 46, 42, .08);
  outline: none;
  transform: translateY(-1px);
}

.assist-action-divider {
  width: 1px;
  height: 24px;
  background: rgba(7, 16, 17, .18);
}

.assist-action-divider[hidden] {
  display: none;
}

.assist-followups,
.assist-sources {
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(246, 247, 244, .58);
}

.assist-followups ul,
.assist-sources ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.assist-followups li,
.assist-sources li {
  display: grid;
  gap: 4px;
  color: #34413d;
  font-size: 13px;
}

.assist-followups span,
.assist-sources span {
  color: var(--muted);
}

.package-switcher {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.package-switcher button,
.package-option {
  --button-bg: transparent;
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 5px;
  min-height: auto;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  box-shadow: none;
}

.package-switcher button {
  font: 800 12px/1.2 var(--sans);
}

.package-switcher button em {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.package-switcher button.is-active,
.package-option.is-active {
  border-color: rgba(23, 76, 67, .72);
  background: rgba(23, 76, 67, .08);
  box-shadow: inset 0 0 0 2px rgba(0, 198, 232, .26);
}

.package-switcher button:hover,
.package-option:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(6, 46, 42, .10);
}

.progress-track {
  height: 6px;
  background: rgba(6, 46, 42, .09);
  overflow: hidden;
}

.progress-track span {
  display: block;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, var(--alpine), var(--cyan));
  transition: width .24s var(--ease);
}

.form-step {
  display: grid;
  gap: 18px;
}

.form-step[hidden] {
  display: none;
}

.field {
  display: grid;
  gap: 8px;
  align-content: start;
}

.field.full {
  grid-column: 1 / -1;
}

.intake-optional-group {
  padding: 14px;
  border: 1px solid rgba(15, 61, 62, .14);
  background: rgba(255, 255, 255, .72);
}

.intake-optional-group summary {
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.intake-optional-group > .form-grid {
  margin-top: 14px;
}

.field-helper {
  max-width: 760px;
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.field textarea + .field-helper,
.field input + .field-helper,
.field select + .field-helper,
.checkbox-grid + .field-helper {
  margin-top: 3px;
}

.xlsx-requirement {
  padding: 11px 12px;
  border-left: 3px solid var(--copper);
  background: rgba(176, 122, 74, .08);
  color: #664321;
}

.field-helper[data-status="error"] {
  color: var(--signal);
}

.field-helper[data-status="saved"] {
  color: var(--evergreen);
}

label {
  color: rgba(7, 16, 17, .70);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.start-page .form-panel label,
.start-page .form-panel .button,
.start-page .form-panel button,
.start-page .intake-support .button {
  text-transform: none;
}

.start-page .form-panel label:not(.assist-check):not(.package-option) {
  letter-spacing: .04em;
}

.start-page .form-panel .button,
.start-page .form-panel button,
.start-page .intake-support .button {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .03em;
}

.start-page .form-panel .eyebrow,
.start-page .form-panel .assist-draft-editor span,
.start-page .form-panel .assist-followups h5,
.start-page .form-panel .assist-sources h5 {
  text-transform: uppercase;
}

.optional-label {
  color: var(--muted);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 13px 14px;
  font: 600 15px/1.35 var(--sans);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(6, 46, 42, .38);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--alpine);
  box-shadow: var(--focus-ring);
}

input[type="file"]::file-selector-button {
  min-height: 34px;
  margin-right: 12px;
  border: 1px solid var(--line-strong);
  background: var(--glacier);
  color: var(--ink);
  font: 700 13px/1 var(--sans);
  cursor: pointer;
  transition: background .18s var(--ease), border-color .18s var(--ease);
}

input[type="file"]::file-selector-button:hover {
  background: var(--paper);
  border-color: rgba(6, 46, 42, .38);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-row input { width: auto; }

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.checkbox-grid label {
  min-height: 54px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .74);
  color: #34413d;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.checkbox-grid input {
  width: auto;
  flex: 0 0 auto;
  margin-top: 2px;
}

.checkbox-grid label span {
  display: grid;
  gap: 4px;
}

.checkbox-grid label small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.intake-authorization-check {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(15, 61, 62, .18);
  background: rgba(255, 255, 255, .78);
}

.intake-authorization-check label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.42;
}

.intake-authorization-check input {
  width: auto;
  flex: 0 0 auto;
  margin-top: 3px;
}

.intake-authorization-check p {
  margin: 0 0 0 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.checkout-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.checkout-choice-grid-reworked {
  grid-template-columns: minmax(280px, .95fr) minmax(320px, 1fr);
  align-items: stretch;
}

.package-option {
  gap: 10px;
  padding: 18px;
  min-height: 178px;
  position: relative;
}

.package-option-anchor {
  min-height: 360px;
  padding: clamp(22px, 3vw, 34px);
  border-width: 2px;
  box-shadow: var(--soft-shadow);
}

.package-option.compact {
  min-height: 118px;
}

.package-option.featured {
  border-color: rgba(176, 122, 74, .72);
  background: #fffaf1;
}

.package-option span {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.package-option .package-title {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.package-option .badge {
  width: fit-content;
  padding: 7px 10px;
  background: var(--evergreen);
  color: var(--paper);
  border-radius: 999px;
}

.package-option strong {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.05;
}

.package-option strong em {
  color: var(--evergreen);
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 60px);
  font-style: normal;
  font-weight: 650;
  letter-spacing: 0;
}

.package-option.compact strong em {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(32px, 3.2vw, 36px);
  font-weight: 500;
}

.package-option .unit-price {
  color: var(--evergreen);
  font-weight: 850;
  font-size: 15px;
}

.package-option.is-active::after {
  content: "Selected";
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 8px;
  border: 1px solid rgba(23, 76, 67, .2);
  background: rgba(255, 255, 255, .86);
  color: var(--evergreen);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-option b {
  margin-top: auto;
  color: var(--evergreen);
  letter-spacing: 0;
  font-size: 13px;
  text-transform: none;
}

.package-option small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.checkout-reassurance {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(23, 76, 67, .28);
  background: rgba(0, 198, 232, .07);
}

.checkout-reassurance-priority {
  gap: 10px;
  border-color: rgba(176, 122, 74, .36);
  background:
    linear-gradient(90deg, rgba(176, 122, 74, .08), rgba(255, 255, 255, .78)),
    var(--glacier);
}

.checkout-reassurance strong {
  color: var(--evergreen);
}

.checkout-reassurance p {
  margin: 0;
  color: var(--muted);
}

.post-intake-explainer,
.referral-code-panel,
.more-package-options {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .74);
}

.step-package {
  gap: 18px;
}

.package-section-h3 {
  margin-top: 4px !important;
}

.intake-saved-banner,
.intake-saved-footnote,
.package-context-box {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(23, 76, 67, .22);
  background:
    linear-gradient(90deg, rgba(23, 76, 67, .06), rgba(255, 255, 255, .78)),
    var(--glacier);
}

.intake-saved-banner,
.intake-saved-footnote {
  color: var(--evergreen);
  font-family: var(--sans);
  font-size: 14px;
}

.package-context-box {
  border-color: rgba(176, 122, 74, .32);
  background:
    linear-gradient(90deg, rgba(176, 122, 74, .08), rgba(255, 255, 255, .80)),
    var(--glacier);
}

.package-context-box p,
.intake-saved-footnote {
  margin: 0;
}

.package-context-box strong {
  color: var(--evergreen);
}

.selected-package-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(7, 16, 17, .16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(246, 247, 244, .74)),
    var(--paper);
  box-shadow: var(--soft-shadow);
}

.selected-package-panel .eyebrow {
  margin: 0;
}

.selected-package-summary {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
}

.selected-package-summary strong,
.selected-package-summary em {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  font-style: normal;
  line-height: .96;
}

.selected-package-summary span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 750;
}

.selected-package-reassurance {
  margin: 0;
  color: var(--evergreen);
  font-size: 14px;
}

.selected-package-panel .muted {
  margin: 0;
}

.bundle-confirmation {
  padding: 16px 18px;
  border: 1px solid rgba(217, 93, 73, .34);
  background: rgba(217, 93, 73, .07);
}

.bundle-confirmation label {
  display: flex !important;
  gap: 12px;
  align-items: flex-start;
  margin: 0 !important;
  color: var(--ink);
  font-family: var(--sans) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.bundle-confirmation input {
  margin-top: 3px;
  accent-color: var(--evergreen);
}

.intake-package-grid,
.package-grid--compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.intake-package-grid .package-option,
.package-grid--compact .package-option {
  display: grid;
  gap: 9px;
  min-height: 0;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
  color: var(--ink);
  cursor: pointer;
}

.intake-package-grid .package-option input,
.package-grid--compact .package-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.intake-package-grid .package-option--upsell {
  border-color: rgba(176, 122, 74, .42);
  background: rgba(255, 255, 255, .90);
}

.intake-package-grid .package-option:hover,
.package-grid--compact .package-option:hover,
.intake-package-grid .package-option:focus-within,
.package-grid--compact .package-option:focus-within {
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}

.intake-package-grid .package-option.is-active,
.intake-package-grid .package-option.package-option--selected,
.package-grid--compact .package-option.is-active,
.package-grid--compact .package-option.package-option--selected {
  border-color: rgba(23, 76, 67, .68);
  background: rgba(23, 76, 67, .08);
  box-shadow: inset 0 0 0 2px rgba(0, 198, 232, .22);
}

.intake-package-grid .package-option.is-active::after,
.intake-package-grid .package-option.package-option--selected::after,
.package-grid--compact .package-option.is-active::after,
.package-grid--compact .package-option.package-option--selected::after {
  content: "Selected";
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 8px;
  border: 1px solid rgba(23, 76, 67, .2);
  background: rgba(255, 255, 255, .88);
  color: var(--evergreen);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.package-option-badge,
.package-option-title,
.package-option-price,
.package-option-unit,
.package-option-desc {
  display: block;
}

.intake-package-grid .package-option span,
.package-grid--compact .package-option span {
  letter-spacing: 0;
  text-transform: none;
}

.intake-package-grid .package-option-badge {
  width: fit-content;
  padding: 6px 8px;
  background: var(--evergreen);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
}

.package-option-title {
  color: var(--ink) !important;
  font-family: var(--sans) !important;
  font-size: clamp(22px, 2.4vw, 30px) !important;
  font-weight: 900 !important;
}

.package-option-price {
  color: var(--evergreen) !important;
  font-family: var(--serif) !important;
  font-size: clamp(42px, 5vw, 60px) !important;
  line-height: .92;
}

.package-grid--compact .package-option-price {
  font-size: clamp(34px, 4vw, 44px) !important;
}

.package-option-unit {
  color: var(--evergreen) !important;
  font-family: var(--sans) !important;
  font-size: 14px !important;
  font-weight: 850 !important;
}

.package-option-desc {
  color: var(--muted) !important;
  font-family: var(--sans) !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  line-height: 1.45;
}

.package-more-options summary {
  color: var(--evergreen);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}

.referral-code-panel label,
.form-step > h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.post-intake-explainer summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--evergreen);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.post-intake-explainer summary::-webkit-details-marker {
  display: none;
}

.post-intake-explainer summary::marker {
  content: "";
  font-size: 0;
}

.post-intake-explainer > div {
  display: grid;
  gap: 8px;
  padding-top: 12px;
}

.post-intake-explainer p,
.referral-code-panel p,
.more-package-options p {
  margin: 0;
  color: var(--muted);
}

.post-intake-explainer p {
  color: #34413d;
  line-height: 1.55;
}

.post-intake-explainer p + p {
  padding-top: 2px;
}

.referral-code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.referral-code-row .button[disabled] {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.referral-code-status {
  min-height: 20px;
  font-size: 13px;
  font-weight: 800;
}

.referral-code-status[data-mode="applied"] {
  color: var(--evergreen);
}

.referral-code-status[data-mode="applied"]::before {
  content: "✓ ";
}

.referral-code-status[data-mode="error"] {
  color: var(--coral);
}

.referral-code-status[data-mode="loading"] {
  color: #664321;
}

.more-package-options {
  background: rgba(246, 247, 244, .58);
}

.step-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.step-help-line {
  margin: -4px 0 0;
  color: #34413d;
  font-size: 14px;
  line-height: 1.5;
}

.step-help-line a {
  color: var(--evergreen);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.step-actions button:last-child {
  margin-left: auto;
}

.step-actions [data-save-resume] {
  margin-right: auto;
}

.color-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.notice {
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--glacier);
  color: var(--muted);
}

.privacy-banner {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 250;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(720px, calc(100vw - 28px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(7, 26, 25, .96);
  color: var(--paper);
  box-shadow: 0 22px 70px rgba(7, 16, 17, .24);
}

.privacy-banner strong {
  display: block;
  margin-bottom: 4px;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
}

.privacy-banner p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  line-height: 1.45;
}

.privacy-banner span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
}

.privacy-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 8px;
}

.privacy-banner .button {
  min-height: 38px;
  padding: 9px 13px;
  white-space: nowrap;
}

.privacy-banner .privacy-primary {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--alpine);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .2);
}

.privacy-banner .privacy-secondary,
.privacy-banner .privacy-policy-link {
  min-height: 38px;
  padding: 8px 4px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .64);
  font: inherit;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  box-shadow: none;
  cursor: pointer;
}

.privacy-banner .privacy-secondary:hover,
.privacy-banner .privacy-secondary:focus-visible,
.privacy-banner .privacy-policy-link:hover,
.privacy-banner .privacy-policy-link:focus-visible {
  color: var(--paper);
  transform: none;
  box-shadow: none;
}

.error { color: var(--coral); }

.dashboard-layout {
  display: grid;
  gap: 20px;
}

.dashboard-panel h2,
.method-step h2,
.fit-section h2,
.deliverable-section h2,
.limitation-panel h2 {
  font-size: clamp(30px, 3vw, 50px);
  line-height: 1.02;
}

.dashboard-hero {
  background:
    radial-gradient(circle at 76% 8%, rgba(0, 198, 232, .12), transparent 26rem),
    var(--glacier);
}

.dashboard-hero .section-inner {
  width: min(1240px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(360px, .58fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: end;
}

.dashboard-hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 5.4vw, 76px);
}

.dashboard-hero p {
  max-width: 680px;
}

.dashboard-hero-strip {
  max-width: 820px;
  margin: 38px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dashboard-hero-strip div {
  padding: 16px 16px 15px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .76);
}

.dashboard-hero-strip dt {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.dashboard-hero-strip dd {
  margin: 9px 0 0;
  font-weight: 800;
}

.dashboard-hero-card {
  position: relative;
  min-height: 390px;
  padding: 26px;
  border: 1px solid var(--line);
  background:
    repeating-radial-gradient(circle at 78% 18%, transparent 0 17px, rgba(7, 16, 17, .05) 18px 19px),
    linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(246, 247, 244, .78));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dashboard-hero-card::after {
  content: "";
  position: absolute;
  inset: -20% auto auto 72%;
  width: 1px;
  height: 150%;
  background: var(--copper);
  transform: rotate(29deg);
}

.dashboard-card-top {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  margin-bottom: 30px;
}

.dashboard-card-top span,
.dashboard-preview-grid span {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.dashboard-card-top strong {
  max-width: 320px;
  font-family: var(--serif);
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1;
}

.dashboard-progress-rail {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.dashboard-progress-rail span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.dashboard-progress-rail span::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
}

.dashboard-progress-rail .complete,
.dashboard-progress-rail .active {
  color: var(--ink);
}

.dashboard-progress-rail .complete::before {
  background: var(--evergreen);
  border-color: var(--evergreen);
}

.dashboard-progress-rail .active::before {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 0 5px rgba(0, 198, 232, .14);
}

.dashboard-preview-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.dashboard-preview-grid div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .82);
}

.dashboard-preview-grid strong {
  display: block;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.15;
}

.dashboard-preview-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(246, 247, 244, .72)),
    var(--paper);
}

.dashboard-preview-mockup {
  display: grid;
  grid-template-columns: minmax(280px, .48fr) minmax(320px, 1fr);
  gap: 18px;
}

.preview-status-card,
.preview-feature-list article {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .82);
}

.preview-status-card {
  padding: 22px;
}

.preview-status-card > span {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.preview-status-card > strong {
  display: block;
  margin: 12px 0 22px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  line-height: 1;
}

.preview-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.preview-feature-list article {
  min-height: 128px;
  padding: 18px;
}

.preview-feature-list strong {
  display: block;
  color: var(--evergreen);
}

.preview-feature-list span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.dashboard-status-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(246, 247, 244, .84)),
    var(--paper);
}

.dashboard-status-panel::after {
  content: "";
  position: absolute;
  inset: -45% auto auto 78%;
  width: 1px;
  height: 180%;
  background: rgba(176, 122, 74, .58);
  transform: rotate(29deg);
}

.dashboard-status-panel > * {
  position: relative;
  z-index: 2;
}

.dashboard-status-panel h2 {
  overflow-wrap: anywhere;
}

.dashboard-email-break {
  overflow-wrap: anywhere;
}

.access-grid {
  grid-template-columns: minmax(260px, 1fr) minmax(220px, .42fr);
  align-items: end;
}

.access-button-field button {
  width: 100%;
  white-space: nowrap;
}

.decision-panel,
.prep-panel {
  background: rgba(255, 255, 255, .86);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.decision-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--paper), rgba(246, 247, 244, .76));
}

.decision-grid span,
.method-step > span,
.method-output-grid span {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.decision-grid p,
.method-step p,
.fit-grid p,
.method-output-grid p,
.limitation-panel p,
.support-panel p {
  color: var(--muted);
}

.decision-grid h3 {
  margin-top: 16px;
}

.dashboard-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.dashboard-checklist li {
  min-height: 88px;
  padding: 18px 18px 18px 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  position: relative;
}

.dashboard-checklist li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--evergreen);
  background: var(--cyan);
}

.support-panel {
  background:
    repeating-radial-gradient(circle at 82% 18%, transparent 0 16px, rgba(255, 255, 255, .055) 17px 18px),
    var(--alpine);
  color: var(--paper);
  padding-top: clamp(34px, 4vw, 56px);
  padding-bottom: clamp(34px, 4vw, 56px);
}

.support-panel p {
  max-width: 740px;
  color: rgba(255, 255, 255, .74);
}

.support-panel .text-link { color: var(--paper); }

.method-section {
  background: rgba(255, 255, 255, .7);
}

.method-timeline {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.method-step {
  display: grid;
  grid-template-columns: 90px minmax(280px, .72fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: start;
  padding: clamp(28px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
}

.method-step:last-child { border-bottom: 0; }

.method-step h2,
.method-step p {
  margin: 0;
}

.fit-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(520px, 1fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: start;
}

.fit-grid {
  display: grid;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--soft-shadow);
}

.fit-grid article {
  padding: 26px;
  border-bottom: 1px solid var(--line);
}

.fit-grid article:last-child { border-bottom: 0; }

.method-output-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.method-output-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--soft-shadow);
}

.method-output-grid h3 {
  margin-top: 18px;
}

.limitation-panel {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(300px, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.limitation-panel p { margin: 0; }

.status-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(300px, .42fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.status-main h2 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 56px);
}

.status-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status-pill.ready {
  border-color: rgba(23, 76, 67, .32);
  background: rgba(23, 76, 67, .08);
  color: var(--alpine);
}

.status-pill.failed {
  border-color: rgba(217, 93, 73, .34);
  background: rgba(217, 93, 73, .08);
  color: var(--coral);
}

.status-pill.pending,
.status-pill.running {
  border-color: rgba(0, 198, 232, .34);
  background: rgba(0, 198, 232, .08);
  color: var(--alpine);
}

.status-actions {
  align-items: stretch;
}

.delivery-actions {
  width: 100%;
  display: grid;
  gap: 12px;
  align-items: start;
}

.delivery-primary {
  justify-self: start;
}

.delivery-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.delivery-note {
  max-width: 46ch;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.status-actions .notice {
  width: 100%;
  margin: 0;
}

.status-progress {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(7, 16, 17, .10);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(246, 247, 244, .68)),
    var(--paper);
  box-shadow: 0 18px 48px rgba(7, 16, 17, .06);
}

.status-progress-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.status-progress-head span {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.status-progress-head strong {
  max-width: 520px;
  color: var(--evergreen);
  font-size: 15px;
  text-align: right;
}

.status-progress-rail {
  height: 6px;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(90deg, rgba(7, 16, 17, .08) 0 1px, transparent 1px 20%),
    rgba(7, 16, 17, .05);
  overflow: hidden;
}

.status-progress-rail span {
  display: block;
  width: var(--progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--evergreen), var(--cyan) 52%, var(--copper));
  box-shadow: 0 0 18px rgba(0, 198, 232, .24);
  animation: status-progress-fill .9s var(--ease-precise) both;
}

.status-progress.is-failed .status-progress-rail span {
  background: linear-gradient(90deg, var(--evergreen), var(--coral));
  box-shadow: 0 0 18px rgba(217, 93, 73, .18);
}

.status-milestones {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.status-milestones li {
  position: relative;
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 10px;
  min-height: 84px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .62);
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease);
}

.status-milestones li.active {
  border-color: rgba(0, 198, 232, .44);
  background: rgba(0, 198, 232, .08);
  animation: milestone-lift .7s var(--ease-precise) both;
}

.status-milestones li.complete {
  border-color: rgba(23, 76, 67, .20);
  background: rgba(23, 76, 67, .055);
}

.status-milestones li.failed {
  border-color: rgba(217, 93, 73, .34);
  background: rgba(217, 93, 73, .08);
}

.milestone-node {
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
}

.status-milestones li.complete .milestone-node {
  border-color: var(--evergreen);
  background: var(--evergreen);
}

.status-milestones li.active .milestone-node {
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(0, 198, 232, .12);
  animation: milestone-pulse 1.8s var(--ease) infinite;
}

.status-milestones li.failed .milestone-node {
  border-color: var(--coral);
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(217, 93, 73, .12);
}

.status-milestones strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}

.status-milestones span:not(.milestone-node) {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

@keyframes status-progress-fill {
  from { width: 0; }
  to { width: var(--progress, 0%); }
}

@keyframes milestone-lift {
  from {
    opacity: .72;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes milestone-pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(0, 198, 232, .10); }
  50% { box-shadow: 0 0 0 10px rgba(0, 198, 232, .04); }
}

.export-actions {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.export-actions .ghost {
  background: transparent;
  color: var(--alpine);
  border: 1px solid var(--line-strong);
}

.export-actions .ghost:hover {
  background: var(--glacier);
}

.export-message {
  min-height: 18px;
  color: var(--muted);
  font-size: 12px;
}

.package-lock {
  display: grid;
  gap: 14px;
  width: 100%;
}

.list-stack {
  display: grid;
  gap: 12px;
}

.list-card {
  padding: 18px;
}

.package-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.credit-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(280px, .65fr);
  gap: 16px;
}

.credit-balance-card,
.credit-actions-card,
.referral-link-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .62);
}

.credit-balance-card strong {
  font-family: var(--serif);
  font-size: clamp(60px, 8vw, 94px);
  line-height: .9;
  color: var(--evergreen);
}

.credit-button-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.referral-dashboard {
  margin-top: 16px;
}

.referral-link-card {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  align-items: center;
}

.referral-link-actions {
  display: grid;
  gap: 10px;
}

.referral-link-actions input {
  min-width: 0;
}

.referral-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.referral-metrics div {
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .58);
}

.referral-metrics span,
.referral-progress-label span {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.referral-metrics strong {
  display: block;
  margin-top: 6px;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  color: var(--evergreen);
}

.referral-metric-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.referral-progress {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(176, 122, 74, .32);
  background: rgba(255, 250, 241, .62);
}

.referral-progress-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.referral-progress-label strong {
  font-size: 15px;
}

.referral-progress-track {
  height: 10px;
  border: 1px solid var(--line);
  background: rgba(7, 16, 17, .08);
  overflow: hidden;
}

.referral-progress-bar {
  display: block;
  width: var(--progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--evergreen), var(--copper));
}

.referral-row {
  grid-template-columns: 1fr;
}

.referral-history {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.referral-history-head {
  font-size: 15px;
}

.revision-request {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .62);
}

.revision-request summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--evergreen);
}

.revision-request form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.revision-request label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--evergreen);
}

.revision-message {
  color: var(--muted);
  font-size: 13px;
}

.artifact-pending {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.output {
  min-height: 90px;
  white-space: pre-wrap;
  background: var(--ink);
  color: var(--paper);
  padding: 16px;
}

.empty-status-grid {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(280px, .42fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}

.empty-status-grid h2 {
  max-width: 680px;
}

.status-timeline-mini {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .72);
}

.status-timeline-mini span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.status-timeline-mini span::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
}

.status-timeline-mini .active {
  color: var(--ink);
}

.status-timeline-mini .active::before {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 0 5px rgba(0, 198, 232, .14);
}

.sample-library {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.sample-library-card {
  min-height: 360px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(246, 247, 244, .72)),
    var(--paper);
  box-shadow: var(--soft-shadow);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}

.sample-library-card::after {
  content: "";
  position: absolute;
  inset: -42% auto auto 82%;
  width: 1px;
  height: 180%;
  background: rgba(176, 122, 74, .35);
  transform: rotate(29deg);
}

.sample-library-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.sample-library-card h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 500;
  line-height: .98;
}

.sample-library-card p {
  color: var(--muted);
}

.sample-signal {
  display: grid;
  gap: 8px;
  min-width: 162px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
  font-size: 13px;
}

.sample-signal span {
  display: block;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sample-library-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.sample-library-meta div {
  padding: 14px;
  background: rgba(255, 255, 255, .82);
}

.sample-library-meta span {
  display: block;
  margin-bottom: 7px;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sample-library-card .text-link {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.pricing-page-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .52fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.pricing-plans-section {
  padding-top: clamp(36px, 5vw, 72px);
  scroll-margin-top: 94px;
}

.pricing-choice-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: clamp(28px, 4vw, 48px);
  padding: clamp(26px, 4vw, 50px);
  border: 1px solid var(--border-hairline);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(246, 247, 244, .68)),
    var(--paper);
  box-shadow: var(--shadow);
}

.pricing-choice-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 16, 17, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 16, 17, .026) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 68%);
}

.pricing-choice-panel > * {
  position: relative;
  z-index: 1;
}

.pricing-choice-head {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(280px, .36fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: start;
}

.pricing-choice-head h2,
.pricing-inclusion-layout h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 3.8vw, 54px);
}

.pricing-value-note {
  padding: 22px;
  border: 1px solid var(--border-hairline);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(246, 247, 244, .82)),
    var(--paper);
}

.pricing-value-note strong {
  display: block;
  color: var(--evergreen);
  font-size: 18px;
  line-height: 1.25;
}

.pricing-value-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pricing-page-panel .price {
  font-family: var(--serif);
  font-size: clamp(74px, 10vw, 138px);
  font-weight: 500;
  line-height: .88;
}

.pricing-page-panel-bundles {
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1.1fr);
}

.pricing-bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pricing-bundle-grid-wide {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pricing-recommended-shell {
  display: grid;
  gap: clamp(20px, 3vw, 34px);
}

.pricing-secondary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 14px;
  max-width: 1030px;
  margin: 0 auto;
}

.bundle-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 308px;
  padding: 20px;
  border: 1px solid var(--border-hairline);
  background: rgba(255, 255, 255, .82);
  transition: transform .32s var(--ease), border-color .32s var(--ease), box-shadow .32s var(--ease), background .32s var(--ease);
}

.bundle-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--copper);
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .32s var(--ease), background .32s var(--ease);
}

.bundle-card.featured {
  border-color: rgba(6, 46, 42, .72);
  background: var(--ink);
}

.bundle-card:hover,
.bundle-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(176, 122, 74, .46);
  box-shadow: var(--soft-shadow);
}

.bundle-card:hover::after,
.bundle-card:focus-within::after {
  transform: scaleX(1);
}

.pricing-anchor-card {
  grid-column: span 2;
  min-height: 0;
  padding: clamp(24px, 3vw, 34px);
  border-width: 2px;
  box-shadow: var(--shadow);
}

.pricing-anchor-card-dominant {
  grid-template-rows: auto 1fr;
  width: min(1030px, 100%);
  min-height: 0;
  margin: 0 auto;
  padding: clamp(26px, 3.4vw, 40px);
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .07), transparent 38%),
    var(--ink);
  box-shadow: var(--deep-shadow);
  color: var(--paper);
}

.pricing-anchor-card-dominant::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
}

.pricing-anchor-card-dominant > * {
  position: relative;
  z-index: 1;
}

.pricing-dominant-grid {
  display: grid;
  grid-template-columns: minmax(220px, .52fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  margin-top: clamp(14px, 2vw, 22px);
}

.pricing-dominant-price {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  align-self: start;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
}

.pricing-dominant-copy {
  position: relative;
  display: grid;
  gap: 14px;
}

.pricing-dominant-copy p {
  max-width: 580px;
  color: rgba(255, 255, 255, .68);
}

.pricing-anchor-card-dominant .bundle-price {
  color: var(--paper);
  font-size: clamp(58px, 6vw, 78px);
}

.pricing-anchor-card-dominant h3 {
  color: var(--paper);
  font-size: clamp(32px, 3.6vw, 46px);
}

.pricing-status-line,
.bundle-card .badge {
  width: fit-content;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--copper);
  color: var(--copper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.bundle-card h3 {
  margin: 0;
  font-size: 24px;
}

.bundle-price {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 54px);
  line-height: .95;
  color: var(--evergreen);
}

.bundle-card .bundle-unit {
  color: var(--evergreen);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.bundle-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.pricing-anchor-card-dominant .bundle-unit {
  color: var(--cyan);
}

.pricing-anchor-card-dominant .bundle-mini-list li {
  color: rgba(255, 255, 255, .76);
}

.pricing-anchor-card-dominant .bundle-mini-list li::before {
  background: var(--cyan);
}

.pricing-anchor-card-dominant .button {
  --button-bg: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

.bundle-card .button {
  justify-self: start;
  align-self: end;
}

.pricing-secondary-grid .bundle-card .button {
  width: 100%;
  justify-self: stretch;
}

.bundle-mini-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 2px 0 0;
  list-style: none;
}

.bundle-mini-list li {
  position: relative;
  padding-left: 16px;
  color: #34413d;
  font-size: 13px;
}

.bundle-mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 7px;
  height: 7px;
  background: var(--copper);
}

.pricing-package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.pricing-package-grid .package-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: 12px;
  min-height: 100%;
  padding: clamp(20px, 2.4vw, 26px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .82);
  box-shadow: none;
  transition: transform .32s var(--ease), border-color .32s var(--ease), box-shadow .32s var(--ease), background .32s var(--ease);
}

.pricing-package-grid .package-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 34px;
  height: 3px;
  background: var(--copper);
}

.pricing-package-grid .package-card:hover,
.pricing-package-grid .package-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(176, 122, 74, .46);
  box-shadow: var(--soft-shadow);
}

.pricing-package-grid .package-card--featured {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .07), transparent 42%),
    var(--ink);
  border-color: rgba(255, 255, 255, .16);
  color: var(--paper);
  box-shadow: var(--deep-shadow);
}

.package-badge {
  width: fit-content;
  padding: 7px 9px;
  background: var(--copper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pricing-package-grid .package-card h3,
.pricing-package-grid .package-price,
.pricing-package-grid .package-unit,
.pricing-package-grid .package-pitch,
.pricing-package-grid .package-context,
.pricing-package-grid .package-features {
  margin: 0;
}

.pricing-package-grid .package-card h3 {
  font-size: clamp(25px, 2.2vw, 34px);
}

.pricing-package-grid .package-price {
  color: var(--evergreen);
  font-family: var(--serif);
  font-size: clamp(42px, 4vw, 56px);
  line-height: .92;
}

.pricing-package-grid .package-unit {
  color: var(--evergreen);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 850;
}

.pricing-package-grid .package-pitch,
.pricing-package-grid .package-context {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.52;
}

.pricing-package-grid .package-features {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.pricing-package-grid .package-features li {
  position: relative;
  padding-left: 16px;
  color: #34413d;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.42;
}

.pricing-package-grid .package-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  background: var(--copper);
}

.pricing-package-grid .package-card--featured h3,
.pricing-package-grid .package-card--featured .package-price {
  color: var(--paper);
}

.pricing-package-grid .package-card--featured .package-unit {
  color: var(--cyan);
}

.pricing-package-grid .package-card--featured .package-pitch,
.pricing-package-grid .package-card--featured .package-context,
.pricing-package-grid .package-card--featured .package-features li {
  color: rgba(255, 255, 255, .72);
}

.pricing-package-grid .package-card--featured .button {
  --button-bg: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

.pricing-anchor-card-dominant .pricing-dominant-copy p {
  color: rgba(255, 255, 255, .68);
}

.pricing-anchor-card-dominant .bundle-mini-list li {
  color: rgba(255, 255, 255, .76);
}

.pricing-anchor-card-dominant .bundle-mini-list li::before {
  background: var(--cyan);
}

.pricing-inclusion-layout {
  display: grid;
  grid-template-columns: minmax(0, .58fr) minmax(420px, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
  padding-top: clamp(20px, 3vw, 34px);
  border-top: 1px solid var(--line);
}

.what-this-replaces {
  display: grid;
  gap: 14px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(23, 76, 67, .18);
  background:
    linear-gradient(135deg, rgba(246, 247, 244, .82), rgba(255, 255, 255, .94)),
    var(--paper);
}

.what-this-replaces h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 44px);
}

.what-this-replaces p {
  max-width: 880px;
  margin: 0;
  color: #34413d;
  font-size: 16px;
}

.competitive-contrast-section,
.hvs-reference-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, .76), rgba(246, 247, 244, .94));
}

.competitive-contrast-panel,
.hvs-reference-panel,
.pricing-stack-section {
  display: grid;
  gap: 16px;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--border-hairline);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow);
}

.competitive-contrast-panel h2,
.pricing-stack-section h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
}

.hvs-reference-panel h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
}

.competitive-contrast-panel p,
.hvs-reference-panel p {
  max-width: 900px;
  margin: 0;
  color: #34413d;
  font-size: clamp(16px, 1.25vw, 18px);
}

.section-not-feasibility {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(246, 247, 244, .94)),
    var(--glacier);
}

.section-not-feasibility .competitive-contrast-panel {
  box-shadow: var(--soft-shadow);
}

.section-founder {
  background: var(--paper);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.founder-photo {
  display: grid;
  gap: 12px;
  text-align: center;
}

.founder-photo img,
.founder-photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 76, 67, .18);
  background:
    linear-gradient(135deg, rgba(23, 76, 67, .08), rgba(176, 122, 74, .10)),
    var(--glacier);
  box-shadow: var(--soft-shadow);
}

.founder-photo img {
  height: auto;
  object-fit: cover;
  filter: grayscale(.15);
}

.founder-photo-placeholder {
  display: grid;
  place-items: center;
  color: var(--evergreen);
  font-family: var(--serif);
  font-size: clamp(72px, 8vw, 104px);
  line-height: 1;
}

.founder-photo-caption {
  margin: 0;
  color: var(--zinc);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.founder-copy {
  display: grid;
  gap: 14px;
}

.founder-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
}

.founder-copy p {
  max-width: 800px;
  margin: 0;
  color: #34413d;
  font-size: 16px;
  line-height: 1.62;
}

.founder-signoff {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--evergreen) !important;
  font-weight: 750;
}

.founder-cta a {
  color: var(--evergreen);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
}

.founder-cta a:hover {
  color: var(--copper);
  text-decoration: underline;
}

.bundle-upsell {
  background:
    linear-gradient(180deg, var(--glacier), rgba(255, 255, 255, .92)),
    var(--glacier);
}

.bundle-upsell-copy {
  max-width: 860px;
  margin: 0 auto clamp(24px, 4vw, 42px);
}

.bundle-upsell-copy h2 {
  margin: 10px 0 16px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
}

.bundle-upsell-copy .lede {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.58;
}

.bundle-upsell-card {
  width: min(820px, 100%);
  min-height: 0;
  margin: 0 auto;
  padding: clamp(24px, 3.4vw, 38px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.bundle-card-headline {
  display: grid;
  gap: 8px;
}

.bundle-label {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.bundle-upsell-card .bundle-price {
  color: var(--evergreen);
  font-size: clamp(54px, 6vw, 76px);
}

.bundle-features {
  display: grid;
  gap: 10px;
  padding: 18px 0 0;
  margin: 6px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.bundle-features li {
  position: relative;
  padding-left: 18px;
  color: #34413d;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 650;
}

.bundle-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  background: var(--copper);
}

.bundle-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}

.pricing-stack-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--border-hairline);
  background: var(--border-hairline);
}

.pricing-stack-grid article {
  display: grid;
  gap: 10px;
  min-height: 220px;
  padding: clamp(18px, 2.3vw, 28px);
  background: rgba(255, 255, 255, .92);
}

.pricing-stack-grid h3 {
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pricing-stack-grid p {
  margin: 0;
  color: #34413d;
  font-size: 15px;
}

.referral-strip {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(280px, .7fr);
  gap: clamp(18px, 4vw, 46px);
  align-items: center;
  margin-top: 22px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .72);
  scroll-margin-top: 94px;
}

.referral-strip-prominent {
  border-color: rgba(176, 122, 74, .42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 250, 241, .78)),
    var(--paper);
  box-shadow: var(--soft-shadow);
}

.referral-strip h2 {
  margin: 8px 0 0;
  font-size: clamp(28px, 3.2vw, 44px);
}

.referral-proof {
  grid-template-columns: minmax(0, .78fr) minmax(320px, .72fr);
  align-items: start;
}

.referral-proof > .referral-example,
.referral-proof > .referral-fine-print {
  grid-column: 1 / -1;
}

.referral-math {
  display: grid;
  gap: 12px;
}

.referral-math-rows p {
  padding: 16px 18px;
  border: 1px solid rgba(176, 122, 74, .26);
  background: rgba(255, 255, 255, .78);
}

.referral-math p {
  margin: 0;
  color: #34413d;
}

.referral-math strong {
  color: var(--evergreen);
}

.referral-benefit-list {
  display: grid;
  gap: 12px;
}

.referral-benefit-list p {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(176, 122, 74, .26);
  background: rgba(255, 255, 255, .8);
  color: var(--evergreen);
  font-size: 16px;
  line-height: 1.35;
}

.referral-example {
  display: grid;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(176, 122, 74, .24);
}

.referral-example p,
.referral-fine-print {
  margin: 0;
  color: #34413d;
}

.buyer-faq {
  margin-top: 22px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .76);
}

.buyer-faq h2 {
  font-size: clamp(30px, 3.4vw, 48px);
}

.admin-body {
  background: var(--paper);
  overflow-x: hidden;
}

.admin-shell {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 56px;
  display: grid;
  gap: 14px;
}

.admin-toolbar,
.admin-panel,
.admin-summary article {
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .82);
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
}

.admin-toolbar h1,
.admin-panel h2 {
  margin: 4px 0;
  font-family: var(--sans);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0;
}

.admin-toolbar p {
  margin: 0;
  color: var(--muted);
}

.admin-login,
.admin-login-row {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.admin-login-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.admin-login input,
.admin-filter-row select,
.admin-upload-form input {
  min-width: 0;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.admin-summary article {
  display: grid;
  gap: 8px;
  min-height: 88px;
  padding: 14px 16px;
}

.admin-summary span,
.admin-table span {
  color: var(--muted);
  font-size: 12px;
}

.admin-summary strong {
  font-family: var(--sans);
  font-size: 26px;
  line-height: 1;
  color: var(--evergreen);
}

.admin-panel {
  padding: 18px 20px;
}

.admin-grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}

.admin-filter-row,
.admin-action-row,
.admin-detail-grid,
.admin-upload-form {
  display: grid;
  gap: 12px;
}

.admin-filter-row,
.admin-action-row {
  grid-auto-flow: column;
  align-items: center;
  justify-content: end;
}

.admin-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.admin-table th,
.admin-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.admin-table th {
  color: var(--evergreen);
  font-size: 12px;
  text-transform: uppercase;
}

.text-button {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--evergreen);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.text-button:hover {
  transform: none;
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.credit-access-link {
  width: fit-content;
  margin-top: 4px;
  color: rgba(7, 16, 17, .56);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admin-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.admin-detail-grid article,
.admin-upload-form,
.admin-mini-list {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .7);
}

.admin-upload-form {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  margin-top: 18px;
}

.admin-upload-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--evergreen);
}

.section-head.compact {
  align-items: start;
  gap: 12px;
}

.outbound-workbench {
  margin-top: 18px;
}

.outbound-card {
  gap: 14px;
}

.outbound-editor,
.outbound-feedback {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.outbound-editor label,
.outbound-feedback label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--evergreen);
}

.outbound-editor input,
.outbound-editor textarea,
.outbound-editor select,
.outbound-feedback input {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 12px;
}

.outbound-editor textarea {
  min-height: 180px;
  resize: vertical;
  line-height: 1.45;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 12px;
}

.check-row {
  grid-template-columns: auto 1fr;
  align-items: center;
  font-weight: 600;
  color: var(--muted);
}

.admin-mini-list {
  margin-top: 14px;
}

.admin-mini-list ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.admin-json-preview {
  margin-top: 12px;
}

.admin-json-preview summary {
  cursor: pointer;
  color: var(--evergreen);
  font-weight: 800;
}

.admin-json-preview pre {
  max-height: 320px;
  overflow: auto;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(246, 247, 244, .72);
  color: #25312d;
  font: 12px/1.5 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  white-space: pre-wrap;
}

.admin-digest-text {
  max-width: 100%;
  margin: 16px 0 0;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  font: 13px/1.55 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  white-space: pre-wrap;
  overflow-x: auto;
}

.pricing-inclusions {
  display: grid;
  gap: 1px;
  padding: 0;
  margin-top: 28px;
  border: 1px solid var(--border-hairline);
  background: var(--border-hairline);
}

.pricing-inclusions li {
  list-style: none;
  padding: 16px 16px 16px 42px;
  background: rgba(255, 255, 255, .74);
  position: relative;
  transition: background .24s var(--ease), color .24s var(--ease);
}

.pricing-inclusions li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--evergreen);
  background: var(--paper);
}

.pricing-inclusions li:hover {
  background: var(--glacier);
}

.pricing-note {
  padding: 22px;
  border: 1px solid var(--line);
  background:
    repeating-radial-gradient(circle at 86% 18%, transparent 0 17px, rgba(7, 16, 17, .04) 18px 19px),
    var(--glacier);
}

.pricing-note p {
  color: var(--muted);
}

.intake-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .42fr);
  gap: 22px;
  align-items: start;
}

.intake-support {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  background:
    repeating-radial-gradient(circle at 76% 18%, transparent 0 17px, rgba(7, 16, 17, .045) 18px 19px),
    rgba(255, 255, 255, .82);
  box-shadow: var(--soft-shadow);
  padding: clamp(24px, 3vw, 34px);
}

.intake-support h2 {
  font-size: clamp(30px, 3vw, 46px);
}

.intake-context-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.intake-context-list li {
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .74);
  color: #34413d;
}

.method-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.method-principles article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--soft-shadow);
  transition: transform .24s var(--ease), border-color .24s var(--ease), box-shadow .24s var(--ease);
}

.method-principles span {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.method-principles h3 {
  margin-top: 18px;
}

.method-principles p {
  color: var(--muted);
}

.timeline-table {
  display: grid;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  background: var(--line);
}

.timeline-table div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, auto);
  gap: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .86);
}

.timeline-table span {
  color: #34413d;
}

.timeline-table strong {
  color: var(--evergreen);
  text-align: right;
}

@media (max-width: 1180px) {
  .kinetic-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    align-items: start;
  }

  .hero-preview-shell {
    width: min(100%, 620px);
  }

  .workflow-grid,
  .output-grid,
  .trust-grid-modern,
  .grid.five {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-step:nth-child(2n),
  .trust-grid-modern article:nth-child(2n) {
    border-right: 0;
  }

  .workflow-step,
  .trust-grid-modern article {
    border-bottom: 1px solid var(--line);
  }

	  .evidence-layout,
	  .season-layout,
	  .pricing-layout,
	  .faq-layout,
	  .fit-layout,
	  .limitation-panel,
	  .pricing-page-panel,
	  .pricing-hero-grid,
	  .pricing-choice-head,
	  .pricing-inclusion-layout,
	  .pricing-dominant-grid,
	  .referral-strip,
	  .referral-proof,
	  .dashboard-preview-mockup,
	  .credit-dashboard-grid,
	  .referral-link-card,
	  .admin-toolbar,
  .admin-grid,
  .admin-grid-two,
  .admin-detail-grid,
  .admin-upload-form,
  .intake-layout,
  .empty-status-grid {
    grid-template-columns: 1fr;
  }

  .home-sample-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-step {
    grid-template-columns: 70px 1fr;
  }

  .method-step p {
    grid-column: 2;
  }

  .sample-row {
    grid-template-columns: 1.2fr 1fr;
  }

  .sample-row > *:nth-child(n + 3) {
    display: none;
  }

  .sample-library,
  .method-principles,
  .pricing-secondary-grid,
  .will-wont-grid {
    grid-template-columns: 1fr;
  }

  .pricing-bundle-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-anchor-card {
    grid-column: span 2;
  }

  .checkout-choice-grid-reworked {
    grid-template-columns: 1fr;
  }

  .intake-support {
    position: relative;
    top: auto;
  }
}

@media (max-width: 820px) {
  .nav {
    width: min(calc(100% - 28px), 720px);
    min-height: 66px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand {
    font-size: 25px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    width: auto;
    min-height: 40px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .pricing-hero-grid {
    gap: 28px;
  }

  .pricing-ledger-row {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .pricing-ledger-row b {
    grid-column: 2;
  }

  .kinetic-hero,
  .section-inner,
  .footer-inner,
  .form-shell,
  .dashboard-layout {
    width: min(calc(100% - 28px), 720px);
  }

  .dashboard-hero .section-inner {
    width: min(calc(100% - 28px), 720px);
    grid-template-columns: 1fr;
    align-items: start;
  }

  .pricing-bundle-grid,
  .credit-button-grid,
  .checkout-choice-grid,
  .package-switcher,
  .status-milestones {
    grid-template-columns: 1fr;
  }

  .status-progress-head {
    display: grid;
  }

  .status-progress-head strong {
    text-align: left;
  }

  .assist-input-grid,
  .assist-compare {
    grid-template-columns: 1fr;
  }

  .assist-cta-row,
  .assist-suggestion-head {
    display: grid;
  }

  .assist-cta-row .button {
    min-width: 0;
    width: 100%;
  }

  .intake-assist-head,
  .assist-review-head {
    display: grid;
  }

  .pricing-anchor-card {
    grid-column: auto;
  }

  .preview-feature-list,
  .more-package-options,
  .pricing-secondary-grid,
  .will-wont-grid {
    grid-template-columns: 1fr;
  }

  .intake-promise-panel,
  .intake-promise-list,
  .draft-resume-banner,
  .credit-access-panel {
    grid-template-columns: 1fr;
  }

  .draft-resume-actions {
    justify-content: stretch;
  }

  .draft-resume-actions .button {
    flex: 1 1 150px;
  }

  .credit-access-panel .button {
    width: 100%;
  }

  .referral-code-row {
    grid-template-columns: 1fr;
  }

  .intake-promise-list li {
    min-height: 0;
  }

  .kinetic-hero {
    padding-top: 42px;
  }

  .kinetic-hero h1 {
    font-size: 40px;
    max-width: calc(100vw - 28px);
  }

  h1 {
    font-size: 48px;
  }

  h2,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 17px;
    max-width: calc(100vw - 28px);
  }

  .kinetic-hero {
    gap: 32px;
    padding-bottom: 64px;
  }

  .hero-action-note {
    max-width: 360px;
  }

  .hero-preview-shell {
    max-width: calc(100vw - 28px);
    min-height: 508px;
  }

  .hero-preview-stage {
    min-height: 452px;
    padding: 22px;
  }

  .preview-card-inputs {
    left: 0;
    width: min(214px, 46%);
  }

  .preview-card-ledger {
    right: 0;
    width: min(220px, 48%);
  }

  .preview-report-card {
    top: 102px;
    right: 18px;
    width: min(300px, 68%);
  }

  .preview-card-outlook {
    left: 12px;
    width: min(284px, 62%);
  }

  .button {
    width: 100%;
  }

  .button.nav-cta {
    width: auto;
    min-width: 82px;
  }

  .nav-cta span {
    display: none;
  }

  .nav-cta::before {
    content: "Get Report";
  }

  .dashboard-hero-card {
    min-height: auto;
  }

  .split-head,
  .section-head,
  .footer-inner,
  .price-panel,
  .form-grid,
  .checkbox-grid,
  .color-grid {
    grid-template-columns: 1fr;
  }

  .step-actions {
    flex-direction: column;
  }

  .step-actions button:last-child {
    margin-left: 0;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .section-head p {
    margin-top: 0;
  }

  .workflow-grid,
  .output-grid,
  .trust-grid-modern,
  .source-metrics,
  .season-board,
  .grid,
  .grid.five,
  .trust-grid,
  .status-grid,
  .dashboard-hero-strip,
  .decision-grid,
  .dashboard-checklist,
  .method-output-grid,
  .access-grid,
  .method-step,
  .sample-library-meta,
  .sample-library-top {
    grid-template-columns: 1fr;
  }

  .dashboard-hero-strip div,
  .decision-grid article {
    border: 1px solid var(--line);
  }

  .dashboard-hero-strip div:last-child,
  .decision-grid article:last-child {
    border-bottom: 1px solid var(--line);
  }

  .method-step p {
    grid-column: auto;
  }

  .workflow-step,
  .trust-grid-modern article,
  .source-metrics article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .sample-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .sample-row > *:nth-child(n + 3) {
    display: block;
  }

  .sample-row.table-head {
    display: none;
  }

  .home-sample-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .privacy-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    width: auto;
  }

  .privacy-banner-actions {
    justify-content: start;
  }

  .privacy-banner .button {
    flex: 1 1 auto;
  }

  .intake-authorization-check p {
    margin-left: 0;
  }

  .hero-preview-shell {
    min-height: auto;
  }

  .hero-preview-shell::before {
    inset: 12px;
  }

  .hero-preview-stage {
    display: grid;
    gap: 12px;
    min-height: auto;
    padding: 18px;
  }

  .preview-card,
  .preview-report-card {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
    animation: none;
  }

  .preview-report-card {
    min-height: 260px;
    padding: 20px;
  }

  .preview-report-header {
    margin-bottom: 30px;
  }

  .preview-evidence-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 44px;
  }

  .kinetic-hero h1 {
    font-size: 38px;
  }

  h2,
  .page-hero h1 {
    font-size: 38px;
  }

  .nav-cta {
    max-width: 150px;
  }

  .dashboard-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1160px) {
  .admin-shell {
    width: min(100% - 28px, 980px);
    padding-top: 34px;
  }

  .admin-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-upload-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .admin-shell {
    width: min(100% - 24px, 620px);
    padding: 22px 0 40px;
    gap: 12px;
  }

  .admin-toolbar,
  .admin-panel {
    padding: 16px;
  }

  .admin-toolbar {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .admin-toolbar h1,
  .admin-panel h2 {
    font-size: 22px;
  }

  .admin-login-row {
    grid-template-columns: 1fr;
  }

  .admin-login-row button {
    width: 100%;
  }

  .admin-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .admin-summary article {
    min-height: 76px;
    padding: 12px;
  }

  .admin-summary span,
  .admin-table span {
    font-size: 11px;
  }

  .admin-summary strong {
    font-size: 23px;
  }

  .admin-filter-row {
    width: 100%;
    grid-auto-flow: row;
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: stretch;
  }

  .admin-filter-row .button {
    width: auto;
  }

  .admin-action-row {
    width: 100%;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .admin-action-row .button,
  .admin-action-row button {
    width: 100%;
  }

  .admin-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
  }

  .admin-table thead {
    display: none;
  }

  .admin-table tbody,
  .admin-table tr,
  .admin-table td {
    display: block;
    width: 100%;
  }

  .admin-table tr {
    margin-bottom: 10px;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .74);
  }

  .admin-table td {
    padding: 8px 0;
    border-bottom: 1px solid rgba(7, 16, 17, .08);
  }

  .admin-table td:last-child {
    border-bottom: 0;
  }

  .admin-table td::before {
    display: block;
    margin-bottom: 3px;
    color: var(--copper);
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .admin-table td:nth-child(1)::before { content: "Project"; }
  .admin-table td:nth-child(2)::before { content: "Customer"; }
  .admin-table td:nth-child(3)::before { content: "Order"; }
  .admin-table td:nth-child(4)::before { content: "Report"; }
  .admin-table td:nth-child(5)::before { content: "Package"; }
  .admin-table td:nth-child(6)::before { content: "Created"; }

  .admin-table td:first-child .text-button,
  .admin-table td:first-child > span {
    display: block;
  }

  .admin-table td:first-child > span {
    margin-top: 4px;
  }

  .admin-detail-grid,
  .admin-grid-two,
  .admin-upload-form {
    grid-template-columns: 1fr;
  }

  .admin-detail-grid {
    margin-top: 12px;
  }

  .admin-upload-form {
    margin-top: 12px;
  }

  .admin-upload-form input[type="file"] {
    width: 100%;
  }

  .admin-digest-text {
    max-height: 260px;
    overflow: auto;
    font-size: 12px;
  }

  .admin-body .list-card {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .admin-body .list-card strong,
  .admin-body .list-card span {
    display: block;
  }
}

@media (max-width: 480px) {
  .admin-shell {
    width: min(100% - 20px, 420px);
    padding-top: 16px;
  }

  .admin-toolbar,
  .admin-panel,
  .admin-summary article {
    background: rgba(255, 255, 255, .9);
  }

  .admin-grid,
  .admin-filter-row {
    grid-template-columns: 1fr;
  }

  .admin-filter-row .button {
    width: 100%;
  }

  .admin-table tr,
  .admin-detail-grid article,
  .admin-upload-form,
  .admin-mini-list {
    padding: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.samples-proof-hero {
  background:
    linear-gradient(120deg, rgba(246, 247, 244, .92), rgba(255, 255, 255, .9)),
    repeating-linear-gradient(90deg, rgba(7, 16, 17, .035) 0 1px, transparent 1px 88px);
}

.sample-library-featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.sample-spotlight-card {
  min-height: 640px;
  grid-template-rows: auto auto 1fr auto;
  padding: clamp(28px, 3.2vw, 38px);
}

.sample-spotlight-card.has-cover {
  gap: 18px;
  overflow: hidden;
}

.sample-spotlight-card:hover {
  border-color: rgba(176, 122, 74, .28);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(7, 16, 17, .12);
}

.sample-card-cover {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: -14px -14px 8px;
  padding: 8px;
  border: 1px solid rgba(7, 16, 17, .16);
  background:
    linear-gradient(135deg, rgba(6, 46, 42, .96), rgba(23, 76, 67, .88)),
    var(--alpine);
  box-shadow: 0 20px 50px rgba(7, 16, 17, .14);
  isolation: isolate;
}

.sample-card-cover::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 8px;
  z-index: 2;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), rgba(0, 198, 232, .72), transparent);
  transform: scaleX(.34);
  transform-origin: left;
  transition: transform .6s var(--ease-precise);
}

.sample-card-cover::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .36);
  background:
    linear-gradient(180deg, rgba(7, 16, 17, .06), transparent 28%),
    linear-gradient(135deg, transparent 64%, rgba(0, 198, 232, .12));
  pointer-events: none;
}

.sample-card-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 10px 30px rgba(7, 16, 17, .16);
  transform: scale(1.005);
  transition: transform .7s var(--ease), filter .7s var(--ease);
}

.sample-spotlight-card:hover .sample-card-cover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.032);
}

.sample-spotlight-card:hover .sample-card-cover::before {
  transform: scaleX(1);
}

.sample-library-custom-card {
  min-height: auto;
  grid-column: 1 / -1;
}

.sample-library-head {
  align-items: end;
}

.sample-library-note {
  max-width: 420px;
  justify-self: end;
}

.sample-library-note p {
  margin-bottom: 12px;
  color: var(--muted);
}

.sample-spotlight-card .sample-library-top {
  grid-template-columns: 1fr;
}

.sample-spotlight-card .sample-signal {
  width: 100%;
  min-width: 0;
  min-height: 74px;
  align-content: center;
}

.sample-spotlight-card h3 {
  min-height: 4.05em;
}

.sample-spotlight-card.has-cover h3 {
  min-height: 0;
}

.sample-card-actions {
  position: relative;
  z-index: 1;
  display: grid;
  align-self: end;
}

.sample-card-cta {
  width: 100%;
  min-height: 54px;
  justify-content: space-between;
  padding-inline: 20px;
  border-color: var(--alpine);
  background:
    linear-gradient(90deg, var(--alpine), var(--evergreen));
  box-shadow: 0 16px 32px rgba(6, 46, 42, .12);
}

.sample-card-cta:hover {
  border-color: var(--evergreen);
  background:
    linear-gradient(90deg, var(--evergreen), var(--alpine));
}

.sample-card-proof {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 2px 0 0;
  list-style: none;
  position: relative;
  z-index: 1;
}

.sample-card-proof li {
  position: relative;
  padding-left: 22px;
  color: #34413d;
  font-size: 14px;
  line-height: 1.35;
}

.sample-card-proof li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--cyan);
  background: rgba(0, 198, 232, .16);
}

.sample-method-panel {
  display: grid;
  grid-template-columns: minmax(280px, .48fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(246, 247, 244, .72)),
    var(--paper);
  box-shadow: var(--shadow);
}

.sample-method-panel h2 {
  margin-top: 14px;
}

.sample-method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.sample-method-grid article {
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 255, 255, .88);
}

.sample-method-grid span {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sample-method-grid h3 {
  margin-top: 22px;
}

.sample-method-referral {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, .42fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  min-height: 0;
}

.sample-method-referral h3 {
  margin: 12px 0 0;
}

.sample-method-referral p {
  margin: 0;
  color: rgba(7, 16, 17, .68);
}

.sample-method-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-top: 4px;
}

.sample-call-button {
  min-width: 214px;
}

.sample-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 90;
  background: rgba(7, 16, 17, .08);
}

.sample-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--copper), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
}

.sample-detail-hero {
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: clamp(64px, 9vw, 112px) 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 74% 24%, rgba(0, 198, 232, .14), transparent 24rem),
    linear-gradient(122deg, rgba(255, 255, 255, .94), rgba(246, 247, 244, .86));
  position: relative;
  overflow: hidden;
}

.sample-detail-hero::after {
  content: "";
  position: absolute;
  top: -12%;
  right: 18%;
  width: 1px;
  height: 130%;
  background: rgba(176, 122, 74, .45);
  transform: rotate(28deg);
}

.sample-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .56fr);
  gap: clamp(32px, 5vw, 86px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.sample-title-block h1 {
  margin-top: 16px;
  max-width: 980px;
  font-size: clamp(46px, 5.8vw, 78px);
  line-height: 1;
}

.sample-title-block p {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(18px, 1.55vw, 24px);
}

.sample-back-link {
  margin: 0 0 24px;
}

.sample-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.sample-hero-meta span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .76);
  color: #34413d;
  font: 800 11px/1 var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.sample-delivery-note {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--evergreen);
  font-size: 14px;
  font-weight: 800;
}

.sample-hero-panel {
  min-height: 560px;
  padding: 20px;
  border: 1px solid var(--line);
  background:
    repeating-radial-gradient(circle at 82% 18%, transparent 0 18px, rgba(7, 16, 17, .045) 19px 20px),
    rgba(255, 255, 255, .82);
  box-shadow: var(--deep-shadow);
}

.sample-package-preview {
  height: 100%;
  min-height: 520px;
  display: grid;
  align-content: center;
  gap: 18px;
}

.sample-cover-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(7, 16, 17, .18);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.sample-cover-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .34);
  pointer-events: none;
}

.sample-cover-frame img,
.sample-deck-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sample-preview-meta {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .88);
}

.sample-preview-meta span,
.sample-artifact-card span,
.sample-artifact-proof span,
.sample-deck-frame figcaption {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sample-preview-meta strong {
  display: block;
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.3vw, 42px);
  font-weight: 500;
  line-height: 1;
}

.sample-preview-meta p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.sample-preview-button {
  width: 100%;
  justify-content: center;
}

.sample-deck-visual {
  height: 100%;
  min-height: 520px;
  display: grid;
  align-content: center;
  gap: 18px;
}

.sample-slide-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--soft-shadow);
  transform: translateX(20px);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}

.sample-slide-card.active {
  background: var(--alpine);
  color: var(--paper);
  transform: translateX(0);
}

.sample-slide-card span {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sample-slide-card strong {
  display: block;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  line-height: .95;
}

.sample-slide-card p {
  margin-top: 12px;
  color: inherit;
  opacity: .76;
}

.sample-sticky-nav {
  position: sticky;
  top: 74px;
  z-index: 32;
  display: flex;
  justify-content: center;
  gap: 1px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
}

.sample-sticky-nav a {
  min-width: 130px;
  padding: 16px 18px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.sample-sticky-nav a:last-child {
  border-right: 1px solid var(--line);
}

.sample-sticky-nav a:hover {
  color: var(--ink);
  background: rgba(246, 247, 244, .72);
}

.sample-detail-page main section[id] {
  scroll-margin-top: 138px;
}

.sample-artifacts-section {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(246, 247, 244, .9)),
    radial-gradient(circle at 12% 12%, rgba(176, 122, 74, .1), transparent 30rem);
}

.sample-artifacts-grid {
  display: grid;
  grid-template-columns: minmax(300px, .44fr) minmax(0, .56fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.sample-artifact-copy h2 {
  max-width: 680px;
  margin-top: 14px;
}

.sample-artifact-copy p {
  max-width: 680px;
  color: var(--muted);
}

.sample-artifact-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--line);
}

.sample-artifact-proof span {
  display: grid;
  min-height: 76px;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, .86);
  color: var(--evergreen);
}

.sample-artifact-stack {
  display: grid;
  gap: 16px;
}

.sample-deck-frame {
  display: grid;
  gap: 10px;
  margin: 0;
}

.sample-deck-frame img {
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(7, 16, 17, .18);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.sample-deck-frame figcaption {
  color: var(--muted);
}

.sample-artifact-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.sample-artifact-card {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .88);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--soft-shadow);
  transition: transform .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease);
}

.sample-artifact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 59, 52, .42);
  background: var(--paper);
}

.sample-artifact-card.primary {
  border-color: rgba(176, 122, 74, .62);
  background: linear-gradient(135deg, rgba(255, 248, 238, .94), rgba(255, 255, 255, .9));
}

.sample-artifact-card strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}

.sample-artifact-card em {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
}

.sample-preview-button,
.sample-artifact-card {
  cursor: pointer;
}

.sample-cover-frame img {
  transition: transform .7s var(--ease), filter .7s var(--ease);
}

.sample-package-preview:hover .sample-cover-frame img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.sample-download-modal[hidden] {
  display: none;
}

.sample-download-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: grid;
  place-items: center;
  padding: 20px;
}

.sample-download-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 17, .58);
  backdrop-filter: blur(14px);
}

.sample-download-dialog {
  position: relative;
  width: min(100%, 900px);
  max-height: calc(100vh - 40px);
  display: grid;
  grid-template-columns: minmax(240px, .42fr) minmax(0, .58fr);
  border: 1px solid rgba(255, 255, 255, .28);
  background: var(--paper);
  box-shadow: var(--deep-shadow);
  overflow: auto;
  opacity: 0;
  transform: translateY(18px) scale(.98);
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}

.sample-download-modal.is-open .sample-download-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.sample-download-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  min-height: 36px;
  padding: 0 12px;
  border-color: rgba(7, 16, 17, .12);
  background: rgba(255, 255, 255, .86);
  color: var(--muted);
  font-size: 11px;
}

.sample-download-art {
  position: relative;
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 520px;
  padding: 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 198, 232, .18), transparent 16rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 46px),
    var(--alpine);
}

.sample-download-art span {
  --tilt: -4deg;
  --shift-x: -4px;
  display: block;
  height: 118px;
  border: 1px solid rgba(255, 255, 255, .22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(246, 247, 244, .72)),
    var(--paper);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
  transform: rotate(var(--tilt)) translateX(var(--shift-x));
  animation: sample-card-float 4.8s var(--ease) infinite;
}

.sample-download-art span:nth-child(2) {
  --tilt: 3deg;
  --shift-x: 10px;
  width: 86%;
  justify-self: end;
  animation-delay: -.8s;
}

.sample-download-art span:nth-child(3) {
  --tilt: -2deg;
  --shift-x: 18px;
  width: 72%;
  animation-delay: -1.6s;
}

.sample-download-content {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 5vw, 54px);
}

.sample-download-label {
  margin: 0;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sample-download-content h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: .98;
}

.sample-download-content p {
  margin: 0;
  color: var(--muted);
}

.sample-download-form {
  display: grid;
  gap: 12px;
}

.sample-download-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font: 800 10px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sample-download-form input[type="email"],
.sample-download-form input[type="text"] {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  font: 600 15px/1.2 var(--sans);
  letter-spacing: 0;
}

.sample-download-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sample-download-consent {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .66);
  color: #34413d;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.sample-download-consent input {
  width: 18px;
  height: 18px;
  accent-color: var(--alpine);
}

.sample-download-status {
  min-height: 20px;
  font-size: 13px;
}

.sample-download-success {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(0, 59, 52, .2);
  background: rgba(246, 247, 244, .82);
}

.sample-download-success strong {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
}

@keyframes sample-card-float {
  0%, 100% { transform: translateY(0) rotate(var(--tilt)) translateX(var(--shift-x)); }
  50% { transform: translateY(-10px) rotate(calc(var(--tilt) + 2deg)) translateX(var(--shift-x)); }
}

.sample-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
}

.sample-verdict-card,
.sample-risk-panel,
.sample-sources,
.sample-cta {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--soft-shadow);
}

.sample-verdict-card h2,
.sample-risk-panel h2,
.sample-cta h2 {
  margin-top: 14px;
}

.sample-verdict-card p,
.sample-risk-panel p,
.sample-sources p,
.sample-cta p {
  color: var(--muted);
}

.sample-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  min-width: 0;
}

.sample-kpi-grid article {
  min-height: 190px;
  padding: 24px;
  background: rgba(255, 255, 255, .9);
  min-width: 0;
}

.sample-kpi-grid span,
.sample-evidence-grid span {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sample-kpi-grid strong {
  display: block;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  line-height: .9;
  overflow-wrap: anywhere;
}

.sample-kpi-grid p {
  color: var(--muted);
  font-size: 14px;
}

.sample-proof-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .74), rgba(246, 247, 244, .86)),
    repeating-linear-gradient(0deg, rgba(7, 16, 17, .035) 0 1px, transparent 1px 72px);
}

.sample-detail-proof {
  display: grid;
  grid-template-columns: minmax(300px, .44fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(246, 247, 244, .74)),
    var(--paper);
  box-shadow: var(--shadow);
}

.sample-detail-proof h2 {
  margin-top: 14px;
}

.sample-detail-proof p {
  color: var(--muted);
}

.sample-answer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.sample-answer-grid article {
  min-height: 216px;
  padding: 22px;
  background: rgba(255, 255, 255, .88);
}

.sample-answer-grid span {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sample-answer-grid h3 {
  margin-top: 18px;
}

.sample-answer-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.sample-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.sample-evidence-grid article {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--soft-shadow);
}

.sample-evidence-grid h3 {
  margin-top: 20px;
}

.sample-evidence-grid p {
  color: var(--muted);
}

.sample-scenario {
  display: grid;
  gap: 24px;
}

.sample-scenario-controls {
  display: inline-flex;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.sample-scenario-controls button {
  min-height: 48px;
  border: 0;
  background: var(--paper);
  color: var(--muted);
  box-shadow: none;
}

.sample-scenario-controls button.is-active {
  background: var(--alpine);
  color: var(--paper);
}

.sample-scenario-panel {
  display: grid;
  grid-template-columns: minmax(260px, .48fr) minmax(340px, .52fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 4vw, 58px);
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .95), rgba(246, 247, 244, .72)),
    var(--paper);
  box-shadow: var(--shadow);
}

.sample-scenario-panel h3 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 500;
  line-height: .98;
}

.sample-scenario-panel p {
  color: var(--muted);
}

.sample-bar-chart {
  display: grid;
  gap: 16px;
}

.sample-bar-chart span {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--line);
  overflow: hidden;
  color: var(--ink);
  font-weight: 800;
  background: rgba(255, 255, 255, .74);
}

.sample-bar-chart span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  background: linear-gradient(90deg, rgba(0, 198, 232, .22), rgba(176, 122, 74, .24));
  transform-origin: left;
  animation: sample-bar-in 1.2s var(--ease) both;
}

.sample-bar-chart span {
  isolation: isolate;
}

.sample-gate-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  counter-reset: gate;
  list-style: none;
}

.sample-gate-list li {
  position: relative;
  padding: 18px 18px 18px 56px;
  border: 1px solid var(--line);
  background: rgba(246, 247, 244, .58);
  color: #34413d;
}

.sample-gate-list li::before {
  counter-increment: gate;
  content: counter(gate, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
}

.sample-sources {
  margin-top: 20px;
}

.sample-cta {
  display: grid;
  grid-template-columns: minmax(0, .72fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 20px;
  background:
    repeating-radial-gradient(circle at 90% 20%, transparent 0 20px, rgba(255, 255, 255, .08) 21px 22px),
    var(--alpine);
  color: var(--paper);
}

.sample-cta p {
  color: rgba(255, 255, 255, .72);
}

.sample-cta .text-link {
  color: var(--paper);
}

.sample-cta-actions {
  display: grid;
  gap: 10px;
  min-width: min(320px, 100%);
}

.sample-cta-actions .button.secondary {
  border-color: rgba(255, 255, 255, .35);
  color: var(--paper);
}

@keyframes sample-bar-in {
  from { transform: scaleX(.2); opacity: .3; }
  to { transform: scaleX(1); opacity: 1; }
}

@media (max-width: 1100px) {
  .sample-library-featured,
  .sample-method-panel,
  .sample-method-grid,
  .sample-method-referral,
  .sample-detail-grid,
  .sample-artifacts-grid,
  .sample-two-column,
  .sample-detail-proof,
  .sample-answer-grid,
  .sample-evidence-grid,
  .sample-scenario-panel,
  .sample-cta,
  .sample-download-dialog {
    grid-template-columns: 1fr;
  }

  .sample-hero-panel {
    min-height: auto;
  }

  .sample-deck-visual {
    min-height: 420px;
  }

  .sample-package-preview {
    min-height: 0;
  }

  .sample-download-art {
    min-height: 220px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-content: center;
    padding: 36px 28px;
  }

  .sample-download-art span,
  .sample-download-art span:nth-child(2),
  .sample-download-art span:nth-child(3) {
    width: auto;
    height: 118px;
  }
}

@media (max-width: 720px) {
  .sample-detail-hero {
    min-height: auto;
  }

  .sample-title-block h1 {
    font-size: 52px;
  }

  .sample-hero-meta,
  .sample-sticky-nav,
  .sample-scenario-controls,
  .sample-artifact-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sample-sticky-nav {
    position: relative;
    top: auto;
    padding: 0;
  }

  .sample-detail-page main section[id] {
    scroll-margin-top: 86px;
  }

  .sample-sticky-nav a {
    border-right: 1px solid var(--line);
  }

  .sample-kpi-grid {
    grid-template-columns: 1fr;
  }

  .sample-cta .button {
    width: 100%;
  }

  .sample-card-cover {
    margin: -8px -8px 2px;
  }

  .sample-download-modal {
    padding: 12px;
    align-items: start;
    overflow: auto;
  }

  .sample-download-close {
    top: 10px;
    right: 10px;
  }

  .sample-download-art {
    min-height: 150px;
    padding: 26px;
  }

  .sample-download-art span {
    height: 84px;
  }

  .sample-download-fields {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sample-download-art span,
  .sample-card-cover img,
  .sample-cover-frame img {
    animation: none;
    transition: none;
  }
}

/* =============================================================
   Designer System Lock - May 2026 marketing prototype application
   ============================================================= */

p,
li,
summary {
  font-family: var(--body-serif);
}

.nav,
.button,
button,
.eyebrow,
.section-kicker,
.sample-sticky-nav a,
.sample-hero-meta span,
.sample-preview-meta span,
.sample-artifact-card span,
.sample-artifact-proof span,
.sample-deck-frame figcaption,
.sample-kpi-grid span,
.sample-evidence-grid span,
.sample-answer-grid span,
.bundle-card .badge,
.package-option span,
.status-pill {
  font-family: var(--mono);
}

.eyebrow,
.section-kicker {
  color: var(--copper);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand,
.bundle-price,
.price,
.sample-library-card h3,
.sample-artifact-card strong,
.sample-preview-meta strong,
.sample-kpi-grid strong,
.credit-balance-card strong,
.dashboard-card-top strong,
.preview-status-card > strong {
  font-family: var(--serif);
  font-weight: 500;
}

.output-card,
.card,
.sample-card,
.price-panel,
.form-panel,
.dashboard-panel,
.list-card,
.sample-library-card,
.bundle-card,
.will-wont-grid article,
.method-timeline,
.method-principles article,
.fit-grid,
.fit-grid article,
.honest-panel,
.final-cta-panel,
.pricing-choice-panel,
.pricing-value-note,
.what-this-replaces,
.referral-strip,
.buyer-faq,
.admin-toolbar,
.admin-panel,
.admin-summary article,
.sample-verdict-card,
.sample-risk-panel,
.sample-sources,
.sample-cta,
.sample-detail-proof,
.sample-evidence-grid article,
.sample-scenario-panel,
.sample-download-dialog,
details {
  border-color: var(--border-hairline);
  border-radius: 0;
}

.output-card,
.card,
.sample-card,
.price-panel,
.form-panel,
.dashboard-panel,
.list-card,
.sample-library-card,
.bundle-card,
.will-wont-grid article,
.method-principles article,
.fit-grid article,
.admin-toolbar,
.admin-panel,
.admin-summary article,
details {
  background: rgba(255, 255, 255, .82);
}

.dashboard-panel.support-panel {
  color: var(--ink);
}

.dashboard-panel.support-panel h2 {
  color: var(--ink);
}

.dashboard-panel.support-panel p {
  color: rgba(7, 16, 17, .64);
}

.dashboard-panel.support-panel .text-link {
  color: var(--alpine);
}

.page-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .74), rgba(246, 247, 244, .92)),
    repeating-linear-gradient(90deg, rgba(7, 16, 17, .028) 0 1px, transparent 1px 88px);
}

.page-hero::after,
.pricing-card::after,
.sample-library-card::after,
.dashboard-hero-card::after,
.dashboard-status-panel::after,
.sample-detail-hero::after {
  background: rgba(176, 122, 74, .42);
}

.site-footer {
  background: var(--glacier);
  color: var(--ink);
  border-top: 1px solid var(--border-hairline);
}

.footer-brand {
  color: var(--ink);
}

.footer-brand .brand-mark {
  background: var(--alpine);
  color: var(--paper);
}

.footer-inner p,
.footer-links a,
.footer-links button,
.footer-contact a,
.footer-contact span {
  color: rgba(7, 16, 17, .54);
}

.footer-referral strong,
.footer-referral a {
  color: var(--ink);
}

.footer-links a:hover,
.footer-links button:hover,
.footer-links button:focus-visible,
.footer-contact a:hover {
  color: var(--alpine);
}

.site-footer .footer-links .footer-privacy-button {
  min-height: 0;
  display: inline;
  align-items: baseline;
  justify-content: start;
  gap: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(7, 16, 17, .54);
  font-family: var(--body-serif);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  box-shadow: none;
}

.site-footer .footer-links .footer-privacy-button:hover,
.site-footer .footer-links .footer-privacy-button:focus-visible {
  color: var(--alpine);
  transform: none;
  box-shadow: none;
}

.final-cta-section {
  position: relative;
  overflow: hidden;
  background: var(--alpine);
  color: var(--paper);
}

.final-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  pointer-events: none;
  background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
  background-size: 40px 40px;
}

.final-cta-panel {
  position: relative;
  z-index: 1;
  justify-items: center;
  max-width: 1120px;
  text-align: center;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.final-cta-panel h2 {
  color: var(--paper);
  font-size: clamp(48px, 7vw, 96px);
  font-style: italic;
  line-height: 1.05;
}

.final-cta-panel p,
.final-cta-note {
  color: var(--fg-inverse-2);
}

.final-cta-panel .button.secondary {
  border-color: rgba(255, 255, 255, .28);
  background: transparent;
  color: var(--paper);
}

.final-cta-panel .button.secondary:hover {
  background: var(--paper);
  color: var(--alpine);
}

.content {
  max-width: 900px;
}

.content h1 {
  margin-bottom: 28px;
}

.content p {
  color: var(--muted);
  font-size: 18px;
}

.content h2 {
  padding-top: 28px;
  border-top: 1px solid var(--border-hairline);
}

@media (max-width: 1100px) {
  .designer-dark-grid,
  .deliverable-explorer,
  .threshold-panel-low,
  .threshold-artifact-stack,
  .pricing-stack-grid {
    grid-template-columns: 1fr;
  }

  .designer-case-frame {
    aspect-ratio: auto;
    min-height: 520px;
  }

  .deliverable-stage {
    min-height: auto;
  }

  .deliverable-document {
    min-height: 420px;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .threshold-real-artifacts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .threshold-real-artifacts .threshold-real-artifact {
    transform: none !important;
  }

  .threshold-real-artifacts .threshold-real-artifact:hover,
  .threshold-real-artifacts .threshold-real-artifact:focus-within {
    transform: translateY(-4px) !important;
  }

  .threshold-real-artifacts .threshold-forward-badge {
    position: relative;
    top: auto;
    right: auto;
    justify-self: center;
    margin-top: 4px;
  }
}

@media (max-width: 720px) {
  .designer-hero {
    min-height: auto;
    padding-top: 56px;
  }

  .designer-hero-inner,
  .designer-dark-grid {
    width: min(calc(100% - 28px), 720px);
  }

  .designer-hero h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .threshold-console {
    margin-top: 34px;
    padding: 18px;
  }

  .threshold-labels {
    gap: 8px;
    font-size: 9px;
    letter-spacing: .06em;
  }

  .threshold-reveal,
  .threshold-panel {
    min-height: 0;
  }

  .threshold-panel {
    padding: 20px;
  }

  .threshold-panel-low {
    text-align: center;
  }

  .threshold-blank-stack {
    min-height: 180px;
  }

  .threshold-artifact {
    min-height: 190px;
    transform: none !important;
  }

  .threshold-forward-badge {
    position: relative;
    top: auto;
    right: auto;
    width: 56px;
    height: 56px;
  }

  .threshold-real-artifact .threshold-artifact-label {
    top: 10px;
    left: 10px;
  }

  .threshold-sample-row {
    align-items: center;
    gap: 10px 0;
    padding-top: 16px;
    text-align: center;
  }

  .threshold-sample-eyebrow {
    flex-basis: 100%;
    margin-right: 0;
  }

  .designer-trust-row {
    display: grid;
  }

  .designer-case-frame {
    min-height: 440px;
    padding: 22px;
  }

  .designer-float-tag {
    position: relative;
    inset: auto;
    width: fit-content;
    margin-top: 14px;
    animation: none;
  }

  .deliverable-document {
    width: calc(100% - 28px);
    margin: 28px auto;
  }

  .deliverable-page-body {
    grid-template-columns: 1fr;
  }

  .deliverable-source-chip {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 0 24px 24px;
  }
}

@media (max-width: 1100px) {
  .pricing-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section-vs .section-inner,
  .section-not-feasibility .section-inner,
  .section-founder .section-inner,
  .bundle-upsell .section-inner {
    width: min(calc(100% - 28px), 720px);
  }

  .vs-grid,
  .founder-grid,
  .pricing-package-grid,
  .intake-package-grid,
  .package-grid--compact {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    width: min(280px, 100%);
    margin: 0 auto;
  }

  .bundle-ctas {
    display: grid;
  }

  .bundle-ctas .button,
  .bundle-ctas .btn-link,
  .final-cta-panel .button,
  .final-cta-panel .btn-tertiary {
    width: 100%;
    justify-content: center;
  }

  .pricing-package-grid .package-card {
    min-height: 0;
  }
}

/* ---------- Revision v2: shared section container ---------- */

.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), 720px);
  }
}

/* ---------- Revision v2: pricing page package grid ---------- */

.pricing-package-grid.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0 4rem;
  max-width: 1200px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .pricing-package-grid.package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-package-grid.package-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.pricing-package-grid .package-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border: 1px solid #e5e1d8;
  border-radius: 4px;
  position: relative;
  min-height: 480px;
  box-shadow: none;
  color: #1a1a14;
}

.pricing-package-grid .package-card::before {
  content: none;
}

.pricing-package-grid .package-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.pricing-package-grid .package-card .package-price {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 500;
  margin: 0;
  line-height: 1;
  color: var(--evergreen, #18382f);
  white-space: nowrap;
}

.pricing-package-grid .package-card .package-unit {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a8576;
  margin: 0.5rem 0 1.25rem;
  font-family: var(--sans);
}

.pricing-package-grid .package-card .package-pitch {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #4a4a40;
  margin: 0 0 1rem;
  flex-grow: 0;
  font-family: var(--sans);
}

.pricing-package-grid .package-card .package-context {
  font-size: 0.875rem;
  line-height: 1.55;
  color: #6a6557;
  margin: 0 0 1rem;
  font-style: italic;
  font-family: var(--sans);
}

.pricing-package-grid .package-card .package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}

.pricing-package-grid .package-card .package-features li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.45;
  border-top: 1px solid #f0ece2;
  color: #4a4a40;
  font-family: var(--sans);
}

.pricing-package-grid .package-card .package-features li:first-child {
  border-top: none;
}

.pricing-package-grid .package-card .package-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 6px;
  height: 6px;
  background: var(--evergreen, #18382f);
  border-radius: 50%;
}

.pricing-package-grid .package-card .btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
  justify-content: center;
}

.pricing-package-grid .package-card--featured {
  border: 2px solid var(--evergreen, #18382f);
  background: #fbf9f4;
  box-shadow: 0 4px 16px rgba(24, 56, 47, 0.08);
}

.pricing-package-grid .package-card--featured h3,
.pricing-package-grid .package-card--featured .package-price {
  color: var(--evergreen, #18382f);
}

.pricing-package-grid .package-card--featured .package-unit,
.pricing-package-grid .package-card--featured .package-pitch,
.pricing-package-grid .package-card--featured .package-context,
.pricing-package-grid .package-card--featured .package-features li {
  color: #4a4a40;
}

.pricing-package-grid .package-card--featured .button {
  --button-bg: var(--evergreen);
  border-color: var(--evergreen);
  color: var(--paper);
}

.pricing-package-grid .package-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--evergreen, #18382f);
  color: #fbf9f4;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  white-space: nowrap;
  width: auto;
  font-family: var(--sans);
}

/* ---------- Revision v2: why pay for this section ---------- */

.section-vs {
  padding: 5rem 0;
  background: #ffffff;
  border-top: 1px solid #e5e1d8;
  border-bottom: 1px solid #e5e1d8;
}

.section-vs .section-eyebrow {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8a8576;
  font-weight: 600;
  margin: 0 0 1rem;
}

.section-vs .section-headline {
  font-family: var(--serif);
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  max-width: 28ch;
  margin: 0 0 3rem;
  color: #1a1a14;
}

.section-vs .section-headline br {
  display: block;
}

.vs-hero {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  background: #fbf9f4;
  border: 1px solid #e5e1d8;
  border-radius: 6px;
  padding: 2.5rem 1.5rem;
  margin: 0 0 4rem;
}

@media (max-width: 720px) {
  .vs-hero {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}

.vs-hero-side {
  padding: 0 2rem;
  text-align: center;
}

@media (max-width: 720px) {
  .vs-hero-side {
    padding: 1rem 0;
  }
}

.vs-hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a8576;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.vs-hero-stat {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.vs-hero-side--them .vs-hero-stat {
  color: #8a8576;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.vs-hero-side--us .vs-hero-stat {
  color: var(--evergreen, #18382f);
}

.vs-hero-stat-sub {
  font-size: 0.875rem;
  color: #4a4a40;
  margin: 0;
  line-height: 1.4;
}

.vs-hero-divider {
  width: 1px;
  background: #e5e1d8;
  margin: 0;
}

@media (max-width: 720px) {
  .vs-hero-divider {
    width: 100%;
    height: 1px;
  }
}

.vs-lead {
  max-width: 760px;
  margin: -1.5rem 0 2rem;
  color: #4a4a40;
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.6;
}

.vs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 2.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.vs-table thead th {
  text-align: left;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a8576;
  font-weight: 600;
  padding: 0 0 1rem;
  border-bottom: 1px solid #1a1a14;
}

.vs-table .vs-table-spec {
  width: 22%;
  font-weight: 600;
  color: #1a1a14;
  vertical-align: top;
  padding-right: 1rem;
}

.vs-table .vs-table-them {
  width: 39%;
  color: #6a6557;
  vertical-align: top;
  padding: 1.25rem 1.5rem 1.25rem 0;
}

.vs-table .vs-table-us {
  width: 39%;
  color: #1a1a14;
  vertical-align: top;
  padding: 1.25rem 0 1.25rem 1.5rem;
  border-left: 2px solid var(--evergreen, #18382f);
  background: linear-gradient(to right, rgba(24, 56, 47, 0.02), transparent);
}

.vs-table tbody tr {
  border-bottom: 1px solid #f0ece2;
}

.vs-table tbody tr:last-child {
  border-bottom: none;
}

.vs-table tbody td {
  padding: 1.25rem 0;
}

.vs-table tbody td.vs-table-spec {
  padding: 1.25rem 1rem 1.25rem 0;
}

@media (max-width: 720px) {
  .vs-table,
  .vs-table thead,
  .vs-table tbody,
  .vs-table tr,
  .vs-table th,
  .vs-table td {
    display: block;
    width: 100%;
  }

  .vs-table thead {
    display: none;
  }

  .vs-table tbody tr {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e1d8;
  }

  .vs-table .vs-table-spec {
    padding: 0 0 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8a8576;
  }

  .vs-table .vs-table-them,
  .vs-table .vs-table-us {
    padding: 0.5rem 0;
    width: 100%;
    border-left: none;
    background: none;
  }

  .vs-table .vs-table-them::before {
    content: "Generic AI: ";
    font-weight: 600;
    color: #8a8576;
  }

  .vs-table .vs-table-us::before {
    content: "Threshld: ";
    font-weight: 600;
    color: var(--evergreen, #18382f);
  }
}

.vs-footnote {
  font-style: italic;
  color: #4a4a40;
  font-size: 0.9375rem;
  text-align: center;
  max-width: 56ch;
  margin: 0 auto;
  padding: 1.5rem 0 0;
  border-top: 1px solid #f0ece2;
}

/* ---------- Revision v2: founder section ---------- */

.section-founder {
  padding: 5rem 0;
  background: #fbf9f4;
}

.founder-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e5e1d8;
  border-radius: 6px;
  padding: 3rem;
}

@media (max-width: 820px) {
  .founder-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
}

.founder-photo-col {
  text-align: center;
}

@media (max-width: 820px) {
  .founder-photo-col {
    text-align: left;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0.35rem 1.25rem;
    align-items: center;
  }
}

.founder-photo {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  background: #e5e1d8;
  margin: 0 auto 1.25rem;
  box-shadow: none;
}

@media (max-width: 820px) {
  .founder-photo {
    width: 120px;
    height: 120px;
    margin: 0;
    grid-row: 1 / span 3;
  }
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none;
}

.founder-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 0.125rem;
  color: #1a1a14;
}

.founder-title {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a8576;
  margin: 0 0 1rem;
}

@media (max-width: 820px) {
  .founder-title {
    margin-bottom: 0.35rem;
  }
}

.founder-cta {
  margin: 0;
}

.founder-cta a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--evergreen, #18382f);
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  letter-spacing: 0;
  text-transform: none;
  font-family: var(--sans);
}

.founder-cta a:hover {
  opacity: 0.7;
  color: var(--evergreen, #18382f);
}

.founder-text-col .section-eyebrow {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8a8576;
  font-weight: 600;
  margin: 0 0 0.875rem;
}

.founder-headline {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1.25rem;
  color: #1a1a14;
  max-width: 30ch;
}

.founder-lede {
  font-size: 1rem;
  line-height: 1.55;
  color: #4a4a40;
  margin: 0 0 2rem;
  max-width: 56ch;
}

.founder-credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0 0 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid #e5e1d8;
  border-bottom: 1px solid #e5e1d8;
}

@media (max-width: 560px) {
  .founder-credentials {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.founder-cred-block {
  text-align: left;
}

.founder-cred-stat {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--evergreen, #18382f);
  margin: 0 0 0.25rem;
  line-height: 1;
}

.founder-cred-stat-long {
  font-size: 1.5rem;
  white-space: nowrap;
}

.founder-cred-label {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #4a4a40;
  margin: 0;
}

.founder-roster-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a8576;
  font-weight: 600;
  margin: 0 0 0.875rem;
}

.founder-logo-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  align-items: center;
}

.client-logo {
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0;
}

.client-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 3.25rem;
  object-fit: contain;
}

.client-logo-burton img,
.client-logo-luneng img,
.client-logo-snowland img {
  max-height: 4.25rem;
}

.client-logo-thinkwell img,
.client-logo-vanke img {
  max-height: 2.75rem;
}

@media (max-width: 560px) {
  .founder-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1.25rem;
  }
}

/* Interactive private report */
.interactive-report-page {
  background: var(--glacier);
  min-height: 100vh;
}

.report-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 90;
  background: rgba(7, 16, 17, .06);
}

.report-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--cyan);
  transition: width .2s var(--ease);
}

.report-topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 72px;
  display: grid;
  grid-template-columns: minmax(180px, .8fr) minmax(360px, auto) minmax(240px, .8fr);
  align-items: center;
  gap: 18px;
  padding: 0 clamp(18px, 3vw, 40px);
  background: rgba(246, 247, 244, .86);
  border-bottom: 1px solid var(--border-hairline);
  backdrop-filter: blur(20px);
}

.report-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 28px;
  text-decoration: none;
}

.report-mode-switch {
  justify-self: center;
  display: grid;
  grid-template-columns: repeat(3, minmax(92px, 1fr));
  width: min(460px, 100%);
  border: 1px solid var(--border-soft);
  background: var(--paper);
}

.report-mode-switch button {
  display: grid;
  place-items: center;
  border: 0;
  border-right: 1px solid var(--border-hairline);
  background: transparent;
  color: var(--ink);
  padding: 11px 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}

.report-mode-switch button:last-child { border-right: 0; }
.report-mode-switch button span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .1em;
}

.report-mode-switch button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.report-mode-switch button.is-active span { color: rgba(255, 255, 255, .58); }

.report-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.interactive-report-shell {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  min-height: calc(100vh - 72px);
}

.report-sidebar {
  position: sticky;
  top: 72px;
  align-self: start;
  height: calc(100vh - 72px);
  padding: 28px 22px;
  border-right: 1px solid var(--border-hairline);
  background: rgba(255, 255, 255, .48);
  overflow-y: auto;
}

.report-sidebar-card {
  padding: 18px;
  border: 1px solid var(--border-hairline);
  background: var(--paper);
  margin-bottom: 18px;
}

.report-sidebar-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.05;
}

.report-sidebar-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.report-sidebar nav {
  display: grid;
  gap: 4px;
}

.report-sidebar nav a {
  padding: 12px 14px;
  color: rgba(7, 16, 17, .58);
  border-left: 1px solid transparent;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}

.report-sidebar nav a:hover,
.report-sidebar nav a.is-active {
  background: rgba(7, 16, 17, .035);
  color: var(--ink);
  border-left-color: var(--copper);
}

.report-canvas {
  min-width: 0;
  padding: clamp(26px, 4vw, 64px);
}

.report-loading,
.report-error {
  min-height: 56vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  text-align: center;
}

.report-error h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 4.2rem;
  font-weight: 400;
  line-height: .96;
}

.report-hero,
.report-section,
.report-sources {
  scroll-margin-top: 96px;
}

.report-hero {
  position: relative;
  padding: clamp(32px, 5vw, 74px);
  background: var(--paper);
  border: 1px solid var(--border-hairline);
  overflow: hidden;
  animation: report-rise .6s var(--ease-precise) both;
}

.report-hero::before,
.report-section::before {
  content: "";
  position: absolute;
  top: -10%;
  right: 12%;
  width: 1px;
  height: 120%;
  background: var(--copper);
  transform: rotate(28deg);
  opacity: .7;
}

@keyframes report-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes report-panel-rise {
  from { opacity: .9; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.report-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(24px, 3.4vw, 52px);
  align-items: start;
}

.report-hero-title {
  grid-column: span 8;
}

.report-hero h1 {
  margin: 18px 0 0;
  max-width: 18ch;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 400;
  line-height: .94;
  letter-spacing: 0;
}

.report-deckline,
.report-subtitle {
  max-width: 28ch;
  margin: 18px 0 0;
  color: var(--copper);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.5rem);
  font-style: italic;
  letter-spacing: 0;
  line-height: 1.1;
  text-wrap: balance;
}

.report-hero.long-title h1 {
  max-width: 22ch;
  font-size: clamp(2.35rem, 4vw, 4.25rem);
  line-height: .98;
}

.report-thesis {
  position: relative;
  z-index: 1;
  max-width: 60ch;
  margin: clamp(24px, 3vw, 34px) 0 0;
  font-size: clamp(1.22rem, 1.7vw, 1.5rem);
  line-height: 1.45;
  color: rgba(7, 16, 17, .72);
}

.report-thesis em { color: var(--copper); }

.report-ask {
  margin-top: 32px;
  max-width: 720px;
  padding: 24px 28px;
  background: var(--alpine);
  color: var(--paper);
}

.report-ask span,
.report-cover-card dt,
.report-block-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.report-ask span { color: var(--cyan); }
.report-ask strong {
  display: block;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.12;
}

.report-cover-card {
  position: relative;
  z-index: 1;
  grid-column: span 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-self: start;
  margin-top: 42px;
  padding: 22px;
  background: rgba(255, 255, 255, .68);
  border: 1px solid var(--border-hairline);
  border-top: 2px solid rgba(176, 122, 74, .72);
}

.report-mark {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  background: var(--alpine);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 22px;
}

.report-cover-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.report-cover-card dd {
  margin: 5px 0 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.1;
}

.report-cover-card dt { color: var(--muted); }

.report-metric-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  border: 1px solid var(--border-hairline);
}

.report-metric {
  min-height: 160px;
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  border: 0;
  border-right: 1px solid var(--border-hairline);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  overflow-wrap: normal;
  word-break: normal;
}

.report-metric:last-child { border-right: 0; }
.report-metric:hover { background: rgba(0, 198, 232, .045); }
.report-metric span,
.report-metric em {
  display: block;
  max-width: 100%;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.report-metric strong {
  display: block;
  max-width: 100%;
  margin: 8px 0 2px;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 3.4vw, 3.1rem);
  font-weight: 400;
  line-height: 1.25;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
  font-variant-numeric: tabular-nums;
}

.report-priorities {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
  border-top: 1px solid var(--border-hairline);
}

.report-priorities li {
  padding: 22px 20px;
  border-right: 1px solid var(--border-hairline);
}

.report-priorities li:last-child { border-right: 0; }
.report-priorities span {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
}

.report-priorities strong {
  display: block;
  margin-top: 9px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
}

.brief-deck {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  border: 1px solid var(--border-hairline);
  background: rgba(255, 255, 255, .58);
}

.brief-deck-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-hairline);
}

.brief-deck-head span,
.brief-deck-head strong,
.brief-card span,
.brief-card em,
.report-insight-head,
.report-evidence-note,
.seasonality-strip span,
.seasonality-strip strong,
.map-label,
.position-point span,
.competitor-rows span,
.competitor-rows em,
.competitor-rows small,
.component-rail span,
.component-rail em,
.component-detail > span,
.component-detail div em,
.sensitivity-grid,
.lever-grid > div > span,
.lever-grid small,
.decision-list > article > span,
.decision-list aside em,
.decision-list aside strong,
.decision-list aside mark {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brief-deck-head span,
.brief-card span,
.component-rail button.is-active span,
.decision-list > article > span {
  color: var(--copper);
}

.brief-deck-head strong {
  color: var(--muted);
  white-space: nowrap;
}

.brief-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brief-card {
  min-width: 0;
  min-height: 250px;
  padding: 22px;
  border-right: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
  background: rgba(255, 255, 255, .54);
  animation: report-rise .46s var(--ease-precise) both;
  animation-delay: var(--delay);
  transition: transform .24s var(--ease), background .24s var(--ease), box-shadow .24s var(--ease);
}

.brief-card:nth-child(3n) { border-right: 0; }

.brief-card:hover {
  transform: translateY(-3px);
  background: var(--paper);
  box-shadow: 0 18px 48px rgba(7, 16, 17, .08);
}

.brief-card strong {
  display: block;
  margin-top: 16px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  font-weight: 400;
  line-height: 1.04;
}

.brief-card p {
  margin-top: 14px;
  color: rgba(7, 16, 17, .62);
  font-size: .98rem;
}

.brief-card em {
  display: block;
  margin-top: 22px;
  color: var(--cyan);
  font-style: normal;
}

.report-section-stack {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  margin-top: clamp(32px, 5vw, 70px);
}

.report-section {
  position: relative;
  overflow: visible;
  padding: clamp(42px, 6vw, 86px) 0;
  border: 0;
  border-top: 1px solid var(--border-hairline);
  background: transparent;
  animation: report-rise .6s var(--ease-precise) both;
}

.report-section-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-hairline);
}

.report-section-head > span {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
}

.report-section-head h2 {
  margin: 8px 0 0;
  max-width: 18ch;
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 400;
  line-height: .94;
}

.report-section-head p:last-child {
  max-width: 72ch;
  margin: 18px 0 0;
  color: rgba(7, 16, 17, .64);
  font-size: 1.08rem;
}

.report-block-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.report-block-grid.source-slide-grid {
  grid-template-columns: 1fr;
}

.report-block {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--border-hairline);
  background: var(--paper);
  transition: transform .24s var(--ease), border-color .24s var(--ease), box-shadow .24s var(--ease), background .24s var(--ease);
}

.report-block.wide { grid-column: 1 / -1; }
.rich-report-block.wide { grid-column: 1 / -1; }
.rich-report-block {
  min-width: 0;
}

.report-block:hover {
  transform: translateY(-2px);
  border-color: rgba(176, 122, 74, .24);
  box-shadow: 0 18px 54px rgba(7, 16, 17, .055);
}

.report-block.source-slide {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.report-block.signal {
  background: var(--alpine);
  color: var(--paper);
}

.report-block.signal p,
.report-block.signal li,
.report-block.signal summary { color: rgba(255, 255, 255, .72); }
.report-block.signal .report-block-kicker { color: var(--cyan); }

.report-insight-head,
.report-slide-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.report-insight-head span {
  color: var(--copper);
}

.report-insight-head em {
  color: var(--muted);
  font-style: normal;
  text-align: right;
}

.report-slide-meta button {
  border: 1px solid var(--border-soft);
  background: transparent;
  color: inherit;
  padding: 7px 9px;
  font-family: inherit;
  font-size: 9px;
  cursor: pointer;
}

.report-block.signal .report-slide-meta,
.report-block.signal .report-slide-meta button {
  color: rgba(255, 255, 255, .64);
  border-color: rgba(255, 255, 255, .18);
}

.report-block-kicker {
  color: var(--copper);
  margin-bottom: 12px;
}

.report-block h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2.05rem;
  font-weight: 400;
  line-height: 1.03;
}

.report-block p {
  margin: 16px 0 0;
  color: rgba(7, 16, 17, .64);
  font-size: 1rem;
}

.report-block ul,
.report-block ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.report-block li {
  color: rgba(7, 16, 17, .68);
}

.report-slide-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 20px;
  border: 1px solid var(--border-hairline);
}

.report-slide-metrics div {
  min-width: 0;
  padding: 16px;
  border-right: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
}

.report-slide-metrics div:nth-child(2n) { border-right: 0; }

.report-slide-metrics span,
.report-slide-metrics em {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.report-slide-metrics strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.report-slide-metrics em {
  margin-top: 7px;
  font-style: normal;
}

.report-block.signal .report-slide-metrics {
  border-color: rgba(255, 255, 255, .14);
}

.report-block.signal .report-slide-metrics div {
  border-color: rgba(255, 255, 255, .14);
}

.report-block.signal .report-slide-metrics span,
.report-block.signal .report-slide-metrics em {
  color: rgba(255, 255, 255, .54);
}

.report-block.signal .report-slide-metrics strong {
  color: var(--paper);
}

.report-slide-details {
  margin-top: 18px;
  border-top: 1px solid var(--border-hairline);
  padding-top: 14px;
}

.report-slide-details summary {
  color: var(--ink);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.report-block.signal .report-slide-details {
  border-top-color: rgba(255, 255, 255, .14);
}

.report-slide-details summary {
  list-style: none;
}

.report-slide-details summary::-webkit-details-marker {
  display: none;
}

.report-slide-details summary::after {
  content: "+";
  float: right;
  color: var(--copper);
}

.report-slide-details[open] summary::after {
  content: "-";
}

.report-support-panel {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 2px solid var(--copper);
  background: rgba(176, 122, 74, .065);
}

.report-support-panel span {
  display: block;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.report-support-panel ul {
  margin: 10px 0 0;
}

.report-mini-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 20px;
  border: 1px solid var(--border-hairline);
}

.report-mini-metrics span {
  padding: 18px;
  border-right: 1px solid var(--border-hairline);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.report-mini-metrics span:last-child { border-right: 0; }

.section-evidence-digest {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid var(--border-hairline);
  background: var(--paper);
}

.section-evidence-digest > div:last-child {
  border: 1px solid var(--border-hairline);
}

.section-evidence-digest article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) minmax(110px, .24fr);
  gap: 16px;
  align-items: start;
  padding: 16px;
  border-bottom: 1px solid var(--border-hairline);
  transition: background .2s var(--ease), transform .2s var(--ease);
}

.section-evidence-digest article:last-child {
  border-bottom: 0;
}

.section-evidence-digest article:hover {
  background: rgba(0, 198, 232, .045);
  transform: translateX(2px);
}

.section-evidence-digest article > span,
.section-evidence-digest small {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.section-evidence-digest strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 400;
  line-height: 1.08;
}

.section-evidence-digest p {
  margin: 6px 0 0;
  color: rgba(7, 16, 17, .62);
  font-size: .95rem;
}

.section-evidence-digest em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
  font-size: .85rem;
}

.section-evidence-digest aside {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.section-evidence-digest b {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
}

.report-visual-board,
.section-intel {
  position: relative;
  z-index: 1;
  margin-top: clamp(28px, 4vw, 52px);
  opacity: 1;
  transform: translateY(10px);
  transition: opacity .62s var(--ease-precise), transform .62s var(--ease-precise);
}

.report-visual-board.is-visible,
.section-intel.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.report-visual-board {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--border-hairline);
  background:
    linear-gradient(135deg, rgba(0, 198, 232, .045), transparent 34%),
    var(--glacier);
}

.report-visual-head {
  display: grid;
  grid-template-columns: minmax(120px, .25fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: start;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-hairline);
}

.report-visual-head > span,
.visual-card-head span,
.scenario-card > div:first-child span,
.visual-mix-grid em,
.source-depth-grid em,
.phase-track span,
.risk-row > span,
.risk-row em,
.risk-row small,
.evidence-card-grid span,
.decision-rail li span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.report-visual-head > span {
  color: var(--copper);
}

.report-visual-head h2 {
  margin: 0;
  max-width: 17ch;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  font-weight: 400;
  line-height: .94;
}

.report-visual-head p {
  max-width: 76ch;
  margin: 16px 0 0;
  color: rgba(7, 16, 17, .64);
  font-size: 1.04rem;
}

.visual-tabs,
.scenario-switch {
  display: inline-grid;
  grid-auto-flow: column;
  position: relative;
  z-index: 2;
  margin-top: 22px;
  border: 1px solid var(--border-hairline);
  background: var(--paper);
}

.visual-tabs button,
.scenario-switch button {
  border: 0;
  border-right: 1px solid var(--border-hairline);
  background: transparent;
  color: var(--ink);
  padding: 11px 16px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background .2s var(--ease), color .2s var(--ease);
}

.visual-tabs button:last-child,
.scenario-switch button:last-child {
  border-right: 0;
}

.visual-tabs button:hover,
.scenario-switch button:hover {
  background: rgba(0, 198, 232, .08);
}

.visual-tabs button.is-active,
.scenario-switch button.is-active {
  background: var(--ink);
  color: var(--paper);
}

.visual-panel {
  display: none;
  margin-top: 18px;
}

.visual-panel.is-active {
  display: block;
  animation: report-panel-rise .28s var(--ease-precise) both;
}

.visual-two-up,
.section-intel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.section-intel {
  margin-bottom: 28px;
}

.report-scene {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 2.6vw, 30px);
}

.report-scene > .visual-card:first-child {
  position: relative;
  overflow: hidden;
  min-height: clamp(330px, 37vw, 560px);
  padding: clamp(24px, 3.8vw, 54px);
  border-color: rgba(176, 122, 74, .24);
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 198, 232, .12), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(246, 247, 244, .72));
  box-shadow: 0 32px 96px rgba(7, 16, 17, .07);
}

.report-scene > .visual-card:first-child::after {
  content: "";
  position: absolute;
  top: -18%;
  right: 14%;
  width: 1px;
  height: 138%;
  background: rgba(176, 122, 74, .2);
  transform: rotate(22deg);
  pointer-events: none;
}

.report-scene[data-module-contract] {
  position: relative;
}

.report-scene[data-module-contract]::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  width: clamp(96px, 18vw, 220px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 122, 74, .42));
}

.model-directed-intel {
  grid-template-columns: minmax(0, 1fr);
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(176, 122, 74, .18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(247, 248, 245, .72)),
    radial-gradient(circle at 92% 10%, rgba(0, 198, 232, .08), transparent 24%);
  box-shadow: 0 22px 70px rgba(7, 16, 17, .055);
}

.model-directed-intel .module-director-note {
  max-width: 82ch;
  margin: 0;
  color: rgba(7, 16, 17, .62);
  font-size: clamp(.95rem, 1.05vw, 1.08rem);
  line-height: 1.55;
}

.directed-module-suite {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}

.directed-module-suite[data-directed-count="1"] {
  grid-template-columns: minmax(0, 1fr);
}

.directed-module-suite > .visual-card,
.directed-module-suite > .rich-report-block,
.directed-module-suite > .journey-timeline,
.directed-module-suite > .decision-gate-checklist,
.directed-module-suite > .owner-takeaways,
.directed-module-suite > .strategic-verdict-strip,
.directed-module-suite > .source-depth-card {
  min-width: 0;
  height: 100%;
  margin: 0;
}

.directed-module-suite > .strategic-verdict-strip,
.directed-module-suite > .journey-timeline,
.directed-module-suite > .decision-gate-checklist,
.directed-module-suite > .proof-stack-card {
  grid-column: 1 / -1;
}

.directed-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: 1px;
  margin-top: 16px;
  background: var(--border-hairline);
  border: 1px solid var(--border-hairline);
}

.directed-proof-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 180px;
  padding: 18px;
  background: rgba(255, 255, 255, .72);
  animation: report-card-rise .45s ease both;
  animation-delay: var(--delay, 0ms);
}

.directed-proof-grid span,
.directed-pullquote > span,
.image-anchor-card span {
  color: var(--copper);
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.directed-proof-grid strong {
  color: var(--ink);
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(1.12rem, 1.5vw, 1.45rem);
  font-weight: 400;
  line-height: 1.08;
}

.directed-proof-grid mark {
  width: fit-content;
  padding: 4px 8px;
  color: #07505a;
  background: rgba(0, 198, 232, .09);
  border: 1px solid rgba(0, 198, 232, .2);
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: .68rem;
}

.directed-proof-grid p,
.directed-pullquote p,
.image-anchor-card p {
  margin: 0;
  color: rgba(7, 16, 17, .62);
  font-size: .94rem;
  line-height: 1.5;
}

.directed-pullquote {
  display: grid;
  align-content: center;
  gap: clamp(14px, 2vw, 22px);
  min-height: clamp(260px, 28vw, 420px);
  padding: clamp(24px, 3vw, 44px);
  background:
    linear-gradient(135deg, rgba(7, 60, 52, .98), rgba(7, 16, 17, .96));
  color: var(--paper);
}

.directed-pullquote blockquote {
  max-width: 18ch;
  margin: 0;
  color: var(--paper);
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(2.2rem, 4.6vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: .96;
}

.directed-pullquote p {
  max-width: 56ch;
  color: rgba(255, 255, 255, .7);
}

.image-anchor-card {
  display: grid;
  grid-template-columns: minmax(180px, .9fr) minmax(0, 1.1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  min-height: clamp(300px, 32vw, 480px);
  padding: clamp(18px, 2.6vw, 34px);
  overflow: hidden;
}

.image-anchor-visual {
  min-height: 240px;
  border: 1px solid rgba(176, 122, 74, .22);
  background:
    linear-gradient(135deg, rgba(7, 60, 52, .88), rgba(7, 16, 17, .84)),
    radial-gradient(circle at 24% 22%, rgba(0, 198, 232, .28), transparent 22%),
    linear-gradient(145deg, rgba(176, 122, 74, .42), transparent 36%);
}

.image-anchor-card.has-image .image-anchor-visual {
  background:
    linear-gradient(135deg, rgba(7, 60, 52, .18), rgba(7, 16, 17, .58)),
    var(--world-image) center / cover no-repeat;
}

.image-anchor-card > div:last-child {
  display: grid;
  align-content: center;
  gap: 16px;
}

.image-anchor-card strong {
  color: var(--ink);
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(2rem, 3.4vw, 4rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: .98;
}

.finance-roadmap-intel > .scenario-explorer:first-child,
.finance-risk-intel > .scenario-explorer:first-child {
  border-color: rgba(176, 122, 74, .22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(246, 247, 244, .76));
  color: var(--ink);
  box-shadow: 0 24px 78px rgba(7, 16, 17, .07);
}

.finance-roadmap-intel > .scenario-explorer:first-child .visual-card-head,
.finance-risk-intel > .scenario-explorer:first-child .visual-card-head {
  color: var(--muted);
}

.finance-roadmap-intel > .scenario-explorer:first-child .visual-card-head strong,
.finance-risk-intel > .scenario-explorer:first-child .visual-card-head strong {
  color: var(--copper);
}

.finance-roadmap-intel > .scenario-explorer:first-child .scenario-switch,
.finance-risk-intel > .scenario-explorer:first-child .scenario-switch {
  border-color: var(--border-hairline);
}

.finance-roadmap-intel > .scenario-explorer:first-child .scenario-switch button,
.finance-risk-intel > .scenario-explorer:first-child .scenario-switch button {
  border-color: var(--border-hairline);
  color: var(--muted);
}

.finance-roadmap-intel > .scenario-explorer:first-child .scenario-switch button.is-active,
.finance-risk-intel > .scenario-explorer:first-child .scenario-switch button.is-active {
  background: var(--alpine);
  color: var(--paper);
}

.finance-roadmap-intel > .scenario-explorer:first-child .scenario-card,
.finance-risk-intel > .scenario-explorer:first-child .scenario-card {
  border: 1px solid var(--border-hairline);
  background: rgba(255, 255, 255, .72);
}

.finance-intel,
.risk-intel,
.roadmap-intel,
.source-intel {
  grid-template-columns: minmax(0, 1fr);
}

.visual-card {
  overflow: hidden;
  min-width: 0;
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid var(--border-hairline);
  background: var(--paper);
  box-shadow: 0 18px 60px rgba(7, 16, 17, .035);
  transition: transform .24s var(--ease), border-color .24s var(--ease), box-shadow .24s var(--ease), background .24s var(--ease);
}

.visual-card:hover {
  transform: translateY(-2px);
  border-color: rgba(176, 122, 74, .22);
  box-shadow: 0 22px 70px rgba(7, 16, 17, .075);
}

.visual-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  color: var(--muted);
}

.visual-card-head strong {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.visual-stack-bar {
  display: flex;
  min-height: 70px;
  border: 1px solid var(--border-hairline);
  overflow: hidden;
  background: rgba(7, 16, 17, .03);
}

.visual-stack-bar div {
  position: relative;
  flex: 0 0 calc(var(--share) * 1%);
  min-width: 44px;
  border-right: 1px solid rgba(255, 255, 255, .22);
  background: var(--color);
  color: var(--paper);
  transform-origin: left center;
  animation: visual-bar-grow .72s var(--ease-precise) both;
  animation-delay: var(--delay);
}

.visual-stack-bar div:last-child {
  border-right: 0;
}

.visual-stack-bar div span {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1;
}

.visual-mix-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
  border-top: 1px solid var(--border-hairline);
  border-left: 1px solid var(--border-hairline);
}

.visual-mix-grid div {
  min-width: 0;
  padding: 16px;
  border-right: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
}

.visual-mix-grid i {
  display: block;
  width: 22px;
  height: 2px;
  margin-bottom: 12px;
}

.visual-mix-grid span,
.visual-mix-grid strong,
.visual-mix-grid em {
  display: block;
}

.visual-mix-grid span {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.08;
}

.visual-mix-grid strong {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.visual-mix-grid em {
  margin-top: 9px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.35;
}

.audience-intel .visual-mix,
.audience-program-intel .visual-mix,
.market-intel .visual-mix {
  background:
    linear-gradient(180deg, rgba(176, 122, 74, .07), transparent 32%),
    rgba(255, 255, 255, .72);
}

.audience-intel .visual-stack-bar,
.audience-program-intel .visual-stack-bar,
.market-intel .visual-stack-bar {
  min-height: 82px;
  background: rgba(7, 16, 17, .025);
}

.audience-intel .visual-stack-bar div,
.audience-program-intel .visual-stack-bar div,
.market-intel .visual-stack-bar div {
  color: var(--ink);
  border-right-color: var(--border-hairline);
}

.audience-intel .visual-stack-bar div:nth-child(1),
.audience-program-intel .visual-stack-bar div:nth-child(1),
.market-intel .visual-stack-bar div:nth-child(1) {
  background: rgba(246, 247, 244, .94) !important;
}

.audience-intel .visual-stack-bar div:nth-child(2),
.audience-program-intel .visual-stack-bar div:nth-child(2),
.market-intel .visual-stack-bar div:nth-child(2) {
  color: var(--paper);
  background: var(--alpine) !important;
}

.audience-intel .visual-stack-bar div:nth-child(3),
.audience-program-intel .visual-stack-bar div:nth-child(3),
.market-intel .visual-stack-bar div:nth-child(3) {
  background:
    linear-gradient(180deg, var(--cyan) 0 3px, rgba(255, 255, 255, .86) 3px) !important;
}

.audience-intel .visual-stack-bar div:nth-child(n + 4),
.audience-program-intel .visual-stack-bar div:nth-child(n + 4),
.market-intel .visual-stack-bar div:nth-child(n + 4) {
  background: rgba(176, 122, 74, .13) !important;
}

.audience-intel .visual-mix-grid i,
.audience-program-intel .visual-mix-grid i,
.market-intel .visual-mix-grid i {
  background: var(--copper) !important;
}

.audience-intel .visual-mix-grid div:nth-child(3) i,
.audience-program-intel .visual-mix-grid div:nth-child(3) i,
.market-intel .visual-mix-grid div:nth-child(3) i {
  background: var(--cyan) !important;
}

.visual-bar-list {
  display: grid;
  gap: 12px;
}

.visual-bar-list > div,
.present-visual-bars > div {
  display: grid;
  grid-template-columns: minmax(120px, .7fr) minmax(90px, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.visual-bar-list span,
.visual-bar-list em,
.present-visual-bars span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.visual-bar-list i,
.present-visual-bars i {
  position: relative;
  display: block;
  height: 9px;
  overflow: hidden;
  background: rgba(7, 16, 17, .07);
}

.visual-bar-list i::after,
.present-visual-bars i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--bar) * 1%);
  background: var(--color, var(--copper));
  animation: visual-bar-grow .72s var(--ease-precise) both;
  animation-delay: var(--delay);
}

.visual-bar-list strong,
.present-visual-bars strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  white-space: nowrap;
}

.visual-bar-list em {
  grid-column: 1 / -1;
  margin-top: -5px;
  font-style: normal;
}

.metric-tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  gap: 1px;
  background: var(--border-hairline);
  border: 1px solid var(--border-hairline);
}

.metric-tile-grid > div {
  min-width: 0;
  padding: 16px;
  background: rgba(255, 255, 255, .72);
  animation: report-card-rise .45s ease both;
  animation-delay: var(--delay, 0ms);
}

.metric-tile-grid span,
.metric-tile-grid em {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.metric-tile-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: .94;
  overflow-wrap: anywhere;
}

.metric-tile-grid em {
  margin-top: 10px;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
}

.scenario-card-stack,
.scenario-grid {
  position: relative;
  z-index: 1;
  margin-top: 18px;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--border-hairline);
}

.scenario-card {
  display: grid;
  align-content: space-between;
  gap: 20px;
  min-height: 330px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(246, 247, 244, .7));
  color: var(--ink);
  border-right: 1px solid var(--border-hairline);
  animation: report-panel-rise .3s var(--ease-precise) both;
}

.scenario-card:last-child {
  border-right: 0;
}

.scenario-card.featured {
  background:
    radial-gradient(circle at 82% 14%, rgba(0, 198, 232, .18), transparent 30%),
    linear-gradient(135deg, rgba(6, 61, 53, .98), rgba(3, 30, 29, .98));
  color: var(--paper);
}

.scenario-card h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 2.7vw, 3.2rem);
  font-weight: 400;
  line-height: .95;
  overflow-wrap: break-word;
}

.scenario-metrics {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border-hairline);
}

.scenario-metrics div {
  min-width: 0;
  padding: 14px;
  border-right: 0;
  border-bottom: 1px solid var(--border-hairline);
}

.scenario-metrics div:last-child {
  border-bottom: 0;
}

.scenario-metrics span,
.scenario-metrics em,
.scenario-card > div:first-child span {
  display: block;
  color: var(--muted);
}

.scenario-metrics strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.3vw, 2.75rem);
  font-weight: 400;
}

.scenario-metrics em {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  text-transform: uppercase;
}

.scenario-card ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scenario-card li {
  padding: 14px;
  border: 1px solid var(--border-hairline);
  color: rgba(7, 16, 17, .68);
}

.scenario-card.featured h3,
.scenario-card.featured .scenario-metrics strong {
  color: var(--paper);
}

.scenario-card.featured .scenario-metrics {
  border-color: rgba(255, 255, 255, .14);
}

.scenario-card.featured .scenario-metrics div,
.scenario-card.featured li {
  border-color: rgba(255, 255, 255, .14);
}

.scenario-card.featured .scenario-metrics span,
.scenario-card.featured .scenario-metrics em,
.scenario-card.featured > div:first-child span {
  color: rgba(255, 255, 255, .58);
}

.scenario-card.featured li {
  color: rgba(255, 255, 255, .76);
}

.risk-table {
  border: 1px solid var(--border-hairline);
}

.risk-row {
  display: grid;
  grid-template-columns: 54px minmax(150px, .9fr) minmax(220px, 1.2fr) 72px 72px 90px;
  gap: 14px;
  align-items: start;
  min-width: 0;
  padding: 16px;
  border-bottom: 1px solid var(--border-hairline);
  animation: report-rise .42s var(--ease-precise) both;
  animation-delay: var(--delay);
}

.risk-row:last-child {
  border-bottom: 0;
}

.risk-row > span,
.risk-row em,
.risk-row small {
  color: var(--muted);
}

.risk-row strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.05;
}

.risk-row p {
  margin: 4px 0 0;
  color: rgba(7, 16, 17, .62);
  font-size: .92rem;
}

.risk-row > p {
  margin: 0;
}

.risk-row em,
.risk-row small {
  display: block;
  font-style: normal;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.risk-row.impact-high {
  background: rgba(176, 122, 74, .12);
}

.risk-row.impact-low {
  background: rgba(0, 198, 232, .055);
}

.phase-road {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 0;
  border: 1px solid rgba(176, 122, 74, .2);
  background:
    linear-gradient(90deg, rgba(0, 198, 232, .045), transparent 42%),
    rgba(255, 255, 255, .64);
}

.phase-road::before {
  content: "";
  position: absolute;
  left: clamp(26px, 3vw, 34px);
  right: clamp(26px, 3vw, 34px);
  top: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--copper), rgba(176, 122, 74, .16));
  opacity: .45;
}

.phase-road section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: start;
  min-width: 0;
  min-height: 230px;
  padding: clamp(20px, 2.6vw, 32px);
  border-right: 1px solid rgba(176, 122, 74, .17);
  animation: report-rise .42s var(--ease-precise) both;
  animation-delay: var(--delay);
}

.phase-road section:last-child {
  border-right: 0;
}

.phase-road section > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(176, 122, 74, .42);
  background: var(--paper);
  color: var(--copper);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
}

.phase-road strong,
.phase-road em,
.phase-road p {
  display: block;
}

.phase-road em {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: .12em;
  line-height: 1.45;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-break: normal;
}

.phase-road strong {
  margin-top: 2px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  font-weight: 400;
  line-height: 1.04;
  hyphens: none;
  overflow-wrap: break-word;
  text-wrap: balance;
  word-break: normal;
}

.phase-road p {
  max-width: 30ch;
  margin: 16px 0 0;
  color: rgba(7, 16, 17, .62);
  font-size: .94rem;
  line-height: 1.45;
}

.phase-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--border-hairline);
}

.phase-track div {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid var(--border-hairline);
}

.decision-rail ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border-hairline);
  list-style: none;
}

.decision-rail li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 15px 16px;
  border-bottom: 1px solid var(--border-hairline);
}

.decision-rail li:last-child {
  border-bottom: 0;
}

.decision-rail li span {
  color: var(--copper);
}

.evidence-card-grid,
.source-rail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--border-hairline);
}

.evidence-card-grid div,
.source-rail-grid div {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
}

.evidence-card-grid div:nth-child(2n),
.source-rail-grid div:nth-child(2n) {
  border-right: 0;
}

.evidence-card-grid span,
.source-rail-grid span {
  color: var(--copper);
}

.evidence-card-grid strong,
.source-rail-grid strong {
  display: block;
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 1.36rem;
  font-weight: 400;
  line-height: 1.05;
}

.evidence-card-grid p,
.source-rail-grid p {
  margin: 12px 0 0;
  color: rgba(7, 16, 17, .62);
  font-size: .94rem;
}

.source-rail {
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
  background: rgba(255, 255, 255, .42);
}

.source-rail summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
}

.source-rail summary::-webkit-details-marker {
  display: none;
}

.source-rail summary::after {
  content: "+";
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(176, 122, 74, .34);
  color: var(--copper);
  font-family: var(--mono);
}

.source-rail[open] summary::after {
  content: "-";
}

.source-rail summary span,
.source-rail summary strong {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.source-rail summary span {
  color: var(--muted);
}

.source-rail summary strong {
  margin-left: auto;
  color: var(--copper);
}

.source-rail-grid {
  margin-bottom: 16px;
  border-color: rgba(7, 16, 17, .08);
  background: rgba(255, 255, 255, .62);
}

.report-recommendation-close {
  margin-top: clamp(24px, 4vw, 58px);
  border-top: 0;
}

.recommendation-close-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 5fr);
  gap: clamp(22px, 3vw, 44px);
  min-height: clamp(420px, 48vw, 620px);
  align-items: center;
  padding: clamp(28px, 4.2vw, 58px);
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    radial-gradient(circle at 78% 8%, rgba(0, 198, 232, .14), transparent 26%),
    linear-gradient(135deg, rgba(5, 46, 39, .98), rgba(5, 28, 27, .98));
  color: var(--paper);
  box-shadow: 0 36px 110px rgba(7, 16, 17, .18);
}

.recommendation-close-shell::after {
  content: "";
  position: absolute;
  top: -16%;
  right: 26%;
  width: 1px;
  height: 136%;
  background: rgba(176, 122, 74, .36);
  transform: rotate(24deg);
  pointer-events: none;
}

.recommendation-close-copy,
.recommendation-proof-grid,
.recommendation-gate-strip {
  position: relative;
  z-index: 1;
}

.recommendation-close-copy .eyebrow {
  color: var(--cyan);
}

.recommendation-close-copy h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: .88;
  text-wrap: balance;
}

.recommendation-close-copy h2 em {
  color: var(--copper);
  font-style: italic;
}

.recommendation-close-copy > p:not(.eyebrow) {
  max-width: 52ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(1.02rem, 1.35vw, 1.24rem);
  line-height: 1.48;
}

.recommendation-action {
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .045);
}

.recommendation-action span,
.recommendation-action strong {
  display: block;
}

.recommendation-action span {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.recommendation-action strong {
  margin-top: 10px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  font-weight: 400;
  line-height: 1.08;
}

.recommendation-proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, .14);
}

.recommendation-proof-grid article {
  min-width: 0;
  padding: clamp(18px, 2.3vw, 26px);
  border-right: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  animation: report-rise .42s var(--ease-precise) both;
  animation-delay: var(--delay);
}

.recommendation-proof-grid article:nth-child(2n) {
  border-right: 0;
}

.recommendation-proof-grid span,
.recommendation-proof-grid em {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.recommendation-proof-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.02;
}

.recommendation-proof-grid em {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .58);
}

.recommendation-proof-grid p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .7);
  line-height: 1.42;
}

.recommendation-gate-strip {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.4vw, 30px);
  align-items: start;
  align-self: start;
  padding-top: clamp(16px, 2vw, 24px);
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.recommendation-gate-strip p {
  max-width: 52ch;
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 1rem;
  line-height: 1.5;
}

.recommendation-gate-strip ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recommendation-gate-strip li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.recommendation-gate-strip li:first-child {
  border-top: 0;
}

.recommendation-gate-strip li span {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 10px;
}

.recommendation-gate-strip li strong {
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.signal-list-card h3 {
  max-width: 760px;
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 400;
  line-height: .98;
}

.signal-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border-hairline);
  border-left: 1px solid var(--border-hairline);
}

.signal-list-grid div {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
  animation: report-card-rise .58s var(--ease-precise) both;
  animation-delay: var(--delay);
}

.signal-list-grid span {
  color: var(--copper);
}

.signal-list-grid strong,
.signal-list-grid em {
  display: block;
}

.signal-list-grid strong {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.05;
}

.signal-list-grid em {
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.signal-list-grid p {
  margin: 12px 0 0;
  color: rgba(7, 16, 17, .62);
  font-size: .95rem;
}

.source-depth-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--border-hairline);
}

.source-depth-grid div {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid var(--border-hairline);
}

.source-depth-grid div:last-child {
  border-right: 0;
}

.source-depth-grid span,
.source-depth-grid em {
  display: block;
}

.source-depth-grid span {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.6rem);
  line-height: .95;
}

.source-depth-grid em {
  margin-top: 10px;
  color: var(--muted);
  font-style: normal;
}

.source-depth-map {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.source-depth-map span {
  position: relative;
  min-height: 28px;
  padding: 8px 10px;
  overflow: hidden;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.source-depth-map span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--w) * 1%);
  background: rgba(0, 198, 232, .12);
  animation: visual-bar-grow .64s var(--ease-precise) both;
  animation-delay: var(--delay);
}

.source-collection {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin-top: clamp(26px, 4vw, 46px);
  opacity: 1;
  transform: translateY(10px);
  transition: opacity .62s var(--ease-precise), transform .62s var(--ease-precise);
}

.source-collection.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.report-evidence-library {
  background:
    linear-gradient(135deg, rgba(0, 198, 232, .035), transparent 48%),
    rgba(255, 255, 255, .62);
}

.evidence-library-shell,
.source-ledger-shell {
  margin-top: clamp(22px, 3vw, 38px);
  border: 1px solid var(--border-hairline);
  background: rgba(255, 255, 255, .76);
}

.compact-ledger {
  margin-top: 0;
}

.evidence-library-shell > summary,
.source-ledger-shell > summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 2.4vw, 28px);
  cursor: pointer;
  list-style: none;
}

.evidence-library-shell > summary::-webkit-details-marker,
.source-ledger-shell > summary::-webkit-details-marker {
  display: none;
}

.evidence-library-shell > summary::after,
.source-ledger-shell > summary::after {
  content: "+";
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(176, 122, 74, .36);
  color: var(--copper);
  font-family: var(--mono);
  font-size: 16px;
}

.evidence-library-shell[open] > summary::after,
.source-ledger-shell[open] > summary::after {
  content: "-";
}

.evidence-library-shell > summary span,
.evidence-library-shell > summary strong,
.source-ledger-shell > summary span,
.source-ledger-shell > summary strong,
.compact-ledger > summary em {
  display: block;
}

.evidence-library-shell > summary span,
.source-ledger-shell > summary span,
.compact-ledger > summary em {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.evidence-library-shell > summary strong,
.source-ledger-shell > summary strong {
  margin-left: auto;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
}

.compact-ledger > summary em {
  color: var(--copper);
  font-style: normal;
}

.evidence-library-shell > .source-collection {
  margin: 0;
  padding: 0 clamp(18px, 2.4vw, 28px) clamp(18px, 2.4vw, 28px);
}

.source-ledger-shell > .report-source-grid {
  margin: 0 clamp(18px, 2.4vw, 28px) clamp(18px, 2.4vw, 28px);
}

.swot-board {
  overflow: hidden;
}

.swot-board-lead {
  display: grid;
  grid-template-columns: minmax(180px, .36fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: end;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-hairline);
}

.swot-board-lead h3 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  font-weight: 400;
  line-height: .94;
}

.swot-board-lead p {
  margin: 0;
  color: rgba(7, 16, 17, .62);
  font-size: 1rem;
  line-height: 1.55;
}

.swot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--border-hairline);
  background: var(--paper);
}

.swot-quadrant {
  min-width: 0;
  padding: clamp(18px, 2.4vw, 28px);
  border-right: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
  transition: background .22s var(--ease), transform .22s var(--ease);
}

.swot-quadrant:nth-child(2n) { border-right: 0; }
.swot-quadrant:nth-last-child(-n + 2) { border-bottom: 0; }
.swot-quadrant:hover { background: rgba(0, 198, 232, .045); }
.swot-quadrant.weaknesses:hover,
.swot-quadrant.threats:hover { background: rgba(176, 122, 74, .075); }

.swot-quadrant-head {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.swot-quadrant-head > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--alpine);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .16em;
}

.swot-quadrant.weaknesses .swot-quadrant-head > span,
.swot-quadrant.threats .swot-quadrant-head > span {
  background: var(--copper);
}

.swot-quadrant-head strong,
.swot-quadrant-head em,
.swot-quadrant-head mark {
  display: block;
}

.swot-quadrant-head strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.05;
}

.swot-quadrant-head em,
.swot-quadrant-head mark {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.swot-quadrant-head mark {
  padding: 0;
  background: transparent;
  color: var(--copper);
}

.swot-quadrant ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.swot-quadrant li {
  min-width: 0;
  padding-top: 12px;
  border-top: 1px solid var(--border-hairline);
}

.swot-quadrant li strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.1;
}

.swot-quadrant li p {
  margin: 7px 0 0;
  color: rgba(7, 16, 17, .62);
  font-size: .92rem;
  line-height: 1.42;
}

.source-atlas {
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid var(--border-hairline);
  background: rgba(255, 255, 255, .72);
}

.source-visual-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(18px, 2.4vw, 30px);
}

.source-visual-highlights .story-chart-card {
  min-width: 0;
  background:
    linear-gradient(135deg, rgba(0, 198, 232, .045), transparent 58%),
    rgba(255, 255, 255, .76);
}

.evidence-map {
  display: grid;
  grid-template-columns: minmax(90px, .16fr) minmax(110px, .2fr) minmax(0, 1fr);
  gap: 0;
  margin-bottom: 18px;
  border: 1px solid var(--border-hairline);
  background: rgba(246, 247, 244, .66);
}

.evidence-map > div {
  min-width: 0;
  padding: 16px 18px;
  border-right: 1px solid var(--border-hairline);
}

.evidence-map > div:last-child {
  border-right: 0;
}

.evidence-map > div > strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.4vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
}

.evidence-map > div > span,
.evidence-map-bars em,
.evidence-map-bars strong {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.evidence-map-bars {
  display: grid;
  gap: 9px;
}

.evidence-map-bars span {
  display: grid;
  grid-template-columns: minmax(90px, .34fr) minmax(0, 1fr) 24px;
  gap: 10px;
  align-items: center;
}

.evidence-map-bars i {
  position: relative;
  height: 3px;
  overflow: hidden;
  background: rgba(7, 16, 17, .1);
}

.evidence-map-bars i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--w) * 1%);
  background: var(--copper);
  animation: evidence-bar-in .68s var(--ease-precise) both;
  animation-delay: var(--delay);
}

@keyframes evidence-bar-in {
  from { width: 0; }
}

.source-atlas-grid {
  display: grid;
  gap: 12px;
}

.source-atlas-card {
  border: 1px solid var(--border-hairline);
  background: rgba(255, 255, 255, .78);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

.source-atlas-card summary {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  transition: background .2s var(--ease);
}

.source-atlas-card summary::-webkit-details-marker {
  display: none;
}

.source-atlas-card summary::marker {
  content: "";
}

.source-atlas-card summary > span {
  grid-column: 1;
  grid-row: 1;
}

.source-atlas-card summary > div {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}

.source-atlas-card summary > mark {
  grid-column: 3;
  grid-row: 1;
}

.source-atlas-card summary:hover,
.source-atlas-card[open] summary {
  background: rgba(0, 198, 232, .045);
}

.source-atlas-card summary:focus {
  outline: none;
}

.source-atlas-card summary:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(0, 198, 232, .72);
}

.source-atlas-card[open] {
  border-color: rgba(176, 122, 74, .42);
  box-shadow: 0 18px 42px rgba(7, 16, 17, .045);
  background: var(--paper);
}

.source-atlas-card summary > span,
.source-atlas-card summary em,
.source-atlas-card summary mark {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.source-atlas-card summary > span {
  color: var(--copper);
}

.source-atlas-card summary em {
  display: block;
  color: var(--muted);
  font-style: normal;
}

.source-atlas-card summary strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(1.24rem, 1.7vw, 1.72rem);
  font-weight: 400;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.source-atlas-card summary p {
  margin: 9px 0 0;
  color: rgba(7, 16, 17, .62);
  font-size: .96rem;
  line-height: 1.45;
}

.source-atlas-card summary mark {
  min-width: 34px;
  padding: 5px 0;
  background: transparent;
  color: var(--copper);
  text-align: right;
}

.source-atlas-body {
  display: grid;
  gap: 16px;
  padding: 0 22px 22px 84px;
}

.source-atlas-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--border-hairline);
}

.source-atlas-metrics span {
  min-width: 0;
  padding: 14px;
  border-right: 1px solid var(--border-hairline);
}

.source-atlas-metrics span:last-child {
  border-right: 0;
}

.source-atlas-metrics em,
.source-atlas-metrics small {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.source-atlas-metrics strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 1.72rem;
  font-weight: 400;
  line-height: 1;
}

.source-atlas-metrics small {
  margin-top: 6px;
  overflow-wrap: anywhere;
}

.source-atlas-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-atlas-lines li {
  min-width: 0;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid var(--border-hairline);
  background:
    linear-gradient(90deg, rgba(0, 198, 232, .055), transparent 55%),
    rgba(246, 247, 244, .42);
}

.source-atlas-lines span {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
}

.source-atlas-lines p {
  min-width: 0;
  margin: 0;
  color: rgba(7, 16, 17, .66);
  font-size: .94rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.source-atlas-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.source-atlas-links button {
  border: 1px solid var(--border-hairline);
  background: transparent;
  color: var(--ink);
  padding: 8px 10px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.source-atlas-links button:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.present-visual-bars {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
}

.present-visual-bars i {
  background: rgba(255, 255, 255, .12);
}

.present-visual-bars i::after {
  background: var(--copper);
}

.present-visual-bars span,
.present-visual-bars strong {
  color: var(--paper);
}

.seasonality-strip {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 8px;
  min-height: 230px;
  align-items: end;
}

.seasonality-strip div {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 9px;
  min-height: 210px;
  text-align: center;
}

.seasonality-strip i {
  align-self: end;
  display: block;
  width: 100%;
  height: calc(var(--h) * 1%);
  min-height: 18px;
  background: rgba(7, 16, 17, .18);
  transform-origin: bottom;
  animation: visual-bar-grow-y .72s var(--ease-precise) both;
  animation-delay: var(--delay);
}

.seasonality-strip i.peak {
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(0, 198, 232, .24);
}

.seasonality-strip span,
.seasonality-strip strong {
  color: var(--muted);
}

.positioning-map {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid var(--border-hairline);
  background-image:
    linear-gradient(rgba(7, 16, 17, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 16, 17, .06) 1px, transparent 1px);
  background-size: 20% 25%, 20% 25%;
}

.map-label {
  position: absolute;
  color: rgba(7, 16, 17, .25);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.map-label.top { top: 14px; right: 16px; }
.map-label.left { top: 14px; left: 16px; }
.map-label.bottom { bottom: 14px; left: 16px; }

.position-point {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc((100 - var(--y)) * 1%);
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translate(-50%, -50%);
  animation: report-rise .42s var(--ease-precise) both;
  animation-delay: var(--delay);
}

.position-point i {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 7px;
  font-style: normal;
  line-height: 1;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}

.position-point span {
  position: absolute;
  left: 24px;
  top: -10px;
  width: max-content;
  min-width: 96px;
  max-width: clamp(132px, 14vw, 190px);
  padding: 8px 10px;
  border: 1px solid var(--border-hairline);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}

.position-point.label-left span {
  right: 24px;
  left: auto;
  text-align: right;
}

.position-point.label-top span {
  top: auto;
  bottom: 24px;
}

.position-point.label-bottom span {
  top: 24px;
}

.position-point:hover,
.position-point.target {
  z-index: 4;
}

.position-point:hover i,
.position-point.target i {
  transform: scale(1.42);
  background: var(--cyan);
  color: var(--ink);
  box-shadow: 0 0 0 7px rgba(0, 198, 232, .16), 0 0 26px rgba(0, 198, 232, .35);
}

.position-point:hover span {
  transform: translateY(-4px);
  background: var(--ink);
  color: var(--paper);
}

.positioning-legend {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.positioning-legend span {
  min-width: 0;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--border-hairline);
}

.positioning-legend span.target {
  background: rgba(0, 198, 232, .065);
}

.positioning-legend i {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(176, 122, 74, .34);
  color: var(--copper);
  font-family: var(--mono);
  font-size: 8px;
  font-style: normal;
}

.positioning-legend strong {
  min-width: 0;
  color: rgba(7, 16, 17, .74);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.24;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.competitor-rows {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border-hairline);
}

.competitor-rows div {
  display: grid;
  grid-template-columns: minmax(190px, .78fr) minmax(0, 1.8fr);
  gap: clamp(10px, 1.6vw, 18px);
  align-items: center;
  min-width: 0;
  padding: clamp(16px, 2vw, 22px);
  border-bottom: 1px solid var(--border-hairline);
  transition: background .2s var(--ease), transform .2s var(--ease);
}

.competitor-rows div:last-child { border-bottom: 0; }

.competitor-rows div:hover,
.competitor-rows div.target {
  background: rgba(0, 198, 232, .055);
}

.competitor-rows strong {
  min-width: 0;
  font-family: var(--serif);
  font-size: clamp(1.18rem, 1.45vw, 1.55rem);
  font-weight: 400;
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.competitor-rows span {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.competitor-rows dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 10px;
  min-width: 0;
  margin: 0;
}

.competitor-rows span small {
  color: var(--copper);
  font-family: var(--mono);
  font-size: clamp(9px, .72vw, 11px);
  text-transform: uppercase;
}

.competitor-rows span em {
  color: rgba(7, 16, 17, .74);
  font-family: var(--mono);
  font-size: clamp(11px, .82vw, 13px);
  font-style: normal;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.data-matrix-card {
  overflow: hidden;
}

.data-matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.data-matrix-grid article {
  min-width: 0;
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border-hairline);
  background:
    linear-gradient(135deg, rgba(0, 198, 232, .055), transparent 52%),
    rgba(255, 255, 255, .7);
  animation: report-rise .42s var(--ease-precise) both;
  animation-delay: var(--delay);
}

.data-matrix-grid article > div:first-child {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.data-matrix-grid article > div:first-child span,
.data-matrix-grid dt {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.data-matrix-grid article > div:first-child strong {
  min-width: 0;
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 400;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.data-matrix-grid article > i {
  position: relative;
  display: block;
  height: 3px;
  overflow: hidden;
  background: rgba(7, 16, 17, .1);
}

.data-matrix-grid article > i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--score) * 1%);
  background: var(--copper);
}

.data-matrix-grid dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.data-matrix-grid dl div {
  min-width: 0;
  padding-top: 10px;
  border-top: 1px solid var(--border-hairline);
}

.data-matrix-grid dd {
  margin: 5px 0 0;
  color: rgba(7, 16, 17, .66);
  font-size: .93rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.story-chart-card {
  display: grid;
  gap: 18px;
  overflow: hidden;
}

.story-chart-head strong {
  max-width: 28ch;
  overflow-wrap: anywhere;
}

.story-chart-copy,
.story-annotation {
  max-width: 72ch;
  margin: 0;
  color: rgba(7, 16, 17, .64);
  font-size: .98rem;
  line-height: 1.45;
}

.story-bars {
  display: grid;
  gap: 12px;
}

.story-bars > div {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(130px, .36fr) minmax(0, 1fr) minmax(70px, auto);
  gap: 12px;
  align-items: center;
  animation: report-rise .42s var(--ease-precise) both;
  animation-delay: var(--delay);
}

.story-bars span,
.story-bars em,
.story-donut-legend strong,
.story-donut-legend em,
.story-map-list strong,
.story-map-list em,
.story-flow span,
.story-heatmap em {
  min-width: 0;
  overflow-wrap: anywhere;
}

.story-bars span,
.story-donut-legend strong,
.story-map-list strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.15;
}

.story-bars i {
  position: relative;
  height: 4px;
  overflow: hidden;
  background: rgba(7, 16, 17, .1);
}

.story-bars i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--w) * 1%);
  height: 100%;
  background: var(--copper);
  animation: visual-bar-grow .7s var(--ease-precise) both;
  animation-delay: var(--delay);
}

.story-bars strong {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

.story-bars em {
  grid-column: 2 / 4;
  color: var(--muted);
  font-size: .88rem;
  font-style: normal;
  line-height: 1.35;
}

.story-line-chart {
  display: grid;
  gap: 10px;
  padding: 12px 0 2px;
}

.story-line-chart svg {
  display: block;
  width: 100%;
  min-height: 260px;
  overflow: visible;
}

.story-line-chart path {
  fill: none;
  stroke: rgba(7, 16, 17, .09);
  stroke-width: .45;
}

.story-line-chart polyline {
  fill: none;
  stroke: var(--alpine);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  animation: chart-draw 1s var(--ease-precise) forwards;
}

.story-line-chart circle {
  fill: var(--cyan);
  stroke: var(--paper);
  stroke-width: .6;
  opacity: 0;
  animation: report-rise .36s .48s var(--ease-precise) both;
}

.story-line-labels {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.story-line-labels span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.story-donut-wrap {
  display: grid;
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}

.story-donut {
  aspect-ratio: 1;
  border-radius: 999px;
  position: relative;
  box-shadow: inset 0 0 0 1px var(--border-hairline);
  animation: report-rise .42s var(--ease-precise) both;
}

.story-donut::after {
  content: "";
  position: absolute;
  inset: 26%;
  border-radius: inherit;
  background: var(--paper);
  box-shadow: 0 0 0 1px var(--border-hairline);
}

.story-donut-legend,
.story-map-list {
  display: grid;
  gap: 10px;
}

.story-donut-legend span,
.story-map-list span {
  min-width: 0;
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--border-hairline);
}

.story-donut-legend i {
  width: 10px;
  height: 10px;
  background: var(--dot);
}

.story-donut-legend em,
.story-map-list em {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  letter-spacing: .11em;
  text-align: right;
  text-transform: uppercase;
}

.story-map {
  display: grid;
  grid-template-columns: minmax(220px, .85fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.story-access-map {
  grid-template-columns: minmax(230px, .75fr) minmax(0, 1fr);
}

.story-access-spine {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 12px;
  min-height: 260px;
  padding: 18px;
  border: 1px solid var(--border-hairline);
  background:
    linear-gradient(135deg, rgba(0, 198, 232, .06), transparent 54%),
    rgba(246, 247, 244, .76);
}

.story-access-spine::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 32px;
  width: 1px;
  background: var(--copper);
  opacity: .42;
}

.story-access-spine span {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  animation: report-rise .42s var(--ease-precise) both;
  animation-delay: var(--delay);
}

.story-access-spine i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(176, 122, 74, .42);
  background: var(--paper);
  color: var(--copper);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  letter-spacing: .08em;
}

.story-access-spine strong {
  min-width: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.story-map-canvas {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--border-hairline);
  background:
    radial-gradient(circle at 22% 35%, rgba(0, 198, 232, .18), transparent 11%),
    radial-gradient(circle at 72% 62%, rgba(176, 122, 74, .18), transparent 13%),
    linear-gradient(rgba(7, 16, 17, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 16, 17, .055) 1px, transparent 1px),
    rgba(246, 247, 244, .76);
  background-size: auto, auto, 22% 22%, 22% 22%, auto;
}

.story-map-canvas i {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(var(--y) * 1%);
  width: 12px;
  height: 12px;
  border: 2px solid var(--paper);
  border-radius: 999px;
  background: var(--alpine);
  box-shadow: 0 0 0 7px rgba(0, 198, 232, .12);
  animation: report-rise .42s var(--ease-precise) both;
  animation-delay: var(--delay);
}

.story-map-list span {
  grid-template-columns: minmax(0, 1fr);
}

.story-map-list em {
  text-align: left;
}

.story-map-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--border-hairline);
}

.story-map-metrics b {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 12px;
  border-right: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
  background: rgba(255, 255, 255, .68);
}

.story-map-metrics b:nth-child(2n) {
  border-right: 0;
}

.story-map-metrics b:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.story-map-metrics strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  overflow-wrap: anywhere;
}

.story-map-metrics em {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.story-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.comparison-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.comparison-card-grid article {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 154px;
  padding: 16px;
  border: 1px solid var(--border-hairline);
  background:
    linear-gradient(135deg, rgba(176, 122, 74, .06), transparent 56%),
    rgba(255, 255, 255, .78);
  animation: report-rise .42s var(--ease-precise) both;
  animation-delay: var(--delay);
}

.comparison-card-grid span {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.comparison-card-grid strong {
  min-width: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 400;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.comparison-card-grid em {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: .11em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.comparison-card-grid p {
  margin: 0;
  color: rgba(7, 16, 17, .64);
  font-size: .9rem;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.story-flow article {
  min-width: 0;
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 150px;
  padding: 16px;
  border: 1px solid var(--border-hairline);
  background:
    linear-gradient(135deg, rgba(0, 198, 232, .06), transparent 54%),
    rgba(255, 255, 255, .72);
  animation: report-rise .42s var(--ease-precise) both;
  animation-delay: var(--delay);
}

.story-flow article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 13px;
  height: 1px;
  background: var(--copper);
}

.story-flow span,
.story-heatmap em {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.story-flow strong {
  min-width: 0;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.story-flow p {
  margin: 0;
  color: rgba(7, 16, 17, .64);
  font-size: .9rem;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.story-heatmap {
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: 8px;
}

.story-heatmap span {
  min-width: 0;
  display: grid;
  align-content: space-between;
  min-height: 92px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(0, 198, 232, calc(var(--i) / 280)), rgba(176, 122, 74, calc(var(--i) / 420))),
    rgba(255, 255, 255, .78);
  border: 1px solid rgba(7, 16, 17, calc(.08 + (var(--i) / 900)));
  animation: report-rise .42s var(--ease-precise) both;
  animation-delay: var(--delay);
}

.story-heatmap strong {
  min-width: 0;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.component-matrix-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border-hairline);
  overflow: hidden;
}

.component-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border-right: 0;
  border-bottom: 1px solid var(--border-hairline);
  background: rgba(7, 16, 17, .025);
}

.component-rail button {
  width: 100%;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  gap: 8px 12px;
  align-items: center;
  padding: 15px 16px;
  border: 0;
  border-bottom: 1px solid var(--border-hairline);
  border-right: 1px solid var(--border-hairline);
  background: transparent;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
  text-align: left;
  cursor: pointer;
}

.component-rail button:last-child { border-bottom: 0; }
.component-rail button:hover,
.component-rail button.is-active { background: var(--paper); }

.component-rail span {
  grid-row: 1 / span 2;
}

.component-rail strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.12;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.component-rail i {
  position: relative;
  display: block;
  grid-column: 2;
  height: 2px;
  background: rgba(7, 16, 17, .12);
}

.component-rail i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--w) * 1%);
  background: var(--copper);
}

.component-rail em {
  grid-column: 3;
  grid-row: 1 / span 2;
  color: var(--muted);
  font-style: normal;
  text-align: right;
}

.component-detail-stack {
  min-width: 0;
}

.component-detail {
  display: none;
  min-height: 100%;
  padding: clamp(24px, 3vw, 38px);
}

.component-detail.is-active {
  display: block;
  animation: report-rise .36s var(--ease-precise) both;
}

.component-detail > span {
  color: var(--muted);
}

.component-detail h3 {
  margin: 12px 0 22px;
  max-width: 22ch;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.2vw, 2.45rem);
  font-weight: 400;
  line-height: 1.12;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.component-detail ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.component-detail li {
  padding: 12px 0;
  border-top: 1px solid var(--border-hairline);
  color: rgba(7, 16, 17, .66);
  overflow-wrap: anywhere;
}

.component-detail div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.component-detail div em {
  padding: 6px 9px;
  border: 1px solid var(--border-hairline);
  color: var(--copper);
  font-style: normal;
}

.sensitivity-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(64px, 1fr));
  border: 1px solid var(--border-hairline);
  overflow-x: auto;
}

.sensitivity-grid > * {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-right: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
  color: var(--muted);
}

.sensitivity-grid span.target {
  background: var(--alpine);
  color: var(--paper);
}

.lever-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--border-hairline);
}

.lever-grid.single {
  grid-template-columns: minmax(0, 1fr);
}

.lever-grid > div {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid var(--border-hairline);
}

.lever-grid > div:last-child { border-right: 0; }

.lever-grid > div > span {
  color: var(--copper);
}

.lever-grid p {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--border-hairline);
}

.lever-grid p strong {
  font-family: var(--serif);
  font-weight: 400;
}

.lever-grid p em,
.lever-grid small {
  color: var(--muted);
  font-style: normal;
}

.decision-list {
  border: 1px solid var(--border-hairline);
}

.decision-list article {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) minmax(220px, .42fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
  min-width: 0;
  padding: clamp(18px, 2.2vw, 26px);
  border-bottom: 1px solid var(--border-hairline);
  animation: report-rise .42s var(--ease-precise) both;
  animation-delay: var(--delay);
}

.decision-list article:last-child { border-bottom: 0; }

.decision-list > article > span {
  display: block;
  width: auto;
  height: auto;
  background: transparent;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.decision-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.06;
}

.decision-list p {
  max-width: 56ch;
  margin: 8px 0 0;
  color: rgba(7, 16, 17, .7);
}

.decision-list small {
  display: block;
  max-width: 64ch;
  margin-top: 10px;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.decision-list aside {
  display: grid;
  gap: 10px;
  justify-items: stretch;
  padding-left: clamp(12px, 1.5vw, 20px);
  border-left: 1px solid var(--border-hairline);
  text-align: left;
}

.decision-list aside em,
.decision-list aside strong,
.decision-list aside mark {
  color: var(--muted);
  background: transparent;
  font-style: normal;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.decision-list aside span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.decision-list aside mark {
  justify-self: start;
  padding: 5px 8px;
  border: 1px solid rgba(176, 122, 74, .32);
  color: var(--copper);
}

.decision-choice-lead {
  max-width: 68ch;
  margin: 0 0 18px;
  color: rgba(7, 16, 17, .72);
  font-size: 1.02rem;
}

.decision-choice-metrics,
.decision-choice-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--border-hairline);
}

.decision-choice-metrics {
  margin-bottom: 18px;
}

.decision-choice-metrics span,
.decision-choice-options div {
  min-width: 0;
  padding: 16px;
  border-right: 1px solid var(--border-hairline);
}

.decision-choice-metrics span:last-child,
.decision-choice-options div:last-child {
  border-right: 0;
}

.decision-choice-metrics em,
.decision-choice-metrics small,
.decision-choice-options em {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  text-transform: uppercase;
}

.decision-choice-metrics strong,
.decision-choice-options strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.02;
}

.decision-choice-options p {
  margin: 8px 0 10px;
  color: rgba(7, 16, 17, .68);
}

.decision-choice-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: rgba(7, 16, 17, .64);
}

@keyframes visual-bar-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes visual-bar-grow-y {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.report-table-wrap {
  width: 100%;
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid var(--border-hairline);
}

.report-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.report-table-wrap th,
.report-table-wrap td {
  min-width: 140px;
  padding: 14px 16px;
  border-right: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
  white-space: normal;
}

.report-table-wrap th:first-child,
.report-table-wrap td:first-child {
  min-width: 170px;
}

.report-table-wrap th {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(7, 16, 17, .025);
}

.report-table-wrap td {
  font-size: .95rem;
  color: rgba(7, 16, 17, .72);
}

.report-source-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.report-source-buttons button {
  border: 1px solid var(--border-soft);
  background: transparent;
  color: inherit;
  padding: 7px 9px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .16em;
  cursor: pointer;
}

.report-source-buttons button:hover { border-color: var(--cyan); }

.report-evidence-note {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--border-hairline);
  color: var(--muted);
}

.report-source-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
  border: 1px solid var(--border-hairline);
}

.report-source-card {
  padding: 22px;
  min-height: 170px;
  border: 0;
  border-right: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
  background: var(--paper);
  text-align: left;
  cursor: pointer;
}

.report-source-card:nth-child(2n) { border-right: 0; }
.report-source-card:hover { background: rgba(0, 198, 232, .04); }
.report-source-card span,
.report-source-card small {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
}

.report-source-card strong {
  display: block;
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.06;
}

.report-source-card em {
  display: block;
  margin-top: 7px;
  color: rgba(7, 16, 17, .58);
  font-style: normal;
  font-size: .92rem;
  line-height: 1.35;
}

.report-source-card small {
  margin-top: 18px;
  color: var(--muted);
}

.report-drawer-evidence {
  display: grid;
  gap: 12px;
  margin: 20px 0 22px;
  padding: 18px;
  border: 1px solid var(--border-hairline);
  background: rgba(0, 198, 232, .035);
}

.report-drawer-evidence > span {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.report-drawer-evidence article {
  padding-top: 12px;
  border-top: 1px solid var(--border-hairline);
}

.report-drawer-evidence strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.1;
}

.report-drawer-evidence p {
  margin: 7px 0 0;
  color: rgba(7, 16, 17, .66);
  font-size: .95rem;
}

.report-drawer-scrim,
.report-modal-scrim {
  position: fixed;
  inset: 0;
  z-index: 100;
  border: 0;
  background: rgba(7, 16, 17, .54);
  backdrop-filter: blur(4px);
}

.report-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  width: min(520px, 100%);
  background: var(--paper);
  border-left: 1px solid var(--border-soft);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform .35s var(--ease-precise), visibility 0s linear .35s;
  overflow-y: auto;
}

.report-drawer.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform .35s var(--ease-precise), visibility 0s;
}

.report-drawer-head,
.report-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px 22px;
  border-bottom: 1px solid var(--border-hairline);
}

.report-drawer-head h2,
.report-modal-head h2 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.04;
}

.report-drawer-body,
.report-modal-body {
  padding: 28px 32px 36px;
}

.report-drawer-list {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.report-drawer-list div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-hairline);
}

.report-drawer-list dt {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.report-drawer-list dd {
  margin: 5px 0 0;
  overflow-wrap: anywhere;
}

.report-modal-scrim {
  display: grid;
  place-items: center;
  padding: 24px;
}

.report-modal {
  width: min(640px, 100%);
  max-height: min(720px, calc(100vh - 48px));
  background: var(--paper);
  border: 1px solid var(--border-soft);
  overflow-y: auto;
}

.report-sample-cta {
  margin-top: clamp(32px, 5vw, 70px);
}

.sample-cta-surface {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(260px, 5fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: stretch;
  min-height: clamp(520px, 54vw, 720px);
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 198, 232, .14), transparent 28%),
    linear-gradient(135deg, rgba(5, 46, 39, .98), rgba(5, 28, 27, .98));
  color: var(--paper);
  box-shadow: 0 36px 110px rgba(7, 16, 17, .16);
}

.sample-cta-surface::after {
  content: "";
  position: absolute;
  top: -18%;
  right: 22%;
  width: 1px;
  height: 138%;
  background: rgba(176, 122, 74, .34);
  transform: rotate(23deg);
  pointer-events: none;
}

.sample-cta-surface > * {
  position: relative;
  z-index: 1;
}

.sample-cta-surface .eyebrow {
  color: var(--cyan);
}

.sample-cta-surface h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 400;
  line-height: .88;
}

.sample-cta-meta {
  margin: 24px 0 0;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  line-height: 1.35;
}

.sample-cta-surface p:not(.eyebrow):not(.sample-cta-meta) {
  max-width: 58ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(1rem, 1.22vw, 1.2rem);
  line-height: 1.5;
}

.report-sample-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
  align-self: end;
  justify-self: end;
  gap: 12px;
  margin-top: 0;
}

.sample-cta-surface .button {
  min-height: 64px;
  padding-inline: 28px;
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.sample-cta-surface .button.secondary {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 255, 255, .24);
}

.sample-cta-surface .text-link {
  color: rgba(255, 255, 255, .62);
}

.share-output {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.share-output label {
  display: grid;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.share-output input {
  width: 100%;
  padding: 13px;
  border: 1px solid var(--border-soft);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.present-shell {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: var(--paper);
}

.present-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 198, 232, .05), transparent 34%),
    linear-gradient(180deg, rgba(176, 122, 74, .05), transparent 46%);
}

.present-stage {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(34px, 5vw, 72px) clamp(34px, 6vw, 86px) 120px;
  overflow-y: auto;
}

.present-slide {
  width: min(1240px, 100%);
  padding-bottom: 20px;
}

.present-slide.enter {
  animation: report-rise .5s var(--ease-precise) both;
}

.present-eyebrow {
  color: var(--copper);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.present-title {
  max-width: 19ch;
  margin: 24px 0 0;
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3rem, 5vw, 5.6rem);
  line-height: .92;
}

.present-lead {
  max-width: 58ch;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .66);
  font-size: 1.25rem;
}

.present-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1080px;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, .12);
}

.present-metrics div {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.present-metrics div:last-child { border-right: 0; }

.present-metrics span,
.present-metrics em {
  display: block;
  color: rgba(255, 255, 255, .5);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.present-metrics strong {
  display: block;
  margin-top: 12px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 400;
  line-height: .95;
}

.present-metrics em {
  margin-top: 9px;
  font-style: normal;
}

.present-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 980px;
  margin-top: 42px;
  padding: 0;
  list-style: none;
}

.present-content li {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .78);
}

.present-source-note {
  margin-top: 22px;
  color: rgba(255, 255, 255, .42);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.present-footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 14px 28px 18px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .48);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.present-counter {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.progress-bar {
  width: 220px;
  height: 1px;
  background: rgba(255, 255, 255, .16);
}

.progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--cyan);
}

.ctrls {
  justify-self: end;
  display: flex;
  gap: 8px;
}

.ctrls button {
  min-width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: transparent;
  color: rgba(255, 255, 255, .75);
  cursor: pointer;
}

.ctrls button:last-child {
  padding: 0 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.interactive-report-page .eyebrow,
.interactive-report-page .button,
.interactive-report-page .report-mode-switch button,
.interactive-report-page .report-mode-switch button span,
.interactive-report-page .report-sidebar-card p,
.interactive-report-page .report-sidebar nav a,
.interactive-report-page .report-ask span,
.interactive-report-page .report-cover-card dt,
.interactive-report-page .report-block-kicker,
.interactive-report-page .report-metric span,
.interactive-report-page .report-metric em,
.interactive-report-page .report-priorities span,
.interactive-report-page .report-section-head > span,
.interactive-report-page .report-slide-meta,
.interactive-report-page .report-slide-meta button,
.interactive-report-page .report-slide-metrics span,
.interactive-report-page .report-slide-metrics em,
.interactive-report-page .report-slide-details summary,
.interactive-report-page .report-support-panel span,
.interactive-report-page .report-mini-metrics span,
.interactive-report-page .section-evidence-digest article > span,
.interactive-report-page .section-evidence-digest small,
.interactive-report-page .report-visual-head > span,
.interactive-report-page .visual-card-head span,
.interactive-report-page .visual-card-head strong,
.interactive-report-page .visual-tabs button,
.interactive-report-page .scenario-switch button,
.interactive-report-page .visual-bar-list span,
.interactive-report-page .visual-bar-list em,
.interactive-report-page .visual-mix-grid em,
.interactive-report-page .source-depth-grid em,
.interactive-report-page .phase-track span,
.interactive-report-page .risk-row > span,
.interactive-report-page .risk-row em,
.interactive-report-page .risk-row small,
.interactive-report-page .evidence-card-grid span,
.interactive-report-page .decision-list > article > span,
.interactive-report-page .decision-list aside em,
.interactive-report-page .decision-list aside strong,
.interactive-report-page .decision-list aside mark,
.interactive-report-page .decision-rail li span,
.interactive-report-page .report-table-wrap th,
.interactive-report-page .report-source-buttons button,
.interactive-report-page .report-source-card span,
.interactive-report-page .report-source-card small,
.interactive-report-page .report-drawer-list dt,
.interactive-report-page .share-output label,
.interactive-report-page .present-eyebrow,
.interactive-report-page .present-metrics span,
.interactive-report-page .present-metrics em,
.interactive-report-page .present-source-note,
.interactive-report-page .present-footer,
.interactive-report-page .ctrls button:last-child {
  letter-spacing: 0;
}

body[data-report-mode="brief"] .report-section-stack,
body[data-report-mode="brief"] .report-sources {
  display: none;
}

body[data-report-mode="brief"] .report-sidebar nav a:not([data-report-jump="brief"]) {
  opacity: .54;
}

@media (max-width: 1280px) {
  .interactive-report-shell {
    grid-template-columns: 240px minmax(0, 1fr);
  }
  .report-sidebar {
    padding: 22px 16px;
  }
  .report-canvas {
    padding: clamp(20px, 3vw, 42px);
  }
  .report-hero-grid,
  .report-block-grid,
  .visual-two-up,
  .section-intel,
  .component-matrix-grid {
    grid-template-columns: 1fr;
  }
  .report-hero-title {
    grid-column: 1 / -1;
  }
  .report-cover-card {
    display: none;
  }
  .report-metric-row,
  .report-priorities,
  .brief-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .brief-card:nth-child(3n) {
    border-right: 1px solid var(--border-hairline);
  }
  .brief-card:nth-child(2n),
  .report-metric:nth-child(2n),
  .report-priorities li:nth-child(2n) {
    border-right: 0;
  }
  .component-rail {
    border-right: 0;
    border-bottom: 1px solid var(--border-hairline);
  }
}

@media (max-width: 1100px) {
  .report-topbar {
    grid-template-columns: auto 1fr auto;
  }
  .report-mode-switch {
    width: 100%;
  }
  .interactive-report-shell {
    grid-template-columns: 1fr;
  }
  .report-sidebar {
    position: relative;
    top: auto;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border-hairline);
  }
  .report-sidebar nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .report-sidebar nav a {
    white-space: nowrap;
    border-left: 0;
    border-bottom: 1px solid transparent;
  }
  .report-sidebar nav a.is-active {
    border-bottom-color: var(--copper);
  }
}

@media (max-width: 820px) {
  .report-topbar {
    height: auto;
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .report-brand,
  .report-actions {
    justify-self: stretch;
  }
  .report-actions {
    justify-content: stretch;
  }
  .report-actions .button {
    flex: 1;
  }
  .report-mode-switch {
    order: 3;
    grid-template-columns: repeat(3, 1fr);
  }
  .report-mode-switch button {
    padding: 10px 8px;
  }
  .report-mode-switch button span {
    display: none;
  }
  .report-sidebar {
    top: auto;
    padding: 16px;
  }
  .report-canvas {
    padding: 16px;
  }
  .report-hero,
  .report-section {
    padding: 24px;
  }
  .report-hero-grid,
  .report-section-head,
  .report-block-grid,
  .report-visual-head,
  .visual-two-up,
  .section-intel,
  .visual-mix-grid,
  .scenario-metrics,
  .scenario-card ul,
  .risk-row,
  .phase-track,
  .evidence-card-grid,
  .signal-list-grid,
  .source-depth-grid,
  .brief-card-grid,
  .component-matrix-grid,
  .lever-grid,
  .decision-choice-metrics,
  .decision-choice-options,
  .decision-list article,
  .section-evidence-digest article,
	  .swot-board-lead,
	  .swot-grid,
	  .evidence-map,
	  .source-atlas-metrics,
	  .source-atlas-lines,
	  .data-matrix-grid,
	  .data-matrix-grid dl,
	  .story-donut-wrap,
	  .story-map,
	  .story-map-metrics,
	  .story-flow,
	  .source-visual-highlights,
	  .component-detail ul,
    .scenario-grid,
    .recommendation-close-shell,
    .recommendation-proof-grid,
    .sample-cta-surface,
    .recommendation-gate-strip {
	    grid-template-columns: 1fr;
	  }
  .decision-list aside {
    justify-items: start;
    padding-left: 0;
    border-left: 0;
    text-align: left;
  }
  .section-evidence-digest aside {
    justify-items: start;
    text-align: left;
  }
  .report-error h1 {
    font-size: 2.8rem;
  }
  .report-hero h1 {
    font-size: 3rem;
    line-height: .94;
  }
  .report-hero.long-title h1 {
    font-size: 2.62rem;
    line-height: 1;
  }
  .report-deckline,
  .report-subtitle {
    font-size: 1.42rem;
  }
  .report-thesis {
    font-size: 1.08rem;
  }
  .report-ask strong {
    font-size: 1.35rem;
  }
  .report-metric strong {
    font-size: 2.35rem;
  }
  .report-section-head h2 {
    font-size: 2.65rem;
  }
  .report-block h3 {
    font-size: 1.65rem;
  }
  .present-title {
    font-size: 3rem;
  }
  .present-lead {
    font-size: 1rem;
  }
  .present-stage {
    align-items: flex-start;
    padding: 28px 34px 18px;
  }
  .report-cover-card {
    display: none;
  }
  .report-metric-row,
  .report-priorities,
  .report-mini-metrics,
  .report-slide-metrics,
  .report-source-grid,
  .visual-tabs,
  .scenario-switch,
  .present-metrics,
  .present-content ul {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }
  .report-metric,
  .report-priorities li,
  .report-mini-metrics span,
  .report-slide-metrics div,
  .present-metrics div,
  .report-source-card,
  .visual-tabs button,
  .scenario-switch button,
  .scenario-metrics div,
  .phase-track div,
  .source-depth-grid div,
  .brief-card,
  .lever-grid > div,
  .decision-choice-metrics span,
  .decision-choice-options div,
  .component-rail {
    border-right: 0;
    border-bottom: 1px solid var(--border-hairline);
  }
  .competitor-rows div {
    grid-template-columns: 1fr;
  }
  .seasonality-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .positioning-map {
    min-height: 300px;
  }
  .position-point span {
    max-width: 120px;
    white-space: normal;
  }
	  .visual-bar-list > div,
	  .story-bars > div,
	  .present-visual-bars > div {
	    grid-template-columns: 1fr;
	  }
	  .visual-bar-list i,
	  .story-bars i,
	  .present-visual-bars i {
	    width: 100%;
	  }
	  .story-bars strong,
	  .story-bars em,
	  .story-donut-legend em {
	    grid-column: auto;
	    text-align: left;
	  }
	  .story-line-chart svg {
	    min-height: 210px;
	  }
  .scenario-card-stack,
  .scenario-card {
    min-height: auto;
  }
  .scenario-card {
    border-right: 0;
    border-bottom: 1px solid var(--border-hairline);
  }
  .scenario-card.featured {
    border-bottom-color: rgba(255, 255, 255, .14);
  }
  .scenario-card:last-child {
    border-bottom: 0;
  }
  .evidence-card-grid div:nth-child(2n) {
    border-right: 0;
  }
  .swot-quadrant,
  .swot-quadrant:nth-child(2n),
  .swot-quadrant:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--border-hairline);
  }
  .swot-quadrant:last-child {
    border-bottom: 0;
  }
  .source-atlas-card summary {
    grid-template-columns: 42px minmax(0, 1fr);
  }
  .source-atlas-card summary mark {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
  }
  .source-atlas-body {
    padding-left: 20px;
  }
	  .source-atlas-metrics span {
	    border-right: 0;
	  }
	  .source-atlas-lines li {
	    grid-template-columns: 28px minmax(0, 1fr);
	  }
  .present-metrics div {
    border-bottom-color: rgba(255, 255, 255, .12);
  }
  .recommendation-close-copy h2 {
    max-width: 14ch;
  }
  .sample-cta-surface {
    align-items: start;
  }
  .sample-cta-surface h2 {
    max-width: 13ch;
  }
  .sample-cta-surface .report-sample-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .recommendation-proof-grid article,
  .recommendation-proof-grid article:nth-child(2n) {
    border-right: 0;
  }
  .recommendation-gate-strip {
    gap: 14px;
  }
  .present-footer {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .ctrls {
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .report-hero,
  .report-section {
    padding: 18px;
  }
  .report-hero h1 {
    font-size: 2.62rem;
  }
  .report-hero.long-title h1 {
    font-size: 2.22rem;
  }
  .report-deckline,
  .report-subtitle {
    font-size: 1.2rem;
  }
  .report-section-head {
    gap: 14px;
  }
  .report-section-head > span {
    display: none;
  }
  .brief-deck-head,
  .visual-card-head,
  .report-insight-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .seasonality-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .story-heatmap {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .story-map-canvas {
    min-height: 210px;
  }
  .story-donut {
    width: min(220px, 100%);
  }
  .recommendation-close-shell {
    padding: 22px;
  }
  .recommendation-close-copy h2 {
    font-size: 2.55rem;
  }
	  .component-rail button {
	    grid-template-columns: 34px minmax(0, 1fr);
	  }
	  .component-rail i,
	  .component-rail em {
	    display: none;
	  }
  .positioning-map {
    min-height: 260px;
  }
  .position-point span {
    display: none;
  }
  .report-drawer,
  .report-modal {
    width: 100%;
  }
  .report-sidebar nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    gap: 6px;
  }
  .report-sidebar nav a {
    min-width: 0;
    white-space: normal;
    text-align: center;
    overflow-wrap: anywhere;
    padding: 10px 8px;
  }
  .present-stage {
    padding: 22px 18px 22px;
  }
  .present-footer {
    padding-inline: 16px;
  }
}

/* Bundle fidelity pass: editorial report renderer shared by samples and private reports. */
.interactive-report-page {
  --report-gutter: clamp(22px, 4vw, 64px);
  --report-max: 1240px;
  --report-label: clamp(10px, .72vw, 12px);
  --report-body: clamp(16px, 1.08vw, 18px);
  overflow-x: clip;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(246, 247, 244, .82) 680px),
    var(--glacier);
}

.interactive-report-page .report-topbar {
  height: 68px;
  grid-template-columns: minmax(170px, .7fr) minmax(340px, 520px) minmax(190px, .7fr);
  background: rgba(255, 255, 255, .84);
}

.interactive-report-page .report-brand {
  font-size: 26px;
}

.interactive-report-page .report-mode-switch {
  width: min(520px, 100%);
  background: rgba(255, 255, 255, .72);
}

.interactive-report-page .report-mode-switch button {
  min-height: 48px;
  font-size: 11px;
  letter-spacing: 0;
}

.interactive-report-page .report-mode-switch button span {
  font-size: 10px;
  letter-spacing: 0;
}

.interactive-report-page .interactive-report-shell {
  grid-template-columns: minmax(230px, 292px) minmax(0, 1fr);
}

.interactive-report-page .report-sidebar {
  top: 68px;
  height: calc(100vh - 68px);
  padding: 30px 22px;
  background: rgba(246, 247, 244, .66);
}

.interactive-report-page .report-sidebar-card {
  padding: 0 0 24px;
  border: 0;
  border-bottom: 1px solid var(--border-hairline);
  background: transparent;
}

.interactive-report-page .report-sidebar-card strong {
  font-size: clamp(24px, 2vw, 32px);
}

.interactive-report-page .report-sidebar-card p,
.interactive-report-page .report-sidebar nav a {
  font-size: var(--report-label);
  letter-spacing: 0;
}

.interactive-report-page .report-sidebar nav {
  gap: 0;
}

.interactive-report-page .report-sidebar nav a {
  display: grid;
  min-height: 46px;
  align-items: center;
  padding: 11px 14px 14px;
  line-height: 1.25;
  text-transform: none;
  border-bottom: 1px solid transparent;
  white-space: normal;
  overflow: hidden;
  text-overflow: clip;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.interactive-report-page .report-sidebar nav a:hover,
.interactive-report-page .report-sidebar nav a.is-active {
  background: rgba(7, 16, 17, .035);
  border-left-color: var(--copper);
}

.interactive-report-page .report-canvas {
  width: min(var(--report-max), 100%);
  margin: 0 auto;
  padding: var(--report-gutter);
}

.interactive-report-page .report-hero,
.interactive-report-page .report-section,
.interactive-report-page .report-sources {
  border-color: var(--border-hairline);
}

.interactive-report-page .report-hero {
  padding: clamp(44px, 6vw, 84px);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 34px 90px rgba(7, 16, 17, .05);
}

.interactive-report-page .report-thesis {
  max-width: 60ch;
  font-size: clamp(20px, 1.5vw, 24px);
  line-height: 1.45;
  color: rgba(7, 16, 17, .76);
}

.interactive-report-page .report-ask {
  padding: clamp(24px, 3vw, 34px);
}

.interactive-report-page .report-ask span,
.interactive-report-page .report-cover-card dt,
.interactive-report-page .report-block-kicker,
.interactive-report-page .report-metric span,
.interactive-report-page .report-metric em,
.interactive-report-page .report-priorities span,
.interactive-report-page .brief-deck-head span,
.interactive-report-page .brief-deck-head strong,
.interactive-report-page .brief-page-row em,
.interactive-report-page .brief-page-row mark,
.interactive-report-page .brief-page-num,
.interactive-report-page .report-section-head > span,
.interactive-report-page .report-insight-head,
.interactive-report-page .report-slide-meta,
.interactive-report-page .report-slide-metrics span,
.interactive-report-page .report-slide-metrics em,
.interactive-report-page .report-support-panel span,
.interactive-report-page .section-decision-strip span,
.interactive-report-page .section-decision-strip em,
.interactive-report-page .section-evidence-digest article > span,
.interactive-report-page .section-evidence-digest small,
.interactive-report-page .report-visual-head > span,
.interactive-report-page .visual-card-head span,
.interactive-report-page .visual-card-head strong,
.interactive-report-page .visual-tabs button,
.interactive-report-page .scenario-switch button,
.interactive-report-page .visual-bar-list span,
.interactive-report-page .visual-bar-list em,
.interactive-report-page .visual-mix-grid em,
.interactive-report-page .source-depth-grid em,
.interactive-report-page .phase-track span,
.interactive-report-page .risk-row > span,
.interactive-report-page .risk-row em,
.interactive-report-page .risk-row small,
.interactive-report-page .evidence-card-grid span,
.interactive-report-page .decision-list > article > span,
.interactive-report-page .decision-list aside em,
.interactive-report-page .decision-list aside strong,
.interactive-report-page .decision-list aside mark,
.interactive-report-page .decision-rail li span,
.interactive-report-page .report-table-wrap th,
.interactive-report-page .report-source-buttons button,
.interactive-report-page .report-source-card span,
.interactive-report-page .report-source-card small,
.interactive-report-page .report-drawer-list dt {
  font-size: var(--report-label);
  letter-spacing: 0;
}

.interactive-report-page .report-metric strong {
  font-size: clamp(2.15rem, 3.25vw, 3.65rem);
}

.interactive-report-page .report-metric-row {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.interactive-report-page .report-metric {
  min-width: 0;
  overflow-wrap: normal;
}

body[data-report-mode="plan"].interactive-report-page .report-hero .report-metric-row,
body[data-report-mode="plan"].interactive-report-page .report-hero > .report-visual-board,
body[data-report-mode="plan"].interactive-report-page .report-hero > .report-script-board,
body[data-report-mode="plan"].interactive-report-page .report-hero .brief-deck-fidelity,
body[data-report-mode="plan"].interactive-report-page .report-hero .report-priorities {
  display: none;
}

body[data-report-mode="plan"].interactive-report-page .report-hero {
  padding-bottom: clamp(34px, 4vw, 58px);
}

.interactive-report-page .brief-deck-fidelity {
  margin-top: clamp(34px, 5vw, 62px);
  border: 0;
  border-top: 1px solid var(--border-hairline);
  background: transparent;
}

.interactive-report-page .brief-deck-head {
  padding: 18px 0;
}

.interactive-report-page .brief-page-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border-hairline);
}

.interactive-report-page .brief-page-row {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) minmax(110px, auto) 40px;
  gap: 20px;
  align-items: center;
  padding: clamp(18px, 2.4vw, 28px) 0;
  border-bottom: 1px solid var(--border-hairline);
  animation: report-panel-rise .5s var(--ease-precise) both;
  animation-delay: var(--delay);
}

.interactive-report-page .brief-page-row i {
  width: 28px;
  height: 1px;
  background: var(--copper);
  transition: width .3s var(--ease-precise);
}

.interactive-report-page .brief-page-row:hover i {
  width: 44px;
}

.interactive-report-page .brief-page-row:hover {
  background: rgba(0, 198, 232, .035);
}

.interactive-report-page .brief-page-row strong {
  display: block;
  margin-top: 6px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  font-weight: 400;
  line-height: 1.04;
}

.interactive-report-page .brief-page-row p {
  max-width: 70ch;
  margin: 10px 0 0;
  color: rgba(7, 16, 17, .66);
  font-size: var(--report-body);
}

.interactive-report-page .brief-page-row mark {
  justify-self: end;
  background: transparent;
  color: var(--cyan);
  font-family: var(--mono);
  text-transform: uppercase;
}

.interactive-report-page .report-section-stack {
  gap: clamp(46px, 7vw, 92px);
}

.interactive-report-page .report-section {
  padding: clamp(34px, 5vw, 64px) 0;
  border: 0;
  border-top: 1px solid var(--border-hairline);
  background: transparent;
  overflow: hidden;
}

.interactive-report-page .report-section::before {
  right: 4%;
  height: calc(100% + 42px);
  opacity: .34;
}

.interactive-report-page .report-section-head {
  grid-template-columns: 74px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 38px);
  padding-bottom: clamp(24px, 3vw, 36px);
}

.interactive-report-page .report-section-head h2 {
  max-width: 20ch;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: .94;
}

.interactive-report-page .report-section.weight-hero .report-section-head h2 {
  max-width: 18ch;
  font-size: clamp(3.1rem, 5vw, 5.4rem);
}

.interactive-report-page .report-section.weight-minor .report-section-head h2 {
  max-width: 24ch;
  font-size: clamp(1.65rem, 2.25vw, 2.45rem);
  line-height: 1;
}

.interactive-report-page .report-section.weight-utility {
  padding: clamp(12px, 2vw, 20px) 0;
}

.interactive-report-page .report-section.weight-utility .report-section-head {
  display: none;
}

.interactive-report-page .report-section.render-priority-high::before {
  opacity: .42;
}

.interactive-report-page .report-section.render-priority-high:not(.render-dark-approved) {
  position: relative;
}

.interactive-report-page .report-section.render-priority-high:not(.render-dark-approved) .report-section-head {
  border-top: 1px solid rgba(176, 122, 74, .38);
  padding-top: clamp(20px, 3vw, 34px);
}

.interactive-report-page .report-section.render-priority-high:not(.render-dark-approved) .report-section-head > span {
  color: var(--copper);
}

.interactive-report-page .report-section.render-density-compact .report-section-head {
  padding-bottom: clamp(16px, 2vw, 24px);
}

.interactive-report-page .report-section.render-density-deep .report-section-head {
  padding-bottom: clamp(34px, 4.4vw, 58px);
}

.interactive-report-page .report-section.render-density-deep:not(.render-dark-approved) .report-block-grid,
.interactive-report-page .report-section.render-density-deep:not(.render-dark-approved) .report-visual-board,
.interactive-report-page .report-section.render-density-deep:not(.render-dark-approved) .section-intel {
  background:
    linear-gradient(135deg, rgba(36, 200, 222, .08), transparent 32%),
    rgba(255, 255, 255, .36);
}

.interactive-report-page .report-section.render-dark-approved {
  margin: clamp(42px, 6vw, 78px) calc(-1 * clamp(22px, 4vw, 58px));
  padding: clamp(44px, 6vw, 76px) clamp(22px, 4vw, 58px);
  background:
    radial-gradient(circle at 78% 0%, rgba(36, 200, 222, .12), transparent 32%),
    linear-gradient(135deg, rgba(176, 122, 74, .15), transparent 34%),
    var(--alpine);
  color: var(--paper);
  border-top: 0;
}

.interactive-report-page .report-section.render-dark-approved::before {
  background: rgba(36, 200, 222, .28);
  opacity: .28;
}

.interactive-report-page .report-section.render-dark-approved .report-section-head {
  padding-bottom: clamp(18px, 2.4vw, 28px);
}

.interactive-report-page .report-section.render-dark-approved .report-section-head > span,
.interactive-report-page .report-section.render-dark-approved .report-section-index {
  color: var(--cyan);
}

.interactive-report-page .report-section.render-dark-approved .report-section-head h2,
.interactive-report-page .report-section.render-dark-approved .report-section-head p {
  color: var(--paper);
}

.interactive-report-page .report-section.render-dark-approved .report-section-head p:last-child {
  color: rgba(255, 255, 255, .76);
}

.interactive-report-page .report-section.render-dark-approved .report-block-grid,
.interactive-report-page .report-section.render-dark-approved .report-visual-board,
.interactive-report-page .report-section.render-dark-approved .section-intel {
  border-color: rgba(255, 255, 255, .16);
  background: transparent;
}

.interactive-report-page .report-section.render-dark-approved .model-directed-intel {
  border-color: rgba(176, 122, 74, .28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(247, 248, 245, .82)),
    radial-gradient(circle at 92% 10%, rgba(0, 198, 232, .08), transparent 24%);
  color: var(--ink);
  box-shadow: 0 28px 92px rgba(0, 0, 0, .18);
}

.interactive-report-page .report-section.render-dark-approved .model-directed-intel .module-director-note {
  color: rgba(7, 16, 17, .68);
}

.interactive-report-page .report-section.render-dark-approved .report-block,
.interactive-report-page .report-section.render-dark-approved .report-block:nth-child(odd):not(.wide) {
  border-color: rgba(255, 255, 255, .14);
}

.interactive-report-page .report-section.render-dark-approved .report-block:hover {
  background: rgba(255, 255, 255, .06);
}

.interactive-report-page .report-section.render-dark-approved .report-block h3,
.interactive-report-page .report-section.render-dark-approved .report-block p,
.interactive-report-page .report-section.render-dark-approved .report-block li,
.interactive-report-page .report-section.render-dark-approved .report-block small,
.interactive-report-page .report-section.render-dark-approved .report-block em {
  color: rgba(255, 255, 255, .84);
}

.interactive-report-page .report-section-head p:last-child {
  max-width: 68ch;
  font-size: clamp(17px, 1.14vw, 19px);
  line-height: 1.5;
}

.interactive-report-page .section-decision-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(96px, max-content) minmax(220px, .48fr) minmax(260px, 1fr) minmax(78px, auto);
  gap: clamp(16px, 2.5vw, 34px);
  align-items: start;
  margin-top: clamp(24px, 3.5vw, 42px);
  padding: clamp(20px, 2.6vw, 30px);
  background: var(--alpine);
  color: var(--paper);
  animation: report-panel-rise .58s var(--ease-precise) both;
}

.interactive-report-page .section-decision-strip strong {
  min-width: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  font-weight: 400;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.interactive-report-page .section-decision-strip p {
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, .75);
  font-size: var(--report-body);
  overflow-wrap: anywhere;
}

.interactive-report-page .section-decision-strip span,
.interactive-report-page .section-decision-strip em {
  color: var(--cyan);
  font-family: var(--mono);
  font-style: normal;
  text-transform: uppercase;
}

.interactive-report-page .report-block-grid {
  gap: 0;
  margin-top: clamp(28px, 4vw, 52px);
  border-top: 1px solid var(--border-hairline);
}

.interactive-report-page .report-block {
  padding: clamp(24px, 3vw, 34px) clamp(18px, 2vw, 28px);
  border: 0;
  border-bottom: 1px solid var(--border-hairline);
  background: transparent;
  box-shadow: none;
}

.interactive-report-page .report-block:nth-child(odd):not(.wide) {
  border-right: 1px solid var(--border-hairline);
}

.interactive-report-page .report-block:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .56);
  box-shadow: none;
}

.interactive-report-page .report-block.signal {
  background: var(--alpine);
  color: var(--paper);
}

.interactive-report-page .report-block.signal:hover {
  background: var(--alpine);
}

.interactive-report-page .report-block h3 {
  font-size: clamp(1.75rem, 2.45vw, 2.7rem);
}

.interactive-report-page .report-block p,
.interactive-report-page .report-block li {
  font-size: clamp(15px, 1.03vw, 17px);
  line-height: 1.5;
}

.interactive-report-page .report-support-panel {
  background: transparent;
  border-left: 1px solid var(--copper);
  padding: 4px 0 0 18px;
}

.interactive-report-page .report-visual-board,
.interactive-report-page .section-intel {
  margin-top: clamp(30px, 4.5vw, 58px);
  transform: translateY(18px);
}

.interactive-report-page .decision-intel {
  grid-template-columns: minmax(0, 1fr);
}

.interactive-report-page .report-visual-board {
  padding: clamp(24px, 3.4vw, 42px) 0 0;
  border: 0;
  border-top: 1px solid var(--border-hairline);
  background: transparent;
}

.interactive-report-page .report-visual-head {
  grid-template-columns: minmax(110px, .2fr) minmax(0, 1fr);
}

.interactive-report-page .report-visual-head h2 {
  font-size: clamp(2.7rem, 4.4vw, 5rem);
}

.interactive-report-page .visual-card {
  border: 1px solid var(--border-hairline);
  background: rgba(255, 255, 255, .78);
  box-shadow: none;
}

.interactive-report-page .visual-card:hover {
  transform: translateY(-2px);
  border-color: rgba(176, 122, 74, .24);
  box-shadow: 0 18px 54px rgba(7, 16, 17, .045);
}

.interactive-report-page .visual-tabs,
.interactive-report-page .scenario-switch {
  border-color: var(--border-hairline);
  background: rgba(255, 255, 255, .7);
}

.interactive-report-page .visual-tabs button,
.interactive-report-page .scenario-switch button {
  min-height: 42px;
  font-size: var(--report-label);
  letter-spacing: 0;
}

.interactive-report-page .scenario-card {
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s var(--ease);
}

.interactive-report-page .scenario-card:not(.is-active) {
  transform: none;
}

.interactive-report-page .report-table-wrap {
  border-color: var(--border-hairline);
  background: rgba(255, 255, 255, .72);
}

.interactive-report-page .report-table-wrap table {
  min-width: min(920px, 100vw);
}

.interactive-report-page .report-table-wrap th,
.interactive-report-page .report-table-wrap td {
  min-width: 180px;
  padding: 16px 18px;
}

.interactive-report-page .report-table-wrap td {
  font-size: 15px;
  line-height: 1.42;
}

.interactive-report-page .report-source-buttons {
  gap: 0;
  border-top: 1px solid var(--border-hairline);
}

.interactive-report-page .report-source-buttons button {
  padding: 11px 14px 11px 0;
  border: 0;
  color: var(--alpine);
  background: transparent;
  text-align: left;
}

.interactive-report-page .report-source-buttons button::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border: 1px solid var(--cyan);
  background: rgba(0, 198, 232, .14);
}

.interactive-report-page .report-source-buttons button:hover {
  color: var(--copper);
}

.interactive-report-page .report-source-grid {
  border-color: var(--border-hairline);
}

.interactive-report-page .report-source-card {
  min-height: 164px;
  background: rgba(255, 255, 255, .78);
}

.interactive-report-page .report-source-card strong {
  font-size: clamp(22px, 1.8vw, 30px);
}

.interactive-report-page .report-drawer {
  width: min(560px, 100%);
}

.interactive-report-page .report-drawer[aria-hidden="true"]:not(.open) {
  display: none;
  width: 0;
  border-left: 0;
  overflow: hidden;
  pointer-events: none;
  transform: none;
}

.interactive-report-page .report-drawer-head h2 {
  font-size: clamp(34px, 3vw, 48px);
}

.interactive-report-page .present-bg {
  background:
    radial-gradient(800px circle at 15% 20%, rgba(0, 198, 232, .06), transparent 60%),
    radial-gradient(700px circle at 90% 90%, rgba(176, 122, 74, .05), transparent 60%);
}

.interactive-report-page .present-slide.enter {
  animation: ps-fidelity-fade .48s var(--ease-precise) both;
}

@keyframes ps-fidelity-fade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  .interactive-report-page .report-topbar {
    grid-template-columns: auto minmax(300px, 1fr) auto;
  }

  .interactive-report-page .interactive-report-shell {
    grid-template-columns: 1fr;
  }

  .interactive-report-page .report-sidebar {
    position: relative;
    top: auto;
    height: auto;
    padding: 18px var(--report-gutter);
  }

  .interactive-report-page .report-sidebar-card {
    display: none;
  }

  .interactive-report-page .report-sidebar nav {
    display: flex;
    overflow-x: auto;
    gap: 6px;
  }

  .interactive-report-page .report-sidebar nav a {
    min-width: 170px;
    border: 1px solid var(--border-hairline);
    background: rgba(255, 255, 255, .62);
  }
}

@media (max-width: 820px) {
  .interactive-report-page {
    --report-gutter: 16px;
    --report-label: 10px;
    --report-body: 16px;
  }

  .interactive-report-page .report-topbar {
    height: auto;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
    padding: 12px 16px;
    align-items: center;
  }

  .interactive-report-page .report-brand {
    width: auto;
    min-width: 0;
    font-size: 22px;
  }

  .interactive-report-page .report-mode-switch {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
  }

  .interactive-report-page .report-mode-switch button {
    min-height: 42px;
    padding: 8px 6px;
  }

  .interactive-report-page .report-actions {
    order: 2;
    justify-self: end;
    justify-content: flex-end;
  }

  .interactive-report-page .report-actions .button {
    flex: 0 0 auto;
    min-width: 0;
    min-height: 42px;
    padding-inline: 14px;
  }

  .interactive-report-page .report-canvas {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .interactive-report-page .report-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .interactive-report-page .report-hero-title,
  .interactive-report-page .report-cover-card {
    grid-column: 1 / -1;
    min-width: 0;
  }

  .interactive-report-page .report-hero h1,
  .interactive-report-page .report-hero.long-title h1 {
    max-width: 100%;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .interactive-report-page .report-thesis,
  .interactive-report-page .report-ask {
    max-width: 100%;
  }

  .interactive-report-page .report-ask {
    overflow: hidden;
  }

  .interactive-report-page .report-ask strong {
    overflow-wrap: anywhere;
  }

  .interactive-report-page .report-hero,
  .interactive-report-page .report-section {
    padding: 28px 0;
  }

  .interactive-report-page .report-section-head,
  .interactive-report-page .report-visual-head,
  .interactive-report-page .section-decision-strip,
  .interactive-report-page .brief-page-row {
    grid-template-columns: 1fr;
  }

  .interactive-report-page .brief-page-row mark {
    justify-self: start;
  }

  .interactive-report-page .brief-page-row i {
    display: none;
  }

  .interactive-report-page .report-section-index {
    display: block;
  }

  .interactive-report-page .report-block-grid,
  .interactive-report-page .report-metric-row,
  .interactive-report-page .report-priorities {
    grid-template-columns: 1fr;
  }

  .interactive-report-page .report-block:nth-child(odd):not(.wide) {
    border-right: 0;
  }

  .interactive-report-page .report-sidebar nav {
    display: flex;
    overflow-x: auto;
    gap: 6px;
    padding-bottom: 2px;
  }

  .interactive-report-page .report-sidebar nav a {
    min-width: min(74vw, 180px);
  }
}

@media (max-width: 560px) {
  body.interactive-report-page,
  .interactive-report-page .interactive-report-shell,
  .interactive-report-page .report-canvas {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .interactive-report-page .report-mode-switch,
  .interactive-report-page .report-mode-switch button {
    min-width: 0;
  }

  .interactive-report-page .report-mode-switch {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
  }

  .interactive-report-page .report-mode-switch button {
    padding-inline: 2px;
    font-size: 9px;
  }

  .interactive-report-page .report-hero {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    margin-inline: auto;
  }

  .interactive-report-page .report-hero-grid,
  .interactive-report-page .report-hero-title,
  .interactive-report-page .report-thesis,
  .interactive-report-page .report-ask {
    width: calc(100vw - 64px) !important;
    max-width: calc(100vw - 64px) !important;
    min-width: 0;
  }

  .interactive-report-page .report-actions .button.secondary {
    display: none;
  }

  .interactive-report-page .report-hero h1,
  .interactive-report-page .report-hero.long-title h1 {
    font-size: clamp(2rem, 10vw, 2.55rem);
    line-height: 1;
    text-wrap: normal;
  }

  .interactive-report-page .report-section-head h2 {
    font-size: clamp(2.4rem, 11vw, 3.1rem);
  }

  .interactive-report-page .report-ask strong {
    display: block;
    width: min(270px, calc(100vw - 104px)) !important;
    max-width: min(270px, calc(100vw - 104px)) !important;
    font-size: 1.04rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .interactive-report-page .report-thesis {
    width: min(290px, calc(100vw - 76px)) !important;
    max-width: min(290px, calc(100vw - 76px)) !important;
    font-size: 1.02rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .interactive-report-page .report-sidebar nav {
    display: flex;
  }

  .interactive-report-page .report-table-wrap table {
    min-width: 720px;
  }

  .interactive-report-page .visual-two-up,
  .interactive-report-page .section-intel,
  .interactive-report-page .source-visual-highlights,
  .interactive-report-page .swot-board-lead,
  .interactive-report-page .swot-grid,
  .interactive-report-page .evidence-card-grid,
  .interactive-report-page .source-depth-grid,
  .interactive-report-page .source-atlas-lines,
  .interactive-report-page .visual-mix-grid,
  .interactive-report-page .data-matrix-grid,
  .interactive-report-page .story-donut-wrap {
    grid-template-columns: 1fr;
  }

  .interactive-report-page .source-depth-grid div,
  .interactive-report-page .evidence-card-grid div,
  .interactive-report-page .swot-quadrant {
    border-right: 0;
  }

  .interactive-report-page .source-atlas-card summary {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .interactive-report-page .source-atlas-card summary > mark {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    text-align: left;
  }

  .interactive-report-page .source-atlas-body {
    padding: 0 16px 16px;
  }

  .interactive-report-page .source-atlas-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .interactive-report-page .section-evidence-digest article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .interactive-report-page .section-evidence-digest aside {
    grid-column: 2;
    justify-items: start;
    text-align: left;
  }

  .interactive-report-page .risk-row,
  .interactive-report-page .phase-track div,
  .interactive-report-page .competitor-rows div,
  .interactive-report-page .story-bars > div,
  .interactive-report-page .visual-bar-list > div,
  .interactive-report-page .present-visual-bars > div {
    grid-template-columns: 1fr;
  }

  .interactive-report-page .phase-track {
    grid-template-columns: 1fr;
  }

  .interactive-report-page .story-bars strong {
    text-align: left;
  }

  .interactive-report-page .story-bars em,
  .interactive-report-page .visual-bar-list em {
    grid-column: auto;
  }

  .interactive-report-page .report-block p,
  .interactive-report-page .report-block li,
  .interactive-report-page .visual-card p,
  .interactive-report-page .section-evidence-digest p,
  .interactive-report-page .source-atlas-card summary p {
    overflow-wrap: anywhere;
  }
}

/* Present-mode fit pass: keep board slides usable across short desktop, tablet, and mobile screens. */
.interactive-report-page .present-shell {
  height: 100dvh;
  overflow: hidden;
}

.interactive-report-page .present-stage {
  flex: 1 1 auto;
  min-height: 0;
  padding: clamp(22px, 5vh, 58px) clamp(28px, 6vw, 82px) clamp(18px, 4vh, 42px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.interactive-report-page .present-slide {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding-bottom: 0;
}

.interactive-report-page .present-title {
  max-width: 18ch;
  margin-top: clamp(12px, 2vh, 22px);
  font-size: clamp(2.5rem, min(4.7vw, 7.2vh), 5rem);
}

.interactive-report-page .present-lead {
  margin-top: clamp(14px, 2.4vh, 24px);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.42;
}

.interactive-report-page .present-visual-bars {
  margin-top: clamp(18px, 3vh, 26px);
  padding: clamp(12px, 2vh, 18px);
  gap: clamp(8px, 1.5vh, 12px);
}

.interactive-report-page .present-world-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, .42fr) minmax(0, 1fr) auto;
  gap: clamp(14px, 2vw, 24px);
  align-items: end;
  margin: clamp(14px, 2vh, 22px) 0;
  padding: clamp(14px, 2vh, 22px);
  color: var(--paper);
  background: linear-gradient(135deg, #073c34, #071011);
  border: 1px solid rgba(255, 255, 255, .13);
  overflow: hidden;
}

.interactive-report-page .present-world-image {
  min-height: clamp(120px, 18vh, 180px);
  background:
    linear-gradient(135deg, rgba(7, 60, 52, .18), rgba(7, 16, 17, .66)),
    var(--world-image, radial-gradient(circle at 70% 20%, rgba(0, 198, 232, .22), transparent 28%)) center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, .16);
}

.interactive-report-page .present-world-panel span,
.interactive-report-page .present-world-panel em {
  color: rgba(255, 255, 255, .62);
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: .68rem;
  line-height: 1.2;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-style: normal;
}

.interactive-report-page .present-world-panel strong {
  display: block;
  margin-top: 10px;
  color: var(--paper);
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(2rem, min(3.8vw, 5.8vh), 4.2rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.02em;
}

.interactive-report-page .present-world-panel p {
  max-width: 58ch;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: .98rem;
  line-height: 1.45;
}

.interactive-report-page .present-world-panel mark {
  color: var(--paper);
  background: transparent;
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(1.6rem, min(2.8vw, 4.5vh), 3.2rem);
  line-height: .92;
}

.interactive-report-page .present-visual-bars + .present-metrics {
  display: none;
}

.interactive-report-page .present-content ul {
  margin-top: clamp(18px, 3vh, 28px);
  gap: 12px;
}

.interactive-report-page .present-content li {
  padding: clamp(12px, 2vh, 16px);
  font-size: clamp(.95rem, 1.1vw, 1.04rem);
  line-height: 1.36;
}

.interactive-report-page .present-footer {
  flex: 0 0 auto;
  min-height: 64px;
  padding: 10px 24px 12px;
}

.interactive-report-page .progress-bar {
  width: min(220px, 24vw);
}

@media (max-height: 820px) and (min-width: 821px) {
  .interactive-report-page .present-stage {
    padding-top: 32px;
    padding-bottom: 26px;
  }

  .interactive-report-page .present-title {
    font-size: clamp(2.35rem, min(4.1vw, 6.4vh), 4.3rem);
  }

  .interactive-report-page .present-lead {
    max-width: 64ch;
    margin-top: 14px;
  }

  .interactive-report-page .present-visual-bars {
    margin-top: 18px;
  }

  .interactive-report-page .present-content ul {
    margin-top: 18px;
  }
}

@media (max-width: 820px) {
  .interactive-report-page .present-stage {
    padding: 20px 18px 18px;
  }

  .interactive-report-page .present-slide {
    align-content: start;
  }

  .interactive-report-page .present-title {
    font-size: clamp(2.25rem, 8vw, 3.15rem);
  }

  .interactive-report-page .present-lead {
    max-width: 48ch;
  }

  .interactive-report-page .present-visual-bars {
    display: none;
  }

  .interactive-report-page .present-world-panel {
    grid-template-columns: 1fr;
  }

  .interactive-report-page .present-world-image {
    min-height: 150px;
  }

  .interactive-report-page .present-visual-bars + .present-metrics,
  .interactive-report-page .present-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }

  .interactive-report-page .present-metrics div {
    min-height: 104px;
    padding: 14px;
  }

  .interactive-report-page .present-metrics strong {
    font-size: clamp(1.55rem, 6vw, 2.2rem);
  }

  .interactive-report-page .present-content ul {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .interactive-report-page .present-content li {
    padding: 12px 14px;
  }

  .interactive-report-page .present-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 66px;
    gap: 12px;
    padding: 10px 16px;
  }

  .interactive-report-page .present-footer > span {
    display: none;
  }

  .interactive-report-page .present-counter {
    justify-items: start;
  }

  .interactive-report-page .progress-bar {
    width: min(150px, 38vw);
  }

  .interactive-report-page .ctrls {
    justify-self: end;
  }

  .interactive-report-page .ctrls button {
    min-width: 34px;
    height: 34px;
  }
}

@media (max-width: 460px) {
  .interactive-report-page .present-stage {
    padding: 16px 14px;
  }

  .interactive-report-page .present-title {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .interactive-report-page .present-lead {
    margin-top: 12px;
    font-size: .98rem;
  }

  .interactive-report-page .present-metrics {
    grid-template-columns: 1fr;
  }

  .interactive-report-page .present-metrics div {
    min-height: 0;
  }

  .interactive-report-page .present-footer {
    min-height: 62px;
  }

  .interactive-report-page .ctrls button:last-child {
    padding: 0 10px;
  }
}

/* Share-worthy report script: a visible narrative spine before the module stack. */
.interactive-report-page .report-script-board {
  position: relative;
  display: grid;
  gap: clamp(18px, 2.8vw, 32px);
  margin: clamp(28px, 5vw, 70px) auto clamp(28px, 5vw, 64px);
  padding: clamp(24px, 4vw, 52px);
  max-width: min(1180px, calc(100vw - 42px));
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(246, 247, 244, .76));
  border: 1px solid rgba(176, 122, 74, .22);
  box-shadow: 0 26px 80px rgba(7, 16, 17, .065);
  overflow: hidden;
}

.interactive-report-page .report-hero > .report-script-board {
  margin: clamp(34px, 5vw, 68px) 0 0;
  max-width: 100%;
}

.interactive-report-page .report-hero > .report-script-board .decision-room-hero {
  grid-template-columns: 1fr;
}

.interactive-report-page .report-hero > .report-script-board .decision-room-visual {
  min-height: clamp(240px, 30vw, 360px);
}

.interactive-report-page .decision-room {
  background:
    radial-gradient(circle at 88% 8%, rgba(0, 198, 232, .1), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, .97), rgba(245, 247, 244, .78));
}

.interactive-report-page .decision-room-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(20px, 3.5vw, 52px);
  align-items: stretch;
  min-height: clamp(430px, 46vw, 620px);
  padding: clamp(22px, 3.6vw, 46px);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(7, 60, 52, .98), rgba(7, 16, 17, .98));
  border: 1px solid rgba(7, 16, 17, .26);
  overflow: hidden;
}

.interactive-report-page .decision-room-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(120deg, rgba(0, 0, 0, .72), transparent 76%);
  pointer-events: none;
}

.interactive-report-page .decision-room-hero::after {
  content: "";
  position: absolute;
  right: 8%;
  top: -18%;
  width: 1px;
  height: 140%;
  background: linear-gradient(180deg, transparent, rgba(176, 122, 74, .72), transparent);
  transform: rotate(22deg);
  pointer-events: none;
}

.interactive-report-page .decision-room-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: clamp(16px, 2.3vw, 28px);
  min-width: 0;
}

.interactive-report-page .decision-room-copy span,
.interactive-report-page .decision-room-visual em,
.interactive-report-page .decision-room-metrics span,
.interactive-report-page .decision-room-metrics em,
.interactive-report-page .signature-moment-rail > div span,
.interactive-report-page .signature-moment-rail li span,
.interactive-report-page .signature-moment-rail li em,
.interactive-report-page .decision-cockpit-head span,
.interactive-report-page .moment-board span,
.interactive-report-page .moment-board em {
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: .68rem;
  line-height: 1.2;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.interactive-report-page .decision-room-copy span,
.interactive-report-page .signature-moment-rail > div span,
.interactive-report-page .signature-moment-rail li span,
.interactive-report-page .decision-cockpit-head span,
.interactive-report-page .moment-board span {
  color: #c78a55;
}

.interactive-report-page .decision-room-copy h2 {
  max-width: 100%;
  margin: 0;
  color: var(--paper);
  font-size: clamp(3.25rem, 4.4vw, 5.25rem);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.02em;
  text-wrap: nowrap;
}

.interactive-report-page .decision-room-copy p {
  max-width: 52ch;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  line-height: 1.5;
}

.interactive-report-page .decision-room-copy blockquote {
  max-width: 48ch;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, .68);
  border-left: 2px solid rgba(176, 122, 74, .72);
  font-size: .98rem;
  line-height: 1.45;
}

.interactive-report-page .decision-room-visual {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 320px;
  padding: clamp(18px, 2.5vw, 32px);
  border: 1px solid rgba(255, 255, 255, .14);
  background:
    radial-gradient(circle at 72% 22%, rgba(0, 198, 232, .24), transparent 18%),
    radial-gradient(circle at 20% 72%, rgba(176, 122, 74, .22), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .02));
  overflow: hidden;
  min-width: 0;
}

.interactive-report-page .decision-room-visual i {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
}

.interactive-report-page .decision-room-visual i:nth-child(1) {
  width: 300px;
  height: 300px;
  right: -80px;
  top: -60px;
}

.interactive-report-page .decision-room-visual i:nth-child(2) {
  width: 180px;
  height: 180px;
  left: 12%;
  top: 22%;
}

.interactive-report-page .decision-room-visual i:nth-child(3) {
  width: 1px;
  height: 120%;
  left: 48%;
  top: -10%;
  border: 0;
  background: rgba(176, 122, 74, .42);
  transform: rotate(28deg);
}

.interactive-report-page .decision-room-visual i:nth-child(4) {
  inset: 28px;
  border-radius: 0;
  border-color: rgba(0, 198, 232, .14);
}

.interactive-report-page .decision-room-visual strong {
  position: relative;
  z-index: 1;
  max-width: min(11ch, 100%);
  color: var(--paper);
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(1.85rem, 2.8vw, 3.45rem);
  font-weight: 400;
  line-height: .9;
  overflow-wrap: break-word;
}

.interactive-report-page .decision-room-visual em {
  position: relative;
  z-index: 1;
  max-width: 42ch;
  margin-top: 18px;
  color: rgba(255, 255, 255, .58);
  font-style: normal;
  letter-spacing: .04em;
  text-transform: none;
}

.interactive-report-page .decision-room-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(7, 16, 17, .18), rgba(7, 60, 52, .8)),
    var(--world-image) center / cover no-repeat;
  opacity: .44;
  transform: scale(1.04);
}

.interactive-report-page .decision-room-hero.has-world-image .decision-room-visual {
  background:
    radial-gradient(circle at 72% 22%, rgba(0, 198, 232, .22), transparent 18%),
    linear-gradient(135deg, rgba(7, 60, 52, .18), rgba(7, 16, 17, .06));
}

.interactive-report-page .decision-room-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .045);
  min-width: 0;
}

.interactive-report-page .decision-room-metrics div {
  min-width: 0;
  padding: clamp(14px, 1.8vw, 22px);
  border-right: 1px solid rgba(255, 255, 255, .12);
  animation: report-card-rise .55s ease both;
  animation-delay: var(--delay, 0ms);
}

.interactive-report-page .decision-room-metrics div:last-child {
  border-right: 0;
}

.interactive-report-page .decision-room-metrics strong {
  display: block;
  margin-top: 10px;
  color: var(--paper);
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(1.45rem, 2.4vw, 2.9rem);
  font-weight: 400;
  line-height: .94;
}

.interactive-report-page .decision-room-metrics em {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, .58);
  font-style: normal;
  letter-spacing: .03em;
  text-transform: none;
}

.interactive-report-page .world-lens {
  display: grid;
  grid-template-columns: minmax(220px, .75fr) minmax(240px, .9fr) minmax(320px, 1.2fr);
  gap: 0;
  border: 1px solid rgba(7, 16, 17, .12);
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 24px 70px rgba(7, 16, 17, .07);
  overflow: hidden;
}

.interactive-report-page .world-lens-image {
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(7, 60, 52, .1), rgba(176, 122, 74, .28)),
    var(--world-image, linear-gradient(135deg, rgba(7, 60, 52, .18), rgba(0, 198, 232, .09))) center / cover no-repeat;
}

.interactive-report-page .world-lens-copy {
  padding: clamp(22px, 3vw, 38px);
  align-self: center;
}

.interactive-report-page .world-lens-copy span,
.interactive-report-page .world-lens-anchors span,
.interactive-report-page .signature-lab span,
.interactive-report-page .signature-lab em,
.interactive-report-page .signature-lab mark {
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: .68rem;
  line-height: 1.2;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.interactive-report-page .world-lens-copy span,
.interactive-report-page .world-lens-anchors span,
.interactive-report-page .signature-lab-head > span,
.interactive-report-page .signature-lab-copy span {
  color: #b07a4a;
}

.interactive-report-page .world-lens-copy strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(1.7rem, 2.5vw, 3rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.01em;
}

.interactive-report-page .world-lens-copy p {
  max-width: 44ch;
  margin: 18px 0 0;
  color: rgba(7, 16, 17, .64);
  font-size: .98rem;
  line-height: 1.55;
}

.interactive-report-page .world-lens-anchors {
  display: grid;
  border-left: 1px solid rgba(7, 16, 17, .1);
}

.interactive-report-page .world-lens-anchors article {
  padding: clamp(18px, 2.2vw, 28px);
  border-bottom: 1px solid rgba(7, 16, 17, .09);
  animation: report-card-rise .55s ease both;
  animation-delay: var(--delay, 0ms);
}

.interactive-report-page .world-lens-anchors article:last-child {
  border-bottom: 0;
}

.interactive-report-page .world-lens-anchors strong {
  display: block;
  margin-top: 9px;
  color: var(--ink);
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(1.1rem, 1.55vw, 1.65rem);
  font-weight: 400;
  line-height: 1.05;
}

.interactive-report-page .world-lens-anchors p {
  margin: 10px 0 0;
  color: rgba(7, 16, 17, .62);
  font-size: .9rem;
  line-height: 1.45;
}

.interactive-report-page .signature-lab {
  border: 1px solid rgba(7, 16, 17, .14);
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 198, 232, .12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(247, 249, 247, .86));
  box-shadow: 0 32px 90px rgba(7, 16, 17, .08);
}

.interactive-report-page .signature-lab-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
  padding: clamp(22px, 3vw, 42px);
  border-bottom: 1px solid rgba(7, 16, 17, .1);
}

.interactive-report-page .signature-lab-head > span {
  grid-column: 1 / -1;
}

.interactive-report-page .signature-lab-head > div {
  min-width: 0;
}

.interactive-report-page .signature-lab-head h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(2rem, 3.3vw, 4rem);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.015em;
}

.interactive-report-page .signature-lab-head p {
  max-width: 70ch;
  margin: 14px 0 0;
  color: rgba(7, 16, 17, .66);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.5;
}

.interactive-report-page .signature-lab-head mark {
  max-width: 24ch;
  padding: 10px 12px;
  color: #073c34;
  background: rgba(0, 198, 232, .12);
  border: 1px solid rgba(0, 198, 232, .28);
  white-space: normal;
}

.interactive-report-page .signature-lab-shell {
  display: grid;
  grid-template-columns: minmax(180px, .28fr) minmax(0, 1fr);
  min-height: 0;
}

.interactive-report-page .signature-lab-nav {
  display: grid;
  align-content: stretch;
  border-right: 1px solid rgba(7, 16, 17, .1);
}

.interactive-report-page .signature-lab-nav button {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 92px;
  padding: 16px;
  color: rgba(7, 16, 17, .62);
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(7, 16, 17, .09);
  cursor: pointer;
}

.interactive-report-page .signature-lab-nav button:last-child {
  border-bottom: 0;
}

.interactive-report-page .signature-lab-nav button.is-active {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(0, 198, 232, .12), transparent),
    rgba(255, 255, 255, .72);
}

.interactive-report-page .signature-lab-nav strong {
  display: block;
  color: inherit;
  font-family: var(--font-serif, Georgia, serif);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.05;
}

.interactive-report-page .signature-lab-nav em {
  display: block;
  grid-column: 2;
  margin-top: -18px;
  color: rgba(7, 16, 17, .45);
  font-style: normal;
}

.interactive-report-page .signature-lab-stage {
  position: relative;
  min-height: 0;
  overflow: visible;
}

.interactive-report-page .signature-lab-panel {
  position: relative;
  inset: auto;
  display: none;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: clamp(16px, 2.2vw, 26px);
  align-items: center;
  padding: clamp(20px, 2.4vw, 30px);
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.interactive-report-page .signature-lab-panel.is-active {
  display: grid;
}

.interactive-report-page .signature-lab-copy h4 {
  margin: 12px 0 0;
  color: var(--ink);
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(1.45rem, 2vw, 2.35rem);
  font-weight: 400;
  line-height: 1.02;
}

.interactive-report-page .signature-lab-copy p {
  margin: 16px 0 0;
  color: rgba(7, 16, 17, .65);
  font-size: .94rem;
  line-height: 1.52;
}

.interactive-report-page .lab-lens-panel,
.interactive-report-page .lab-scenario-panel,
.interactive-report-page .lab-readiness-panel,
.interactive-report-page .lab-path-panel {
  min-width: 0;
}

.interactive-report-page .lab-lens-panel {
  display: grid;
  grid-template-columns: minmax(88px, .34fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.interactive-report-page .lab-radar {
  position: relative;
  width: min(100%, 128px);
  aspect-ratio: 1;
  justify-self: center;
  border: 1px solid rgba(7, 16, 17, .14);
  background:
    radial-gradient(circle, transparent 34%, rgba(7, 60, 52, .08) 35%, transparent 36%),
    radial-gradient(circle at 50% 50%, rgba(0, 198, 232, .16), transparent 58%);
}

.interactive-report-page .lab-radar::before,
.interactive-report-page .lab-radar::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(7, 16, 17, .1);
  border-radius: 999px;
}

.interactive-report-page .lab-radar::after {
  inset: 36%;
}

.interactive-report-page .lab-radar i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(var(--score, 48) * .78%);
  height: 2px;
  background: linear-gradient(90deg, #b07a4a, rgba(0, 198, 232, .72));
  transform-origin: left center;
  transform: rotate(calc(var(--i, 0) * 62deg - 24deg));
}

.interactive-report-page .lab-lens-list {
  display: grid;
  gap: 12px;
}

.interactive-report-page .lab-lens-list article,
.interactive-report-page .lab-scenario-panel article,
.interactive-report-page .lab-path-panel article {
  padding: 12px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(7, 16, 17, .1);
  animation: report-card-rise .48s ease both;
  animation-delay: var(--delay, 0ms);
}

.interactive-report-page .lab-lens-list strong,
.interactive-report-page .lab-scenario-panel strong,
.interactive-report-page .lab-path-panel strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--font-serif, Georgia, serif);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.08;
}

.interactive-report-page .lab-lens-list p,
.interactive-report-page .lab-scenario-panel p,
.interactive-report-page .lab-path-panel p {
  margin: 10px 0 0;
  color: rgba(7, 16, 17, .58);
  font-size: .8rem;
  line-height: 1.42;
}

.interactive-report-page .lab-scenario-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.interactive-report-page .lab-scenario-panel article.is-featured {
  color: var(--paper);
  background: linear-gradient(135deg, #073c34, #071011);
  border-color: rgba(7, 60, 52, .5);
}

.interactive-report-page .lab-scenario-panel article.is-featured strong,
.interactive-report-page .lab-scenario-panel article.is-featured mark {
  color: var(--paper);
}

.interactive-report-page .lab-scenario-panel mark {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  background: transparent;
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(1.35rem, 2vw, 2.25rem);
  line-height: .95;
}

.interactive-report-page .lab-scenario-panel em {
  display: block;
  margin-top: 6px;
  color: rgba(7, 16, 17, .52);
  font-style: normal;
}

.interactive-report-page .lab-scenario-panel article.is-featured em,
.interactive-report-page .lab-scenario-panel article.is-featured p,
.interactive-report-page .lab-scenario-panel article.is-featured span {
  color: rgba(255, 255, 255, .68);
}

.interactive-report-page .lab-readiness-panel {
  display: grid;
  grid-template-columns: minmax(180px, .34fr) minmax(0, 1fr);
  gap: clamp(16px, 2.2vw, 26px);
  align-items: stretch;
}

.interactive-report-page .lab-readiness-meter,
.interactive-report-page .lab-readiness-summary {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 160px;
  padding: clamp(16px, 2vw, 24px);
  background: linear-gradient(145deg, rgba(7, 60, 52, .08), rgba(255, 255, 255, .72));
  border: 1px solid rgba(7, 16, 17, .12);
}

.interactive-report-page .lab-readiness-summary span {
  color: #b07a4a;
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.interactive-report-page .lab-readiness-meter span,
.interactive-report-page .lab-readiness-summary strong {
  color: var(--ink);
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.02em;
  text-transform: none;
}

.interactive-report-page .lab-readiness-summary p {
  max-width: 22ch;
  margin: 0;
  color: rgba(7, 16, 17, .62);
  font-size: .9rem;
  line-height: 1.42;
}

.interactive-report-page .lab-readiness-list {
  display: grid;
  gap: 12px;
}

.interactive-report-page .lab-readiness-list article {
  display: grid;
  grid-template-columns: minmax(160px, .72fr) minmax(96px, .32fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(7, 16, 17, .08);
  animation: report-card-rise .48s ease both;
  animation-delay: var(--delay, 0ms);
}

.interactive-report-page .lab-readiness-list article:last-child {
  border-bottom: 0;
}

.interactive-report-page .lab-readiness-list strong {
  color: var(--ink);
  font-family: var(--font-serif, Georgia, serif);
  font-size: 1.05rem;
  font-weight: 400;
}

.interactive-report-page .lab-readiness-list i {
  height: 4px;
  background: linear-gradient(90deg, #b07a4a calc(var(--p, 0) * 1%), rgba(7, 16, 17, .1) 0);
}

.interactive-report-page .lab-readiness-list span {
  display: block;
  margin-top: 5px;
  color: rgba(7, 16, 17, .58);
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: .9rem;
  line-height: 1.35;
}

.interactive-report-page .lab-readiness-list mark {
  justify-self: end;
  padding: 4px 7px;
  color: #073c34;
  background: rgba(0, 198, 232, .1);
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: .72rem;
  letter-spacing: .06em;
}

.interactive-report-page .lab-path-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 12px;
  align-items: stretch;
}

.interactive-report-page .lab-path-panel article {
  min-height: 0;
}

.interactive-report-page .signature-moment-rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(180px, .34fr) minmax(0, 1fr);
  gap: clamp(16px, 2.4vw, 30px);
  align-items: start;
  padding: clamp(16px, 2.2vw, 24px);
  border: 1px solid var(--border-hairline);
  background: rgba(255, 255, 255, .64);
}

.interactive-report-page .signature-moment-rail > div strong {
  display: block;
  max-width: 26ch;
  margin-top: 10px;
  color: rgba(7, 16, 17, .72);
  font-size: .98rem;
  font-weight: 400;
  line-height: 1.4;
}

.interactive-report-page .signature-moment-rail ol,
.interactive-report-page .moment-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--border-hairline);
  border: 1px solid var(--border-hairline);
  list-style: none;
}

.interactive-report-page .signature-moment-rail li,
.interactive-report-page .moment-board article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 176px;
  padding: 16px;
  background: rgba(255, 255, 255, .78);
  animation: report-card-rise .45s ease both;
  animation-delay: var(--delay, 0ms);
}

.interactive-report-page .signature-moment-rail li strong,
.interactive-report-page .moment-board strong {
  color: var(--ink);
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
  font-weight: 400;
  line-height: 1.08;
}

.interactive-report-page .signature-moment-rail li p,
.interactive-report-page .moment-board p {
  margin: 0;
  color: rgba(7, 16, 17, .62);
  font-size: .88rem;
  line-height: 1.42;
}

.interactive-report-page .signature-moment-rail li em,
.interactive-report-page .moment-board em {
  width: fit-content;
  margin-top: auto;
  padding: 4px 7px;
  color: #07505a;
  background: rgba(0, 198, 232, .08);
  font-style: normal;
}

.interactive-report-page .decision-cockpit {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid rgba(176, 122, 74, .24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(246, 247, 244, .68));
  box-shadow: 0 20px 70px rgba(7, 16, 17, .055);
}

.interactive-report-page .decision-cockpit-head {
  display: grid;
  grid-template-columns: minmax(160px, .34fr) minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
}

.interactive-report-page .decision-cockpit-head p {
  max-width: 76ch;
  margin: 0;
  color: rgba(7, 16, 17, .68);
  font-size: clamp(.96rem, 1.12vw, 1.08rem);
  line-height: 1.48;
}

.interactive-report-page .decision-cockpit-tabs {
  width: fit-content;
  max-width: 100%;
}

.interactive-report-page .decision-cockpit .scenario-explorer,
.interactive-report-page .decision-cockpit .decision-gate-checklist {
  margin: 0;
}

.interactive-report-page [data-report-world*="mountain"] .decision-room-hero {
  background:
    linear-gradient(135deg, rgba(7, 45, 49, .98), rgba(6, 18, 18, .98));
}

.interactive-report-page [data-report-world*="food"] .decision-room-hero,
.interactive-report-page [data-report-world*="beverage"] .decision-room-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(176, 122, 74, .2), transparent 24%),
    linear-gradient(135deg, rgba(38, 30, 24, .98), rgba(8, 20, 18, .98));
}

.interactive-report-page [data-report-world*="caribbean"] .decision-room-hero,
.interactive-report-page [data-report-world*="hospitality"] .decision-room-hero {
  background:
    radial-gradient(circle at 82% 12%, rgba(0, 198, 232, .16), transparent 26%),
    linear-gradient(135deg, rgba(4, 54, 48, .98), rgba(3, 18, 19, .98));
}

.interactive-report-page .report-script-board::before {
  content: "";
  position: absolute;
  inset: 22px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 122, 74, .42), transparent);
  pointer-events: none;
}

.interactive-report-page .report-script-board::after {
  content: "";
  position: absolute;
  inset: auto 0 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 122, 74, .22), transparent);
  pointer-events: none;
}

.interactive-report-page .script-board-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(16px, 3vw, 42px);
  align-items: start;
}

.interactive-report-page .script-board-hero > span {
  grid-column: 1 / -1;
}

.interactive-report-page .script-board-hero > span,
.interactive-report-page .script-arc-head span,
.interactive-report-page .script-decision-card > span,
.interactive-report-page .script-proof-stack article > span {
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: .68rem;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #c78a55;
}

.interactive-report-page .script-board-hero h2 {
  max-width: 16ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.45rem, 4.5vw, 5.2rem);
  line-height: .92;
  letter-spacing: 0;
}

.interactive-report-page .script-board-hero p {
  max-width: 58ch;
  margin: 18px 0 0;
  color: rgba(7, 16, 17, .68);
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  line-height: 1.55;
}

.interactive-report-page .script-board-hero mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 96px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(176, 122, 74, .24);
  border-radius: 999px;
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(1.1rem, 2vw, 1.8rem);
}

.interactive-report-page .script-board-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.5vw, 28px);
}

.interactive-report-page .strategic-verdict-strip,
.interactive-report-page .strategic-metric-strip,
.interactive-report-page .journey-timeline,
.interactive-report-page .decision-gate-checklist,
.interactive-report-page .owner-takeaways {
  position: relative;
  z-index: 1;
}

.interactive-report-page .strategic-verdict-strip {
  display: grid;
  grid-template-columns: minmax(560px, 1.05fr) minmax(0, .95fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
  padding: clamp(18px, 2.6vw, 30px);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(176, 122, 74, .13), transparent 22%),
    rgba(255, 255, 255, .72);
  border: 1px solid var(--border-hairline);
  border-top: 2px solid rgba(176, 122, 74, .45);
  box-shadow: 0 18px 54px rgba(7, 16, 17, .06);
}

.interactive-report-page .strategic-verdict-strip .verdict-eyebrow,
.interactive-report-page .strategic-verdict-strip .verdict-chip,
.interactive-report-page .journey-head span,
.interactive-report-page .journey-head strong,
.interactive-report-page .decision-gate-checklist section > span,
.interactive-report-page .owner-takeaways li > span {
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: .68rem;
  line-height: 1.2;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.interactive-report-page .strategic-verdict-strip .verdict-eyebrow {
  display: block;
  color: #c78a55;
}

.interactive-report-page .strategic-verdict-strip .verdict-title-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 12px;
}

.interactive-report-page .strategic-verdict-strip .verdict-headline {
  display: block;
  color: var(--ink);
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.interactive-report-page .strategic-verdict-strip .verdict-chip {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 9px;
  color: #07505a;
  background: rgba(0, 198, 232, .08);
  border: 1px solid rgba(0, 198, 232, .24);
  font-style: normal;
}

.interactive-report-page .strategic-verdict-strip .verdict-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cyan);
}

.interactive-report-page .strategic-verdict-strip p {
  max-width: 62ch;
  margin: 0;
  color: rgba(7, 16, 17, .72);
  font-size: clamp(1.02rem, 1.35vw, 1.24rem);
  line-height: 1.48;
}

.interactive-report-page .strategic-verdict-strip ul {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.interactive-report-page .strategic-verdict-strip li {
  position: relative;
  min-width: 0;
  padding-left: 18px;
  color: rgba(7, 16, 17, .66);
  font-size: .92rem;
  line-height: 1.42;
}

.interactive-report-page .strategic-verdict-strip li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  background: var(--copper);
}

.interactive-report-page .strategic-metric-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  border: 1px solid var(--border-hairline);
  background: rgba(255, 255, 255, .66);
}

.interactive-report-page .strategic-metric-strip div {
  min-width: 0;
  padding: clamp(14px, 2vw, 22px);
  border-right: 1px solid var(--border-hairline);
  animation: report-card-rise .45s ease both;
  animation-delay: var(--delay, 0ms);
}

.interactive-report-page .strategic-metric-strip div:last-child {
  border-right: 0;
}

.interactive-report-page .strategic-metric-strip span,
.interactive-report-page .strategic-metric-strip em {
  display: block;
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: .65rem;
  line-height: 1.25;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.interactive-report-page .strategic-metric-strip span {
  color: #c78a55;
}

.interactive-report-page .strategic-metric-strip strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(1.45rem, 2.1vw, 2.55rem);
  font-weight: 400;
  line-height: .95;
  white-space: nowrap;
}

.interactive-report-page .strategic-metric-strip em {
  margin-top: 12px;
  color: rgba(7, 16, 17, .55);
  font-style: normal;
  letter-spacing: .04em;
  text-transform: none;
}

.interactive-report-page .journey-timeline,
.interactive-report-page .decision-gate-checklist,
.interactive-report-page .owner-takeaways {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 2.6vw, 30px);
  background:
    linear-gradient(120deg, rgba(0, 198, 232, .045), transparent 42%),
    rgba(255, 255, 255, .68);
  border: 1px solid var(--border-hairline);
}

.interactive-report-page .journey-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.interactive-report-page .journey-head span {
  color: #c78a55;
}

.interactive-report-page .journey-head strong {
  color: rgba(7, 16, 17, .48);
}

.interactive-report-page .journey-timeline ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border-hairline);
  list-style: none;
}

.interactive-report-page .journey-timeline ol::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 50px;
  height: 1px;
  background: linear-gradient(90deg, #c78a55, rgba(176, 122, 74, .12));
  pointer-events: none;
}

.interactive-report-page .journey-timeline li {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  min-height: 220px;
  padding: clamp(16px, 2.1vw, 24px);
  background: rgba(255, 255, 255, .72);
  border-right: 1px solid var(--border-hairline);
  animation: report-card-rise .5s ease both;
  animation-delay: var(--delay, 0ms);
}

.interactive-report-page .journey-timeline li:last-child {
  border-right: 0;
}

.interactive-report-page .journey-timeline li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #c78a55;
  background: var(--paper);
  border: 1px solid rgba(176, 122, 74, .32);
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: .64rem;
  line-height: 1;
}

.interactive-report-page .journey-timeline em,
.interactive-report-page .journey-timeline mark,
.interactive-report-page .decision-gate-checklist mark,
.interactive-report-page .decision-gate-checklist em,
.interactive-report-page .decision-gate-checklist small {
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: .64rem;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.interactive-report-page .journey-timeline em {
  color: rgba(7, 16, 17, .5);
}

.interactive-report-page .journey-timeline strong {
  color: var(--ink);
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(1.22rem, 1.8vw, 1.7rem);
  font-weight: 400;
  line-height: 1.02;
  text-wrap: balance;
}

.interactive-report-page .journey-timeline p {
  margin: 0;
  color: rgba(7, 16, 17, .62);
  font-size: .9rem;
  line-height: 1.43;
}

.interactive-report-page .journey-timeline mark {
  width: fit-content;
  margin-top: auto;
  padding: 5px 7px;
  color: #073c34;
  background: rgba(0, 198, 232, .09);
}

.interactive-report-page .script-module-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}

.interactive-report-page .script-module-grid > .decision-gate-checklist,
.interactive-report-page .script-module-grid > .owner-takeaways {
  grid-column: 1 / -1;
}

.interactive-report-page .script-module-grid > .owner-takeaways ol {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.interactive-report-page .decision-gate-checklist > div {
  display: grid;
  gap: 1px;
  background: var(--border-hairline);
  border: 1px solid var(--border-hairline);
}

.interactive-report-page .decision-gate-checklist section {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) minmax(148px, .36fr);
  gap: 16px;
  align-items: center;
  min-width: 0;
  padding: 16px;
  background: rgba(255, 255, 255, .76);
  animation: report-card-rise .45s ease both;
  animation-delay: var(--delay, 0ms);
}

.interactive-report-page .decision-gate-checklist section > span {
  color: #c78a55;
}

.interactive-report-page .decision-gate-checklist strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(1.02rem, 1.3vw, 1.22rem);
  font-weight: 400;
  line-height: 1.08;
}

.interactive-report-page .decision-gate-checklist p {
  margin: 7px 0 0;
  color: rgba(7, 16, 17, .62);
  font-size: .86rem;
  line-height: 1.36;
}

.interactive-report-page .decision-gate-checklist i {
  display: block;
  width: min(100%, 360px);
  height: 4px;
  margin-top: 12px;
  background:
    linear-gradient(90deg, #c78a55 calc(var(--p, 0) * 1%), rgba(7, 16, 17, .08) 0);
}

.interactive-report-page .decision-gate-checklist aside {
  display: grid;
  justify-items: end;
  gap: 6px;
  min-width: 0;
}

.interactive-report-page .decision-gate-checklist mark {
  padding: 4px 7px;
  color: #073c34;
  background: rgba(0, 198, 232, .1);
}

.interactive-report-page .decision-gate-checklist em {
  color: rgba(7, 16, 17, .6);
  text-align: right;
}

.interactive-report-page .decision-gate-checklist small {
  color: rgba(7, 16, 17, .44);
  text-align: right;
  letter-spacing: .04em;
  text-transform: none;
}

.interactive-report-page .owner-takeaways ol {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--border-hairline);
  border: 1px solid var(--border-hairline);
  list-style: none;
}

.interactive-report-page .owner-takeaways li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
  padding: 16px;
  background: rgba(255, 255, 255, .76);
  animation: report-card-rise .45s ease both;
  animation-delay: var(--delay, 0ms);
}

.interactive-report-page .owner-takeaways li > span {
  color: #c78a55;
}

.interactive-report-page .owner-takeaways p {
  margin: 0;
  color: rgba(7, 16, 17, .68);
  font-size: .96rem;
  line-height: 1.43;
}

.interactive-report-page .script-decision-card,
.interactive-report-page .script-proof-stack article {
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--border-hairline);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5);
}

.interactive-report-page .script-decision-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(18px, 2.7vw, 30px);
}

.interactive-report-page .script-decision-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.interactive-report-page .script-decision-card p {
  display: grid;
  gap: 6px;
  margin: 0;
  color: rgba(7, 16, 17, .66);
  font-size: .96rem;
  line-height: 1.45;
}

.interactive-report-page .script-decision-card p strong {
  color: #c78a55;
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: .68rem;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.interactive-report-page .script-decision-card footer {
  margin-top: 6px;
  padding-top: 16px;
  color: var(--ink);
  border-top: 1px solid var(--border-hairline);
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.38;
}

.interactive-report-page .script-proof-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 28ch), 1fr));
  gap: 12px;
}

.interactive-report-page .script-proof-stack article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 0;
  padding: clamp(16px, 2.2vw, 24px);
  animation: report-card-rise .55s ease both;
  animation-delay: var(--delay, 0ms);
}

.interactive-report-page .script-proof-stack h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.55vw, 1.45rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.interactive-report-page .script-proof-stack mark {
  width: fit-content;
  padding: 5px 8px;
  color: #071011;
  background: rgba(176, 122, 74, .1);
  border: 1px solid rgba(176, 122, 74, .18);
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: .72rem;
}

.interactive-report-page .script-proof-stack p,
.interactive-report-page .script-proof-stack em {
  margin: 0;
  color: rgba(7, 16, 17, .6);
  font-size: .9rem;
  line-height: 1.45;
}

.interactive-report-page .script-proof-stack em {
  color: rgba(7, 16, 17, .72);
  font-style: normal;
}

.interactive-report-page .script-arc {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding-top: 4px;
}

.interactive-report-page .script-arc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.interactive-report-page .script-arc-head strong {
  color: var(--muted);
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: .72rem;
  text-transform: uppercase;
}

.interactive-report-page .script-arc ol {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--border-hairline);
  border: 1px solid var(--border-hairline);
}

.interactive-report-page .script-arc li {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  min-height: 150px;
  padding: 16px;
  background: rgba(255, 255, 255, .72);
  animation: report-card-rise .5s ease both;
  animation-delay: var(--delay, 0ms);
}

.interactive-report-page .script-arc li > span {
  color: #c78a55;
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: .72rem;
}

.interactive-report-page .script-arc em {
  display: block;
  margin-bottom: 8px;
  color: #c78a55;
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: .62rem;
  font-style: normal;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.interactive-report-page .script-arc strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.12;
}

.interactive-report-page .script-arc p {
  margin: 8px 0 0;
  color: rgba(7, 16, 17, .62);
  font-size: .85rem;
  line-height: 1.4;
}

.interactive-report-page .script-arc mark {
  width: fit-content;
  max-width: 100%;
  padding: 4px 7px;
  color: rgba(7, 16, 17, .72);
  background: rgba(7, 16, 17, .035);
  font-family: var(--font-mono, ui-monospace, SFMono-Regular, Menlo, monospace);
  font-size: .62rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.interactive-report-page .script-share-line {
  position: relative;
  z-index: 1;
  max-width: 76ch;
  margin: 0;
  color: rgba(7, 16, 17, .68);
  font-size: .98rem;
  line-height: 1.5;
}

@keyframes report-card-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .interactive-report-page .strategic-verdict-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .interactive-report-page .strategic-verdict-strip,
  .interactive-report-page .script-module-grid,
  .interactive-report-page .script-board-hero,
  .interactive-report-page .script-board-grid,
  .interactive-report-page .decision-room-hero,
  .interactive-report-page .world-lens,
  .interactive-report-page .signature-lab-head,
  .interactive-report-page .signature-lab-shell,
  .interactive-report-page .signature-lab-panel,
  .interactive-report-page .lab-lens-panel,
  .interactive-report-page .lab-readiness-panel,
  .interactive-report-page .signature-moment-rail,
  .interactive-report-page .decision-cockpit-head {
    grid-template-columns: 1fr;
  }

  .interactive-report-page .world-lens-anchors,
  .interactive-report-page .signature-lab-nav {
    border-left: 0;
    border-right: 0;
  }

  .interactive-report-page .signature-lab-stage {
    min-height: 0;
    overflow: visible;
  }

  .interactive-report-page .signature-lab-panel {
    position: relative;
    inset: auto;
    display: none;
    align-content: start;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .interactive-report-page .signature-lab-panel.is-active {
    display: grid;
  }

  .interactive-report-page .lab-scenario-panel,
  .interactive-report-page .lab-path-panel {
    grid-template-columns: 1fr;
  }

  .interactive-report-page .lab-readiness-list article {
    grid-template-columns: 1fr;
  }

  .interactive-report-page .decision-room-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .interactive-report-page .decision-room-metrics div:nth-child(2n) {
    border-right: 0;
  }

  .interactive-report-page .decision-room-metrics div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .interactive-report-page .strategic-verdict-strip .verdict-headline {
    white-space: normal;
    text-wrap: balance;
  }

  .interactive-report-page .strategic-verdict-strip .verdict-title-row {
    flex-wrap: wrap;
  }

  .interactive-report-page .strategic-verdict-strip .verdict-chip {
    max-width: 100%;
    white-space: normal;
  }

  .interactive-report-page .script-board-hero mark {
    min-width: 0;
    min-height: 0;
    border-radius: 0;
    justify-self: start;
  }

  .interactive-report-page .script-arc ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .interactive-report-page .strategic-metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .interactive-report-page .strategic-metric-strip div:nth-child(2n) {
    border-right: 0;
  }

  .interactive-report-page .strategic-metric-strip div:nth-child(n + 3) {
    border-top: 1px solid var(--border-hairline);
  }

  .interactive-report-page .decision-gate-checklist section {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .interactive-report-page .decision-gate-checklist aside {
    grid-column: 2;
    justify-items: start;
    text-align: left;
  }

  .interactive-report-page .decision-gate-checklist em,
  .interactive-report-page .decision-gate-checklist small {
    text-align: left;
  }

  .directed-module-suite,
  .image-anchor-card {
    grid-template-columns: 1fr;
  }

  .image-anchor-visual {
    min-height: 220px;
  }
}

@media (max-width: 620px) {
  .interactive-report-page .report-script-board {
    max-width: calc(100vw - 24px);
    padding: 22px;
  }

  .interactive-report-page .decision-room-hero {
    min-height: 0;
    padding: 20px;
  }

  .interactive-report-page .world-lens-image {
    min-height: 190px;
  }

  .interactive-report-page .signature-lab-head,
  .interactive-report-page .signature-lab-panel {
    padding: 20px;
  }

  .interactive-report-page .signature-lab-nav button {
    min-height: 82px;
    padding: 16px;
  }

  .interactive-report-page .lab-radar,
  .interactive-report-page .lab-readiness-meter {
    max-width: 220px;
    width: 100%;
    justify-self: center;
  }

  .interactive-report-page .decision-room-copy h2 {
    font-size: clamp(2.5rem, 16vw, 4.2rem);
    max-width: 9ch;
    text-wrap: balance;
  }

  .interactive-report-page .decision-room-visual {
    min-height: 240px;
  }

  .interactive-report-page .decision-room-metrics {
    grid-template-columns: 1fr;
  }

  .interactive-report-page .decision-room-metrics div {
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .interactive-report-page .decision-room-metrics div:first-child {
    border-top: 0;
  }

  .interactive-report-page .signature-moment-rail ol,
  .interactive-report-page .moment-board {
    grid-template-columns: 1fr;
  }

  .interactive-report-page .report-script-board::before {
    inset: 14px 0 auto;
    height: 1px;
  }

  .interactive-report-page .report-script-board::after {
    inset: auto 0 14px;
    height: 1px;
  }

  .interactive-report-page .script-board-hero h2 {
    max-width: 100%;
    font-size: clamp(2.25rem, 14vw, 3.6rem);
  }

  .interactive-report-page .strategic-verdict-strip,
  .interactive-report-page .journey-timeline,
  .interactive-report-page .decision-gate-checklist,
  .interactive-report-page .owner-takeaways {
    padding: 18px;
  }

  .interactive-report-page .strategic-metric-strip,
  .interactive-report-page .script-proof-stack,
  .interactive-report-page .script-arc ol {
    grid-template-columns: 1fr;
  }

  .interactive-report-page .strategic-metric-strip div {
    border-right: 0;
    border-top: 1px solid var(--border-hairline);
  }

  .interactive-report-page .strategic-metric-strip div:first-child {
    border-top: 0;
  }

  .interactive-report-page .script-proof-stack article,
  .interactive-report-page .script-arc li,
  .interactive-report-page .journey-timeline li {
    min-height: 0;
  }

  .model-directed-intel {
    padding: 16px;
  }

  .directed-pullquote {
    min-height: 0;
  }

  .directed-pullquote blockquote {
    max-width: 100%;
  }
}
