
/* StarFoundation light-first design system: tokens, navigation, components, pages, responsive. */
:root {
  --white:#fff;
  --soft:#f7f9fc;
  --warm:#fafaf8;
  --navy:#182a49;
  --slate:#61708a;
  --blue:#315ce8;
  --blue-dark:#2448bf;
  --violet:#8060bd;
  --line:#e3e8f1;
  --radius:14px;
  --shadow:0 12px 40px #1e36670e;
  --space-1:8px;
  --space-2:16px;
  --space-3:24px;
  --space-4:32px;
  --space-5:48px;
  --space-6:72px;
  --space-7:96px;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:116px;
}
body {
  margin:0;
  background:white;
  color:var(--navy);
  font-family:"Segoe UI",Inter,-apple-system,BlinkMacSystemFont,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
}
img {
  max-width:100%;
  height:auto;
}
a {
  color:inherit;
  text-decoration:none;
}
p {
  color:var(--slate);
  font-size:15px;
  line-height:1.8;
  margin:0 0 20px;
}
h1,h2,h3 {
  color:var(--navy);
  font-weight:650;
  letter-spacing:-.035em;
  line-height:1.18;
}
h2 {
  font-size:clamp(30px,3vw,40px);
  margin:0 0 22px;
}
h3 {
  font-size:22px;
  margin:0 0 15px;
  letter-spacing:-.025em;
}
button,input,select,textarea {
  font:inherit;
}
a,button {
  -webkit-tap-highlight-color:transparent;
}
a:focus-visible,button:focus-visible,summary:focus-visible,[tabindex]:focus-visible {
  outline:3px solid #8d9de5;
  outline-offset:5px;
  border-radius:4px;
}
::selection {
  background:#dfe7ff;
  color:var(--navy);
}
.container {
  max-width:1260px;
  padding-left:32px;
  padding-right:32px;
}
.icon {
  width:22px;
  height:22px;
  display:inline-block;
  flex:0 0 auto;
  vertical-align:middle;
  transition:transform .2s ease,color .2s ease;
}
.skip-link {
  position:fixed;
  top:-80px;
  left:16px;
  z-index:1000;
  background:var(--navy);
  color:white;
  padding:12px 20px;
}
.skip-link:focus {
  top:12px;
}

/* White header and disclosure navigation */
.site-header {
  position:sticky;
  top:0;
  z-index:100;
  background:#fffffff7;
  border-bottom:1px solid #edf0f5;
  transition:box-shadow .25s;
}
.site-header.scrolled {
  box-shadow:0 6px 28px #182a4910;
}
.header-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:90px;
  gap:24px;
}
.brand {
  display:inline-flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}
.brand strong {
  display:block;
  color:var(--navy);
  font-size:16px;
  font-weight:750;
  letter-spacing:.035em;
}
.brand small {
  display:block;
  margin-top:4px;
  font-size:8px;
  color:var(--slate);
  letter-spacing:.06em;
}
.navigation {
  display:flex;
  align-items:center;
  gap:23px;
}
.nav-list {
  display:flex;
  align-items:center;
  gap:4px;
  padding:0;
  margin:0;
  list-style:none;
}
.nav-list>li {
  position:relative;
}
.nav-link,.nav-group summary {
  display:flex;
  align-items:center;
  gap:7px;
  padding:13px 10px;
  font-size:12px;
  font-weight:550;
  color:#53617a;
  cursor:pointer;
  border-radius:7px;
  transition:color .2s,background .2s;
  white-space:nowrap;
  position:relative;
}
.nav-link .icon,.nav-group summary>.icon:first-child {
  width:16px;
  height:16px;
}
.nav-group summary>.icon:last-child {
  width:12px;
  height:12px;
}
.nav-group summary {
  list-style:none;
}
.nav-group summary::-webkit-details-marker {
  display:none;
}
.nav-link:after,.nav-group summary:after {
  content:"";
  position:absolute;
  bottom:5px;
  left:11px;
  right:11px;
  height:2px;
  background:var(--blue);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .25s;
}
.nav-link.active,.nav-group.active summary,.nav-group[open] summary {
  color:var(--blue);
  background:#f2f5ff;
}
.nav-link.active:after,.nav-group.active summary:after,.nav-link:hover:after {
  transform:scaleX(1);
}
.nav-link:hover,.nav-group summary:hover {
  color:var(--blue);
  background:#f6f8fe;
}
.nav-link:hover .icon,.nav-group summary:hover>.icon:first-child {
  transform:translateY(-2px);
}
.nav-group[open] summary>.icon:last-child {
  transform:rotate(180deg);
}
.nav-dropdown {
  position:absolute;
  top:calc(100% + 16px);
  left:0;
  width:282px;
  border:1px solid var(--line);
  border-radius:12px;
  background:white;
  padding:9px;
  box-shadow:0 20px 50px #182a491c;
  animation:dropdown-in .18s ease both;
}
.nav-dropdown a {
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px;
  font-size:12px;
  color:#4d5f7e;
  border-radius:6px;
  transition:background .2s,color .2s;
}
.nav-dropdown a>.icon {
  width:18px;
  height:18px;
  color:#6c7da5;
}
.nav-dropdown a:hover,.nav-dropdown a:focus-visible {
  background:#f2f5fc;
  color:var(--blue);
}
.nav-dropdown a:hover>.icon {
  transform:translateX(2px);
  color:var(--blue);
}
.nav-dropdown .dropdown-overview {
  justify-content:space-between;
  font-weight:650;
  color:var(--blue);
  border-bottom:1px solid var(--line);
  border-radius:0;
  margin-bottom:5px;
  padding-bottom:16px;
}
.menu-toggle {
  display:none;
}

