/* Shared site styles */
:root {
  --ink: #2b205c;
  --cream: #ffffff;
  --paper: #ffffff;
  --purple: #2b205c;
  --acid: #ffffff;
  --white: #ffffff;
  --gold-deep: #725b19;
  --gold: #d4af37;
  --gold-light: #f3e7ad;
  --gold-metal: linear-gradient(110deg, #725b19 0%, #d4af37 28%, #fff3bf 48%, #b9962f 66%, #f3e7ad 82%, #725b19 100%);
  --gold-radial: radial-gradient(circle at 32% 28%, #fff8cf 0%, #f3e7ad 24%, #d4af37 55%, #725b19 100%);
  --line: rgba(255, 255, 255, 0.24);
  --pad: clamp(20px, 3.1vw, 58px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--ink);
  font-family: "DM Sans", sans-serif;
  overflow-x: clip;
}
body.menu-open {
  overflow: hidden;
}
body:not(.loaded) {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
::selection {
  background: var(--acid);
  color: var(--ink);
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-150%);
  background: var(--acid);
  padding: 10px 16px;
  color: var(--ink);
}
.skip-link:focus {
  transform: none;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 5000;
  overflow: hidden;
  color: var(--ink);
  pointer-events: all;
  isolation: isolate;
}
.intro.is-done {
  pointer-events: none;
}
.intro.is-hidden {
  visibility: hidden;
}
.intro__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 0;
  width: 50.5%;
  background: var(--acid);
  transition: transform 1.35s var(--ease);
}
.intro__panel--left {
  left: 0;
}
.intro__panel--right {
  right: 0;
}
.intro.is-done .intro__panel--left {
  transform: translateX(-102%);
}
.intro.is-done .intro__panel--right {
  transform: translateX(102%);
}
.intro__grain {
  position: absolute;
  inset: -50%;
  z-index: 3;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  animation: grain 0.18s steps(2) infinite;
  transition: opacity 0.35s ease;
}
.intro.is-done .intro__grain {
  opacity: 0;
}
.intro__grid {
  display: none;
}
.intro__grid i {
  border-right: 1px solid rgba(43, 32, 92, 0.16);
  transform: scaleY(0);
  transform-origin: top;
  animation: gridDraw 1.4s 0.1s var(--ease) forwards;
}
.intro__grid i:nth-child(2) {
  animation-delay: 0.2s;
}
.intro__grid i:nth-child(3) {
  animation-delay: 0.3s;
}
.intro__grid i:nth-child(4) {
  animation-delay: 0.4s;
}
.intro__coordinates {
  position: absolute;
  inset: 30px var(--pad) auto;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  opacity: 0;
  animation: introFade 0.6s 0.6s forwards;
  transition: opacity 0.4s ease;
}
.intro__gravity {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  transition:
    opacity 1s ease,
    transform 1.4s var(--ease);
}
.intro__gravity-lockup {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: clamp(320px, 31vw, 470px);
  aspect-ratio: 1.045;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition:
    opacity 0.7s ease,
    transform 1.2s var(--ease);
}
.intro__gravity-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.42s linear;
}
.intro.is-logo .intro__gravity-logo {
  opacity: 1;
  filter: none;
}
.intro.is-logo .intro__gravity {
  opacity: 0.3;
  transform: translateX(2.5vw) skewX(-2deg);
}
.intro.is-logo .intro__grid {
  opacity: 0.2;
  transform: scaleX(1.06) skewX(-3deg);
  transform-origin: 78% 22%;
}
.intro__gravity-meta {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 34px;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 8px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.18em;
  opacity: 0;
  animation: introFade 0.5s 0.8s forwards;
  transition: opacity 0.3s ease;
}
.intro__gravity-meta b {
  color: transparent;
  background: var(--gold-metal);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 600;
  opacity: 0.78;
}
.intro__gravity-meta em {
  justify-self: end;
  font-style: normal;
}
.intro__gravity-meta > span,
.intro__gravity-meta > em {
  transition: opacity 0.35s ease;
}
.intro.is-side-meta-hidden .intro__gravity-meta > span,
.intro.is-side-meta-hidden .intro__gravity-meta > em {
  opacity: 0;
}
.intro.is-done .intro__gravity {
  opacity: 0;
  transform: translateX(8vw) skewX(-4deg);
}
.intro.is-done .intro__gravity-lockup {
  opacity: 0;
  transform: translate(-42%, -50%) scale(0.94);
}
.intro.is-done .intro__gravity-meta,
.intro.is-done .intro__coordinates,
.intro.is-done .intro__grid {
  opacity: 0;
}
.intro.is-coordinates-hidden .intro__coordinates {
  animation: none;
  opacity: 0;
}
@keyframes lineIn {
  to {
    transform: scaleX(1);
  }
}
@keyframes grain {
  0% {
    transform: translate(0);
  }
  25% {
    transform: translate(2%, -1%);
  }
  50% {
    transform: translate(-1%, 2%);
  }
  75% {
    transform: translate(1%, 1%);
  }
}
@keyframes gridDraw {
  to {
    transform: scaleY(1);
  }
}
@keyframes introFade {
  to {
    opacity: 1;
  }
}

