:root {
  --ink: #14211c;
  --muted: #5f6d66;
  --forest: #174c3e;
  --forest-2: #236653;
  --mint: #e8f2ed;
  --canvas: #f3f6f4;
  --surface: #ffffff;
  --soft: #f8faf9;
  --line: #d9e1dc;
  --line-strong: #b8c8bf;
  --focus: #2f7d62;
  --amber: #9a6423;
  --amber-soft: #f8eedb;
  --blue: #375e75;
  --blue-soft: #e8f0f4;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  --shadow-soft: 0 16px 44px rgba(28, 48, 39, 0.09);
  --shadow-card: 0 6px 20px rgba(28, 48, 39, 0.06);
  --radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a,
button {
  font: inherit;
}

a {
  color: inherit;
}

a,
button,
summary {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

[tabindex="-1"]:focus {
  outline: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--forest);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(calc(-100% - 18px));
}

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

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(217, 225, 220, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  width: 22px;
  height: 22px;
  flex: none;
  fill: var(--forest-2);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.site-nav a,
.site-footer nav a {
  color: #4d5c54;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-footer nav a:hover {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.header-inner > .button {
  justify-self: end;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button span {
  font-size: 19px;
  line-height: 1;
}

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

.button-primary {
  color: #fff;
  background: var(--forest);
  box-shadow: 0 7px 18px rgba(23, 76, 62, 0.17);
}

.button-primary:hover {
  background: #103e33;
  box-shadow: 0 9px 24px rgba(23, 76, 62, 0.22);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line-strong);
  background: #fff;
}

.button-secondary:hover {
  border-color: var(--forest);
  background: var(--soft);
}

.button-small {
  min-height: 44px;
  padding-inline: 15px;
  font-size: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 78px;
  background:
    radial-gradient(circle at 84% 17%, rgba(117, 184, 155, 0.17), transparent 27%),
    linear-gradient(180deg, #fbfdfc 0%, #f3f7f5 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.32;
  background-image: linear-gradient(rgba(23, 76, 62, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 76, 62, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to right, transparent 0%, #000 55%, #000 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: 64px;
}

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

.eyebrow {
  margin: 0 0 17px;
  color: var(--forest);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.3;
}

.hero-copy > .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-copy > .eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #75b89b;
  box-shadow: 0 0 0 5px rgba(117, 184, 155, 0.15);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 640px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.2vw, 4.75rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 3.5vw, 3.25rem);
  font-weight: 825;
}

h3 {
  font-size: 20px;
  font-weight: 800;
}

.hero-lede {
  max-width: 600px;
  margin: 0;
  color: #526159;
  font-size: 19px;
  line-height: 1.63;
}

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

.session-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 24px 0 0;
  color: #59685f;
  font-size: 13px;
  line-height: 1.5;
}

.session-note svg {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 1px;
  fill: var(--forest-2);
}

.mission-figure {
  position: relative;
  margin: 0;
}

.mission-figure::before,
.mission-figure::after {
  position: absolute;
  z-index: 0;
  border-radius: 18px;
  content: "";
}

.mission-figure::before {
  inset: 23px -25px -24px 35px;
  border: 1px solid rgba(23, 76, 62, 0.11);
  background: rgba(232, 242, 237, 0.72);
  transform: rotate(2.2deg);
}

.mission-figure::after {
  width: 80px;
  height: 80px;
  right: -26px;
  bottom: -27px;
  background: var(--forest);
  opacity: 0.08;
}

.mission-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 16px;
  border: 1px solid #cbd8d1;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 2px 3px 14px;
  border-bottom: 1px solid var(--line);
  color: #45564d;
  font-size: 11px;
  font-weight: 800;
}

.window-brand,
.window-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.window-brand svg {
  width: 15px;
  height: 15px;
  fill: var(--forest-2);
}

.window-status {
  color: var(--forest);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.window-status i,
.live-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5ea989;
  box-shadow: 0 0 0 3px #e6f2ed;
}

.objective-card {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--forest);
  border-radius: 10px;
  background: var(--soft);
}

.mini-label {
  color: #66756d;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.objective-card strong {
  font-size: 14px;
  line-height: 1.35;
}

.objective-meta {
  color: #66746c;
  font-size: 11px;
}

.team-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0;
}

