:root {
  --ink: #10211f;
  --muted: #5d6a67;
  --line: #dce5df;
  --soft: #f5f8f4;
  --paper: #fffdfa;
  --mint: #74c6a2;
  --teal: #123c36;
  --gold: #e5b757;
  --blue: #365f8c;
  --rose: #a65555;
  --red: #d40822;
  --plum: #6b0f6e;
  --shadow: 0 18px 55px rgba(22, 45, 39, 0.1);
  --shadow-strong: 0 28px 80px rgba(16, 33, 31, 0.16);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fffdfa 0%, #f7faf6 45%, #fffdfa 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(229, 183, 87, 0.72);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(220, 229, 223, 0.8);
  background: rgba(255, 253, 250, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 260px;
}

.logo-crop {
  display: block;
  position: relative;
  flex: 0 0 60px;
  width: 60px;
  height: 55px;
  overflow: hidden;
}

.logo-crop img {
  position: absolute;
  left: -30px;
  top: -18px;
  width: 120px;
  height: 90px;
  max-width: none;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 14px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 750;
  letter-spacing: 0;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(18, 60, 54, 0.22);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.94);
  color: var(--teal);
}

.button.secondary:hover {
  border-color: rgba(18, 60, 54, 0.22);
  box-shadow: 0 10px 24px rgba(18, 60, 54, 0.08);
}

.button.small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 14px;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 74px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: clamp(36px, 6vw, 78px);
  min-height: calc(100vh - 96px);
  padding-top: 48px;
  padding-bottom: 38px;
}

.hero h1,
.report-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #0b2521;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
}

.lede {
  max-width: 690px;
  color: #465653;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-line,
.muted,
.field-note {
  color: var(--muted);
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #eaf3ed 0%, #ffffff 100%);
  box-shadow: var(--shadow);
}

.analysis-stage {
  isolation: isolate;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.score-float {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 180px;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.overlay-card {
  z-index: 2;
}

.score-float span,
.score-number,
.report-headline > div:first-child > span {
  color: var(--teal);
  font-size: 64px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.score-float small {
  color: var(--muted);
}

.mini-progress,
.export-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6ece8;
}

.mini-progress i,
.export-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--plum), var(--teal));
}

.analysis-overlay {
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 2;
  width: min(330px, calc(100% - 44px));
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.overlay-header,
.draft-line {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  font-size: 13px;
}

.pulse-dot,
.draft-line span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(212, 8, 34, 0.4);
  animation: pulse 1.8s infinite;
}

.skeleton-line {
  width: 62%;
  height: 10px;
  margin-top: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e9efeb, #f8fbf8, #e9efeb);
  background-size: 220% 100%;
  animation: shimmer 1.8s linear infinite;
}

.skeleton-line.wide {
  width: 86%;
}

.overlay-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.overlay-metrics span,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid #dce7e1;
  border-radius: 999px;
  padding: 0 10px;
  background: #ffffff;
  color: #31524d;
  font-size: 12px;
  font-weight: 800;
}

.trust-cluster,
.badge-row,
.badge-column {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.badge-column {
  display: grid;
}

.platform-strip {
  display: grid;
  width: min(1180px, calc(100% - 36px));
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(16, 33, 31, 0.06);
}

.platform-strip span {
  display: grid;
  min-height: 52px;
  place-items: center;
  border-radius: 6px;
  background: var(--soft);
  color: var(--teal);
  font-weight: 800;
}

.preview-grid,
.report-preview {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  align-items: stretch;
}

.score-panel,
.workflow-card,
.mini-report,
.evidence-drawer,
.methodology-band,
.final-cta,
.reveal-band,
.agenda-band,
.booking-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.executive-card {
  position: relative;
  overflow: hidden;
}

.executive-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--plum), var(--gold));
}

.score-panel {
  padding: 28px;
}