/* Shared components */
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  padding:15px 22px;
  border:1px solid var(--blue);
  border-radius:7px;
  color:white;
  background:var(--blue);
  font-size:13px;
  font-weight:600;
  line-height:1.5;
  transition:background .2s,border-color .2s,box-shadow .2s,transform .2s;
  max-width:100%;
}
.button>.icon {
  width:18px;
  height:18px;
}
.button:hover {
  color:white;
  background:var(--blue-dark);
  border-color:var(--blue-dark);
  box-shadow:0 8px 20px #315ce821;
  transform:translateY(-2px);
}
.button:hover .icon,.text-link:hover .icon {
  transform:translateX(4px);
}
.button-secondary,.button-outline,.button-light {
  background:white;
  border-color:#dce3ef;
  color:var(--navy);
}
.button-secondary:hover,.button-outline:hover,.button-light:hover {
  background:#f5f7ff;
  border-color:#bdcaef;
  color:var(--blue);
}
.button-small {
  padding:12px 16px;
  font-size:12px;
  gap:12px;
  white-space:nowrap;
}
.button-row {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.text-link {
  display:inline-flex;
  align-items:center;
  gap:20px;
  color:var(--blue);
  font-size:13px;
  font-weight:650;
  padding:8px 0;
}
.text-link .icon {
  width:18px;
  height:18px;
}
.text-link:hover {
  color:var(--blue-dark);
}
.eyebrow {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:10px;
  line-height:1.7;
  letter-spacing:.14em;
  font-weight:700;
  color:#566b91;
  margin:0 0 19px;
}
.eyebrow-line {
  width:25px;
  height:2px;
  background:var(--blue);
}
.section {
  padding:var(--space-7) 0;
}
.soft-section,.muted-section {
  background:var(--soft);
}
.section-heading {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:40px;
  margin-bottom:43px;
}
.section-heading h2 {
  margin-bottom:0;
}
.section-heading>p {
  max-width:390px;
  margin-bottom:2px;
  font-size:14px;
}
.section-intro {
  font-size:16px;
  max-width:520px;
}
.split-layout {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  align-items:center;
  gap:80px;
}
.icon-tile {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:50px;
  height:50px;
  border-radius:12px;
  background:#edf3ff;
  color:var(--blue);
  flex-shrink:0;
}
.icon-tile .icon {
  width:25px;
  height:25px;
}
.division-card,.service-card,.career-card,.audience-panel {
  background:white;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:0 5px 20px #182a4903;
  transition:transform .25s,box-shadow .25s,border-color .25s;
}
.division-card:hover,.service-card:hover,.career-card:hover {
  transform:translateY(-4px);
  border-color:#c7d3f3;
  box-shadow:var(--shadow);
}
.division-card:hover .icon-tile .icon,.service-card:hover .icon-tile .icon,.career-card:hover .icon-tile .icon {
  transform:translateY(-2px) rotate(-4deg);
}

/* Homepage */
.home-hero {
  background:linear-gradient(110deg,#fff 35%,#f7faff);
  position:relative;
}
.hero-grid {
  display:grid;
  grid-template-columns:1.05fr 1fr;
  align-items:center;
  gap:25px;
  padding-top:76px;
  padding-bottom:94px;
}
.hero-copy h1 {
  font-size:clamp(40px,4vw,58px);
  line-height:1.12;
  letter-spacing:-.045em;
  margin-bottom:26px;
}
.hero-copy h1>span {
  color:var(--blue);
}
.hero-description {
  max-width:470px;
  font-size:15px;
  margin-bottom:29px;
}
.hero-note {
  font-size:11px;
  color:#61708a;
  margin:23px 0 0;
}
.hero-art {
  min-width:0;
}
.hero-art img {
  width:100%;
  display:block;
}
.category-wrap {
  position:relative;
  z-index:2;
  margin-top:-35px;
  margin-bottom:-35px;
}
.category-bar {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  padding:27px 18px;
  background:white;
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:var(--shadow);
}
.category-bar a {
  display:flex;
  align-items:center;
  gap:15px;
  padding:0 23px;
  border-right:1px solid var(--line);
}
.category-bar a:last-child {
  border-right:0;
}
.category-bar strong {
  display:block;
  font-size:14px;
  font-weight:650;
  margin-bottom:5px;
}
.category-bar small {
  display:block;
  color:var(--slate);
  font-size:11px;
}
.category-bar a>.icon {
  margin-left:auto;
  width:17px;
  color:#8695b5;
}
.category-bar a:hover>.icon {
  transform:translateX(3px);
  color:var(--blue);
}
.category-bar .icon-tile {
  width:42px;
  height:42px;
  border-radius:10px;
}
.category-bar .icon-tile .icon {
  width:21px;
}
#divisions {
  padding-top:125px;
}
.division-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}
.division-card {
  padding:32px;
  display:flex;
  flex-direction:column;
}
.card-top {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:31px;
}
.card-number {
  color:#a8b3c6;
  font-size:13px;
  font-weight:500;
}
.card-kicker {
  font-size:9px;
  letter-spacing:.15em;
  font-weight:700;
  color:#5d7197;
  margin-bottom:10px;
}
.division-card h3 {
  font-size:25px;
}
.division-card>p:not(.card-kicker) {
  font-size:13px;
}
.division-card:nth-child(2) .icon-tile {
  color:var(--violet);
  background:#f2edfc;
}
.highlight-list {
  padding:0;
  margin:6px 0 26px;
  list-style:none;
}
.highlight-list li {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:11px;
  color:#596b87;
  padding:6px 0;
}
.highlight-list .icon {
  width:14px;
  height:14px;
  color:#7c8eb1;
}
.division-card>.text-link {
  border-top:1px solid var(--line);
  padding-top:22px;
  margin-top:auto;
  justify-content:space-between;
}
.technology-layout {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:105px;
  align-items:start;
}
.technology-intro>p {
  max-width:435px;
}
.technology-list article {
  display:flex;
  align-items:center;
  gap:18px;
  padding:24px 0;
  border-bottom:1px solid var(--line);
}
.technology-list article:first-child {
  padding-top:4px;
}
.technology-list article>.icon {
  color:var(--blue);
  width:24px;
}
.technology-list h3 {
  font-size:17px;
  letter-spacing:-.02em;
  margin:0 0 7px;
}
.technology-list p {
  font-size:12px;
  margin:0;
}
.technology-list article>span {
  margin-left:auto;
  color:#98a5bc;
  font-size:10px;
}
.code-visual {
  margin-top:34px;
  border:1px solid #dfe6f3;
  background:#f8faff;
  border-radius:12px;
  padding:18px;
  max-width:440px;
}
.visual-toolbar {
  display:flex;
  gap:5px;
  align-items:center;
  padding-bottom:16px;
  border-bottom:1px solid var(--line);
}
.visual-toolbar>i {
  width:5px;
  height:5px;
  border-radius:50%;
  background:#c8d3e9;
}
.visual-toolbar>span {
  margin-left:auto;
  color:#8190ac;
  font-size:7px;
  letter-spacing:.12em;
}
.visual-canvas {
  display:flex;
  gap:18px;
  padding:20px 0;
}
.visual-sidebar {
  width:50px;
  background:repeating-linear-gradient(to bottom,#dee6f7 0,#dee6f7 5px,transparent 5px,transparent 17px);
}
.visual-content {
  flex:1;
}
.visual-content>b {
  display:block;
  height:9px;
  width:50%;
  background:#7b97e9;
  border-radius:3px;
  margin-bottom:12px;
}
.visual-content>span {
  display:block;
  height:4px;
  width:85%;
  background:#dde5f4;
  margin-top:6px;
}
.visual-content>span:nth-child(3) {
  width:65%;
}
.visual-content>div {
  display:flex;
  gap:10px;
  margin-top:18px;
}
.visual-content i {
  flex:1;
  height:47px;
  background:#e7edfb;
  border:1px solid #dbe4f7;
  border-radius:5px;
}
.visual-content i:nth-child(2) {
  background:#eeeafa;
  border-color:#e4ddf5;
}
.visual-label {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:10px;
  color:#5d7197;
}
.visual-label .icon {
  width:16px;
  height:16px;
}
.process-block {
  margin-top:72px;
  border-top:1px solid var(--line);
  padding-top:38px;
}
.process-heading {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-bottom:30px;
}
.process-heading h2 {
  font-size:20px;
  letter-spacing:-.02em;
  margin:0;
}
.process-heading .eyebrow {
  font-size:9px;
  margin:0;
}
.process-grid {
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  list-style:none;
  padding:0;
  margin:0;
  gap:20px;
}
.process-grid li {
  position:relative;
}
.process-grid li:after {
  content:"";
  position:absolute;
  top:17px;
  left:50px;
  right:0;
  height:1px;
  background:var(--line);
}
.process-grid li:last-child:after {
  display:none;
}
.process-grid .icon {
  width:34px;
  height:34px;
  padding:7px;
  border:1px solid var(--line);
  border-radius:8px;
  color:var(--blue);
  background:white;
  margin-bottom:16px;
}
.process-grid h3 {
  font-size:13px;
  letter-spacing:0;
  margin-bottom:7px;
}
.process-grid p {
  font-size:10px;
  margin:0;
}
.education-section {
  background:linear-gradient(115deg,#f4f7fd,#faf8fe);
}
.education-paths {
  display:grid;
  gap:12px;
}
.education-paths a {
  display:flex;
  align-items:center;
  gap:16px;
  padding:20px 24px;
  border:1px solid #e4e5f1;
  border-radius:10px;
  background:#ffffffd9;
  font-size:14px;
  font-weight:550;
  transition:transform .2s,box-shadow .2s;
}
.education-paths a>.icon:first-child {
  color:var(--violet);
}
.education-paths a>.icon:last-child {
  margin-left:auto;
  width:17px;
  color:#8792ae;
}
.education-paths a:hover {
  transform:translateX(3px);
  box-shadow:var(--shadow);
}
.career-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
}
.career-card {
  padding:35px;
  position:relative;
}
.career-card .icon-tile {
  margin-bottom:28px;
}
.career-card:last-child {
  background:var(--warm);
}
.career-card h3 {
  font-size:24px;
}
.career-card p:not(.eyebrow) {
  max-width:430px;
  font-size:14px;
}
.quiet-note {
  font-size:11px;
  text-align:center;
  margin:24px 0 0;
}
.cta-section {
  padding:12px 0 78px;
}
.cta-panel {
  display:flex;
  align-items:center;
  gap:26px;
  padding:38px;
  border:1px solid #dfe5f4;
  border-radius:14px;
  background:linear-gradient(110deg,#f0f5ff,#f9f7fd);
}
.cta-icon {
  display:flex;
  align-items:center;
  justify-content:center;
  width:62px;
  height:62px;
  flex-shrink:0;
  border-radius:16px;
  border:1px solid #dce5f8;
  background:white;
  color:var(--blue);
}
.cta-icon .icon {
  width:28px;
  height:28px;
}
.cta-panel .eyebrow {
  font-size:8px;
  margin-bottom:9px;
}
.cta-panel h2 {
  font-size:26px;
  margin-bottom:10px;
}
.cta-panel p:last-child {
  font-size:12px;
  margin:0;
}
.cta-panel>.button {
  margin-left:auto;
  flex-shrink:0;
}

/* Inner pages */
.page-hero {
  padding:48px 0;
  background:linear-gradient(110deg,#fafbfd,#f3f6fc);
  border-bottom:1px solid #edf0f7;
}
.page-hero-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:45px;
}
.page-hero h1 {
  font-size:clamp(30px,3.2vw,43px);
  margin:0 0 16px;
}
.page-hero .eyebrow {
  margin-bottom:14px;
  font-size:9px;
}
.page-hero p:not(.eyebrow) {
  max-width:700px;
  font-size:14px;
  margin:0;
}
.page-emblem {
  position:relative;
  display:grid;
  place-items:center;
  height:116px;
  width:116px;
  margin:0 38px;
  border:1px solid #e0e7f5;
  border-radius:30px;
  background:#ffffffa8;
  flex-shrink:0;
  transform:rotate(-8deg);
}
.page-emblem:before {
  content:"";
  position:absolute;
  inset:-17px;
  border:1px dashed #dce3f3;
  border-radius:39px;
}
.page-emblem .icon {
  width:44px;
  height:44px;
  color:#8298d9;
  transform:rotate(8deg);
}
.service-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}
.service-card {
  padding:32px;
}
.service-card .icon-tile {
  margin-bottom:25px;
}
.service-card h3 {
  font-size:20px;
  line-height:1.3;
}
.service-card p {
  font-size:13px;
  margin-bottom:0;
}
.technology-services .service-card:first-child {
  grid-row:span 2;
  padding:38px;
  background:#f2f6ff;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.technology-services .service-card:first-child h3 {
  font-size:30px;
}
.technology-services .service-card:first-child .icon-tile {
  width:65px;
  height:65px;
  background:white;
  border:1px solid #dfe7f6;
}
.service-prompt {
  grid-column:1/-1;
  display:flex;
  align-items:center;
  gap:30px;
  background:var(--warm);
}
.service-prompt .eyebrow {
  margin:0;
}
.service-prompt h3 {
  margin:0;
}
.service-prompt .button {
  margin-left:auto;
}
.muted-section .process-block {
  margin:0;
  border:0;
  padding:0;
}
.advisor-cta {
  margin-top: 32px;
}
.info-note {
  padding:22px 26px;
  border-left:3px solid #a1b1df;
  background:#f5f7fc;
  border-radius:0 8px 8px 0;
  margin-top:35px;
  font-size:12px;
  color:#4e6286;
}
.info-note p {
  margin:7px 0 0;
  font-size:12px;
}
.topic-list>div {
  padding:22px 0;
  border-bottom:1px solid var(--line);
  font-size:17px;
}
.topic-list span {
  font-size:11px;
  color:#6f6196;
  margin-right:24px;
}
.audience-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}
.audience-panel {
  padding:38px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
.audience-panel>.icon-tile {
  margin-bottom:28px;
}
.audience-panel h2 {
  font-size:30px;
}
.audience-panel>p {
  font-size:14px;
}
.employer-panel {
  background:#faf9fc;
}
.feature-list {
  list-style:none;
  padding:0;
  margin:0 0 30px;
  width:100%;
}
.feature-list li {
  border-bottom:1px solid var(--line);
  padding:19px 0;
}
.feature-list strong {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  font-weight:600;
}
.feature-list strong .icon {
  width:18px;
  height:18px;
  color:#7188b7;
}
.feature-list span {
  display:block;
  margin-top:9px;
  color:var(--slate);
  font-size:12px;
  line-height:1.8;
}
.audience-panel>.button {
  margin-top:auto;
}
.about-visual {
  padding:15px 15px 26px;
  background:#f8faff;
  border:1px solid var(--line);
  border-radius:18px;
}
.about-connections {
  display:flex;
  justify-content:center;
  gap:22px;
}
.about-connections span {
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#6479a0;
  font-size:10px;
}
.about-connections .icon {
  width:16px;
  height:16px;
}
.values-grid {
  margin-top:38px;
}
.technology-services #support {
  grid-column:span 2;
}

