:root {
  --navy: #071a2d;
  --navy-soft: #0c253d;
  --blue: #185ce5;
  --blue-bright: #2b7fff;
  --sky: #dfeeff;
  --ice: #f3f7fa;
  --white: #ffffff;
  --ink: #0b1d30;
  --muted: #617083;
  --line: #dce3e9;
  --lime: #a9f04d;
  --display: "Manrope", Arial, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
  --container: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 4px;
  background: var(--lime);
  color: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  color: var(--white);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  fill: var(--blue-bright);
}

.brand-mark .brand-cut {
  fill: var(--navy);
}

.brand-type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-type strong {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-type small {
  margin-top: 6px;
  color: #aebfd0;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-left: auto;
  margin-right: 46px;
}

.desktop-nav a {
  position: relative;
  color: #dbe5ef;
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--blue-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 700;
  transition:
    color 200ms ease,
    background 200ms ease,
    border-color 200ms ease,
    transform 200ms ease;
}

.button span {
  font-size: 19px;
  transition: transform 200ms ease;
}

.button:hover span {
  transform: translate(3px, -3px);
}

.button:hover {
  transform: translateY(-2px);
}

.button-sm {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 13px;
}

.button-dark {
  background: var(--white);
  color: var(--navy);
}

.button-dark:hover {
  background: var(--sky);
}

.button-primary {
  background: var(--blue);
  color: var(--white);
}

.button-primary:hover {
  background: #0e4fd0;
}

.button-outline {
  border-color: rgb(255 255 255 / 35%);
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  padding-top: 92px;
  background: linear-gradient(110deg, #071a2d 0%, #071a2d 50%, #0b243c 100%);
  color: var(--white);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image:
    linear-gradient(rgb(255 255 255 / 35%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 35%) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, black, transparent 68%);
}

.hero-glow {
  position: absolute;
  top: 120px;
  left: 39%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: #0e5ded;
  filter: blur(160px);
  opacity: 0.18;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  align-items: center;
  gap: 74px;
  min-height: 676px;
  padding-top: 20px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--muted);
}

.eyebrow-light {
  color: #a9c9f5;
}

.eyebrow-light span {
  color: #6e8aa8;
}

.status-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgb(169 240 77 / 10%);
}

.hero-copy {
  padding-top: 12px;
}

.hero h1 {
  max-width: 640px;
  margin: 25px 0 24px;
  font-family: var(--display);
  font-size: clamp(56px, 6vw, 86px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--blue-bright);
}

.hero-copy > p {
  max-width: 540px;
  margin: 0;
  color: #b7c5d3;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #d5e1ec;
  font-size: 14px;
  font-weight: 600;
}

.text-link span {
  color: var(--blue-bright);
  transition: transform 200ms ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

.hero-visual {
  position: relative;
  height: 540px;
}

.hero-image-wrap {
  position: absolute;
  top: 3px;
  right: -118px;
  width: calc(100% + 118px);
  height: 495px;
  overflow: hidden;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%, 0 12%);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(7 26 45 / 50%), transparent 35%);
}

.capability-card {
  position: absolute;
  bottom: 0;
  left: -30px;
  display: flex;
  gap: 25px;
  align-items: flex-start;
  width: 280px;
  padding: 24px;
  background: var(--blue);
  box-shadow: 0 22px 45px rgb(0 0 0 / 25%);
}

.capability-card span {
  color: #9fc0ff;
  font-size: 11px;
  font-weight: 700;
}

.capability-card p {
  margin: 0;
  color: #d8e5fb;
  font-size: 14px;
  line-height: 1.5;
}

.capability-card strong {
  color: var(--white);
  font-weight: 700;
}

.signal-card {
  position: absolute;
  right: -15px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 218px;
  padding: 17px 19px;
  border: 1px solid rgb(255 255 255 / 15%);
  background: rgb(7 26 45 / 88%);
  backdrop-filter: blur(12px);
}

.signal-lines {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
}

.signal-lines i {
  width: 3px;
  border-radius: 3px;
  background: var(--blue-bright);
  animation: signal 1.4s infinite ease-in-out;
}

.signal-lines i:nth-child(1) {
  height: 10px;
  animation-delay: -0.2s;
}
.signal-lines i:nth-child(2) {
  height: 18px;
  animation-delay: -0.4s;
}
.signal-lines i:nth-child(3) {
  height: 25px;
  animation-delay: -0.6s;
}
.signal-lines i:nth-child(4) {
  height: 15px;
  animation-delay: -0.8s;
}

