:root {
  --ink: #07131c;
  --ink-deep: #030a10;
  --navy: #0a1d29;
  --navy-soft: #112d3c;
  --paper: #f4f1ea;
  --paper-deep: #e8e2d7;
  --white: #fff;
  --muted: #76838b;
  --muted-light: #a9b2b8;
  --gold: #d6b16c;
  --gold-bright: #edcf91;
  --gold-dark: #9e7940;
  --line: rgba(7, 19, 28, .14);
  --line-light: rgba(255, 255, 255, .14);
  --shell: min(1240px, calc(100vw - 96px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-x: none;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  touch-action: pan-y pinch-zoom;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
p,
a,
span {
  overflow-wrap: break-word;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

::selection {
  background: var(--gold);
  color: var(--ink-deep);
}

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

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

svg {
  display: block;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: -100px;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--ink);
  transition: top .2s ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 220;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
  background: rgba(255, 255, 255, .04);
}

.scroll-progress i {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright));
  box-shadow: 0 0 14px rgba(237, 207, 145, .55);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

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

.site-header.is-scrolled {
  background: rgba(3, 10, 16, .92);
  border-color: rgba(255, 255, 255, .08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .14);
  backdrop-filter: blur(18px);
}

.header-shell {
  width: min(1380px, calc(100vw - 48px));
  height: 90px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.brand-mark {
  width: 45px;
  height: 45px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark .brand-mark-accent,
.brand-mark circle {
  stroke: var(--gold-bright);
}

.brand-mark circle {
  fill: var(--gold-bright);
  stroke-width: 0;
}

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

.brand-copy strong {
  font-size: 17px;
  font-weight: 680;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 7px;
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .23em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
  margin-right: 28px;
}

.desktop-nav a {
  position: relative;
  padding: 34px 0;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: color .25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 25px;
  height: 1px;
  background: var(--gold);
  transition: right .3s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  right: 0;
}

.language-switcher {
  position: relative;
  margin-right: 14px;
}

.language-current {
  min-width: 58px;
  height: 44px;
  padding: 0 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .04);
  color: var(--white);
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .1em;
}

.language-current svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  transition: transform .25s ease;
}

.language-switcher.is-open .language-current svg {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 12px);
  right: 0;
  width: 190px;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  background: rgba(3, 10, 16, .98);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .35);
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}

.language-switcher.is-open .language-menu {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.language-menu button {
  width: 100%;
  min-height: 44px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .78);
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-align: left;
}

.language-menu button:hover,
.language-menu button.is-active {
  background: rgba(214, 177, 108, .12);
  color: var(--gold-bright);
}

.language-menu small {
  color: rgba(255, 255, 255, .42);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
}

.header-cta {
  min-height: 44px;
  padding: 0 18px 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(214, 177, 108, .6);
  background: transparent;
  color: var(--gold-bright);
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .3s ease, color .3s ease;
}

.header-cta svg,
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

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

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 900px;
  height: max(760px, 100svh);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--ink-deep);
  color: var(--white);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: url("assets/seven-heavens-hero.webp");
  background-position: 58% center;
  background-size: cover;
  transform: scale(1.03) translate3d(var(--hero-x, 0), calc(var(--hero-y, 0) + var(--hero-scroll, 0px)), 0);
  transition: transform .35s var(--ease);
  will-change: transform;
  animation: hero-in 1.8s var(--ease) both;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 13, .98) 0%, rgba(2, 8, 13, .84) 34%, rgba(2, 8, 13, .22) 69%, rgba(2, 8, 13, .42) 100%),
    linear-gradient(180deg, rgba(2, 8, 13, .4) 0%, transparent 42%, rgba(2, 8, 13, .72) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image:
    linear-gradient(rgba(255, 255, 255, .2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .2) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 70%);
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.hero-shell {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 720px) 320px;
  align-items: end;
  gap: 100px;
  padding-top: 70px;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: var(--gold-bright);
}

.hero-eyebrow {
  color: var(--gold-bright);
}

.hero h1,
.section h2,
.contact-dialog h2 {
  margin: 0;
  font-weight: 430;
  letter-spacing: -.045em;
  line-height: .99;
}

.hero h1 {
  max-width: 800px;
  font-size: clamp(64px, 6.2vw, 106px);
}

.hero h1 .hero-title-primary {
  display: block;
}

.hero h1 .hero-title-accent {
  display: block;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .72em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.035em;
}

.hero-lead {
  max-width: 630px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 18px;
  line-height: 1.7;
}

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

.button {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: transform .3s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-gold {
  background: var(--gold);
  color: var(--ink);
}

.button-gold:hover {
  background: var(--gold-bright);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.text-link i {
  width: 46px;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.text-link:hover i {
  transform: scaleX(1.35);
}

.text-link.dark {
  color: var(--ink);
}

.hero-card {
  align-self: end;
  margin-bottom: 30px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(4, 13, 20, .42);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
  backdrop-filter: blur(14px);
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}

.hero-card-top svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
}

.hero-card p {
  margin: 54px 0 24px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.28;
}

.hero-card-line {
  height: 1px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, .18);
}

.hero-card small {
  display: block;
  color: rgba(255, 255, 255, .52);
  font-size: 11px;
  line-height: 1.7;
}

.hero-proof {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  gap: 54px;
}

.hero-proof div {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.hero-proof span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 12px;
}

.hero-proof p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-rail {
  position: absolute;
  z-index: 3;
  left: 25px;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 18px;
  transform: translate(-44%, -50%) rotate(-90deg);
  color: rgba(255, 255, 255, .4);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero-rail i {
  width: 50px;
  height: 1px;
  background: rgba(255, 255, 255, .25);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .45);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: right bottom;
}

.scroll-cue i {
  position: relative;
  width: 50px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: scroll-line 2.2s ease-in-out infinite;
}

.trust-bar {
  background: var(--gold);
  color: var(--ink-deep);
}

.trust-track {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.trust-track i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(7, 19, 28, .38);
}

.section {
  padding: 150px 0;
}

.section h2 {
  font-size: clamp(46px, 5vw, 74px);
}

.company {
  background:
    radial-gradient(circle at 92% 7%, rgba(214, 177, 108, .16), transparent 24%),
    var(--paper);
}

.company-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 120px;
  align-items: start;
}

.section-intro h2 {
  max-width: 760px;
}

.company-copy {
  padding-top: 52px;
  color: #49555c;
}