/* Contact */
.contact-grid {
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:85px;
  align-items:start;
}
.contact-details>p {
  font-size:14px;
  max-width:360px;
}
.contact-details dl {
  margin-top:30px;
  display:grid;
  gap:14px;
}
.contact-details dl>div {
  position:relative;
  padding:22px 24px 22px 86px;
  min-height:91px;
  border:1px solid var(--line);
  border-radius:10px;
  background:white;
}
.contact-details dt {
  font-size:13px;
  font-weight:650;
  margin-bottom:5px;
}
.contact-details dt .icon-tile {
  position:absolute;
  left:22px;
  top:24px;
  width:42px;
  height:42px;
  background:#f0f4fc;
}
.contact-details dt .icon {
  width:19px;
  height:19px;
}
.contact-details dd {
  color:var(--slate);
  font-size:12px;
  margin:0;
}
.form-panel {
  background:white;
  border:1px solid var(--line);
  border-radius:15px;
  box-shadow:var(--shadow);
  padding:38px;
}
.form-heading {
  display:flex;
  align-items:center;
  gap:17px;
  margin-bottom:26px;
}
.form-heading h2 {
  font-size:25px;
  margin:0;
}
.form-heading .eyebrow {
  font-size:8px;
  margin:0 0 5px;
}
.form-notice {
  font-size:11px;
  background:#f6f8fc;
  border-radius:7px;
  padding:14px 16px;
  line-height:1.7;
}
.form-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px 19px;
  margin-top:27px;
}
.field {
  min-width:0;
}
.full-width {
  grid-column:1/-1;
}
.field label {
  display:block;
  font-size:12px;
  font-weight:600;
  margin-bottom:10px;
}
.form-control,.form-select {
  padding:12px 13px;
  border:1px solid #dce3ef;
  border-radius:6px;
  background-color:#fdfefe;
  font-size:13px;
  color:var(--navy);
  min-height:46px;
}
.form-control:focus,.form-select:focus {
  background:white;
  border-color:#6c89e7;
  box-shadow:0 0 0 4px #315ce813;
  outline:none;
}
textarea.form-control {
  resize:vertical;
  min-height:130px;
}
.field-validation-error,.text-danger {
  color:#b42342;
  font-size:12px;
}
.input-validation-error {
  border-color:#b42342;
}
.validation-summary-valid {
  display:none;
}
.validation-summary-errors ul {
  padding-left:18px;
  margin:20px 0;
}
.form-footnote {
  font-size:10px;
  margin:20px 0;
}
.validation-success {
  background:#eef3ff;
  border:1px solid #ccd8f6;
  color:#375489;
  padding:18px;
  border-radius:7px;
  font-size:13px;
  line-height:1.8;
}
.validation-success strong {
  display:block;
}

