/* AUSA v2 — brand colors extracted from the supplied partnership PDF.
   Product-first composition. No third-party fonts or runtime UI libraries. */
@font-face {
  font-family: "DM Sans";
  src: url("/assets/dm-sans.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("/assets/instrument-serif.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
:root {
  --navy: #072954;
  --teal: #008798;
  --teal-ink: #006977;
  --cream: #faf6ec;
  --gold: #f2d6a5;
  --paper: #fff;
  --mist: #f1f3f5;
  --ink: #072954;
  --muted: #526578;
  --line: #d9e1e6;
  --error: #b42332;
  --sans: "DM Sans", Arial, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --max-width: 1280px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.045em;
}
p {
  text-wrap: pretty;
}
button {
  color: inherit;
}
ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
[hidden] {
  display: none !important;
}
::selection {
  background: var(--gold);
  color: var(--navy);
}
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 5px;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
.container {
  width: calc(100% - 112px);
  max-width: var(--max-width);
  margin-inline: auto;
}
.section {
  padding-block: 92px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--teal-ink);
}
.micro-label {
  font-size: 10px;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.sr-only,
.bot-field {
  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;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--cream);
  color: var(--navy);
}
.skip-link:focus {
  top: 12px;
}
/* Navigation and shared actions */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  gap: 11px;
  align-items: center;
  flex-shrink: 0;
}
.brand > img {
  width: 30px;
  height: 44px;
  object-fit: contain;
}
.brand > span {
  font: 35px/1 var(--serif);
  letter-spacing: -0.025em;
}
.brand-descriptor {
  display: block;
  font: 8px/1.5 var(--sans);
  letter-spacing: 0.14em;
  margin-top: 6px;
}
.site-header nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
}
.site-header nav > a:not(.button) {
  padding-block: 16px;
}
.site-header nav > a:not(.button):hover {
  color: var(--teal-ink);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  transition:
    background-color 0.18s,
    color 0.18s,
    transform 0.18s;
}
.button span {
  font-size: 21px;
  line-height: 1;
}
.button-dark {
  background: var(--navy);
  color: #fff;
}
.button-dark:hover {
  background: #104476;
}
.button-light {
  background: var(--cream);
  color: var(--navy);
}
.button-light:hover {
  background: #fff;
}
.button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--navy);
}
.button-outline:hover {
  background: var(--mist);
}
.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 13px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 500;
}
.text-link span {
  font-size: 20px;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  width: 44px;
  height: 44px;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.menu-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--navy);
}
/* The opening is an editorial product statement, not an illustrated brochure. */
.hero {
  background: var(--navy);
  color: var(--cream);
  padding: 35px 0 36px;
}
.hero-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.hero-topline .eyebrow {
  color: var(--gold);
}
.hero-topline > a {
  font-size: 12px;
  color: #d7e1ec;
}
.hero-topline > a span {
  margin-left: 14px;
}
.hero-lead {
  display: grid;
  grid-template-columns: 1.95fr 1fr;
  gap: 66px;
  align-items: end;
  padding: 74px 0 72px;
}
.hero h1 {
  font-size: clamp(52px, 5.7vw, 82px);
  letter-spacing: -0.06em;
  line-height: 1.07;
  font-weight: 500;
}
.hero h1 > span {
  color: var(--gold);
}
.hero-description {
  padding-bottom: 5px;
}
.hero-description > p {
  font-size: 17px;
  line-height: 1.7;
  color: #e1e7ee;
  max-width: 370px;
  margin-bottom: 26px;
}
.hero-product-index {
  display: grid;
  grid-template-columns: 0.68fr 1.25fr 1.25fr;
  gap: 34px;
  padding-top: 29px;
  border-top: 1px solid #41607e;
}
.index-caption .eyebrow {
  color: #ced9e4;
  font-size: 10px;
}
.index-caption p {
  color: #d4dfeb;
  font-size: 13px;
  line-height: 1.55;
  margin-top: 14px;
}
.hero-product-link {
  display: block;
  border-left: 1px solid #41607e;
  padding: 0 0 0 28px;
  transition: background-color 0.18s;
}
.hero-product-link:hover .hero-product-name {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.product-link-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.index-number {
  font-size: 12px;
  color: #cad7e4;
}
.state-label {
  font-size: 9px;
  letter-spacing: 0.085em;
  color: var(--gold);
}
.hero-product-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin-top: 17px;
}
.hero-product-name > span {
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
}
.hero-product-description {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  color: #d5e0eb;
  margin-top: 9px;
  padding-right: 18px;
}
/* Two products, with readable capability copy and honest interactive previews. */
.section-heading {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 46px;
}
.section-heading .eyebrow {
  margin-bottom: 23px;
}
.section-heading h2 {
  font-size: clamp(35px, 3.5vw, 49px);
  line-height: 1.13;
}
.section-heading > p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 415px;
  padding-bottom: 2px;
}
.product-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
  margin-bottom: 42px;
}
.product-tabs > button {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 66px;
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  padding: 18px 22px 18px 0;
  text-align: left;
  font-size: 17px;
  line-height: 1.35;
  color: var(--muted);
}
.product-tabs > button + button {
  padding-left: 26px;
}
.product-tabs > button[aria-selected="true"] {
  border-bottom-color: var(--teal);
  color: var(--navy);
}
.tab-index {
  font-size: 11px;
  color: var(--teal-ink);
}
.tab-arrow {
  margin-left: auto;
  font-size: 23px;
}
.product-panel {
  display: grid;
  grid-template-columns: 0.83fr 1.27fr;
  gap: 72px;
  align-items: start;
}
.product-state {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.09em;
  color: var(--teal-ink);
  font-weight: 600;
  margin: 3px 0 22px;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.product-copy h3 {
  font-size: 38px;
  line-height: 1.15;
  margin-bottom: 22px;
}
.product-intro {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.capability-list {
  margin: 25px 0 30px;
}
.capability-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.capability-list strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}
.capability-list li > span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.availability-note {
  font-size: 11px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 14px;
  max-width: 330px;
}
.product-workspace {
  min-width: 0;
  border: 1px solid #cad6df;
  border-top: 3px solid var(--teal);
  background: var(--mist);
  border-radius: 4px;
  overflow: hidden;
}
.workspace-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 22px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.workspace-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}
.workspace-mark {
  font: 26px/1 var(--serif);
  color: var(--navy);
}
.preview-label {
  font-size: 8px;
  letter-spacing: 0.055em;
  line-height: 1.5;
  color: var(--muted);
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 2px;
  flex-shrink: 0;
}
.workspace-content {
  padding: 30px 30px 24px;
}
.workspace-heading {
  margin-bottom: 22px;
}
.workspace-heading h4 {
  font-size: 25px;
  line-height: 1.22;
  margin: 12px 0 9px;
  letter-spacing: -0.035em;
}
.workspace-heading > p:last-child {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}
.preview-tabs {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid #c9d5de;
  margin-bottom: 22px;
}
.preview-tabs > button {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  min-height: 44px;
  padding: 8px 0;
  margin-bottom: -1px;
  font-size: 12px;
  color: var(--muted);
}
.preview-tabs > button[aria-selected="true"] {
  color: var(--navy);
  border-color: var(--navy);
  font-weight: 600;
}
.sample-question {
  background: var(--paper);
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 3px;
}
.sample-question > p {
  font-size: 13px;
  line-height: 1.6;
  margin-top: 8px;
  max-width: 450px;
}
.roadmap-list {
  margin: 12px 0 20px;
}
.roadmap-list > li {
  display: flex;
  gap: 17px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.roadmap-list > li > span {
  font-size: 11px;
  line-height: 21px;
  color: var(--teal-ink);
  font-weight: 600;
}
.roadmap-list strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}
.roadmap-list p {
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 4px;
}
.workspace-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 11px;
  color: var(--teal-ink);
  line-height: 1.7;
}
.workspace-note .status-dot {
  margin-top: 6px;
}
.preview-disclaimer {
  font-size: 10px;
  line-height: 1.7;
  text-align: center;
  border-top: 1px solid var(--line);
  padding: 11px 17px;
  color: var(--muted);
  background: #fff;
}
.essay-demo {
  min-height: 300px;
}
.essay-demo h5 {
  font-size: 27px;
  margin: 16px 0;
}
.essay-demo > p:not(.micro-label) {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}
.essay-demo > ul {
  margin: 20px 0;
  list-style: disc;
  padding-left: 18px;
  font-size: 12px;
  line-height: 1.7;
}
.essay-demo > ul > li + li {
  margin-top: 5px;
}
.learning-workspace {
  background: var(--cream);
}
.curriculum-list {
  margin-top: 30px;
}
.curriculum-list > li {
  display: flex;
  gap: 19px;
  padding: 18px 0;
  border-top: 1px solid #dad9cd;
}
.curriculum-list > li > span {
  font-size: 11px;
  color: var(--teal-ink);
  line-height: 21px;
}
.curriculum-list strong {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.curriculum-list p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 5px;
}
.learning-output {
  background: var(--navy);
  color: var(--cream);
  padding: 22px 24px;
  margin-top: 18px;
  border-radius: 3px;
}
.learning-output .micro-label {
  color: var(--gold);
  font-size: 9px;
}
.learning-output > strong {
  display: block;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.035em;
  margin-top: 11px;
}
/* Proposed development approach, then established education services. */
.approach-section {
  background: var(--cream);
  border-top: 1px solid #e8e4d9;
  border-bottom: 1px solid #e8e4d9;
}
.development-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 53px;
}
.development-flow > li {
  border-top: 2px solid var(--teal);
  padding-top: 15px;
}
.flow-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--teal-ink);
}
.flow-top > span:last-child {
  font-size: 21px;
  line-height: 1;
}
.development-flow h3 {
  font-size: 20px;
  line-height: 1.25;
  margin: 24px 0 12px;
  letter-spacing: -0.025em;
}
.development-flow p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}
.approach-footnote {
  display: flex;
  align-items: baseline;
  gap: 54px;
  margin-top: 48px;
  padding-top: 23px;
  border-top: 1px solid #d8d7cb;
}
.approach-footnote > span {
  font-size: 10px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: var(--teal-ink);
  font-weight: 600;
}
.approach-footnote > p {
  font-size: 15px;
  line-height: 1.65;
}
.service-list {
  border-top: 1px solid var(--line);
}
.service-item {
  border-bottom: 1px solid var(--line);
}
.service-item summary {
  display: grid;
  grid-template-columns: 45px 1.15fr 1fr 36px;
  gap: 20px;
  align-items: center;
  min-height: 100px;
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
}
.service-item summary::-webkit-details-marker {
  display: none;
}
.service-number {
  font-size: 12px;
  color: var(--teal-ink);
}
.service-title {
  font-size: 25px;
  letter-spacing: -0.035em;
  font-weight: 500;
  line-height: 1.3;
}
.service-summary {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.service-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 23px;
  font-weight: 300;
  transition: transform 0.2s;
}
.service-item[open] .service-toggle {
  transform: rotate(45deg);
  background: var(--mist);
}
.service-details {
  padding: 0 76px 32px 65px;
  max-width: 870px;
}
.service-details > p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 19px 0 13px;
}
.service-tags > span {
  font-size: 11px;
  border: 1px solid var(--line);
  padding: 5px 10px;
  background: var(--mist);
  border-radius: 2px;
}
/* The company foundation uses the supplied photo, not unrelated stock imagery. */
.company-section {
  background: var(--mist);
  padding: 70px 0;
}
.company-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.35fr;
  gap: 88px;
  align-items: center;
}
.company-image {
  height: 365px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}