.company-copy p {
  max-width: 520px;
  margin: 0 0 24px;
}

.company-copy .lead-copy {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.6;
}

.company-copy .text-link {
  margin-top: 20px;
}

.principles {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principle-card {
  position: relative;
  min-height: 360px;
  padding: 40px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .4s ease, transform .4s var(--ease);
}

.principle-card:hover {
  z-index: 2;
  background: var(--white);
  transform: translateY(-8px);
}

.principle-number,
.card-index {
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 12px;
}

.principle-card svg {
  width: 54px;
  height: 54px;
  margin: 68px 0 34px;
  fill: none;
  stroke: var(--gold-dark);
  stroke-width: 1.2;
}

.principle-card h3,
.capability-card h3,
.process-list h3,
.partner-types h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 560;
  letter-spacing: -.02em;
}

.principle-card p {
  max-width: 310px;
  margin: 16px 0 0;
  color: #637078;
  font-size: 14px;
}

.capabilities {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(214, 177, 108, .12), transparent 22%),
    linear-gradient(135deg, var(--ink) 0%, var(--ink-deep) 68%);
  color: var(--white);
}

.capabilities::before {
  content: "07";
  position: absolute;
  right: -30px;
  top: 10px;
  color: rgba(255, 255, 255, .025);
  font-family: Georgia, serif;
  font-size: 400px;
  line-height: 1;
}

.section-heading-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 100px;
  align-items: end;
}

.section-heading-row h2 {
  max-width: 800px;
}

.section-heading-row > p {
  margin: 0 0 4px;
  color: var(--muted-light);
  font-size: 15px;
}

.capability-grid {
  position: relative;
  z-index: 1;
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .14);
}

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

.capability-grid-four .capability-card {
  min-height: 350px;
}

.capability-card {
  position: relative;
  min-height: 370px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--ink);
  transition: background .35s ease;
}

.capability-card::before {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(214, 177, 108, .2);
  border-radius: 50%;
  transition: transform .6s var(--ease);
}

.capability-card:hover {
  background: var(--navy-soft);
}

.capability-card:hover::before {
  transform: scale(1.6);
}

.capability-card-featured {
  background: var(--gold);
  color: var(--ink);
}

.capability-card-featured:hover {
  background: var(--gold-bright);
}

.capability-card-wide {
  grid-column: span 3;
  min-height: 230px;
  display: grid;
  grid-template-columns: 80px 90px 1fr 60px;
  align-items: center;
  gap: 30px;
}

.capability-grid-four .capability-card-wide {
  grid-column: span 2;
}

