@font-face {
  font-family: 'DM Sans';
  src: url('./assets/dm-sans-variable.ttf') format('truetype');
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('./assets/manrope-variable.ttf') format('truetype');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #071427;
  --ink: #f6f8ff;
  --muted: #b2c4db;
  --blue: #73caff;
  --brand: #0565f8;
  --panel: #081526;
  --line: #ffffff24;
  --surface: #ffffff07;
  --veil: 5, 15, 30;
  --nav: #07142770;
  --error: #ff9a8b;
  color-scheme: dark;
}
:root[data-theme='light'] {
  --bg: #e9eef3;
  --ink: #092344;
  --muted: #425d77;
  --blue: #0463e6;
  --brand: #0565f8;
  --panel: #f5f7fa;
  --line: #12345326;
  --surface: #00235404;
  --veil: 243, 246, 249;
  --nav: #f6f9fa80;
  --error: #b3261e;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', Arial, sans-serif;
  transition:
    color 0.65s,
    background 0.65s;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 6px;
}
::selection {
  background: var(--brand);
  color: white;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: 'Manrope', Arial, sans-serif;
}
em {
  font-style: normal;
  color: var(--blue);
}
#landscape {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--bg);
}
#landscape canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(var(--veil), 0.83),
      rgba(var(--veil), 0.56) 29%,
      rgba(var(--veil), 0.05) 67%
    ),
    linear-gradient(0deg, rgba(var(--veil), 0.6), transparent 24%);
  transition: opacity 0.6s;
}
.site-header {
  height: 96px;
  padding: 0 5.7%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--nav);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: background 0.65s;
}
.brand {
  display: block;
  flex-shrink: 0;
}
.brand-crop {
  position: relative;
  display: block;
  width: 132px;
  height: 32px;
  overflow: hidden;
  mix-blend-mode: screen;
}
.brand-crop img {
  position: absolute;
  max-width: none;
  width: 213.9%;
  height: auto;
  left: -56.9%;
  top: -126px;
  filter: grayscale(1) invert(1) contrast(8);
}
[data-theme='light'] .brand-crop {
  mix-blend-mode: multiply;
}
[data-theme='light'] .brand-crop img {
  filter: none;
}
.main-nav {
  display: flex;
  gap: 36px;
  margin-inline-start: auto;
  margin-inline-end: 35px;
  font-size: 14px;
}
.main-nav a {
  transition: color 0.2s;
}
.main-nav a:hover {
  color: var(--blue);
}
.header-actions {
  display: flex;
  gap: 25px;
  align-items: center;
}
.icon-button {
  border: 0;
  background: transparent;
  padding: 8px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}