.score-panel h2,
.section-heading h2,
.report-preview h2,
.methodology-band h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.metric,
.measure-card,
.step-card,
.method-card,
.platform-card,
.action-plan article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 20px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.metric:hover,
.measure-card:hover,
.step-card:hover,
.method-card:hover,
.platform-card:hover,
.action-plan article:hover,
.agenda-item:hover,
.competitor-card:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 60, 54, 0.2);
  box-shadow: 0 14px 34px rgba(16, 33, 31, 0.08);
}

.metric span,
.metric small {
  display: block;
  color: var(--muted);
}

.metric strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--teal);
  font-size: 31px;
  letter-spacing: 0;
}

.metric b {
  font: inherit;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.card-grid.six {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.measure-card h3,
.method-card h2 {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 21px;
}

.measure-card p,
.method-card p,
.score-panel p,
.report-preview p,
.methodology-band p,
.platform-card small,
.action-plan p {
  color: var(--muted);
  line-height: 1.55;
}

.report-preview {
  align-items: center;
}

.mini-report {
  padding: 12px;
}

.mini-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.6fr);
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

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

.mini-row.head {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.step-card span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: #e5f4ec;
  color: var(--teal);
  font-weight: 900;
}

.step-card p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.35;
}

.methodology-band,
.final-cta,
.reveal-band,
.agenda-band {
  padding: 42px;
}

.reveal-band,
.agenda-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.reveal-band h2,
.agenda-band h2,
.strategy-hero h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

.analysis-timeline,
.agenda-grid,
.intelligence-grid,
.history-track {
  display: grid;
  gap: 12px;
}

.intelligence-grid {
  grid-template-columns: repeat(3, 1fr);
}

.intelligence-grid.compact {
  grid-template-columns: 1fr;
}

.analysis-timeline article,
.agenda-item,
.competitor-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--soft);
}

.analysis-timeline span {
  display: block;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.analysis-timeline strong,
.agenda-item strong {
  display: block;
  margin: 4px 0 8px;
  color: var(--teal);
  font-size: 19px;
}

.analysis-timeline p,
.agenda-item p,
.competitor-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.competitor-card {
  background: #ffffff;
}

.competitor-card > strong {
  display: block;
  color: var(--teal);
  font-size: 21px;
  margin-bottom: 12px;
}

.competitor-card div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 9px 0;
  color: var(--muted);
}

.competitor-card b {
  color: var(--red);
}

.competitor-card em {
  color: var(--teal);
  font-style: normal;
  font-weight: 850;
}

.workflow {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 16px;
}

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

.progress button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  padding: 0 12px;
}

.progress button.active {
  border-color: rgba(116, 198, 162, 0.75);
  color: var(--teal);
  box-shadow: 0 8px 24px rgba(18, 60, 54, 0.1);
}

.progress span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  font-weight: 850;
}

.workflow-card {
  padding: 24px;
}

.workflow-top h3 {
  margin: 0 0 18px;
  font-size: 30px;
}

.draft-line {
  margin: -8px 0 18px;
  color: var(--muted);
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: #263936;
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cbd8d1;
  border-radius: 8px;
  padding: 13px 14px;
  background: #ffffff;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:hover,
textarea:hover,
select:hover {
  border-color: rgba(18, 60, 54, 0.28);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(18, 60, 54, 0.42);
  box-shadow: 0 0 0 4px rgba(116, 198, 162, 0.15);
}

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

.two-col,
.three-col {
  display: grid;
  gap: 14px;
}

.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.field-note.good {
  color: #26704f;
}

.field-note.warn {
  color: var(--rose);
}

.review-card {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid #dbe6df;
  border-radius: 8px;
  background: #f8fbf8;
  color: var(--muted);
  box-shadow: inset 4px 0 0 rgba(116, 198, 162, 0.7);
}

.review-card strong {
  color: var(--ink);
}

.query-list {
  display: grid;
  max-height: 460px;
  gap: 8px;
  overflow: auto;
  padding-right: 4px;
}

.query-row {
  display: grid;
  grid-template-columns: 190px 1fr 96px;
  gap: 8px;
  align-items: center;
  min-height: 52px;
}

.query-row.inactive {
  opacity: 0.55;
}

.query-row span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef7f1;
  color: #26704f;
  cursor: pointer;
  font-size: 18px;
}

