@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/quicksand-400.woff2") format("woff2");
}
@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/quicksand-500.woff2") format("woff2");
}
@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/quicksand-600.woff2") format("woff2");
}
@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/quicksand-700.woff2") format("woff2");
}

:root {
  --navy: #001e6a;
  --navy-deep: #00144a;
  --cyan: #0aadda;
  --cyan-hot: #3bc4e8;
  --paper: #f2f5fa;
  --snow: #ffffff;
  --ink: #0c1528;
  --ink-soft: #4b5870;
  --mist: #e6ebf4;
  --line: #cdd6e5;
  --danger: #b42318;
  --particle: #05bff2;
  --display: "Quicksand", ui-sans-serif, system-ui, sans-serif;
  --sans: "Quicksand", ui-sans-serif, system-ui, sans-serif;
  --shadow:
    0 0 0 1px rgb(12 21 40 / 0.06), 0 1px 2px -1px rgb(12 21 40 / 0.06),
    0 8px 24px -12px rgb(0 30 106 / 0.18);
  --max: 72rem;
}

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

html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
  outline: 1px solid rgb(12 21 40 / 0.08);
  outline-offset: -1px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  letter-spacing: -0.01em;
  text-wrap: balance;
  line-height: 1.1;
  margin: 0;
}

p {
  text-wrap: pretty;
}

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

button,
[role="button"] {
  cursor: pointer;
  font-family: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 80;
  background: var(--cyan);
  color: var(--navy);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .wrap {
    width: min(100% - 4rem, var(--max));
  }
}

/* Header */
.util {
  display: none;
  background: var(--navy);
  color: var(--snow);
  font-size: 0.75rem;
}
.util-inner {
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.util a,
.util p {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  color: rgb(255 255 255 / 0.85);
}
.util a:hover {
  color: var(--cyan);
}
.util svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--cyan);
}

@media (min-width: 768px) {
  .util {
    display: block;
  }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--snow);
  box-shadow: 0 1px 0 var(--mist);
}

.nav-bar {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .nav-bar {
    height: 4.5rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.logo-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: var(--navy);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.logo-mark svg {
  width: 2.25rem;
  height: 2.25rem;
}
.logo-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--navy);
  line-height: 1;
}
.logo-sub {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  position: relative;
  padding: 0.5rem 0.7rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 0.5rem;
}
.nav-links a:hover,
.nav-links a.is-active {
  color: var(--navy);
}
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: -0.1rem;
  height: 2px;
  border-radius: 99px;
  background: var(--cyan);
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-btn,
.close-btn {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--navy);
  border-radius: 0.5rem;
}
.menu-btn svg,
.close-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 1024px) {
  .menu-btn {
    display: none;
  }
}

.cta-nav {
  display: none;
}

