@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=IBM+Plex+Sans:wght@400;500;600&family=Noto+Sans+Arabic:wght@400;500;600&family=Noto+Sans+SC:wght@400;500;600&family=Noto+Serif+Arabic:wght@500;600&family=Noto+Serif+SC:wght@500;600&display=swap");

:root {
  --ink: #17201f;
  --ink-soft: #46524e;
  --paper: #f1eee7;
  --white: #fbfaf6;
  --teal: #0b6b64;
  --teal-dark: #084f4a;
  --red: #a93832;
  --line: #c9c7bf;
  --mist: #e7ebe8;
  --display: "DM Serif Display", Georgia, serif;
  --body: "IBM Plex Sans", sans-serif;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  background: var(--white);
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
}
html[lang="zh-CN"] {
  --display: "Noto Serif SC", "DM Serif Display", serif;
  --body: "Noto Sans SC", "IBM Plex Sans", sans-serif;
}
html[lang="ru"] {
  --display: "DM Serif Display", Georgia, serif;
  --body: "IBM Plex Sans", sans-serif;
}
html[lang="ar"] {
  --display: "Noto Serif Arabic", serif;
  --body: "Noto Sans Arabic", sans-serif;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
}
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
}
p {
  margin-top: 0;
}
.eyebrow {
  margin: 0 0 19px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.2vw;
  background: rgba(251, 250, 246, 0.97);
  border-bottom: 1px solid rgba(23, 32, 31, 0.2);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}
.brand-mark {
  width: 28px;
  height: 28px;
  position: relative;
  border: 1px solid var(--ink);
}
.brand-mark:before,
.brand-mark:after {
  content: "";
  position: absolute;
  background: var(--red);
}
.brand-mark:before {
  width: 1px;
  height: 34px;
  left: 13px;
  top: -4px;
  transform: rotate(45deg);
}
.brand-mark:after {
  width: 6px;
  height: 6px;
  left: 10px;
  top: 10px;
  border-radius: 50%;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.desktop-nav > a,
.nav-services > a,
.language-toggle {
  border: 0;
  background: none;
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.desktop-nav a:hover,
.language-toggle:hover {
  color: var(--teal);
}
.nav-contact {
  padding: 11px 15px;
  color: white !important;
  background: var(--teal);
}
.nav-services,
.language-wrap {
  position: relative;
}
.services-menu,
.language-menu {
  display: none;
  position: absolute;
  top: 26px;
  min-width: 210px;
  padding: 8px 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 30px rgba(23, 32, 31, 0.12);
}
.services-menu {
  left: -14px;
}
.services-menu a,
.language-option {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 13px;
  white-space: nowrap;
}
.nav-services:hover .services-menu,
.nav-services:focus-within .services-menu,
.language-wrap.open .language-menu {
  display: block;
}
.language-wrap {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}
.language-toggle {
  color: var(--teal);
}
.language-toggle:after {
  content: " +";
}
.language-menu {
  right: 0;
  min-width: 150px;
}
.language-option.current {
  color: var(--teal);
  font-weight: 600;
}
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  background: transparent;
}
.menu-button span,
.menu-button span:before,
.menu-button span:after {
  width: 17px;
  height: 1px;
  display: block;
  position: relative;
  background: var(--ink);
}
.menu-button span:before,
.menu-button span:after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-button span:before {
  top: -6px;
}
.menu-button span:after {
  top: 6px;
}
.mobile-panel {
  display: none;
  position: fixed;
  z-index: 25;
  inset: 72px 0 0;
  padding: 34px 24px;
  background: var(--paper);
  overflow: auto;
}
.mobile-panel.open {
  display: block;
}
.mobile-panel > a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-family: var(--display);
  font-size: 25px;
}
.mobile-languages {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.mobile-languages a {
  color: var(--teal);
  font-size: 13px;
  text-decoration: none;
}
.breadcrumb {
  min-height: 43px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 4.2vw;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: #59635f;
  font-size: 12px;
  text-transform: uppercase;
}
.breadcrumb a {
  text-decoration: none;
}
.breadcrumb span {
  color: var(--red);
}
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.button:after {
  content: "↗";
}
.button.primary {
  color: white;
  background: var(--teal);
  border-color: var(--teal);
}
.button:hover {
  color: white;
  background: var(--ink);
}
.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.service-hero {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 700px;
  border-bottom: 1px solid var(--ink);
}
.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 62px 7vw 62px 4.2vw;
  background: var(--paper);
}
.hero-copy h1 {
  max-width: 650px;
  margin: 0 0 22px;
  font-size: 63px;
  line-height: 1;
}
.hero-lead {
  max-width: 580px;
  margin: 0 0 27px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}