.capability-card-commerce {
  min-height: 260px !important;
  background:
    radial-gradient(circle at 86% 20%, rgba(214, 177, 108, .2), transparent 26%),
    linear-gradient(120deg, #0c2635, #07131c 72%);
}

.capability-card-commerce:hover {
  background:
    radial-gradient(circle at 84% 18%, rgba(214, 177, 108, .28), transparent 28%),
    linear-gradient(120deg, #103347, #091925 72%);
}

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

.capability-card .card-index {
  position: absolute;
  left: 32px;
  top: 28px;
  color: rgba(255, 255, 255, .4);
}

.capability-card-featured .card-index {
  color: rgba(7, 19, 28, .5);
}

.card-icon {
  width: 58px;
  height: 58px;
  margin: 38px 0 54px auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
}

.card-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-card-featured .card-icon {
  border-color: rgba(7, 19, 28, .25);
}

.capability-card-featured .card-icon svg {
  stroke: var(--ink);
}

.capability-card h3 {
  font-size: 25px;
}

.capability-card p {
  max-width: 330px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .53);
  font-size: 14px;
}

.capability-card-featured p {
  color: rgba(7, 19, 28, .68);
}

.card-arrow {
  position: absolute;
  right: 30px;
  bottom: 28px;
  color: var(--gold);
  font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
  font-variant-emoji: text;
  font-size: 22px;
  line-height: 1;
  transition: transform .35s var(--ease);
}

.capability-card:hover .card-arrow {
  transform: translate(4px, -4px);
}

.capability-card-featured .card-arrow {
  color: var(--ink);
}

.capability-card-wide .card-index,
.capability-card-wide .card-icon,
.capability-card-wide .card-arrow {
  position: static;
  margin: 0;
}

.capability-card-wide p {
  max-width: 620px;
}

.digital-commerce {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 8%, rgba(214, 177, 108, .14), transparent 22%),
    linear-gradient(145deg, #f4f3ec 0%, #e8ece9 100%);
}

.digital-commerce::before {
  content: "COMMERCE";
  position: absolute;
  right: -2vw;
  top: 0;
  color: rgba(7, 19, 28, .025);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13vw;
  line-height: .8;
  letter-spacing: -.07em;
  pointer-events: none;
}

.commerce-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image:
    linear-gradient(rgba(7, 19, 28, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 19, 28, .1) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(90deg, transparent 8%, #000 50%, transparent 92%);
  mask-image: linear-gradient(90deg, transparent 8%, #000 50%, transparent 92%);
}

.digital-commerce > .shell {
  position: relative;
  z-index: 1;
}

.commerce-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 110px;
  align-items: center;
}

.commerce-copy h2 {
  max-width: 790px;
}

.commerce-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 32px 0 0;
  color: #56646b;
  font-size: 16px;
}

.commerce-tags {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.commerce-tags span {
  padding: 9px 13px;
  border: 1px solid rgba(7, 19, 28, .15);
  background: rgba(255, 255, 255, .34);
  color: #43535b;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.commerce-constellation {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.commerce-constellation::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 38, 53, .12), transparent 66%);
  filter: blur(10px);
}

.commerce-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(7, 19, 28, .16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.commerce-ring-one {
  width: 390px;
  height: 390px;
}

.commerce-ring-two {
  width: 280px;
  height: 280px;
  border-style: dashed;
  border-color: rgba(181, 137, 58, .34);
  animation: seal-spin 38s linear infinite;
}

.commerce-core {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 175px;
  height: 175px;
  padding: 28px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(214, 177, 108, .48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, .13), transparent 24%),
    var(--ink);
  color: var(--white);
  text-align: center;
  box-shadow: 0 28px 70px rgba(7, 19, 28, .24), 0 0 0 12px rgba(7, 19, 28, .04);
  transform: translate(-50%, -50%);
}

.commerce-core small {
  color: rgba(255, 255, 255, .4);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .15em;
}

.commerce-core strong {
  margin-top: 8px;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 430;
  line-height: 1.15;
}

.commerce-core i {
  width: 35px;
  height: 1px;
  margin: 14px auto 0;
  background: var(--gold);
}

.commerce-node {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #31434c;
  font-size: 8px;
  font-weight: 780;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.commerce-node i {
  width: 10px;
  height: 10px;
  border: 2px solid #e9ece8;
  border-radius: 50%;
  background: var(--gold-dark);
  box-shadow: 0 0 0 7px rgba(181, 137, 58, .11), 0 0 18px rgba(181, 137, 58, .34);
}

.commerce-node-one { left: 13%; top: 24%; }
.commerce-node-two { right: 8%; top: 22%; }
.commerce-node-three { right: 0; top: 55%; }
.commerce-node-four { right: 16%; bottom: 11%; }
.commerce-node-five { left: 10%; bottom: 15%; }

.commerce-service-grid {
  margin-top: 95px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(7, 19, 28, .14);
  border-left: 1px solid rgba(7, 19, 28, .14);
}

.commerce-service-grid article {
  position: relative;
  min-height: 300px;
  padding: 30px;
  overflow: hidden;
  border-right: 1px solid rgba(7, 19, 28, .14);
  border-bottom: 1px solid rgba(7, 19, 28, .14);
  background: rgba(255, 255, 255, .3);
  transition: color .35s ease, background .35s ease, transform .35s var(--ease);
}

.commerce-service-grid article::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -100px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(181, 137, 58, .2);
  border-radius: 50%;
  transition: transform .5s var(--ease);
}

.commerce-service-grid article:hover {
  z-index: 2;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(7, 19, 28, .14);
}

.commerce-service-grid article:hover::after {
  transform: scale(1.4);
}

.commerce-service-grid article > span {
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 11px;
}

.commerce-service-grid svg {
  width: 46px;
  height: 46px;
  margin: 44px 0 28px;
  fill: none;
  stroke: var(--gold-dark);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.commerce-service-grid h3 {
  max-width: 330px;
  font-size: 22px;
}

.commerce-service-grid p {
  max-width: 350px;
  margin: 14px 0 0;
  color: #627178;
  font-size: 13px;
  transition: color .35s ease;
}

.commerce-service-grid article:hover p {
  color: rgba(255, 255, 255, .58);
}

.commerce-flow {
  min-height: 94px;
  margin-top: 54px;
  padding: 20px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 18px;
  background: var(--ink);
  color: rgba(255, 255, 255, .66);
}

.commerce-flow span {
  font-size: 8px;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.commerce-flow i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
}

.commerce-flow i::after {
  content: "";
  position: absolute;
  width: 35%;
  height: 1px;
  left: -35%;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  animation: commerce-flow 3.5s linear infinite;
}

.approach {
  background: var(--paper-deep);
}

.approach-shell {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 140px;
  align-items: start;
}

.approach-copy {
  position: sticky;
  top: 140px;
}

.approach-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 30px 0 0;
  color: #556168;
  font-size: 17px;
}

.approach-note {
  margin-top: 52px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.approach-note svg {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-dark);
  stroke-width: 1.3;
}

.approach-note div {
  display: flex;
  flex-direction: column;
}

.approach-note strong {
  font-size: 13px;
  letter-spacing: .04em;
}

.approach-note span {
  margin-top: 4px;
  color: #6d787e;
  font-size: 11px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  min-height: 180px;
  padding: 36px 0;
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: start;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  transition: padding-left .4s var(--ease), background .3s ease;
}

.process-list li:hover {
  padding-left: 24px;
  background: rgba(255, 255, 255, .28);
}

.process-list > li > span {
  padding-top: 5px;
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 13px;
}

.process-list h3 {
  font-size: 32px;
}

.process-list p {
  max-width: 460px;
  margin: 10px 0 0;
  color: #637078;
  font-size: 14px;
}

.asia-corridor {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(214, 177, 108, .13), transparent 25%),
    linear-gradient(145deg, #081b28 0%, #030a10 72%);
  color: var(--white);
  border-top: 1px solid rgba(214, 177, 108, .2);
}

.asia-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 70%);
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.asia-glow {
  position: absolute;
  width: 760px;
  height: 760px;
  right: -330px;
  top: 120px;
  border: 1px solid rgba(214, 177, 108, .14);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(214, 177, 108, .018),
    0 0 0 160px rgba(214, 177, 108, .012);
}

.corridor-route {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.route-city {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.route-city strong {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .08em;
}

.route-city span {
  color: rgba(255, 255, 255, .42);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.route-city-end {
  text-align: right;
}

.route-beam {
  position: relative;
  height: 1px;
  overflow: visible;
  background: rgba(255, 255, 255, .16);
}

.route-beam::before,
.route-beam::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--ink);
  transform: translateY(-50%);
}

.route-beam::before { left: 0; }
.route-beam::after { right: 0; }

.route-beam i {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.route-beam i::after {
  content: "";
  position: absolute;
  width: 26%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  box-shadow: 0 0 12px var(--gold);
  animation: route-travel 3.8s ease-in-out infinite;
}

.route-beam span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(214, 177, 108, .55);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.asia-layout {
  position: relative;
  z-index: 2;
  margin-top: 105px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 100px;
  align-items: center;
}

.asia-copy h2 {
  max-width: 640px;
  font-size: clamp(48px, 5.2vw, 76px);
}

.asia-lead {
  max-width: 570px;
  margin: 34px 0 0;
  color: var(--muted-light);
  font-size: 16px;
}

.asia-principles {
  max-width: 600px;
  margin-top: 42px;
  border-top: 1px solid var(--line-light);
}

.asia-principles div {
  min-height: 68px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line-light);
}

.asia-principles span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 11px;
}

.asia-principles p {
  margin: 0;
  color: rgba(255, 255, 255, .75);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .04em;
}

.asia-signature {
  margin-top: 44px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--gold);
}

.asia-signature strong {
  color: var(--gold-bright);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", sans-serif;
  font-size: 19px;
  font-weight: 520;
  letter-spacing: .06em;
}

.asia-signature span {
  margin-top: 6px;
  color: rgba(255, 255, 255, .38);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.asia-visuals {
  position: relative;
  min-height: 680px;
  perspective: 1200px;
}

.visual-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .36);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .45s var(--ease), border-color .35s ease, box-shadow .35s ease;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(237, 207, 145, .2), transparent 28%);
  transition: opacity .35s ease;
}