@media (min-width: 640px) {
  .cta-nav {
    display: inline-flex;
  }
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
}
.drawer.is-open {
  display: block;
}
.drawer-bg {
  position: absolute;
  inset: 0;
  background: rgb(0 20 74 / 0.5);
}
.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 20rem);
  background: var(--snow);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-head h2 {
  font-size: 1.125rem;
  color: var(--navy);
}
.drawer-links {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.drawer-links a {
  padding: 0.75rem 0.75rem;
  border-radius: 0.75rem;
  font-weight: 500;
  color: var(--navy);
}
.drawer-links a:hover {
  background: var(--mist);
}
.drawer-meta {
  margin-top: auto;
  padding-top: 2rem;
  display: grid;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.drawer-meta a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.drawer-meta svg {
  width: 1rem;
  height: 1rem;
  color: var(--cyan);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  border: 0;
  transition: background-color 150ms ease, transform 150ms ease, color 150ms ease;
}
.btn:active {
  transform: scale(0.96);
}
.btn svg {
  width: 1rem;
  height: 1rem;
}
.btn-lg {
  height: 3rem;
  padding: 0 1.5rem;
  font-size: 1rem;
  border-radius: 0.75rem;
}
.btn-cyan {
  background: var(--cyan);
  color: var(--navy);
}
.btn-cyan:hover {
  background: var(--cyan-hot);
}
.btn-navy {
  background: var(--navy);
  color: var(--snow);
}
.btn-navy:hover {
  background: var(--navy-deep);
}
.btn-outline {
  background: transparent;
  color: var(--snow);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.4);
}
.btn-outline:hover {
  background: rgb(255 255 255 / 0.1);
}
.btn-paper {
  background: var(--snow);
  color: var(--navy);
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn-paper:hover {
  box-shadow: inset 0 0 0 1px rgb(0 30 106 / 0.3);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--snow);
}
.hero-frame {
  position: relative;
  min-height: 20rem;
}
@media (min-width: 768px) {
  .hero-frame {
    min-height: 40rem;
  }
}
@media (min-width: 1024px) {
  .hero-frame {
    min-height: calc(100dvh - 7.25rem);
    max-height: 46rem;
  }
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.slide.is-active {
  opacity: 1;
}
.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: none;
}
.slide.is-active img {
  animation: kenburns 8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.slide-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgb(0 20 74 / 0.92), rgb(0 30 106 / 0.78), rgb(0 30 106 / 0.35)),
    linear-gradient(to top, rgb(0 20 74 / 0.7), transparent, rgb(0 30 106 / 0.2));
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-globe-stage {
  position: absolute;
  z-index: 6;
  pointer-events: none;
  width: 11.5rem;
  height: 11.5rem;
  right: -1.25rem;
  bottom: 3.25rem;
  opacity: 0.82;
  perspective: 640px;
}
@media (min-width: 768px) {
  .hero-globe-stage {
    width: min(42vw, 28rem);
    height: min(42vw, 28rem);
    right: 2%;
    top: 50%;
    bottom: auto;
    transform: translateY(-48%);
    opacity: 0.95;
  }
}
.hero-globe-fallback {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgb(5 191 242 / 0.18), transparent 42%),
    radial-gradient(circle at 50% 50%, rgb(0 20 74 / 0.2), rgb(0 30 106 / 0.45));
  box-shadow:
    inset 0 0 0 1.5px rgb(5 191 242 / 0.45),
    0 0 40px rgb(5 191 242 / 0.2);
  overflow: hidden;
  transition: opacity 280ms ease;
}
.hero-globe-fallback svg {
  width: 100%;
  height: 100%;
  animation: globeSpin 28s linear infinite;
  transform-origin: 50% 50%;
}
.hero-globe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@keyframes globeSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero-copy {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 20rem;
  padding: 1.75rem 1.25rem 3.5rem;
}
@media (min-width: 768px) {
  .hero-copy {
    min-height: 40rem;
    padding: 4rem 4rem 6rem;
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .hero-copy {
    padding-right: 26rem;
  }
  .hero-copy h1 {
    max-width: 34rem;
  }
}
.kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
}
.hero-copy h1 {
  margin-top: 0.75rem;
  max-width: 48rem;
  font-size: clamp(1.6rem, 7vw, 4.5rem);
  font-weight: 600;
  color: var(--snow);
}
.hero-copy .lede {
  margin-top: 0.85rem;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgb(255 255 255 / 0.8);
}
.hero-rotate {
  margin: 0.9rem 0 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.65rem;
  min-height: 1.7em;
  font-size: 1rem;
  font-weight: 600;
  max-width: 100%;
}
@media (min-width: 768px) {
  .hero-rotate {
    margin-top: 1.1rem;
    font-size: 1.25rem;
  }
}
.hero-rotate-prefix {
  color: rgb(255 255 255 / 0.72);
  font-weight: 500;
  flex-shrink: 0;
}
.hero-rotate-words {
  display: inline-grid;
  overflow: hidden;
  height: 1.35em;
  min-width: 21ch;
  color: var(--cyan);
  vertical-align: bottom;
}
.hero-rotate-words span {
  grid-area: 1 / 1;
  white-space: nowrap;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(110%);
  animation: rotateWord 13s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.hero-rotate-words span:nth-child(1) { animation-delay: 0s; }
.hero-rotate-words span:nth-child(2) { animation-delay: 2.6s; }
.hero-rotate-words span:nth-child(3) { animation-delay: 5.2s; }
.hero-rotate-words span:nth-child(4) { animation-delay: 7.8s; }
.hero-rotate-words span:nth-child(5) { animation-delay: 10.4s; }
.hero-rotate-words span.is-on {
  opacity: 1;
  transform: translateY(0);
}
@keyframes rotateWord {
  0% {
    opacity: 0;
    transform: translateY(110%);
  }
  3%,
  17% {
    opacity: 1;
    transform: translateY(0);
  }
  20%,
  100% {
    opacity: 0;
    transform: translateY(-110%);
  }
}
@media (min-width: 768px) {
  .hero-copy h1 {
    margin-top: 1rem;
  }
  .hero-copy .lede {
    margin-top: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.6;
  }
}
.hero-ctas {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .hero-ctas {
    margin-top: 2rem;
  }
}
.hero-arrow {
  position: absolute;
  top: auto;
  bottom: 3.25rem;
  z-index: 20;
  width: 2.5rem;
  height: 2.5rem;
  transform: none;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0.5rem;
  background: rgb(0 30 106 / 0.55);
  color: var(--snow);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.25);
}
@media (min-width: 768px) {
  .hero-arrow {
    top: 50%;
    bottom: auto;
    width: 2.75rem;
    height: 2.75rem;
    transform: translateY(-50%);
  }
}
.hero-arrow:hover {
  background: rgb(0 30 106 / 0.8);
}
.hero-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
}
.hero-arrow.prev {
  left: 0.75rem;
}
.hero-arrow.next {
  right: 0.75rem;
}
@media (min-width: 768px) {
  .hero-arrow.prev {
    left: 1.5rem;
  }
  .hero-arrow.next {
    right: 1.5rem;
  }
}
.hero-bars {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 20;
}
.hero-bars-inner {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  padding-bottom: 1rem;
}
.bars {
  display: flex;
  flex: 1;
  min-width: 0;
  gap: 0.5rem;
}
.bar {
  position: relative;
  flex: 1;
  height: 2rem;
  border: 0;
  background: transparent;
  padding: 0;
}
.bar span {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  overflow: hidden;
  border-radius: 99px;
  background: rgb(255 255 255 / 0.25);
}
.bar .fill {
  display: block;
  height: 100%;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left center;
}
.bar.is-on .fill {
  animation: progress 7s linear forwards;
}
.bar.is-done .fill {
  transform: scaleX(1);
  background: rgb(255 255 255 / 0.55);
  animation: none;
}
.pause-btn {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0.5rem;
  background: rgb(255 255 255 / 0.1);
  color: var(--snow);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.2);
}
.pause-btn svg {
  width: 0.875rem;
  height: 0.875rem;
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08) translate(-1.2%, -0.6%);
  }
}
@keyframes progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
.rise {
  animation: rise 500ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.d1 {
  animation-delay: 80ms;
}
.d2 {
  animation-delay: 160ms;
}
.d3 {
  animation-delay: 240ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .slide.is-active img,
  .bar.is-on .fill,
  .rise,
  .d1,
  .d2,
  .d3,
  .hero-rotate-words span,
  .hero-globe-fallback svg {
    animation: none !important;
    filter: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .hero-rotate-words span {
    display: none !important;
  }
  .hero-rotate-words span.is-on {
    display: inline !important;
  }
  .bar.is-on .fill {
    transform: scaleX(1) !important;
  }
}

/* Page intro */
.intro {
  background: var(--navy);
  color: var(--snow);
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .intro {
    padding: 6rem 0;
  }
}
.intro h1 {
  margin-top: 1rem;
  max-width: 48rem;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 600;
}
.intro p {
  margin-top: 1.25rem;
  max-width: 40rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgb(255 255 255 / 0.75);
}

/* Sections */
.section {
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .section {
    padding: 7rem 0;
  }
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.section h2,
.block-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  max-width: 36rem;
}
.muted {
  color: var(--ink-soft);
  line-height: 1.65;
}
.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}

.stats {
  background: var(--navy);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgb(255 255 255 / 0.1);
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat {
  background: var(--navy);
  text-align: center;
  padding: 2rem 1.25rem;
}
.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.75rem;
  color: var(--cyan);
}
.stat span {
  color: rgb(255 255 255 / 0.7);
  font-size: 0.875rem;
}

.cards {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .cards.three {
    grid-template-columns: repeat(3, 1fr);
  }
  .cards.two {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards.four {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .cards.four {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--snow);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.card h3 {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  color: var(--navy);
}
.icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: var(--mist);
  color: var(--navy);
}
.icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cyan);
}

.band {
  background: var(--navy);
  color: var(--snow);
}
.band h2 {
  color: var(--snow);
}
.work-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.work-card {
  overflow: hidden;
  border-radius: 1.25rem;
  background: var(--navy-deep);
  box-shadow: var(--shadow);
  color: var(--snow);
}
.work-card .thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: none;
  transition: transform 500ms ease;
}
.work-card:hover img {
  transform: scale(1.04);
}
.work-card .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy-deep), rgb(0 20 74 / 0.2), transparent);
}
.pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  background: rgb(255 255 255 / 0.95);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
}
.work-card .body {
  position: relative;
  padding: 1.25rem 1.35rem 1.5rem;
}
.work-card .body .muted {
  color: rgb(255 255 255 / 0.7);
}
.work-card h3 {
  font-size: 1.5rem;
  color: var(--snow);
}

