:root {
  --night: #071820;
  --night-deep: #041017;
  --night-soft: #0d2a35;
  --slate: #173b48;
  --blue: #0a9df2;
  --blue-light: #54c7ff;
  --red: #f04432;
  --red-light: #ff604e;
  --sand: #eee9df;
  --sand-light: #f6f2ea;
  --cream: #fbfaf6;
  --white: #ffffff;
  --ink: #142d36;
  --muted: #687b81;
  --line: rgba(20, 45, 54, 0.14);
  --content: 1220px;
  --gutter: clamp(20px, 4vw, 52px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: "Cairo", "Segoe UI", Tahoma, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(84, 199, 255, 0.82);
  outline-offset: 4px;
}

section {
  scroll-margin-top: 96px;
}


/* ================================================================
   HEADER
   ================================================================ */

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 50%;
  width: min(var(--content), calc(100% - (var(--gutter) * 2)));
  height: 106px;
  display: grid;
  grid-template-columns: 270px 1fr 125px;
  align-items: center;
  gap: 28px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transform: translateX(-50%);
}

.site-header.is-scrolled {
  position: fixed;
  top: 12px;
  height: 76px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 19px;
  background: rgba(5, 21, 29, 0.86);
  box-shadow: 0 18px 55px rgba(0, 7, 11, 0.32);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  backdrop-filter: blur(22px) saturate(130%);
  animation: headerIn 230ms ease-out both;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
}

.brand-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 4px;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 9px 28px rgba(0, 6, 10, 0.24);
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name strong {
  overflow: hidden;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-name small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.site-header.is-scrolled .brand-icon {
  width: 48px;
  height: 48px;
}

.site-header.is-scrolled .brand-name strong {
  font-size: 15px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(23px, 3vw, 42px);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.7);
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 1px;
  width: 0;
  height: 2px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--red), var(--blue-light));
  transition: width 220ms ease, right 220ms ease;
}

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

.main-nav a:hover::after,
.main-nav a.is-active::after {
  right: 0;
  width: 100%;
}

.language-button {
  justify-self: end;
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: background 180ms ease, border-color 180ms ease;
}

.language-button:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.13);
}

.language-globe {
  font-size: 17px;
  line-height: 1;
}


/* ================================================================
   HERO
   ================================================================ */

.hero {
  position: relative;
  min-height: 760px;
  height: min(900px, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.012);
}

[dir="ltr"] .hero-media img {
  transform: scaleX(-1) scale(1.012);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      270deg,
      rgba(3, 16, 22, 0.98) 0%,
      rgba(5, 24, 33, 0.94) 34%,
      rgba(7, 28, 39, 0.65) 55%,
      rgba(5, 18, 25, 0.12) 78%,
      rgba(4, 13, 18, 0.28) 100%
    );
}

[dir="ltr"] .hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(3, 16, 22, 0.98) 0%,
      rgba(5, 24, 33, 0.94) 34%,
      rgba(7, 28, 39, 0.65) 55%,
      rgba(5, 18, 25, 0.12) 78%,
      rgba(4, 13, 18, 0.28) 100%
    );
}

.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 0.55px, transparent 0.55px);
  background-size: 5px 5px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent 82%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent 82%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(var(--content), calc(100% - (var(--gutter) * 2)));
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 130px 0 115px;
}

.hero-copy {
  width: min(650px, 56%);
}

[dir="rtl"] .hero-copy {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}

[dir="ltr"] .hero-copy {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #a8dfff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.eyebrow i {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(240, 68, 50, 0.1), 0 0 24px rgba(240, 68, 50, 0.55);
}

.hero h1 {
  margin: 24px 0 22px;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1.14;
  letter-spacing: -0.05em;
  font-weight: 600;
}

