: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.12);
  --shadow-strong: 0 28px 80px rgba(16, 33, 31, 0.18);
  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%);
}

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

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

.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;
}

.brand img {
  width: 74px;
  height: 56px;
  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;
}

.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: #ffffff;
  color: var(--teal);
}

.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;
}

.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: #eaf3ed;
  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: #ffffff;
}

.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;
}

.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(4, 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;
}

.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);
}

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);
}

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

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

.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;
}

.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;
}

.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;
}

.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: center;
}

.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);
}

.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,
  .strategy-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

  .evidence-drawer {
    position: static;
  }
}

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

  .site-header {
    padding: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 62px;
    height: 44px;
  }

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

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

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

  .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,
  .index-snapshot,
  .intelligence-grid,
  .history-track,
  .check-grid,
  .methodology-center .card-grid.three,
  .session-options,
  .session-flow .card-grid.three {
    grid-template-columns: 1fr;
  }

  .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;
  }
}