/* Footer: the only intentionally dark section */
.site-footer {
  background:#14233d;
  padding-top:60px;
}
.footer-grid {
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr .6fr;
  gap:32px;
  padding-bottom:48px;
}
.site-footer .brand {
  gap:9px;
}
.site-footer .brand strong {
  color:#f2f5fc;
  font-size:13px;
}
.site-footer .brand small {
  color:#acb9cf;
  font-size:7px;
}
.site-footer .brand img {
  width:33px;
  height:33px;
}
.footer-intro>p {
  color:#96a7c1;
  font-size:11px;
  margin:24px 0 0;
}
.site-footer h2 {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  letter-spacing:0;
  color:#f4f6fb;
  margin:4px 0 24px;
}
.site-footer h2 .icon {
  width:15px;
  height:15px;
  color:#91a8d7;
}
.site-footer a:not(.brand) {
  display:block;
  color:#a9b6cc;
  font-size:11px;
  line-height:1.8;
  margin-bottom:11px;
  transition:color .2s;
}
.site-footer a:hover {
  color:white;
}
.footer-bottom {
  display:flex;
  justify-content:space-between;
  gap:20px;
  border-top:1px solid #ffffff14;
  padding-top:22px;
  padding-bottom:24px;
  color:#98a8c0;
  font-size:9px;
}