.icon-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
}
.header-contact {
  display: flex;
  gap: 25px;
  align-items: center;
  font-size: 14px;
  background: var(--brand);
  color: white;
  border-radius: 5px;
  padding: 14px 20px;
}
.header-contact span {
  font-size: 18px;
}
.menu-toggle {
  display: none;
}
.hero {
  min-height: 830px;
  height: 100svh;
  padding: 170px 5.7% 130px;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-copy {
  max-width: 750px;
  width: 60%;
}
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.1px;
  color: var(--blue);
  display: flex;
  gap: 14px;
  align-items: center;
  line-height: 1.6;
}
.rule {
  display: block;
  width: 29px;
  height: 1px;
  background: var(--blue);
}
h1 {
  font-size: clamp(57px, 5.7vw, 99px);
  font-weight: 550;
  line-height: 1.06;
  letter-spacing: -4.8px;
  margin: 25px 0 30px;
}
h1 em {
  font-weight: 450;
}
.hero-copy > p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 35px;
}
.button {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 53px;
  padding: 17px 23px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition:
    transform 0.25s,
    background 0.25s,
    box-shadow 0.25s;
}
.button-primary {
  background: var(--brand);
  color: white;
}
.button-primary:hover,
.header-contact:hover {
  background: #227eff;
  box-shadow: 0 8px 35px #0369ff35;
}
.button:hover {
  transform: translateY(-2px);
}
.button span {
  font-size: 19px;
}
.button-text {
  background: transparent;
  color: var(--ink);
  padding-inline-start: 10px;
}
.button-text span {
  color: var(--blue);
}
.location {
  position: absolute;
  inset-inline-end: 8%;
  bottom: 20%;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  letter-spacing: 2px;
}
.location-cross {
  font-size: 36px;
  font-weight: 300;
  color: var(--blue);
}
.location small {
  display: block;
  font-size: 12px;
  letter-spacing: 0;
  color: var(--muted);
  margin-top: 9px;
}
.hero-footer {
  position: absolute;
  bottom: 65px;
  left: 5.7%;
  right: 5.7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 1.4px;
  color: var(--muted);
}
.scroll-hint {
  display: flex;
  gap: 15px;
  align-items: center;
  color: var(--ink);
}
.scroll-hint > span {
  width: 33px;
  height: 43px;
  border: 1px solid var(--line);
  border-radius: 30px;
  display: grid;
  place-items: center;
  font-size: 18px;
}
.hero-legend {
  display: flex;
  gap: 12px;
  align-items: center;
}
.hero-legend i {
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: var(--blue);
  box-shadow: 0 0 15px var(--blue);
}
.story-section {
  position: relative;
  height: 115svh;
  min-height: 830px;
  display: flex;
  align-items: center;
  padding: 130px 8.5%;
}
.story-copy {
  width: 440px;
  max-width: 48%;
}
.story-copy h2 {
  font-size: clamp(44px, 4.25vw, 70px);
  font-weight: 500;
  letter-spacing: -3px;
  line-height: 1.12;
  margin: 24px 0 26px;
}
.story-copy > p {
  font-size: 18px;
  line-height: 1.75;
  max-width: 400px;
}
.story-copy .secondary-copy {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 15px;
}
.service-list {
  padding: 0;
  margin: 25px 0;
  list-style: none;
  max-width: 390px;
}
.service-list li {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
}
.service-list li:before {
  content: '+';
  font-weight: 300;
  color: var(--blue);
  font-size: 18px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 0;
}
.text-link span {
  font-size: 20px;
  color: var(--blue);
}
.text-link:hover {
  color: var(--blue);
}
.chapter-caption {
  position: absolute;
  inset-inline-end: 8.5%;
  bottom: 17%;
  display: flex;
  align-items: center;
  gap: 23px;
}
.chapter-caption > span {
  font-size: 12px;
  color: var(--blue);
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 10px 14px;
}
.chapter-caption p {
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 1.9;
  color: var(--muted);
}
.journey-rail {
  position: fixed;
  inset-inline-end: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 20;
  transition: opacity 0.3s;
}
.journey-rail a {
  width: 13px;
  height: 13px;
  border-inline-end: 2px solid var(--line);
  position: relative;
}
.journey-rail a.active {
  border-color: var(--blue);
}
.journey-rail a span {
  position: absolute;
  inset-inline-end: 21px;
  font-size: 10px;
  color: var(--blue);
  opacity: 0;
}
.journey-rail a.active span,
.journey-rail a:hover span {
  opacity: 1;
}
.experience-controls {
  position: fixed;
  bottom: 20px;
  inset-inline-end: 5.7%;
  display: flex;
  gap: 15px;
  align-items: center;
  z-index: 21;
}
.experience-controls button {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  padding: 6px 0;
  font-size: 11px;
  color: var(--muted);
}
.experience-controls button:hover {
  color: var(--blue);
}
.control-symbol {
  font-size: 14px;
  min-width: 14px;
}
.controls-divider {
  height: 12px;
  width: 1px;
  background: var(--line);
}
.sound-bars {
  display: flex;
  gap: 2px;
  align-items: center;
  height: 16px;
}
.sound-bars i {
  width: 2px;
  background: currentColor;
  height: 4px;
}
.sound-bars i:nth-child(2) {
  height: 11px;
}
.sound-bars i:nth-child(3) {
  height: 7px;
}
.sound-bars i:nth-child(4) {
  height: 13px;
}
#sound-toggle[aria-pressed='true'] .sound-bars i {
  animation: equalize 0.7s ease infinite alternate;
}
#sound-toggle[aria-pressed='true'] .sound-bars i:nth-child(2) {
  animation-delay: 0.2s;
}
#sound-toggle[aria-pressed='true'] .sound-bars i:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes equalize {
  to {
    height: 3px;
  }
}
.panel-section {
  background: var(--panel);
  position: relative;
  padding: 100px 8.5%;
  border-top: 1px solid var(--line);
  transition: background 0.65s;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  column-gap: 70px;
  align-items: center;
}
.section-heading .eyebrow {
  grid-column: 1/-1;
}
.section-heading h2,
.approach h2,
.contact h2 {
  font-size: clamp(44px, 4.4vw, 74px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -3px;
  margin: 28px 0;
}
.section-heading > p {
  max-width: 360px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  justify-self: end;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.industry-grid > a {
  padding: 32px 32px 35px 0;
  position: relative;
  transition: background 0.3s;
}
.industry-grid > a + a {
  border-inline-start: 1px solid var(--line);
  padding-inline-start: 32px;
}
.industry-number {
  font-size: 12px;
  color: var(--blue);
}
.industry-grid h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.8px;
  margin: 45px 0 15px;
}
.industry-grid p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}
.industry-arrow {
  position: absolute;
  inset-inline-end: 25px;
  top: 27px;
  font-size: 25px;
  color: var(--blue);
  transition: transform 0.3s;
}
.industry-grid a:hover .industry-arrow {
  transform: translate(4px, -4px);
}
.industry-grid a:hover {
  background: var(--surface);
}
.approach {
  padding-top: 85px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 42px;
}
.process-grid article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.process-grid article > span {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--blue);
}
.process-grid h3 {
  font-size: 23px;
  letter-spacing: -0.7px;
  font-weight: 500;
  margin: 30px 0 15px;
}
.process-grid p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}
.oman-statement {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 50px;
  margin-top: 90px;
}
.oman-statement > span {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--muted);
}
.oman-statement p {
  font-family: Manrope, sans-serif;
  font-size: 29px;
  letter-spacing: -0.8px;
  line-height: 1.5;
}
.oman-statement p em {
  color: var(--muted);
}
.contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 90px;
  padding-top: 115px;
  padding-bottom: 120px;
}
.contact h2 {
  font-size: clamp(48px, 5.5vw, 86px);
}
.contact-copy > p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
}
form {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
label {
  font-size: 14px;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 15px;
  color: var(--ink);
  font-size: 16px;
  border-radius: 4px;
  resize: vertical;
}
select {
  margin-bottom: 10px;
}
select option {
  background: var(--panel);
}
textarea::placeholder {
  color: var(--muted);
}
form > .button {
  margin-top: 5px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.field-optional {
  color: var(--muted);
  font-size: 12px;
  text-transform: lowercase;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--error);
}
.field-error {
  font-size: 12px;
  line-height: 1.6;
  color: var(--error);
}
/* Kept in the accessibility tree's blind spot rather than display:none, because
   some bots skip hidden inputs and we want them to fill this one in. Clipped in
   place rather than pushed off-screen: a negative offset scrolls the page by
   that amount once the document direction is RTL. */
.field-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.is-sending {
  cursor: progress;
}
#form-submit[disabled] {
  opacity: 0.6;
  cursor: progress;
}
#form-status[data-tone='ok'] {
  color: var(--blue);
}
#form-status[data-tone='error'] {
  color: var(--error);
}
#download-brief {
  align-self: start;
  padding-inline-start: 0;
  font-size: 13px;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.site-footer {
  position: relative;
  background: var(--panel);
  padding: 35px 5.7% 65px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: 12px;
  color: var(--muted);
}
.site-footer p {
  font-size: 14px;
}
.site-footer > span {
  margin-inline-start: auto;
}
.site-footer > a:last-child {
  color: var(--ink);
}
.loading {
  position: fixed;
  bottom: 25px;
  inset-inline-start: 5.7%;
  z-index: 25;
  width: 230px;
  padding: 15px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: opacity 0.5s;
  pointer-events: none;
}
.loading-track {
  height: 2px;
  background: var(--line);
  overflow: hidden;
  margin-bottom: 10px;
}
.loading-track span {
  display: block;
  width: 2%;
  height: 100%;
  background: var(--blue);
  transition: width 0.25s;
}
.loading p {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: 1px;
}
.loading.done {
  opacity: 0;
}
.skip {
  position: fixed;
  inset-inline-start: 20px;
  top: -100px;
  background: var(--brand);
  color: white;
  padding: 14px;
  z-index: 100;
}
.skip:focus {
  top: 15px;
}
.no-script {
  position: fixed;
  bottom: 20px;
  inset-inline-start: 20px;
  background: var(--panel);
  padding: 20px;
  z-index: 50;
  font-size: 14px;
  max-width: 350px;
}
.explore-help {
  position: fixed;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  text-align: center;
  white-space: nowrap;
}
.explore-help[hidden] {
  display: none;
}
.explore-help p {
  font-size: 13px;
  margin-bottom: 15px;
}
.exploring main,
.exploring .location,
.exploring .journey-rail,
.exploring .site-footer {
  visibility: hidden;
}
.exploring .atmosphere {
  opacity: 0;
}
.exploring .site-header {
  background: transparent;
  backdrop-filter: none;
  border: 0;
}
.exploring .main-nav,
.exploring .header-contact {
  visibility: hidden;
}
.exploring #landscape {
  z-index: 0;
}
.scene-unavailable {
  background: radial-gradient(ellipse at 70% 60%, #0668b850, transparent 70%), var(--bg) !important;
}
@media (min-width: 1900px) {
  h1 {
    font-size: 112px;
  }
  .hero-copy {
    max-width: 900px;
  }
  .hero-copy > p {
    font-size: 21px;
  }
}
@media (max-width: 1100px) {
  .main-nav {
    gap: 24px;
    margin-inline-end: 10px;
  }
  .site-header {
    padding: 0 5%;
    gap: 25px;
  }
  .header-actions {
    gap: 14px;
  }
  .hero-copy {
    width: 68%;
  }
  h1 {
    font-size: 68px;
    letter-spacing: -3.7px;
  }
  .story-copy {
    max-width: 52%;
  }
  .section-heading {
    gap: 35px;
  }
  .process-grid {
    gap: 24px;
  }
  .contact {
    gap: 45px;
  }
  .oman-statement {
    flex-wrap: wrap;
  }
  .hero-legend {
    display: none;
  }
  .industry-grid h3 {
    font-size: 21px;
  }
}
@media (max-width: 750px) {
  .site-header {
    height: 76px;
    padding: 0 5.5%;
    gap: 16px;
  }
  .brand-crop {
    width: 105px;
    height: 25px;
  }
  .brand-crop img {
    top: -100.2px;
  }
  .header-contact {
    font-size: 12px;
    padding: 11px 13px;
    gap: 13px;
  }
  .header-actions {
    gap: 10px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    padding: 25px 6%;
    background: var(--panel);
    border-bottom: 1px solid var(--line);
    margin: 0;
    flex-direction: column;
    gap: 25px;
  }
  .main-nav.open {
    display: flex;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    width: 30px;
  }
  .menu-toggle span {
    width: 20px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.3s;
  }
  .menu-toggle[aria-expanded='true'] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }
  .menu-toggle[aria-expanded='true'] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }
  .hero {
    min-height: 850px;
    height: 100svh;
    padding: 130px 6% 150px;
    align-items: flex-start;
  }
  .hero-copy {
    width: 100%;
    max-width: none;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.45px;
  }
  .rule {
    width: 23px;
  }
  h1 {
    font-size: clamp(43px, 10.5vw, 75px);
    letter-spacing: -2.7px;
    line-height: 1.09;
    margin: 26px 0;
  }
  .hero-copy > p {
    font-size: 16px;
    line-height: 1.7;
  }
  .hero-actions {
    margin-top: 27px;
    gap: 8px;
  }
  .button {
    font-size: 12px;
    min-height: 50px;
    padding: 15px 17px;
    gap: 20px;
  }
  .button-text {
    gap: 8px;
    padding: 15px 10px;
  }
  .location {
    inset-inline-start: 6%;
    inset-inline-end: auto;
    bottom: 19%;
    font-size: 9px;
  }
  .location small {
    font-size: 10px;
  }
  .hero-footer {
    left: 6%;
    right: 6%;
    bottom: 80px;
  }
  .hero-coordinates {
    font-size: 9px;
    letter-spacing: 0.5px;
  }
  .scroll-hint {
    font-size: 9px;
    gap: 10px;
  }
  .experience-controls {
    inset-inline-end: 6%;
    bottom: 20px;
  }
  .atmosphere {
    background: linear-gradient(
      180deg,
      rgba(var(--veil), 0.25),
      rgba(var(--veil), 0.73) 16%,
      rgba(var(--veil), 0.84) 44%,
      rgba(var(--veil), 0.04) 77%,
      rgba(var(--veil), 0.52)
    );
  }
  .story-section {
    height: 118svh;
    min-height: 950px;
    align-items: flex-start;
    padding: 110px 6% 340px;
  }
  .story-copy {
    max-width: 100%;
    width: 100%;
  }
  .story-copy h2 {
    font-size: 47px;
    line-height: 1.12;
    letter-spacing: -2.5px;
    margin: 20px 0;
  }
  .story-copy > p {
    font-size: 17px;
    max-width: 350px;
  }
  .story-copy .secondary-copy {
    font-size: 16px;
    max-width: 350px;
  }
  .service-list {
    max-width: 330px;
    margin: 19px 0;
  }
  .service-list li {
    font-size: 14px;
    padding: 10px 0;
  }
  .text-link {
    font-size: 13px;
    gap: 20px;
  }
  .chapter-caption {
    bottom: 15%;
    inset-inline-end: 8%;
    gap: 15px;
  }
  .chapter-caption p {
    font-size: 8px;
  }
  .chapter-caption > span {
    font-size: 10px;
  }
  .journey-rail {
    inset-inline-end: 12px;
    gap: 17px;
    top: 67%;
  }
  .journey-rail a {
    height: 11px;
    width: 9px;
  }
  .journey-rail a span {
    font-size: 8px;
    inset-inline-end: 15px;
  }
  .panel-section {
    padding: 70px 6%;
  }
  .section-heading {
    display: block;
  }
  .section-heading h2,
  .approach h2,
  .contact h2 {
    font-size: 44px;
    letter-spacing: -2.4px;
  }
  .section-heading > p {
    max-width: none;
    font-size: 16px;
  }
  .industry-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .industry-grid > a,
  .industry-grid > a + a {
    padding: 25px 0;
    border-inline-start: 0;
  }
  .industry-grid > a + a {
    border-top: 1px solid var(--line);
  }
  .industry-grid h3 {
    font-size: 23px;
    margin: 20px 0 12px;
  }
  .industry-grid p br {
    display: none;
  }
  .industry-arrow {
    inset-inline-end: 5px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
    margin-top: 30px;
  }
  .process-grid h3 {
    font-size: 21px;
    margin: 24px 0 15px;
  }
  .process-grid p {
    font-size: 16px;
    line-height: 1.75;
  }
  .process-grid article > span {
    font-size: 9px;
  }
  .oman-statement {
    margin-top: 55px;
    padding-top: 30px;
    display: block;
  }
  .oman-statement p {
    font-size: 25px;
    margin: 22px 0;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .field-pair {
    grid-template-columns: 1fr;
  }
  .contact h2 {
    font-size: 51px;
  }
  .contact-copy > p {
    font-size: 16px;
  }
  .site-footer {
    padding: 30px 6% 75px;
    flex-wrap: wrap;
    gap: 22px;
  }
  .site-footer p {
    font-size: 12px;
    max-width: 180px;
  }
  .site-footer > span {
    margin-inline-start: 0;
  }
  .site-footer > a:last-child {
    margin-inline-start: auto;
  }
  .loading {
    bottom: 58px;
    inset-inline-start: 6%;
    width: 210px;
  }
  .explore-help {
    bottom: 100px;
  }
  .explore-help p {
    font-size: 11px;
  }
  .explore-help .button {
    font-size: 12px;
  }
  .exploring .site-header .header-contact {
    display: none;
  }
}
@media (max-width: 370px) {
  .header-contact {
    display: none;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero {
    min-height: 900px;
  }
  .story-copy h2 {
    font-size: 41px;
  }
}
.brand-crop,
.brand-crop[data-theme='light'] {
  mix-blend-mode: normal;
}
.brand-crop img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
[data-theme='light'] .brand-crop img {
  filter: none;
}
:root {
  --brand: #0065f3;
}
.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 28px;
}
.contact-direct a {
  font-size: 17px;
  display: flex;
  gap: 25px;
  align-items: center;
}
.contact-direct span {
  color: var(--blue);
}
.contact-direct a:hover {
  color: var(--blue);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
/* The hero and story sections are transparent over the live 3D scene, and the
   atmosphere veil fades to 0.05 past 67% of the viewport width. The small
   labels that sit out there therefore have no dependable background: their
   contrast rises and falls as the scene moves. A halo in the veil colour keeps
   them legible over any part of it without altering the design.
   Elements in the left column sit under 0.56-0.83 of the veil and need none. */
.location,
.location small,
.hero-coordinates,
.hero-legend,
.scroll-hint,
.chapter-caption > span,
.chapter-caption p {
  text-shadow:
    0 1px 2px rgba(var(--veil), 0.95),
    0 0 10px rgba(var(--veil), 0.75);
}

.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5.7%;
  max-width: 900px;
}
.not-found h1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02;
  margin: 26px 0 0;
}
.not-found p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  margin: 26px 0 0;
}

