:root {
  --navy: #061f4f;
  --navy-2: #0a316d;
  --navy-3: #021333;
  --teal: #03bfae;
  --teal-2: #00a699;
  --ink: #08182f;
  --text: #263447;
  --muted: #687587;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --line: #dbe5ee;
  --grey: #5f6469;
  --shadow: 0 22px 60px rgba(6, 31, 79, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

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

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

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-band {
  background: var(--soft);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.top-strip {
  color: rgba(255, 255, 255, 0.88);
  background: var(--navy-3);
  font-size: 13px;
  font-weight: 800;
}

.top-strip-inner {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-strip p {
  margin: 0;
}

.top-links,
.site-nav,
.hero-actions,
.proof-grid,
.service-card ul,
.contact-lines,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.top-links {
  gap: 18px;
}

.top-links a + a {
  border-left: 2px solid var(--teal);
  padding-left: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 84px;
  align-items: center;
  gap: 28px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 229, 238, 0.84);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 32px rgba(6, 31, 79, 0.1);
}

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

.brand-mark {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 47%, var(--teal) 48% 62%, transparent 63%),
    var(--navy);
  box-shadow: 0 12px 26px rgba(6, 31, 79, 0.18);
}

.brand-mark::before {
  position: absolute;
  color: var(--paper);
  content: "V";
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
  transform: skewX(-12deg);
}

.brand-mark::after {
  position: absolute;
  top: 8px;
  right: 9px;
  width: 18px;
  height: 18px;
  border-top: 8px solid var(--teal);
  border-right: 8px solid var(--teal);
  content: "";
  transform: rotate(45deg);
}

.brand-mark img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: inherit;
}

.brand-mark img.is-missing {
  display: none;
}

.brand-name {
  display: grid;
  line-height: 1.02;
}

.brand strong {
  color: var(--navy);
  font-size: 23px;
  font-style: normal;
  font-weight: 950;
}

.brand em {
  color: var(--grey);
  font-size: 17px;
  font-style: normal;
  font-weight: 850;
}

.site-nav {
  justify-self: center;
  gap: 24px;
  color: #4d5967;
  font-size: 15px;
  font-weight: 850;
}

.site-nav a,
.footer-links a,
.contact-lines a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.footer-links a:hover,
.contact-lines a:hover {
  color: var(--teal-2);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.header-action {
  color: var(--paper);
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(6, 31, 79, 0.18);
}

.button::after,
.header-action::after {
  content: "->";
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(3, 191, 174, 0.13) 0 26%, transparent 26% 100%),
    linear-gradient(90deg, var(--navy-3), var(--navy) 52%, var(--navy-2));
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 60px;
  align-items: center;
  min-height: min(760px, calc(100vh - 168px));
  padding: 70px 0 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 68px;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 42px;
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.24;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
}

.hero-actions {
  gap: 14px;
  margin-top: 34px;
}

.button-primary {
  color: var(--navy-3);
  background: var(--teal);
  box-shadow: 0 20px 44px rgba(3, 191, 174, 0.24);
}

.button-secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  position: relative;
  min-height: 500px;
}

.hero-panel::before,
.hero-panel::after {
  position: absolute;
  content: "";
}

.hero-panel::before {
  inset: 38px 0 18px 88px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  transform: skewY(-4deg);
}

.hero-panel::after {
  right: 26px;
  bottom: 36px;
  width: 210px;
  height: 8px;
  background: var(--teal);
}