.hero-highlights {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  margin: 0 0 24px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.hero-highlight {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 19px 17px 0;
}
.hero-highlight + .hero-highlight {
  padding-left: 21px;
  border-left: 1px solid var(--line);
}
.hero-highlight span {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.hero-highlight strong {
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.05;
  font-weight: 400;
  white-space: nowrap;
}
.engagement-note {
  margin: 15px 0 0;
  color: #5a6560;
  font-size: 13px;
}
.engagement-note:before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 8px;
  background: var(--red);
  border-radius: 50%;
}
.hero-visual {
  min-width: 0;
  overflow: hidden;
  background: var(--ink);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.signal-strip {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.signal-strip > div {
  min-height: 63px;
  display: flex;
  align-items: center;
  padding: 0 22px;
  border-right: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.signal-strip > div:last-child {
  border-right: 0;
}
.signal-label {
  color: var(--teal);
  background: var(--mist);
}
.node {
  width: 8px;
  height: 8px;
  margin-right: 13px;
  border: 1px solid var(--red);
}
.oman-evidence {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 7vw;
  padding: 92px 4.2vw 82px;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}
.oman-evidence-heading h2 {
  max-width: 500px;
  margin: 0 0 20px;
  font-size: 43px;
  line-height: 1.08;
}
.oman-evidence-heading > p:last-child {
  max-width: 510px;
  margin: 0;
  color: #53605c;
  font-size: 15px;
  line-height: 1.72;
}
.oman-evidence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
}
.oman-evidence-grid article {
  min-height: 225px;
  padding: 25px 28px 25px 0;
  border-bottom: 1px solid var(--line);
}
.oman-evidence-grid article:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}
.oman-evidence-grid strong {
  display: block;
  margin-bottom: 25px;
  color: var(--teal);
  font-family: var(--display);
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
}
.oman-evidence-grid h3 {
  margin: 0 0 9px;
  font-size: 22px;
}
.oman-evidence-grid p {
  margin: 0;
  color: #56635e;
  font-size: 13px;
  line-height: 1.65;
}
.oman-evidence-notes {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  padding-top: 22px;
}
.oman-evidence-notes > p {
  max-width: 620px;
  margin: 0;
  color: #66716d;
  font-size: 12px;
  line-height: 1.65;
}
.oman-source-links {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  align-items: flex-start;
  flex-wrap: wrap;
  font-size: 12px;
}
.oman-source-links span {
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
}
.oman-source-links a {
  color: var(--teal);
  text-underline-offset: 3px;
}
.oman-presence {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 7vw;
  align-items: center;
  padding: 68px 4.2vw;
  color: white;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}
.oman-presence .eyebrow {
  color: #d7a39f;
}
.oman-presence h2 {
  max-width: 660px;
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
}
.oman-presence > p {
  max-width: 720px;
  margin: 0;
  color: #c0cbc7;
  font-size: 14px;
  line-height: 1.78;
}
.us-status {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  border-bottom: 1px solid var(--ink);
}
.us-status-marker {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 4.2vw;
  color: white;
  background: var(--teal);
}
.us-status-marker span,
.us-status-marker small {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.us-status-marker strong {
  margin: 22px 0 26px;
  font-family: var(--display);
  font-size: 62px;
  font-weight: 400;
  line-height: 0.95;
}
.us-status-marker small {
  color: #c4e0dc;
  line-height: 1.5;
}
.us-status-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 62px 7vw;
  background: var(--paper);
}
.us-status-copy h2 {
  max-width: 780px;
  margin: 0 0 18px;
  font-size: 44px;
  line-height: 1.08;
}
.us-status-copy > p:not(.eyebrow) {
  max-width: 820px;
  margin: 0;
  color: #52605b;
  font-size: 14px;
  line-height: 1.75;
}
.us-source-links {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 27px;
  font-size: 12px;
}
.us-source-links span {
  color: var(--red);
  font-weight: 600;
  text-transform: uppercase;
}
.us-source-links a {
  color: var(--teal);
  text-underline-offset: 3px;
}
.us-impact {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 7vw;
  padding: 90px 4.2vw;
  border-bottom: 1px solid var(--ink);
}
.us-impact-heading h2 {
  max-width: 520px;
  margin: 0 0 20px;
  font-size: 43px;
  line-height: 1.08;
}
.us-impact-heading > p:last-child {
  max-width: 520px;
  margin: 0;
  color: #53605c;
  font-size: 15px;
  line-height: 1.72;
}
.us-impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
}
.us-impact-grid article {
  min-height: 220px;
  padding: 25px 28px 25px 0;
  border-bottom: 1px solid var(--line);
}
.us-impact-grid article:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}
.us-impact-grid strong {
  display: block;
  margin-bottom: 31px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.us-impact-grid h3 {
  margin: 0 0 9px;
  font-size: 23px;
}
.us-impact-grid p {
  margin: 0;
  color: #56635e;
  font-size: 13px;
  line-height: 1.66;
}
.us-readiness {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 7vw;
  padding: 88px 4.2vw;
  background: var(--mist);
  border-bottom: 1px solid var(--ink);
}
.us-readiness-heading h2 {
  max-width: 520px;
  margin: 0 0 20px;
  font-size: 43px;
  line-height: 1.08;
}
.us-readiness-heading > p:last-child {
  max-width: 510px;
  margin: 0;
  color: #52605b;
  font-size: 15px;
  line-height: 1.72;
}
.us-readiness-list {
  border-top: 1px solid var(--ink);
}
.us-readiness-list article {
  display: grid;
  grid-template-columns: 42px minmax(170px, 0.72fr) minmax(0, 1.28fr);
  gap: 22px;
  padding: 23px 0;
  border-bottom: 1px solid #aab2ae;
}
.us-readiness-list span {
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
}
.us-readiness-list h3 {
  margin: -4px 0 0;
  font-size: 21px;
}
.us-readiness-list p {
  margin: 0;
  color: #52605b;
  font-size: 13px;
  line-height: 1.62;
}
.us-experience {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 7vw;
  align-items: center;
  padding: 70px 4.2vw;
  color: white;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}
.us-experience .eyebrow {
  color: #d7a39f;
}
.us-experience h2 {
  max-width: 650px;
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
}
.us-experience > div:last-child > p:first-child {
  max-width: 760px;
  margin: 0;
  color: #c0cbc7;
  font-size: 14px;
  line-height: 1.76;
}
.us-comparison {
  max-width: 760px;
  margin: 26px 0 0 !important;
  padding: 20px 0 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 3px solid var(--red);
  color: white !important;
  font-size: 14px !important;
  line-height: 1.68 !important;
}
.content-section {
  padding: 86px 7vw 90px 4.2vw;
  border-bottom: 1px solid var(--line);
}
.section-grid {
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1.45fr);
  gap: 7vw;
}
.section-label {
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.section-main h2 {
  max-width: 800px;
  margin: 0 0 21px;
  font-size: 42px;
  line-height: 1.08;
}
.section-intro {
  max-width: 730px;
  margin: 0 0 39px;
  color: #52605b;
  font-size: 14px;
  line-height: 1.72;
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
}
.audience-item {
  min-height: 145px;
  padding: 24px 27px 24px 0;
  border-bottom: 1px solid var(--line);
}
.audience-item:nth-child(even) {
  padding-left: 27px;
  border-left: 1px solid var(--line);
}
.audience-item span {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 12px;
}
.audience-item h3 {
  margin: 0 0 7px;
  font-size: 23px;
}
.audience-item p {
  margin: 0;
  color: #59645f;
  font-size: 13px;
  line-height: 1.6;
}
.scope-section {
  background: var(--mist);
}
.scope-ledger {
  border-top: 1px solid var(--ink);
}
.scope-row {
  display: grid;
  grid-template-columns: 48px minmax(170px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #aab2ae;
}
.scope-row > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
}
.scope-row h3 {
  margin: -4px 0 0;
  font-size: 22px;
}
.scope-row p {
  margin: 0;
  color: #52605b;
  font-size: 14px;
  line-height: 1.62;
}
.commercial-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  color: white;
  background: var(--ink);
}
.price-block,
.timeline-block {
  min-height: 330px;
  padding: 55px 4.2vw;
}
.price-block {
  background: var(--teal);
}
.commercial-band .eyebrow {
  color: #d2eeea;
}
.price-block p,
.timeline-block p {
  max-width: 600px;
  margin: 0;
  color: #d6e9e5;
  font-size: 15px;
  line-height: 1.65;
}
.timeline-block p {
  color: #b8c4c0;
}
.price-block .price-value {
  margin: 0 0 18px;
  color: white;
  font-family: var(--display);
  font-size: 52px;
  line-height: 1.05;
}
.timeline-block .timeline-value {
  margin: 0 0 18px;
  color: white;
  font-family: var(--display);
  font-size: 42px;
  line-height: 1.08;
}
.commercial-note {
  margin-top: 35px !important;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 13px !important;
}
.path-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.path-step {
  min-height: 235px;
  padding: 24px 19px;
  position: relative;
}
.path-step + .path-step {
  border-left: 1px solid var(--line);
}
.path-step b {
  display: block;
  margin-bottom: 43px;
  color: var(--red);
  font-size: 12px;
}
.path-step h3 {
  margin: 0 0 9px;
  font-size: 20px;
}
.path-step p {
  margin: 0;
  color: #59645f;
  font-size: 13px;
  line-height: 1.58;
}
.path-step:after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: -4px;
  left: 18px;
  background: var(--red);
  border-radius: 50%;
}
.preparation {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
}
.prep-side {
  padding: 76px 4.2vw;
  color: white;
  background: var(--teal-dark);
}
.prep-side .eyebrow {
  color: #b9dbd6;
}
.prep-side h2 {
  margin: 0 0 17px;
  font-size: 39px;
  line-height: 1.08;
}
.prep-side p {
  margin: 0;
  color: #c9dfdc;
  font-size: 14px;
  line-height: 1.65;
}
.document-list {
  padding: 50px 6vw 54px;
  background: var(--paper);
}
.document-line {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
}
.document-line:first-child {
  border-top: 1px solid var(--ink);
}
.document-line span {
  color: var(--red);
  font-size: 12px;
}
.document-line strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
}
.document-line small {
  color: #69736f;
  font-size: 12px;
  text-transform: uppercase;
}
.faq-list {
  border-top: 1px solid var(--ink);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 21px;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  color: var(--teal);
  font-family: var(--body);
  font-size: 20px;
}
details[open] summary:after {
  content: "−";
}
details p {
  max-width: 760px;
  margin: -5px 0 25px;
  color: #53605c;
  font-size: 14px;
  line-height: 1.7;
}
.boundary-band {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}
.boundary-label {
  display: flex;
  align-items: center;
  padding: 31px 4.2vw;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  border-right: 1px solid var(--line);
}
.boundary-copy {
  padding: 31px 6vw;
  color: #47534f;
  font-size: 13px;
  line-height: 1.72;
}
.contact-section {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 45px;
  align-items: end;
  padding: 72px 4.2vw;
  color: white;
  background: var(--teal);
}
.contact-section .eyebrow {
  color: #d8eeea;
}
.contact-section h2 {
  max-width: 780px;
  margin: 0 0 14px;
  font-size: 46px;
  line-height: 1.06;
}
.contact-section p {
  max-width: 680px;
  color: #d8eeea;
  font-size: 14px;
  line-height: 1.65;
}
.contact-section .actions {
  justify-content: flex-end;
}
.contact-section .button {
  color: white;
  border-color: white;
}
.contact-section .button.primary {
  color: var(--teal);
  background: white;
}
.site-footer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  padding: 37px 4.2vw;
  color: #aeb9b5;
  background: #111817;
  font-size: 12px;
  line-height: 1.65;
}
.site-footer strong {
  display: block;
  margin-bottom: 7px;
  color: white;
  font-size: 14px;
}
.footer-links {
  display: flex;
  gap: 20px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #d4dcda;
  text-decoration: none;
}
.home-hero {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 650px;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}
.home-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 7vw 70px 4.2vw;
}
.home-copy h1 {
  margin: 0 0 24px;
  font-size: 62px;
  line-height: 1;
}
.home-copy p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}
.home-map {
  overflow: hidden;
}
.home-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-index {
  border-top: 1px solid var(--ink);
}
.service-index a {
  display: grid;
  grid-template-columns: 45px 1fr 1.35fr 0.55fr;
  gap: 20px;
  align-items: center;
  min-height: 94px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.service-index span {
  color: var(--red);
  font-size: 12px;
}
.service-index h3 {
  margin: 0;
  font-size: 22px;
}
.service-index p {
  margin: 0;
  color: #59645f;
  font-size: 13px;
  line-height: 1.55;
}
.service-index strong {
  text-align: right;
  color: var(--teal);
  font-size: 13px;
}
.experience-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  padding: 74px 4.2vw;
  color: white;
  background: var(--ink);
}
.experience-band h2 {
  max-width: 700px;
  margin: 0 0 14px;
  font-size: 42px;
}
.experience-band p {
  max-width: 650px;
  color: #b8c4c0;
  font-size: 14px;
  line-height: 1.65;
}
.experience-band a {
  color: white;
}
.experience-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.experience-numbers div {
  padding: 20px 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}
