:root {
  --ink: #0c0f12;
  --ink-2: #171b1f;
  --paper: #f7f5ef;
  --muted: #6d716c;
  --line: rgba(12, 15, 18, 0.12);
  --wood: #b97736;
  --amber: #e4a34e;
  --green: #226f54;
  --blue: #2c6e8f;
  --cyan: #55d6d2;
  --glass: rgba(255, 255, 255, 0.09);
  --glass-line: rgba(255, 255, 255, 0.18);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(10, 13, 16, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(85, 214, 210, 0.08), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(228, 163, 78, 0.09), transparent 22%),
    var(--paper);
  color: var(--ink);
  font-family: "Noto Kufi Arabic", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  direction: rtl;
}

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

.cinematic-intro {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(228, 163, 78, 0.18), transparent 18%),
    radial-gradient(circle at 18% 28%, rgba(85, 214, 210, 0.16), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(34, 111, 84, 0.28), transparent 28%),
    linear-gradient(135deg, #050708, #10161a 54%, #070a0c);
  color: var(--white);
  animation: introAtmosphere 9000ms ease-in-out infinite;
}

.cinematic-intro::before,
.cinematic-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cinematic-intro::before {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 72px);
  mask-image: radial-gradient(circle at center, black, transparent 68%);
  opacity: 0.55;
}

.cinematic-intro::after {
  background: linear-gradient(90deg, transparent, rgba(85, 214, 210, 0.22), transparent);
  height: 1px;
  top: 50%;
  animation: scanSweep 2600ms ease-in-out infinite;
}

.cinematic-intro.is-exiting {
  animation: introExit 420ms ease forwards;
}

.cinematic-intro.is-hidden {
  display: none;
}

.intro-map {
  position: absolute;
  inset: -10%;
  opacity: 0.22;
  background:
    linear-gradient(90deg, rgba(85, 214, 210, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(228, 163, 78, 0.08) 1px, transparent 1px);
  background-size: 82px 82px;
  transform: perspective(700px) rotateX(58deg) translateY(6%);
  animation: gridDrift 2600ms ease-out forwards;
}

.intro-map span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 10px rgba(85, 214, 210, 0.1), 0 0 28px rgba(85, 214, 210, 0.42);
  animation: mapSignal 2600ms ease-in-out infinite;
}

.intro-map span:nth-child(1) { right: 18%; top: 24%; }
.intro-map span:nth-child(2) { right: 48%; top: 58%; animation-delay: 420ms; }
.intro-map span:nth-child(3) { left: 22%; top: 36%; animation-delay: 780ms; }

