:root {
  --ink: #071c26;
  --ink-soft: #15323d;
  --white: #ffffff;
  --surface: #f5f7f8;
  --surface-blue: #eaf0f8;
  --blue: #155eef;
  --blue-dark: #0b46bc;
  --orange: #ff6b00;
  --text: #132b35;
  --muted: #536871;
  --line: #c9d4d8;
  --line-dark: rgba(255, 255, 255, .24);
  --danger: #a12a2a;
  --success: #086642;
  --font: "Afacad Flux", "Helvetica Neue", Arial, sans-serif;
  --shell: 1280px;
  --header-height: 82px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --z-header: 20;
  --z-mobile-cta: 15;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  font-kerning: normal;
  font-optical-sizing: auto;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

::selection {
  background: var(--blue);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.shell {
  margin: 0 auto;
  max-width: var(--shell);
  padding-inline: clamp(22px, 4vw, 58px);
  width: 100%;
}

.skip-link {
  background: var(--white);
  color: var(--ink);
  left: 18px;
  padding: 11px 16px;
  position: fixed;
  top: -90px;
  z-index: 100;
}

.skip-link:focus {
  top: 18px;
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  color: var(--white);
  inset: 0 0 auto;
  position: fixed;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
  z-index: var(--z-header);
}

.site-header.scrolled,
.site-header.menu-visible {
  background: rgba(255, 255, 255, .97);
  border-color: var(--line);
  color: var(--ink);
}

.site-header.scrolled {
  backdrop-filter: blur(12px);
}

.header-inner {
  align-items: center;
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.logo {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 10px;
}

.logo-art {
  background: transparent;
  display: block;
  flex: 0 0 auto;
  height: 44px;
  overflow: hidden;
  position: relative;
  width: 58px;
}

.logo-art img {
  height: auto;
  left: -11px;
  max-width: none;
  position: absolute;
  top: -3px;
  width: 91px;
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo strong {
  font-size: 1rem;
  letter-spacing: .01em;
}

.logo small {
  color: #8eb2ff;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .24em;
  margin-top: 6px;
}

.site-header.scrolled .logo small,
.site-header.menu-visible .logo small {
  color: var(--blue);
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(20px, 2.2vw, 34px);
}

.desktop-nav a {
  color: currentColor;
  font-size: .91rem;
  font-weight: 500;
  opacity: .78;
  position: relative;
  transition: opacity .2s ease;
}

.desktop-nav a::after {
  background: var(--orange);
  bottom: -10px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
  width: 100%;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.active {
  opacity: 1;
}

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

.header-cta {
  border: 1px solid rgba(255, 255, 255, .58);
  font-size: .88rem;
  font-weight: 600;
  padding: 10px 15px;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.header-cta:hover {
  background: var(--white);
  color: var(--ink);
}

.site-header.scrolled .header-cta,
.site-header.menu-visible .header-cta {
  border-color: var(--ink);
}

.site-header.scrolled .header-cta:hover,
.site-header.menu-visible .header-cta:hover {
  background: var(--ink);
  color: var(--white);
}

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

.hero {
  background: var(--ink);
  color: var(--white);
  min-height: min(900px, 100svh);
  overflow: hidden;
  padding: clamp(154px, 19vh, 200px) 0 clamp(64px, 8vh, 92px);
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.025);
  animation: hero-settle 1.15s var(--ease) both;
  width: 100%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 18, 25, .97) 0%, rgba(3, 18, 25, .86) 43%, rgba(3, 18, 25, .35) 75%, rgba(3, 18, 25, .45) 100%),
    linear-gradient(0deg, rgba(3, 18, 25, .5), transparent 48%);
}

.hero::after {
  background-image: linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to right, black, transparent 80%);
  pointer-events: none;
  position: absolute;
}

.hero-layout {
  align-items: end;
  display: grid;
  gap: clamp(56px, 8vw, 130px);
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .62fr);
  position: relative;
  z-index: 1;
}

.hero-copy {
  animation: hero-copy-in .75s .12s var(--ease) both;
}

.hero-context {
  align-items: center;
  color: rgba(255,255,255,.72);
  display: flex;
  flex-wrap: wrap;
  font-size: .81rem;
  gap: 14px;
  letter-spacing: .06em;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.hero-context span {
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  padding: 7px 11px;
}

.hero h1 {
  font-size: clamp(3.25rem, 6.6vw, 6rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .91;
  max-width: 860px;
  text-wrap: balance;
}

.hero-lead {
  color: rgba(255,255,255,.8);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.55;
  margin-top: 32px;
  max-width: 650px;
  text-wrap: pretty;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 42px;
}

.button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-weight: 600;
  justify-content: center;
  min-height: 54px;
  padding: 13px 18px;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.button:active {
  transform: translateY(1px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-dark);
}

.button-secondary {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.text-link {
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-weight: 600;
  padding-bottom: 3px;
}

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

.hero-scope {
  background: rgba(5, 25, 34, .78);
  border-top: 3px solid var(--orange);
  padding: 22px 26px;
}

.hero-scope > p {
  color: rgba(255,255,255,.62);
  font-size: .82rem;
  margin-bottom: 4px;
}

.hero-scope ul {
  list-style: none;
}

.hero-scope li {
  border-bottom: 1px solid rgba(255,255,255,.2);
  display: grid;
  gap: 3px;
  padding: 17px 0;
}

.hero-scope li:last-child {
  border-bottom: 0;
  padding-bottom: 2px;
}

.hero-scope strong {
  font-size: 1.03rem;
  font-weight: 600;
}

.hero-scope span {
  color: rgba(255,255,255,.68);
  font-size: .84rem;
}

.trust-bar {
  background: var(--blue);
  color: var(--white);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-bar p {
  border-left: 1px solid rgba(255,255,255,.28);
  display: flex;
  flex-direction: column;
  min-height: 104px;
  padding: 24px clamp(18px, 2.5vw, 34px);
}

.trust-bar p:last-child {
  border-right: 1px solid rgba(255,255,255,.28);
}

.trust-bar strong {
  font-size: 1.04rem;
  font-weight: 600;
}

.trust-bar span {
  color: rgba(255,255,255,.75);
  font-size: .84rem;
  margin-top: 4px;
}

.section {
  padding-block: clamp(88px, 10vw, 142px);
}

.section-intro {
  color: var(--blue);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.section h2 {
  color: var(--ink);
  font-size: clamp(2.4rem, 4.8vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: .98;
  text-wrap: balance;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: clamp(46px, 8vw, 120px);
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  margin-bottom: clamp(50px, 7vw, 82px);
}

.section-heading > p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 520px;
  text-wrap: pretty;
}

.service-ledger {
  border-top: 2px solid var(--ink);
}

.service-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 160px 120px;
  min-height: 126px;
  padding: 24px 0;
  transition: background .2s ease;
}

.service-row:hover {
  background: var(--surface);
}

.service-row-featured {
  grid-template-columns: minmax(250px, .75fr) minmax(440px, 1.25fr) 120px;
  min-height: 238px;
}

.service-row-featured .orc-service-list {
  column-gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 9px;
}

.service-row-featured .orc-service-list li {
  align-items: start;
  display: flex;
  font-size: .9rem;
  gap: 10px;
  line-height: 1.25;
}

.service-row-featured .orc-service-list li::before {
  border-bottom: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  content: "";
  flex: 0 0 6px;
  height: 11px;
  margin: 0 3px 0 2px;
  transform: rotate(45deg);
  width: 6px;
}

.service-title h3 {
  color: var(--ink);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.08;
}

.service-title p {
  color: var(--muted);
  margin-top: 8px;
  max-width: 650px;
}

.service-row ul {
  display: grid;
  gap: 6px;
  list-style: none;
}

.service-row li {
  color: var(--ink-soft);
  font-size: .94rem;
  font-weight: 600;
}

.service-row li::before {
  color: var(--orange);
  content: "—";
  margin-right: 9px;
}

.service-row li a,
.service-title h3 a {
  text-decoration-color: transparent;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.service-row li a:hover,
.service-row li a:focus-visible,
.service-title h3 a:hover,
.service-title h3 a:focus-visible {
  color: var(--blue);
  text-decoration-color: currentColor;
}

.service-domain {
  color: var(--muted);
  font-size: .85rem;
}

.service-row > a {
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
  font-size: .88rem;
  font-weight: 600;
  justify-self: end;
  padding-bottom: 3px;
}

.document-section {
  background: var(--surface-blue);
}

.document-grid {
  align-items: center;
  display: grid;
  gap: clamp(54px, 8vw, 120px);
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
}

.document-image {
  position: relative;
}

.document-image::before {
  background: var(--orange);
  content: "";
  height: 10px;
  left: -10px;
  position: absolute;
  top: -10px;
  width: 72px;
  z-index: 1;
}

.document-image img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
}

.document-image figcaption {
  color: var(--muted);
  font-size: .82rem;
  margin-top: 12px;
}

.document-copy > p:not(.section-intro) {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 26px;
  max-width: 580px;
}

.deliverables {
  border-top: 2px solid var(--ink);
  margin-top: 38px;
}

.deliverables > div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: 110px 1fr;
  padding: 17px 0;
}

.deliverables dt {
  color: var(--blue);
  font-weight: 600;
}

.deliverables dd {
  color: var(--ink-soft);
}

.process {
  background: var(--ink);
  color: var(--white);
}

.process .section-intro {
  color: #91b6ff;
}

.process h2 {
  color: var(--white);
  max-width: 880px;
}

.process-heading {
  display: grid;
  gap: 30px clamp(50px, 8vw, 120px);
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr);
}

.process-heading .section-intro {
  grid-column: 1 / -1;
  margin: 0;
}

.process-heading > p:last-child {
  align-self: end;
  color: rgba(255,255,255,.67);
  max-width: 500px;
}

.process-list {
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin-top: clamp(56px, 8vw, 92px);
}

.process-list li {
  border-right: 1px solid var(--line-dark);
  min-height: 260px;
  padding: 25px clamp(20px, 2.5vw, 32px) 28px 0;
}

.process-list li + li {
  padding-left: clamp(20px, 2.5vw, 32px);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list span {
  color: var(--orange);
  display: block;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
}

.process-list h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 70px;
}

.process-list p {
  color: rgba(255,255,255,.65);
  font-size: .94rem;
  margin-top: 8px;
}

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

.about-grid {
  align-items: center;
  display: grid;
  gap: clamp(56px, 9vw, 140px);
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
}

.about-image {
  max-width: 500px;
  position: relative;
}

.about-image::after {
  border: 1px solid var(--blue);
  content: "";
  inset: 22px -22px -22px 22px;
  pointer-events: none;
  position: absolute;
}

.about-image img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  width: 100%;
}

.about-lead {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -.015em;
  line-height: 1.35;
  margin-top: 30px;
  max-width: 720px;
}

.about-copy > p:not(.section-intro, .about-lead) {
  color: var(--muted);
  margin-top: 22px;
  max-width: 680px;
}

.company-facts {
  border-top: 2px solid var(--ink);
  margin-top: 42px;
}

.company-facts > div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: 115px 1fr;
  padding: 17px 0;
}

.company-facts dt {
  color: var(--muted);
}

.company-facts dd {
  color: var(--ink);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.company-facts a {
  color: var(--blue);
}

.faq {
  background: var(--surface);
}

.faq-grid {
  display: grid;
  gap: clamp(60px, 10vw, 150px);
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
}

.faq header {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.faq header > p:last-child {
  color: var(--muted);
  margin-top: 24px;
  max-width: 460px;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  align-items: center;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  gap: 24px;
  justify-content: space-between;
  list-style: none;
  padding: 24px 0;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  flex: 0 0 auto;
  height: 18px;
  position: relative;
  width: 18px;
}

.faq-list summary span::before,
.faq-list summary span::after {
  background: var(--blue);
  content: "";
  inset: 50% 0 auto;
  height: 2px;
  position: absolute;
  transition: transform .25s var(--ease);
}

.faq-list summary span::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  color: var(--muted);
  max-width: 700px;
  padding: 0 50px 24px 0;
}

.contact {
  background: var(--ink);
  color: var(--white);
}

.contact .section-intro {
  color: #91b6ff;
}

.contact h2 {
  color: var(--white);
}

.contact-grid {
  display: grid;
  gap: clamp(60px, 9vw, 130px);
  grid-template-columns: minmax(0, .86fr) minmax(450px, 1.14fr);
}

.contact-copy {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 34px);
}

.contact-copy > p:not(.section-intro) {
  color: rgba(255,255,255,.68);
  margin-top: 28px;
  max-width: 550px;
}

.contact-email {
  border-bottom: 2px solid var(--orange);
  display: inline-block;
  font-size: clamp(1rem, 1.55vw, 1.25rem);
  font-weight: 600;
  margin-top: 40px;
  overflow-wrap: anywhere;
  padding-bottom: 5px;
}

.contact address {
  color: rgba(255,255,255,.63);
  font-style: normal;
  margin-top: 34px;
}

.contact-form {
  background: var(--white);
  color: var(--ink);
  padding: clamp(26px, 4vw, 48px);
}

.form-row {
  margin-bottom: 22px;
}

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

label {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 7px;
}

label span {
  color: var(--muted);
  font-weight: 400;
}

input,
select,
textarea {
  background: var(--white);
  border: 1px solid #8da0a8;
  border-radius: 0;
  color: var(--ink);
  min-height: 50px;
  outline: none;
  padding: 12px 13px;
  transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}

textarea {
  min-height: 142px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #5d7078;
  opacity: 1;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 94, 239, .18);
}

