:root {
  color-scheme: light;
  --ink: #071a2b;
  --ink-deep: #04131e;
  --ink-soft: #123142;
  --paper: #f6f6f0;
  --paper-deep: #e9ebe4;
  --white: #fff;
  --signal: #d8ff45;
  --signal-strong: #c9ef32;
  --text: #203844;
  --muted: #5d7078;
  --line: #cfd6d2;
  --line-dark: #294352;
  --error: #b42318;
  --warning: #fff3cd;
  --shadow: 0 24px 70px rgb(4 19 30 / 14%);
  --shell: 1180px;
  --radius: 3px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 720;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 6vw, 3.65rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.3rem;
}

p:last-child {
  margin-bottom: 0;
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.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: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  background: var(--signal);
  color: var(--ink);
  font-weight: 800;
}

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

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

.site-header {
  position: relative;
  z-index: 50;
  min-height: 64px;
  border-bottom: 1px solid rgb(255 255 255 / 13%);
  background: var(--ink-deep);
  color: var(--white);
}

.site-header__inner {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  text-decoration: none;
}

.brand__mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.brand__text {
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.17em;
}

.nav-toggle {
  display: none;
  min-width: 74px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  width: 17px;
  height: 2px;
  background: currentcolor;
  content: "";
  transition: transform 160ms ease;
}

.nav-toggle__icon {
  position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  position: absolute;
  left: 0;
}

.nav-toggle__icon::before {
  top: -6px;
}

.nav-toggle__icon::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 0.65rem 1rem 1rem;
  border-top: 1px solid var(--line-dark);
  background: var(--ink-deep);
  box-shadow: 0 18px 40px rgb(0 0 0 / 30%);
}

.has-nav-js .nav-toggle {
  display: inline-flex;
}

.has-nav-js .site-nav {
  display: none;
}

.site-nav.is-open,
.has-nav-js .site-nav.is-open {
  display: flex;
  flex-direction: column;
}

.site-nav > a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding-inline: 0.8rem;
  color: #dbe5e5;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav > a:hover {
  color: var(--signal);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.87rem;
  font-weight: 820;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}

.button--primary {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--ink);
}

.button--primary:hover {
  border-color: var(--signal-strong);
  background: var(--signal-strong);
}

.button--secondary {
  border-color: rgb(255 255 255 / 52%);
  background: rgb(4 19 30 / 45%);
  color: var(--white);
  backdrop-filter: blur(5px);
}

.button--secondary:hover {
  border-color: var(--white);
  background: rgb(4 19 30 / 72%);
}

.button--nav {
  margin-top: 0.4rem;
  border-color: var(--signal);
  background: var(--signal);
  color: var(--ink) !important;
}

.hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero__media,
.hero__media img,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: 67% center;
}