.specialist-card {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.specialist-card > span:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.specialist-card strong,
.specialist-card small {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.specialist-card strong {
  font-size: 10px;
}

.specialist-card small {
  color: #6b7971;
  font-size: 8px;
}

.specialist-card i {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #75b89b;
}

.avatar {
  width: 30px;
  height: 30px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.avatar-research {
  color: var(--forest);
  background: var(--mint);
}

.avatar-strategy {
  color: var(--amber);
  background: var(--amber-soft);
}

.avatar-risk {
  color: var(--blue);
  background: var(--blue-soft);
}

.dialogue-preview {
  padding: 4px 14px;
  border: 1px solid var(--line);
  border-radius: 10px 10px 0 0;
  background: #fff;
}

.dialogue-line {
  display: flex;
  gap: 10px;
  padding: 11px 0;
}

.dialogue-line + .dialogue-line {
  border-top: 1px solid #edf1ee;
}

.dialogue-line .avatar {
  width: 26px;
  height: 26px;
}

.dialogue-line p {
  min-width: 0;
  display: grid;
  gap: 3px;
  margin: 0;
}

.dialogue-line strong {
  font-size: 10px;
}

.dialogue-line em {
  margin-left: 5px;
  color: #6a7870;
  font-size: 8px;
  font-style: normal;
  font-weight: 600;
}

.dialogue-line p > span {
  color: #526159;
  font-size: 9px;
  line-height: 1.45;
}

.response-line {
  margin-left: 26px;
}

.result-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 0 0 10px 10px;
  color: #fff;
  background: var(--forest);
}

.result-preview > div {
  display: grid;
  gap: 3px;
}

.result-preview .mini-label,
.result-preview small {
  color: #cfe2da;
}

.result-preview strong {
  font-size: 13px;
}

.result-preview small {
  font-size: 9px;
}

.result-preview svg {
  width: 27px;
  height: 27px;
  flex: none;
  fill: #fff;
}

.confidence-strip {
  border-block: 1px solid var(--line);
  background: #fff;
}

.confidence-strip ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 23px 0;
  list-style: none;
}

.confidence-strip li {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 2px 32px;
  color: #637169;
  font-size: 12px;
  line-height: 1.45;
}

.confidence-strip li:first-child {
  padding-left: 0;
}

.confidence-strip li:last-child {
  padding-right: 0;
}

.confidence-strip li + li {
  border-left: 1px solid var(--line);
}

.confidence-strip svg {
  width: 22px;
  height: 22px;
  flex: none;
  fill: var(--forest-2);
}

.confidence-strip span {
  display: grid;
  gap: 2px;
}

.confidence-strip strong {
  color: var(--ink);
  font-size: 13px;
}

.section {
  padding: 100px 0;
}

.section-intro {
  max-width: 710px;
  margin-bottom: 48px;
}

.section-intro > p:last-child,
.collaboration-copy > p:not(.eyebrow),
.split-intro > p,
.privacy-panel > p:not(.eyebrow) {
  margin: 0;
  color: #59685f;
  font-size: 17px;
  line-height: 1.7;
}

.how-section {
  background: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 278px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.steps li::after {
  position: absolute;
  top: 53px;
  left: calc(100% + 1px);
  z-index: 2;
  width: 18px;
  border-top: 1px dashed #9fb4a9;
  content: "";
}

.steps li:last-child::after {
  display: none;
}

.step-number {
  position: absolute;
  top: 25px;
  right: 25px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
}

.step-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 32px;
  padding: 9px;
  border-radius: 10px;
  fill: var(--forest);
  background: var(--mint);
}

.steps h3 {
  margin-bottom: 12px;
}

.steps p {
  margin: 0;
  color: #5d6b63;
  font-size: 15px;
  line-height: 1.65;
}

.section-action {
  margin-top: 32px;
  text-align: center;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--forest);
  font-size: 15px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.collaboration-section {
  background: var(--canvas);
}

.collaboration-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  align-items: center;
  gap: 76px;
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #35463d;
  font-size: 14px;
  font-weight: 700;
}

.check-list li span {
  width: 22px;
  height: 22px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--forest);
  background: #dcece4;
  font-size: 12px;
}

.transcript-card {
  overflow: hidden;
  border: 1px solid #cbd8d1;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.transcript-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  color: #59685f;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--forest);
}

