:root {
  --paper: #f6f4ee;
  --surface: #ffffff;
  --blue-wash: #eef2ff;
  --ink: #171a24;
  --muted: #616878;
  --line: #d9dee9;
  --blue: #3157e5;
  --blue-dark: #2441bd;
  --red: #d83a30;
  --navy: #171d33;
  --serif: "PT Serif", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
h1, h2 { font-weight: 600; letter-spacing: -.052em; line-height: 1.06; }
em { color: var(--blue); font-family: var(--serif); font-style: italic; font-weight: 700; }
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}
.container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(20px, 3.15vw, 44px);
}
.eyebrow {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.5;
}
.signal-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--blue);
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 20;
  padding: 11px 16px;
  background: var(--navy);
  color: #fff;
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }

/* Header */
.site-header { border-bottom: 1px solid #deddd7; background: var(--paper); }
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1.5px;
}
.logo-symbol {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-right: 2px;
  background: var(--blue);
  color: #fff;
  font-size: 27px;
  line-height: 1;
}
.logo-dot { margin-left: -7px; color: var(--red); }
.desktop-nav { display: flex; gap: 28px; font-size: 13px; font-weight: 650; }
.desktop-nav a { transition: color .18s ease; }
.desktop-nav a:hover { color: var(--blue); }
.cabinet-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 11px 15px;
  border: 1px solid #c9cbd1;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 750;
  transition: background .18s ease;
}
.cabinet-link:hover { background: #ebeaf0; }
.cabinet-link span { font-size: 18px; }

/* Hero */
.hero { background: var(--paper); }
.hero-grid {
  min-height: min(680px, calc(100svh - 124px));
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(450px, 1.06fr);
  align-items: center;
  gap: clamp(34px, 4vw, 68px);
  padding-block: clamp(30px, 4vh, 44px) 32px;
}
.hero-copy, .test-preview { min-width: 0; }
.hero-copy { padding-bottom: 7px; }
.hero h1 {
  max-width: 690px;
  margin-top: 18px;
  font-size: clamp(46px, 4.55vw, 64px);
}
.hero h1 em { display: inline-block; }
.hero-description {
  max-width: 570px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 27px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button span { font-size: 19px; line-height: 1; }
.button-primary { background: var(--blue); color: #fff; }
.button-primary:hover { background: var(--blue-dark); }
.button-secondary { border-color: #bfc5d2; background: transparent; color: var(--ink); }
.button-secondary:hover { border-color: var(--blue); color: var(--blue); }
.hero-footnote { margin-top: 18px; color: #747a87; font-size: 10px; line-height: 1.6; }

.test-preview {
  position: relative;
  width: 100%;
  max-width: 600px;
  justify-self: end;
  padding: clamp(24px, 2.5vw, 34px);
  border: 1px solid #d5dae6;
  border-radius: 4px;
  background: var(--surface);
  box-shadow: 12px 14px 0 #dfe5fb;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.test-preview.is-emphasized { border-color: var(--blue); box-shadow: 12px 14px 0 #cbd6ff; }
.preview-role-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: -10px -10px 19px;
  border-bottom: 1px solid var(--line);
}
.preview-role-tabs button {
  position: relative;
  min-width: 0;
  min-height: 35px;
  padding: 7px 8px 10px;
  border: 0;
  background: transparent;
  color: #7b8291;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .065em;
  line-height: 1.3;
  text-transform: uppercase;
}
.preview-role-tabs button::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: -1px;
  left: 8px;
  height: 2px;
  background: transparent;
}
.preview-role-tabs button:hover { color: var(--blue); }
.preview-role-tabs button[aria-selected="true"] { color: var(--blue); }
.preview-role-tabs button[aria-selected="true"]::after { background: var(--blue); }
.preview-content.is-changing { animation: preview-change .24s ease both; }
@keyframes preview-change {
  from { opacity: .15; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.preview-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
  color: #70788a;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .08em;
}
.preview-heading { display: grid; grid-template-columns: 34px 1fr; gap: 13px; margin-top: 19px; }
.preview-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  font-size: 22px;
}
.preview-heading div > span { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.preview-heading h2 { margin-top: 6px; font-size: clamp(21px, 2vw, 27px); letter-spacing: -.035em; line-height: 1.2; }
.preview-situation { max-width: 510px; margin-top: 16px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.preview-options { display: grid; gap: 8px; margin-top: 18px; }
.preview-options button {
  min-height: 43px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border: 1px solid #dce1ec;
  border-radius: 2px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-size: 11px;
  line-height: 1.45;
}
.preview-options .option-letter {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  border: 1px solid #ccd2df;
  border-radius: 50%;
  font-size: 9px;
}
.preview-options button:hover { background: #f5f7ff; }
.preview-options button[aria-pressed="true"] { border-color: var(--blue); background: var(--blue-wash); color: var(--blue-dark); }
.preview-options button[aria-pressed="true"] .option-letter { border-color: var(--blue); background: var(--blue); color: #fff; }
.preview-options .option-copy { min-width: 0; }
.interview-prompt {
  display: grid;
  grid-template-columns: minmax(150px, .8fr) minmax(0, 1.2fr);
  gap: 6px 22px;
  margin: 18px -34px -34px 34px;
  padding: 17px 20px;
  border-radius: 3px;
  background: var(--navy);
  color: #fff;
}
.prompt-label { grid-column: 1; color: #9fb2ff; font-size: 8px; font-weight: 800; letter-spacing: .1em; }
.interview-prompt strong { grid-column: 1; font-size: 15px; line-height: 1.35; }
.interview-prompt p { grid-column: 2; grid-row: 1 / span 2; color: #dce2f5; font-size: 10px; line-height: 1.65; }

/* Journey */
.journey {
  --journey-progress: 0%;
  padding-block: 72px;
  border-block: 1px solid #dfe4ef;
  background: var(--blue-wash);
}
.journey-product {
  display: grid;
  grid-template-columns: minmax(310px, .72fr) minmax(0, 1.28fr);
  min-height: 620px;
  border: 1px solid #cdd7ee;
  background: #edf2ff;
}
.journey-intro {
  min-width: 0;
  padding: 50px 44px;
  border-right: 1px solid #cdd7ee;
}
.journey h2 { margin-top: 14px; font-size: clamp(41px, 3.6vw, 57px); }
.journey-stepper {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 51px;
}
.journey-route {
  position: absolute;
  top: 27px;
  bottom: 27px;
  left: 19px;
  width: 1px;
  background: #c1cdef;
}
.journey-route span {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: var(--journey-progress);
  background: var(--blue);
  transition: height .24s ease;
}
.journey-route span::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -1px;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
}
.journey-step {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  padding: 13px 0;
  border: 0;
  background: transparent;
  color: #67718b;
  text-align: left;
}
.step-number {
  width: 40px;
  height: 28px;
  display: grid;
  place-items: center;
  background: #edf2ff;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  transition: background .2s ease, color .2s ease;
}
.step-name { font-size: 13px; font-weight: 700; line-height: 1.35; transition: color .2s ease; }
.journey-step:hover .step-name { color: var(--blue); }
.journey-step[aria-current="step"] .step-number { background: var(--blue); color: #fff; }
.journey-step[aria-current="step"] .step-name { color: var(--ink); }
.journey-step-final[aria-current="step"] .step-number { background: var(--red); }
.journey-demo { min-width: 0; display: flex; flex-direction: column; padding: 30px; background: #f9fafc; }
.journey-toolbar { display: flex; align-items: center; justify-content: flex-end; gap: 18px; margin-bottom: 18px; }
.journey-indicator { color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.journey-controls { display: flex; gap: 7px; }
.journey-arrow {
  min-width: 42px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-inline: 12px;
  border: 1px solid #b7c4e8;
  border-radius: 0;
  background: transparent;
  color: var(--blue);
  font-size: 18px;
  transition: background .18s ease, color .18s ease, opacity .18s ease;
}
.journey-arrow:hover:not(:disabled) { background: var(--blue); color: #fff; }
.journey-arrow:disabled { cursor: default; opacity: .32; }
.journey-control-label, .journey-mobile-route { display: none; }
.journey-artifact-frame {
  min-height: 520px;
  display: flex;
  border: 1px solid #d3d9e6;
  background: #fff;
  overflow: hidden;
}
.journey-panel {
  width: 100%;
  min-width: 0;
  min-height: 518px;
  padding: clamp(34px, 4vw, 55px);
  animation: journey-panel-in .24s ease both;
}
.journey-panel[hidden] { display: none; }
.artifact-kicker { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .1em; line-height: 1.4; }
.artifact-heading h3,
.journey-panel > div > h3 { margin-top: 15px; font-size: clamp(28px, 2.7vw, 39px); line-height: 1.17; letter-spacing: -.045em; }
.artifact-brief { display: grid; grid-template-rows: auto 1fr; gap: 38px; }
.brief-sheet { margin: 0; align-self: end; border-top: 1px solid var(--line); }
.brief-sheet > div { display: grid; grid-template-columns: minmax(190px, .9fr) minmax(220px, 1.1fr); gap: 30px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.brief-sheet dt { font-size: 12px; font-weight: 750; line-height: 1.55; }
.brief-sheet dd { margin: 0; color: var(--muted); font-family: var(--serif); font-size: 16px; font-weight: 700; line-height: 1.5; }
.artifact-case { display: grid; place-items: center; background: var(--paper); }
.case-document { width: min(100%, 620px); }
.artifact-meta { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid #cfd4de; color: #70788a; font-size: 8px; font-weight: 800; letter-spacing: .08em; }
.case-document .artifact-kicker { margin-top: 28px; }
.case-document h3 { max-width: 590px; }
.case-context { max-width: 570px; margin-top: 17px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.case-options { display: grid; gap: 7px; margin-top: 25px; }
.case-options span { display: grid; grid-template-columns: 27px 1fr; gap: 10px; padding: 11px 13px; border-bottom: 1px solid #d8dce5; background: #fff; font-size: 10px; font-weight: 700; line-height: 1.5; }
.case-options b { color: var(--blue); }
.artifact-decision { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(210px, .9fr); padding: 0; }
.decision-summary { min-width: 0; padding: clamp(36px, 4vw, 54px); align-self: center; }
.decision-summary blockquote { margin: 31px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); color: var(--muted); font-family: var(--serif); font-size: 17px; font-weight: 700; line-height: 1.55; }
.decision-reading { min-width: 0; display: flex; flex-direction: column; justify-content: center; padding: 34px; background: var(--blue); color: #fff; }
.decision-reading > span { color: #c8d3ff; font-size: 8px; font-weight: 800; letter-spacing: .1em; }
.decision-reading p { margin-top: 19px; font-size: 14px; font-weight: 650; line-height: 1.7; }
.decision-reading small { margin-top: 27px; padding-top: 17px; border-top: 1px solid #7188ed; color: #dbe2ff; font-size: 9px; line-height: 1.6; }
.artifact-interview { display: grid; grid-template-columns: minmax(0, .9fr) minmax(260px, 1.1fr); grid-template-rows: 1fr auto; gap: 28px 45px; }
.interview-questions { align-self: center; list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.interview-questions li { display: grid; grid-template-columns: 30px 1fr; gap: 13px; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 700; line-height: 1.55; }
.interview-questions span { padding-top: 2px; color: var(--blue); font-size: 9px; font-weight: 800; }
.button-journey { grid-column: 2; align-self: end; justify-self: start; background: var(--red); color: #fff; }
.button-journey:hover { background: #bd2d25; }
@keyframes journey-panel-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Contact, FAQ and footer */
.contact-section { padding-block: 72px 66px; background: var(--navy); color: #fff; }
.contact-top { display: grid; grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr); gap: clamp(55px, 7vw, 100px); align-items: start; }
.contact-copy .eyebrow, .faq .eyebrow { color: #9fb2ff; }
.contact-copy h2 { margin-top: 17px; font-size: clamp(48px, 5.2vw, 72px); }
.contact-copy h2 em { color: #9fb2ff; }
.contact-copy > p:last-child { max-width: 500px; margin-top: 24px; color: #cbd2e7; font-size: 15px; line-height: 1.75; }
.contact-panel { padding-top: 2px; }
.contact-brief > span { color: #9fb2ff; font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.contact-brief ol { display: grid; gap: 10px; margin: 18px 0 26px; padding-left: 23px; }
.contact-brief li { padding-left: 5px; color: #e3e7f3; font-size: 13px; line-height: 1.55; }
.contact-form { display: grid; grid-template-columns: minmax(190px, .75fr) minmax(270px, 1.25fr); gap: 13px; }
.contact-form label { min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.contact-form label > span { color: #aeb8d5; font-size: 9px; font-weight: 750; letter-spacing: .06em; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #4e5878;
  border-radius: 2px;
  background: #202944;
  color: #fff;
  font-size: 12px;
  line-height: 1.55;
}
.contact-form input { min-height: 49px; padding: 12px 14px; }
.contact-form textarea { min-height: 112px; padding: 12px 14px; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #8994b3; opacity: 1; }
.contact-form input:hover, .contact-form textarea:hover { border-color: #6b789f; }
.button-copy { grid-column: 1 / -1; width: 100%; margin-top: 3px; background: var(--red); color: #fff; }
.button-copy:hover { background: #bd3028; }
.copy-status { grid-column: 1 / -1; min-height: 20px; color: #b9c7f1; font-size: 11px; line-height: 1.55; }
.copy-status.is-success { color: #fff; }
.copy-fallback { grid-column: 1 / -1; }
.faq { display: grid; grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr); gap: 50px; margin-top: 64px; padding-top: 38px; border-top: 1px solid #46506e; }
.faq-heading h3 { margin-top: 12px; font-size: 25px; letter-spacing: -.035em; }
.faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.faq-list details { border-top: 1px solid #46506e; }
.faq-list details:nth-child(-n+2) { border-top: 0; }
.faq-list summary { min-height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-block: 14px; cursor: pointer; list-style: none; font-size: 12px; font-weight: 700; line-height: 1.45; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { flex: 0 0 auto; color: #9fb2ff; font-size: 20px; font-weight: 400; transition: transform .18s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 510px; padding: 0 28px 18px 0; color: #bfc7dd; font-size: 12px; line-height: 1.7; }
.site-footer { background: var(--paper); }
.footer-inner { min-height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-inner p { color: var(--muted); font-size: 10px; }
.footer-inner > a:last-child { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; }
.footer-inner > a:last-child span { font-size: 17px; }

@media (max-width: 1100px) {
  .desktop-nav { gap: 19px; }
  .hero-grid { grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr); gap: 32px; }
  .hero h1 { font-size: clamp(46px, 5vw, 56px); }
  .test-preview { padding: 25px; box-shadow: 9px 10px 0 #dfe5fb; }
  .interview-prompt { margin: 17px -25px -25px 25px; }
  .contact-top { grid-template-columns: minmax(0, .82fr) minmax(470px, 1.18fr); gap: 48px; }
  .contact-form { grid-template-columns: 1fr; }
  .button-copy, .copy-status, .copy-fallback { grid-column: 1; }
}

@media (max-width: 1099px) {
  .journey-product { grid-template-columns: 1fr; min-height: 0; }
  .journey-intro { padding: 42px; border-right: 0; border-bottom: 1px solid #cdd7ee; }
  .journey h2 { max-width: 720px; }
  .journey-stepper { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 38px; }
  .journey-route { top: 17px; right: 12.5%; bottom: auto; left: 12.5%; width: auto; height: 1px; }
  .journey-route span { width: var(--journey-progress); height: 2px; transition: width .24s ease; }
  .journey-route span::after {
    top: -3px;
    right: -1px;
    bottom: auto;
    border: 0;
    border-top: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
    transform: rotate(45deg);
  }
  .journey-step { display: flex; flex-direction: column; gap: 10px; padding: 3px 8px; text-align: center; }
  .step-number { height: 28px; }
  .journey-demo { padding: 25px; }
  .journey-artifact-frame { min-height: 500px; }
  .journey-panel { min-height: 498px; }
}

@media (max-width: 899px) {
  html { scroll-padding-top: 74px; }
  .desktop-nav { display: none; }
  .hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 37px; padding-block: 45px 52px; }
  .hero-copy { max-width: 690px; }
  .hero h1 { font-size: clamp(52px, 8.4vw, 70px); }
  .hero-description { max-width: 620px; }
  .test-preview { width: min(100%, 650px); justify-self: center; }
  .journey { padding-block: 58px 54px; }
  .contact-section { padding-block: 58px 54px; }
  .contact-top { grid-template-columns: 1fr; gap: 38px; }
  .contact-copy > p:last-child { max-width: 610px; }
  .contact-form { grid-template-columns: minmax(190px, .75fr) minmax(270px, 1.25fr); }
  .button-copy, .copy-status, .copy-fallback { grid-column: 1 / -1; }
  .faq { grid-template-columns: 1fr; gap: 26px; margin-top: 52px; }
}

@media (max-width: 767px) {
  .journey { padding-block: 45px; }
  .journey-product { border-inline: 0; }
  .journey-intro { padding: 30px 24px 26px; }
  .journey h2 { font-size: clamp(37px, 10vw, 47px); }
  .journey-stepper { display: none; }
  .journey-demo { padding: 20px; }
  .journey-toolbar { justify-content: space-between; flex-wrap: wrap; margin-bottom: 16px; }
  .journey-controls { margin-left: auto; }
  .journey-control-label { display: inline; font-size: 10px; font-weight: 750; }
  .journey-arrow { min-width: 0; height: 38px; padding-inline: 11px; }
  .journey-mobile-route { position: relative; width: 100%; height: 1px; display: block; margin-top: 3px; background: #c1cdef; }
  .journey-mobile-route span { display: block; width: var(--journey-progress); height: 2px; background: var(--blue); transition: width .24s ease; }
  .journey-mobile-route span::after {
    content: "";
    position: absolute;
    top: -3px;
    left: var(--journey-progress);
    width: 7px;
    height: 7px;
    border-top: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
    transform: translateX(-7px) rotate(45deg);
  }
  .journey[data-active-step="4"] .journey-mobile-route span::after {
    top: -3px;
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: var(--red);
    transform: translateX(-8px);
  }
  .journey-artifact-frame { min-height: 0; }
  .journey-panel { min-height: 0; padding: 27px 24px; }
  .artifact-heading h3,
  .journey-panel > div > h3 { font-size: clamp(26px, 7.7vw, 34px); }
  .artifact-brief { gap: 27px; }
  .brief-sheet > div { grid-template-columns: 1fr; gap: 7px; padding: 15px 0; }
  .brief-sheet dt { font-size: 11px; }
  .brief-sheet dd { font-size: 15px; }
  .artifact-case { padding-block: 28px; }
  .artifact-meta { align-items: flex-start; flex-direction: column; }
  .case-document .artifact-kicker { margin-top: 21px; }
  .case-options { margin-top: 21px; }
  .case-options span { font-size: 9px; }
  .artifact-decision { grid-template-columns: 1fr; padding: 0; }
  .decision-summary, .decision-reading { padding: 27px 24px; }
  .decision-summary blockquote { margin-top: 23px; font-size: 15px; }
  .decision-reading p { font-size: 13px; }
  .artifact-interview { grid-template-columns: 1fr; grid-template-rows: auto auto auto; gap: 25px; }
  .interview-questions { align-self: auto; }
  .interview-questions li { padding: 14px 0; }
  .button-journey { grid-column: 1; }
}

@media (max-width: 620px) {
  .container { padding-inline: 20px; }
  .header-inner { min-height: 70px; gap: 10px; }
  .wordmark { font-size: 24px; }
  .logo-symbol { width: 28px; height: 28px; font-size: 24px; }
  .cabinet-link { gap: 7px; padding: 9px 10px; font-size: 9px; }
  .cabinet-link span { font-size: 15px; }
  .hero-grid { gap: 31px; padding-block: 34px 43px; }
  .hero h1 { margin-top: 15px; font-size: clamp(43px, 12.3vw, 60px); }
  .hero-description { margin-top: 20px; font-size: 15px; line-height: 1.65; }
  .hero-actions { align-items: stretch; flex-direction: column; margin-top: 23px; }
  .hero-actions .button { width: 100%; }
  .test-preview { padding: 20px; box-shadow: 7px 8px 0 #dfe5fb; }
  .preview-role-tabs { margin: -7px -7px 16px; }
  .preview-role-tabs button { min-height: 40px; padding-inline: 4px; font-size: 7px; }
  .preview-topline { font-size: 8px; }
  .preview-heading { grid-template-columns: 31px 1fr; gap: 10px; }
  .preview-mark { width: 31px; height: 31px; font-size: 19px; }
  .preview-heading h2 { font-size: 22px; }
  .preview-situation { font-size: 11px; }
  .preview-options button { min-height: 46px; font-size: 10px; }
  .interview-prompt { grid-template-columns: 1fr; margin: 16px -20px -20px 16px; padding: 16px; }
  .prompt-label, .interview-prompt strong, .interview-prompt p { grid-column: 1; grid-row: auto; }
  .interview-prompt p { margin-top: 4px; }
  .contact-section { padding-block: 48px 46px; }
  .contact-copy h2 { font-size: clamp(43px, 12vw, 57px); }
  .contact-form { grid-template-columns: 1fr; }
  .button-copy, .copy-status, .copy-fallback { grid-column: 1; }
  .faq { margin-top: 45px; padding-top: 31px; }
  .faq-list { grid-template-columns: 1fr; }
  .faq-list details:nth-child(2) { border-top: 1px solid #46506e; }
  .footer-inner { min-height: 120px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 12px; }
  .footer-inner p { display: none; }
}

@media (min-width: 900px) and (max-height: 820px) {
  .header-inner { min-height: 68px; }
  .hero-grid { min-height: calc(100svh - 118px); padding-block: 21px 24px; }
  .hero h1 { margin-top: 13px; font-size: clamp(45px, 4.5vw, 64px); }
  .hero-description { margin-top: 16px; font-size: 14px; line-height: 1.58; }
  .hero-actions { margin-top: 18px; }
  .hero-footnote { margin-top: 12px; }
  .test-preview { padding-block: 21px; }
  .preview-heading { margin-top: 14px; }
  .preview-situation { margin-top: 11px; }
  .preview-options { margin-top: 13px; gap: 6px; }
  .preview-options button { min-height: 39px; padding-block: 8px; }
  .interview-prompt { margin-top: 13px; padding-block: 14px; }
}

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