/* Motion: content remains visible without scripting */
@keyframes dropdown-in {
  from {
    opacity:0;
    transform:translateY(-5px);
  }
  to {
    opacity:1;
    transform:translateY(0);
  }
}
@keyframes reveal-in {
  from {
    opacity:.25;
    transform:translateY(16px);
  }
  to {
    opacity:1;
    transform:translateY(0);
  }
}
.reveal.is-visible {
  animation:reveal-in .6s ease backwards;
}

/* Responsive: large desktop through mobile */
@media(min-width:1600px) {
  .hero-grid {
    padding-top:88px;
    padding-bottom:109px;
  }
  .hero-copy h1 {
    font-size:60px;
  }
}
@media(max-width:1199px) {
  .header-inner {
    gap:14px;
  }
  .brand strong {
    font-size:14px;
  }
  .brand small {
    font-size:7px;
  }
  .navigation {
    gap:10px;
  }
  .nav-link,.nav-group summary {
    gap:5px;
    padding:12px 7px;
    font-size:11px;
  }
  .nav-list {
    gap:1px;
  }
  .navigation .button-small {
    padding:11px;
    gap:7px;
  }
  .category-bar a {
    padding:0 15px;
    gap:11px;
  }
  .category-bar strong {
    font-size:12px;
  }
  .category-bar small {
    font-size:10px;
  }
  .category-bar a>.icon {
    display:none;
  }
  .technology-layout {
    gap:65px;
  }
  .division-card {
    padding:26px;
  }
  .division-card h3 {
    font-size:22px;
  }
  .contact-grid {
    gap:50px;
  }
  .footer-grid {
    gap:24px;
    grid-template-columns:1.3fr 1fr 1fr 1fr;
  }
  .footer-intro {
    grid-column:1/-1;
    display:flex;
    justify-content:space-between;
    align-items:center;
  }
  .footer-intro>p {
    margin:0;
  }
}
@media(max-width:991px) {
  .technology-services #support {
    grid-column:auto;
  }
  .header-inner {
    min-height:78px;
    flex-wrap:wrap;
  }
  .brand strong {
    font-size:16px;
  }
  .brand small {
    font-size:8px;
  }
  .menu-toggle {
    display:flex;
    width:42px;
    height:42px;
    border:1px solid #dce3ef;
    border-radius:8px;
    background:white;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
  }
  .menu-toggle span {
    width:18px;
    height:1.5px;
    background:var(--navy);
    transition:transform .2s,opacity .2s;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform:translateY(6.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity:0;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform:translateY(-6.5px) rotate(-45deg);
  }
  .navigation {
    width:100%;
    display:block;
    padding-bottom:24px;
    max-height:calc(100dvh - 100px);
    overflow-y:auto;
  }
  .js .navigation:not(.is-open) {
    display:none;
  }
  .navigation.is-open {
    animation:dropdown-in .22s ease both;
  }
  .nav-list {
    display:block;
  }
  .nav-list>li {
    border-bottom:1px solid #edf0f6;
  }
  .nav-link,.nav-group summary {
    font-size:14px;
    padding:15px 12px;
    gap:12px;
  }
  .nav-link .icon,.nav-group summary>.icon:first-child {
    width:19px;
    height:19px;
  }
  .nav-group summary>.icon:last-child {
    margin-left:auto;
    width:15px;
    height:15px;
  }
  .nav-link:after,.nav-group summary:after {
    left:12px;
    right:auto;
    width:22px;
  }
  .nav-dropdown {
    position:static;
    width:auto;
    border:0;
    border-left:1px solid #dce4f5;
    margin:8px 0 16px 20px;
    border-radius:0;
    box-shadow:none;
    background:#fafbfe;
  }
  .nav-dropdown a {
    padding:12px 15px;
  }
  .navigation>.button-small {
    display:flex;
    padding:14px;
    margin-top:21px;
  }
  .hero-grid {
    gap:0;
    padding-top:58px;
    padding-bottom:80px;
  }
  .hero-copy h1 {
    font-size:43px;
  }
  .hero-description {
    font-size:14px;
  }
  .hero-copy .eyebrow {
    font-size:8px;
    letter-spacing:.11em;
  }
  .hero-copy .button {
    font-size:12px;
    padding:13px 16px;
    gap:11px;
  }
  .category-bar {
    padding:20px 8px;
  }
  .category-bar a {
    padding:0 12px;
  }
  .category-bar .icon-tile {
    width:32px;
    height:36px;
  }
  .category-bar strong {
    font-size:11px;
  }
  .category-bar small {
    font-size:9px;
  }
  .section {
    padding:72px 0;
  }
  #divisions {
    padding-top:100px;
  }
  .division-grid {
    gap:16px;
  }
  .division-card {
    padding:23px;
  }
  .division-card h3 {
    font-size:20px;
  }
  .highlight-list li {
    font-size:10px;
    align-items:flex-start;
  }
  .highlight-list .icon {
    margin-top:2px;
  }
  .technology-layout,.split-layout {
    gap:40px;
  }
  .technology-list article {
    gap:12px;
  }
  .technology-list h3 {
    font-size:15px;
  }
  .technology-list p {
    font-size:11px;
  }
  .cta-panel {
    flex-wrap:wrap;
    padding:30px;
  }
  .cta-panel>.button {
    margin-left:88px;
  }
  .service-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .service-card {
    padding:28px;
  }
  .technology-services .service-card:first-child {
    grid-row:auto;
    grid-column:1/-1;
  }
  .service-prompt {
    display:block;
  }
  .service-prompt h3 {
    margin:15px 0 20px;
  }
  .contact-grid {
    gap:35px;
    grid-template-columns:.8fr 1.2fr;
  }
  .form-panel {
    padding:28px;
  }
  .form-grid {
    grid-template-columns:1fr;
  }
  .contact-details dl>div {
    padding-left:68px;
    padding-right:15px;
  }
  .contact-details dt .icon-tile {
    left:15px;
    width:35px;
    height:35px;
  }
  .page-emblem {
    width:90px;
    height:90px;
    margin-right:20px;
  }
  .audience-panel {
    padding:28px;
  }
  .audience-panel h2 {
    font-size:27px;
  }
  .about-connections {
    gap:10px;
  }
  .about-connections span {
    font-size:8px;
  }
}
@media(max-width:767px) {
  .container {
    padding-left:24px;
    padding-right:24px;
  }
  .hero-grid {
    grid-template-columns:1fr;
    padding-top:47px;
    padding-bottom:57px;
  }
  .hero-copy h1 {
    font-size:clamp(39px,8.8vw,54px);
  }
  .hero-copy .eyebrow {
    font-size:8px;
  }
  .hero-description {
    max-width:470px;
    font-size:14px;
  }
  .hero-note {
    font-size:10px;
    margin-top:20px;
  }
  .hero-art {
    width:100%;
    max-width:450px;
    margin:10px auto -12px;
  }
  .category-wrap {
    margin-top:-24px;
    margin-bottom:-24px;
  }
  .category-bar {
    grid-template-columns:1fr;
    padding:4px 23px;
  }
  .category-bar a {
    padding:19px 0;
    border-right:0;
    border-bottom:1px solid var(--line);
    gap:15px;
  }
  .category-bar a:last-child {
    border-bottom:0;
  }
  .category-bar strong {
    font-size:13px;
  }
  .category-bar small {
    font-size:10px;
  }
  .category-bar .icon-tile {
    width:38px;
    height:38px;
  }
  .category-bar a>.icon {
    display:block;
  }
  .section {
    padding:60px 0;
  }
  #divisions {
    padding-top:86px;
  }
  .section-heading {
    display:block;
    margin-bottom:30px;
  }
  .section-heading>p {
    margin-top:20px;
    font-size:13px;
  }
  .section-heading>p br {
    display:none;
  }
  .division-grid,.technology-layout,.split-layout,.career-grid,.audience-grid,.contact-grid {
    grid-template-columns:1fr;
    gap:26px;
  }
  .division-card {
    padding:30px;
  }
  .division-card h3 {
    font-size:25px;
  }
  .division-card>p:not(.card-kicker) {
    font-size:14px;
  }
  .highlight-list li {
    font-size:12px;
  }
  .technology-list {
    margin-top:14px;
  }
  .technology-list h3 {
    font-size:17px;
  }
  .technology-list p {
    font-size:12px;
  }
  .code-visual {
    max-width:none;
  }
  .process-block {
    margin-top:44px;
  }
  .process-heading {
    display:block;
  }
  .process-heading .eyebrow {
    margin-bottom:12px;
  }
  .process-grid {
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px 18px;
  }
  .process-grid li:nth-child(3):after {
    display:none;
  }
  .process-grid p {
    font-size:10px;
  }
  .education-paths {
    margin-top:5px;
  }
  .education-paths a {
    padding:18px 21px;
  }
  .career-card {
    padding:29px;
  }
  .cta-section {
    padding:5px 0 55px;
  }
  .cta-panel {
    display:block;
    padding:29px;
  }
  .cta-icon {
    width:48px;
    height:48px;
    margin-bottom:22px;
  }
  .cta-panel h2 {
    font-size:27px;
  }
  .cta-panel>.button {
    margin:25px 0 0;
  }
  .page-hero {
    padding:36px 0;
  }
  .page-hero-inner {
    gap:0;
  }
  .page-hero h1 {
    font-size:33px;
  }
  .page-hero p:not(.eyebrow) {
    font-size:13px;
  }
  .page-emblem {
    display:none;
  }
  .service-grid {
    gap:18px;
  }
  .service-card {
    padding:25px;
  }
  .service-card h3 {
    font-size:18px;
  }
  .service-card p {
    font-size:12px;
  }
  .technology-services .service-card:first-child {
    padding:30px;
  }
  .technology-services .service-card:first-child h3 {
    font-size:26px;
  }
  .audience-panel {
    padding:29px;
  }
  .contact-grid {
    gap:35px;
  }
  .contact-details>p {
    max-width:none;
  }
  .contact-details dl {
    grid-template-columns:1fr 1fr;
  }
  .contact-details dl>div {
    padding:20px;
  }
  .contact-details dt .icon-tile {
    position:static;
    display:flex;
    margin-bottom:15px;
  }
  .form-grid {
    grid-template-columns:1fr 1fr;
  }
  .form-panel {
    padding:28px;
  }
  .about-visual {
    max-width:490px;
    margin:auto;
  }
  .about-connections {
    gap:18px;
  }
  .about-connections span {
    font-size:9px;
  }
  .footer-grid {
    grid-template-columns:1fr 1fr;
    gap:30px;
    padding-bottom:30px;
  }
  .footer-intro {
    display:block;
  }
  .footer-intro>p {
    margin-top:20px;
  }
  .site-footer h2 {
    margin-bottom:18px;
  }
  .footer-bottom {
    display:block;
    font-size:9px;
  }
  .footer-bottom>span {
    display:block;
    margin-bottom:8px;
  }
}
@media(max-width:430px) {
  .container {
    padding-left:21px;
    padding-right:21px;
  }
  .brand strong {
    font-size:14px;
  }
  .brand small {
    font-size:7px;
  }
  .brand img {
    width:35px;
    height:35px;
  }
  .hero-copy h1 {
    font-size:39px;
  }
  .hero-copy .eyebrow {
    font-size:7px;
    gap:7px;
  }
  .eyebrow-line {
    width:18px;
  }
  .hero-copy .button {
    padding:13px 15px;
    font-size:11px;
  }
  .service-grid,.form-grid {
    grid-template-columns:1fr;
  }
  .division-card {
    padding:27px;
  }
  .form-panel {
    padding:24px;
  }
  .form-heading {
    gap:13px;
  }
  .form-heading h2 {
    font-size:23px;
  }
  .form-heading .icon-tile {
    width:42px;
    height:42px;
  }
  .contact-details dl {
    gap:12px;
  }
  .contact-details dl>div {
    padding:17px;
  }
  .contact-details dd {
    font-size:11px;
  }
  .cta-panel h2 {
    font-size:25px;
  }
  .process-grid {
    gap:24px 12px;
  }
  .process-grid h3 {
    font-size:12px;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*:before,*:after {
    animation:none!important;
    transition:none!important;
  }
  .button:hover,.division-card:hover,.service-card:hover,.career-card:hover,.education-paths a:hover {
    transform:none;
  }
}