.progress {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 2000;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
}
.progress i {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--gold-metal);
  transform: scaleX(0);
  transform-origin: left;
}
.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3000;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  color: var(--ink);
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    conic-gradient(
      from 35deg,
      #725b19 0deg,
      #d4af37 58deg,
      #f7edbd 103deg,
      #a48629 158deg,
      #e0c65f 225deg,
      #fff3bf 276deg,
      #8a7225 326deg,
      #725b19 360deg
    ) border-box;
  box-shadow:
    0 0 0 1px rgba(138, 114, 37, 0.18),
    0 8px 24px rgba(138, 114, 37, 0.16),
    inset 0 0 14px rgba(212, 175, 55, 0.08);
  transition: transform 0.35s var(--ease);
  mix-blend-mode: normal;
}
.cursor img {
  width: 30px;
  height: 29px;
  object-fit: contain;
}
.cursor.is-visible {
  transform: translate(-50%, -50%) scale(1);
}
.cursor span {
  margin-top: -8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 92px;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--white);
  mix-blend-mode: normal;
  transition: transform 0.4s ease;
}
.hero-light .header,
.header-on-light .header {
  color: var(--purple);
}
.hero-inside .header {
  color: #fff;
  mix-blend-mode: normal;
}
.header.is-hidden {
  transform: translateY(-100%);
}
.logo {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 9px;
  font-family: "Manrope";
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.logo img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 8px 14px rgba(43, 32, 92, 0.48));
}
.header .logo img {
  display: block;
  width: 52px;
  height: 50px;
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 1px 2px rgba(43, 32, 92, 0.96))
    drop-shadow(0 8px 18px rgba(43, 32, 92, 0.78))
    drop-shadow(0 0 26px rgba(43, 32, 92, 0.48));
}
.header .logo span {
  display: none;
}
.hero-light .header .logo img,
.header-on-light .header .logo img {
  filter: none;
}
.menu-open .header {
  color: var(--white);
}
.menu-open .header .logo img {
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 1px 2px rgba(43, 32, 92, 0.96))
    drop-shadow(0 8px 18px rgba(43, 32, 92, 0.78))
    drop-shadow(0 0 26px rgba(43, 32, 92, 0.48));
}
.header__center {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.header__center i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-radial);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.28);
}
.header__map {
  color: inherit;
  white-space: nowrap;
  transition: opacity .25s ease;
}
.header__map:hover,
.header__map:focus-visible {
  opacity: .62;
}
.header__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 36px;
}
.portal-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.language-switch {
  padding: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 0.25s ease;
}
.language-switch:hover {
  opacity: 0.64;
}
.language-switch[lang="ar"] {
  letter-spacing: 0;
  text-transform: none;
}
.menu-toggle {
  min-width: 75px;
  padding: 10px 0;
  display: grid;
  grid-template-columns: 1fr 18px;
  gap: 3px 10px;
  border: 0;
  background: transparent;
  text-transform: uppercase;
  cursor: pointer;
}
.menu-toggle span {
  grid-row: 1 / 3;
  font-size: 10px;
  letter-spacing: 0.15em;
}
.menu-toggle i {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold-metal);
  transition: transform 0.35s ease;
}
.menu-open .menu-toggle i:first-of-type {
  transform: translateY(2px) rotate(45deg);
}
.menu-open .menu-toggle i:last-of-type {
  transform: translateY(-2px) rotate(-45deg);
}

.menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  padding: 132px var(--pad) 48px;
  display: grid;
  grid-template-columns: 24% 1fr;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-102%);
  transition: transform 0.8s var(--ease);
}
.menu.is-open {
  transform: none;
}
.menu__number {
  font-size: 10px;
  letter-spacing: 0.2em;
  opacity: 0.55;
}
.menu nav {
  display: flex;
  flex-direction: column;
}
.menu nav a {
  position: relative;
  padding: 4px 0 14px;
  font: 600 clamp(44px, 7.2vw, 118px)/0.9 "Manrope";
  letter-spacing: -0.07em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  transition:
    color 0.25s,
    padding-left 0.4s var(--ease);
}
.menu nav a:hover {
  color: var(--acid);
  padding-left: 0.16em;
}
.menu nav span {
  display: inline-block;
  width: 38px;
  font: 500 9px/1 "DM Sans";
  letter-spacing: 0.1em;
  vertical-align: top;
  margin-top: 1.5em;
}
.menu__footer {
  grid-column: 1 / -1;
  align-self: end;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.image-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}
.code-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #100a27;
}

.code-scene--shipment {
  background: #fff;
}

.code-scene--network {
  background: #100a27;
}
.image-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(43, 32, 92, 0.16), rgba(43, 32, 92, 0.02) 45%, rgba(29, 21, 61, 0.68));
}
.image-section:not(.hero) > :not(.code-scene):not(.image-shade) { position: relative; z-index: 2; }
.image-shade--warm {
  background: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.72) 43%, rgba(255,255,255,.08) 76%);
}
.image-shade--left {
  background: linear-gradient(90deg, rgba(29, 21, 61, 0.78) 0%, rgba(43, 32, 92, 0.35) 38%, rgba(43, 32, 92, 0.05) 68%);
}

.hero {
  height: 280svh;
  min-height: 280svh;
  padding: 0;
  color: var(--purple);
  background: #fff;
  overflow: visible;
}
.hero__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
}
.hero__object {
  position: absolute;
  z-index: 3;
  right: 4vw;
  top: 51%;
  width: clamp(390px, 36vw, 560px);
  aspect-ratio: 0.82;
  transform: translateY(-50%);
  transition: opacity 0.1s linear;
  will-change: transform, opacity;
}
.trade-portal {
  position: absolute;
  inset: 0;
  transform: translateY(2%);
  filter: drop-shadow(0 32px 28px rgba(43, 32, 92, 0.18));
}
.portal-frame {
  position: absolute;
  inset: 1% 7% 12%;
  overflow: hidden;
  background: #1b123e;
  border: 1px solid #2b205c;
  box-shadow:
    inset 0 0 0 8px #21174b,
    inset 0 0 0 9px rgba(255, 255, 255, 0.12),
    0 15px 35px rgba(43, 32, 92, 0.16);
}
.portal-frame::before,
.portal-frame::after {
  content: "";
  position: absolute;
  z-index: 7;
  top: 11%;
  bottom: 7%;
  width: 4.7%;
  background: linear-gradient(90deg, #160f34, #2b205c 55%, #171037);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.11);
}
.portal-frame::before {
  left: 0;
}
.portal-frame::after {
  right: 0;
  transform: scaleX(-1);
}
.portal-lintel {
  position: absolute;
  z-index: 8;
  left: 0;
  right: 0;
  top: 0;
  height: 12%;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 12px;
  color: #fff;
  background: linear-gradient(180deg, #2b205c, #1c1341);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-size: clamp(4px, 0.38vw, 6px);
  font-weight: 700;
  letter-spacing: 0.15em;
}
.portal-lintel span:last-child {
  text-align: right;
}
.portal-chamber {
  position: absolute;
  left: 4.7%;
  right: 4.7%;
  top: 12%;
  bottom: 7%;
  z-index: 2;
  overflow: hidden;
  background: #100a27;
  box-shadow: inset 0 0 28px #090617;
}
.portal-depth {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.34;
  transform: scale(1.08);
  transform-origin: center;
  background: radial-gradient(circle at 50% 44%, #493b83 0, #2b205c 34%, #100a27 74%);
  transition:
    opacity 0.12s linear,
    transform 0.12s linear;
  will-change: opacity, transform;
}
.portal-depth__glow {
  position: absolute;
  left: 24%;
  right: 24%;
  top: 8%;
  bottom: 7%;
  border-radius: 50%;
  background: #fff;
  opacity: 0.09;
  filter: blur(22px);
  animation: portalPulse 2.8s ease-in-out infinite;
}
.portal-depth__grid {
  position: absolute;
  left: -35%;
  right: -35%;
  bottom: -4%;
  height: 60%;
  transform: perspective(280px) rotateX(65deg);
  transform-origin: bottom;
  background-image: linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 34px 28px;
  mask-image: linear-gradient(transparent, #000 35%);
}
.portal-depth__rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.portal-depth__rings i {
  position: absolute;
  width: 25%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  animation: portalRing 3.2s ease-out infinite;
}
.portal-depth__rings i:nth-child(2) {
  animation-delay: 1.05s;
}
.portal-depth__rings i:nth-child(3) {
  animation-delay: 2.1s;
}
.portal-depth__route {
  position: absolute;
  inset: 0;
}
.portal-depth__route i {
  position: absolute;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.55), transparent);
  transform-origin: bottom;
}
.portal-depth__route i:first-child {
  left: 28%;
  transform: rotate(12deg);
}
.portal-depth__route i:nth-child(2) {
  left: 50%;
}
.portal-depth__route i:last-child {
  right: 28%;
  transform: rotate(-12deg);
}
.portal-node {
  position: absolute;
  z-index: 2;
  padding: 5px 7px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #21174b;
  font-size: 4px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.portal-node--one {
  left: 12%;
  top: 31%;
}
.portal-node--two {
  right: 9%;
  top: 46%;
}
.portal-node--three {
  left: 22%;
  bottom: 16%;
}
.portal-door {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  width: 50.25%;
  overflow: hidden;
  background: repeating-linear-gradient(90deg, #2b205c 0, #2b205c 22%, #251b52 22.4%, #251b52 24%, #2b205c 24.4%, #2b205c 48%);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.12s linear;
  will-change: transform;
}
.portal-door::before {
  content: "";
  position: absolute;
  inset: 3%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 0 18px rgba(8, 5, 23, 0.26);
}
.portal-door::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.08), transparent 24%, transparent 72%, rgba(0, 0, 0, 0.14));
}
.portal-door--left {
  left: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.44);
  box-shadow: 8px 0 18px rgba(8, 5, 23, 0.38);
}
.portal-door--right {
  right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: -8px 0 18px rgba(8, 5, 23, 0.38);
}
.portal-door > i {
  position: absolute;
  z-index: 2;
  left: 4%;
  right: 4%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}