.mist {
  background: rgb(230 235 244 / 0.6);
}

.quote {
  display: flex;
  flex-direction: column;
}
.quote blockquote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}
.quote figcaption {
  margin-top: 1.5rem;
  padding-top: 1rem;
}
.quote strong {
  display: block;
  color: var(--navy);
}
.quote span {
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.cta-band {
  background: var(--navy);
  color: var(--snow);
  padding: 4rem 0;
}
.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cta-band h2 {
  color: var(--snow);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 40rem;
}
.cta-band p {
  margin: 0.75rem 0 0;
  max-width: 36rem;
  color: rgb(255 255 255 / 0.7);
}

/* Services list */
.service-list {
  display: grid;
  gap: 2rem;
  padding: 4rem 0 5rem;
}
.service {
  scroll-margin-top: 7rem;
  display: grid;
  gap: 2rem;
  background: var(--snow);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
@media (min-width: 768px) {
  .service {
    grid-template-columns: 5fr 7fr;
    padding: 2.5rem;
  }
}
.service h2 {
  margin-top: 0.5rem;
  font-size: 1.875rem;
  color: var(--navy);
}
.points {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .points {
    grid-template-columns: 1fr 1fr;
  }
}
.points li {
  list-style: none;
  display: flex;
  gap: 0.65rem;
  background: var(--paper);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}
.points {
  margin: 0;
  padding: 0;
}
.points svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--cyan);
}