.intro-blades {
  position: absolute;
  z-index: 1;
  top: 45%;
  left: 50%;
  width: min(780px, 92vw);
  height: 310px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.blade-group {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 9px;
}

.blade-group span {
  display: block;
  width: 21px;
  height: var(--blade-height, 118px);
  border-radius: 9px 9px 2px 2px;
  background:
    linear-gradient(90deg, rgba(85, 214, 210, 0.72), rgba(255, 255, 255, 0.08) 18%, transparent 34%, rgba(255, 255, 255, 0.06) 68%, rgba(228, 163, 78, 0.68)),
    linear-gradient(180deg, rgba(0, 0, 0, 1), rgba(20, 16, 10, 0.98));
  clip-path: polygon(50% 0, 76% 14%, 62% 100%, 38% 100%, 24% 14%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 18px rgba(255, 255, 255, 0.08),
    0 0 38px rgba(228, 163, 78, 0.38),
    0 0 58px rgba(85, 214, 210, 0.24);
  opacity: 0;
  transform: translateY(64px) scaleY(0.22);
  transform-origin: bottom;
  animation:
    bladeRise 1050ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards,
    bladeBreathe 3200ms ease-in-out 1250ms infinite;
}

.blade-group span::after {
  content: "";
  display: block;
  width: 34%;
  height: 100%;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(228, 163, 78, 0.16), transparent 76%);
  border-radius: inherit;
  opacity: 0.54;
}

.group-left {
  right: 8%;
}

.group-center {
  left: 50%;
  transform: translateX(-50%);
}

.group-right {
  left: 8%;
}

.group-left span:nth-child(1),
.group-right span:nth-child(5) { --blade-height: 92px; animation-delay: 440ms; }
.group-left span:nth-child(2),
.group-right span:nth-child(4) { --blade-height: 124px; animation-delay: 540ms; }
.group-left span:nth-child(3),
.group-right span:nth-child(3) { --blade-height: 166px; animation-delay: 640ms; }
.group-left span:nth-child(4),
.group-right span:nth-child(2) { --blade-height: 132px; animation-delay: 740ms; }
.group-left span:nth-child(5),
.group-right span:nth-child(1) { --blade-height: 104px; animation-delay: 840ms; }

.group-center span {
  width: 24px;
  background:
    linear-gradient(90deg, rgba(85, 214, 210, 0.64), rgba(255, 255, 255, 0.07) 24%, transparent 58%, rgba(228, 163, 78, 0.58)),
    linear-gradient(180deg, rgba(2, 2, 2, 1), rgba(34, 111, 84, 0.98));
}

.group-center span:nth-child(1) { --blade-height: 128px; animation-delay: 600ms; }
.group-center span:nth-child(2) { --blade-height: 184px; animation-delay: 760ms; }
.group-center span:nth-child(3) { --blade-height: 128px; animation-delay: 920ms; }

.intro-route {
  position: absolute;
  width: min(760px, 82vw);
  height: 210px;
  opacity: 0.72;
}

.intro-route::before {
  content: "";
  position: absolute;
  inset: 50% 5% auto;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--amber), transparent);
  transform: rotate(-10deg) scaleX(0);
  transform-origin: right center;
  animation: routeDraw 1600ms cubic-bezier(0.2, 0.9, 0.2, 1) 360ms forwards;
}

.intro-route::after {
  content: "";
  position: absolute;
  right: 9%;
  top: calc(50% - 7px);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow:
    0 0 18px rgba(228, 163, 78, 0.8),
    0 0 42px rgba(85, 214, 210, 0.42);
  opacity: 0;
  transform: rotate(-10deg) translateX(0);
  animation: routeCourier 2600ms cubic-bezier(0.22, 0.82, 0.24, 1) 1150ms infinite;
}

.intro-route i {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(85, 214, 210, 0.72);
  opacity: 0;
  animation:
    pointPop 360ms ease forwards,
    pointPulse 2200ms ease-in-out 1500ms infinite;
}

.intro-route i:nth-child(1) { right: 10%; top: 62%; animation-delay: 620ms; }
.intro-route i:nth-child(2) { right: 48%; top: 43%; animation-delay: 960ms, 1740ms; }
.intro-route i:nth-child(3) { left: 10%; top: 28%; animation-delay: 1280ms, 1980ms; }

.intro-sparks {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.intro-sparks span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.55),
    0 0 24px rgba(85, 214, 210, 0.42);
  opacity: 0;
  animation: sparkLift 3400ms ease-in-out infinite;
}

.intro-sparks span:nth-child(1) { right: 34%; top: 61%; animation-delay: 520ms; }
.intro-sparks span:nth-child(2) { right: 43%; top: 36%; animation-delay: 980ms; }
.intro-sparks span:nth-child(3) { left: 35%; top: 58%; animation-delay: 1320ms; }
.intro-sparks span:nth-child(4) { left: 45%; top: 31%; animation-delay: 1840ms; }
.intro-sparks span:nth-child(5) { right: 24%; top: 48%; animation-delay: 2180ms; }
.intro-sparks span:nth-child(6) { left: 25%; top: 42%; animation-delay: 2620ms; }

.intro-logo-lockup {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  transform: translateY(14px) scale(0.96);
  opacity: 0;
  isolation: isolate;
  animation:
    lockupIn 760ms ease 360ms forwards,
    lockupLive 5200ms ease-in-out 1300ms infinite;
}