.hero-logo {
  position: absolute;
  right: 46px;
  top: 26px;
  z-index: 2;
  width: 310px;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.hero-logo.is-missing {
  display: none;
}

.hero-logo-fallback {
  position: absolute;
  right: 46px;
  top: 26px;
  z-index: 2;
  display: none;
  width: 310px;
  height: 420px;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 34px;
  color: var(--navy);
  text-align: center;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.hero-logo.is-missing + .hero-logo-fallback {
  display: grid;
}

.hero-logo-mark {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  color: var(--paper);
  border-radius: 18px;
  background:
    linear-gradient(135deg, transparent 47%, var(--teal) 48% 62%, transparent 63%),
    var(--navy);
  font-size: 72px;
  font-weight: 950;
  line-height: 1;
  transform: skewX(-10deg);
}

.hero-logo-fallback strong {
  font-size: 44px;
  font-weight: 950;
  line-height: 1;
}

.hero-logo-fallback em {
  color: var(--grey);
  font-size: 36px;
  font-style: normal;
  font-weight: 850;
  line-height: 1;
}

.hero-logo-fallback small {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-card {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  min-width: 180px;
  padding: 16px 18px;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(2, 19, 51, 0.78);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.signal-card span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.signal-card strong {
  font-size: 18px;
}

.signal-card-top {
  left: 4px;
  top: 80px;
}

.signal-card-bottom {
  right: 0;
  bottom: 70px;
}

.proof-strip {
  background: var(--paper);
  box-shadow: inset 0 -1px 0 var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.proof-grid article {
  display: grid;
  min-height: 124px;
  align-content: center;
  gap: 6px;
  padding: 24px;
  background: var(--paper);
}

.proof-grid strong {
  color: var(--navy);
  font-size: 38px;
  line-height: 1;
}

.proof-grid span {
  color: var(--muted);
  font-weight: 850;
}

.intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 74px;
  align-items: start;
  padding: 88px 0;
}

.trust-section {
  padding: 82px 0;
}

.trust-grid,
.page-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

.trust-grid p,
.page-split p,
.page-hero p,
.detail-card p,
.case-card p,
.faq-list p,
.evidence-card p {
  color: var(--muted);
  font-size: 17px;
}

.trust-list,
.stack-list,
.faq-list {
  display: grid;
  gap: 14px;
}

.trust-list article,
.stack-list article,
.evidence-card,
.case-card,
.detail-card,
.service-link-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(6, 31, 79, 0.07);
}

.trust-list article,
.stack-list article {
  display: grid;
  gap: 6px;
  padding: 22px;
}

.trust-list strong,
.stack-list strong,
.evidence-card strong {
  color: var(--navy);
  font-size: 19px;
}

.intro > p,
.section-heading p,
.showcase-copy p,
.industries-grid p,
.cta p,
.process-grid p,
.solution-card span,
.service-card p {
  color: var(--muted);
  font-size: 17px;
}

.services,
.work,
.process,
.industries,
.offices,
.cta,
.showcase {
  padding: 92px 0;
}

.page-hero {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(3, 191, 174, 0.14), transparent 38%),
    var(--navy-3);
}

.page-hero-inner {
  display: grid;
  gap: 20px;
  padding: 76px 0;
}

.page-hero h1 {
  margin-bottom: 0;
}

.page-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 850;
}

.breadcrumb a {
  color: var(--teal);
}

.page-section {
  padding: 82px 0;
}

.page-section-tight {
  padding: 58px 0;
}

.detail-grid,
.case-grid,
.service-link-grid,
.evidence-grid,
.tech-grid {
  display: grid;
  gap: 18px;
}

.detail-grid,
.service-link-grid,
.evidence-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.tech-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-card,
.case-card,
.service-link-card,
.evidence-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 26px;
}

.case-card {
  min-height: 320px;
}

.case-card span,
.service-link-card span,
.detail-card span {
  color: var(--teal-2);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-2);
  font-weight: 950;
}

.text-link::after {
  content: "->";
}

.mini-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.tech-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tech-pill-list li,
.tech-grid span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 900;
}

.inline-cta {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(3, 191, 174, 0.18), transparent),
    var(--navy);
}

.inline-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.inline-cta h2 {
  color: var(--paper);
}

.inline-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: grid;
  min-height: 340px;
  align-content: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(6, 31, 79, 0.07);
}

.featured-card {
  color: rgba(255, 255, 255, 0.78);
  border-color: var(--navy);
  background:
    linear-gradient(135deg, rgba(3, 191, 174, 0.18), transparent),
    var(--navy);
}

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

.featured-card p {
  color: rgba(255, 255, 255, 0.74);
}

.service-icon {
  display: inline-grid;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--teal);
  border-radius: 8px;
  background: rgba(3, 191, 174, 0.12);
}