.experience-numbers strong {
  display: block;
  font-family: var(--display);
  font-size: 72px;
  font-weight: 400;
}
.experience-numbers span {
  font-size: 13px;
  text-transform: uppercase;
}
.image-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
}
.image-band img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}
.image-band > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 65px 6vw;
}
.image-band h2 {
  margin: 0 0 18px;
  font-size: 40px;
}
.image-band p {
  color: #56625e;
  font-size: 14px;
  line-height: 1.7;
}
.text-link {
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.standard-hero {
  padding: 105px 18vw 80px 4.2vw;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}
.standard-hero h1 {
  max-width: 950px;
  margin: 0 0 22px;
  font-size: 60px;
  line-height: 1;
}
.standard-hero > p:not(.eyebrow) {
  max-width: 800px;
  color: #4f5b57;
  font-size: 15px;
  line-height: 1.7;
}
.standard-section {
  padding: 80px 4.2vw;
}
.pricing-table {
  border-top: 1px solid var(--ink);
}
.pricing-row {
  display: grid;
  grid-template-columns: 1fr 0.65fr 0.45fr;
  gap: 25px;
  align-items: center;
  min-height: 94px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.pricing-row span {
  font-family: var(--display);
  font-size: 23px;
}
.pricing-row strong {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
}
.pricing-row small {
  color: #68736f;
  font-size: 14px;
  text-transform: uppercase;
}
.notice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 38px;
  border-top: 1px solid var(--line);
}
.notice-grid p {
  margin: 0;
  padding: 21px 20px 0 0;
  color: #59645f;
  font-size: 14px;
  line-height: 1.6;
}
.long-process {
  border-top: 1px solid var(--ink);
}
.long-process article {
  display: grid;
  grid-template-columns: 50px 0.65fr 1.35fr;
  gap: 25px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.long-process span {
  color: var(--red);
  font-size: 12px;
}
.long-process h2 {
  margin: 0;
  font-size: 26px;
}
.long-process p {
  max-width: 750px;
  margin: 0;
  color: #52605b;
  font-size: 14px;
  line-height: 1.7;
}
.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  color: white;
}
.proof-band div {
  min-height: 210px;
  padding: 45px 4.2vw;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.proof-band strong {
  display: block;
  font-family: var(--display);
  font-size: 70px;
  font-weight: 400;
}
.proof-band span {
  font-size: 13px;
  text-transform: uppercase;
}
.case-list {
  border-top: 1px solid var(--ink);
}
.case-list article {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 25px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.case-list span {
  color: var(--red);
  font-size: 12px;
}
.case-list h2 {
  margin: 0 0 8px;
  font-size: 26px;
}
.case-list p {
  max-width: 800px;
  margin: 0;
  color: #59645f;
  font-size: 14px;
  line-height: 1.65;
}
.appstore-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 60px;
  padding: 48px;
  background: var(--mist);
  border-left: 4px solid var(--teal);
}
.appstore-proof h2 {
  margin: 0 0 14px;
  font-size: 35px;
}
.appstore-proof p {
  color: #53605c;
  font-size: 14px;
  line-height: 1.7;
}
.article-index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
}
.article-index a {
  min-height: 260px;
  padding: 28px 30px 30px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.article-index a:nth-child(even) {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}
.article-index span,
.article-index small {
  color: var(--red);
  font-size: 12px;
  text-transform: uppercase;
}
.article-index h2 {
  margin: 30px 0 12px;
  font-size: 28px;
}
.article-index p {
  color: #59645f;
  font-size: 14px;
  line-height: 1.65;
}
.article-page {
  padding-bottom: 80px;
}
.article-hero {
  padding: 96px 17vw 70px 17vw;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.article-hero h1 {
  max-width: 950px;
  margin: 0 0 23px;
  font-size: 54px;
  line-height: 1.05;
}
.article-hero > p:not(.eyebrow) {
  max-width: 820px;
  color: #4f5b57;
  font-size: 15px;
  line-height: 1.72;
}
.article-meta {
  display: flex;
  gap: 25px;
  margin-top: 30px;
  color: #67726e;
  font-size: 12px;
  text-transform: uppercase;
}
.article-body {
  max-width: 870px;
  margin: 0 auto;
  padding: 65px 24px;
}
.article-body section {
  margin-bottom: 48px;
}
.article-body h2 {
  font-size: 32px;
}
.article-body p {
  color: #46534f;
  font-size: 14px;
  line-height: 1.85;
}
.article-body aside {
  padding: 23px;
  border-left: 3px solid var(--red);
  background: var(--paper);
  color: #59645f;
  font-size: 13px;
  line-height: 1.7;
}
.direct-answer {
  margin-bottom: 52px !important;
  padding: 30px 34px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--mist);
}
.direct-answer .eyebrow {
  margin-bottom: 12px;
}
.direct-answer > p:last-child {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.45;
}
.article-faq {
  padding-top: 8px;
}
.related-guidance {
  display: grid;
  gap: 0;
}
.related-guidance a {
  padding: 17px 0;
  border-top: 1px solid var(--line);
  color: var(--teal);
  font-family: var(--display);
  font-size: 20px;
  text-decoration: none;
}
.related-guidance a:last-child {
  border-bottom: 1px solid var(--line);
}
.article-service-link {
  display: inline-block;
  margin: -20px 0 52px;
  color: var(--teal);
  font-size: 15px;
  font-weight: 600;
  text-underline-offset: 4px;
}
.service-guides {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 7vw;
  padding: 76px 4.2vw;
  color: white;
  background: var(--teal-dark);
  border-bottom: 1px solid var(--ink);
}
.service-guides h2 {
  max-width: 560px;
  margin: 0;
  font-size: 36px;
  line-height: 1.12;
}
.service-guides .eyebrow {
  color: #b9dbd6;
}
.service-guides > div:last-child {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}
.service-guides a {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: start;
  padding: 22px 0;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.service-guides a span {
  color: #b9dbd6;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.service-guides a strong {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.25;
}
.sources ul {
  padding-left: 20px;
}
.sources a {
  color: var(--teal);
  font-size: 14px;
}
.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 24px;
}
.legal-page section {
  padding: 0 0 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid var(--line);
}
.legal-page h2 {
  font-size: 30px;
}
.legal-page p {
  color: #4e5a56;
  font-size: 15px;
  line-height: 1.8;
}
html[dir="rtl"] .brand-mark:before {
  transform: rotate(-45deg);
}
html[dir="rtl"] .language-wrap {
  padding-left: 0;
  padding-right: 18px;
  border-left: 0;
  border-right: 1px solid var(--line);
}
html[dir="rtl"] .services-menu {
  left: auto;
  right: -14px;
}
html[dir="rtl"] .hero-highlight {
  padding: 16px 0 17px 19px;
}
html[dir="rtl"] .hero-highlight + .hero-highlight {
  padding-left: 0;
  padding-right: 21px;
  border-left: 0;
  border-right: 1px solid var(--line);
}
html[dir="rtl"] .engagement-note:before {
  margin-right: 0;
  margin-left: 8px;
}
html[dir="rtl"] .signal-strip > div {
  border-right: 0;
  border-left: 1px solid var(--line);
}
html[dir="rtl"] .oman-evidence-grid article {
  padding: 25px 0 25px 28px;
}
html[dir="rtl"] .oman-evidence-grid article:nth-child(even) {
  padding-left: 0;
  padding-right: 28px;
  border-left: 0;
  border-right: 1px solid var(--line);
}
html[dir="rtl"] .oman-source-links {
  justify-content: flex-start;
}
html[dir="rtl"] .audience-item {
  padding: 24px 0 24px 27px;
}
html[dir="rtl"] .audience-item:nth-child(even) {
  padding-left: 0;
  padding-right: 27px;
  border-left: 0;
  border-right: 1px solid var(--line);
}
html[dir="rtl"] .path-step + .path-step {
  border-left: 0;
  border-right: 1px solid var(--line);
}
html[dir="rtl"] .path-step:after {
  left: auto;
  right: 18px;
}
html[dir="rtl"] .boundary-label {
  border-right: 0;
  border-left: 1px solid var(--line);
}
html[dir="rtl"] .experience-numbers div {
  border-left: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}
html[dir="rtl"] .service-index strong {
  text-align: left;
}
html[dir="rtl"] .article-index a {
  padding: 28px 0 30px 30px;
}
html[dir="rtl"] .article-index a:nth-child(even) {
  padding-left: 0;
  padding-right: 30px;
  border-left: 0;
  border-right: 1px solid var(--line);
}
html[dir="rtl"] .appstore-proof,
html[dir="rtl"] .article-body aside {
  border-left: 0;
  border-right: 4px solid var(--teal);
}
html[dir="rtl"] .article-body aside {
  border-right-color: var(--red);
}
html[dir="rtl"] .us-impact-grid article {
  padding: 25px 0 25px 28px;
}
html[dir="rtl"] .us-impact-grid article:nth-child(even) {
  padding-left: 0;
  padding-right: 28px;
  border-left: 0;
  border-right: 1px solid var(--line);
}
html[dir="rtl"] .us-comparison {
  padding-left: 0;
  padding-right: 22px;
  border-left: 0;
  border-right: 3px solid var(--red);
}
@media (max-width: 1050px) {
  .desktop-nav > a:not(.nav-contact),
  .nav-services {
    display: none;
  }
  .service-hero,
  .home-hero {
    grid-template-columns: 1fr;
  }
  .hero-copy,
  .home-copy {
    min-height: 570px;
  }
  .hero-visual,
  .home-map {
    min-height: 520px;
  }
  .oman-evidence,
  .oman-presence,
  .service-guides,
  .us-impact,
  .us-readiness,
  .us-experience {
    grid-template-columns: 1fr;
  }
  .oman-evidence-heading h2,
  .oman-presence h2,
  .us-impact-heading h2,
  .us-readiness-heading h2,
  .us-experience h2 {
    max-width: 780px;
  }
  .path-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .path-step:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .path-step:nth-child(5) {
    border-top: 1px solid var(--line);
  }
  .notice-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 64px;
  }
  .site-header {
    min-height: 64px;
    padding: 0 18px;
  }
  .brand {
    font-size: 13px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-button {
    display: flex;
  }
  .mobile-panel {
    inset: 64px 0 0;
  }
  .breadcrumb {
    padding: 0 18px;
    font-size: 12px;
  }
  .hero-copy {
    min-height: 0;
    padding: 66px 22px 43px;
  }
  .hero-copy h1 {
    font-size: 45px;
  }
  .hero-lead {
    font-size: 14px;
  }
  .hero-highlights {
    grid-template-columns: 1fr;
  }
  .hero-highlight {
    min-height: 83px;
    padding: 14px 0;
  }
  .hero-highlight + .hero-highlight {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .hero-highlight strong {
    font-size: 29px;
  }
  .hero-visual {
    min-height: 420px;
  }
  .signal-strip {
    grid-template-columns: 1fr 1fr;
  }
  .signal-strip > div {
    min-height: 49px;
    padding: 0 14px;
    border-bottom: 1px solid var(--line);
  }
  .signal-label {
    grid-column: 1/-1;
  }
  .content-section {
    padding: 66px 22px;
  }
  .service-guides {
    gap: 32px;
    padding: 58px 22px;
  }
  .service-guides h2 {
    font-size: 32px;
  }
  .service-guides a {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .section-grid {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .section-main h2 {
    font-size: 34px;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .audience-item,
  .audience-item:nth-child(even) {
    min-height: 0;
    padding: 22px 0;
    border-left: 0;
  }
  .scope-row {
    grid-template-columns: 32px 1fr;
    gap: 11px;
  }
  .scope-row p {
    grid-column: 2;
  }
  .commercial-band {
    grid-template-columns: 1fr;
  }
  .price-block,
  .timeline-block {
    min-height: 275px;
    padding: 45px 22px;
  }
  .price-block .price-value {
    font-size: 42px;
  }
  .timeline-block .timeline-value {
    font-size: 36px;
  }
  .path-grid {
    grid-template-columns: 1fr;
  }
  .path-step,
  .path-step:nth-child(4),
  .path-step:nth-child(5) {
    min-height: 0;
    padding: 24px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .path-step:first-child {
    border-top: 0;
  }
  .path-step b {
    margin-bottom: 18px;
  }
  .preparation,
  .boundary-band,
  .contact-section,
  .site-footer,
  .experience-band,
  .image-band,
  .appstore-proof {
    grid-template-columns: 1fr;
  }
  .prep-side,
  .contact-section {
    padding: 58px 22px;
  }
  .document-list {
    padding: 36px 22px 45px;
  }
  .document-line {
    grid-template-columns: 28px 1fr;
  }
  .document-line small {
    display: none;
  }
  .contact-section .actions {
    justify-content: flex-start;
  }
  .contact-section h2 {
    font-size: 37px;
  }
  .site-footer {
    padding: 32px 22px;
  }
  .home-copy {
    min-height: 570px;
    padding: 65px 22px;
  }
  .home-copy h1 {
    font-size: 46px;
  }
  .home-map {
    min-height: 420px;
  }
  .service-index a {
    grid-template-columns: 32px 1fr;
    gap: 11px;
    padding: 20px 0;
  }
  .service-index p,
  .service-index strong {
    grid-column: 2;
    text-align: left;
  }
  .experience-band {
    padding: 58px 22px;
  }
  .experience-numbers {
    margin-top: 20px;
  }
  .experience-numbers strong {
    font-size: 56px;
  }
  .image-band > div {
    padding: 50px 22px;
  }
  .standard-hero {
    padding: 76px 22px 60px;
  }
  .standard-hero h1 {
    font-size: 45px;
  }
  .standard-section {
    padding: 58px 22px;
  }
  .pricing-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 20px 0;
  }
  .notice-grid {
    grid-template-columns: 1fr;
  }
  .long-process article {
    grid-template-columns: 32px 1fr;
    gap: 13px;
  }
  .long-process p {
    grid-column: 2;
  }
  .proof-band {
    grid-template-columns: 1fr;
  }
  .proof-band div {
    min-height: 150px;
  }
  .article-index {
    grid-template-columns: 1fr;
  }
  .article-index a,
  .article-index a:nth-child(even) {
    min-height: 0;
    padding: 24px 0;
    border-left: 0;
  }
  .article-hero {
    padding: 70px 22px 52px;
  }
  .article-hero h1 {
    font-size: 40px;
  }
  .article-meta {
    flex-direction: column;
    gap: 7px;
  }
  .article-body {
    padding: 48px 22px;
  }
  html[dir="rtl"] .hero-highlight,
  html[dir="rtl"] .hero-highlight + .hero-highlight {
    padding: 14px 0;
    border-right: 0;
  }
  html[dir="rtl"] .audience-item,
  html[dir="rtl"] .audience-item:nth-child(even) {
    padding: 22px 0;
    border-right: 0;
  }
  html[dir="rtl"] .article-index a,
  html[dir="rtl"] .article-index a:nth-child(even) {
    padding: 24px 0;
    border-right: 0;
  }
}
@media (max-width: 760px) {
  .oman-evidence {
    padding: 64px 22px 54px;
    gap: 40px;
  }
  .oman-evidence-heading h2 {
    font-size: 34px;
  }
  .oman-evidence-grid {
    grid-template-columns: 1fr;
  }
  .oman-evidence-grid article,
  .oman-evidence-grid article:nth-child(even) {
    min-height: 0;
    padding: 24px 0;
    border-left: 0;
  }
  .oman-evidence-grid strong {
    margin-bottom: 18px;
    font-size: 46px;
  }
  .oman-evidence-notes {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .oman-source-links {
    justify-content: flex-start;
  }
  .oman-presence {
    padding: 56px 22px;
    gap: 24px;
  }
  .oman-presence h2 {
    font-size: 34px;
  }
  .oman-presence > p {
    font-size: 15px;
  }
  html[dir="rtl"] .oman-evidence-grid article,
  html[dir="rtl"] .oman-evidence-grid article:nth-child(even) {
    padding: 24px 0;
    border-right: 0;
  }
}
@media (max-width: 760px) {
  .us-status {
    grid-template-columns: 1fr;
  }
  .us-status-marker {
    min-height: 240px;
    padding: 46px 22px;
  }
  .us-status-marker strong {
    margin: 18px 0 22px;
    font-size: 48px;
    overflow-wrap: anywhere;
  }
  .us-status-copy {
    padding: 54px 22px 58px;
  }
  .us-status-copy h2 {
    font-size: 34px;
  }
  .us-source-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
  .us-impact,
  .us-readiness {
    padding: 62px 22px;
    gap: 40px;
  }
  .us-impact-heading h2,
  .us-readiness-heading h2 {
    font-size: 34px;
  }
  .us-impact-grid {
    grid-template-columns: 1fr;
  }
  .us-impact-grid article,
  .us-impact-grid article:nth-child(even) {
    min-height: 0;
    padding: 24px 0;
    border-left: 0;
  }
  .us-impact-grid strong {
    margin-bottom: 18px;
  }
  .us-readiness-list article {
    grid-template-columns: 32px 1fr;
    gap: 11px;
  }
  .us-readiness-list p {
    grid-column: 2;
  }
  .us-experience {
    padding: 58px 22px;
    gap: 25px;
  }
  .us-experience h2 {
    font-size: 34px;
  }
  .us-comparison {
    padding-left: 18px;
  }
  html[dir="rtl"] .us-impact-grid article,
  html[dir="rtl"] .us-impact-grid article:nth-child(even) {
    padding: 24px 0;
    border-right: 0;
  }
  html[dir="rtl"] .us-comparison {
    padding-left: 0;
    padding-right: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