.intro-logo-lockup::before {
  content: "";
  position: absolute;
  top: -28px;
  width: clamp(320px, 58vw, 660px);
  aspect-ratio: 2.45;
  border-radius: 32px;
  background:
    radial-gradient(ellipse, rgba(228, 163, 78, 0.34), rgba(85, 214, 210, 0.16) 48%, transparent 76%),
    conic-gradient(from 120deg, transparent, rgba(85, 214, 210, 0.26), transparent 35%, rgba(228, 163, 78, 0.22), transparent 72%);
  filter: blur(14px);
  z-index: -1;
  animation: logoAura 3600ms ease-in-out infinite;
}

.intro-logo-lockup::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(300px, 48vw, 560px);
  aspect-ratio: 2.9;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 52%, rgba(255, 255, 255, 0.14), transparent 64%),
    radial-gradient(ellipse at 68% 44%, rgba(228, 163, 78, 0.16), transparent 58%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
  transform: translateY(-50%);
  animation: glassOrbit 4400ms ease-in-out 900ms infinite;
}

.logo-mark {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.26), transparent 24%, transparent 78%, rgba(0, 0, 0, 0.18)),
    linear-gradient(180deg, #e3aa59, #b8762f 58%, #7a451d);
  box-shadow:
    inset 0 0 0 4px rgba(255, 255, 255, 0.78),
    inset 0 0 0 7px rgba(8, 10, 12, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 12px 32px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.logo-mark::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 13px;
  width: 5px;
  height: 23px;
  border-radius: 5px 5px 1px 1px;
  background: #08090a;
  transform: translateX(-50%);
  box-shadow:
    -18px 10px 0 -1px #08090a,
    -12px 5px 0 0 #08090a,
    -6px 11px 0 -1px #08090a,
    6px 11px 0 -1px #08090a,
    12px 5px 0 0 #08090a,
    18px 10px 0 -1px #08090a;
}

.logo-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 12px;
  height: 12px;
  border: 3px solid #08090a;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50% 50% 50% 2px;
  transform: translateX(-50%) rotate(45deg);
}

.intro-brand-logo,
.intro-logo-lockup .intro-mark {
  position: relative;
  z-index: 1;
  width: clamp(280px, 45vw, 520px);
  max-width: calc(100vw - 48px);
  height: auto;
  border-radius: 0;
  object-fit: contain;
  opacity: 0.96;
  animation: logoAlive 4200ms ease-in-out 1400ms infinite;
  filter:
    drop-shadow(0 24px 46px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 22px rgba(255, 255, 255, 0.3))
    drop-shadow(0 0 34px rgba(228, 163, 78, 0.22));
}

.intro-logo-lockup .intro-mark::before {
  top: 30%;
  width: 5px;
  height: 23px;
  border-radius: 999px 999px 2px 2px;
  transform: translateX(-50%) scale(3);
  box-shadow:
    -18px 10px 0 -1px #08090a,
    -12px 5px 0 0 #08090a,
    -6px 11px 0 -1px #08090a,
    6px 11px 0 -1px #08090a,
    12px 5px 0 0 #08090a,
    18px 10px 0 -1px #08090a;
}

.intro-logo-lockup .intro-mark::after {
  bottom: 18%;
  width: 12px;
  height: 12px;
  border-width: 3px;
  transform: translateX(-50%) rotate(45deg) scale(2.8);
}