[lang="ar"] .hero h1 {
  font-size: clamp(43px, 4.7vw, 70px);
  line-height: 1.36;
  letter-spacing: -0.035em;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 strong {
  color: var(--blue-light);
  font-weight: 700;
}

.hero-copy > p:not(.tenant-note) {
  max-width: 610px;
  margin: 0;
  color: rgba(228, 239, 244, 0.75);
  font-size: 17px;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 35px;
}

.button {
  min-height: 57px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 23px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 42px rgba(240, 68, 50, 0.24);
}

.button-primary:hover {
  background: var(--red-light);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.button svg,
.email-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[dir="rtl"] .button svg,
[dir="rtl"] .email-link svg {
  transform: rotate(180deg);
}

.tenant-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 23px 0 0;
  color: rgba(225, 237, 243, 0.52);
  font-size: 10px;
  line-height: 1.7;
}

.tenant-note svg {
  width: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue-light);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-capabilities {
  position: absolute;
  z-index: 4;
  right: 50%;
  bottom: 34px;
  width: min(var(--content), calc(100% - (var(--gutter) * 2)));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(17px, 2.8vw, 40px);
  color: rgba(231, 241, 246, 0.46);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transform: translateX(50%);
}

.hero-capabilities i {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(240, 68, 50, 0.45);
}


/* ================================================================
   SECTION TYPOGRAPHY
   ================================================================ */

.section-label {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.platform-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1.62fr);
  gap: clamp(35px, 7vw, 100px);
  padding: 128px max(var(--gutter), calc((100% - var(--content)) / 2));
  background: var(--cream);
}

.intro-index {
  padding-top: 8px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.intro-content {
  max-width: 900px;
}

.intro-content h2,
.capabilities-heading h2,
.evolution-heading h2,
.mobile-copy h2,
.privacy-section h2,
.contact-copy h2 {
  margin: 13px 0 18px;
  color: var(--ink);
  font-size: clamp(37px, 4.2vw, 62px);
  line-height: 1.25;
  letter-spacing: -0.045em;
}

[lang="ar"] .intro-content h2,
[lang="ar"] .capabilities-heading h2,
[lang="ar"] .evolution-heading h2,
[lang="ar"] .mobile-copy h2,
[lang="ar"] .privacy-section h2,
[lang="ar"] .contact-copy h2 {
  line-height: 1.48;
  letter-spacing: -0.03em;
}

.intro-content p,
.capabilities-heading p,
.mobile-copy > p,
.privacy-section p,
.contact-copy > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}


/* ================================================================
   CAPABILITIES
   ================================================================ */

.capabilities-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(55px, 8vw, 112px);
  align-items: start;
  padding: 120px max(var(--gutter), calc((100% - var(--content)) / 2));
  background: var(--sand);
}

.capabilities-heading {
  position: sticky;
  top: 115px;
}

.capabilities-heading h2 {
  font-size: clamp(35px, 3.8vw, 53px);
}

.capabilities-list {
  border-top: 1px solid rgba(20, 45, 54, 0.16);
}

.capability-item {
  position: relative;
  min-height: 190px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 28px;
  padding: 32px 58px 32px 22px;
  border-bottom: 1px solid rgba(20, 45, 54, 0.16);
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

[dir="rtl"] .capability-item {
  padding-right: 58px;
  padding-left: 22px;
}

[dir="ltr"] .capability-item {
  padding-right: 22px;
  padding-left: 58px;
}

.capability-item:hover {
  z-index: 2;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 60px rgba(18, 50, 62, 0.08);
  transform: translateY(-4px);
}

.capability-number {
  position: absolute;
  top: 31px;
  inset-inline-start: 8px;
  color: var(--red);
  font: 700 10px/1 monospace;
}

.capability-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 1px solid rgba(10, 157, 242, 0.18);
  border-radius: 17px;
  background: rgba(10, 157, 242, 0.07);
}

.capability-icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-item h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.55;
}