.transcript-entry {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  padding: 23px 24px;
}

.transcript-entry + .transcript-entry {
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.transcript-entry .avatar {
  width: 36px;
  height: 36px;
  font-size: 10px;
}

.transcript-entry header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 7px;
}

.transcript-entry header strong {
  font-size: 13px;
}

.transcript-entry header span {
  color: #66756d;
  font-size: 11px;
}

.transcript-entry p {
  margin: 0;
  color: #3f4f46;
  font-size: 14px;
  line-height: 1.65;
}

.transcript-entry dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 15px 0 0;
}

.transcript-entry dl div {
  padding: 9px 10px;
  border: 1px solid #e1e7e3;
  border-radius: 8px;
  background: #fff;
}

.transcript-entry dt {
  color: var(--forest);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.transcript-entry dd {
  margin: 3px 0 0;
  color: #5f6d65;
  font-size: 10px;
  line-height: 1.45;
}

.outcomes-section {
  background: #fff;
}

.split-intro {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.split-intro h2 {
  margin-bottom: 0;
}

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

.outcome-grid article {
  min-height: 246px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
}

.outcome-grid article::before {
  width: 32px;
  margin-bottom: 24px;
  border-top: 3px solid var(--forest);
  content: "";
}

.outcome-grid article:nth-child(2)::before {
  border-color: var(--blue);
}

.outcome-grid article:nth-child(3)::before {
  border-color: var(--amber);
}

.outcome-grid .custom-outcome {
  border-style: dashed;
  border-color: #9fb5aa;
  background: #f1f7f4;
}

.outcome-code {
  margin-bottom: 9px;
  color: #64736b;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.outcome-grid h3 {
  margin-bottom: 12px;
}

.outcome-grid p {
  margin: 0;
  color: #5d6b63;
  font-size: 14px;
  line-height: 1.6;
}

.artifact-line {
  margin-top: auto;
  padding-top: 20px;
  color: var(--forest);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
}

.multimodal-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 24px 0 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #526159;
  background: var(--soft);
  font-size: 13px;
}

.multimodal-note svg {
  width: 24px;
  height: 24px;
  flex: none;
  fill: var(--forest-2);
}

.multimodal-note strong {
  color: var(--ink);
}

.control-section {
  background: var(--canvas);
}

.control-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 24px;
}

.control-panel,
.privacy-panel {
  border-radius: 18px;
}

.control-panel {
  padding: 42px;
  border: 1px solid var(--line);
  background: #fff;
}

.control-options {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.control-options > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--soft);
}

.control-options > div:first-child {
  border-color: #8eb5a4;
  background: #f1f8f4;
}

.control-radio {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 1px;
  border: 2px solid #8a9890;
  border-radius: 50%;
  background: #fff;
}

.control-radio.selected {
  border: 5px solid var(--forest);
}

.control-options svg {
  width: 20px;
  height: 20px;
  flex: none;
  fill: var(--forest);
}

.control-options > div > span:last-child {
  display: grid;
  gap: 4px;
}

.control-options strong {
  font-size: 14px;
}

.control-options small {
  color: #5f6e66;
  font-size: 12px;
  line-height: 1.5;
}

.privacy-panel {
  position: relative;
  overflow: hidden;
  padding: 42px;
  color: #fff;
  background: var(--forest);
}

.privacy-panel::after {
  position: absolute;
  width: 230px;
  height: 230px;
  right: -92px;
  bottom: -120px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.03), 0 0 0 80px rgba(255, 255, 255, 0.025);
}

.privacy-panel .eyebrow,
.privacy-panel h2,
.privacy-panel > p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  color: #fff;
}

.privacy-panel > p:not(.eyebrow) {
  color: #dce9e4;
  font-size: 15px;
}

.privacy-mark {
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  padding: 9px;
  border-radius: 11px;
  fill: #fff;
  background: rgba(255, 255, 255, 0.11);
}

.privacy-detail {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 30px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.07);
}

.privacy-detail > span {
  width: 8px;
  height: 8px;
  flex: none;
  margin-top: 5px;
  border-radius: 50%;
  background: #8ed0b1;
  box-shadow: 0 0 0 4px rgba(142, 208, 177, 0.12);
}

.privacy-detail p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.privacy-detail strong {
  font-size: 13px;
}

