:root {
  --ink: #171820;
  --ink-2: #21222c;
  --ink-3: #2b2d35;
  --paper: #ffffff;
  --paper-2: #f5f5f5;
  --muted: #928c97;
  --muted-dark: #4a4e52;
  --line: #272b2d;
  --line-light: #e0deda;
  --gold: #e9b26d;
  --gold-light: #f8c483;
  --blue: #4098f9;
  --max: 1296px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
.team-strip-wrapper {
  margin-top: 56px; /* matches spacing used in process/expertise sections */
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
  color: var(--paper);
  background: var(--ink);
}

body.site-loading {
  overflow: hidden;
}

body.site-loading .page {
  opacity: 0;
  visibility: hidden;
}

body.site-loading::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 32px;
  color: var(--paper);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--ink);
  background-size: 44px 44px;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  animation: loading-grid 1400ms linear infinite;
}

body.site-ready .page {
  animation: page-reveal 360ms ease both;
}

@keyframes loading-grid {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 44px 44px, 44px 44px, 0 0;
  }
}

@keyframes page-reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.site-loading::after,
  body.site-ready .page {
    animation: none;
  }

  .hero-video {
    transition: none;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 62%);
}

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

img {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

.page {
  overflow: hidden;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 16px;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  margin: 0;
  font-size: clamp(32px, 4vw, 38px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
}

.lead {
  margin: 0;
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.45;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(260px, 470px) minmax(0, 744px);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(23, 24, 32, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 174px;
}

.brand-logo {
  display: block;
  width: 90px;
  height: auto;
}

.brand-divider {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.64);
}

.brand-tagline {
  color: var(--paper);
  font-family: "Avenir Next", Avenir, Montserrat, Inter, Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 7px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.035em;
  text-rendering: geometricPrecision;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.nav-menu {
  position: relative;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--paper);
}

.nav-menu > a::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.nav-dropdown-button {
  display: inline-flex;
  align-items: center;
  padding: 12px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
}

.nav-dropdown-button:hover,
.nav-dropdown-button:focus {
  color: var(--paper);
}

.nav-dropdown-button::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown-button[aria-expanded="true"] {
  color: var(--paper);
}

.nav-dropdown-button:focus {
  outline: 2px solid rgba(64, 152, 249, 0.3);
  outline-offset: 2px;
}

.services-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  z-index: 30;
  width: 324px;
  padding: 12px;
  border: 1px solid #434343;
  background: var(--ink-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.nav-menu:hover .services-dropdown,
.nav-menu:focus-within .services-dropdown,
.nav-menu.open .services-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.services-dropdown a {
  display: grid;
  gap: 4px;
  padding: 12px;
  color: var(--paper);
}

.services-dropdown a:hover,
.services-dropdown a:focus-visible {
  background: rgba(255, 255, 255, 0.05);
}

.services-dropdown strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.services-dropdown span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.nav-cta,
.button-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 14px 28px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 500;
  font-size: 15px;
}

.button-primary:hover,
.nav-cta:hover {
  background: rgba(233, 178, 109, 0.12);
}

.text-link {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 17px;
}

.text-link.blue {
  color: var(--blue);
}

.hero {
  position: relative;
  padding: 76px 0 0;
  min-height: 900px;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.14), transparent 26%),
    radial-gradient(circle at 70% 28%, rgba(233, 178, 109, 0.09), transparent 28%),
    linear-gradient(44deg, #16181b 0%, #1c1e21 100%);
}

.hero-inner {
  display: grid;
  justify-items: center;
  gap: 40px;
  text-align: center;
}

.hero h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(48px, 7.3vw, 96px);
  font-weight: 400;
  line-height: 1.09;
  letter-spacing: 0;
  background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0.66) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 1120px;
  margin: 0;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stats {
  width: min(1128px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
  border: 1px solid var(--line);
  background: rgba(33, 34, 44, 0.36);
}

.stat {
  min-height: 99px;
  padding: 22px 40px;
  display: grid;
  align-content: center;
  gap: 7px;
  border-right: 1px solid var(--line);
  text-align: left;
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  color: #f0f2f3;
}

.stat span {
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 1.26px;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-media {
  position: relative;
  width: 100vw;
  min-height: clamp(380px, 54vw, 776px);
  aspect-ratio: 16 / 9;
  margin-top: 60px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(64, 152, 249, 0.16), rgba(233, 178, 109, 0.1)),
    linear-gradient(135deg, #11161f, #22242e);
}

.hero-video {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  filter: saturate(0.95) contrast(1.04);
  transform: scale(1.04);
  transition:
    opacity 900ms ease,
    transform 1400ms ease;
}

body.site-ready .hero-video,
.hero-video.is-ready {
  opacity: 1;
  transform: scale(1);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, rgba(23, 24, 32, 0.18) 6%, transparent 15%),
    linear-gradient(0deg, transparent 0%, rgba(255, 255, 255, 0.18) 5%, transparent 12%),
    linear-gradient(90deg, rgba(23, 24, 32, 0.58), transparent 12%, transparent 88%, rgba(23, 24, 32, 0.58));
}

.hero-media::after {
  display: none;
}

.intro,
.faq {
  padding: 112px 0;
  color: var(--ink);
  background: var(--paper);
}

.faq {
  height: 826px;
  padding: 0;
  overflow: hidden;
}

.intro .body-copy {
  display: grid;
  gap: 36px;
}

.process {
  padding: 112px 0;
  color: var(--ink);
  background: var(--paper-2);
}

.process-heading {
  max-width: 560px;
}

.process-list {
  margin-top: 72px;
  border-top: 1px solid var(--line-light);
}

.process-item {
  display: grid;
  grid-template-columns: 220px minmax(300px, 1fr) minmax(360px, 468px);
  min-height: 184px;
  padding: 0;
  border-bottom: 1px solid var(--line-light);
  align-items: stretch;
}

.process-meta {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 32px 36px 32px 0;
}

.process-number {
  font-family: "IBM Plex Mono", "Courier New", monospace;
  color: var(--gold);
  letter-spacing: 2px;
}

.process-meta h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

.process-meta span {
  font-family: "IBM Plex Mono", "Courier New", monospace;
  color: #8a8e92;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 1.55;
}

.process-item p {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 32px 48px;
  border-left: 1px solid var(--line-light);
  color: var(--muted-dark);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.process-visual {
  min-height: 184px;
  aspect-ratio: 16 / 9;
  border: 0;
  border-left: 1px solid var(--line-light);
  background:
    linear-gradient(135deg, rgba(233, 178, 109, 0.18), transparent 44%),
    repeating-linear-gradient(90deg, #ece9e3 0 1px, transparent 1px 34px),
    #f7f6f3;
}

.expertise,
.team,
.footer {
  padding: 112px 0;
  background: var(--ink);
}

.expertise .split-heading,
.team .split-heading {
  align-items: end;
}

.expertise-grid {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.expertise-card {
  min-height: 620px;
  display: grid;
  grid-template-rows: 238px 1fr;
  border-right: 1px solid var(--line);
  background: rgba(33, 34, 44, 0.36);
}

.expertise-card:last-child {
  border-right: 0;
}

.card-art {
  min-height: 238px;
  background:
    radial-gradient(circle at 34% 30%, rgba(233, 178, 109, 0.35), transparent 26%),
    radial-gradient(circle at 70% 80%, rgba(64, 152, 249, 0.24), transparent 30%),
    linear-gradient(135deg, #161d29, #111317);
}

.expertise-card:nth-child(2) .card-art {
  background:
    radial-gradient(circle at 72% 28%, rgba(64, 152, 249, 0.28), transparent 26%),
    linear-gradient(135deg, #1d1e26, #141415);
}

.expertise-card:nth-child(3) .card-art {
  background:
    radial-gradient(circle at 50% 40%, rgba(233, 178, 109, 0.24), transparent 24%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px),
    #171820;
}

.card-content {
  padding: 34px 40px 42px;
  display: grid;
  align-content: start;
  gap: 26px;
}

.card-kicker {
  font-family: "IBM Plex Mono", "Courier New", monospace;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.expertise-card h3 {
  margin: 0;
  max-width: 360px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.32;
}

.expertise-card h3 span {
  display: block;
}

.expertise-card p {
  margin: 0;
  max-width: 390px;
  color: var(--muted);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.75;
}

.expertise-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 1.6px;
}

.expertise-list li::before {
  content: "- ";
  color: currentColor;
}

.team {
  background: var(--ink-2);
  padding: 20px 0 96px;
}

.team-strip {
  width: min(1160px, 100%);
  min-height: auto;
  aspect-ratio: 2592 / 1100;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
}

.person {
  position: relative;
  background: #161d29;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.person::before {
  content: "";
  position: absolute;
  inset: -30px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.2), transparent 13%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(180deg, #1f2633, #11141b);
  filter: grayscale(1);
}

.person::after {
  content: attr(data-name);
  position: absolute;
  left: 18px;
  bottom: 18px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.clients {
  padding: 78px 0 104px;
  color: var(--paper);
  background: var(--ink);
}

.clients .split-heading {
  align-items: end;
}

.clients .lead {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.55;
}

.team-link {
  display: block;
  width: max-content;
  margin: 72px 8px 0 auto;
  color: var(--blue);
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.team-link:hover,
.team-link:focus-visible {
  color: var(--paper);
}

.client-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
}

.client-card {
  min-height: 72px;
  padding: 18px 16px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  font-size: 12px;
  line-height: 1.25;
}

.client-card:last-child {
  border-right: 0;
}

.client-card span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "IBM Plex Mono", "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.faq-grid {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(280px, 454px) minmax(0, 720px);
  gap: clamp(44px, 7vw, 100px);
  align-items: start;
}

.faq-media {
  height: 100%;
  background: url("assets/faq.png") center / cover no-repeat;
}

.faq-content {
  align-self: center;
  min-height: 0;
  padding: 72px 0;
}

.faq-intro {
  max-width: 640px;
  margin: 40px 0 52px;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-height: 438px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 6px;
  scrollbar-width: thin;
}

.faq-item {
  background: #f2f2f2;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 500;
}

.faq-question::marker,
.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::before {
  content: "+";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--ink);
}

.faq-item[open] .faq-question::before {
  content: "-";
}

.faq-answer {
  margin: -4px 28px 26px 64px;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.6;
}

.control-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 10vw, 128px) 0;
  background:
    radial-gradient(circle at 98% 100%, rgba(65, 150, 249, 0.9) 0, rgba(65, 150, 249, 0.42) 28%, rgba(65, 150, 249, 0) 58%),
    linear-gradient(110deg, #071948 0%, #0b225f 56%, #183b9a 100%);
}

.control-cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(48px, 12vw, 190px);
  align-items: center;
}

.control-cta-copy {
  max-width: 560px;
}

.control-cta h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: 0;
}

.control-cta h2 span {
  color: #4098f9;
  font-weight: 500;
}

.control-cta p {
  max-width: 520px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

.control-cta-actions {
  display: grid;
  gap: 18px;
  justify-items: stretch;
}

.control-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 16px 28px;
  text-align: center;
  text-transform: uppercase;
  font-family: "IBM Plex Mono", "Courier New", monospace;
  letter-spacing: 1.8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.control-button-primary {
  color: var(--paper);
  background: #4098f9;
}

.control-button-primary:hover,
.control-button-primary:focus-visible {
  background: #5aa8ff;
}

.control-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.control-button-secondary:hover,
.control-button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.footer {
  padding-bottom: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 48px;
  align-items: start;
}

.footer-logo {
  display: block;
  width: 92px;
  height: auto;
  margin-bottom: 24px;
}

.footer h3,
.footer h4 {
  margin: 0 0 18px;
}

.footer p,
.footer a {
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1000px) {
  .nav {
    min-height: auto;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-logo {
    width: 90px;
  }

  .brand-divider {
    height: 42px;
  }

  .brand-tagline {
    font-size: 7px;
  }

  .nav-links {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .services-dropdown {
    left: 0;
  }

  .split-heading,
  .faq-grid,
  .control-cta-grid {
    grid-template-columns: 1fr;
  }

  .control-cta-actions {
    max-width: 560px;
  }

  .stats,
  .expertise-grid,
  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-item {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-meta,
  .process-item p {
    padding: 28px 0;
  }

  .process-item p,
  .process-visual {
    border-left: 0;
  }

  .process-visual {
    min-height: 160px;
  }

  .team {
    padding-top: 32px;
  }

  .team-link {
    margin-top: 40px;
  }

  .faq {
    height: 1120px;
    padding: 0;
  }

  .faq-grid {
    height: 100%;
    grid-template-rows: 420px minmax(0, 1fr);
    align-content: start;
    overflow: hidden;
  }

  .faq-media {
    height: 420px;
    margin: 0;
  }

  .faq-content {
    min-height: 0;
    padding: 48px 0 0;
    overflow: hidden;
  }

  .faq-list {
    max-height: 460px;
  }

  .team-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 32px, var(--max));
  }

  .hero {
    padding-top: 56px;
    min-height: auto;
  }

  .nav-menu {
    position: static;
  }

  .brand {
    gap: 0;
  }

  .brand-logo {
    width: 90px;
  }

  .brand-divider,
  .brand-tagline {
    display: none;
  }

  .services-dropdown {
    width: min(324px, calc(100vw - 32px));
  }

  .hero-copy {
    font-size: 18px;
    line-height: 1.55;
  }

  .hero-media {
    min-height: 260px;
    aspect-ratio: 4 / 3;
    margin-top: 44px;
  }

  .stats,
  .expertise-grid,
  .client-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat,
  .expertise-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro,
  .process,
  .expertise,
  .team,
  .clients,
  .cta,
  .control-cta,
  .footer {
    padding: 72px 0;
  }

  .faq {
    height: 1040px;
    padding: 0;
  }

  .control-cta {
    background:
      radial-gradient(circle at 86% 82%, rgba(65, 150, 255, 0.7) 0, rgba(65, 150, 255, 0.25) 28%, rgba(65, 150, 255, 0) 54%),
      linear-gradient(150deg, #071948 0%, #0b225f 52%, #17368d 100%);
  }

  .control-cta p {
    margin-top: 32px;
    font-size: 22px;
  }

  .control-cta-actions {
    gap: 16px;
  }

  .control-button {
    min-height: 72px;
    padding: 20px 22px;
    letter-spacing: 2px;
    font-size: 16px;
  }

  .team-strip {
    aspect-ratio: 2592 / 1100;
    background-color: var(--ink-2);
    background-repeat: no-repeat;
    background-size: contain;
  }

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

  .client-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .client-card:last-child {
    border-bottom: 0;
  }

  .faq-media {
    height: 360px;
    background-position: center top;
  }

  .faq-grid {
    grid-template-rows: 360px minmax(0, 1fr);
  }

  .faq-content {
    padding-top: 40px;
  }

  .faq-intro {
    margin: 28px 0 34px;
  }

  .faq-list {
    max-height: 420px;
  }

}

@media (max-width: 480px) {
  .team-strip {
    width: 100%;
    aspect-ratio: 2592 / 1100;
    background-position: center;
    background-size: contain;
  }
}

/* Asset placement from Figma mockups */
.process-item:nth-child(1) .process-visual {
  background: url("assets/evidence.png") center / cover no-repeat;
}

.process-item:nth-child(2) .process-visual {
  background: url("assets/scalability.png") center / cover no-repeat;
}

.process-item:nth-child(3) .process-visual {
  background: url("assets/continuity.png") center / cover no-repeat;
}

.process-item:nth-child(4) .process-visual {
  background: url("assets/automation.png") center / cover no-repeat;
}

.expertise-card:nth-child(1) .card-art {
  background: url("assets/opex.png") center / cover no-repeat;
}

.expertise-card:nth-child(2) .card-art {
  background: url("assets/p3.png") center / cover no-repeat;
}

.expertise-card:nth-child(3) .card-art {
  background: url("assets/maad.png") center / cover no-repeat;
}
.team-strip {
  background: url("assets/team-2.png") center / cover no-repeat;
}

.person {
  background: transparent;
}

.person::before,
.person::after {
  display: none;
}

@media (max-width: 680px) {
  .team-strip {
    background-color: var(--ink-2);
    background-repeat: no-repeat;
    background-size: contain;
  }
}

@media (max-width: 480px) {
  .team-strip {
    background-position: center;
    background-size: contain;
  }
}