@keyframes signal {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.signal-card div:last-child {
  display: flex;
  flex-direction: column;
}

.signal-card small {
  color: #7891a9;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-card strong {
  color: var(--white);
  font-size: 13px;
}

.signal-card strong span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--lime);
}

.service-ticker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: #7f95aa;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.service-ticker i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--blue-bright);
}

.section {
  padding: 128px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 100px;
  margin-bottom: 66px;
}

.section-heading h2,
.showcase-copy h2,
.about h2,
.contact h2 {
  margin: 22px 0 0;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.services {
  background: var(--ice);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 445px;
  overflow: hidden;
  padding: 38px 40px 35px;
  border: 1px solid var(--line);
  background: var(--white);
  transition:
    border-color 250ms ease,
    box-shadow 250ms ease,
    transform 250ms ease;
}

.service-card::after {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 170px;
  height: 170px;
  border: 1px solid #e8edf2;
  border-radius: 50%;
  content: "";
  transition: transform 400ms ease;
}

.service-card:hover {
  border-color: #a8bfd8;
  box-shadow: 0 22px 50px rgb(21 43 65 / 10%);
  transform: translateY(-5px);
}

.service-card:hover::after {
  transform: scale(1.3);
}

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-top > span {
  color: #9ba9b7;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
}

.icon-box {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: var(--sky);
}

.icon-box svg {
  width: 25px;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.service-card h3 {
  margin: 33px 0 12px;
  font-family: var(--display);
  font-size: 27px;
  letter-spacing: -0.025em;
}

.service-card > p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 25px 0 27px;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 5px 10px;
  border: 1px solid #e4e9ee;
  color: #647487;
  font-size: 11px;
  font-weight: 600;
}

.service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.service-card > a span {
  transition: transform 200ms ease;
}

.service-card > a:hover span {
  transform: translate(3px, -3px);
}

.featured-card {
  background: var(--navy);
  color: var(--white);
}

.featured-card::after {
  border-color: rgb(255 255 255 / 10%);
}

.featured-card .icon-box {
  background: var(--blue);
}

.featured-card .icon-box svg {
  stroke: var(--white);
}

.featured-card h3 {
  color: var(--white);
}

.featured-card > p {
  color: #9eafc0;
}

.featured-card li {
  border-color: #263f57;
  color: #9db0c2;
}

.featured-card > a {
  color: var(--blue-bright);
}

.solution-showcase {
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.showcase-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  align-items: center;
  gap: 100px;
}

.showcase-image {
  position: relative;
  height: 620px;
  margin-left: calc((100vw - min(1180px, calc(100vw - 48px))) / -2);
}

.showcase-image::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 130px;
  height: 130px;
  border-top: 1px solid rgb(255 255 255 / 30%);
  border-right: 1px solid rgb(255 255 255 / 30%);
  content: "";
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgb(7 26 45 / 65%));
  content: "";
}

.image-label {
  position: absolute;
  z-index: 2;
  right: -45px;
  bottom: 34px;
  display: flex;
  flex-direction: column;
  width: 260px;
  padding: 23px 25px;
  background: var(--blue);
  box-shadow: 0 18px 50px rgb(0 0 0 / 22%);
}

.image-label span {
  margin-bottom: 5px;
  color: #a9c8ff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.image-label strong {
  font-family: var(--display);
  font-size: 18px;
}

.showcase-copy h2 {
  max-width: 500px;
}

.showcase-copy > p {
  margin: 25px 0 33px;
  color: #9fb0c0;
  font-size: 17px;
}

.principle-list {
  margin-bottom: 38px;
  border-top: 1px solid rgb(255 255 255 / 12%);
}

.principle-list > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  padding: 19px 0;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.principle-list > div > span {
  padding-top: 3px;
  color: var(--blue-bright);
  font-size: 10px;
  font-weight: 700;
}

.principle-list p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.principle-list strong {
  font-family: var(--display);
  font-size: 15px;
}

.principle-list small {
  margin-top: 3px;
  color: #8499ad;
  font-size: 13px;
}

.approach {
  background: var(--white);
}

