:root {
  --ink: #050506;
  --panel: #0a0b0d;
  --paper: #f4f3f0;
  --muted: #9a968b;
  --blue: #7e96c2;
  --line: rgba(244, 243, 240, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Hanken Grotesk", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
::selection {
  background: var(--blue);
  color: var(--ink);
}
.scrollrail {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 85;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  pointer-events: none;
}
.scrollrail span {
  display: block;
  width: 10px;
  height: 1.5px;
  background: rgba(244, 243, 240, 0.18);
  transition:
    width 0.3s,
    background 0.3s;
}
@keyframes grain {
  0%,
  100% {
    transform: translate(0);
  }
  25% {
    transform: translate(-2%, 1%);
  }
  50% {
    transform: translate(1%, -2%);
  }
  75% {
    transform: translate(2%, 2%);
  }
}
@keyframes drift {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  50% {
    opacity: 0.8;
    transform: scale(1.08);
  }
}
.grain {
  position: fixed;
  inset: -60px;
  z-index: 90;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.9s steps(5) infinite;
}
.site-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 80;
  width: min(720px, calc(100% - 32px));
  height: 62px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 3vw, 28px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.site-nav img {
  height: 30px;
  max-width: min(190px, 52vw);
  width: auto;
  display: block;
}
.nav-icon,
.menu-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  color: var(--paper);
  cursor: pointer;
}
.menu-button {
  gap: 0;
}
.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--paper);
  transition: 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.menu-button span + span {
  margin-top: 6px;
}
.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}
.menu {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 75;
  width: min(720px, calc(100% - 32px));
  max-height: 62px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  scrollbar-width: none;
  transition:
    max-height 0.55s cubic-bezier(0.65, 0, 0.35, 1),
    opacity 0.25s;
}
.menu::-webkit-scrollbar {
  display: none;
}
.menu.open {
  max-height: min(800px, calc(100svh - 32px));
  overflow-y: auto;
  opacity: 1;
  pointer-events: auto;
}
.menu-inner {
  padding-top: 66px;
}
.menu a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 26px;
  border-top: 1px solid var(--line);
  transition:
    background 0.25s,
    color 0.25s;
}
.menu a:hover,
.menu a[aria-current="page"] {
  background: rgba(126, 150, 194, 0.09);
  color: var(--blue);
}
.menu strong {
  font-size: clamp(24px, 4vw, 38px);
  text-transform: uppercase;
}
.menu small,
.eyebrow,
.mono {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
}
.menu small {
  color: var(--muted);
}
.menu-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 26px 18px;
}
.menu .menu-sub a {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: none;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
}
.menu .menu-sub a:hover,
.menu .menu-sub a[aria-current="page"] {
  background: rgba(126, 150, 194, 0.14);
  border-color: var(--blue);
  color: var(--blue);
}
.gurmukhi {
  font-family: "Noto Sans Gurmukhi", "Hanken Grotesk", sans-serif;
  font-weight: 400;
}
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 150px clamp(20px, 5vw, 72px) clamp(70px, 10vh, 110px);
  border-bottom: 1px solid var(--line);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(0.25) contrast(1.08);
  will-change: opacity;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(5, 5, 6, 0.35),
      rgba(5, 5, 6, 0.76) 68%,
      #050506
    ),
    radial-gradient(
      circle at 72% 35%,
      rgba(126, 150, 194, 0.22),
      transparent 34%
    );
}
.orbit {
  position: absolute;
  width: min(70vw, 880px);
  aspect-ratio: 1;
  right: -16vw;
  top: -10vw;
  border: 1px solid rgba(244, 243, 240, 0.08);
  border-radius: 50%;
  animation: drift 90s linear infinite;
}
.orbit:before,
.orbit:after {
  content: "";
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(126, 150, 194, 0.12);
  border-radius: 50%;
  transform: rotate(48deg) scaleY(0.45);
}
.orbit:after {
  inset: 31%;
  transform: rotate(-32deg) scaleX(0.5);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin-inline: auto;
}
.eyebrow {
  color: var(--blue);
  margin-bottom: 24px;
}
.hero h1 {
  max-width: 14ch;
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  font-size: clamp(58px, 11vw, 150px);
  line-height: 0.86;
  letter-spacing: -0.045em;
}
.hero h1 em {
  font-weight: 400;
  color: var(--blue);
}
.hero-copy {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 480px);
  gap: 40px;
  align-items: end;
  margin-top: clamp(34px, 6vh, 70px);
}
.hero-copy p {
  grid-column: 2;
  margin: 0;
  color: #c9c5ba;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}
.breadcrumbs {
  position: absolute;
  z-index: 3;
  left: max(clamp(20px, 5vw, 72px), calc((100vw - 1180px) / 2));
  top: 110px;
  color: var(--muted);
}
.breadcrumbs a:hover {
  color: var(--paper);
}
.subnav {
  position: sticky;
  top: 92px;
  z-index: 20;
  margin: -28px auto 0;
  width: min(660px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 6px;
  background: rgba(10, 11, 13, 0.9);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.subnav a {
  text-align: center;
  padding: 11px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  transition: 0.25s;
}
.subnav a:hover,
.subnav a[aria-current="page"] {
  background: var(--blue);
  color: var(--ink);
}
.section {
  padding: clamp(90px, 13vh, 160px) clamp(20px, 5vw, 72px);
}
.section-inner {
  max-width: 1180px;
  margin: auto;
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(44px, 8vw, 120px);
}
.section h2 {
  margin: 0;
  font:
    400 clamp(40px, 6vw, 82px) / 0.98 "Newsreader",
    Georgia,
    serif;
  letter-spacing: -0.03em;
}
.lede {
  margin: 0;
  color: #c9c5ba;
  font-size: clamp(20px, 2.2vw, 29px);
  line-height: 1.4;
}
.body-copy {
  max-width: 68ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.body-copy p:first-child {
  margin-top: 0;
}
.split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: clamp(50px, 8vh, 90px);
}
.arm-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    145deg,
    rgba(244, 243, 240, 0.055),
    rgba(244, 243, 240, 0.015)
  );
  transition:
    transform 0.45s cubic-bezier(0.25, 1, 0.3, 1),
    border-color 0.3s;
}
.arm-card:hover {
  transform: translateY(-6px);
  border-color: rgba(126, 150, 194, 0.65);
}
.arm-card.sikhi {
  background:
    radial-gradient(
      circle at 85% 8%,
      rgba(126, 150, 194, 0.32),
      transparent 35%
    ),
    #101116;
}
.arm-card .number {
  color: var(--muted);
}
.arm-card h3 {
  margin: auto 0 20px;
  font:
    400 clamp(42px, 6vw, 78px) / 0.95 "Newsreader",
    Georgia,
    serif;
}
.arm-card p {
  max-width: 43ch;
  margin: 0 0 30px;
  color: #b8b4aa;
  line-height: 1.65;
}
.arm-card .mark {
  position: absolute;
  right: -12px;
  top: -20px;
  font-size: 190px;
  font-weight: 800;
  color: rgba(244, 243, 240, 0.04);
}
.text-link {
  width: max-content;
  color: var(--blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-bottom: 1px solid rgba(126, 150, 194, 0.5);
  padding-bottom: 5px;
}
.text-link:hover {
  color: var(--paper);
  border-color: var(--paper);
}
.values {
  background: var(--paper);
  color: var(--ink);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: rgba(5, 5, 6, 0.15);
  border: 1px solid rgba(5, 5, 6, 0.15);
}
.value {
  background: var(--paper);
  padding: clamp(28px, 4vw, 48px);
}
.value span {
  color: #536b99;
}
.value h3 {
  font:
    400 32px/1.1 "Newsreader",
    Georgia,
    serif;
  margin: 44px 0 15px;
}
.value p {
  color: #5f5c55;
  line-height: 1.6;
  margin: 0;
}
.statement {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.statement:before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(126, 150, 194, 0.18);
  filter: blur(80px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 5s ease-in-out infinite;
}
.statement blockquote {
  position: relative;
  max-width: 18ch;
  margin: 0 auto;
  font:
    400 clamp(38px, 6vw, 82px) / 1.05 "Newsreader",
    Georgia,
    serif;
}
.statement blockquote em {
  color: var(--blue);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(48px, 7vh, 80px);
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(26px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  background: rgba(244, 243, 240, 0.025);
  transition:
    transform 0.45s cubic-bezier(0.25, 1, 0.3, 1),
    border-color 0.3s,
    background 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  background: rgba(126, 150, 194, 0.08);
}
.service-card:last-child:nth-child(odd) {
  grid-column: 1/-1;
}
.service-card .service-number {
  color: var(--muted);
}
.service-card h3 {
  margin: auto 0 16px;
  font:
    400 clamp(38px, 5vw, 64px) / 0.95 "Newsreader",
    Georgia,
    serif;
}
.service-card p {
  max-width: 58ch;
  margin: 0 0 28px;
  color: var(--muted);
  line-height: 1.65;
}
.service-card:before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(126, 150, 194, 0.22),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover:before {
  opacity: 1;
}
.detail-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(50px, 9vw, 130px);
}
.capability-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.capability-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
  color: #c9c5ba;
}
.capability-list span {
  color: var(--blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: rgba(5, 5, 6, 0.15);
  border: 1px solid rgba(5, 5, 6, 0.15);
}
.process-step {
  min-height: 290px;
  background: var(--paper);
  padding: clamp(24px, 3vw, 38px);
  display: flex;
  flex-direction: column;
}
.process-step span {
  color: #536b99;
}
.card-icon {
  display: block;
  width: 36px;
  height: 36px;
  margin-top: 34px;
  background: #536b99;
  -webkit-mask: var(--card-icon) center / contain no-repeat;
  mask: var(--card-icon) center / contain no-repeat;
}
.value .card-icon {
  margin-top: 32px;
}
.value .card-icon + h3 {
  margin-top: 24px;
}
.process-step .card-icon {
  flex: 0 0 auto;
}
.process-step h3 {
  margin: 24px 0 14px;
  font:
    400 28px/1.1 "Newsreader",
    Georgia,
    serif;
}
.process-step p {
  margin: 0;
  color: #5f5c55;
  line-height: 1.55;
  font-size: 15px;
}
.faq-list {
  max-width: 900px;
  margin: 50px 0 0 auto;
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 42px 24px 0;
  font:
    400 clamp(22px, 2.6vw, 32px) / 1.25 "Newsreader",
    Georgia,
    serif;
  position: relative;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  position: absolute;
  right: 4px;
  color: var(--blue);
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list details p {
  max-width: 65ch;
  margin: 0;
  padding: 0 40px 26px 0;
  color: var(--muted);
  line-height: 1.7;
}
.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: space-between;
  gap: clamp(40px, 8vw, 110px);
}
.legal-toc {
  position: sticky;
  top: 120px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.legal-toc a {
  color: var(--muted);
  font-size: 14px;
}
.legal-toc a:hover {
  color: var(--blue);
}
.legal-copy h2 {
  margin: 70px 0 20px;
  font-size: clamp(32px, 4vw, 50px);
  scroll-margin-top: 110px;
}
.legal-copy h2:first-child {
  margin-top: 0;
}
.legal-copy h3 {
  margin: 30px 0 12px;
  font:
    400 26px/1.2 "Newsreader",
    Georgia,
    serif;
}
.legal-copy p,
.legal-copy li {
  color: #aaa69d;
  line-height: 1.75;
}
.legal-copy a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-copy .notice {
  border: 1px solid rgba(126, 150, 194, 0.45);
  background: rgba(126, 150, 194, 0.08);
  padding: 20px;
  border-radius: 14px;
  color: #c9c5ba;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}
.contact-aside {
  position: sticky;
  top: 120px;
}
.contact-aside p {
  color: var(--muted);
  line-height: 1.7;
}
.contact-direct {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 12%, rgba(126, 150, 194, 0.16), transparent 36%),
    rgba(244, 243, 240, 0.025);
}
.contact-direct-email {
  max-width: 100%;
  margin: 26px 0 22px;
  border-bottom: 1px solid rgba(244, 243, 240, 0.22);
  font: 400 clamp(27px, 4vw, 54px) / 1.1 "Newsreader", Georgia, serif;
  overflow-wrap: anywhere;
}
.contact-direct-email:hover {
  color: var(--blue);
}
.contact-direct p {
  max-width: 52ch;
  margin: 0 0 30px;
  color: var(--muted);
  line-height: 1.7;
}
.contact-direct small {
  margin-top: 24px;
  color: #77746c;
  font-size: 12px;
  line-height: 1.5;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(48px, 7vh, 78px);
  background: var(--line);
  border: 1px solid var(--line);
}
.service-detail {
  min-height: 310px;
  background: var(--ink);
  padding: clamp(28px, 4vw, 46px);
  display: flex;
  flex-direction: column;
}
.service-detail .mono {
  color: var(--blue);
}
.service-detail h3 {
  margin: 42px 0 14px;
  font:
    400 clamp(28px, 3.4vw, 42px) / 1.05 "Newsreader",
    Georgia,
    serif;
}
.service-detail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.service-detail .detail-output {
  margin-top: auto;
  padding-top: 26px;
  color: #c9c5ba;
  font:
    11px "IBM Plex Mono",
    monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.service-detail .detail-output strong {
  color: var(--blue);
  font-weight: 400;
}
.deliverables {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}
.deliverable {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 36px);
  background: rgba(244, 243, 240, 0.025);
}
.deliverable span {
  color: var(--blue);
}
.deliverable h3 {
  margin: 34px 0 12px;
  font:
    400 29px/1.1 "Newsreader",
    Georgia,
    serif;
}
.deliverable p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.engagement-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 50px;
  border: 1px solid var(--line);
  background: var(--line);
}
.engagement-item {
  background: var(--ink);
  padding: 28px;
}
.engagement-item strong {
  display: block;
  margin-bottom: 9px;
  font:
    400 23px "Newsreader",
    Georgia,
    serif;
}
.engagement-item span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.process-step .process-output {
  display: block;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(5, 5, 6, 0.14);
  color: #536b99;
  font:
    10px "IBM Plex Mono",
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cta {
  border-top: 1px solid var(--line);
  text-align: center;
}
.cta h2 {
  max-width: 14ch;
  margin: 0 auto 30px;
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: 0.25s;
}
.pill:hover {
  background: var(--blue);
  transform: translateY(-2px);
}
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(56px, 8vh, 90px) clamp(20px, 5vw, 72px) 30px;
}
.footer-inner {
  max-width: 1180px;
  margin: auto;
}
.footer-email {
  font:
    400 clamp(28px, 5vw, 68px) / 1.1 "Newsreader",
    Georgia,
    serif;
  border-bottom: 1px solid var(--line);
}
.footer-email:hover {
  color: var(--blue);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 38px;
  margin: 70px 0;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.footer-col a:hover {
  color: var(--blue);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: #6e6b62;
  font:
    11px "IBM Plex Mono",
    monospace;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.25, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .process-grid,
  .deliverables {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .engagement-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .detail-grid,
  .legal-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .legal-toc {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-aside {
    position: static;
  }
}
@media (max-width: 760px) {
  .scrollrail {
    right: 6px;
    transform: translateY(-50%) scale(0.72);
    transform-origin: right center;
  }
  .hero {
    min-height: 84svh;
    padding: 132px 20px 62px;
  }
  .hero h1 {
    font-size: clamp(46px, 15vw, 70px);
    line-height: 0.9;
    max-width: 11ch;
  }
  .hero-copy {
    margin-top: 30px;
    gap: 0;
  }
  .hero-copy p {
    font-size: 16px;
  }
  .hero-copy,
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy p {
    grid-column: 1;
  }
  .split-cards,
  .values-grid,
  .service-grid,
  .service-detail-grid,
  .process-grid,
  .deliverables,
  .engagement-strip {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 72px 20px;
  }
  .section h2 {
    font-size: clamp(36px, 12vw, 52px);
  }
  .intro-grid,
  .detail-grid,
  .contact-layout {
    gap: 34px;
  }
  .lede {
    font-size: 19px;
  }
  .service-card:last-child:nth-child(odd) {
    grid-column: auto;
  }
  .service-card {
    min-height: 350px;
  }
  .service-detail {
    min-height: 0;
  }
  .arm-card {
    min-height: 430px;
  }
  .subnav {
    top: 88px;
    width: calc(100% - 24px);
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: start;
    overflow-x: auto;
    scrollbar-width: none;
    border-radius: 16px;
    padding: 5px;
  }
  .subnav::-webkit-scrollbar {
    display: none;
  }
  .subnav a {
    min-width: max-content;
    padding: 10px 14px;
    font-size: 12px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > :first-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .footer {
    padding: 54px 20px 26px;
  }
  .footer-grid {
    margin: 52px 0;
    gap: 30px;
  }
  .footer-email {
    overflow-wrap: anywhere;
  }
  .breadcrumbs {
    top: 98px;
    left: 20px;
    max-width: calc(100% - 54px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .legal-toc {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .site-nav {
    top: 10px;
    width: calc(100% - 20px);
    height: 58px;
    padding-inline: 12px;
  }
  .site-nav img {
    height: 26px;
  }
  .menu {
    top: 10px;
    width: calc(100% - 20px);
  }
  .menu.open {
    max-height: calc(100svh - 20px);
  }
  .menu-inner {
    padding-top: 62px;
  }
  .menu a {
    padding: 14px 18px;
  }
  .menu strong {
    font-size: 22px;
  }
  .menu-sub {
    padding: 11px 18px 14px;
    gap: 7px;
  }
  .menu .menu-sub a {
    padding: 7px 12px;
    font-size: 10px;
  }
  .footer-grid,
  .legal-toc {
    grid-template-columns: 1fr;
  }
  .footer-grid > :first-child {
    grid-column: auto;
  }
}
@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;
  }
}