/* Work page */
.project {
  overflow: hidden;
  border-radius: 1.25rem;
  background: var(--snow);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .project {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .project:nth-child(even) .project-media {
    order: 2;
  }
}
.project-media {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 16rem;
}
.project-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: none;
}
.project-copy {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .project-copy {
    padding: 2.5rem;
  }
}
.project-copy h2 {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  color: var(--navy);
}
.outcome {
  margin-top: 1.25rem;
  border-left: 2px solid var(--cyan);
  padding-left: 1rem;
  font-size: 0.875rem;
  color: var(--navy);
}

.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}
.frame {
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
}
.frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 7fr 5fr;
  }
}
form.card {
  padding: 1.5rem;
}
@media (min-width: 768px) {
  form.card {
    padding: 2rem;
  }
}
.fields {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .fields {
    grid-template-columns: 1fr 1fr;
  }
  .span-2 {
    grid-column: span 2;
  }
}
label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
input,
select,
textarea {
  width: 100%;
  height: 2.75rem;
  border: 0;
  border-radius: 0.5rem;
  background: var(--snow);
  color: var(--ink);
  padding: 0 0.875rem;
  font: inherit;
  font-size: 1rem;
  box-shadow: 0 0 0 1px var(--line);
  outline: none;
}
textarea {
  height: auto;
  min-height: 8rem;
  padding: 0.75rem 0.875rem;
  border-radius: 0.75rem;
}
input:focus,
select:focus,
textarea:focus {
  box-shadow: 0 0 0 2px var(--cyan);
}
.err {
  margin: 0.4rem 0 0;
  font-size: 0.875rem;
  color: var(--danger);
}
.studio {
  background: var(--navy);
  color: var(--snow);
  border-radius: 1.25rem;
  padding: 1.5rem 2rem;
}
.studio h2 {
  color: var(--snow);
  font-size: 1.5rem;
}
.studio ul {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  font-size: 0.875rem;
}
.studio li {
  display: flex;
  gap: 0.75rem;
}
.studio svg {
  width: 1rem;
  height: 1rem;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.success {
  display: none;
}
.success.is-on,
form.is-hidden {
  display: none;
}
.success.is-on {
  display: block;
}

/* Footer */
footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--snow);
}
.footer-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
footer > .wrap {
  position: relative;
  z-index: 1;
}
.foot-grid {
  display: grid;
  gap: 3rem;
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .foot-grid {
    grid-template-columns: 5fr 2fr 2fr 3fr;
    padding: 5rem 0;
  }
}
footer .logo-name {
  color: var(--snow);
}
footer .logo-sub {
  color: var(--cyan);
}
footer .logo-mark {
  background: var(--snow);
}
.foot-copy {
  margin-top: 1.25rem;
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgb(255 255 255 / 0.7);
}
.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cyan);
}
.foot-col p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}
.foot-col ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  font-size: 0.875rem;
}
.foot-col a {
  color: rgb(255 255 255 / 0.75);
}
.foot-col a:hover {
  color: var(--snow);
}
.visit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: rgb(255 255 255 / 0.75);
  line-height: 1.45;
}
.visit-list svg {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  margin-top: 0.2em;
  color: var(--cyan);
  stroke-width: 2;
}
.wa-link svg {
  width: 1em;
  height: 1em;
}
.legal {
  border-top: 1px solid rgb(255 255 255 / 0.1);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgb(255 255 255 / 0.5);
}
@media (min-width: 768px) {
  .legal {
    flex-direction: row;
    justify-content: space-between;
  }
}