.query-approve {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.query-approve input {
  width: 16px;
  height: 16px;
}

.audit-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skeleton-card {
  display: grid;
  gap: 9px;
  margin-bottom: 16px;
  border: 1px solid #e4ece7;
  border-radius: 8px;
  padding: 15px;
  background: #fbfdfb;
}

.skeleton-card span {
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e7eee9, #f8fbf8, #e7eee9);
  background-size: 220% 100%;
  animation: shimmer 1.8s linear infinite;
}

.skeleton-card span:nth-child(2) {
  width: 82%;
}

.skeleton-card span:nth-child(3) {
  width: 58%;
}

.workflow-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.gate-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.strength-gap {
  grid-column: span 2;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--soft);
}

.strength-gap span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
}

.check input {
  width: 18px;
  height: 18px;
}

.report-hero {
  padding-bottom: 38px;
}

.report-headline {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.report-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.sample-warning {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  border: 1px solid #f0c5cf;
  border-radius: 8px;
  padding: 0 13px;
  background: #fff4f6;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.unavailable-hero {
  max-width: 1040px;
}

.status-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.export-progress {
  max-width: 520px;
  margin-top: 14px;
}

.export-progress small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.export-progress.idle span {
  width: 18%;
  background: #d8e4de;
}

.report-headline > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #ffffff;
}

.report-headline strong,
.report-headline small {
  display: block;
}

.report-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

.report-main h2 {
  margin: 30px 0 14px;
  font-size: 30px;
}

.report-section {
  position: relative;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(16, 33, 31, 0.06);
}

.report-section.revealed {
  animation: riseIn 360ms ease both;
}

.report-section.concealed {
  opacity: 0.82;
}

.section-kicker {
  margin-bottom: 12px;
}

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

.interpretation-panel,
.priority-stack,
.methodology-disclosure,
.advisor-panel,
.handoff-panel {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.interpretation-panel {
  grid-template-columns: repeat(3, 1fr);
}

.interpretation-panel article,
.priority-stack article,
.methodology-disclosure article,
.proof-match,
.limitation-panel,
.advisor-panel,
.handoff-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.74);
  box-shadow: 0 12px 28px rgba(16, 33, 31, 0.06);
}

.interpretation-panel article,
.methodology-disclosure article,
.proof-match,
.limitation-panel,
.advisor-panel,
.handoff-panel {
  padding: 18px;
}

.interpretation-panel span,
.limitation-panel span,
.proof-match span,
.priority-stack span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.interpretation-panel p,
.methodology-disclosure p,
.proof-match p,
.limitation-panel li,
.priority-stack p,
.advisor-panel p,
.handoff-panel p,
.handoff-panel dd {
  color: var(--muted);
  line-height: 1.55;
}

.priority-stack article {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  padding: 16px;
}

.priority-stack strong {
  display: block;
  color: var(--teal);
  font-size: 18px;
}

.methodology-disclosure {
  grid-template-columns: repeat(3, 1fr);
}

.limitation-panel ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.advisor-panel {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
}

.advisor-questions {
  display: grid;
  gap: 10px;
}

.advisor-questions button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #ffffff;
  color: var(--teal);
  cursor: pointer;
  font-weight: 750;
  text-align: left;
}

.advisor-questions button:hover {
  border-color: rgba(18, 60, 54, 0.24);
  box-shadow: 0 10px 24px rgba(18, 60, 54, 0.08);
}

.handoff-panel {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  align-items: center;
}

.handoff-panel dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.handoff-panel dl div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #ffffff;
}