.hero__veil {
  background:
    linear-gradient(90deg, rgb(2 15 24 / 98%) 0%, rgb(2 15 24 / 88%) 48%, rgb(2 15 24 / 45%) 78%, rgb(2 15 24 / 22%) 100%),
    linear-gradient(0deg, rgb(2 15 24 / 68%) 0%, transparent 48%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 500px;
  align-items: center;
  padding-block: 1.75rem;
}

.hero__copy {
  width: min(100%, 710px);
}

.eyebrow,
.section-kicker,
.micro-label {
  margin-bottom: 0.8rem;
  color: var(--signal);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: clamp(2.25rem, 10.5vw, 2.625rem);
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.hero h1 span {
  white-space: nowrap;
}

.hero .lede {
  max-width: 680px;
  margin-bottom: 1rem;
  color: #e0e8e8;
  font-size: clamp(1rem, 4.5vw, 1.12rem);
  line-height: 1.46;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero .actions {
  margin-bottom: 0.75rem;
}

.section-band {
  padding-block: clamp(4rem, 9vw, 7rem);
}

.section-band--dark {
  background: var(--ink);
  color: #c7d2d4;
}

.section-band--dark h2,
.section-band--dark h3 {
  color: var(--white);
}

.section-band--tint {
  background: var(--paper-deep);
}

.section-heading {
  max-width: 710px;
  margin-bottom: 2.5rem;
}

.section-heading--wide {
  max-width: 790px;
}

.section-heading > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-band--dark .section-heading > p:not(.section-kicker) {
  color: #b9c6c9;
}

.break-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.break-list li {
  display: flex;
  min-height: 64px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 720;
}

.workflow-track {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: var(--line-dark);
  list-style: none;
}

.workflow-track li {
  min-height: 190px;
  padding: 1.5rem;
  background: var(--ink-deep);
}

.workflow-track__number {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--signal);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.workflow-track h3 {
  margin-bottom: 0.5rem;
}

.workflow-track p {
  margin: 0;
  color: #aebdc0;
  font-size: 0.9rem;
}

.product-layout {
  display: grid;
  gap: 2.75rem;
}

.product-copy {
  margin-bottom: 0;
}

.design-target {
  padding-left: 1rem;
  border-left: 3px solid var(--signal-strong);
  font-size: 0.86rem !important;
}

.command-view {
  overflow: hidden;
  border: 1px solid #263d48;
  border-radius: 5px;
  background: #0b202d;
  box-shadow: var(--shadow);
  color: #dbe4e5;
}

.command-view__bar {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #29424e;
  background: #061923;
}

.command-view__bar > div {
  min-width: 0;
}

.command-view__brand,
.command-view__incident {
  display: block;
}

.command-view__brand {
  color: var(--signal);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.command-view__incident {
  overflow: hidden;
  color: #abb9bd;
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sync-state {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.4rem;
  color: #c8d4d4;
  font-size: 0.65rem;
}

.sync-state i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 3px rgb(216 255 69 / 12%);
}

.command-view__body {
  display: grid;
}

.concept-map {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  background:
    linear-gradient(37deg, transparent 47%, rgb(216 255 69 / 16%) 48%, rgb(216 255 69 / 16%) 49%, transparent 50%),
    linear-gradient(116deg, transparent 39%, rgb(132 161 167 / 21%) 40%, rgb(132 161 167 / 21%) 41%, transparent 42%),
    repeating-linear-gradient(0deg, transparent 0 38px, rgb(104 139 147 / 13%) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 38px, rgb(104 139 147 / 13%) 39px 40px),
    #112b37;
}

.concept-map::before,
.concept-map::after {
  position: absolute;
  border: 1px solid rgb(216 255 69 / 46%);
  content: "";
  transform: rotate(-8deg);
}

.concept-map::before {
  inset: 18% 45% 28% 11%;
  background: rgb(216 255 69 / 5%);
}

.concept-map::after {
  inset: 35% 9% 8% 53%;
  border-color: rgb(118 175 195 / 48%);
  background: rgb(118 175 195 / 6%);
  transform: rotate(7deg);
}

.concept-map__labels span {
  position: absolute;
  z-index: 2;
  color: #96aab0;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.concept-map__labels span:nth-child(1) {
  top: 19%;
  left: 14%;
}

.concept-map__labels span:nth-child(2) {
  top: 42%;
  left: 45%;
}

.concept-map__labels span:nth-child(3) {
  right: 12%;
  bottom: 16%;
}

.map-team {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 3px solid #152f3b;
  border-radius: 50%;
  background: var(--signal);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgb(0 0 0 / 35%);
}

.map-team--one {
  top: 34%;
  left: 25%;
}

.map-team--two {
  top: 55%;
  left: 52%;
}

.map-team--three {
  right: 18%;
  bottom: 20%;
}

.map-coverage {
  position: absolute;
  z-index: 4;
  bottom: 0.8rem;
  left: 0.8rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid #38535f;
  background: rgb(4 19 30 / 88%);
}

.map-coverage span,
.map-coverage strong {
  display: block;
}

.map-coverage span {
  color: #9eb0b5;
  font-size: 0.62rem;
}

.map-coverage strong {
  color: var(--white);
  font-size: 1.08rem;
}

.assignment-board,
.report-queue {
  padding: 1rem;
  border-top: 1px solid #29424e;
  background: #0b202d;
}

.concept-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.concept-panel-heading .micro-label {
  display: block;
  margin: 0;
  font-size: 0.64rem;
}

.concept-panel-heading strong {
  color: var(--white);
  font-size: 0.88rem;
}

.concept-panel-heading > span {
  color: #9cadb1;
  font-size: 0.62rem;
}

.assignment-board ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.assignment-board li {
  display: grid;
  grid-template-columns: 9px 1fr auto;
  align-items: center;
  gap: 0.5rem;
  min-height: 42px;
  border-top: 1px solid #263f4b;
}

.assignment-board b,
.assignment-board small {
  font-size: 0.67rem;
}

.assignment-board small {
  color: #9aadb1;
}

.state-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.state-dot--active {
  background: var(--signal);
}

.state-dot--ack {
  background: #6fc4dd;
}

.state-dot--review {
  background: #f2b84b;
}

.queue-count {
  padding: 0.18rem 0.4rem;
  background: rgb(216 255 69 / 12%);
  color: var(--signal) !important;
}

.report-queue article {
  padding: 0.65rem 0;
  border-top: 1px solid #263f4b;
}

.report-queue article > * {
  display: block;
}

.report-queue article span,
.report-queue article small {
  color: #91a7ad;
  font-size: 0.64rem;
}

.report-queue article b {
  margin-block: 0.12rem;
  color: #eef4f4;
  font-size: 0.7rem;
}

.audience-grid {
  display: grid;
  gap: 1px;
  padding: 1px;
  background: #c8cfcb;
}

.audience-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--paper);
}

.audience-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.audience-card a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.audience-card a:hover {
  color: #3e5700;
}

.boundary-card {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 50px rgb(4 19 30 / 7%);
}

.boundary-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 3rem);
}

