:root {
  --bg: #f7f6f2;
  --ink: #10131c;
  --muted: #596174;
  --blue: #2459e0;
  --line: #c7cad2;
  --pale: #eff2f8;
  --max: 1280px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a,
summary {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
button:disabled {
  cursor: wait;
  opacity: 0.6;
}
img {
  max-width: 100%;
  display: block;
}
svg {
  flex-shrink: 0;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h2 {
  font-size: clamp(30px, 3.3vw, 46px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -1.5px;
}
p {
  line-height: 1.6;
}
.container {
  width: calc(100% - 112px);
  max-width: var(--max);
  margin-inline: auto;
}
.eyebrow {
  font-size: 10px;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 500;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  padding: 14px;
  background: var(--blue);
  color: white;
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 246, 242, 0.97);
  border-bottom: 1px solid #dcdee3;
  backdrop-filter: blur(12px);
}
.header-inner {
  height: 70px;
  max-width: 1440px;
  padding: 0 56px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.brand img {
  object-fit: contain;
  mix-blend-mode: multiply;
}
.brand span {
  font-family: monospace;
  font-size: 15px;
  color: var(--muted);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-left: auto;
  margin-right: 9vw;
  font-size: 14px;
}
.desktop-nav a,
.projects-link {
  transition: color 0.2s;
}
.desktop-nav a:hover,
.projects-link:hover {
  color: var(--blue);
}
.header-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 13px;
  white-space: nowrap;
}
.projects-link {
  padding: 8px 0;
  border-bottom: 1px solid var(--blue);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.2;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button svg {
  width: 17px;
  height: 17px;
}
.button:hover {
  background: #1648c8;
  transform: translateY(-1px);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
}
.menu-toggle svg {
  width: 23px;
  height: 23px;
}
.mobile-nav {
  display: none;
}
.hero {
  height: clamp(640px, 50.5vw, 750px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 1800px;
  margin: auto;
}
.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  z-index: -1;
  mix-blend-mode: multiply;
}
.hero-copy {
  position: relative;
  text-align: center;
  padding: 44px 24px 0;
}
.hero-eyebrow {
  font-size: 12px;
  color: var(--blue);
  letter-spacing: 2.5px;
  display: flex;
  justify-content: center;
  gap: 22px;
}
.hero h1 {
  font-size: clamp(55px, 6.1vw, 88px);
  letter-spacing: -3.4px;
  line-height: 1.04;
  margin: 24px 0 20px;
  font-weight: 750;
}
.hero h1 span {
  color: var(--blue);
}
.hero-description {
  font-size: clamp(17px, 1.65vw, 23px);
  line-height: 1.35;
  color: var(--muted);
}
.hero-note {
  position: absolute;
  color: #657087;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  line-height: 1.55;
}
.hero-note:after {
  content: "";
  display: block;
  width: 26px;
  border-bottom: 1px solid #647086;
  margin-top: 18px;
}
.note-left-top {
  left: 5%;
  top: 100px;
}
.note-right-top {
  right: 5%;
  top: 75px;
}
.note-left-bottom {
  left: 5%;
  bottom: 28px;
}
.note-right-bottom {
  right: 5%;
  bottom: 22px;
}
.featured {
  border-top: 1px solid var(--line);
  padding-top: 36px;
}
.featured h2 {
  margin-bottom: 22px;
}
.project-row {
  border-top: 1px solid var(--line);
}
.project-row:last-of-type {
  border-bottom: 1px solid var(--line);
}
.project-row summary {
  list-style: none;
  display: grid;
  grid-template-columns: 96px minmax(0, 1.05fr) minmax(0, 1.1fr) 32px;
  gap: 28px;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  transition: background 0.2s;
}
.project-row summary::-webkit-details-marker {
  display: none;
}
.project-row summary:hover {
  background: #edf0f5;
}
.project-number {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: -1px;
  color: #7b8497;
}
.project-heading .eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 1.3px;
  margin-bottom: 5px;
}
.project-heading h3 {
  font-size: clamp(20px, 1.9vw, 27px);
  line-height: 1.15;
  letter-spacing: -0.8px;
}
.project-summary {
  font-size: 16px;
  line-height: 1.4;
  color: var(--muted);
}
.project-arrow {
  color: #46536e;
  transition: transform 0.2s;
}
.project-row[open] .project-arrow {
  transform: rotate(90deg);
  color: var(--blue);
}
.project-detail {
  padding: 10px 60px 30px 124px;
  color: var(--muted);
  font-size: 16px;
}
.project-detail > p {
  max-width: 900px;
}
.project-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  margin-top: 26px;
}
.project-outcomes h4 {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.tags {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 25px 0 0;
}
.tags li {
  font-size: 12px;
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 4px;
}
.technology-ribbon {
  display: flex;
  align-items: center;
  gap: 45px;
  padding: 34px 0 0;
}
.technology-ribbon:before {
  content: "";
  width: 12%;
  border-top: 1px solid var(--line);
}
.technology-ribbon ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex: 1;
  color: #4c5973;
  font-size: 13px;
}
.technology-ribbon > .eyebrow {
  font-size: 8px;
  color: #647086;
  white-space: nowrap;
}
.section {
  padding-top: 108px;
  padding-bottom: 100px;
}
.section-intro {
  position: relative;
  margin-bottom: 48px;
}
.section-intro > .eyebrow {
  color: var(--blue);
  margin-bottom: 18px;
}
.section-intro > p:last-child:not(.eyebrow) {
  max-width: 455px;
  color: var(--muted);
  font-size: 17px;
  position: absolute;
  right: 0;
  bottom: 2px;
}
.services-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.5fr;
  gap: 8%;
}
.service-selector {
  border-top: 1px solid var(--line);
}
.service-selector button {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  padding: 22px 12px 22px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  color: var(--muted);
  transition:
    color 0.2s,
    background 0.2s;
}
.service-selector button.active {
  color: var(--blue);
  background: #edf1fa;
}
.service-selector button:hover {
  color: var(--blue);
}
.service-index {
  font-size: 11px;
  width: 24px;
  color: #7b8497;
}
.service-selector svg {
  margin-left: auto;
  width: 19px;
  height: 19px;
}
.service-content {
  padding: 24px 0;
  min-height: 465px;
}
.service-content > .eyebrow {
  color: var(--blue);
  margin-bottom: 12px;
}
.service-content h3 {
  font-size: 32px;
  line-height: 1.18;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}
.service-content > p:not(.eyebrow) {
  font-size: 17px;
  color: var(--muted);
  max-width: 620px;
}
.service-content ul {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
}
.service-content li {
  padding: 11px 0;
  display: flex;
  gap: 13px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}
.service-content li svg {
  margin-top: 3px;
  color: var(--blue);
}
.tech-section {
  padding: 72px 0;
  background: var(--pale);
  border-block: 1px solid #e0e4ec;
}
.tech-section > .container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 7%;
}
.tech-section .section-intro {
  margin: 0;
}
.tech-list > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 9px 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.tech-list > div:first-child {
  padding-top: 0;
}
.tech-number {
  font-size: 11px;
  color: var(--blue);
  padding-top: 5px;
}
.tech-list h3 {
  font-size: 21px;
  letter-spacing: -0.5px;
}
.tech-list p {
  grid-column: 2;
  font-size: 15px;
  color: var(--muted);
}
.more-projects .project-row summary {
  grid-template-columns: 70px 1fr 1fr 32px;
}
.more-projects .project-summary {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.more-projects .project-heading h3 {
  font-size: 23px;
}
.contact-section {
  background: #eef1f8;
  padding: 84px 0;
  border-block: 1px solid #dce1eb;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 9%;
}
.contact-copy > .eyebrow {
  color: var(--blue);
  margin-bottom: 18px;
}
.contact-copy h2 {
  font-size: clamp(38px, 4vw, 57px);
  margin-bottom: 24px;
}
.contact-copy h2 span {
  color: var(--blue);
}
.contact-copy > p:not(.eyebrow) {
  font-size: 16px;
  color: var(--muted);
  max-width: 365px;
}
.email-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 24px;
  border-bottom: 1px solid var(--blue);
  padding: 0 0 8px;
  margin: 28px 0 18px;
}
.contact-copy .contact-note {
  font-size: 13px !important;
}
.contact-form {
  padding-top: 9px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
}
.contact-form label span {
  color: var(--blue);
}
.contact-form input,
.contact-form textarea {
  border: 1px solid #c7cdda;
  background: #f9fafc;
  border-radius: 6px;
  width: 100%;
  padding: 15px;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 24px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #69758a;
}
.contact-form textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.55;
}
.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.form-bottom > p {
  font-size: 11px;
  color: var(--muted);
}
.form-status {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 18px;
}
.form-status.success {
  color: #12613c;
}
.form-status.error {
  color: #a12626;
}
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-block: 27px;
}
.footer p {
  font-size: 12px;
  color: var(--muted);
}
.footer > .eyebrow {
  font-size: 9px;
  color: var(--muted);
}
@media (min-width: 1600px) {
  .hero {
    height: 800px;
  }
  .hero-copy {
    padding-top: 65px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .header-inner {
    padding: 0 32px;
  }
  .desktop-nav {
    gap: 22px;
    margin-right: 20px;
  }
  .header-actions {
    gap: 20px;
  }
  .hero-note {
    font-size: 8px;
  }
  .hero h1 {
    font-size: 65px;
  }
  .hero-description {
    font-size: 19px;
  }
  .note-left-top {
    top: 110px;
    left: 3%;
  }
  .note-right-top {
    right: 3%;
  }
  .section-intro > p:last-child:not(.eyebrow) {
    position: static;
    margin-top: 24px;
  }
  .project-row summary {
    gap: 20px;
    grid-template-columns: 60px 1fr 1fr 26px;
  }
  .project-number {
    font-size: 34px;
  }
  .project-summary {
    font-size: 14px;
  }
  .project-heading h3 {
    font-size: 23px;
  }
  .technology-ribbon {
    gap: 20px;
  }
  .technology-ribbon:before {
    display: none;
  }
  .technology-ribbon ul {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .technology-ribbon > .eyebrow {
    display: none;
  }
  .project-detail {
    padding-left: 80px;
  }
  .contact-layout {
    gap: 5%;
  }
  .form-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .services-layout {
    gap: 5%;
  }
  .service-content h3 {
    font-size: 28px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 84px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    padding: 0 20px;
    height: 64px;
    gap: 10px;
  }
  .brand img {
    width: 86px;
    height: 35px;
  }
  .brand span {
    font-size: 12px;
  }
  .desktop-nav,
  .header-actions {
    display: none;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 0 20px 18px;
    border-top: 1px solid var(--line);
  }
  .mobile-nav a {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }
  .hero {
    height: 590px;
  }
  .hero-copy {
    padding: 34px 16px 0;
  }
  .hero-eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
    gap: 10px;
  }
  .hero h1 {
    font-size: clamp(36px, 8.7vw, 62px);
    line-height: 1.08;
    letter-spacing: -1.6px;
    margin: 22px 0 18px;
  }
  .hero-description {
    font-size: 16px;
    max-width: 440px;
    margin: auto;
    line-height: 1.5;
  }
  .desktop-break {
    display: none;
  }
  .hero-image {
    height: 350px;
    width: 660px;
    max-width: none;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    object-fit: contain;
  }
  .hero-note {
    display: none;
  }
  .featured {
    padding-top: 28px;
  }
  .featured h2 {
    font-size: 30px;
    letter-spacing: -1px;
    margin-bottom: 23px;
  }
  .project-row summary,
  .more-projects .project-row summary {
    grid-template-columns: 36px 1fr 22px;
    gap: 10px 14px;
    padding: 22px 0;
  }
  .project-number {
    font-size: 28px;
    align-self: start;
  }
  .project-heading h3,
  .more-projects .project-heading h3 {
    font-size: 21px;
    letter-spacing: -0.5px;
  }
  .project-heading .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .project-summary {
    grid-column: 2;
    grid-row: 2;
    font-size: 14px;
    line-height: 1.5;
  }
  .project-arrow {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
  }
  .project-arrow svg {
    width: 23px;
    height: 23px;
  }
  .project-detail {
    padding: 8px 0 24px 50px;
    font-size: 14px;
  }
  .project-outcomes {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
  }
  .technology-ribbon {
    padding-top: 26px;
  }
  .technology-ribbon ul {
    font-size: 12px;
    gap: 15px 20px;
    line-height: 1.5;
  }
  .section {
    padding-block: 65px;
  }
  .section-intro {
    margin-bottom: 30px;
  }
  .section-intro > p:last-child:not(.eyebrow) {
    font-size: 15px;
  }
  .section-intro h2 {
    font-size: 32px;
    letter-spacing: -1px;
  }
  .services-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 14px;
  }
  .service-selector button {
    font-size: 14px;
    padding: 15px 5px;
    gap: 8px;
  }
  .service-index {
    display: none;
  }
  .service-selector svg {
    width: 15px;
  }
  .service-content {
    min-height: 0;
    padding: 20px 0 0;
  }
  .service-content h3 {
    font-size: 27px;
  }
  .service-content > p:not(.eyebrow) {
    font-size: 15px;
  }
  .service-content li {
    font-size: 14px;
  }
  .tech-section {
    padding-block: 50px;
  }
  .tech-section > .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .tech-list h3 {
    font-size: 19px;
  }
  .tech-list p {
    font-size: 14px;
  }
  .more-projects .project-summary {
    display: none;
  }
  .contact-section {
    padding-block: 55px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-copy h2 {
    font-size: 42px;
  }
  .contact-copy > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 15px;
  }
  .contact-form {
    padding: 0;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-bottom {
    flex-direction: column;
    align-items: stretch;
  }
  .form-bottom .button {
    padding: 16px;
  }
  .footer {
    flex-wrap: wrap;
    gap: 16px;
    padding-block: 25px;
  }
  .footer p {
    font-size: 10px;
  }
  .footer > .eyebrow {
    display: none;
  }
  .footer .brand img {
    width: 70px;
    height: 28px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
/* Match the asset's light surround to the page without changing the wordmark. */
.brand img {
  filter: brightness(1.04);
}
@media (min-width: 761px) {
  .hero-copy {
    padding-top: 40px;
  }
  .hero h1 {
    margin-top: 18px;
    margin-bottom: 16px;
  }
}
@media (max-width: 760px) {
  .hero {
    height: 510px;
  }
  .hero-image {
    width: 600px;
    height: 320px;
  }
}