.privacy-detail small {
  color: #cbded6;
  font-size: 11px;
  line-height: 1.5;
}

.final-cta {
  padding: 0 0 92px;
  background: var(--canvas);
}

.cta-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 42px 46px;
  border-radius: 18px;
  color: #fff;
  background: #133f34;
}

.cta-spark {
  width: 48px;
  height: 48px;
  fill: #8fd1b3;
}

.cta-inner h2 {
  margin-bottom: 9px;
  color: #fff;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
}

.cta-inner p {
  margin: 0;
  color: #cfe1d9;
  font-size: 14px;
}

.button-light {
  color: var(--forest);
  background: #fff;
}

.button-light:hover {
  background: #eef6f2;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 48px;
}

.footer-inner > div p {
  margin: 6px 0 0;
  color: #69766f;
  font-size: 12px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.copyright {
  margin: 0;
  color: #6b7871;
  font-size: 12px;
  white-space: nowrap;
}

@media (max-width: 1040px) {
  .hero {
    padding-top: 68px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .site-nav {
    gap: 18px;
  }

  .collaboration-grid {
    gap: 42px;
  }

  .outcome-grid {
    grid-template-columns: 1fr 1fr;
  }

  .outcome-grid article {
    min-height: 224px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero-grid,
  .collaboration-grid,
  .control-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 54px;
  }

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

  .mission-figure {
    width: min(650px, 100%);
    margin-inline: auto;
  }

  .confidence-strip ul {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .confidence-strip li,
  .confidence-strip li:first-child,
  .confidence-strip li:last-child {
    padding: 0;
  }

  .confidence-strip li + li {
    padding-top: 17px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps li {
    min-height: auto;
  }

  .steps li::after {
    display: none;
  }

  .collaboration-grid {
    gap: 46px;
  }

  .split-intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .cta-inner {
    grid-template-columns: auto 1fr;
  }

  .cta-inner .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 74px;
  }

  .container {
    width: min(100% - 32px, 1160px);
  }

  .site-header {
    backdrop-filter: none;
  }

  .header-inner {
    min-height: 64px;
    gap: 12px;
  }

  .header-inner > .button {
    min-height: 44px;
    padding-inline: 13px;
  }

  .header-inner > .button span {
    display: none;
  }

  .hero {
    padding: 57px 0 60px;
  }

  .hero::before {
    display: none;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 3.55rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .mission-figure::before {
    inset: 16px -10px -15px 18px;
  }

  .mission-window {
    padding: 11px;
    border-radius: 14px;
  }

  .window-status {
    display: none;
  }

  .team-flow {
    grid-template-columns: 1fr;
  }

  .specialist-card:nth-child(3) {
    display: none;
  }

  .specialist-card strong,
  .specialist-card small {
    overflow: visible;
    white-space: normal;
    text-overflow: clip;
  }

  .specialist-card strong {
    font-size: 11px;
  }

  .specialist-card small {
    font-size: 9px;
  }

  .dialogue-preview {
    padding-inline: 11px;
  }

  .response-line {
    margin-left: 12px;
  }

  .section {
    padding: 76px 0;
  }

  .section-intro {
    margin-bottom: 34px;
  }

  .steps li,
  .control-panel,
  .privacy-panel {
    padding: 27px;
  }

  .transcript-entry {
    padding: 20px 17px;
  }

  .transcript-entry dl {
    grid-template-columns: 1fr;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .outcome-grid article {
    min-height: 220px;
  }

  .multimodal-note {
    align-items: flex-start;
  }

  .final-cta {
    padding-bottom: 70px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    padding: 31px 27px;
  }

  .cta-spark {
    width: 36px;
    height: 36px;
  }

  .cta-inner .button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .site-footer nav {
    display: grid;
    justify-content: start;
    gap: 14px;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .brand {
    font-size: 16px;
  }

  .brand-mark {
    width: 19px;
    height: 19px;
  }

  .header-inner > .button {
    padding-inline: 11px;
    font-size: 12px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-grid {
    gap: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (forced-colors: active) {
  :focus-visible,
  .button,
  .steps li,
  .outcome-grid article,
  .transcript-card,
  .control-panel,
  .privacy-panel {
    border: 2px solid CanvasText;
  }

  .button-primary,
  .button-light {
    forced-color-adjust: none;
  }
}