.featured-card .service-icon {
  color: var(--navy);
  background: var(--teal);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.service-card ul {
  gap: 8px;
  margin: auto 0 0;
  padding: 20px 0 0;
  list-style: none;
}

.service-card li {
  padding: 7px 10px;
  color: var(--navy);
  border: 1px solid #cfdce6;
  border-radius: 8px;
  background: #f8fbfd;
  font-size: 13px;
  font-weight: 900;
}

.featured-card li {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.solution-card {
  display: grid;
  min-height: 320px;
  align-content: end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.solution-primary {
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(3, 191, 174, 0.18), transparent),
    var(--navy);
}

.solution-card p {
  align-self: start;
  margin-bottom: 84px;
  color: var(--teal);
  font-size: 18px;
  font-weight: 950;
}

.solution-primary h3 {
  color: var(--paper);
}

.solution-primary span {
  color: rgba(255, 255, 255, 0.75);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.quality-list {
  display: grid;
  gap: 12px;
}

.quality-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.quality-list strong {
  color: var(--teal-2);
  font-size: 20px;
}

.quality-list span {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-grid article {
  min-height: 270px;
  padding: 24px;
  color: rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(3, 191, 174, 0.14), transparent),
    var(--navy);
}

.process-grid span {
  display: inline-grid;
  width: 90px;
  height: 36px;
  margin-bottom: 50px;
  place-items: center;
  color: var(--navy);
  border-radius: 8px;
  background: var(--teal);
  font-size: 13px;
  font-weight: 950;
}

.process-grid h3 {
  color: var(--paper);
}

.process-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.industries-grid,
.cta-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 68px;
  align-items: start;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.industry-list article {
  padding: 22px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-size: 19px;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(6, 31, 79, 0.06);
}

.industry-list article::before {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

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

.office-card {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(3, 191, 174, 0.08), transparent),
    var(--soft);
}

.office-card-primary {
  color: rgba(255, 255, 255, 0.76);
  border-color: var(--navy);
  background:
    linear-gradient(135deg, rgba(3, 191, 174, 0.18), transparent),
    var(--navy);
}

.office-card span {
  display: inline-block;
  margin-bottom: 82px;
  color: var(--teal-2);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.office-card h3 {
  font-size: 30px;
}

.office-card p {
  color: var(--muted);
  font-size: 17px;
}

.office-card-primary h3 {
  color: var(--paper);
}

.office-card-primary p {
  color: rgba(255, 255, 255, 0.76);
}

.cta {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(3, 191, 174, 0.16) 0 24%, transparent 24% 100%),
    var(--navy-3);
}

.cta h2 {
  color: var(--paper);
}

.cta p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-lines {
  gap: 14px;
  margin-top: 28px;
  color: var(--teal);
  font-weight: 900;
}

.contact-lines span {
  color: rgba(255, 255, 255, 0.82);
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.form-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  border: 1px solid #cbd8e2;
  border-radius: 8px;
  background: #fbfdfe;
  outline: none;
}

.checkbox-line {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--teal-2);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(3, 191, 174, 0.13);
}

.contact-form .button {
  width: 100%;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal-2);
  font-weight: 900;
}

.form-status.is-error {
  color: #c93535;
}

.legal-main {
  padding: 82px 0;
}

.legal-article {
  max-width: 860px;
  color: #405064;
}

.legal-article h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 48px;
}

.legal-article h2 {
  margin-top: 34px;
  color: var(--navy);
  font-size: 26px;
}

.legal-article p,
.legal-article li {
  font-size: 17px;
  line-height: 1.75;
}

.legal-article ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-updated {
  color: var(--muted);
  font-weight: 850;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #010d24;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 118px;
}

.footer-brand strong,
.footer-brand em {
  color: var(--paper);
}

.footer-links {
  justify-content: flex-end;
  gap: 20px;
  font-weight: 900;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    padding: 14px;
  }

  .hero-grid,
  .intro,
  .trust-grid,
  .page-split,
  .showcase-grid,
  .industries-grid,
  .office-grid,
  .cta-grid,
  .inline-cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 58px 0 52px;
  }

  .hero-panel {
    min-height: 470px;
  }

  .hero-logo,
  .hero-logo-fallback {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .service-grid,
  .solution-grid,
  .process-grid,
  .detail-grid,
  .service-link-grid,
  .evidence-grid,
  .case-grid,
  .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .section-shell {
    width: calc(100% - 28px);
  }

  .top-strip-inner {
    display: grid;
    justify-content: stretch;
    padding: 9px 0;
  }

  .top-links {
    gap: 12px;
  }

  .top-links a + a {
    border-left: 0;
    padding-left: 0;
  }

  .site-header {
    min-height: 74px;
    padding: 0 14px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand-mark img {
    width: 44px;
    height: 44px;
  }

  .brand-mark::before {
    font-size: 26px;
  }

  .brand-mark::after {
    top: 7px;
    right: 8px;
    width: 15px;
    height: 15px;
    border-top-width: 7px;
    border-right-width: 7px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand em {
    font-size: 15px;
  }

  .site-nav.is-open {
    top: 74px;
    left: 14px;
    right: 14px;
  }

  .hero-grid {
    padding: 50px 0 44px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-panel {
    display: none;
  }

  .proof-grid,
  .service-grid,
  .solution-grid,
  .process-grid,
  .industry-list,
  .office-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro,
  .trust-section,
  .services,
  .work,
  .process,
  .industries,
  .offices,
  .cta,
  .showcase,
  .page-section {
    padding: 64px 0;
  }

  .service-card,
  .solution-card,
  .process-grid article,
  .detail-grid,
  .service-link-grid,
  .evidence-grid,
  .case-grid,
  .tech-grid {
    min-height: auto;
  }

  .detail-grid,
  .service-link-grid,
  .evidence-grid,
  .case-grid,
  .tech-grid {
    grid-template-columns: 1fr;
  }

  .quality-list article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-form {
    padding: 20px;
  }

  .legal-main {
    padding: 58px 0;
  }

  .legal-article h1 {
    font-size: 40px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