.wa-fab {
  position: fixed;
  left: 1rem;
  bottom: 5rem;
  z-index: 30;
  height: 3rem;
  padding: 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 99px;
  background: var(--cyan);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.wa-fab svg {
  width: 1rem;
  height: 1rem;
}
@media (min-width: 768px) {
  .wa-fab {
    left: 1.5rem;
    bottom: 2rem;
  }
}
.wa-fab span {
  display: none;
}
@media (min-width: 640px) {
  .wa-fab span {
    display: inline;
  }
}

.cards.spaced {
  margin-top: 2.5rem;
}
.btn.follow {
  margin-top: 1.5rem;
}
.studio .btn {
  margin-top: 2rem;
}
.find-card {
  margin-top: 1.25rem;
}
.find-card .btn {
  margin-top: 1.25rem;
}
.dl-banner {
  background: var(--navy);
  color: var(--snow);
  font-size: 0.8125rem;
}
.dl-banner .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0;
}
.dl-banner p {
  margin: 0;
  color: rgb(255 255 255 / 0.82);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Portfolio */
.profile-hero {
  background: var(--navy-deep);
  color: var(--snow);
}
.profile-grid {
  display: grid;
  gap: 0;
}
@media (min-width: 768px) {
  .profile-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
    min-height: 38rem;
  }
}
.profile-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 0 2.5rem;
}
@media (min-width: 768px) {
  .profile-copy {
    padding: 5rem 3rem 5rem 0;
  }
}
.profile-copy h1 {
  margin-top: 1rem;
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 600;
  color: var(--snow);
}
.profile-role {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cyan);
}
.profile-cred {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
  color: rgb(255 255 255 / 0.88);
}
.cred-chips {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cred-chips li {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  box-shadow: inset 0 0 0 1px rgb(5 191 242 / 0.45);
}
.cred-band {
  background: var(--navy);
  color: var(--snow);
  border-top: 1px solid rgb(255 255 255 / 0.08);
}
.cred-band-grid {
  display: grid;
  gap: 0;
}
.cred-band-grid article {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
}
.cred-band-grid article:last-child {
  border-bottom: 0;
}
@media (min-width: 768px) {
  .cred-band-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .cred-band-grid article {
    padding: 2.25rem 2rem 2.25rem 0;
    border-bottom: 0;
    border-right: 1px solid rgb(255 255 255 / 0.08);
  }
  .cred-band-grid article:last-child {
    border-right: 0;
    padding-right: 0;
  }
}
.cred-band h2 {
  margin-top: 0.5rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--snow);
}
.cred-band article p:last-child {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgb(255 255 255 / 0.7);
}
.split.tight {
  margin-bottom: 2rem;
  align-items: end;
}
.folio-work {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .folio-work {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
.folio-more {
  margin: 2rem 0 0;
}
.folio-lead {
  max-width: 40rem;
  margin-top: 0.85rem;
}
.skill-grid {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: none;
}
.skill-grid li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgb(0 30 106 / 0.12);
}
.skill-grid li:last-child {
  border-bottom: 1px solid rgb(0 30 106 / 0.12);
}
.skill-grid span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--cyan);
  padding-top: 0.2rem;
}
.skill-grid h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--navy);
}
.skill-grid .muted {
  margin-top: 0.35rem;
}
@media (min-width: 768px) {
  .skill-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 2.5rem;
  }
  .skill-grid li:last-child {
    grid-column: 1 / -1;
  }
}
.edu-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .edu-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
  }
}
.edu-feature {
  padding: 1.75rem 1.5rem;
  background: var(--navy);
  color: var(--snow);
  border-radius: 1rem;
}
.edu-feature h2 {
  margin-top: 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--snow);
  max-width: 18ch;
}
.edu-school {
  margin-top: 0.85rem;
  font-weight: 500;
  color: var(--cyan);
}
.edu-feature .muted {
  margin-top: 1rem;
  color: rgb(255 255 255 / 0.75);
}
.path.compact li {
  padding-bottom: 1.35rem;
}
.profile-copy .lede {
  margin-top: 1.5rem;
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgb(255 255 255 / 0.8);
}
.profile-photo {
  order: -1;
  margin: 0;
  background: #07090f;
  min-height: 26rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .profile-photo {
    order: 0;
    min-height: 100%;
  }
}
.profile-photo img {
  width: 100%;
  height: 100%;
  min-height: 26rem;
  object-fit: cover;
  object-position: center 18%;
  outline: none;
}
@media (min-width: 768px) {
  .profile-photo img {
    min-height: 38rem;
  }
}
.path {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-left: 2px solid var(--line);
}
.path li {
  position: relative;
  padding: 0 0 2rem 1.75rem;
}
.path li:last-child {
  padding-bottom: 0;
}
.path li::before {
  content: "";
  position: absolute;
  left: -0.4rem;
  top: 0.35rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 99px;
  background: var(--cyan);
  box-shadow: 0 0 0 4px var(--paper);
}
.mist .path {
  border-left-color: rgb(0 30 106 / 0.15);
}
.mist .path li::before {
  box-shadow: 0 0 0 4px var(--mist);
}
.path h3 {
  margin-top: 0.35rem;
  font-size: 1.25rem;
  color: var(--navy);
}
.path .muted {
  margin-top: 0.4rem;
}
@media (min-width: 768px) {
  .path {
    grid-template-columns: 1fr;
    max-width: 40rem;
  }
}