.boundary-card > p {
  align-self: center;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.design-layout {
  display: grid;
  gap: 2.5rem;
}

.design-copy h2 {
  color: var(--white);
}

.design-copy > p:not(.section-kicker) {
  color: #bac8ca;
  font-size: 1.04rem;
}

.check-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0.72rem 0 0.72rem 1.7rem;
  border-top: 1px solid var(--line-dark);
  color: #d5dfe0;
  font-size: 0.9rem;
}

.check-list li::before {
  position: absolute;
  top: 0.92rem;
  left: 0;
  color: var(--signal);
  content: "✓";
  font-weight: 900;
}

.contact-form {
  padding: clamp(1.25rem, 5vw, 2.2rem);
  border: 1px solid #344d59;
  background: #0d2430;
  box-shadow: 0 24px 70px rgb(0 0 0 / 24%);
}

.form-heading {
  margin-bottom: 1.5rem;
}

.form-heading h3 {
  margin-bottom: 0.4rem;
  color: var(--white);
  font-size: 1.7rem;
}

.form-heading p:last-child {
  color: #aebfc2;
  font-size: 0.77rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.35rem;
  color: #eaf0f0;
  font-size: 0.78rem;
  font-weight: 740;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.72rem 0.8rem;
  border: 1px solid #58717b;
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--signal);
  outline: 3px solid rgb(216 255 69 / 28%);
  outline-offset: 0;
}

.website-field,
.contact-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 24px 1fr;
  min-height: 44px;
  gap: 0.7rem;
  align-items: center;
  margin-block: 1.2rem;
  color: #e2e9e9;
  cursor: pointer;
  font-size: 0.82rem;
}

.checkbox-field input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--signal);
}

.form-warning {
  margin: 0 0 1rem;
  padding: 0.75rem 0.85rem;
  border-left: 3px solid #e5b648;
  background: rgb(229 182 72 / 11%);
  color: #ebdcae;
  font-size: 0.76rem;
}

.button--submit {
  width: 100%;
  border: 0;
}

.form-privacy {
  margin-top: 0.75rem;
  color: #9eb0b4;
  font-size: 0.7rem;
  text-align: center;
}

.form-privacy a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding-inline: 0.2rem;
  color: #dce8e9;
}

.contact-form > .field {
  margin-bottom: 1rem;
}

.field-hint {
  margin: -0.15rem 0 0.4rem;
  color: #acbdc0;
  font-size: 0.74rem;
}