.handoff-panel dt {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.handoff-panel dd {
  margin: 5px 0 0;
}

.handoff-panel .button {
  justify-self: start;
}

.index-snapshot {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.index-snapshot article,
.history-track article,
.entity-graph-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #f8fbf8;
}

.index-snapshot span {
  display: block;
  color: var(--teal);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.index-snapshot b {
  font: inherit;
}

.index-snapshot strong,
.index-snapshot small {
  display: block;
}

.index-snapshot small,
.history-track p,
.history-track small,
.entity-graph-card small {
  color: var(--muted);
}

.history-track {
  grid-template-columns: repeat(3, 1fr);
}

.history-track strong {
  display: block;
  color: var(--teal);
  font-size: 40px;
  line-height: 1;
}

.history-track span {
  color: var(--red);
  font-weight: 850;
}

.entity-graph-card h3 {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 21px;
}

.entity-graph-card div {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) 92px;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 9px 0;
}

.entity-graph-card small {
  grid-column: 1 / -1;
}

.entity-graph-card span {
  justify-self: start;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.unlock-panel {
  position: sticky;
  top: 98px;
  z-index: 3;
  margin-bottom: 18px;
  border: 1px solid #f0cfda;
  border-radius: 8px;
  padding: 24px;
  background: #fff7f7;
  box-shadow: var(--shadow);
}

.unlock-panel h2 {
  margin: 0 0 10px;
}

.presentation-mode.report-hero {
  width: min(1360px, calc(100% - 24px));
}

.presentation-mode .report-section,
.presentation-mode .platform-card,
.presentation-mode .evidence-drawer {
  box-shadow: var(--shadow-strong);
}

.report-main > h2:first-child {
  margin-top: 0;
}

.report-main p {
  color: var(--muted);
  line-height: 1.65;
}

.platform-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.platform-card span {
  display: block;
  margin: 10px 0;
  color: var(--teal);
  font-size: 38px;
  font-weight: 900;
}

.table-like {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.table-like div {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.table-like div:last-child {
  border-bottom: 0;
}

.table-like span {
  color: var(--muted);
}

.evidence-drawer {
  position: sticky;
  top: 96px;
  padding: 18px;
}

.evidence-drawer h2 {
  margin-top: 0;
}

details {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

summary {
  cursor: pointer;
  color: var(--teal);
  font-weight: 850;
}

details p,
details small {
  color: var(--muted);
  line-height: 1.5;
}

.action-plan {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.strategy-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.strategy-shell {
  background:
    linear-gradient(180deg, #101816 0%, #18201f 24%, #fffdfa 24%, #fffdfa 100%);
}

.strategy-nav {
  border-bottom-color: rgba(255, 255, 255, 0.14);
  background: rgba(15, 24, 22, 0.92);
  color: #f9f5ee;
}

.strategy-nav .brand small,
.strategy-nav .nav-links {
  color: rgba(249, 245, 238, 0.72);
}

.strategy-nav .button.primary {
  background: var(--red);
  box-shadow: 0 12px 28px rgba(212, 8, 34, 0.22);
}

.strategy-hero-premium {
  min-height: calc(100vh - 92px);
  align-items: center;
  color: #f9f5ee;
}

.strategy-hero-premium h1 {
  max-width: 780px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.94;
  letter-spacing: 0;
}

.strategy-copy .lede {
  color: rgba(249, 245, 238, 0.8);
}

.strategy-copy .eyebrow {
  color: #ffb9c8;
}

.strategy-clarifier {
  max-width: 640px;
  margin: 24px 0 0;
  border-left: 4px solid var(--red);
  padding: 14px 0 14px 18px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 850;
  line-height: 1.45;
}

.handoff-notice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(229, 183, 87, 0.38);
  border-radius: 8px;
  padding: 30px;
  background: #fffdfa;
  box-shadow: var(--shadow);
}

.handoff-notice h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
}

.handoff-notice p,
.handoff-mini p {
  color: var(--muted);
  line-height: 1.55;
}

.handoff-mini {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #f8fbf8;
}

.handoff-mini span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.handoff-mini strong {
  color: var(--teal);
  font-size: 20px;
}

.strategy-map {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 32px);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #121c1a;
  box-shadow: var(--shadow-strong);
}

.strategy-map::before {
  content: "";
  position: absolute;
  inset: 50% 34px auto;
  z-index: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--plum), var(--gold), var(--mint));
  transform: translateY(-50%);
}

.map-core,
.map-outcome {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: min(220px, calc(100% - 48px));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.map-core {
  left: 24px;
  top: 24px;
}

.map-outcome {
  right: 24px;
  bottom: 24px;
}

.map-core span,
.map-outcome span,
.problem-explanation span,
.form-kicker span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-core strong,
.map-outcome strong {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.1;
}

.map-flow {
  position: absolute;
  inset: 142px 24px 118px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: center;
}

.map-flow button {
  position: relative;
  z-index: 1;
  min-height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
  animation: riseIn 420ms ease both;
  animation-delay: calc(var(--i) * 65ms);
}

.map-flow button:hover,
.map-flow button:focus-visible {
  border-color: rgba(229, 183, 87, 0.72);
  background: rgba(212, 8, 34, 0.18);
  transform: translateY(-2px);
}

.map-flow span,
.map-flow small {
  display: block;
}

.map-flow span {
  font-weight: 900;
}

.map-flow small {
  margin-top: 4px;
  color: rgba(249, 245, 238, 0.68);
}

.strategy-video-section,
.not-section,
.next-steps-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
}

.strategy-video-section h2,
.not-section h2,
.next-steps-section h2,
.proof-band h2,
.ecosystem-section h2,
.direct-answers h2,
.clarity-band h2,
.discuss-section h2,
.problem-selector h2,
.audience-section h2,
.system-section h2,
.strategy-final h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

.strategy-video-section p,
.clarity-band p,
.problem-selector p,
.system-section p,
.proof-band p {
  color: var(--muted);
  line-height: 1.6;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0f1816;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 16 / 9;
}

.video-frame::before {
  content: "CliqSpark Strategy Session";
  position: absolute;
  left: 16px;
  top: 14px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(15, 24, 22, 0.7);
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.clarity-grid,
.not-grid,
.next-steps,
.ecosystem-grid,
.answer-grid,
.crawlable-topic-list {
  display: grid;
  gap: 12px;
}

.clarity-grid,
.ecosystem-grid,
.answer-grid {
  grid-template-columns: repeat(2, 1fr);
}

.problem-layout,
.discuss-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: stretch;
}

.problem-options,
.discuss-tabs {
  display: grid;
  gap: 8px;
}

.problem-options button,
.discuss-tabs button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #ffffff;
  color: var(--teal);
  cursor: pointer;
  font-weight: 850;
  text-align: left;
}

.problem-options button.active,
.discuss-tabs button.active {
  border-color: rgba(212, 8, 34, 0.36);
  background: #fff4f5;
  color: var(--red);
  box-shadow: inset 4px 0 0 rgba(212, 8, 34, 0.72);
}

.problem-explanation,
.discuss-panel,
.proof-band,
.ecosystem-link,
.negative-item,
.growth-system article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(16, 33, 31, 0.06);
}