.submit-button {
  width: 100%;
}

.form-note {
  font-size: .9rem;
  min-height: 1.45em;
  margin-top: 14px;
}

.form-note.error {
  color: var(--danger);
}

.form-note.success {
  color: var(--success);
}

.message-preview {
  border-top: 2px solid var(--ink);
  margin-top: 26px;
  padding-top: 24px;
}

.message-preview[hidden] {
  display: none;
}

.message-preview > div:first-child p {
  color: var(--muted);
  margin-top: 3px;
}

.preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.preview-actions .button {
  flex: 1 1 180px;
}

.site-footer {
  background: #031117;
  color: var(--white);
  padding: 64px 0 26px;
}

.footer-main {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: 1fr 1fr auto;
}

.logo-footer small {
  color: #91b6ff;
}

.footer-main > p {
  color: rgba(255,255,255,.62);
  max-width: 420px;
}

.footer-main nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-main nav a {
  color: rgba(255,255,255,.74);
  font-size: .9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.19);
  color: rgba(255,255,255,.5);
  display: flex;
  font-size: .78rem;
  justify-content: space-between;
  margin-top: 54px;
  padding-top: 22px;
}

.mobile-contact-bar {
  display: none;
}

@keyframes hero-settle {
  from { opacity: .25; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.025); }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1060px) {
  .desktop-nav {
    gap: 18px;
  }

  .header-cta {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
  }

  .service-row,
  .service-row-featured {
    grid-template-columns: minmax(0, 1fr) 140px 110px;
  }

  .service-row-featured {
    grid-template-columns: minmax(0, 1fr) 110px;
  }

  .service-row-featured .service-title,
  .service-row-featured .orc-service-list {
    grid-column: 1 / -1;
  }

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

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .contact-grid {
    grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }

  body {
    font-size: 16px;
  }

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

  .menu-button {
    align-items: center;
    background: transparent;
    border: 0;
    color: currentColor;
    display: flex;
    flex-direction: column;
    gap: 7px;
    height: 46px;
    justify-content: center;
    width: 46px;
  }

  .menu-button span {
    background: currentColor;
    height: 2px;
    transition: transform .3s var(--ease);
    width: 27px;
  }

  .menu-button.open span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-button.open span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-nav {
    background: var(--white);
    color: var(--ink);
    display: flex;
    flex-direction: column;
    height: calc(100svh - var(--header-height));
    inset: var(--header-height) 0 auto;
    opacity: 0;
    padding: 24px clamp(22px, 4vw, 58px) 30px;
    pointer-events: none;
    position: fixed;
    transform: translateY(-10px);
    transition: opacity .22s ease, transform .3s var(--ease);
    z-index: 1;
  }

  .mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    border-bottom: 1px solid var(--line);
    font-size: 1.45rem;
    font-weight: 600;
    padding: 15px 0;
  }

  .mobile-nav a:last-child {
    color: var(--blue);
    font-size: .95rem;
    margin-top: auto;
    overflow-wrap: anywhere;
  }

  .hero {
    min-height: 820px;
    padding-bottom: 62px;
  }

  .hero-layout {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .hero-scope {
    max-width: 580px;
  }

  .section-heading,
  .document-grid,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    gap: 26px;
  }

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

  .document-image {
    order: 2;
  }

  .document-image img {
    aspect-ratio: auto;
    height: clamp(190px, 48vw, 320px);
    object-position: center 58%;
  }

  .about-image {
    aspect-ratio: 16 / 10;
    max-width: none;
    overflow: visible;
    width: 100%;
  }

  .about-image img {
    aspect-ratio: auto;
    display: block;
    height: 100%;
    object-position: center 62%;
  }

  .faq header,
  .contact-copy {
    position: static;
  }

  .contact-grid {
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .shell {
    padding-inline: 21px;
  }

  .logo-art {
    height: 39px;
    width: 50px;
  }

  .logo-art img {
    left: -9px;
    top: -3px;
    width: 78px;
  }

  .logo strong {
    font-size: .9rem;
  }

  .logo small {
    font-size: .5rem;
  }

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

  .hero-media img {
    object-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 18, 25, .94), rgba(3, 18, 25, .5)),
      linear-gradient(0deg, rgba(3, 18, 25, .75), transparent 60%);
  }

  .hero::after {
    background-size: calc(100% / 4) 100%;
  }

  .hero-context {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 15vw, 4.5rem);
    letter-spacing: -.04em;
    line-height: .9;
  }

  .hero-lead {
    font-size: 1.02rem;
    margin-top: 26px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 34px;
  }

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

  .text-link {
    align-self: flex-start;
  }

  .hero-scope {
    display: none;
  }

  .trust-bar-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar p {
    border-bottom: 1px solid rgba(255,255,255,.28);
    border-left: 0;
    min-height: 0;
    padding: 17px 0;
  }

  .trust-bar p:last-child {
    border-bottom: 0;
    border-right: 0;
  }

  .section {
    padding-block: 78px;
  }

  .section h2 {
    font-size: clamp(2.35rem, 11.5vw, 3.5rem);
  }

  .service-row,
  .service-row-featured {
    align-items: start;
    gap: 13px;
    grid-template-columns: 1fr auto;
    min-height: 0;
    padding: 24px 0;
  }

  .service-title {
    grid-column: 1 / -1;
  }

  .service-row ul {
    grid-column: 1 / -1;
  }

  .service-row-featured .orc-service-list {
    grid-template-columns: 1fr;
  }

  .service-domain {
    align-self: end;
  }

  .service-row > a {
    align-self: end;
  }

  .document-grid {
    gap: 42px;
  }

  .deliverables > div,
  .company-facts > div {
    gap: 5px;
    grid-template-columns: 1fr;
  }

  .process-heading {
    grid-template-columns: 1fr;
  }

  .process-heading .section-intro {
    grid-column: 1;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li + li {
    border-bottom: 1px solid var(--line-dark);
    border-right: 0;
    display: grid;
    gap: 20px;
    grid-template-columns: 52px 1fr;
    min-height: 0;
    padding: 24px 0;
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .process-list span {
    font-size: 2.6rem;
  }

  .process-list h3 {
    margin-top: 0;
  }

  .about-grid {
    gap: 64px;
  }

  .about-image {
    max-width: none;
    width: 100%;
  }

  .about-image::after {
    inset: 14px -14px -14px 14px;
  }

  .faq-list summary {
    font-size: 1.08rem;
    gap: 16px;
  }

  .faq-list details p {
    padding-right: 10px;
  }

  .contact {
    padding-bottom: 110px;
  }

  .contact-form {
    margin-inline: -21px;
    padding: 24px 21px 28px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }

  .mobile-contact-bar {
    background: var(--orange);
    bottom: 0;
    color: var(--ink);
    display: block;
    font-weight: 700;
    left: 0;
    min-height: 54px;
    padding: 14px 18px;
    position: fixed;
    text-align: center;
    width: 100%;
    z-index: var(--z-mobile-cta);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

body.cookie-dialog-open {
  overflow: hidden;
}

.cookie-banner[hidden],
.cookie-dialog-backdrop[hidden] {
  display: none !important;
}

.footer-cookie-button {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.footer-cookie-button:hover {
  color: var(--orange);
}

.cookie-banner {
  align-items: end;
  background: var(--white);
  border: 1px solid var(--ink);
  bottom: 18px;
  box-shadow: 0 24px 70px rgba(3, 18, 25, .22);
  display: grid;
  gap: clamp(24px, 4vw, 58px);
  grid-template-columns: minmax(0, 1fr) auto;
  left: max(18px, calc((100vw - var(--shell)) / 2 + 24px));
  padding: clamp(22px, 3vw, 34px);
  position: fixed;
  right: max(18px, calc((100vw - var(--shell)) / 2 + 24px));
  z-index: 100;
}

.cookie-banner-copy {
  max-width: 760px;
}

.cookie-kicker {
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.cookie-banner h2,
.cookie-dialog h2 {
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1;
}

.cookie-banner-copy > p:last-child,
.cookie-dialog > p {
  color: var(--muted);
  margin-top: 13px;
}

.cookie-banner a,
.cookie-dialog a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.cookie-banner-actions,
.cookie-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-button {
  align-items: center;
  border: 1px solid var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: .86rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: .025em;
  min-height: 48px;
  padding: 12px 18px;
}

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

.cookie-button-primary:hover {
  background: var(--blue);
  border-color: var(--blue);
}

.cookie-button-secondary {
  background: var(--white);
  color: var(--ink);
}

.cookie-button-secondary:hover {
  background: var(--surface);
}

.cookie-dialog-backdrop {
  align-items: center;
  background: rgba(3, 18, 25, .72);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 22px;
  position: fixed;
  z-index: 110;
}

.cookie-dialog {
  background: var(--white);
  border-top: 7px solid var(--blue);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .32);
  max-height: min(760px, calc(100vh - 44px));
  max-width: 680px;
  overflow-y: auto;
  padding: clamp(24px, 5vw, 46px);
  width: 100%;
}

.cookie-dialog-header {
  align-items: start;
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.cookie-dialog-close {
  background: var(--surface);
  border: 1px solid var(--line);
  cursor: pointer;
  flex: 0 0 44px;
  height: 44px;
  position: relative;
  width: 44px;
}

.cookie-dialog-close span {
  background: var(--ink);
  height: 1px;
  left: 11px;
  position: absolute;
  top: 21px;
  width: 20px;
}

.cookie-dialog-close span:first-child {
  transform: rotate(45deg);
}

.cookie-dialog-close span:last-child {
  transform: rotate(-45deg);
}

.cookie-category {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 24px;
}

.cookie-category + .cookie-category {
  margin-top: 20px;
}

.cookie-category strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.cookie-category p {
  color: var(--muted);
  font-size: .94rem;
  margin-top: 4px;
}

.cookie-status {
  color: var(--success);
  flex: 0 0 auto;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.cookie-category-toggle {
  cursor: pointer;
}

.cookie-switch {
  flex: 0 0 54px;
  height: 30px;
  position: relative;
}

.cookie-switch input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.cookie-switch > span {
  background: var(--line);
  border: 1px solid var(--muted);
  display: block;
  height: 30px;
  position: relative;
  transition: background .2s ease;
  width: 54px;
}

.cookie-switch > span::after {
  background: var(--white);
  border: 1px solid var(--ink);
  content: "";
  height: 22px;
  left: 3px;
  position: absolute;
  top: 3px;
  transition: transform .2s ease;
  width: 22px;
}

.cookie-switch input:checked + span {
  background: var(--blue);
  border-color: var(--blue);
}

.cookie-switch input:checked + span::after {
  transform: translateX(24px);
}

.cookie-switch input:focus-visible + span {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.cookie-dialog-note {
  background: var(--surface-blue);
  border-left: 4px solid var(--blue);
  color: var(--ink) !important;
  font-size: .92rem;
  padding: 14px 16px;
}

.cookie-dialog-actions {
  border-top: 1px solid var(--line);
  justify-content: flex-end;
  margin-top: 30px;
  padding-top: 24px;
}

@media (max-width: 900px) {
  .cookie-banner {
    align-items: stretch;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .cookie-banner {
    bottom: 8px;
    left: 8px;
    max-height: calc(100vh - 16px);
    overflow-y: auto;
    padding: 20px;
    right: 8px;
  }

  .cookie-banner-actions,
  .cookie-dialog-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-button {
    width: 100%;
  }

  .cookie-dialog-backdrop {
    align-items: end;
    padding: 8px;
  }

  .cookie-dialog {
    max-height: calc(100vh - 16px);
    padding: 24px 20px;
  }

  .cookie-category {
    align-items: start;
  }
}