/* The veil is opaque on the side the copy sits on, so it follows the writing
   direction. Everything else mirrors through logical properties. */
[dir='rtl'] .atmosphere {
  background:
    linear-gradient(
      270deg,
      rgba(var(--veil), 0.83),
      rgba(var(--veil), 0.56) 29%,
      rgba(var(--veil), 0.05) 67%
    ),
    linear-gradient(0deg, rgba(var(--veil), 0.6), transparent 24%);
}
/* Arabic needs more line height than the Latin display face, and the numerals
   in the chapter markers must stay Latin to match the scene labels. */
[lang='ar'] {
  font-family: 'DM Sans', 'Noto Sans Arabic', 'Geeza Pro', Tahoma, sans-serif;
}
[lang='ar'] h1,
[lang='ar'] h2 {
  line-height: 1.25;
  letter-spacing: 0;
}
[lang='ar'] .eyebrow,
[lang='ar'] .chapter-caption p,
[lang='ar'] .hero-legend {
  letter-spacing: 0;
}
[lang='ar'] .service-list li,
[lang='ar'] .story-copy p,
[lang='ar'] .contact-copy > p {
  line-height: 2;
}
.lang-switch {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted);
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 40px;
  transition:
    color 0.3s,
    border-color 0.3s;
}
.lang-switch:hover,
.lang-switch:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
}