.problem-explanation,
.discuss-panel {
  min-height: 100%;
  padding: clamp(22px, 4vw, 36px);
}

.problem-explanation h3,
.discuss-panel h3 {
  margin: 8px 0 12px;
  color: var(--teal);
  font-size: clamp(26px, 3vw, 42px);
}

.crawlable-topic-list {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 14px;
}

.not-section {
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.negative-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
}

.negative-item span {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #fff4f5;
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
}

.growth-system {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.growth-system article {
  min-height: 150px;
  padding: 20px;
}

.growth-system span,
.ecosystem-link strong {
  color: var(--teal);
  font-size: 20px;
  font-weight: 900;
}

.preserved-form-section .section-heading {
  max-width: 860px;
}

.preserved-strategy-form {
  width: min(920px, 100%);
  margin: 0 auto;
}

.form-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.form-kicker img {
  width: 104px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.form-kicker strong,
.form-kicker span,
.preserved-strategy-form label span,
.legacy-fieldset legend span {
  display: block;
}

.form-kicker strong {
  color: var(--teal);
  font-size: 24px;
  line-height: 1.05;
}

.preserved-strategy-form label span,
.legacy-fieldset legend span {
  margin-top: 2px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
}

.legacy-fieldset {
  margin: 0 0 16px;
  border: 0;
  padding: 0;
}

.legacy-fieldset legend {
  margin-bottom: 8px;
  color: #263936;
  font-weight: 750;
}

.legacy-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.legacy-options label,
.legacy-check {
  min-height: 48px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fbfdfb;
  color: var(--teal);
  font-weight: 800;
}

.legacy-options input,
.legacy-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

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

.name-fields legend {
  grid-column: 1 / -1;
}

.booking-mailto {
  width: 100%;
  margin-top: 12px;
}

.proof-band {
  padding: 42px;
}

.ecosystem-link {
  display: grid;
  gap: 8px;
  padding: 20px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.ecosystem-link:hover,
.ecosystem-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(18, 60, 54, 0.22);
  box-shadow: 0 14px 34px rgba(16, 33, 31, 0.08);
}

.ecosystem-link span {
  color: var(--muted);
}

.direct-answers details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  background: #ffffff;
}

.direct-answers details + details {
  margin-top: 0;
}

.direct-answers summary {
  min-height: 34px;
}

.strategy-final {
  text-align: center;
}

.contact-page-body {
  background: #fffdfa;
}

.contact-page-body.nav-open {
  overflow: hidden;
}

.ecosystem-nav {
  position: sticky;
  border-bottom-color: #edf0ed;
  background: rgba(255, 253, 250, 0.96);
  color: #111217;
}

.ecosystem-nav .brand {
  min-width: 0;
}

.logo-only .logo-crop {
  flex-basis: 72px;
  width: 72px;
  height: 62px;
}

.logo-only .logo-crop img {
  left: -34px;
  top: -18px;
  width: 136px;
  height: 98px;
}

.contact-primary-links {
  margin-left: auto;
}

.contact-primary-links a {
  color: #343640;
  transition: color 160ms ease;
}

.contact-primary-links a:hover,
.contact-primary-links a.active {
  color: #111217;
}

.contact-primary-links .header-cta {
  background: #111217;
  color: #ffffff;
  box-shadow: none;
}

.menu-toggle {
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  border: 1px solid #e2e5e2;
  border-radius: 2px;
  padding: 0 14px;
  background: #ffffff;
  color: #111217;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 14px;
  height: 2px;
  background: currentColor;
}

.menu-toggle strong {
  font-size: 14px;
}

.contact-hero {
  min-height: clamp(560px, 72vh, 760px);
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 8, 34, 0.18), transparent 28%),
    linear-gradient(135deg, #170f13 0%, #0f1816 52%, #13241f 100%);
  color: #ffffff;
}