.capability-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.capability-highlight {
  margin-top: 16px;
  color: var(--white);
  border: 0;
  border-radius: 18px;
  background:
    radial-gradient(circle at 85% 15%, rgba(10, 157, 242, 0.2), transparent 30%),
    linear-gradient(135deg, var(--night), #113444);
  box-shadow: 0 25px 70px rgba(5, 25, 34, 0.17);
}

.capability-highlight:hover {
  background:
    radial-gradient(circle at 85% 15%, rgba(10, 157, 242, 0.25), transparent 32%),
    linear-gradient(135deg, #0a202b, #153e50);
}

.capability-highlight .capability-icon {
  color: var(--blue-light);
  border-color: rgba(84, 199, 255, 0.2);
  background: rgba(84, 199, 255, 0.09);
}

.capability-highlight h3 {
  color: var(--white);
}

.capability-highlight p {
  color: rgba(226, 239, 245, 0.65);
}


/* ================================================================
   EVOLUTION
   ================================================================ */

.evolution-section {
  padding: 120px max(var(--gutter), calc((100% - var(--content)) / 2));
  background: var(--cream);
}

.evolution-heading {
  max-width: 820px;
  margin-bottom: 62px;
}

.evolution-heading h2 {
  font-size: clamp(36px, 4vw, 58px);
}

.evolution-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.evolution-steps article {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 30px;
  border-inline-start: 1px solid var(--line);
  transition: color 200ms ease, background 200ms ease;
}

.evolution-steps article:last-child {
  color: var(--white);
  background: var(--night);
  border-inline-end: 1px solid var(--line);
}

.evolution-steps article:hover:not(:last-child) {
  background: var(--white);
}

.evolution-steps article span {
  color: var(--red);
  font: 700 11px/1 monospace;
}

.evolution-steps article:last-child span {
  color: var(--blue-light);
}

.evolution-steps article strong {
  max-width: 220px;
  font-size: 17px;
  line-height: 1.7;
}


/* ================================================================
   MOBILE APPLICATION
   ================================================================ */

.mobile-section {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(450px, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
  padding: 90px max(var(--gutter), calc((100% - var(--content)) / 2));
  overflow: hidden;
  background: var(--sand-light);
}

[dir="rtl"] .mobile-section {
  direction: ltr;
}

[dir="rtl"] .mobile-copy {
  direction: rtl;
  text-align: right;
}

[dir="ltr"] .mobile-section {
  direction: rtl;
}

[dir="ltr"] .mobile-copy {
  direction: ltr;
  text-align: left;
}

.mobile-visual {
  position: relative;
  min-height: 540px;
}

.mobile-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(10, 157, 242, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 480px;
  height: 480px;
}

.orbit-two {
  width: 360px;
  height: 360px;
  border-color: rgba(240, 68, 50, 0.1);
}

.mobile-orbit::after {
  content: "";
  position: absolute;
  top: 9%;
  right: 18%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 22px rgba(240, 68, 50, 0.55);
}

.phone {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 235px;
  height: 475px;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 36px;
  background: linear-gradient(145deg, #26333b, #03080b);
  box-shadow: 0 42px 85px rgba(7, 24, 32, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.phone-front {
  z-index: 3;
  transform: translate(-30%, -50%) rotate(5deg);
}

.phone-back {
  z-index: 1;
  opacity: 0.86;
  transform: translate(-78%, -47%) rotate(-9deg) scale(0.92);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 39px 16px 18px;
  border-radius: 29px;
  background:
    radial-gradient(circle at 85% 8%, rgba(10, 157, 242, 0.27), transparent 28%),
    linear-gradient(160deg, #113746, #071820 66%);
}

.phone-gradient {
  padding: 0;
  background:
    radial-gradient(circle at 56% 30%, rgba(10, 157, 242, 0.45), transparent 29%),
    radial-gradient(circle at 35% 72%, rgba(240, 68, 50, 0.25), transparent 34%),
    linear-gradient(160deg, #123e50, #071820 68%);
}

.phone-speaker {
  position: absolute;
  z-index: 5;
  top: 16px;
  left: 50%;
  width: 69px;
  height: 18px;
  border-radius: 999px;
  background: #02070a;
  transform: translateX(-50%);
}

.phone-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.phone-brand img {
  width: 29px;
  height: 29px;
  object-fit: contain;
  border-radius: 50%;
}

.ui-line {
  display: block;
  height: 5px;
  margin-top: 7px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.13);
}

.line-short {
  width: 38%;
  background: rgba(255, 255, 255, 0.5);
}

.line-long {
  width: 66%;
  margin-bottom: 22px;
}

.ui-main-card {
  min-height: 130px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;
  background:
    radial-gradient(circle at 85% 12%, rgba(240, 68, 50, 0.2), transparent 28%),
    rgba(255, 255, 255, 0.055);
}

.ui-pin {
  width: 36px;
  height: 36px;
  display: block;
  margin-bottom: 21px;
  border: 7px solid var(--red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 10px 20px rgba(240, 68, 50, 0.2);
}

.ui-main-card i {
  display: block;
  width: 65%;
  height: 5px;
  margin-top: 7px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
}

.ui-main-card i:first-of-type {
  width: 42%;
  background: rgba(255, 255, 255, 0.42);
}

.ui-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 13px;
}

.ui-shortcuts span {
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 38%, rgba(84, 199, 255, 0.55) 0 8px, transparent 9px),
    rgba(255, 255, 255, 0.04);
}

.ui-shortcuts span:nth-child(2) {
  background:
    radial-gradient(circle at 50% 38%, rgba(240, 68, 50, 0.48) 0 8px, transparent 9px),
    rgba(255, 255, 255, 0.04);
}

.ui-shortcuts span:nth-child(3) {
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.36) 0 8px, transparent 9px),
    rgba(255, 255, 255, 0.04);
}

.mobile-copy h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.store-button {
  min-width: 205px;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 17px;
  color: var(--white);
  border-radius: 13px;
  background: var(--night);
  box-shadow: 0 15px 38px rgba(7, 24, 32, 0.13);
  transition: transform 180ms ease, background 180ms ease;
}

.store-button:hover {
  background: var(--night-soft);
  transform: translateY(-3px);
}

.store-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.08);
}

.store-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--blue-light);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.apple-icon svg {
  fill: var(--white);
  stroke: none;
}

.store-button small {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
}

.store-button strong {
  display: block;
  margin-top: 2px;
  font-size: 14px;
}


/* ================================================================
   PRIVACY
   ================================================================ */

.privacy-section {
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr);
  align-items: center;
  gap: clamp(35px, 6vw, 80px);
  padding: 90px max(var(--gutter), calc((100% - var(--content)) / 2));
  background: var(--white);
}