.company-image > span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.09em;
  padding: 14px 20px;
}
.company-copy .eyebrow {
  margin-bottom: 22px;
}
.company-copy h2 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 22px;
}
.company-copy > p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 13px;
}
.company-facts {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.35fr;
  gap: 24px;
  border-top: 1px solid #cad5de;
  margin-top: 26px;
  padding-top: 22px;
}
.company-facts > div > span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.065em;
  color: var(--muted);
  margin-bottom: 9px;
}
.company-facts strong {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
}
/* Contact is the working application, not a decorative form. */
.contact-section {
  background: var(--navy);
  color: var(--cream);
  padding-block: 90px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 105px;
  align-items: start;
}
.contact-copy {
  padding-top: 16px;
}
.contact-copy .eyebrow {
  color: var(--gold);
  margin-bottom: 32px;
}
.contact-copy h2 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 28px;
}
.contact-copy > p:not(.eyebrow):not(.small-print) {
  font-size: 23px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}
.contact-copy > p.contact-description {
  font-size: 16px !important;
  line-height: 1.8 !important;
  letter-spacing: 0 !important;
  color: #d3dfeb;
  max-width: 350px;
  margin-top: 22px;
}
.email-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 19px;
  margin-top: 32px;
  padding-block: 10px;
  border-bottom: 1px solid #7690aa;
  max-width: 100%;
}
.email-link:hover {
  color: var(--gold);
}
.contact-audiences {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: #d3dfeb;
  margin-top: 44px;
}
.small-print {
  font-size: 12px;
  color: #c4d3e2;
  line-height: 1.8;
  max-width: 320px;
  margin-top: 38px;
}
.form-card {
  background: var(--paper);
  color: var(--navy);
  border: 1px solid #d8e0e6;
  border-radius: 4px;
  padding: 34px 38px;
  min-width: 0;
}
.form-card h3 {
  font-size: 27px;
  line-height: 1.2;
}
.form-intro {
  font-size: 13px;
  color: var(--muted);
  margin: 10px 0 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.field {
  margin-bottom: 18px;
  min-width: 0;
}
.field label {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 8px;
}
.optional {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  border: 1px solid #b7c6d2;
  background: #fff;
  color: var(--navy);
  border-radius: 3px;
  padding: 11px 12px;
  font-size: 14px;
  line-height: 1.5;
  min-height: 45px;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.field textarea {
  resize: vertical;
  min-height: 114px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #68798a;
  opacity: 1;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}
.field [aria-invalid="true"] {
  border-color: var(--error);
}
.field-error {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  color: var(--error);
  margin-top: 5px;
}
.field-error:empty {
  display: none;
}
.field-hint {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 13px;
  margin-top: 7px;
  font-size: 10px;
  line-height: 1.6;
  color: var(--muted);
}
#message-count {
  white-space: nowrap;
}
.consent-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 18px;
}
.consent-field input {
  width: 17px;
  height: 17px;
  accent-color: var(--teal-ink);
  flex-shrink: 0;
  margin: 3px 0 0;
}
.consent-field label {
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
}
.consent-field a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--navy);
}
.form-status {
  font-size: 13px;
  line-height: 1.7;
  color: var(--error);
  margin-block: 15px;
  overflow-wrap: anywhere;
}
.form-status:empty {
  margin: 0;
}
.submit-button {
  width: 100%;
  margin-top: 22px;
}
.form-footer {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
  margin-top: 13px;
}
.noscript-note {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 16px;
}
.noscript-note a {
  text-decoration: underline;
}
.form-success {
  padding: 36px 0;
  min-height: 450px;
}
.success-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: var(--mist);
  color: var(--teal-ink);
  font-size: 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
  margin-bottom: 28px;
}
.form-success .eyebrow {
  margin-bottom: 18px;
}
.form-success h3 {
  font-size: 42px;
  margin-bottom: 22px;
}
.form-success > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.form-success .reference-text {
  font-size: 12px !important;
  background: var(--mist);
  padding: 12px;
  margin: 23px 0 12px;
  overflow-wrap: anywhere;
}
.form-success .button {
  margin-top: 28px;
  display: flex;
}
.form-success .text-link {
  margin-top: 6px;
}
/* Footer and privacy page share the same brand language. */
.site-footer {
  padding: 64px 0 28px;
  background: #fff;
  color: var(--navy);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr 1fr;
  gap: 44px;
  padding-bottom: 45px;
}
.footer-brand > span {
  font-size: 44px;
}
.footer-positioning {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 20px;
  color: var(--muted);
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.65;
}
.footer-column h2 {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  margin: 3px 0 10px;
}
.footer-column a,
.footer-column > span {
  color: var(--muted);
}
.footer-column a:hover {
  color: var(--teal-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.back-to-top {
  display: inline-flex;
  gap: 25px;
  margin-top: 10px;
  min-height: 38px;
  align-items: center;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 23px;
  font-size: 11px;
  color: var(--muted);
}
.footer-bottom > div {
  display: flex;
  gap: 20px;
}
.footer-bottom a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
}
.footer-disclosure {
  font-size: 10px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 18px;
  max-width: 840px;
}
.legal-page {
  max-width: 880px;
  padding-top: 76px;
  padding-bottom: 80px;
}
.legal-page > .eyebrow {
  margin-bottom: 24px;
}
.legal-page h1 {
  font-size: 55px;
  line-height: 1.12;
  margin-bottom: 22px;
}
.legal-meta {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 26px;
}
.legal-intro {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.legal-page h2 {
  font-size: 23px;
  line-height: 1.3;
  margin: 33px 0 13px;
}
.legal-page > p:not(.legal-intro):not(.eyebrow):not(.legal-meta) {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
}
.legal-page p a {
  color: var(--teal-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-page > .button {
  margin-top: 40px;
}
@media (min-width: 1600px) {
  .hero-lead {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .hero h1 {
    font-size: 88px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 72px);
  }
  .site-header nav {
    gap: 20px;
  }
  .hero-lead {
    grid-template-columns: 1.7fr 1fr;
    gap: 40px;
  }
  .hero h1 {
    font-size: 62px;
  }
  .hero-description > p {
    font-size: 15px;
  }
  .hero-product-index {
    grid-template-columns: 0.55fr 1.3fr 1.3fr;
    gap: 22px;
  }
  .hero-product-link {
    padding-left: 22px;
  }
  .hero-product-name {
    font-size: 18px;
  }
  .hero-product-description {
    font-size: 11px;
  }
  .section-heading {
    gap: 55px;
  }
  .product-panel {
    gap: 40px;
    grid-template-columns: 0.9fr 1.2fr;
  }
  .product-copy h3 {
    font-size: 33px;
  }
  .workspace-content {
    padding: 25px 23px 22px;
  }
  .workspace-bar {
    padding: 16px 20px;
  }
  .workspace-heading h4 {
    font-size: 23px;
  }
  .development-flow {
    gap: 22px;
  }
  .company-grid {
    gap: 50px;
  }
  .company-copy h2 {
    font-size: 37px;
  }
  .company-facts {
    gap: 17px;
  }
  .contact-grid {
    gap: 58px;
  }
  .form-card {
    padding: 30px;
  }
  .contact-copy h2 {
    font-size: 50px;
  }
  .footer-top {
    gap: 28px;
  }
  .service-title {
    font-size: 23px;
  }
}
@media (max-width: 950px) {
  .site-header nav {
    gap: 15px;
    font-size: 12px;
  }
  .brand > span {
    font-size: 31px;
  }
  .brand-descriptor {
    font-size: 7px;
  }
  .brand > img {
    width: 27px;
    height: 40px;
  }
  .hero h1 {
    font-size: 55px;
  }
  .hero-lead {
    gap: 30px;
  }
  .hero-product-index {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .index-caption {
    grid-column: 1/-1;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }
  .index-caption p {
    margin: 0;
    font-size: 11px;
  }
  .index-caption br {
    display: none;
  }
  .hero-product-link {
    padding-left: 0;
    border-left: 0;
  }
  .product-copy h3 {
    font-size: 30px;
  }
  .product-panel {
    gap: 30px;
  }
  .workspace-bar {
    flex-wrap: wrap;
    gap: 8px;
  }
  .workspace-heading h4 {
    font-size: 22px;
  }
  .section-heading {
    gap: 35px;
  }
  .section-heading > p {
    font-size: 15px;
  }
  .development-flow {
    grid-template-columns: 1fr 1fr;
    gap: 36px 30px;
  }
  .service-summary {
    font-size: 12px;
  }
  .service-item summary {
    grid-template-columns: 28px 1.1fr 1fr 34px;
    gap: 15px;
  }
  .service-details {
    padding-left: 43px;
  }
  .company-grid {
    grid-template-columns: 0.8fr 1.3fr;
    gap: 35px;
  }
  .company-copy h2 {
    font-size: 32px;
  }
  .company-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .company-facts {
    grid-template-columns: 1fr 1fr;
  }
  .company-facts > div:last-child {
    grid-column: 1/-1;
  }
  .company-image {
    height: 400px;
  }
  .contact-grid {
    gap: 35px;
    grid-template-columns: 0.75fr 1.25fr;
  }
  .contact-copy h2 {
    font-size: 44px;
  }
  .contact-copy > p:not(.eyebrow):not(.small-print) {
    font-size: 20px;
  }
  .email-link {
    font-size: 16px;
    gap: 15px;
  }
  .form-card {
    padding: 28px 25px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}
@media (max-width: 800px) {
  html {
    scroll-padding-top: 92px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 64px;
  }
  .nav-wrap {
    min-height: 74px;
    gap: 12px;
  }
  .brand > span {
    font-size: 32px;
  }
  .brand-descriptor {
    font-size: 7px;
  }
  .brand > img {
    width: 27px;
    height: 39px;
  }
  .menu-toggle {
    display: flex;
  }
  .site-header nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 20px #0729540d;
    padding: 18px 20px 24px;
    align-items: stretch;
    gap: 0;
    flex-direction: column;
    font-size: 15px;
  }
  .site-header nav.is-open {
    display: flex;
  }
  .site-header nav > a:not(.button) {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }
  .site-header nav > .button {
    margin-top: 16px;
    align-self: flex-start;
  }
  .hero {
    padding: 28px 0 30px;
  }
  .hero-topline {
    align-items: flex-start;
  }
  .hero-topline .eyebrow {
    font-size: 10px;
  }
  .hero-topline > a {
    font-size: 10px;
  }
  .hero-topline > a span {
    margin-left: 5px;
  }
  .hero-lead {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 48px 0 43px;
  }
  .hero h1 {
    font-size: clamp(42px, 7.8vw, 65px);
    line-height: 1.08;
    letter-spacing: -0.055em;
  }
  .hero-description {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 26px;
  }
  .hero-description > p {
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
    max-width: 420px;
  }
  .hero-description > .button {
    white-space: nowrap;
    padding-inline: 18px;
    gap: 24px;
  }
  .hero-product-index {
    gap: 25px;
    padding-top: 24px;
  }
  .index-caption {
    gap: 20px;
  }
  .hero-product-name {
    font-size: 19px;
  }
  .hero-product-description {
    font-size: 12px;
    padding-right: 0;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 32px;
  }
  .section-heading .eyebrow {
    margin-bottom: 19px;
  }
  .section-heading h2 {
    font-size: 38px;
  }
  .section-heading > p {
    max-width: 600px;
    padding: 0;
    font-size: 15px;
    line-height: 1.8;
  }
  .product-tabs {
    margin-bottom: 30px;
  }
  .product-tabs > button,
  .product-tabs > button + button {
    font-size: 15px;
    gap: 9px;
    padding: 15px 15px 15px 0;
    min-height: 72px;
  }
  .product-tabs > button + button {
    padding-left: 15px;
  }
  .tab-arrow {
    font-size: 20px;
  }
  .product-panel {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .product-copy h3 {
    font-size: 36px;
  }
  .product-intro {
    max-width: 600px;
  }
  .capability-list {
    margin: 22px 0 27px;
  }
  .capability-list li {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 24px;
    padding: 14px 0;
  }
  .capability-list strong {
    margin: 0;
  }
  .availability-note {
    max-width: 480px;
  }
  .workspace-bar {
    padding: 17px 24px;
  }
  .workspace-content {
    padding: 30px;
  }
  .workspace-heading h4 {
    font-size: 27px;
  }
  .preview-label {
    font-size: 9px;
  }
  .workspace-brand {
    font-size: 13px;
  }
  .roadmap-list strong {
    font-size: 14px;
  }
  .roadmap-list p {
    font-size: 12px;
  }
  .sample-question > p {
    font-size: 14px;
  }
  .development-flow {
    margin-top: 33px;
  }
  .development-flow h3 {
    font-size: 22px;
  }
  .development-flow p {
    font-size: 14px;
  }
  .approach-footnote {
    gap: 20px;
    margin-top: 35px;
    align-items: flex-start;
  }
  .approach-footnote > p {
    font-size: 14px;
  }
  .service-item summary {
    grid-template-columns: 28px 1fr 34px;
    gap: 12px;
    min-height: 90px;
  }
  .service-title {
    font-size: 24px;
  }
  .service-summary {
    grid-column: 2;
    grid-row: 2;
    font-size: 12px;
    margin-top: -5px;
  }
  .service-toggle {
    grid-column: 3;
    grid-row: 1 / span 2;
  }
  .service-details {
    padding: 0 25px 26px 40px;
  }
  .service-details > p {
    font-size: 14px;
  }
  .company-section {
    padding: 55px 0;
  }
  .company-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 30px;
  }
  .company-image {
    height: 360px;
  }
  .company-copy h2 {
    font-size: 30px;
  }
  .company-facts {
    gap: 13px;
  }
  .company-facts strong {
    font-size: 16px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-copy {
    padding: 0;
  }
  .contact-copy .eyebrow {
    margin-bottom: 23px;
  }
  .contact-copy h2 {
    font-size: 47px;
    margin-bottom: 24px;
  }
  .contact-copy > p.contact-description {
    max-width: 500px;
  }
  .contact-audiences {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-top: 22px;
    font-size: 12px;
  }
  .email-link {
    margin-top: 20px;
    font-size: 20px;
  }
  .small-print {
    max-width: 560px;
    margin-top: 23px;
  }
  .form-card {
    padding: 32px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }
  .consent-field label {
    font-size: 12px;
  }
  .form-footer {
    font-size: 11px;
  }
  .field-hint {
    font-size: 11px;
  }
  .site-footer {
    padding-top: 45px;
  }
  .footer-top {
    gap: 32px;
    padding-bottom: 32px;
  }
  .footer-column {
    font-size: 13px;
  }
  .footer-column h2 {
    font-size: 13px;
  }
  .legal-page {
    padding-block: 55px;
  }
  .legal-page h1 {
    font-size: 44px;
  }
  .legal-intro {
    font-size: 18px;
  }
}
@media (max-width: 560px) {
  .hero-topline > a {
    display: none;
  }
  .hero h1 {
    font-size: clamp(38px, 9.8vw, 54px);
  }
  .hero-lead {
    padding-top: 40px;
    padding-bottom: 37px;
    gap: 27px;
  }
  .hero-description {
    display: block;
  }
  .hero-description > p {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .hero-description > .button {
    min-height: 48px;
    font-size: 13px;
    gap: 34px;
  }
  .hero-product-index {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .index-caption {
    display: block;
    padding-bottom: 16px;
  }
  .index-caption p {
    display: none;
  }
  .hero-product-link {
    padding: 21px 0 22px;
    border-top: 1px solid #41607e;
  }
  .hero-product-link:last-child {
    padding-bottom: 0;
  }
  .hero-product-name {
    font-size: 21px;
    margin-top: 11px;
  }
  .hero-product-description {
    font-size: 12px;
    margin-top: 6px;
  }
  .state-label {
    font-size: 9px;
  }
  .hero {
    padding-bottom: 28px;
  }
  .section-heading h2 {
    font-size: 35px;
  }
  .section-heading > p {
    font-size: 14px;
  }
  .product-tabs > button,
  .product-tabs > button + button {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 7px;
    align-content: start;
    font-size: 13px;
    min-height: 78px;
    line-height: 1.5;
    padding: 14px 12px 12px 0;
  }
  .product-tabs > button + button {
    padding-left: 12px;
  }
  .tab-index {
    padding-top: 2px;
    font-size: 10px;
  }
  .tab-arrow {
    display: none;
  }
  .product-copy h3 {
    font-size: 33px;
  }
  .capability-list li {
    display: block;
  }
  .capability-list strong {
    margin-bottom: 5px;
  }
  .product-intro {
    font-size: 14px;
  }
  .workspace-bar {
    padding: 14px 16px;
    flex-wrap: nowrap;
    gap: 7px;
  }
  .workspace-brand {
    font-size: 11px;
    gap: 7px;
  }
  .workspace-mark {
    font-size: 24px;
  }
  .preview-label {
    font-size: 7px;
    padding: 4px 5px;
  }
  .workspace-content {
    padding: 24px 19px 21px;
  }
  .workspace-heading h4 {
    font-size: 23px;
    line-height: 1.3;
  }
  .workspace-heading > p:last-child {
    font-size: 11px;
  }
  .micro-label {
    font-size: 9px;
  }
  .sample-question {
    padding: 14px;
  }
  .sample-question > p {
    font-size: 12px;
  }
  .roadmap-list > li {
    gap: 13px;
    padding: 15px 0;
  }
  .roadmap-list strong {
    font-size: 12px;
  }
  .roadmap-list p {
    font-size: 11px;
  }
  .workspace-note {
    font-size: 10px;
  }
  .preview-disclaimer {
    font-size: 9px;
    padding-inline: 12px;
  }
  .curriculum-list > li {
    gap: 14px;
  }
  .curriculum-list strong {
    font-size: 13px;
  }
  .curriculum-list p {
    font-size: 11px;
  }
  .learning-output {
    padding: 20px;
  }
  .learning-output > strong {
    font-size: 22px;
  }
  .development-flow {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .development-flow > li {
    padding-top: 12px;
  }
  .development-flow h3 {
    margin: 15px 0 9px;
    font-size: 23px;
  }
  .development-flow p {
    font-size: 14px;
  }
  .approach-footnote {
    display: block;
    margin-top: 31px;
    padding-top: 22px;
  }
  .approach-footnote > p {
    margin-top: 10px;
  }
  .service-item summary {
    grid-template-columns: 21px 1fr 30px;
    gap: 10px;
    min-height: 96px;
  }
  .service-title {
    font-size: 22px;
  }
  .service-summary {
    font-size: 11px;
  }
  .service-toggle {
    width: 29px;
    height: 29px;
    font-size: 21px;
  }
  .service-number {
    font-size: 10px;
  }
  .service-details {
    padding-left: 31px;
    padding-right: 6px;
  }
  .service-tags {
    gap: 6px;
  }
  .service-tags > span {
    font-size: 10px;
    padding: 5px 8px;
  }
  .service-details .text-link {
    font-size: 13px;
  }
  .company-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .company-image {
    height: 275px;
  }
  .company-image img {
    object-position: center 39%;
  }
  .company-copy h2 {
    font-size: 34px;
  }
  .company-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .company-facts {
    grid-template-columns: 0.75fr 1fr;
    gap: 18px;
  }
  .company-facts > div:last-child {
    grid-column: 1/-1;
  }
  .company-facts strong {
    font-size: 20px;
  }
  .contact-copy h2 {
    font-size: 46px;
  }
  .contact-grid {
    gap: 33px;
  }
  .form-card {
    padding: 25px 20px;
  }
  .form-card h3 {
    font-size: 26px;
  }
  .form-intro {
    font-size: 12px;
    margin-bottom: 25px;
  }
  .form-row {
    gap: 12px;
  }
  .field {
    margin-bottom: 16px;
  }
  .field label {
    font-size: 11px;
  }
  .optional {
    font-size: 10px;
  }
  .field input,
  .field select,
  .field textarea {
    padding: 10px;
    font-size: 16px;
  }
  .field-hint {
    font-size: 9px;
    gap: 10px;
  }
  .consent-field label {
    font-size: 11px;
  }
  .submit-button {
    font-size: 13px;
    min-height: 48px;
  }
  .form-footer {
    font-size: 10px;
  }
  .form-success h3 {
    font-size: 35px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px 18px;
  }
  .footer-top > div:first-child {
    grid-column: 1/-1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .footer-positioning {
    font-size: 12px;
    margin: 0;
  }
  .footer-column:last-child {
    grid-column: 1/-1;
  }
  .footer-column {
    font-size: 12px;
    gap: 10px;
  }
  .footer-column h2 {
    font-size: 12px;
  }
  .footer-brand > span {
    font-size: 40px;
  }
  .footer-bottom {
    align-items: flex-start;
    font-size: 10px;
    gap: 20px;
  }
  .footer-bottom > span {
    max-width: 220px;
  }
  .footer-disclosure {
    font-size: 9px;
  }
  .legal-page h1 {
    font-size: 37px;
  }
  .legal-intro {
    font-size: 17px;
  }
  .legal-page > p:not(.legal-intro):not(.eyebrow):not(.legal-meta) {
    font-size: 14px;
  }
  .legal-page h2 {
    font-size: 22px;
  }
  .legal-page a {
    overflow-wrap: anywhere;
  }
  .legal-page + .site-footer .footer-bottom {
    flex-direction: column;
  }
  .site-header .nav-wrap > .text-link {
    font-size: 12px;
    gap: 8px;
  }
}
@media (max-width: 360px) {
  .container {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero-product-name {
    font-size: 19px;
  }
  .hero-description > p {
    font-size: 14px;
  }
  .section-heading h2 {
    font-size: 32px;
  }
  .product-tabs > button,
  .product-tabs > button + button {
    font-size: 12px;
    grid-template-columns: 14px 1fr;
    gap: 5px;
  }
  .workspace-brand {
    font-size: 10px;
  }
  .workspace-bar {
    padding-inline: 12px;
  }
  .workspace-content {
    padding-inline: 16px;
  }
  .preview-label {
    font-size: 6px;
  }
  .workspace-heading h4 {
    font-size: 22px;
  }
  .service-title {
    font-size: 20px;
  }
  .form-card {
    padding-inline: 16px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .field-hint {
    display: block;
  }
  #message-count {
    display: block;
    margin-top: 4px;
  }
  .contact-copy h2 {
    font-size: 42px;
  }
  .email-link {
    font-size: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .site-header,
  .menu-toggle,
  .hero-actions,
  .contact-section,
  .skip-link {
    display: none !important;
  }
  .hero,
  .approach-section,
  .company-section,
  .site-footer {
    background: #fff !important;
    color: #072954 !important;
  }
  .hero h1 > span,
  .hero p,
  .hero a,
  .hero span {
    color: #072954 !important;
  }
  .container {
    width: 100%;
  }
  .section {
    padding-block: 30px;
  }
  .product-panel {
    break-inside: avoid;
  }
  .hero {
    padding: 20px 0;
  }
  .hero-lead {
    padding: 20px 0;
  }
  .hero h1 {
    font-size: 40px;
  }
  .footer-top {
    display: none;
  }
  body {
    font-size: 12pt;
  }
}