.contact-hero-inner {
  max-width: 980px;
  padding-top: 92px;
  padding-bottom: 92px;
}

.contact-hero .eyebrow {
  color: #ffb9c8;
}

.contact-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

.contact-hero .lede {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-hero .button.primary,
.contact-strategy-cta .button.primary,
.contact-submit {
  background: var(--red);
  box-shadow: 0 14px 30px rgba(212, 8, 34, 0.22);
}

.contact-hero .button.secondary {
  background: #ffffff;
  color: #111217;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.contact-context {
  position: sticky;
  top: 112px;
}

.contact-context h2,
.contact-next h2,
.contact-strategy-cta h2 {
  margin: 0;
  color: #101816;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.contact-context p,
.contact-next p,
.contact-strategy-cta p,
.contact-form small {
  color: var(--muted);
  line-height: 1.6;
}

.contact-lines {
  display: grid;
  gap: 1px;
  margin: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-lines a {
  display: grid;
  gap: 3px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-lines a:last-child {
  border-bottom: 0;
}

.contact-lines span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-lines strong,
.quiet-link a,
.text-link {
  color: var(--teal);
  font-weight: 850;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(16, 33, 31, 0.08);
}

.field {
  margin-bottom: 16px;
}

.field span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.field em {
  color: var(--rose);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  min-height: 52px;
  border-color: #ccd6d1;
  font-size: 16px;
}

.contact-form textarea {
  min-height: 178px;
}

.contact-form .invalid input,
.contact-form .invalid textarea,
.contact-form .invalid select {
  border-color: rgba(212, 8, 34, 0.7);
  box-shadow: 0 0 0 4px rgba(212, 8, 34, 0.08);
}

.field-error {
  color: var(--red) !important;
  font-weight: 800;
}

.honeypot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: grid;
  gap: 6px;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #f8fbf8;
  color: var(--muted);
  box-shadow: inset 4px 0 0 var(--teal);
}

.form-status.success {
  box-shadow: inset 4px 0 0 #26704f;
}

.form-status.error {
  background: #fff7f7;
  box-shadow: inset 4px 0 0 var(--red);
}

.form-status strong,
.form-status a {
  color: var(--teal);
}

.contact-submit {
  width: 100%;
  margin-top: 8px;
}

.contact-next {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 5vw, 64px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-step-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.contact-step-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-step-list span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.contact-step-list strong {
  color: var(--teal);
  font-size: 21px;
}

.contact-step-list p {
  grid-column: 2;
  margin: -10px 0 0;
}

.contact-strategy-cta {
  max-width: 980px;
}

.contact-strategy-cta p {
  max-width: 620px;
}

.contact-strategy-cta .hero-actions {
  align-items: center;
}

.contact-footer {
  align-items: start;
  background: #fffdfa;
}

.contact-footer div,
.contact-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

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

.contact-footer nav {
  justify-content: flex-end;
}

.booking-card {
  padding: 26px;
}

.booking-card img {
  width: 150px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.booking-card h2 {
  margin: 8px 0 18px;
  color: var(--teal);
  font-size: 30px;
  line-height: 1.05;
}

.session-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 4px 0 16px;
}

.session-options button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--teal);
  cursor: pointer;
  font-weight: 800;
}

.session-options button.active {
  border-color: rgba(212, 8, 34, 0.35);
  background: #fff4f5;
  color: var(--red);
}

.session-flow .card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.toast-region {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 8px;
  width: min(340px, calc(100vw - 36px));
}

.toast {
  border: 1px solid #d6e3dc;
  border-radius: 8px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--teal);
  box-shadow: var(--shadow);
  animation: toastIn 220ms ease both;
  font-weight: 750;
}

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

.methodology-center .card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.check-grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  background: #ffffff;
  color: var(--teal);
  font-weight: 850;
}