.privacy-icon {
  width: 125px;
  height: 125px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 1px solid rgba(10, 157, 242, 0.16);
  border-radius: 31px;
  background: rgba(10, 157, 242, 0.055);
}

.privacy-icon svg {
  width: 66px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-section h2 {
  max-width: 860px;
  font-size: clamp(30px, 3.5vw, 49px);
}


/* ================================================================
   CONTACT & SOCIAL
   ================================================================ */

.contact-section {
  display: grid;
  grid-template-columns: minmax(350px, 0.85fr) minmax(500px, 1.15fr);
  gap: clamp(55px, 8vw, 120px);
  padding: 120px max(var(--gutter), calc((100% - var(--content)) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(10, 157, 242, 0.16), transparent 25%),
    radial-gradient(circle at 5% 90%, rgba(240, 68, 50, 0.09), transparent 24%),
    linear-gradient(135deg, var(--night-deep), var(--night-soft));
}

.contact-copy .section-label {
  color: var(--blue-light);
}

.contact-copy h2 {
  color: var(--white);
  font-size: clamp(37px, 4vw, 56px);
}

.contact-copy > p {
  color: rgba(226, 239, 245, 0.64);
  font-size: 14px;
}

.email-link {
  width: min(100%, 430px);
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 33px;
  padding: 13px 19px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.065);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.email-link:hover {
  border-color: rgba(84, 199, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.email-link small {
  display: block;
  color: rgba(255, 255, 255, 0.43);
  font-size: 9px;
}

.email-link strong {
  display: block;
  margin-top: 3px;
  font-size: 18px;
  font-weight: 600;
}

.social-heading {
  display: block;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

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

.social-grid > a {
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-grid > a:hover {
  border-color: rgba(84, 199, 255, 0.27);
  background: rgba(255, 255, 255, 0.085);
  transform: translateY(-3px);
}

.social-grid > a:last-child {
  grid-column: 1 / -1;
}

.social-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue-light);
  border-radius: 12px;
  background: rgba(84, 199, 255, 0.08);
  font-size: 20px;
  font-weight: 700;
}

.social-grid a:nth-child(2) .social-icon,
.social-grid a:nth-child(5) .social-icon {
  color: #ff8072;
  background: rgba(240, 68, 50, 0.09);
}

.social-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon .fill {
  fill: currentColor;
  stroke: none;
}

.social-at {
  font-family: Arial, sans-serif;
}

.social-x {
  font-family: Arial, sans-serif;
  font-size: 17px;
}

.social-note {
  font-family: Arial, sans-serif;
}

.social-grid strong,
.social-grid small {
  display: block;
}

.social-grid strong {
  font-size: 13px;
  font-weight: 600;
}

.social-grid small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
}


/* ================================================================
   FOOTER
   ================================================================ */

.site-footer {
  padding: 75px max(var(--gutter), calc((100% - var(--content)) / 2)) 30px;
  color: var(--white);
  background: #020b10;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 25px;
}

.footer-brand img {
  width: 245px;
  height: 110px;
  object-fit: contain;
  object-position: left center;
}

[dir="rtl"] .footer-brand img {
  object-position: right center;
}

.footer-brand > div {
  padding-inline-start: 24px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  font-size: 16px;
}

.footer-brand span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.footer-description {
  max-width: 560px;
  margin: 24px 0 55px;
  color: rgba(224, 238, 244, 0.44);
  font-size: 12px;
  line-height: 1.9;
}

.footer-bottom {
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 24px;
  color: rgba(224, 238, 244, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 9px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > span {
  color: rgba(84, 199, 255, 0.43);
}


/* ================================================================
   REVEAL & ANIMATIONS
   ================================================================ */

.reveal-item.reveal-pending {
  opacity: 0;
  translate: 0 24px;
}

.reveal-item.reveal-visible {
  opacity: 1;
  translate: 0 0;
  transition:
    opacity 620ms ease var(--reveal-delay, 0ms),
    translate 620ms cubic-bezier(0.2, 0.75, 0.25, 1) var(--reveal-delay, 0ms);
}

@keyframes headerIn {
  from {
    opacity: 0;
    transform: translate(-50%, -12px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}


/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 235px 1fr 115px;
    gap: 18px;
  }

  .main-nav {
    gap: 23px;
    font-size: 12px;
  }

  .capabilities-section {
    grid-template-columns: minmax(280px, 0.7fr) minmax(470px, 1.3fr);
    gap: 55px;
  }

  .mobile-section {
    grid-template-columns: minmax(410px, 1fr) minmax(340px, 1fr);
    gap: 45px;
  }

  .contact-section {
    grid-template-columns: minmax(330px, 0.85fr) minmax(430px, 1.15fr);
    gap: 55px;
  }
}

@media (max-width: 880px) {
  .site-header {
    height: 88px;
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .brand-icon {
    width: 52px;
    height: 52px;
  }

  .hero {
    height: auto;
    min-height: 800px;
  }

  .hero-copy {
    width: min(680px, 78%);
  }

  .platform-intro,
  .capabilities-section,
  .mobile-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .platform-intro {
    gap: 24px;
  }

  .capabilities-section {
    gap: 50px;
  }

  .capabilities-heading {
    position: static;
    max-width: 760px;
  }

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

  .evolution-steps article:nth-child(1),
  .evolution-steps article:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .mobile-section {
    gap: 30px;
    padding-top: 80px;
  }

  .mobile-copy {
    max-width: 720px;
  }

  .mobile-visual {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .contact-copy {
    max-width: 720px;
  }

  .social-area {
    max-width: 760px;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 18px;
  }

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

  .site-header {
    width: calc(100% - 30px);
    height: 78px;
    gap: 8px;
  }

  .site-header.is-scrolled {
    top: 8px;
    height: 64px;
    padding: 0 11px;
    border-radius: 16px;
  }

  .brand {
    gap: 9px;
  }

  .brand-icon,
  .site-header.is-scrolled .brand-icon {
    width: 44px;
    height: 44px;
  }

  .brand-name strong,
  .site-header.is-scrolled .brand-name strong {
    font-size: 13px;
  }

  .brand-name small {
    font-size: 6px;
  }

  .language-button {
    min-height: 39px;
    padding: 0 10px;
    font-size: 10px;
  }

  .hero {
    min-height: 830px;
  }

  .hero-media img,
  [dir="ltr"] .hero-media img {
    object-position: 44% center;
    opacity: 0.7;
  }

  .hero-shade,
  [dir="ltr"] .hero-shade {
    background:
      linear-gradient(
        180deg,
        rgba(3, 15, 21, 0.64) 0%,
        rgba(4, 18, 25, 0.82) 35%,
        rgba(4, 18, 25, 0.98) 76%,
        rgba(4, 15, 21, 1) 100%
      );
  }

  .hero-inner {
    align-items: flex-end;
    padding: 125px 0 150px;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    font-size: 10px;
  }

  .hero h1,
  [lang="ar"] .hero h1 {
    margin-top: 20px;
    font-size: 40px;
    line-height: 1.42;
  }

  .hero-copy > p:not(.tenant-note) {
    font-size: 14px;
    line-height: 1.9;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 27px;
  }

  .button {
    width: 100%;
  }

  .tenant-note {
    align-items: flex-start;
  }

  .hero-capabilities {
    bottom: 25px;
    justify-content: flex-start;
    gap: 15px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .hero-capabilities::-webkit-scrollbar {
    display: none;
  }

  .platform-intro,
  .capabilities-section,
  .evolution-section,
  .mobile-section,
  .contact-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .intro-content h2,
  .capabilities-heading h2,
  .evolution-heading h2,
  .mobile-copy h2,
  .privacy-section h2,
  .contact-copy h2,
  [lang="ar"] .intro-content h2,
  [lang="ar"] .capabilities-heading h2,
  [lang="ar"] .evolution-heading h2,
  [lang="ar"] .mobile-copy h2,
  [lang="ar"] .privacy-section h2,
  [lang="ar"] .contact-copy h2 {
    font-size: 34px;
  }

  .intro-content p,
  .capabilities-heading p,
  .mobile-copy > p,
  .privacy-section p,
  .contact-copy > p {
    font-size: 14px;
    line-height: 1.9;
  }

  .capability-item,
  [dir="rtl"] .capability-item,
  [dir="ltr"] .capability-item {
    min-height: 0;
    grid-template-columns: 50px 1fr;
    gap: 17px;
    padding: 30px 20px 30px 45px;
  }

  [dir="rtl"] .capability-item {
    padding-right: 45px;
    padding-left: 20px;
  }

  .capability-icon {
    width: 50px;
    height: 50px;
  }

  .capability-number {
    inset-inline-start: 5px;
  }

  .capability-item h3 {
    font-size: 18px;
  }

  .evolution-steps {
    grid-template-columns: 1fr;
  }

  .evolution-steps article {
    min-height: 135px;
    border-inline-end: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .evolution-steps article:last-child {
    border-bottom: 0;
  }

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

  .orbit-one {
    width: 360px;
    height: 360px;
  }

  .orbit-two {
    width: 280px;
    height: 280px;
  }

  .phone {
    width: 205px;
    height: 420px;
  }

  .phone-front {
    transform: translate(-30%, -50%) rotate(4deg);
  }

  .phone-back {
    transform: translate(-76%, -47%) rotate(-8deg) scale(0.88);
  }

  .store-buttons {
    display: grid;
  }

  .store-button {
    width: 100%;
  }

  .privacy-section {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .privacy-icon {
    width: 82px;
    height: 82px;
    border-radius: 22px;
  }

  .privacy-icon svg {
    width: 44px;
  }

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

  .social-grid > a {
    min-height: 78px;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-brand img {
    width: 220px;
    height: 95px;
  }

  .footer-brand > div {
    padding-inline-start: 0;
    padding-top: 15px;
    border-inline-start: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.9;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .store-buttons,
  .social-area {
    display: none !important;
  }
}