.portal-door > i:first-child {
  top: 20%;
}
.portal-door > i:nth-child(2) {
  top: 40%;
}
.portal-door > i:nth-child(3) {
  top: 60%;
}
.portal-door > i:last-child {
  top: 80%;
}
.portal-brand {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 48%;
  width: 34%;
  transform: translate(-50%, -50%);
  transition:
    opacity 0.12s linear,
    transform 0.12s linear;
  will-change: opacity, transform;
}
.portal-brand img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}
.portal-seam {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.24);
}
.portal-sensor {
  position: absolute;
  z-index: 7;
  top: 5%;
  width: 12px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #171037;
}
.portal-sensor--left {
  left: 1.4%;
}
.portal-sensor--right {
  right: 1.4%;
}
.portal-sensor i {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-radial);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.7);
  animation: portalBlink 1.6s steps(1) infinite;
}
.portal-threshold {
  position: absolute;
  z-index: 8;
  left: 4.7%;
  right: 4.7%;
  bottom: 0;
  height: 7%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #171037;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}
.portal-threshold span {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(160deg, transparent 50%, rgba(255, 255, 255, 0.07) 51%);
}
.portal-floor {
  position: absolute;
  z-index: -1;
  left: -17%;
  right: -17%;
  bottom: 0;
  height: 27%;
  overflow: hidden;
  transform: perspective(300px) rotateX(64deg);
  transform-origin: bottom;
  background:
    linear-gradient(180deg, rgba(43, 32, 92, 0.16), transparent 62%),
    repeating-linear-gradient(90deg, transparent 0, transparent 13.8%, rgba(43, 32, 92, 0.16) 14%, transparent 14.2%);
  mask-image: linear-gradient(#000, transparent 85%);
}
.portal-floor i {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(43, 32, 92, 0.2);
}
.portal-floor i:first-child {
  top: 15%;
}
.portal-floor i:nth-child(2) {
  top: 34%;
}
.portal-floor i:nth-child(3) {
  top: 56%;
}
.portal-floor i:nth-child(4) {
  top: 81%;
}
.portal-floor span {
  position: absolute;
  left: 50%;
  top: 18%;
  color: #2b205c;
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  transform: translateX(-50%);
  white-space: nowrap;
}
.hero__orbit {
  position: absolute;
  inset: -21%;
  border: 1px solid rgba(43, 32, 92, 0.22);
  border-radius: 50%;
  transform: rotate(-13deg);
  animation: orbitBreathe 4s ease-in-out infinite;
}
.hero__orbit::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(43, 32, 92, 0.1);
  border-radius: 50%;
}
.hero__orbit i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 7px rgba(43, 32, 92, 0.08);
}
.hero__orbit i:first-child {
  left: 9%;
  top: 27%;
}
.hero__orbit i:nth-child(2) {
  right: 8%;
  bottom: 24%;
}
.hero__orbit span {
  position: absolute;
  left: 8%;
  right: auto;
  top: 30%;
  padding: 7px 9px;
  color: #fff;
  background: var(--purple);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.hero__inside {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  background: radial-gradient(circle at center, #493b83 0%, #2b205c 48%, #17102f 100%);
  clip-path: circle(0vmax at 50% 50%);
  opacity: 0;
  pointer-events: none;
  will-change: clip-path, opacity;
}
.hero__tunnel {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.hero__tunnel i {
  position: absolute;
  width: 34vmin;
  height: 34vmin;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  animation: tunnelSpin 12s linear infinite;
}
.hero__tunnel i:nth-child(2) {
  width: 58vmin;
  height: 58vmin;
  animation-direction: reverse;
  animation-duration: 17s;
}
.hero__tunnel i:nth-child(3) {
  width: 82vmin;
  height: 82vmin;
  animation-duration: 23s;
}
.hero__tunnel i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.8);
}
.hero__inside-meta {
  position: absolute;
  inset: 108px var(--pad) auto;
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.hero__inside-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  opacity: 0;
  transform: translateY(25px);
  will-change: opacity, transform;
}
.hero__inside-copy > span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.25em;
}
.hero__inside-copy strong {
  display: block;
  margin-top: 18px;
  font: 700 clamp(64px, 9vw, 150px)/0.78 "Manrope";
  letter-spacing: -0.075em;
}
.hero__inside-copy em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.1;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, transparent calc(25% - 0.5px), var(--purple) 25%, transparent calc(25% + 0.5px)),
    linear-gradient(90deg, transparent calc(50% - 0.5px), var(--purple) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(90deg, transparent calc(75% - 0.5px), var(--purple) 75%, transparent calc(75% + 0.5px));
}
.hero__topline {
  position: absolute;
  z-index: 4;
  left: var(--pad);
  top: 116px;
  font-size: 9px;
  letter-spacing: 0.22em;
}
.hero__headline {
  position: absolute;
  z-index: 4;
  left: var(--pad);
  top: 43%;
  width: 60vw;
  transform: translateY(-50%);
  will-change: transform, opacity;
}
.line-mask {
  overflow: hidden;
}
.hero h1 {
  margin: 0;
  font: 700 clamp(66px, 9.4vw, 170px)/0.76 "Manrope";
  letter-spacing: -0.085em;
  white-space: nowrap;
  transform: translateY(115%);
  transition: transform 1.3s var(--ease);
  text-shadow: 0 8px 30px rgba(15, 10, 34, 0.18);
}
.hero .line-mask:nth-child(2) h1 {
  font-size: clamp(58px, 7.9vw, 142px);
}
.loaded .hero h1 {
  transform: none;
}
.loaded .line-mask:nth-child(2) h1 {
  transition-delay: 0.1s;
}
.hero h1 em {
  font-family: Georgia, serif;
  font-size: 0.69em;
  font-weight: 400;
  letter-spacing: -0.08em;
}
.hero__bottom {
  position: absolute;
  z-index: 4;
  left: var(--pad);
  right: var(--pad);
  bottom: 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  will-change: transform, opacity;
}
.hero__bottom > p {
  margin: 0;
  font: 500 clamp(14px, 1.2vw, 20px)/1.35 "Manrope";
}
.round-link {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--acid);
  color: var(--ink);
  transition:
    transform 0.4s var(--ease),
    background 0.3s;
}
.round-link:hover {
  background: #fff;
  transform: scale(1.08);
}
.round-link span {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
.round-link b {
  align-self: flex-start;
  font-size: 18px;
}
.hero .round-link {
  color: #fff;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--purple), var(--purple)) padding-box,
    var(--gold-metal) border-box;
  box-shadow: 0 12px 32px rgba(138, 114, 37, 0.14);
}
.hero .round-link b {
  color: transparent;
  background: var(--gold-metal);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero .round-link:hover {
  color: #fff;
  background:
    linear-gradient(#1f1747, #1f1747) padding-box,
    var(--gold-metal) border-box;
}
.scroll-cue {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 9px;
  letter-spacing: 0.14em;
}
.scroll-cue i {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  position: relative;
}
.scroll-cue i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 11px;
  width: 1px;
  height: 18px;
  background: #fff;
  animation: scrollCue 1.8s ease-in-out infinite;
}
.hero .scroll-cue i {
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gold-metal) border-box;
}
.hero .scroll-cue i::after {
  background: var(--gold-metal);
}
@keyframes scrollCue {
  0%,
  100% {
    transform: translateY(-4px);
    opacity: 0.2;
  }
  50% {
    transform: translateY(7px);
    opacity: 1;
  }
}
.hero__index {
  position: absolute;
  z-index: 4;
  top: 116px;
  right: var(--pad);
  font-size: 8px;
  letter-spacing: 0.2em;
}
.reveal {
  opacity: 0;
  transition: opacity 1s 1.2s ease;
}
.loaded .reveal {
  opacity: 1;
}
.loaded .hero__bottom,
.loaded .hero__topline {
  transition-delay: 0s;
  transition-duration: 0.35s;
}
@keyframes orbitBreathe {
  0%,
  100% {
    transform: rotate(-13deg) scale(0.98);
    opacity: 0.65;
  }
  50% {
    transform: rotate(-9deg) scale(1.02);
    opacity: 1;
  }
}
@keyframes tunnelSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes portalRing {
  0% {
    transform: scale(0.55);
    opacity: 0;
  }
  18% {
    opacity: 0.55;
  }
  100% {
    transform: scale(3.8);
    opacity: 0;
  }
}
@keyframes portalPulse {
  0%,
  100% {
    opacity: 0.06;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.14;
    transform: scale(1.08);
  }
}
@keyframes portalBlink {
  0%,
  48% {
    opacity: 1;
  }
  49%,
  100% {
    opacity: 0.25;
  }
}

.section-meta {
  position: relative;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-meta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 2px;
  background: var(--gold-metal);
}
.manifesto {
  min-height: 120vh;
  position: relative;
  padding: 115px var(--pad);
  background: var(--paper);
  overflow: hidden;
}
.manifesto__lead {
  width: 90%;
  margin: 11vh 0 0;
  font: 600 clamp(58px, 10.2vw, 174px)/0.88 "Manrope";
  letter-spacing: -0.075em;
}
.manifesto__lead .word {
  display: inline-block;
  opacity: 0.13;
  transition: opacity 0.25s;
}
.manifesto__lead .word.is-active {
  opacity: 1;
}
.manifesto__body {
  width: min(690px, 55vw);
  margin: 14vh 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.55;
}
.orbit-mark {
  position: absolute;
  left: var(--pad);
  bottom: 78px;
  width: 170px;
  height: 170px;
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gold-metal) border-box;
  border-radius: 50%;
  animation: spin 18s linear infinite;
}
.orbit-mark::after {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(43, 32, 92, 0.18);
  border-radius: 50%;
}
.orbit-mark span {
  position: absolute;
  font-size: 7px;
  letter-spacing: 0.1em;
}
.orbit-mark span:nth-child(1) {
  top: 12px;
  left: 66px;
}
.orbit-mark span:nth-child(2) {
  right: -17px;
  top: 80px;
}
.orbit-mark span:nth-child(3) {
  bottom: 10px;
  left: 57px;
}
.orbit-mark i {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font: 700 35px "Manrope";
  color: #fff;
  -webkit-text-stroke: 1px var(--purple);
  text-shadow: 0 2px 8px rgba(43, 32, 92, 0.18);
  animation: spin 18s linear infinite reverse;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.statement {
  min-height: 100svh;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  background: var(--purple);
}
.statement__eyebrow {
  position: relative;
  padding-left: 54px;
  margin: 0 var(--pad) 4.5vh;
  font-size: 9px;
  letter-spacing: 0.22em;
}
.statement__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 38px;
  height: 2px;
  background: var(--gold-metal);
}
.statement__line {
  display: flex;
  width: max-content;
  font: 700 clamp(50px, 7.6vw, 132px)/0.9 "Manrope";
  letter-spacing: -0.075em;
  white-space: nowrap;
}
.statement__line span {
  padding-right: 0.25em;
}
.statement__line--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.75);
}
.statement p {
  width: min(520px, calc(100% - 40px));
  margin: 5.5vh var(--pad) 0 auto;
  font-size: clamp(17px, 1.35vw, 23px);
  line-height: 1.45;
}