.form-check {
  margin-block: 1.2rem;
}

.form-check > label {
  display: grid;
  grid-template-columns: 24px 1fr;
  min-height: 44px;
  gap: 0.7rem;
  align-items: center;
  color: #e2e9e9;
  cursor: pointer;
  font-size: 0.82rem;
}

.form-check input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--signal);
}

.site-footer {
  padding-block: 2.5rem;
  background: var(--ink-deep);
  color: #9fb0b4;
}

.site-footer__inner {
  display: grid;
  gap: 1.7rem;
}

.brand--footer {
  margin-bottom: 0.6rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.76rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}

.site-footer nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding-inline: 0.25rem;
  color: #c7d3d5;
  font-size: 0.78rem;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: var(--signal);
}

.site-footer p a {
  color: #d7e1e2;
}

/* Audience landing pages */
.audience-hero {
  padding-block: clamp(3.25rem, 8vw, 6.5rem);
}

.audience-hero__layout,
.split-section,
.cta-section__inner {
  display: grid;
  gap: 2.25rem;
}

.audience-hero__copy h1 {
  max-width: 800px;
  margin-bottom: 1.25rem;
  color: var(--white);
  font-size: clamp(2.625rem, 11vw, 4.4rem);
}

.audience-hero__copy .lede {
  max-width: 730px;
  color: #c5d2d4;
  font-size: 1.05rem;
}

.audience-hero__copy .actions {
  margin-block: 1.5rem 0.85rem;
}

.audience-hero__panel {
  align-self: end;
  padding: 1.4rem;
  border: 1px solid var(--line-dark);
  background: var(--ink-deep);
}

.signal-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  padding: 0.72rem 0;
  border-top: 1px solid var(--line-dark);
  color: #d5dfe0;
  font-size: 0.84rem;
}

.feature-grid {
  display: grid;
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.feature-card {
  min-height: 245px;
  padding: 1.5rem;
  background: var(--white);
}

.feature-card p:last-child {
  color: var(--muted);
  font-size: 0.92rem;
}

.workflow-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.workflow-list li {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.workflow-list span {
  color: var(--ink);
  font-weight: 800;
}

.workflow-list small {
  color: var(--muted);
  font-size: 0.78rem;
}

.cta-section {
  padding-block: clamp(3rem, 7vw, 5.25rem);
}

.cta-section__inner {
  align-items: center;
}

.cta-section__inner h2 {
  font-size: clamp(2rem, 6vw, 3.2rem);
}

.cta-section__inner p {
  max-width: 680px;
}

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

.audience-links {
  padding-block: 2.5rem;
}

.audience-links ul {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-links a {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.audience-links a[aria-current="page"] {
  color: #4d6500;
}

/* Legal and policy pages */
.legal-hero {
  padding-block: clamp(3.25rem, 8vw, 6rem);
}

.legal-hero h1 {
  max-width: 830px;
  margin-bottom: 1.2rem;
  color: var(--white);
  font-size: clamp(2.625rem, 10vw, 4.4rem);
}

.legal-hero > .shell > p:last-child {
  max-width: 720px;
  color: #bdcbcd;
}

.legal-copy {
  max-width: 790px;
}

.legal-copy section {
  padding-block: 1.75rem;
  border-top: 1px solid var(--line);
}

.legal-copy section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-copy h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2.15rem);
}

.legal-copy p {
  color: var(--muted);
}

.legal-warning {
  margin-block: 1rem;
  padding-inline: 1.25rem;
  border: 1px solid #d6b467 !important;
  background: #fff8e7;
}

.legal-warning h2 {
  color: #583d00;
}

.legal-warning p {
  color: #604b1f;
}

/* Contact error and confirmation states */
.contact-page {
  min-height: 100vh;
  background: var(--ink);
}

.contact-state {
  padding-block: clamp(3rem, 8vw, 6rem);
}

.contact-state__inner {
  width: min(100%, 760px);
}

.contact-state h1 {
  color: var(--white);
  font-size: clamp(2.625rem, 10vw, 4.2rem);
}

.contact-state > .shell > p,
.contact-state__inner > p {
  color: #bccacc;
}

.contact-state .contact-form {
  margin-top: 1.75rem;
}

.error-summary {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 2px solid #f7b4ae;
  background: #3a171b;
  color: #ffe3df;
}

.error-summary h2 {
  margin-bottom: 0.5rem;
  color: var(--white);
  font-size: 1.2rem;
}

.error-summary ul {
  margin: 0;
  padding-left: 1.2rem;
}

.error-summary a {
  color: inherit;
}

.field-error {
  display: block;
  margin-top: 0.25rem;
  color: #ffc9c5;
  font-size: 0.76rem;
}

.field [aria-invalid="true"] {
  border-color: #f79089;
}

@media (min-width: 520px) {
  .shell {
    width: min(calc(100% - 3rem), var(--shell));
  }

  .hero__inner {
    padding-block: 2.5rem;
  }

  .hero .actions .button {
    width: auto;
  }

  .break-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 1.5rem;
  }

  .workflow-track,
  .audience-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .workflow-list li {
    grid-template-columns: minmax(110px, 0.4fr) 1fr;
    align-items: center;
  }

  .audience-links ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 1.5rem;
  }
}