.visual-card:hover {
  border-color: rgba(214, 177, 108, .55);
  box-shadow: 0 50px 110px rgba(0, 0, 0, .48);
}

.visual-card:hover::after {
  opacity: 1;
}

.visual-card-main {
  z-index: 1;
  width: 82%;
  right: 0;
  top: 0;
}

.visual-card-secondary {
  z-index: 2;
  width: 58%;
  left: 0;
  bottom: 4px;
}

.visual-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.visual-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(3, 10, 16, .48));
}

.visual-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease), filter .6s ease;
}

.visual-card:hover img {
  transform: scale(1.075);
  filter: saturate(1.06) contrast(1.03);
}

.visual-card figcaption {
  min-height: 70px;
  padding: 17px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(3, 10, 16, .96);
}

.visual-card figcaption span {
  color: rgba(255, 255, 255, .84);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.visual-card figcaption small {
  color: var(--gold);
  font-size: 7px;
  font-weight: 750;
  letter-spacing: .14em;
  text-align: right;
  text-transform: uppercase;
}

.visual-seal {
  position: absolute;
  z-index: 4;
  right: 26px;
  bottom: 0;
  width: 116px;
  height: 116px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(214, 177, 108, .62);
  border-radius: 50%;
  background: rgba(3, 10, 16, .84);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
  backdrop-filter: blur(12px);
}

.visual-seal::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(214, 177, 108, .32);
  border-radius: 50%;
  animation: seal-spin 20s linear infinite;
}

.visual-seal span {
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: 22px;
}

.visual-seal i {
  width: 30px;
  height: 1px;
  margin: 4px auto;
  background: rgba(214, 177, 108, .5);
}

.visual-seal small {
  color: rgba(255, 255, 255, .48);
  font-size: 7px;
  font-weight: 750;
  letter-spacing: .13em;
}

.network {
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 50%, rgba(214, 177, 108, .09), transparent 30%),
    var(--ink-deep);
  color: var(--white);
}

.network-grid {
  min-height: 610px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.network-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 32px 0 0;
  color: var(--muted-light);
}