.chapter {
  min-height: 120svh;
  padding: 110px var(--pad) 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#movement {
  --line: rgba(43,32,92,.18);
  color: var(--purple);
  background: #fff;
}
.chapter__meta {
  position: relative;
  width: 100%;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.chapter__meta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 2px;
  background: var(--gold-metal);
}
.chapter__copy {
  margin: 20vh 0 12vh;
}
.kicker {
  font-size: 9px !important;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: transparent;
  background: var(--gold-metal);
  -webkit-background-clip: text;
  background-clip: text;
}
.chapter h2,
.merchant h2 {
  margin: 20px 0 30px;
  font: 600 clamp(64px, 9.4vw, 160px)/0.84 "Manrope";
  letter-spacing: -0.075em;
}
.chapter h2 em,
.merchant h2 em,
.panel h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.chapter__description {
  width: min(450px, 90%);
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.5;
}
.chapter__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: calc(100% + var(--pad) * 2);
  margin-right: calc(var(--pad) * -1);
  margin-bottom: -60px;
  margin-left: calc(var(--pad) * -1);
  border-top: 1px solid var(--line);
  background: #fff;
}
.chapter__stats div {
  padding: 30px 32px 60px;
  border-right: 1px solid var(--line);
}
.chapter__stats div:first-child {
  padding-inline-start: var(--pad);
}
.chapter__stats div:last-child {
  padding-inline-end: var(--pad);
}
.chapter__stats div + div {
  padding-left: 32px;
}
.chapter__stats strong {
  display: block;
  font: 600 clamp(42px, 5vw, 82px)/1 "Manrope";
  letter-spacing: -0.06em;
}
.chapter__stats small {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.h-scroll {
  height: 400vh;
  background: var(--ink);
  color: var(--white);
}
.h-scroll__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}
.h-scroll__header {
  position: absolute;
  inset: 32px var(--pad) auto;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  pointer-events: none;
}
.h-scroll__track {
  height: 100%;
  display: flex;
  width: 400vw;
  will-change: transform;
}
.panel {
  position: relative;
  flex: 0 0 100vw;
  height: 100%;
  padding: 15vh var(--pad) 7vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.panel__num {
  position: absolute;
  top: 48%;
  right: var(--pad);
  font: 600 clamp(130px, 25vw, 460px)/1 "Manrope";
  letter-spacing: -0.1em;
  opacity: 0.12;
  transform: translateY(-50%);
}
.panel h2 {
  margin: 15px 0 28px;
  font: 600 clamp(62px, 9.3vw, 158px)/0.86 "Manrope";
  letter-spacing: -0.075em;
}
.panel > p:not(.kicker) {
  width: min(420px, 88vw);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.5;
}
.panel--cream {
  background: var(--cream);
  color: var(--ink);
}
.panel--violet {
  background: var(--purple);
}
.panel--photo {
  justify-content: flex-end;
  --line: rgba(43,32,92,.2);
  color: var(--purple);
  background: #fff;
}
.panel__catalog,
.panel__veil {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.panel__catalog {
  width: 100%;
  height: 100%;
  display: block;
  background: #fff;
}
.panel__veil {
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.84) 46%, rgba(255,255,255,.08) 72%);
}
.panel--photo > :not(.panel__catalog):not(.panel__veil) { z-index: 2; }
.catalog-order {
  position: absolute;
  top: 13vh;
  left: var(--pad);
  width: min(320px, 30vw);
  padding: 21px 23px;
  color: var(--purple);
  border: 1px solid transparent;
  border-radius: 12px;
  background:
    linear-gradient(rgba(255,255,255,.97), rgba(255,255,255,.97)) padding-box,
    var(--gold-metal) border-box;
  box-shadow: 7px 8px 18px rgba(43,32,92,.24);
}
.catalog-order span,
.catalog-order strong {
  display: block;
}
.catalog-order span {
  margin-bottom: 17px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
}
.catalog-order strong {
  font: 700 17px/1.25 "Manrope";
}
.catalog-order i {
  position: relative;
  display: block;
  height: 3px;
  margin-top: 18px;
  overflow: hidden;
  background: rgba(43,32,92,.14);
}
.catalog-order i::after {
  content: "";
  position: absolute;
  inset: 0 38% 0 0;
  background: var(--gold-metal);
}
.h-scroll.is-light-panel .h-scroll__header { color: var(--purple); }
.glyph-search {
  position: absolute;
  right: 9vw;
  top: 50%;
  width: 25vw;
  height: 25vw;
  min-width: 230px;
  min-height: 230px;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--purple), var(--purple)) padding-box,
    var(--gold-metal) border-box;
  border-radius: 50%;
  transform: translateY(-50%);
}
.glyph-search::before {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -5%;
  width: 46%;
  height: 2px;
  background: var(--gold-metal);
  transform: rotate(45deg);
}
.glyph-search i {
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}
.order-card {
  position: absolute;
  right: 8vw;
  top: 50%;
  width: min(360px, 34vw);
  padding: 28px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--cream), var(--cream)) padding-box,
    var(--gold-metal) border-box;
  transform: rotate(5deg) translateY(-50%);
  box-shadow: 18px 18px 0 var(--ink);
}
.order-card span,
.order-card b {
  display: block;
  font-size: 9px;
  letter-spacing: 0.15em;
  margin-bottom: 34px;
}
.order-card b {
  font: 700 25px "Manrope";
  letter-spacing: -0.04em;
}
.order-card i {
  display: block;
  height: 1px;
  margin: 17px 0;
  background: rgba(43, 32, 92, 0.25);
}
.chart {
  position: absolute;
  right: 7vw;
  bottom: 13vh;
  width: 35vw;
  height: 42vh;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: flex-end;
  gap: 7%;
  padding: 0 5%;
}
.chart i {
  flex: 1;
  background: var(--acid);
  height: var(--h);
}
.chart i:nth-child(4),
.chart i:nth-child(5) {
  background: var(--gold-metal);
}
.chart i:nth-child(1) {
  --h: 25%;
}
.chart i:nth-child(2) {
  --h: 42%;
}
.chart i:nth-child(3) {
  --h: 37%;
}
.chart i:nth-child(4) {
  --h: 68%;
}
.chart i:nth-child(5) {
  --h: 92%;
}
.chart span {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: linear-gradient(transparent 49%, rgba(255, 255, 255, 0.08) 50%, transparent 51%);
}
.text-link {
  width: min(480px, 100%);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.text-link span,
.join__actions a span {
  color: transparent;
  background: var(--gold-metal);
  -webkit-background-clip: text;
  background-clip: text;
}

.merchant {
  min-height: 125svh;
  padding: 100px var(--pad) 55px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.merchant__copy {
  width: 100%;
  min-height: calc(125svh - 155px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.section-meta--light {
  color: var(--white);
  margin-bottom: auto;
}
.merchant h2 {
  font-size: clamp(50px, 6vw, 104px);
  line-height: 0.92;
  white-space: nowrap;
}
.merchant__copy > p {
  width: min(430px, 80%);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.5;
}
.join {
  position: relative;
  min-height: 115svh;
  padding: 95px var(--pad) 60px;
  background: var(--acid);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.join__overline {
  position: relative;
  padding-left: 54px;
  margin: 15vh 0 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.join__overline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 38px;
  height: 2px;
  background: var(--gold-metal);
}
.join h2 {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: calc(100% - var(--pad) * 2);
  margin: 0;
  font: 700 clamp(48px, 7.6vw, 130px)/0.9 "Manrope";
  letter-spacing: -0.07em;
  text-align: center;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}
.join h2 em {
  font-family: Georgia, serif;
  font-weight: 400;
}
.app-downloads {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.app-downloads__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.app-downloads__links {
  display: flex;
  gap: 10px;
}
.app-download {
  min-width: 148px;
  min-height: 48px;
  padding: 8px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.app-download small {
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.app-download strong {
  margin-top: 3px;
  font-size: 14px;
}
.app-download:hover {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-2px);
}
.join__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: auto;
}
.join__actions a {
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.join__actions a span {
  font-size: 20px;
  transition: transform 0.3s;
}
.join__actions a:hover span {
  transform: translate(5px, -5px);
}
footer {
  padding: 85px var(--pad) 26px;
  background: var(--ink);
  color: var(--white);
}
.footer__top {
  min-height: 38vh;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(28px, 5vw, 90px);
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
}
.logo--footer {
  font-size: clamp(34px, 5vw, 78px);
  letter-spacing: -0.07em;
}
.logo--footer img {
  width: 1em;
  height: 1em;
}
.footer__contact {
  justify-self: end;
  text-align: end;
}
.footer__contact p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}
.customer-service {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.customer-service span {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}
.customer-service bdi {
  direction: ltr;
  unicode-bidi: isolate;
  font-size: inherit;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.app-downloads--footer {
  margin: 0;
  align-self: start;
  justify-self: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.app-downloads--footer .app-downloads__label {
  color: var(--gold-light);
}
.app-downloads--footer .app-download {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
}
.app-downloads--footer .app-download:hover {
  color: var(--ink);
  background: var(--white);
}
.footer__bottom {
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.8fr 1.5fr 1fr;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer__legal {
  grid-column: 1 / -1;
  margin-top: 22px;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

@media (max-width: 850px) {
  .header {
    height: 72px;
    grid-template-columns: 1fr 1fr;
  }
  .header__center,
  .portal-link {
    display: none;
  }
  .header__actions {
    position: fixed;
    right: var(--pad);
    top: 22px;
  }
  .hero {
    padding-top: 94px;
  }
  .hero > * {
    min-width: 0;
  }
  .hero__headline {
    width: 100%;
    margin-bottom: 7vh;
  }
  .line-mask {
    width: 100%;
  }
  .hero h1 {
    font-size: clamp(54px, 17.8vw, 100px);
    line-height: 0.8;
  }
  .hero .line-mask:nth-child(2) h1 {
    font-size: clamp(43px, 13vw, 72px);
  }
  .hero__bottom {
    position: relative;
    width: 100%;
    display: block;
  }
  .scroll-cue {
    display: none;
  }
  .round-link {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 94px;
    height: 94px;
    padding: 17px;
  }
  .round-link span {
    font-size: 10px;
  }
  .hero__index {
    top: 85px;
  }
  .menu {
    padding-top: 100px;
    grid-template-columns: 1fr;
  }
  .menu__number {
    display: none;
  }
  .menu nav span {
    width: 25px;
  }
  .menu__footer {
    grid-column: 1;
  }
  .manifesto {
    min-height: 100svh;
    padding-top: 90px;
  }
  .manifesto__lead {
    width: 100%;
    margin-top: 15vh;
    font-size: clamp(48px, 14vw, 90px);
  }
  .manifesto__body {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 10vh;
  }
  .manifesto__body p + p {
    display: none;
  }
  .orbit-mark {
    display: none;
  }
  .statement {
    min-height: 80svh;
  }
  .statement__line {
    font-size: 13vw;
  }
  .statement p {
    margin-left: var(--pad);
  }
  .chapter {
    min-height: 110svh;
    padding-top: 90px;
  }
  .chapter__copy {
    margin-top: 23vh;
  }
  .chapter h2,
  .merchant h2 {
    font-size: 14vw;
  }
  .chapter__stats {
    grid-template-columns: 1fr;
  }
  .chapter__stats div {
    display: flex;
    align-items: baseline;
    gap: 15px;
    padding: 12px var(--pad) !important;
    border-right: 0;
  }
  .chapter__stats div:last-child {
    padding-bottom: 60px !important;
  }
  .chapter__stats strong {
    font-size: 36px;
  }
  .h-scroll {
    height: 400vh;
  }
  .panel {
    padding-top: 100px;
  }
  .panel h2 {
    font-size: 14vw;
  }
  .glyph-search,
  .order-card,
  .chart {
    opacity: 0.35;
    right: -10vw;
  }
  .catalog-order {
    top: 100px;
    width: min(270px, calc(100vw - var(--pad) * 2));
    padding: 17px 19px;
    box-shadow: 5px 6px 14px rgba(43,32,92,.22);
  }
  .panel > p:not(.kicker) {
    position: relative;
    z-index: 2;
  }
  .merchant {
    min-height: 100svh;
    padding-top: 55svh;
    padding-bottom: 8svh;
    justify-content: flex-end;
  }
  .image-section.merchant:not(.hero) > .merchant__copy {
    position: static;
    width: 100%;
    min-height: 0;
    display: block;
  }
  .merchant .section-meta--light {
    position: absolute;
    top: 9svh;
    left: var(--pad);
    right: var(--pad);
    margin: 0;
  }
  .merchant__copy > p {
    width: 90%;
  }
  .merchant h2 {
    font-size: 7.2vw;
    white-space: nowrap;
  }
  .image-shade--left {
    background: linear-gradient(180deg, rgba(29, 21, 61, 0.08) 0%, rgba(43, 32, 92, 0.12) 47%, rgba(29, 21, 61, 0.62) 66%, rgba(29, 21, 61, 0.78) 100%);
  }
  .join {
    min-height: 100svh;
    padding-top: 85px;
  }
  .join h2 {
    font-size: 7.2vw;
    margin: 0;
  }
  .app-downloads {
    margin-top: auto;
    margin-bottom: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .app-downloads__links {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .app-download {
    min-width: 0;
  }
  .join__actions {
    grid-template-columns: 1fr;
  }
  .footer__top {
    min-height: 30vh;
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .app-downloads--footer {
    width: min(100%, 420px);
    margin: 34px 0;
    align-items: center;
  }
  .app-downloads--footer .app-download {
    align-items: center;
    text-align: center;
  }
  .footer__contact {
    width: 100%;
    text-align: center;
  }
  .footer__contact p {
    margin-top: 0;
  }
  .footer__bottom .customer-service {
    flex-direction: column;
    align-items: center;
    gap: 3px;
  }
  .footer__bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    text-align: center;
  }
  .footer__legal {
    width: 100%;
    margin-top: 8px;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .cursor {
    display: none;
  }
  .hero {
    height: 240svh;
    min-height: 240svh;
    padding: 0;
  }
  .hero__topline,
  .hero__index,
  .hero__media-top {
    display: none;
  }
  .hero__object {
    width: min(69vw, 300px);
    left: 50%;
    right: auto;
    top: 33%;
    transform: translate(-50%, -50%);
  }
  .portal-lintel {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .portal-lintel span:last-child {
    display: none;
  }
  .portal-node {
    display: none;
  }
  .hero__headline {
    left: var(--pad);
    top: 66%;
    width: calc(100% - var(--pad) * 2);
    margin: 0;
    text-align: center;
  }
  .hero h1 {
    font-size: clamp(40px, 12.5vw, 66px);
  }
  .hero .line-mask:nth-child(2) h1 {
    font-size: clamp(30px, 9.2vw, 48px);
  }
  .hero__bottom {
    position: absolute;
    left: var(--pad);
    right: var(--pad);
    bottom: 26px;
    width: auto;
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .hero__bottom > p {
    width: auto;
  }
  .hero__bottom .round-link {
    position: static;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  .hero__inside-meta {
    inset: 96px var(--pad) auto;
  }
  .hero__inside-copy strong {
    font-size: clamp(47px, 14vw, 74px);
  }
}

@media (max-width: 600px) {
  .intro__gravity-lockup {
    width: min(300px, 84vw);
  }
  .intro__gravity-meta {
    grid-template-columns: 1fr auto;
    font-size: 7px;
  }
  .intro__gravity-meta b {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .intro {
    display: none;
  }
  .hero {
    height: 100svh;
    min-height: 100svh;
  }
  .hero h1 {
    transform: none !important;
    transition: none;
  }
  .hero__inside {
    display: none;
  }
  .reveal {
    opacity: 1;
  }
  .orbit-mark,
  .scroll-cue i::after,
  .hero__orbit {
    animation: none;
  }
}

/* Legacy Arabic overrides are inactive. The Arabic page loads style-ar.css.
html[lang="ar"] body {
  font-family: "IBM Plex Sans Arabic", sans-serif;
}
html[lang="ar"] :is(.logo, .menu nav a, .hero h1, .hero__inside-copy strong, .manifesto__lead,
  .statement__line, .chapter h2, .merchant h2, .panel h2, .order-card b, .chapter__stats strong,
  .join h2) {
  font-family: "Alexandria", sans-serif;
}
html[lang="ar"] :is(.hero h1 em, .hero__inside-copy em, .chapter h2 em, .merchant h2 em,
  .panel h2 em, .join h2 em) {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-style: normal;
  font-weight: 400;
}
html[lang="ar"] :is(.header__center, .portal-link, .menu-toggle span, .menu__number, .menu__footer,
  .intro__coordinates, .intro__gravity-meta, .portal-lintel, .portal-node, .portal-floor,
  .hero__inside-meta, .hero__inside-copy > span, .hero__topline, .hero__index, .round-link span,
  .scroll-cue, .section-meta, .statement__eyebrow, .chapter__meta, .kicker, .chapter__stats small,
  .h-scroll__header, .order-card span, .text-link, .join__overline, .join__actions a,
  .footer__bottom, .cursor span) {
  letter-spacing: 0;
}
html[lang="ar"] .header__actions {
  justify-self: end;
  gap: 24px;
}
html[lang="ar"] .header > .logo {
  justify-self: start;
}
html[lang="ar"] .progress i {
  transform-origin: right;
}
html[lang="ar"] :is(.intro__coordinates, .hero__index, .section-meta span:last-child,
  #panelCount) {
  direction: ltr;
  unicode-bidi: isolate;
}
html[lang="ar"] .menu nav a {
  letter-spacing: -0.045em;
  line-height: 1.15;
}
html[lang="ar"] .menu nav a:hover {
  padding-left: 0;
  padding-right: 0.16em;
}
html[lang="ar"] .menu nav span {
  font-family: "IBM Plex Sans Arabic", sans-serif;
}
html[lang="ar"] .hero__object {
  right: auto;
  left: 4vw;
}
html[lang="ar"] .portal-lintel span:last-child {
  text-align: left;
  direction: ltr;
}
html[lang="ar"] .hero__headline {
  right: var(--pad);
  left: auto;
  width: 56vw;
}
html[lang="ar"] .hero h1 {
  font-size: clamp(58px, 7.1vw, 128px);
  letter-spacing: -0.055em;
  line-height: 1.08;
}
html[lang="ar"] .hero .line-mask:nth-child(2) h1 {
  font-size: clamp(52px, 6.3vw, 112px);
}
html[lang="ar"] .hero h1 em {
  letter-spacing: 0;
}
html[lang="ar"] .hero .line-mask {
  margin: -0.16em -0.08em;
  padding: 0.16em 0.08em;
}
html[lang="ar"] .hero__topline {
  right: var(--pad);
  left: auto;
}
html[lang="ar"] .hero__index {
  right: auto;
  left: var(--pad);
}
html[lang="ar"] .manifesto__lead {
  letter-spacing: -0.045em;
  line-height: 1.15;
}
html[lang="ar"] .manifesto__body {
  margin-right: auto;
  margin-left: 0;
}
html[lang="ar"] .orbit-mark {
  left: auto;
  right: var(--pad);
}
html[lang="ar"] .statement__eyebrow,
html[lang="ar"] .join__overline {
  padding-left: 0;
  padding-right: 54px;
}
html[lang="ar"] .statement__eyebrow::before,
html[lang="ar"] .join__overline::before,
html[lang="ar"] .section-meta::before {
  left: auto;
  right: 0;
}
html[lang="ar"] .statement__line {
  letter-spacing: -0.045em;
  line-height: 1.15;
}
html[lang="ar"] .statement__line span {
  padding-right: 0;
  padding-left: 0.35em;
}
html[lang="ar"] .statement p {
  margin-right: auto;
  margin-left: var(--pad);
}
html[lang="ar"] :is(.chapter h2, .merchant h2, .panel h2) {
  letter-spacing: -0.045em;
  line-height: 1.12;
}
html[lang="ar"] .chapter__copy {
  max-width: min(760px, 58vw);
  margin-top: clamp(110px, 15vh, 165px);
  margin-bottom: clamp(72px, 9vh, 105px);
}
html[lang="ar"] .chapter h2 {
  font-size: clamp(58px, 6.8vw, 124px);
  white-space: nowrap;
}
html[lang="ar"] .chapter__description {
  width: min(520px, 90%);
}
html[lang="ar"] .chapter__stats div {
  border-right: 0;
  border-left: 1px solid var(--line);
}
html[lang="ar"] .chapter__stats div + div {
  padding-left: 0;
  padding-right: 32px;
}
html[lang="ar"] .h-scroll__track {
  direction: ltr;
}
html[lang="ar"] .panel {
  direction: rtl;
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
html[lang="ar"] .panel__num {
  right: auto;
  left: var(--pad);
}
html[lang="ar"] .panel h2 {
  width: min(880px, 66vw);
  font-size: clamp(56px, 6.4vw, 116px);
  white-space: nowrap;
}
html[lang="ar"] .panel--photo {
  padding-bottom: 9vh;
}
html[lang="ar"] .panel--photo h2 {
  margin-bottom: 34px;
}
html[lang="ar"] :is(.glyph-search, .order-card, .chart) {
  right: auto;
  left: 8vw;
}
html[lang="ar"] .glyph-search {
  left: 9vw;
}
html[lang="ar"] .chart {
  left: 7vw;
  border-left: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
html[lang="ar"] .panel__veil {
  transform: scaleX(-1);
}
html[lang="ar"] .image-shade--warm {
  transform: scaleX(-1);
}
html[lang="ar"] .image-shade--left {
  transform: none;
  background: linear-gradient(90deg, rgba(12, 8, 30, 0.05) 0%, rgba(20, 13, 47, 0.36) 48%, rgba(16, 10, 39, 0.96) 100%);
}
html[lang="ar"] .merchant__copy {
  width: min(760px, 49vw);
}
html[lang="ar"] .merchant .section-meta--light {
  margin-bottom: clamp(72px, 10vh, 115px);
}
html[lang="ar"] .merchant h2 {
  font-size: clamp(54px, 5.2vw, 92px);
  line-height: 1.18;
  white-space: nowrap;
}
html[lang="ar"] .merchant__copy > p {
  width: min(520px, 90%);
}
html[lang="ar"] .join h2 {
  letter-spacing: -0.055em;
  line-height: 1.02;
}
html[lang="ar"] .hero__inside-copy strong {
  line-height: 1.12;
}
html[lang="ar"] .footer__top p {
  text-align: left;
}

@media (max-width: 850px) {
  .header__actions {
    gap: 14px;
  }
  .language-switch {
    font-size: 10px;
  }
  html[lang="ar"] .header__actions {
    right: auto;
    left: var(--pad);
    gap: 14px;
  }
  html[lang="ar"] .hero__object {
    left: 50%;
    right: auto;
  }
  html[lang="ar"] .hero__headline {
    right: var(--pad);
    left: var(--pad);
    width: calc(100% - var(--pad) * 2);
  }
  html[lang="ar"] .hero h1 {
    font-size: clamp(38px, 10.7vw, 58px);
  }
  html[lang="ar"] .hero .line-mask:nth-child(2) h1 {
    font-size: clamp(34px, 9.4vw, 52px);
  }
  html[lang="ar"] .hero__bottom > p {
    grid-column: 1;
    justify-self: end;
    text-align: right;
  }
  html[lang="ar"] .hero__bottom .round-link {
    grid-column: 2;
    justify-self: start;
  }
  html[lang="ar"] :is(.glyph-search, .order-card, .chart) {
    right: auto;
    left: -10vw;
  }
  html[lang="ar"] .chapter__copy {
    max-width: none;
    margin-top: 23vh;
  }
  html[lang="ar"] .chapter h2,
  html[lang="ar"] .panel h2,
  html[lang="ar"] .merchant h2 {
    width: auto;
    font-size: 12vw;
    white-space: normal;
  }
  html[lang="ar"] .panel--photo {
    padding-bottom: 7vh;
  }
  html[lang="ar"] .merchant .section-meta--light {
    right: var(--pad);
    left: var(--pad);
    margin: 0;
  }
  html[lang="ar"] .merchant__copy {
    width: 100%;
  }
  html[lang="ar"] .footer__top p {
    text-align: right;
  }
}
*/