@media (max-width: 519px) {
  .hero__inner {
    width: min(calc(100% - 1rem), var(--shell));
  }
}

@media (min-width: 760px) {
  .hero {
    min-height: 600px;
  }

  .hero__inner {
    min-height: 600px;
  }

  .hero__copy {
    width: 66%;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero .lede {
    font-size: 1.12rem;
  }

  .break-list {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }

  .break-list li {
    min-height: 120px;
    align-items: flex-end;
    padding: 1rem;
    border-right: 1px solid var(--line);
  }

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

  .command-view__body {
    grid-template-columns: 1.6fr 1fr;
  }

  .concept-map {
    grid-row: 1 / span 2;
    min-height: 430px;
  }

  .assignment-board,
  .report-queue {
    border-top: 0;
    border-left: 1px solid #29424e;
  }

  .report-queue {
    border-top: 1px solid #29424e;
  }

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

  .boundary-card {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .site-footer__inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .site-footer__legal {
    grid-column: 1 / -1;
  }

  .audience-hero__layout {
    grid-template-columns: 1.7fr 0.8fr;
    align-items: end;
  }

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

  .split-section {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }

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

  .cta-section__inner .button {
    width: auto;
  }

  .audience-links ul {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 960px) {
  .site-header,
  .site-header__inner {
    min-height: 72px;
  }

  .nav-toggle,
  .has-nav-js .nav-toggle {
    display: none;
  }

  .site-nav,
  .site-nav.is-open,
  .has-nav-js .site-nav,
  .has-nav-js .site-nav.is-open {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.2rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav > a {
    min-height: 44px;
    padding-inline: 0.85rem;
  }

  .site-nav .button--nav {
    min-height: 42px;
    margin: 0 0 0 0.4rem;
  }

  .hero,
  .hero__inner {
    min-height: min(690px, calc(100vh - 72px));
  }

  .hero__copy {
    width: 62%;
  }

  .hero h1 {
    font-size: 3.875rem;
  }

  .hero .lede {
    font-size: 1.18rem;
  }

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

  .workflow-track li {
    min-height: 225px;
  }

  .workflow-track__number {
    margin-bottom: 4rem;
  }

  .product-layout {
    grid-template-columns: minmax(270px, 0.36fr) minmax(0, 0.64fr);
    align-items: center;
    gap: 4rem;
  }

  .audience-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .design-layout {
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
    align-items: start;
    gap: 5rem;
  }
}

@media (min-width: 1440px) {
  .hero h1 {
    font-size: 4rem;
  }

  .hero .lede {
    max-width: 720px;
  }
}

@media (max-height: 620px) and (max-width: 959px) {
  .hero,
  .hero__inner {
    min-height: 490px;
  }

  .hero__inner {
    align-items: flex-start;
    padding-block: 1.3rem;
  }

  .hero h1 {
    margin-bottom: 0.55rem;
    font-size: 2.375rem;
  }

  .hero .lede {
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
  }
}

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