.region-list {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.region-list span {
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.network-visual {
  position: relative;
  min-height: 560px;
}

.globe {
  position: absolute;
  width: 480px;
  height: 480px;
  left: 50%;
  top: 50%;
  transform: translate(-48%, -50%);
  overflow: hidden;
  border: 1px solid rgba(214, 177, 108, .4);
  border-radius: 50%;
  background:
    radial-gradient(circle at 58% 42%, rgba(214, 177, 108, .12), transparent 24%),
    radial-gradient(circle, rgba(255, 255, 255, .08) 1px, transparent 1.5px);
  background-size: auto, 18px 18px;
  box-shadow:
    inset 0 0 80px rgba(214, 177, 108, .08),
    0 0 100px rgba(214, 177, 108, .06);
}

.globe::before,
.globe::after {
  content: "";
  position: absolute;
  inset: 12% 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.globe::after {
  inset: 0 31%;
}

.orbit,
.globe-line {
  position: absolute;
  border: 1px solid rgba(214, 177, 108, .28);
  border-radius: 50%;
}

.orbit-one {
  width: 530px;
  height: 170px;
  left: -25px;
  top: 155px;
  transform: rotate(-13deg);
}

.orbit-two {
  width: 260px;
  height: 490px;
  left: 110px;
  top: -5px;
  transform: rotate(23deg);
}

.orbit-three {
  width: 420px;
  height: 300px;
  left: 30px;
  top: 90px;
  transform: rotate(19deg);
}

.node {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 7px rgba(214, 177, 108, .1), 0 0 25px var(--gold);
}

.node-one { left: 101px; top: 183px; }
.node-two { right: 73px; top: 156px; }
.node-three { left: 158px; bottom: 83px; }
.node-four { right: 116px; bottom: 122px; }

.uae-node {
  position: absolute;
  z-index: 3;
  right: 155px;
  top: 236px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-bright);
  font-size: 10px;
  letter-spacing: .12em;
}

.uae-node i {
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 9px rgba(214, 177, 108, .12), 0 0 30px var(--gold);
  animation: node-pulse 2.4s ease-out infinite;
}

.route-label {
  position: absolute;
  color: rgba(255, 255, 255, .42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.route-label-one { top: 100px; left: 48px; }
.route-label-two { top: 150px; right: 7px; }
.route-label-three { bottom: 92px; left: 70px; }

.elyeter {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 32%, rgba(84, 130, 164, .22), transparent 28%),
    linear-gradient(135deg, #07131c, #0c2331 64%, #07131c);
  color: var(--white);
}

.elyeter::before {
  content: "ELYETER";
  position: absolute;
  left: -1.5vw;
  bottom: -7vw;
  color: rgba(255, 255, 255, .018);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21vw;
  line-height: .8;
  letter-spacing: -.05em;
  pointer-events: none;
}

.elyeter-orbit {
  position: absolute;
  border: 1px solid rgba(214, 177, 108, .14);
  border-radius: 50%;
  pointer-events: none;
}

.elyeter-orbit-one {
  width: 720px;
  height: 720px;
  right: -240px;
  top: -160px;
}

.elyeter-orbit-two {
  width: 520px;
  height: 520px;
  right: -140px;
  top: -60px;
  border-style: dashed;
  animation: seal-spin 36s linear infinite;
}

.elyeter-grid {
  position: relative;
  z-index: 1;
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 110px;
  align-items: center;
}

.project-status {
  width: fit-content;
  margin-bottom: 36px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(214, 177, 108, .35);
  background: rgba(3, 10, 16, .34);
  color: var(--gold-bright);
  font-size: 8px;
  font-weight: 760;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.project-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(214, 177, 108, .1), 0 0 15px rgba(214, 177, 108, .7);
  animation: node-pulse 2.6s ease-out infinite;
}

.elyeter-copy h2 {
  max-width: 760px;
}

.elyeter-lead {
  max-width: 700px;
  margin: 32px 0 0;
  color: var(--muted-light);
  font-size: 16px;
}

.elyeter-features {
  max-width: 730px;
  margin-top: 45px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.elyeter-features div {
  min-height: 86px;
  padding: 18px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 8px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.elyeter-features span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 10px;
}

.elyeter-features p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .03em;
}

.elyeter-device-scene {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.elyeter-phone {
  position: relative;
  z-index: 2;
  width: 310px;
  height: 625px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 42px;
  background: linear-gradient(150deg, #c7d4da 0%, #566771 6%, #0c171d 16%, #02070a 100%);
  box-shadow: 0 60px 100px rgba(0, 0, 0, .45), inset 0 0 0 2px rgba(255, 255, 255, .08);
  transform: rotateY(-8deg) rotateX(2deg);
}

.elyeter-phone-speaker {
  position: absolute;
  z-index: 3;
  width: 74px;
  height: 20px;
  left: 50%;
  top: 17px;
  border-radius: 20px;
  background: #020609;
  transform: translateX(-50%);
}

.elyeter-screen {
  height: 100%;
  padding: 48px 20px 24px;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 84% 2%, rgba(214, 177, 108, .2), transparent 22%),
    linear-gradient(160deg, #f3f5f3 0%, #dce5e7 100%);
  color: var(--ink);
}

.elyeter-app-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.elyeter-app-head div {
  display: flex;
  flex-direction: column;
}

.elyeter-app-head small {
  color: #7b878c;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .16em;
}

.elyeter-app-head strong {
  margin-top: 3px;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 450;
  letter-spacing: .02em;
}

.elyeter-app-head > span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-bright);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .08em;
}

.elyeter-search {
  height: 43px;
  margin-top: 25px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(7, 19, 28, .09);
  background: rgba(255, 255, 255, .72);
  color: #78868c;
  font-size: 8px;
}

.elyeter-search i {
  width: 11px;
  height: 11px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.elyeter-categories {
  margin-top: 17px;
  display: flex;
  gap: 7px;
}

.elyeter-categories span {
  padding: 7px 9px;
  border: 1px solid rgba(7, 19, 28, .1);
  border-radius: 20px;
  background: rgba(255, 255, 255, .55);
  color: #56666d;
  font-size: 6px;
  font-weight: 750;
  letter-spacing: .05em;
}

.elyeter-categories span:first-child {
  background: var(--ink);
  color: var(--white);
}

.elyeter-product-grid {
  margin-top: 17px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.elyeter-product-grid > div {
  padding: 8px;
  border: 1px solid rgba(7, 19, 28, .08);
  background: rgba(255, 255, 255, .72);
}

.elyeter-product-grid i {
  height: 108px;
  display: block;
  background:
    radial-gradient(circle at 50% 42%, rgba(214, 177, 108, .35), transparent 28%),
    linear-gradient(140deg, #d3dfe2, #aebfc5);
}

.elyeter-product-grid > div:nth-child(2) i {
  background:
    linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, .6) 46% 52%, transparent 53%),
    linear-gradient(140deg, #c1ccd2, #849ca6);
}

.elyeter-product-grid span,
.elyeter-product-grid small {
  width: 82%;
  height: 5px;
  margin-top: 9px;
  display: block;
  background: rgba(7, 19, 28, .22);
}

.elyeter-product-grid small {
  width: 45%;
  margin-top: 6px;
  background: rgba(214, 177, 108, .8);
}

.elyeter-track {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(7, 19, 28, .08);
  background: var(--white);
}

.elyeter-track div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 7px;
}

.elyeter-track div i {
  position: relative;
  height: 1px;
  background: rgba(7, 19, 28, .16);
}

.elyeter-track div i::after {
  content: "";
  position: absolute;
  width: 42%;
  height: 1px;
  left: 0;
  background: var(--gold-dark);
}

.elyeter-track p {
  margin: 10px 0 0;
  color: #68767d;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.elyeter-data-card {
  position: absolute;
  z-index: 3;
  width: 175px;
  padding: 18px;
  border: 1px solid rgba(214, 177, 108, .32);
  background: rgba(3, 10, 16, .78);
  box-shadow: 0 22px 45px rgba(0, 0, 0, .32);
  backdrop-filter: blur(15px);
}

.elyeter-data-card small {
  display: block;
  color: rgba(255, 255, 255, .38);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .17em;
}

.elyeter-data-card strong {
  margin-top: 7px;
  display: block;
  color: var(--gold-bright);
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 430;
}

.elyeter-data-card i {
  width: 100%;
  height: 1px;
  margin-top: 14px;
  display: block;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.elyeter-data-card-top {
  left: 0;
  top: 120px;
}

.elyeter-data-card-bottom {
  right: -20px;
  bottom: 110px;
}

.compliance {
  background: var(--paper-deep);
}

.compliance-heading {
  display: grid;
  grid-template-columns: 1fr 430px;
  align-items: end;
  gap: 80px;
}

.compliance-heading > p {
  margin: 0 0 4px;
  color: #5e6b72;
}

.compliance-grid {
  margin-top: 82px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.compliance-grid article {
  position: relative;
  min-height: 320px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .24);
}

.compliance-grid article > span {
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 11px;
}

.compliance-grid svg {
  width: 48px;
  height: 48px;
  margin: 54px 0 30px;
  fill: none;
  stroke: var(--gold-dark);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.compliance-grid h3 {
  font-size: 21px;
}

.compliance-grid p {
  margin: 14px 0 0;
  color: #637078;
  font-size: 13px;
}

.compliance-note {
  margin: 34px 0 0;
  padding-left: 18px;
  border-left: 1px solid var(--gold-dark);
  color: #667279;
  font-size: 11px;
}

.partnerships {
  background: var(--paper);
}

.partnership-heading {
  max-width: 880px;
}

.partner-types {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.partner-types article {
  min-height: 300px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partner-types span {
  color: var(--gold-dark);
  font-family: Georgia, serif;
  font-size: 12px;
}

.partner-types h3 {
  margin-top: 82px;
}

.partner-types p {
  margin: 16px 0 0;
  color: #657178;
  font-size: 13px;
}

.partnership-cta {
  position: relative;
  min-height: 470px;
  margin-top: 110px;
  padding: 70px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  background:
    radial-gradient(circle at 85% 20%, rgba(214, 177, 108, .16), transparent 26%),
    linear-gradient(135deg, var(--navy) 0%, var(--ink-deep) 75%);
  color: var(--white);
}

.partnership-cta::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -160px;
  bottom: -310px;
  border: 1px solid rgba(214, 177, 108, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(214, 177, 108, .025), 0 0 0 100px rgba(214, 177, 108, .018);
}

.partnership-cta > div:first-child {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.partnership-cta h2 {
  font-size: clamp(44px, 5vw, 72px);
}

.partnership-cta p:not(.eyebrow) {
  max-width: 580px;
  margin: 25px 0 0;
  color: var(--muted-light);
}

.partnership-cta .button {
  position: relative;
  z-index: 1;
  min-width: 245px;
}

.cta-meta {
  position: absolute;
  z-index: 1;
  left: 70px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, .42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.cta-meta i {
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, .22);
}

.cta-meta a {
  transition: color .2s ease;
}

.cta-meta a:hover {
  color: var(--gold-bright);
}

.site-footer {
  background: var(--ink-deep);
  color: var(--white);
}

.footer-main {
  min-height: 260px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
}

.footer-main > p {
  max-width: 410px;
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-family: Georgia, serif;
  font-size: 18px;
}

.back-to-top {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, .6);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.back-to-top span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--gold);
  transition: transform .3s var(--ease), border-color .3s ease;
}

.back-to-top:hover span {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.footer-contact {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
  background:
    radial-gradient(circle at 92% 10%, rgba(214, 177, 108, .13), transparent 24%),
    rgba(255, 255, 255, .018);
}

.footer-contact::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -130px;
  top: -210px;
  border: 1px solid rgba(214, 177, 108, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(214, 177, 108, .018);
}

.footer-contact-grid {
  position: relative;
  z-index: 1;
  min-height: 152px;
  display: grid;
  grid-template-columns: 1.15fr 1.15fr .85fr .65fr auto;
  align-items: stretch;
}

.footer-contact-intro {
  padding-right: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-contact-intro small,
.footer-contact-item span {
  color: var(--gold);
  font-size: 7px;
  font-weight: 780;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-contact-intro strong {
  max-width: 260px;
  margin-top: 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 430;
  line-height: 1.25;
}

.footer-contact-item {
  min-width: 0;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line-light);
  transition: background .3s ease, color .3s ease;
}

.footer-contact-item:hover {
  background: rgba(214, 177, 108, .08);
}

.footer-contact-item strong {
  margin-top: 9px;
  color: rgba(255, 255, 255, .8);
  font-size: 12px;
  font-weight: 580;
  line-height: 1.4;
  overflow-wrap: anywhere;
  transition: color .3s ease;
}

.footer-contact-item:hover strong {
  color: var(--gold-bright);
}

.footer-contact-whatsapp strong {
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: .1em;
}

.footer-contact-button {
  align-self: center;
  min-height: 52px;
  margin-left: 24px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  cursor: pointer;
  font-size: 9px;
  font-weight: 780;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .3s ease, color .3s ease, transform .3s var(--ease);
}

.footer-contact-button:hover {
  background: var(--gold-bright);
  transform: translateY(-3px);
}

.footer-contact-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.footer-bottom {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .32);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  transition: color .2s ease;
}

.footer-legal button:hover {
  color: var(--gold-bright);
}

.contact-dialog {
  width: min(560px, calc(100vw - 40px));
  padding: 52px;
  border: 1px solid rgba(214, 177, 108, .35);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .5);
}

.contact-dialog::backdrop,
.legal-dialog::backdrop {
  background: rgba(3, 10, 16, .78);
  backdrop-filter: blur(8px);
}

.contact-dialog h2 {
  font-size: 42px;
}

.contact-dialog > p:not(.eyebrow) {
  margin: 24px 0;
  color: #5d686e;
}

.dialog-close {
  position: absolute;
  right: 18px;
  top: 14px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 30px;
  font-weight: 200;
}

.dialog-meta {
  margin: 30px 0;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dialog-meta span {
  padding: 7px 11px;
  background: var(--paper-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 28px 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-options a {
  min-height: 96px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
  transition: background .25s ease, color .25s ease;
}

.contact-options a:first-child {
  grid-column: span 2;
}

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

.contact-options span {
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-options strong {
  margin-top: 7px;
  font-size: 16px;
  font-weight: 580;
  letter-spacing: -.01em;
}

.legal-dialog {
  width: min(760px, calc(100vw - 40px));
  max-height: min(820px, calc(100svh - 40px));
  padding: 52px;
  overflow-y: auto;
  border: 1px solid rgba(214, 177, 108, .35);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .5);
}

.legal-dialog h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 430;
  letter-spacing: -.04em;
}

.legal-updated {
  margin: 12px 0 28px;
  color: #7a868c;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.legal-copy {
  margin-bottom: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-copy h3 {
  margin: 25px 0 8px;
  font-size: 16px;
}

.legal-copy h3:first-of-type {
  margin-top: 28px;
}

.legal-copy p {
  margin: 0;
  color: #5e6a71;
  font-size: 13px;
}

.legal-copy a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.visual-card[data-reveal].is-visible {
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.09) translate3d(var(--hero-x, 0), calc(var(--hero-y, 0) + var(--hero-scroll, 0px)), 0); }
  to { opacity: 1; transform: scale(1.03) translate3d(var(--hero-x, 0), calc(var(--hero-y, 0) + var(--hero-scroll, 0px)), 0); }
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

@keyframes node-pulse {
  0% { box-shadow: 0 0 0 0 rgba(214, 177, 108, .25), 0 0 30px var(--gold); }
  70% { box-shadow: 0 0 0 18px rgba(214, 177, 108, 0), 0 0 30px var(--gold); }
  100% { box-shadow: 0 0 0 0 rgba(214, 177, 108, 0), 0 0 30px var(--gold); }
}

@keyframes route-travel {
  0% { left: -28%; opacity: 0; }
  12% { opacity: 1; }
  82% { opacity: 1; }
  100% { left: 102%; opacity: 0; }
}

@keyframes commerce-flow {
  0% { left: -35%; opacity: 0; }
  15% { opacity: 1; }
  82% { opacity: 1; }
  100% { left: 105%; opacity: 0; }
}

@keyframes seal-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 64px, 1120px);
  }

  .desktop-nav {
    gap: 24px;
    margin-right: 28px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 50px;
  }

  .hero-proof {
    gap: 30px;
  }

  .company-grid,
  .approach-shell {
    gap: 80px;
  }

  .asia-layout {
    gap: 62px;
  }

  .elyeter-grid {
    gap: 60px;
  }

  .commerce-intro-grid {
    gap: 60px;
  }

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

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

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 48px, 900px);
  }

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

  .menu-toggle {
    width: 46px;
    height: 46px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: transparent;
    color: var(--white);
  }

  .menu-toggle span:not(.sr-only) {
    width: 21px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform .3s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 90px 0 auto;
    width: 100%;
    height: calc(100svh - 90px);
    min-height: 0;
    max-height: calc(100svh - 90px);
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background: rgba(3, 10, 16, .98);
    transform: translateY(-20px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .mobile-menu a {
    width: min(560px, 100%);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-family: Georgia, serif;
    font-size: 28px;
  }

  .mobile-languages {
    width: min(560px, 100%);
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .mobile-languages button {
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: transparent;
    color: rgba(255, 255, 255, .62);
    cursor: pointer;
    font-size: 10px;
    font-weight: 750;
  }

  .mobile-languages button.is-active {
    border-color: var(--gold);
    background: rgba(214, 177, 108, .1);
    color: var(--gold-bright);
  }

  .hero {
    min-height: 840px;
  }

  .hero-backdrop {
    background-position: 66% center;
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .hero-proof {
    left: 24px;
    right: 24px;
    width: auto;
    transform: none;
  }

  .hero-rail,
  .scroll-cue {
    display: none;
  }

  .company-grid,
  .section-heading-row,
  .approach-shell,
  .asia-layout,
  .network-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .company-copy {
    padding-top: 0;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .principle-card {
    min-height: 280px;
  }

  .principle-card svg {
    margin: 38px 0 24px;
  }

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

  .capability-card-wide {
    grid-column: span 2;
  }

  .approach-copy {
    position: static;
  }

  .asia-visuals {
    width: min(760px, 100%);
    min-height: 650px;
    margin-inline: auto;
  }

  .network-grid {
    min-height: unset;
  }

  .network-visual {
    min-height: 500px;
  }

  .commerce-intro-grid {
    grid-template-columns: 1fr;
  }

  .commerce-constellation {
    width: min(680px, 100%);
    margin-inline: auto;
  }

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

  .commerce-flow {
    grid-template-columns: repeat(5, 1fr);
  }

  .commerce-flow span {
    text-align: center;
  }

  .commerce-flow i {
    display: none;
  }

  .elyeter-grid {
    grid-template-columns: 1fr;
  }

  .elyeter-device-scene {
    width: min(680px, 100%);
    margin-inline: auto;
  }

  .compliance-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .partnership-cta {
    grid-template-columns: 1fr;
    padding-bottom: 110px;
  }

  .partnership-cta .button {
    justify-self: start;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 60px 0;
  }

  .footer-contact-grid {
    padding: 36px 0;
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact-intro {
    grid-column: span 2;
    padding: 0 0 28px;
  }

  .footer-contact-intro strong {
    max-width: 520px;
  }

  .footer-contact-item {
    min-height: 96px;
    border-top: 1px solid var(--line-light);
  }

  .footer-contact-item:nth-of-type(odd) {
    border-left: 0;
  }

  .footer-contact-whatsapp {
    grid-column: span 2;
  }

  .footer-contact-button {
    grid-column: span 2;
    width: 100%;
    margin: 26px 0 0;
  }

  .footer-main .back-to-top {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 40px);
  }

  html {
    scroll-padding-top: 76px;
  }

  body,
  main,
  section,
  .site-header,
  .site-footer {
    width: 100%;
    max-width: 100%;
  }

  main {
    overflow-x: hidden;
  }

  .header-shell {
    width: calc(100% - 28px);
    height: 76px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .mobile-menu {
    inset: 76px 0 auto;
    height: calc(100svh - 76px);
    min-height: 0;
    max-height: calc(100svh - 76px);
    padding: 24px 20px;
  }

  .mobile-menu a {
    padding: 13px 0;
    font-size: 22px;
  }

  .mobile-languages {
    margin-top: 20px;
    padding-bottom: 20px;
  }

  .hero {
    min-height: 760px;
    height: 100svh;
  }

  .hero-backdrop {
    background-position: 67% center;
  }

  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(2, 8, 13, .94) 0%, rgba(2, 8, 13, .62) 65%, rgba(2, 8, 13, .48) 100%),
      linear-gradient(180deg, rgba(2, 8, 13, .36) 0%, rgba(2, 8, 13, .12) 42%, rgba(2, 8, 13, .9) 100%);
  }

  .hero-grid {
    background-size: 48px 48px;
  }

  .hero-shell {
    padding-top: 36px;
  }

  .hero h1 {
    font-size: clamp(49px, 14.2vw, 70px);
  }

  .hero h1 .hero-title-accent {
    margin-top: 5px;
    font-size: .64em;
    line-height: 1.08;
  }

  .hero-lead {
    max-width: 94%;
    margin-top: 23px;
    font-size: 15px;
  }

  .hero-actions {
    margin-top: 30px;
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

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

  .hero-proof {
    bottom: 22px;
    gap: 15px;
    justify-content: space-between;
  }

  .hero-proof div:nth-child(3) {
    display: none;
  }

  .trust-track {
    min-height: 62px;
    overflow: hidden;
    justify-content: flex-start;
    gap: 18px;
    white-space: nowrap;
  }

  .trust-track span:nth-of-type(n+3),
  .trust-track i:nth-of-type(n+2) {
    display: none;
  }

  .section {
    padding: 84px 0;
  }

  .section h2 {
    max-width: 100%;
    font-size: clamp(34px, 9.7vw, 46px);
    line-height: 1.03;
    letter-spacing: -.035em;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .company-grid,
  .section-heading-row,
  .approach-shell,
  .commerce-intro-grid,
  .asia-layout,
  .network-grid {
    gap: 42px;
  }

  .company-copy .lead-copy {
    font-size: 19px;
  }

  .principles {
    margin-top: 62px;
  }

  .principle-card {
    padding: 28px;
  }

  .capability-grid {
    margin-top: 56px;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .capability-grid.capability-grid-four .capability-card,
  .capability-card,
  .capability-card-wide,
  .capability-card-commerce {
    grid-column: auto;
    min-height: 0 !important;
    padding: 26px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }

  .capability-card .card-index {
    left: 26px;
    top: 24px;
  }

  .capability-card .card-icon {
    position: static;
    flex: 0 0 auto;
    margin: 26px 0 24px auto;
  }

  .capability-card .card-arrow {
    position: absolute;
    right: 24px;
    bottom: 24px;
  }

  .capability-card h3 {
    max-width: calc(100% - 30px);
    font-size: 22px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .capability-card p,
  .capability-card-wide p {
    max-width: calc(100% - 28px);
    margin-top: 12px;
    padding-bottom: 30px;
    line-height: 1.55;
  }

  .capability-card-commerce {
    min-height: 0 !important;
  }

  .capability-card-commerce .card-index {
    position: absolute;
  }

  .capability-card-commerce .card-arrow {
    position: absolute;
  }

  .capability-card-commerce h3 {
    font-size: 25px;
  }

  .commerce-copy,
  .commerce-tags,
  .commerce-constellation,
  .approach-copy,
  .process-list,
  .asia-copy,
  .asia-principles,
  .asia-signature,
  .asia-visuals,
  .network-copy,
  .network-visual,
  .elyeter-copy,
  .elyeter-device-scene,
  .compliance-heading,
  .partnership-heading,
  .partnership-cta {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .commerce-tags span {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .commerce-constellation {
    min-height: 420px;
  }

  .commerce-ring-one {
    width: 320px;
    height: 320px;
  }

  .commerce-ring-two {
    width: 230px;
    height: 230px;
  }

  .commerce-core {
    width: 150px;
    height: 150px;
    padding: 20px;
  }

  .commerce-core strong {
    font-size: 15px;
  }

  .commerce-node {
    font-size: 6px;
    letter-spacing: .08em;
  }

  .commerce-node-one { left: 4%; }
  .commerce-node-two { right: 2%; }
  .commerce-node-three { right: -1%; }
  .commerce-node-four { right: 5%; }
  .commerce-node-five { left: 2%; }

  .commerce-service-grid {
    grid-template-columns: 1fr;
    margin-top: 62px;
  }

  .commerce-service-grid article {
    min-height: 265px;
    padding: 28px;
  }

  .commerce-service-grid svg {
    margin: 36px 0 24px;
  }

  .commerce-flow {
    min-height: unset;
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .commerce-flow span {
    padding: 6px 0;
    text-align: left;
  }

  .commerce-flow i {
    width: 100%;
    display: block;
  }

  .process-list li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
  }

  .process-list h3 {
    font-size: clamp(25px, 7.8vw, 32px);
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  .corridor-route {
    gap: 14px;
  }

  .route-city {
    flex-direction: column;
    gap: 2px;
  }

  .route-city-end {
    align-items: flex-end;
  }

  .route-city strong {
    font-size: 17px;
  }

  .route-city span {
    max-width: 90px;
    font-size: 6px;
  }

  .asia-layout {
    margin-top: 70px;
  }

  .asia-copy h2 {
    font-size: clamp(34px, 9.7vw, 46px);
    line-height: 1.03;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .asia-lead {
    max-width: 100%;
  }

  .asia-principles div {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .asia-principles p,
  .asia-signature strong,
  .asia-signature span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .asia-visuals {
    min-height: 455px;
    overflow: hidden;
  }

  .visual-card-main {
    width: 90%;
    max-width: 90%;
  }

  .visual-card-secondary {
    width: 66%;
    max-width: 66%;
  }

  .visual-card {
    max-width: 100%;
  }

  .visual-card figcaption {
    min-height: 60px;
    padding: 14px;
  }

  .visual-card figcaption span {
    font-size: 8px;
  }

  .visual-card figcaption small {
    display: none;
  }

  .visual-seal {
    right: 4px;
    width: 92px;
    height: 92px;
  }

  .network-visual {
    min-height: 370px;
    overflow: hidden;
  }

  .globe {
    width: 340px;
    height: 340px;
  }

  .orbit-one {
    width: 390px;
    top: 105px;
  }

  .orbit-two {
    width: 190px;
    height: 350px;
    left: 75px;
  }

  .orbit-three {
    width: 300px;
    height: 220px;
    left: 20px;
    top: 60px;
  }

  .node-one { left: 71px; top: 127px; }
  .node-two { right: 52px; top: 109px; }
  .node-three { left: 112px; bottom: 58px; }
  .node-four { right: 80px; bottom: 84px; }

  .uae-node {
    right: 104px;
    top: 165px;
  }

  .route-label {
    display: none;
  }

  .elyeter-grid {
    min-height: 0;
    gap: 38px;
  }

  .elyeter-features {
    grid-template-columns: 1fr;
  }

  .elyeter-device-scene {
    min-height: 560px;
    overflow: hidden;
  }

  .elyeter-phone {
    width: min(270px, 78vw);
    height: 545px;
  }

  .elyeter-screen {
    padding: 44px 16px 20px;
  }

  .elyeter-product-grid i {
    height: 88px;
  }

  .elyeter-data-card {
    width: 144px;
    padding: 14px;
  }

  .elyeter-data-card-top {
    left: 0;
    top: 98px;
  }

  .elyeter-data-card-bottom {
    right: 0;
    bottom: 88px;
  }

  .compliance-grid {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .compliance-grid article {
    min-height: 0;
    padding: 26px;
  }

  .compliance-grid svg {
    margin: 38px 0 26px;
  }

  .partner-types {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .partner-types article {
    min-height: 0;
    padding: 26px;
  }

  .partner-types h3 {
    margin-top: 36px;
    overflow-wrap: anywhere;
  }

  .partnership-cta {
    min-height: 0;
    margin-top: 70px;
    padding: 40px 26px 112px;
    gap: 34px;
  }

  .partnership-cta h2 {
    max-width: 100%;
    font-size: clamp(34px, 9.7vw, 46px);
    line-height: 1.03;
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .partnership-cta p:not(.eyebrow) {
    max-width: 100%;
  }

  .partnership-cta .button {
    width: 100%;
  }

  .cta-meta {
    left: 26px;
    right: 26px;
    bottom: 32px;
    flex-wrap: wrap;
    overflow-wrap: anywhere;
  }

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

  .footer-main .back-to-top {
    grid-column: auto;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr;
    padding: 34px 0;
  }

  .footer-contact-intro,
  .footer-contact-whatsapp,
  .footer-contact-button {
    grid-column: auto;
  }

  .footer-contact-intro {
    padding-bottom: 26px;
  }

  .footer-contact-item {
    min-height: 82px;
    padding: 22px 0;
    border-left: 0;
  }

  .footer-contact-button {
    margin-top: 22px;
  }

  .footer-bottom {
    min-height: 140px;
    padding: 28px 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 11px;
  }

  .contact-dialog,
  .legal-dialog {
    padding: 40px 26px 30px;
  }

  .contact-dialog h2 {
    font-size: 34px;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .contact-options a:first-child {
    grid-column: auto;
  }

  .legal-dialog h2 {
    font-size: 38px;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .visual-card[data-reveal],
  .visual-card[data-reveal].is-visible {
    transform: none;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