.intro-logo-lockup p {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  font-size: clamp(26px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
}

.intro-logo-lockup strong {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(14px, 2vw, 20px);
}

.intro-logo-lockup small {
  margin-top: 14px;
  color: rgba(85, 214, 210, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.journey-cinema {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 520ms ease;
}

.journey-cinema.is-live {
  opacity: 1;
}

.journey-cinema.is-finished {
  opacity: 0;
}

.journey-line {
  position: absolute;
  right: -8vw;
  top: 32vh;
  width: 116vw;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(85, 214, 210, 0.28), rgba(228, 163, 78, 0.5), transparent);
  transform: rotate(-11deg);
  animation: journeyPulse 4200ms ease-in-out infinite;
}

.journey-symbol {
  position: absolute;
  right: 8vw;
  top: 22vh;
  width: 58px;
  height: 74px;
  color: var(--amber);
  background: currentColor;
  opacity: 0.22;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='42' height='54' viewBox='0 0 42 54' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' fill-rule='evenodd' d='M21 1.5C32.3 1.5 40.5 10.2 40.5 22.5C40.5 36.8 26.8 48.1 21 53C15.2 48.1 1.5 36.8 1.5 22.5C1.5 10.2 9.7 1.5 21 1.5ZM19 34.5V22.5L13.5 28L9.8 24.2L21.2 12.8L32.6 24.2L28.9 28L23.4 22.5V34.5H19Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='42' height='54' viewBox='0 0 42 54' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' fill-rule='evenodd' d='M21 1.5C32.3 1.5 40.5 10.2 40.5 22.5C40.5 36.8 26.8 48.1 21 53C15.2 48.1 1.5 36.8 1.5 22.5C1.5 10.2 9.7 1.5 21 1.5ZM19 34.5V22.5L13.5 28L9.8 24.2L21.2 12.8L32.6 24.2L28.9 28L23.4 22.5V34.5H19Z'/%3E%3C/svg%3E") center / contain no-repeat;
  animation: symbolFloat 5200ms ease-in-out infinite;
}

.journey-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 8px rgba(228, 163, 78, 0.1);
  opacity: 0.55;
}

.dot-a {
  right: 18vw;
  top: 34vh;
}

.dot-b {
  right: 52vw;
  top: 27vh;
  background: var(--green);
}

.dot-c {
  left: 16vw;
  top: 42vh;
  background: var(--blue);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: env(safe-area-inset-top, 0);
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(5, 7, 8, 0.48), rgba(5, 7, 8, 0));
  backdrop-filter: blur(10px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 245, 239, 0.88);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line), 0 18px 54px rgba(10, 13, 16, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  display: block;
  width: clamp(142px, 14vw, 190px);
  height: auto;
  max-height: none;
  object-fit: contain;
  filter:
    drop-shadow(0 12px 22px rgba(0, 0, 0, 0.32))
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.18));
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-family: "Noto Kufi Arabic", Inter, sans-serif;
  font-size: 17px;
  line-height: 1.2;
}