.provider-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.provider-table div {
  display: grid;
  grid-template-columns: 160px 1fr 150px;
  gap: 18px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.provider-table div:last-child {
  border-bottom: 0;
}

.provider-table span,
.provider-table em {
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.footer a {
  color: var(--teal);
  font-weight: 850;
}

@keyframes shimmer {
  from {
    background-position: 220% 0;
  }
  to {
    background-position: -220% 0;
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(212, 8, 34, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 8, 34, 0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 980px) {
  .site-header {
    position: relative;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow: auto;
    padding-bottom: 4px;
  }

  .hero,
  .preview-grid,
  .report-preview,
  .workflow,
  .report-layout,
  .reveal-band,
  .agenda-band,
  .status-panel,
  .strategy-hero,
  .strategy-video-section,
  .not-section,
  .next-steps-section,
  .contact-section,
  .contact-next,
  .problem-layout,
  .discuss-layout,
  .advisor-panel,
  .handoff-panel,
  .handoff-notice {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .metric-grid,
  .card-grid.six,
  .steps,
  .methodology-grid,
  .platform-cards,
  .action-plan,
  .report-headline,
  .executive-grid,
  .interpretation-panel,
  .methodology-disclosure,
  .index-snapshot,
  .intelligence-grid,
  .history-track,
  .check-grid,
  .methodology-center .card-grid.three,
  .session-flow .card-grid.three,
  .growth-system,
  .crawlable-topic-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-strip,
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .evidence-drawer {
    position: static;
  }

  .contact-context {
    position: static;
  }

  .contact-form {
    order: -1;
  }
}

@media (max-width: 680px) {
  .section {
    width: min(100% - 24px, 1180px);
    padding: 52px 0;
  }

  .site-header {
    padding: 12px;
  }

  .contact-nav {
    min-height: 78px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .contact-primary-links {
    position: fixed;
    inset: 78px 12px auto;
    display: none;
    width: auto;
    max-height: calc(100vh - 102px);
    overflow: auto;
    border: 1px solid #e2e5e2;
    border-radius: 8px;
    padding: 12px;
    background: #fffdfa;
    box-shadow: 0 20px 48px rgba(16, 24, 22, 0.16);
  }

  .contact-primary-links.open {
    display: grid;
    gap: 4px;
  }

  .contact-primary-links a {
    display: flex;
    min-height: 48px;
    align-items: center;
    border-bottom: 1px solid #edf0ed;
    padding: 0 8px;
  }

  .contact-primary-links a:last-child {
    border-bottom: 0;
  }

  .contact-primary-links .button {
    justify-content: center;
    margin-top: 8px;
  }

  .brand {
    min-width: 0;
  }

  .logo-crop {
    flex-basis: 50px;
    width: 50px;
    height: 48px;
  }

  .logo-crop img {
    left: -28px;
    top: -15px;
    width: 105px;
    height: 79px;
  }

  .site-header .button {
    width: 100%;
  }

  .hero h1,
  .report-hero h1,
  .strategy-hero-premium h1,
  .contact-hero h1 {
    font-size: 42px;
  }

  .contact-hero {
    min-height: auto;
  }

  .contact-hero-inner {
    padding-top: 70px;
    padding-bottom: 62px;
  }

  .strategy-hero-premium {
    min-height: auto;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 350px;
  }

  .strategy-map {
    min-height: 460px;
  }

  .map-flow {
    inset: 126px 14px 104px;
    grid-template-columns: 1fr;
  }

  .map-flow button {
    min-height: 58px;
  }

  .map-core,
  .map-outcome {
    left: 14px;
    right: auto;
    width: calc(100% - 28px);
  }

  .map-outcome {
    top: auto;
    bottom: 14px;
  }

  .score-float {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }

  .analysis-overlay {
    left: 14px;
    top: 14px;
    width: calc(100% - 28px);
  }

  .platform-strip,
  .metric-grid,
  .card-grid,
  .card-grid.six,
  .card-grid.two,
  .card-grid.three,
  .steps,
  .two-col,
  .three-col,
  .gate-preview,
  .methodology-grid,
  .platform-cards,
  .action-plan,
  .report-headline,
  .executive-grid,
  .interpretation-panel,
  .methodology-disclosure,
  .priority-stack article,
  .advisor-panel,
  .handoff-panel,
  .handoff-panel dl,
  .handoff-notice,
  .index-snapshot,
  .intelligence-grid,
  .history-track,
  .check-grid,
  .methodology-center .card-grid.three,
  .session-options,
  .session-flow .card-grid.three,
  .clarity-grid,
  .ecosystem-grid,
  .answer-grid,
  .growth-system,
  .crawlable-topic-list,
  .legacy-options,
  .name-fields {
    grid-template-columns: 1fr;
  }

  .contact-step-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-step-list p {
    grid-column: auto;
    margin-top: 0;
  }

  .contact-footer nav {
    justify-content: flex-start;
  }

  .query-row {
    grid-template-columns: 1fr 42px;
  }

  .query-row span {
    grid-column: 1 / -1;
  }

  .table-like div,
  .provider-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer {
    display: grid;
  }
}