.section-heading.compact {
  margin-bottom: 80px;
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process::before {
  position: absolute;
  top: 61px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-step {
  position: relative;
  padding-right: 40px;
}

.step-number {
  color: #8a99a8;
  font-size: 10px;
  font-weight: 700;
}

.step-marker {
  position: relative;
  display: grid;
  width: 32px;
  height: 32px;
  margin: 24px 0 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  background: var(--white);
}

.step-marker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.process-step:first-child .step-marker {
  border-color: var(--blue);
  background: var(--blue);
}

.process-step:first-child .step-marker i {
  background: var(--white);
}

.process-step h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 21px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.impact {
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.impact-heading > p {
  color: #9fb0c0;
}

.impact-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 290px 290px 390px;
  gap: 16px;
}

.impact-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--navy-soft);
}

.impact-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(4 16 28 / 72%), transparent 42%);
  content: "";
  pointer-events: none;
}

.impact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.impact-photo:hover img {
  transform: scale(1.035);
}

.impact-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 21px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
}

.impact-photo figcaption span {
  color: var(--blue-bright);
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.impact-photo-tall {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
}

.impact-photo-tall img {
  object-position: 48% center;
}

.impact-photo-wide {
  grid-column: 8 / span 5;
}

.impact-photo-bottom-left {
  grid-column: 1 / span 5;
}

.impact-photo-bottom-right {
  grid-column: 6 / span 7;
}

.impact-photo-bottom-right img {
  object-position: center 28%;
}

.about {
  position: relative;
  overflow: hidden;
  background: #0c253d;
  color: var(--white);
}

.about::after {
  position: absolute;
  top: -210px;
  right: -180px;
  width: 560px;
  height: 560px;
  border: 1px solid rgb(255 255 255 / 7%);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgb(255 255 255 / 2%),
    0 0 0 140px rgb(255 255 255 / 2%);
  content: "";
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 140px;
}

.about h2 {
  max-width: 610px;
}

.about-copy {
  padding-top: 35px;
}

.about-lead {
  margin-top: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.about-copy > p:not(.about-lead) {
  color: #9db0c1;
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}

.values span {
  padding: 8px 13px;
  border: 1px solid #2b4964;
  color: #b7c7d6;
  font-size: 11px;
  font-weight: 600;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--sky);
}

.contact-pattern {
  position: absolute;
  top: -170px;
  right: -50px;
  width: 550px;
  height: 550px;
  border: 85px solid rgb(24 92 229 / 7%);
  border-radius: 50%;
}

.contact-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.contact-copy {
  max-width: 750px;
}

.contact h2 {
  font-size: clamp(40px, 5vw, 60px);
}

.contact-copy p {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.contact-button {
  display: grid;
  flex: 0 0 175px;
  width: 175px;
  height: 175px;
  padding: 28px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  place-content: center;
  text-align: center;
  transition:
    background 250ms ease,
    transform 250ms ease,
    box-shadow 250ms ease;
}

.contact-button:hover {
  background: #0f4fce;
  box-shadow: 0 20px 50px rgb(24 92 229 / 25%);
  transform: scale(1.04);
}

.contact-button span {
  max-width: 100px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.contact-button i {
  margin-top: 8px;
  font-size: 21px;
  font-style: normal;
}

.site-footer {
  padding: 70px 0 24px;
  background: var(--navy);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr;
  align-items: start;
  gap: 60px;
  padding-bottom: 62px;
}

.brand-footer .brand-cut {
  fill: var(--navy);
}

.footer-main > p {
  margin: 4px 0 0;
  color: #8ca0b3;
  font-family: var(--display);
  font-size: 16px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
}

.footer-links a {
  color: #b6c4d0;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 23px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  color: #657d91;
  font-size: 11px;
}

.footer-bottom a {
  color: #9fb0bf;
  font-weight: 600;
}

.footer-bottom a span {
  margin-left: 7px;
  color: var(--blue-bright);
}

.project-modal {
  width: min(680px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 45px;
  border: 0;
  border-radius: 5px;
  color: var(--ink);
  box-shadow: 0 30px 100px rgb(0 0 0 / 40%);
}

.project-modal::backdrop {
  background: rgb(4 16 28 / 82%);
  backdrop-filter: blur(5px);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  display: grid;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--ice);
  color: var(--ink);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
  place-items: center;
}

.modal-heading h2 {
  margin: 14px 0 7px;
  font-family: var(--display);
  font-size: 32px;
  letter-spacing: -0.03em;
}

.modal-heading > p {
  margin: 0 0 28px;
  color: var(--muted);
}

.project-modal form {
  display: grid;
  gap: 17px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.project-modal label {
  display: grid;
  gap: 7px;
  color: #405065;
  font-size: 12px;
  font-weight: 700;
}

.project-modal input,
.project-modal select,
.project-modal textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d9e0e7;
  border-radius: 2px;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.project-modal input:focus,
.project-modal select:focus,
.project-modal textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgb(24 92 229 / 10%);
}

.project-modal textarea {
  resize: vertical;
}

.form-submit {
  margin-top: 3px;
}

.form-note {
  margin: -4px 0 0;
  color: #8c98a5;
  font-size: 10px;
  text-align: center;
}

.form-success {
  padding: 35px 0 18px;
  text-align: center;
}

.form-success > span {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #e6f7d4;
  color: #4b8c10;
  font-size: 28px;
  place-items: center;
}

.form-success h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 30px;
}

.form-success p {
  margin: 7px 0 25px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal-delay {
  transition-delay: 180ms;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1000px) {
  :root {
    --container: min(100% - 40px, 760px);
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition:
      transform 220ms ease,
      width 220ms ease;
  }

  .menu-toggle span:last-child {
    width: 17px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    width: 24px;
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    width: 24px;
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 100px 40px 50px;
    background: var(--navy);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition:
      opacity 240ms ease,
      transform 240ms ease;
  }

  .mobile-nav.open {
    z-index: 40;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-nav a {
    border-bottom: 1px solid rgb(255 255 255 / 12%);
    color: var(--white);
    font-family: var(--display);
    font-size: 32px;
    font-weight: 600;
  }

  .mobile-nav a:last-child {
    margin-top: 16px;
    border-bottom: 0;
    color: var(--blue-bright);
    font-size: 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 105px 0 70px;
  }

  .hero-copy {
    max-width: 690px;
  }

  .hero-visual {
    height: 500px;
  }

  .hero-image-wrap {
    right: -120px;
    width: calc(100% + 120px);
  }

  .section {
    padding: 100px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .showcase-wrap {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .showcase-image {
    height: 520px;
    margin-left: -50px;
  }

  .showcase-copy {
    max-width: 620px;
  }

  .process {
    grid-template-columns: 1fr 1fr;
    gap: 55px 20px;
  }

  .process::before {
    display: none;
  }

  .process-step {
    padding-right: 50px;
  }

  .impact-gallery {
    grid-template-rows: 420px 260px 340px;
  }

  .impact-photo-tall {
    grid-column: 1 / span 12;
    grid-row: 1;
  }

  .impact-photo-wide {
    grid-column: span 6;
  }

  .impact-photo-bottom-left {
    grid-column: 1 / span 5;
  }

  .impact-photo-bottom-right {
    grid-column: 6 / span 7;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-copy {
    max-width: 650px;
    padding-top: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --container: calc(100% - 32px);
  }

  .nav-wrap {
    height: 78px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-type strong {
    font-size: 16px;
  }

  .brand-type small {
    font-size: 7px;
  }

  .hero {
    padding-top: 78px;
  }

  .hero-layout {
    padding: 78px 0 50px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .hero-copy > p {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 23px;
  }

  .hero-visual {
    height: 415px;
    margin-top: 10px;
  }

  .hero-image-wrap {
    right: -16px;
    width: calc(100% + 16px);
    height: 360px;
  }

  .capability-card {
    bottom: 0;
    left: 0;
    width: 245px;
    padding: 18px;
  }

  .signal-card {
    display: none;
  }

  .service-ticker {
    gap: 24px;
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .showcase-copy h2,
  .about h2,
  .contact h2 {
    font-size: 39px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 30px 26px;
  }

  .service-card h3 {
    margin-top: 27px;
  }

  .showcase-image {
    height: 410px;
    margin-left: -16px;
    margin-right: -16px;
  }

  .image-label {
    right: 16px;
    width: 230px;
  }

  .process {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .section-heading.compact {
    margin-bottom: 55px;
  }

  .process-step {
    padding-right: 15px;
  }

  .step-marker {
    margin: 12px 0 16px;
  }

  .impact-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .impact-photo {
    height: 280px;
  }

  .impact-photo-tall {
    height: 380px;
  }

  .impact-photo figcaption {
    right: 18px;
    bottom: 16px;
    left: 18px;
  }

  .about-grid {
    gap: 35px;
  }

  .about-lead {
    font-size: 20px;
  }

  .contact {
    padding: 75px 0;
  }

  .contact-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 35px;
  }

  .contact-button {
    flex-basis: 145px;
    width: 145px;
    height: 145px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-links {
    max-width: 250px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .project-modal {
    padding: 40px 22px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