.brand small,
.site-footer small {
  color: currentColor;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .site-nav a:hover {
  background: rgba(12, 15, 18, 0.06);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  padding-top: clamp(128px, 15vh, 180px);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 72% 18%, rgba(85, 214, 210, 0.18), transparent 24%),
    linear-gradient(270deg, rgba(5, 7, 8, 0.94), rgba(8, 10, 11, 0.64) 42%, rgba(8, 10, 11, 0.18)),
    linear-gradient(0deg, rgba(8, 10, 11, 0.9), transparent 42%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(270deg, black, transparent 72%);
  opacity: 0.52;
}

.symbol-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.symbol-field span,
.mark-icon {
  position: absolute;
  width: 42px;
  height: 54px;
  opacity: 0.34;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='42' height='54' viewBox='0 0 42 54' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' fill-rule='evenodd' d='M21 1.5C32.3 1.5 40.5 10.2 40.5 22.5C40.5 36.8 26.8 48.1 21 53C15.2 48.1 1.5 36.8 1.5 22.5C1.5 10.2 9.7 1.5 21 1.5ZM19 34.5V22.5L13.5 28L9.8 24.2L21.2 12.8L32.6 24.2L28.9 28L23.4 22.5V34.5H19Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='42' height='54' viewBox='0 0 42 54' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' fill-rule='evenodd' d='M21 1.5C32.3 1.5 40.5 10.2 40.5 22.5C40.5 36.8 26.8 48.1 21 53C15.2 48.1 1.5 36.8 1.5 22.5C1.5 10.2 9.7 1.5 21 1.5ZM19 34.5V22.5L13.5 28L9.8 24.2L21.2 12.8L32.6 24.2L28.9 28L23.4 22.5V34.5H19Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.symbol-field span {
  color: var(--amber);
}

.symbol-field span:nth-child(1) {
  right: 8%;
  top: 18%;
  transform: rotate(18deg) scale(1.5);
}

.symbol-field span:nth-child(2) {
  right: 26%;
  bottom: 14%;
  transform: rotate(-14deg) scale(0.9);
}

.symbol-field span:nth-child(3) {
  left: 6%;
  bottom: 18%;
  transform: rotate(10deg) scale(1.1);
}

.symbol-field span:nth-child(4) {
  left: 52%;
  top: 27%;
  transform: rotate(-22deg) scale(0.7);
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 5vw, 76px) clamp(46px, 8vw, 96px) 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions,
.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.btn.primary {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(228, 163, 78, 0.22);
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-metrics {
  gap: 0;
  width: min(680px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.hero-metrics div {
  flex: 1 1 170px;
  padding: 18px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-metrics div:last-child {
  border-left: 0;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 3px;
  font-size: 18px;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.68);
}

.section {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 76px);
}

.section,
.platform {
  scroll-margin-top: 98px;
}

.intro {
  background:
    radial-gradient(circle at 88% 18%, rgba(44, 110, 143, 0.14), transparent 28%),
    var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.intro-grid p,
.platform-copy p,
.contact-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, rgba(85, 214, 210, 0.1), transparent 46%);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(10, 13, 16, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 2px solid rgba(85, 214, 210, 0.26);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(85, 214, 210, 0.32);
  box-shadow: 0 26px 68px rgba(10, 13, 16, 0.12);
}

.feature-card .mark-icon {
  position: relative;
  display: block;
  margin-bottom: 32px;
  color: var(--green);
  opacity: 1;
  transform: scale(0.72);
  transform-origin: right top;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.65;
}

.platform {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 76px);
  background:
    radial-gradient(circle at 80% 18%, rgba(85, 214, 210, 0.16), transparent 26%),
    radial-gradient(circle at 18% 86%, rgba(228, 163, 78, 0.13), transparent 28%),
    linear-gradient(135deg, #090d10, #11181c 58%, #07090b);
  color: var(--white);
}

.platform-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.workflow-list {
  display: grid;
  gap: 14px;
}

.workflow-list article {
  position: relative;
  min-height: 150px;
  padding: 26px 92px 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.workflow-list .mark-icon {
  position: absolute;
  right: 28px;
  top: 28px;
  color: var(--amber);
  opacity: 1;
  transform: scale(0.72);
  transform-origin: right top;
}

.workflow-list h3 {
  margin-bottom: 10px;
}

.workflow-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.coverage-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 34px;
  align-items: end;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 18%, rgba(85, 214, 210, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(185, 119, 54, 0.2), transparent 42%),
    var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px rgba(10, 13, 16, 0.08);
}

.coverage-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.coverage-steps span {
  padding: 20px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(85, 214, 210, 0.16), transparent),
    var(--ink);
  color: var(--white);
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact {
  padding-top: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: start;
  gap: 28px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 24%, rgba(85, 214, 210, 0.18), transparent 24%),
    linear-gradient(135deg, #143f32, #0f2f29 58%, #091311);
  color: var(--white);
  box-shadow: 0 26px 80px rgba(10, 13, 16, 0.18);
}

.contact-card p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-info {
  display: grid;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-info span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
}

.contact-info a {
  color: var(--amber);
  direction: ltr;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-info a:hover {
  color: var(--cyan);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
}

.inquiry-form label.full,
.inquiry-form button {
  grid-column: 1 / -1;
}

.inquiry-form span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  outline: none;
}

.inquiry-form textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(228, 163, 78, 0.2);
}

.inquiry-form button {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.whatsapp-bubble {
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 40;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  transition: bottom 220ms ease, transform 220ms ease, opacity 220ms ease;
}

.whatsapp-bubble.is-near-footer {
  bottom: 96px;
}

.whatsapp-bubble svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 30px clamp(18px, 5vw, 76px);
  background: var(--ink);
  color: var(--white);
}

.footer-logo {
  display: block;
  width: 210px;
  max-width: min(66vw, 240px);
  height: auto;
  padding: 0;
  background: transparent;
  filter:
    drop-shadow(0 18px 34px rgba(0, 0, 0, 0.3))
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.22));
}

.site-footer span {
  font-family: "Noto Kufi Arabic", Inter, sans-serif;
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-nav {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0) + 118px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 8px;
    background: var(--ink);
    color: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    margin-right: 18px;
  }

  .intro-grid,
  .platform,
  .coverage-panel,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: clamp(126px, 36vw, 150px);
    max-height: none;
  }

  .brand strong {
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    align-items: start;
    padding: clamp(146px, 24vh, 184px) 0 52px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.18;
    margin-bottom: 18px;
  }

  h2 {
    line-height: 1.18;
  }

  .hero-copy {
    font-size: 17px;
    line-height: 1.85;
  }

  .btn {
    min-height: 50px;
    padding: 0 18px;
    text-align: center;
    line-height: 1.35;
  }

  .feature-grid,
  .coverage-steps {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    margin-top: 24px;
  }

  .hero-metrics div {
    padding: 16px 18px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .contact-card {
    padding: 24px;
  }

  .inquiry-form button {
    min-height: 54px;
  }

  .whatsapp-bubble {
    width: 54px;
    height: 54px;
    right: auto;
    left: 16px;
    bottom: 16px;
  }

  .whatsapp-bubble.is-near-footer {
    bottom: 108px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-intro {
    transition: opacity 1ms linear;
    animation-duration: 1ms;
  }

  .intro-map,
  .intro-map span,
  .intro-route::before,
  .intro-route::after,
  .intro-route i,
  .intro-sparks span,
  .blade-group span,
  .intro-logo-lockup,
  .intro-logo-lockup::after,
  .intro-logo-lockup .intro-mark,
  .journey-line,
  .journey-symbol {
    animation-duration: 1ms;
    animation-delay: 1ms;
  }
}

@keyframes introAtmosphere {
  0%,
  100% {
    background-position: 50% 48%, 18% 28%, 82% 72%, 0 0;
  }

  50% {
    background-position: 51% 45%, 20% 31%, 80% 69%, 0 0;
  }
}

@keyframes lockupIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes lockupLive {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  45% {
    transform: translateY(-8px) scale(1.012);
  }

  72% {
    transform: translateY(3px) scale(0.996);
  }
}

@keyframes logoAura {
  0%,
  100% {
    opacity: 0.68;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes glassOrbit {
  0%,
  100% {
    opacity: 0.74;
    transform: rotate(0deg) scale(1);
  }

  50% {
    opacity: 1;
    transform: rotate(7deg) scale(1.035);
  }
}

@keyframes logoAlive {
  0%,
  100% {
    filter: saturate(1) contrast(1);
  }

  50% {
    filter: saturate(1.12) contrast(1.04);
  }
}

@keyframes routeDraw {
  to {
    transform: rotate(-10deg) scaleX(1);
  }
}

@keyframes routeCourier {
  0% {
    opacity: 0;
    transform: rotate(-10deg) translateX(0) scale(0.7);
  }

  14% {
    opacity: 1;
  }

  78% {
    opacity: 0.92;
  }

  100% {
    opacity: 0;
    transform: rotate(-10deg) translateX(-620px) scale(1.15);
  }
}

@keyframes pointPop {
  to {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes pointPulse {
  0%,
  100% {
    box-shadow: 0 0 18px rgba(85, 214, 210, 0.72);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(85, 214, 210, 0), 0 0 32px rgba(228, 163, 78, 0.58);
    transform: scale(1.16);
  }
}

@keyframes bladeRise {
  0% {
    opacity: 0;
    transform: translateY(64px) scaleY(0.22);
  }

  72% {
    opacity: 0.98;
    transform: translateY(-14px) scaleY(1.04);
  }

  100% {
    opacity: 0.78;
    transform: translateY(-24px) scaleY(1.02);
  }
}

@keyframes bladeBreathe {
  0%,
  100% {
    opacity: 0.74;
    transform: translateY(-24px) scaleY(1.02);
    filter:
      drop-shadow(0 0 8px rgba(85, 214, 210, 0.18))
      drop-shadow(0 0 8px rgba(228, 163, 78, 0.22));
  }

  48% {
    opacity: 1;
    transform: translateY(-36px) scaleY(1.08);
    filter:
      drop-shadow(0 0 16px rgba(85, 214, 210, 0.46))
      drop-shadow(0 0 24px rgba(228, 163, 78, 0.34));
  }
}

@keyframes gridDrift {
  to {
    transform: perspective(700px) rotateX(58deg) translateY(0);
  }
}

@keyframes mapSignal {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.68;
  }

  50% {
    transform: scale(1.28);
    opacity: 1;
  }
}

@keyframes sparkLift {
  0% {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.6);
  }

  18% {
    opacity: 0.78;
  }

  72% {
    opacity: 0.52;
  }

  100% {
    opacity: 0;
    transform: translate3d(-22px, -64px, 0) scale(1);
  }
}

@keyframes scanSweep {
  0%,
  100% {
    transform: translateY(-34vh);
    opacity: 0;
  }

  18%,
  72% {
    opacity: 0.72;
  }

  100% {
    transform: translateY(34vh);
  }
}

@keyframes introExit {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes journeyPulse {
  0%,
  100% {
    opacity: 0.24;
    transform: rotate(-11deg) translateX(-2vw);
  }

  50% {
    opacity: 0.74;
    transform: rotate(-11deg) translateX(2vw);
  }
}

@keyframes symbolFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-6deg);
  }

  50% {
    transform: translateY(18px) rotate(4deg);
  }
}

/* Production polish: conversion, accessibility, and calmer motion */
:focus-visible {
  outline: 3px solid rgba(85, 214, 210, 0.72);
  outline-offset: 4px;
}

.intro-skip {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: clamp(24px, 5vw, 52px);
  transform: translateX(-50%);
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.intro-skip:hover {
  background: rgba(255, 255, 255, 0.18);
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(12, 15, 18, 0.08);
}

.nav-cta {
  background: var(--amber);
  color: var(--ink);
  border-color: rgba(228, 163, 78, 0.5) !important;
  box-shadow: 0 12px 30px rgba(228, 163, 78, 0.22);
}

.site-header.is-scrolled .nav-cta:hover,
.nav-cta:hover {
  background: #f0b25c !important;
  color: var(--ink);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.feature-card,
.workflow-list article,
.coverage-panel,
.coverage-steps span,
.contact-card,
.inquiry-form,
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  border-radius: 18px;
}

.feature-card,
.coverage-panel,
.contact-card {
  box-shadow: 0 26px 80px rgba(10, 13, 16, 0.12);
}

.btn,
.whatsapp-bubble,
.feature-card,
.workflow-list article,
.coverage-steps span {
  will-change: transform;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(12, 15, 18, 0.42);
}

.inquiry-form input:invalid:not(:placeholder-shown),
.inquiry-form select:invalid,
.inquiry-form textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(228, 163, 78, 0.72);
}

@media (max-width: 920px) {
  .site-nav {
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-cta {
    justify-content: center;
  }

  .trust-strip {
    gap: 8px;
  }
}

@media (max-width: 620px) {
  .cinematic-intro {
    padding: max(28px, env(safe-area-inset-top, 0)) 16px 92px;
  }

  .intro-brand-logo,
  .intro-logo-lockup .intro-mark {
    width: min(78vw, 360px);
  }

  .intro-skip {
    width: calc(100% - 48px);
  }

  .trust-strip span {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .cinematic-intro,
  .journey-cinema {
    display: none !important;
  }
}
