:root {
  --bg: #070707;
  --bg-soft: #0d0d0e;
  --surface: #111113;
  --surface-2: #171719;
  --paper: #f4f2ee;
  --paper-2: #ebe8e2;
  --white: #ffffff;
  --black: #050505;
  --red: #e10600;
  --red-bright: #ff3128;
  --red-dark: #a70000;
  --text: #f7f7f7;
  --muted: rgba(255,255,255,.62);
  --muted-2: rgba(255,255,255,.38);
  --ink: #111113;
  --ink-muted: #67676c;
  --line: rgba(255,255,255,.11);
  --line-dark: rgba(10,10,12,.12);
  --green: #3ddc84;
  --container: min(1280px, calc(100% - 48px));
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 34px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 30px 90px rgba(0,0,0,.28);
  --font-body: "Manrope", Arial, sans-serif;
  --font-display: "Syne", "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
::selection { background: var(--red); color: #fff; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
a, button, summary { cursor: pointer; }
img, svg { display: block; max-width: 100%; }
fieldset { border: 0; margin: 0; padding: 0; min-inline-size: 0; }
.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: 132px 0; }

.skip-link {
  position: fixed;
  inset: 10px auto auto 10px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 8px;
  background: #fff;
  color: #000;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.noise {
  position: fixed;
  inset: 0;
  z-index: 900;
  opacity: .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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  background: #050505;
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-mark {
  display: flex;
  align-items: center;
  gap: 3px;
  font: 800 clamp(2.5rem, 8vw, 5rem)/1 var(--font-display);
  letter-spacing: -.1em;
}
.loader-mark span:first-child { color: var(--red); }
.loader-mark span:last-child { -webkit-text-stroke: 1px rgba(255,255,255,.9); color: transparent; }
.loader-line {
  position: absolute;
  left: 50%;
  top: calc(50% + 70px);
  width: 150px;
  height: 2px;
  background: rgba(255,255,255,.12);
  transform: translateX(-50%);
  overflow: hidden;
}
.loader-line i {
  display: block;
  width: 60%;
  height: 100%;
  background: var(--red);
  animation: loader 1.1s var(--ease) infinite;
}
@keyframes loader { from { transform: translateX(-120%); } to { transform: translateX(220%); } }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, transform .35s ease;
}
.site-header.is-scrolled {
  background: rgba(7,7,7,.84);
  border-color: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.site-header.is-hidden { transform: translateY(-110%); }
.nav-wrap { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  overflow: hidden;
  background: #030303;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 30px rgba(225,6,0,.16);
}
.brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.brand-copy { display: grid; line-height: 1; gap: 6px; }
.brand-copy strong { font: 800 .93rem/1 var(--font-display); letter-spacing: .09em; }
.brand-copy small { color: rgba(255,255,255,.42); font-size: .57rem; font-weight: 800; letter-spacing: .19em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.25vw, 34px); }
.desktop-nav a {
  position: relative;
  color: rgba(255,255,255,.67);
  font-size: .79rem;
  font-weight: 700;
  transition: color .2s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 1px;
  background: var(--red);
  transition: right .3s var(--ease);
}
.desktop-nav a:hover, .desktop-nav a.is-active { color: #fff; }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.language-switcher {
  direction: ltr;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 1px rgba(255,255,255,.025);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.language-switcher button {
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  padding: 0 7px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,.48);
  font: 800 .61rem/1 "Manrope", Arial, sans-serif;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.language-switcher button[lang="ar"] { font-family: "Noto Naskh Arabic", Tahoma, serif; font-size: .88rem; }
.language-switcher button:hover { color: #fff; transform: translateY(-1px); }
.language-switcher button.is-active {
  background: var(--red);
  color: #fff;
  box-shadow: 0 7px 20px rgba(225,6,0,.28);
}
.language-switcher button:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.nav-email { color: rgba(255,255,255,.48); font-size: .72rem; font-weight: 700; transition: color .2s ease; }
.nav-email:hover { color: #fff; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: #fff; transition: transform .3s var(--ease); }
.menu-toggle.is-open span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-3px) rotate(-45deg); }
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: grid;
  place-items: center;
  background: rgba(5,5,5,.98);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; }
.mobile-nav-inner { width: min(540px, calc(100% - 48px)); display: grid; gap: 5px; }
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font: 700 clamp(1.65rem, 7vw, 3.2rem)/1.15 var(--font-display);
}
.mobile-nav a span { color: var(--red); font: 700 .65rem/1 var(--font-body); }
.mobile-nav .mobile-mail { margin-top: 20px; border: 0; color: rgba(255,255,255,.5); font: 600 .92rem/1.4 var(--font-body); }

.button {
  --button-bg: transparent;
  --button-color: #fff;
  --button-border: rgba(255,255,255,.15);
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--button-border);
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--button-color);
  font-size: .8rem;
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), color .3s ease, border-color .3s ease;
}
.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(255,255,255,.12);
  transform: translateX(-105%);
  transition: transform .45s var(--ease);
}
.button:hover::before { transform: translateX(0); }
.button:hover { transform: translateY(-3px); }
.button i { font-style: normal; font-size: 1rem; transition: transform .3s var(--ease); }
.button:hover i { transform: translate(3px, -3px); }
.button-red { --button-bg: var(--red); --button-border: var(--red); box-shadow: 0 16px 50px rgba(225,6,0,.2); }
.button-red:hover { box-shadow: 0 20px 65px rgba(225,6,0,.34); }
.button-ghost { --button-bg: rgba(255,255,255,.035); backdrop-filter: blur(12px); }
.button-white { --button-bg: #fff; --button-color: #080808; --button-border: #fff; }
.button-white::before { background: #e7e7e7; }
.button-sm { min-height: 44px; padding: 0 18px; font-size: .74rem; }
.button-lg { min-height: 58px; padding: 0 26px; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 90px;
  background:
    radial-gradient(circle at 78% 40%, rgba(225,6,0,.11), transparent 28%),
    linear-gradient(180deg, #050505 0%, #0a0a0b 100%);
}
.hero-grid-bg, .contact-grid-bg {
  position: absolute;
  inset: 0;
  opacity: .23;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 75%, transparent);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(40px); pointer-events: none; }
.hero-glow-a { width: 560px; height: 560px; right: 4%; top: 12%; background: rgba(225,6,0,.08); }
.hero-glow-b { width: 320px; height: 320px; left: -8%; bottom: -10%; background: rgba(255,255,255,.04); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr); align-items: center; gap: clamp(30px, 5vw, 84px); }
.hero-content { max-width: 760px; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--red-bright);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 7px rgba(225,6,0,.12); }
.hero-title {
  max-width: 780px;
  margin: 0;
  font: 700 clamp(3.45rem, 6.5vw, 6.85rem)/.94 var(--font-display);
  letter-spacing: -.062em;
  text-wrap: balance;
}
.hero-title span { color: transparent; -webkit-text-stroke: 1.4px rgba(255,255,255,.78); }
.hero-lead { max-width: 690px; margin: 30px 0 0; color: rgba(255,255,255,.64); font-size: clamp(.98rem, 1.3vw, 1.14rem); line-height: 1.78; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 38px; }
.hero-proof { display: flex; align-items: center; gap: 20px; margin-top: 50px; }
.proof-item { display: grid; gap: 2px; }
.proof-item b { color: #fff; font-size: .83rem; }
.proof-item span { color: rgba(255,255,255,.38); font-size: .64rem; }
.proof-line { width: 1px; height: 30px; background: rgba(255,255,255,.12); }
.hero-visual {
  position: relative;
  min-height: 650px;
  perspective: 1200px;
  transform-style: preserve-3d;
}
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .85; }
.visual-halo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225,6,0,.19), rgba(225,6,0,.04) 42%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(5px);
}
.orbit-system {
  --rx: 0deg;
  --ry: 0deg;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 440px;
  height: 440px;
  transform: translate(-50%, -50%) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: transform .12s linear;
}
.core-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 168px;
  height: 168px;
  border-radius: 46px;
  overflow: hidden;
  background: rgba(3,3,3,.92);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 30px 90px rgba(0,0,0,.58), 0 0 70px rgba(225,6,0,.18), inset 0 1px rgba(255,255,255,.1);
  transform: translate(-50%, -50%) translateZ(45px) rotateX(-8deg) rotateY(10deg);
  transform-style: preserve-3d;
  animation: coreFloat 5.5s ease-in-out infinite;
}
.core-mark img { width: 100%; height: 100%; object-fit: cover; }
.core-ring { position: absolute; inset: -15px; border: 1px solid rgba(225,6,0,.35); border-radius: 58px; animation: pulseRing 2.8s ease-out infinite; }
.core-shine { position: absolute; inset: 0; background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.12) 42%, transparent 62%); transform: translateX(-140%); animation: shine 5s ease-in-out infinite; }
.orbit {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 50%;
  transform-style: preserve-3d;
}
.orbit::before, .orbit::after { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 22px var(--red); }
.orbit-one { width: 330px; height: 330px; margin: -165px; transform: rotateX(70deg) rotateZ(15deg); animation: orbitA 14s linear infinite; }
.orbit-one::before { top: 48px; left: 34px; }
.orbit-one::after { bottom: 50px; right: 30px; background: #fff; box-shadow: 0 0 20px rgba(255,255,255,.8); }
.orbit-two { width: 410px; height: 240px; margin: -120px -205px; transform: rotateY(62deg) rotateZ(-12deg); animation: orbitB 18s linear infinite reverse; }
.orbit-two::before { top: 8px; left: 160px; }
.orbit-two::after { bottom: 18px; right: 80px; }
.orbit-three { width: 455px; height: 455px; margin: -227.5px; transform: rotateX(78deg) rotateY(12deg); border-color: rgba(225,6,0,.22); animation: orbitC 24s linear infinite; }
.orbit-three::before { top: 50%; left: -4px; }
.orbit-three::after { top: 50%; right: -4px; background: #fff; }
.orbit-tag {
  position: absolute;
  left: 50%;
  top: -13px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(8,8,8,.82);
  color: rgba(255,255,255,.7);
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: .14em;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}
.orbit-two .orbit-tag { top: auto; bottom: -13px; }
.floating-panel {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(18,18,20,.7);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
}
.floating-panel small, .floating-panel strong { display: block; }
.floating-panel small { color: rgba(255,255,255,.4); font-size: .57rem; text-transform: uppercase; letter-spacing: .12em; }
.floating-panel strong { margin-top: 3px; font-size: .73rem; }
.panel-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: var(--red); font-weight: 800; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 8px rgba(61,220,132,.1); }
.panel-a { left: 2%; top: 18%; animation: floatA 5s ease-in-out infinite; }
.panel-b { right: 0; bottom: 19%; animation: floatB 6s ease-in-out infinite; }
.visual-caption { position: absolute; left: 50%; bottom: 24px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.3); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; transform: translateX(-50%); }
.visual-caption i { width: 22px; height: 1px; background: rgba(255,255,255,.26); }
.scroll-indicator { position: absolute; z-index: 3; left: 50%; bottom: 28px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.32); font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-indicator i { position: relative; width: 24px; height: 36px; border: 1px solid rgba(255,255,255,.2); border-radius: 20px; }
.scroll-indicator b { position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; border-radius: 3px; background: var(--red); transform: translateX(-50%); animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes coreFloat { 0%,100% { transform: translate(-50%,-50%) translateZ(45px) rotateX(-8deg) rotateY(10deg) translateY(0); } 50% { transform: translate(-50%,-50%) translateZ(60px) rotateX(-4deg) rotateY(15deg) translateY(-10px); } }
@keyframes pulseRing { 0% { opacity: .6; transform: scale(.9); } 75%,100% { opacity: 0; transform: scale(1.25); } }
@keyframes shine { 0%,62% { transform: translateX(-140%); } 82%,100% { transform: translateX(140%); } }
@keyframes orbitA { to { transform: rotateX(70deg) rotateZ(375deg); } }
@keyframes orbitB { to { transform: rotateY(62deg) rotateZ(348deg); } }
@keyframes orbitC { to { transform: rotateX(78deg) rotateY(12deg) rotateZ(360deg); } }
@keyframes floatA { 0%,100% { translate: 0 0; } 50% { translate: 0 -13px; } }
@keyframes floatB { 0%,100% { translate: 0 0; } 50% { translate: 0 11px; } }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%,0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,14px); } }

.marquee-section { position: relative; z-index: 4; overflow: hidden; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); background: #0a0a0b; }
.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee-content { display: flex; align-items: center; gap: 28px; min-width: max-content; padding: 23px 14px; }
.marquee-content span { color: rgba(255,255,255,.78); font: 700 .7rem/1 var(--font-display); letter-spacing: .18em; }
.marquee-content i { color: var(--red); font-style: normal; font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.expertise { background: var(--paper); color: var(--ink); }
.section-head { margin-bottom: 64px; }
.section-kicker { color: var(--red); }
.section-kicker span { display: grid; place-items: center; min-width: 32px; height: 24px; padding: 0 7px; border: 1px solid rgba(225,6,0,.25); border-radius: 999px; font-size: .58rem; }
.section-kicker.light { color: #ff4b43; }
.section-kicker.light span { border-color: rgba(255,75,67,.28); }
.section-head-grid { display: grid; grid-template-columns: 1.32fr .68fr; align-items: end; gap: 80px; }
.section-title { max-width: 850px; margin: 0; color: var(--ink); font: 700 clamp(2.45rem, 4.5vw, 5.25rem)/1.02 var(--font-display); letter-spacing: -.055em; text-wrap: balance; }
.section-title em { color: var(--red); font-style: normal; }
.section-title.light { color: #fff; }
.section-title.light em { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.58); }
.section-intro { max-width: 590px; margin: 0; color: var(--ink-muted); font-size: .98rem; line-height: 1.8; }
.section-intro.light { color: rgba(255,255,255,.56); }
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card {
  position: relative;
  min-height: 380px;
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,.52);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color .35s ease, box-shadow .35s ease, background .35s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -100px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(225,6,0,.06);
  filter: blur(10px);
  transition: transform .5s var(--ease), opacity .5s ease;
}
.service-card:hover { border-color: rgba(225,6,0,.28); background: #fff; box-shadow: 0 28px 70px rgba(25,20,18,.11); }
.service-card:hover::before { transform: scale(1.5); opacity: .8; }
.service-featured { grid-column: span 2; background: #fff; }
.service-dark { grid-column: span 2; color: #fff; border-color: rgba(255,255,255,.12); background: #111113; }
.service-dark:hover { background: #151518; border-color: rgba(225,6,0,.5); box-shadow: 0 28px 70px rgba(0,0,0,.2); }
.service-index { position: absolute; right: 26px; top: 24px; color: rgba(17,17,19,.28); font-size: .64rem; font-weight: 800; letter-spacing: .12em; }
.service-dark .service-index { color: rgba(255,255,255,.28); }
.service-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 46px; border-radius: 16px; background: rgba(225,6,0,.08); color: var(--red); transform: translateZ(26px); }
.service-icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { position: relative; z-index: 1; margin: 0 0 14px; font: 700 clamp(1.28rem, 2vw, 1.65rem)/1.15 var(--font-display); letter-spacing: -.035em; }
.service-card p { position: relative; z-index: 1; max-width: 500px; margin: 0; color: #727278; font-size: .87rem; line-height: 1.75; }
.service-dark p { color: rgba(255,255,255,.55); }
.service-card ul { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 8px; margin: 23px 0 0; padding: 0; list-style: none; }
.service-card li { padding: 7px 10px; border: 1px solid rgba(17,17,19,.1); border-radius: 999px; color: #4c4c51; font-size: .62rem; font-weight: 700; }
.service-dark li { border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.58); }
.service-arrow { position: absolute; right: 25px; bottom: 24px; display: grid; place-items: center; width: 43px; height: 43px; border: 1px solid rgba(17,17,19,.12); border-radius: 50%; color: var(--red); font-size: 1rem; transition: background .25s ease, color .25s ease, transform .3s var(--ease); }
.service-card:hover .service-arrow { background: var(--red); color: #fff; transform: rotate(45deg); }
.service-dark .service-arrow { border-color: rgba(255,255,255,.13); }

.ecosystem { overflow: hidden; background: #0a0a0b; }
.ecosystem::before { content: ""; position: absolute; width: 620px; height: 620px; left: -260px; top: 50%; border-radius: 50%; background: rgba(225,6,0,.08); filter: blur(100px); transform: translateY(-50%); }
.ecosystem-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(50px, 8vw, 120px); }
.ecosystem-visual { min-height: 650px; display: grid; place-items: center; perspective: 1600px; }
.stack-scene { position: relative; width: min(100%, 520px); height: 500px; transform-style: preserve-3d; transform: rotateX(56deg) rotateZ(-28deg); transition: transform .3s ease; }
.stack-card {
  position: absolute;
  inset: 80px 30px;
  display: grid;
  align-content: center;
  padding: 50px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background: rgba(20,20,23,.72);
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
  backdrop-filter: blur(12px);
  transform-style: preserve-3d;
}
.stack-card::after { content: ""; position: absolute; inset: 20px; border: 1px solid rgba(255,255,255,.045); border-radius: 20px; }
.stack-card span { position: absolute; right: 28px; top: 25px; color: rgba(255,255,255,.25); font-size: .65rem; font-weight: 800; }
.stack-card strong { color: #fff; font: 700 clamp(1.7rem, 4vw, 3rem)/1 var(--font-display); letter-spacing: .06em; }
.stack-card small { margin-top: 12px; color: rgba(255,255,255,.45); font-size: .73rem; text-transform: uppercase; letter-spacing: .13em; }
.stack-card-1 { transform: translateZ(-125px); opacity: .42; }
.stack-card-2 { transform: translateZ(-80px) translateX(12px); opacity: .58; }
.stack-card-3 { transform: translateZ(-35px) translateX(24px); opacity: .76; }
.stack-card-4 { transform: translateZ(10px) translateX(36px); border-color: rgba(225,6,0,.42); background: linear-gradient(140deg, rgba(35,17,18,.92), rgba(17,17,19,.83)); }
.stack-card-4 strong { color: var(--red-bright); }
.ecosystem-copy .section-title { color: #fff; }
.ecosystem-copy .section-title em { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.55); }
.ecosystem-copy .section-intro { max-width: 720px; margin-top: 28px; color: rgba(255,255,255,.56); }
.feature-list { margin-top: 44px; border-top: 1px solid rgba(255,255,255,.1); }
.feature-row { display: grid; grid-template-columns: 42px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.feature-row > span { color: var(--red-bright); font-size: .62rem; font-weight: 800; letter-spacing: .12em; }
.feature-row h3 { margin: 0 0 6px; font: 700 1rem/1.25 var(--font-display); }
.feature-row p { margin: 0; color: rgba(255,255,255,.48); font-size: .82rem; line-height: 1.65; }

.approach { background: var(--paper); color: var(--ink); overflow: hidden; }
.approach::after { content: "04"; position: absolute; right: -2vw; bottom: -9vw; color: rgba(17,17,19,.025); font: 800 32vw/.8 var(--font-display); pointer-events: none; }
.approach-head { position: relative; z-index: 1; }
.process-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.process-line { position: absolute; z-index: 1; left: 0; right: 0; top: 53%; height: 1px; background: rgba(17,17,19,.1); }
.process-line i { display: block; width: 0; height: 100%; background: var(--red); transition: width 1.6s var(--ease); }
.approach.in-view .process-line i { width: 100%; }
.process-step { position: relative; min-height: 315px; padding: 28px 24px; border-top: 1px solid rgba(17,17,19,.16); background: rgba(244,242,238,.72); }
.step-number { color: rgba(17,17,19,.24); font-size: .64rem; font-weight: 800; letter-spacing: .14em; }
.step-dot { position: absolute; left: 24px; top: 50%; width: 12px; height: 12px; border: 3px solid var(--paper); border-radius: 50%; background: var(--red); box-shadow: 0 0 0 1px rgba(225,6,0,.35); transform: translateY(-50%); }
.process-step h3 { margin: 90px 0 14px; font: 700 1.35rem/1.2 var(--font-display); letter-spacing: -.03em; }
.process-step p { margin: 0; color: var(--ink-muted); font-size: .82rem; line-height: 1.72; }
.process-step small { display: block; margin-top: 22px; color: var(--red); font-size: .59rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }

.collaboration { overflow: hidden; background: #080809; }
.collaboration::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 48px 48px; }
.collab-glow { position: absolute; width: 720px; height: 720px; left: -280px; top: 8%; border-radius: 50%; background: rgba(225,6,0,.09); filter: blur(120px); }
.form-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: clamp(44px, 6vw, 88px); }
.form-aside { position: sticky; top: 130px; }
.form-aside .section-title { font-size: clamp(2.4rem, 4.5vw, 4.85rem); }
.form-aside .section-intro { margin-top: 28px; }
.aside-points { display: grid; gap: 15px; margin-top: 34px; }
.aside-point { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,.62); font-size: .82rem; }
.aside-point i { flex: 0 0 auto; display: grid; place-items: center; width: 21px; height: 21px; margin-top: 2px; border-radius: 50%; background: rgba(225,6,0,.13); color: var(--red-bright); font-style: normal; font-size: .68rem; }
.aside-card { margin-top: 40px; padding: 23px; border: 1px solid rgba(255,255,255,.11); border-radius: 20px; background: rgba(255,255,255,.035); transform-style: preserve-3d; }
.aside-card span, .aside-card a, .aside-card small { display: block; }
.aside-card span { color: var(--red-bright); font-size: .55rem; font-weight: 800; letter-spacing: .16em; }
.aside-card a { margin: 9px 0 7px; font: 700 clamp(.85rem, 1.5vw, 1.08rem)/1.2 var(--font-display); overflow-wrap: anywhere; }
.aside-card small { color: rgba(255,255,255,.35); font-size: .63rem; }
.form-shell { border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius-lg); background: rgba(17,17,19,.86); box-shadow: var(--shadow); overflow: hidden; backdrop-filter: blur(20px); }
.form-shell-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 28px 32px; border-bottom: 1px solid rgba(255,255,255,.1); }
.form-shell-head span { color: var(--red-bright); font-size: .56rem; font-weight: 800; letter-spacing: .14em; }
.form-shell-head h3 { margin: 6px 0 0; font: 700 1.35rem/1.2 var(--font-display); }
.secure-pill { display: inline-flex !important; align-items: center; gap: 8px; padding: 8px 11px; border: 1px solid rgba(255,255,255,.11); border-radius: 999px; color: rgba(255,255,255,.48) !important; font-size: .56rem !important; letter-spacing: 0 !important; text-transform: none; white-space: nowrap; }
.secure-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(61,220,132,.1); }
.smart-form { display: grid; gap: 24px; padding: 34px 32px 36px; }
.choice-fieldset legend { margin-bottom: 12px; color: rgba(255,255,255,.7); font-size: .68rem; font-weight: 700; }
.choice-fieldset legend span { color: var(--red-bright); }
.entity-choices { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
.entity-choice { cursor: pointer; }
.entity-choice input { position: absolute; opacity: 0; pointer-events: none; }
.entity-box { display: grid; min-height: 132px; align-content: center; padding: 16px; border: 1px solid rgba(255,255,255,.11); border-radius: 16px; background: rgba(255,255,255,.025); transition: border-color .25s ease, background .25s ease, transform .25s var(--ease); }
.entity-box i { margin-bottom: 13px; font-style: normal; font-size: 1.25rem; }
.entity-box strong { font-size: .75rem; }
.entity-box small { margin-top: 3px; color: rgba(255,255,255,.34); font-size: .59rem; }
.entity-choice input:checked + .entity-box { border-color: var(--red); background: rgba(225,6,0,.1); transform: translateY(-2px); }
.entity-choice input:focus-visible + .entity-box { outline: 2px solid #fff; outline-offset: 2px; }
.form-grid { display: grid; gap: 18px; }
.form-grid.two-cols { grid-template-columns: repeat(2, minmax(0,1fr)); }
.field { display: grid; gap: 8px; min-width: 0; }
.field > span { color: rgba(255,255,255,.65); font-size: .66rem; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 12px;
  outline: none;
  background: rgba(255,255,255,.035);
  color: #fff;
  font-size: .78rem;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 132px; padding-block: 14px; resize: vertical; line-height: 1.65; }
.field select { appearance: none; cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,.55) 50%), linear-gradient(135deg, rgba(255,255,255,.55) 50%, transparent 50%); background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 38px; }
.field select option { background: #151517; color: #fff; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.24); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(225,6,0,.75); background: rgba(255,255,255,.055); box-shadow: 0 0 0 4px rgba(225,6,0,.08); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #ff5952; }
.field-span-2, .field-full { grid-column: 1 / -1; }
.field-meta { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.field-meta > small:last-child { color: rgba(255,255,255,.3); font-size: .57rem; }
.field-meta b { font-weight: 700; }
.field-error { display: block; min-height: 0; color: #ff7771; font-size: .58rem; line-height: 1.35; }
.field-error:not(:empty) { margin-top: 2px; }
.file-field { display: flex; align-items: center; gap: 14px; padding: 16px; border: 1px dashed rgba(255,255,255,.16); border-radius: 15px; background: rgba(255,255,255,.018); cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.file-field:hover { border-color: rgba(225,6,0,.55); background: rgba(225,6,0,.04); }
.file-field input { position: absolute; opacity: 0; pointer-events: none; }
.file-icon { flex: 0 0 auto; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(225,6,0,.1); color: var(--red-bright); font-size: 1.2rem; }
.file-copy { min-width: 0; flex: 1; }
.file-copy strong, .file-copy small { display: block; }
.file-copy strong { font-size: .7rem; }
.file-copy small { margin-top: 3px; color: rgba(255,255,255,.34); font-size: .57rem; }
.file-name { max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: rgba(255,255,255,.42); font-size: .6rem; }
.consent-field { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.48); font-size: .62rem; cursor: pointer; }
.consent-field input { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 2px; accent-color: var(--red); }
.consent-error { margin-top: -18px; }
.button-submit { width: 100%; min-height: 56px; margin-top: 2px; }
.button-submit.is-loading { pointer-events: none; opacity: .8; }
.button-submit.is-loading .button-label, .button-submit.is-loading > i { opacity: 0; }
.button-spinner { position: absolute; width: 20px; height: 20px; border: 2px solid rgba(255,255,255,.32); border-top-color: #fff; border-radius: 50%; opacity: 0; animation: spinner .8s linear infinite; }
.button-submit.is-loading .button-spinner { opacity: 1; }
@keyframes spinner { to { transform: rotate(360deg); } }
.form-status { display: none; padding: 13px 15px; border-radius: 12px; font-size: .69rem; line-height: 1.5; }
.form-status.is-success { display: block; border: 1px solid rgba(61,220,132,.26); background: rgba(61,220,132,.08); color: #8ff0b9; }
.form-status.is-error { display: block; border: 1px solid rgba(255,89,82,.28); background: rgba(255,89,82,.08); color: #ff9c97; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.branch { background: var(--paper); color: var(--ink); }
.branch-intro { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; margin-bottom: 66px; }
.branch-layout { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: 26px; }
.branch-visual { position: sticky; top: 118px; border-radius: var(--radius-lg); overflow: hidden; }
.map-scene { position: relative; min-height: 560px; overflow: hidden; background: linear-gradient(145deg, #0a0a0b, #171719); perspective: 1000px; }
.map-grid { position: absolute; inset: -30%; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 50px 50px; transform: rotateX(64deg) rotateZ(-22deg) translateY(20%); mask-image: radial-gradient(circle, #000, transparent 65%); }
.map-scene::before { content: ""; position: absolute; width: 340px; height: 340px; left: 50%; top: 48%; border-radius: 50%; background: rgba(225,6,0,.15); filter: blur(80px); transform: translate(-50%,-50%); }
.map-core { position: absolute; left: 50%; top: 48%; width: 104px; height: 104px; overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 30px; box-shadow: 0 30px 70px rgba(0,0,0,.5), 0 0 55px rgba(225,6,0,.18); transform: translate(-50%,-50%) translateZ(40px); animation: mapFloat 5s ease-in-out infinite; }
.map-core img { width: 100%; height: 100%; object-fit: cover; }
.map-orbit { position: absolute; left: 50%; top: 48%; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; transform: translate(-50%,-50%) rotateX(62deg); }
.map-orbit-a { width: 300px; height: 300px; animation: mapSpin 16s linear infinite; }
.map-orbit-b { width: 440px; height: 440px; border-color: rgba(225,6,0,.24); animation: mapSpin 26s linear infinite reverse; }
.map-pin { position: absolute; z-index: 2; display: flex; align-items: center; gap: 8px; padding: 8px 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(7,7,7,.75); color: rgba(255,255,255,.75); font-size: .58rem; font-weight: 700; backdrop-filter: blur(12px); }
.map-pin i { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 6px rgba(225,6,0,.11); }
.pin-a { left: 13%; top: 25%; animation: floatA 4.5s ease-in-out infinite; }
.pin-b { right: 10%; bottom: 23%; animation: floatB 5.5s ease-in-out infinite; }
.branch-note { padding: 25px 26px; background: var(--red); color: #fff; }
.branch-note span { font-size: .56rem; font-weight: 800; letter-spacing: .16em; }
.branch-note p { margin: 10px 0 0; color: rgba(255,255,255,.72); font-size: .72rem; line-height: 1.65; }
@keyframes mapFloat { 0%,100% { transform: translate(-50%,-50%) translateZ(40px) translateY(0); } 50% { transform: translate(-50%,-50%) translateZ(55px) translateY(-10px); } }
@keyframes mapSpin { to { transform: translate(-50%,-50%) rotateX(62deg) rotateZ(360deg); } }
.form-shell-light { border-color: rgba(17,17,19,.11); background: #fff; box-shadow: 0 28px 70px rgba(35,25,20,.1); }
.form-shell-light .form-shell-head { border-color: rgba(17,17,19,.1); }
.form-shell-light .form-shell-head h3 { color: var(--ink); }
.secure-pill.dark { border-color: rgba(17,17,19,.1); color: rgba(17,17,19,.48) !important; }
.form-shell-light .field > span, .form-shell-light .choice-fieldset legend { color: #505057; }
.form-shell-light .field input, .form-shell-light .field select, .form-shell-light .field textarea { border-color: rgba(17,17,19,.11); background: #fafafa; color: #171719; }
.form-shell-light .field input::placeholder, .form-shell-light .field textarea::placeholder { color: rgba(17,17,19,.33); }
.form-shell-light .field select {
  background-image: linear-gradient(45deg, transparent 50%, rgba(17,17,19,.55) 50%), linear-gradient(135deg, rgba(17,17,19,.55) 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 38px;
}
.form-shell-light .field select option { background: #fff; color: #171719; }
.form-shell-light .field input:focus, .form-shell-light .field select:focus, .form-shell-light .field textarea:focus { border-color: rgba(225,6,0,.6); background: #fff; }
.form-shell-light .field-meta > small:last-child { color: rgba(17,17,19,.34); }
.form-divider { display: flex; align-items: center; gap: 12px; margin-top: 8px; padding-bottom: 13px; border-bottom: 1px solid rgba(17,17,19,.09); }
.form-divider:first-of-type { margin-top: 0; }
.form-divider span { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; background: rgba(225,6,0,.08); color: var(--red); font-size: .56rem; font-weight: 800; }
.form-divider strong { color: var(--ink); font-size: .71rem; }
.light-file { border-color: rgba(17,17,19,.16); background: #fafafa; }
.light-file:hover { border-color: rgba(225,6,0,.48); background: rgba(225,6,0,.025); }
.light-file .file-copy strong { color: var(--ink); }
.light-file .file-copy small, .light-file .file-name { color: rgba(17,17,19,.42); }
.dark-consent { color: rgba(17,17,19,.55); }

.faq { background: #efede8; color: var(--ink); }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 120px); align-items: start; }
.faq-copy { position: sticky; top: 130px; }
.faq-copy .section-title { font-size: clamp(2.5rem, 4.3vw, 4.7rem); }
.faq-copy .section-intro { margin-top: 26px; }
.faq-list { border-top: 1px solid rgba(17,17,19,.14); }
.faq-item { border-bottom: 1px solid rgba(17,17,19,.14); }
.faq-item summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 27px 0; cursor: pointer; font: 700 clamp(.95rem, 1.4vw, 1.15rem)/1.35 var(--font-display); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { position: relative; flex: 0 0 auto; width: 28px; height: 28px; border: 1px solid rgba(17,17,19,.16); border-radius: 50%; }
.faq-item summary i::before, .faq-item summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 1px; background: var(--ink); transform: translate(-50%,-50%); transition: transform .3s var(--ease); }
.faq-item summary i::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item[open] summary i { border-color: var(--red); background: var(--red); }
.faq-item[open] summary i::before { background: #fff; }
.faq-item[open] summary i::after { background: #fff; transform: translate(-50%,-50%) rotate(0); }
.faq-item p { max-width: 730px; margin: -5px 50px 28px 0; color: var(--ink-muted); font-size: .84rem; line-height: 1.78; }

.contact { overflow: hidden; background: #0a0a0b; }
.contact::before { content: ""; position: absolute; width: 820px; height: 820px; right: -340px; top: -260px; border-radius: 50%; background: rgba(225,6,0,.12); filter: blur(130px); }
.contact-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .86fr 1.14fr; align-items: start; gap: clamp(50px, 8vw, 110px); }
.contact-title { max-width: 700px; margin: 0; font: 700 clamp(2.8rem, 5.6vw, 6.2rem)/.98 var(--font-display); letter-spacing: -.06em; text-wrap: balance; }
.contact-title span { color: var(--red-bright); }
.contact-lead { max-width: 590px; margin: 28px 0 0; color: rgba(255,255,255,.55); font-size: .95rem; line-height: 1.8; }
.contact-email { position: relative; display: grid; gap: 6px; margin-top: 48px; padding: 22px 62px 22px 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-email small { color: rgba(255,255,255,.35); font-size: .56rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.contact-email strong { font: 700 clamp(.95rem, 2vw, 1.45rem)/1.2 var(--font-display); overflow-wrap: anywhere; }
.contact-email i { position: absolute; right: 0; top: 50%; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; font-style: normal; transform: translateY(-50%); transition: background .25s ease, transform .3s var(--ease); }
.contact-email:hover i { background: var(--red); border-color: var(--red); transform: translateY(-50%) rotate(45deg); }
.contact-form-wrap { border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); background: rgba(255,255,255,.035); backdrop-filter: blur(18px); }
.contact-form { padding: 34px; }

.site-footer { background: #050505; border-top: 1px solid rgba(255,255,255,.08); }
.footer-main { display: grid; grid-template-columns: .48fr .62fr 1fr; gap: 60px; padding: 70px 0 56px; }
.footer-brand .brand-logo { width: 56px; height: 56px; }
.footer-main > p { margin: 4px 0 0; color: rgba(255,255,255,.42); font-size: .78rem; line-height: 1.75; }
.footer-links { display: grid; grid-template-columns: .8fr 1.1fr 1.4fr; gap: 35px; }
.footer-links > div { display: grid; align-content: start; gap: 9px; }
.footer-links small { margin-bottom: 7px; color: rgba(255,255,255,.3); font-size: .56rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a, .footer-links span { color: rgba(255,255,255,.6); font-size: .68rem; transition: color .2s ease; overflow-wrap: anywhere; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0 26px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.28); font-size: .58rem; }
.footer-bottom b { font-weight: inherit; }

.toast { position: fixed; z-index: 3000; left: 50%; bottom: 24px; max-width: min(520px, calc(100% - 32px)); padding: 13px 18px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; background: rgba(15,15,17,.95); color: #fff; box-shadow: 0 20px 60px rgba(0,0,0,.35); font-size: .7rem; text-align: center; opacity: 0; visibility: hidden; transform: translate(-50%, 20px); transition: opacity .3s ease, visibility .3s ease, transform .3s var(--ease); backdrop-filter: blur(14px); }
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%,0); }
.toast.success { border-color: rgba(61,220,132,.28); }
.toast.error { border-color: rgba(255,89,82,.32); }
.back-top { position: fixed; z-index: 800; right: 22px; bottom: 22px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; background: rgba(9,9,10,.8); color: #fff; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .3s ease, visibility .3s ease, transform .3s var(--ease), background .2s ease; backdrop-filter: blur(10px); }
.back-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--red); }

.js .reveal-up, .js .reveal-scale { opacity: 0; transition: opacity .85s var(--ease), transform .85s var(--ease); transition-delay: var(--delay, 0ms); }
.js .reveal-up { transform: translateY(34px); }
.js .reveal-scale { transform: translateY(24px) scale(.96); }
.js .reveal-up.is-visible, .js .reveal-scale.is-visible { opacity: 1; transform: none; }

.tilt-card { --tilt-x: 0deg; --tilt-y: 0deg; transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); transition: transform .18s ease-out; }

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .nav-email { display: none; }
  .menu-toggle { display: block; }
  .hero-layout { grid-template-columns: 1fr .85fr; }
  .hero-visual { min-height: 560px; }
  .orbit-system { transform: translate(-50%,-50%) scale(.88) rotateX(var(--rx)) rotateY(var(--ry)); }
  .panel-a { left: -5%; }
  .panel-b { right: -6%; }
  .section-head-grid, .branch-intro { gap: 50px; }
  .form-layout { grid-template-columns: .68fr 1.32fr; gap: 36px; }
  .branch-layout { grid-template-columns: .62fr 1.38fr; }
  .footer-main { grid-template-columns: .4fr .55fr 1.05fr; gap: 38px; }
}

@media (max-width: 980px) {
  :root { --container: min(100% - 36px, 820px); }
  .section { padding: 105px 0; }
  .nav-wrap { height: 78px; }
  .hero { min-height: auto; padding: 145px 0 80px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-content { max-width: 820px; }
  .hero-visual { min-height: 610px; margin-top: 5px; }
  .hero-proof { justify-content: flex-start; }
  .scroll-indicator { display: none; }
  .section-head-grid, .branch-intro { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-featured, .service-dark { grid-column: span 1; }
  .service-card { min-height: 370px; }
  .ecosystem-layout { grid-template-columns: 1fr; }
  .ecosystem-visual { min-height: 520px; }
  .ecosystem-copy { max-width: 760px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-line { display: none; }
  .process-step h3 { margin-top: 65px; }
  .step-dot { display: none; }
  .form-layout, .branch-layout, .faq-layout, .contact-layout { grid-template-columns: 1fr; }
  .form-aside, .branch-visual, .faq-copy { position: relative; top: auto; }
  .form-aside { max-width: 760px; }
  .aside-card { max-width: 440px; }
  .branch-visual { display: grid; grid-template-columns: 1fr .55fr; }
  .map-scene { min-height: 420px; }
  .branch-note { display: grid; align-content: end; }
  .faq-copy { max-width: 690px; }
  .contact-copy { max-width: 760px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --container: calc(100% - 28px); --radius: 20px; --radius-lg: 24px; }
  .section { padding: 84px 0; }
  .nav-wrap { height: 72px; }
  .brand-logo { width: 43px; height: 43px; border-radius: 11px; }
  .brand-copy strong { font-size: .8rem; }
  .brand-copy small { font-size: .5rem; }
  .nav-actions .button { display: none; }
  .menu-toggle { width: 43px; height: 43px; }
  .hero { padding: 128px 0 68px; }
  .hero-title { font-size: clamp(2.75rem, 14vw, 4.3rem); }
  .hero-title span { -webkit-text-stroke-width: 1px; }
  .hero-lead { margin-top: 24px; font-size: .91rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .proof-line { display: none; }
  .hero-visual { min-height: 490px; margin-inline: -18px; }
  .orbit-system { width: 380px; height: 380px; transform: translate(-50%,-50%) scale(.78) rotateX(var(--rx)) rotateY(var(--ry)); }
  .floating-panel { min-width: 176px; padding: 11px 12px; }
  .panel-a { left: 3%; top: 13%; }
  .panel-b { right: 2%; bottom: 14%; }
  .floating-panel strong { font-size: .65rem; }
  .visual-caption { display: none; }
  .section-head { margin-bottom: 42px; }
  .section-title { font-size: clamp(2.15rem, 11.5vw, 3.65rem); }
  .section-intro { font-size: .88rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 345px; padding: 25px; }
  .service-icon { margin-bottom: 38px; }
  .stack-scene { height: 430px; transform: rotateX(57deg) rotateZ(-28deg) scale(.82); }
  .stack-card { inset: 60px 10px; padding: 32px; }
  .process-grid { grid-template-columns: 1fr; gap: 8px; }
  .process-step { min-height: 255px; }
  .process-step h3 { margin-top: 52px; }
  .form-shell-head { align-items: flex-start; padding: 23px 20px; }
  .secure-pill { display: none !important; }
  .smart-form { padding: 26px 20px 28px; }
  .entity-choices { grid-template-columns: 1fr; }
  .entity-box { min-height: 88px; grid-template-columns: 40px 1fr; align-items: center; align-content: initial; column-gap: 10px; }
  .entity-box i { grid-row: span 2; margin: 0; }
  .form-grid.two-cols { grid-template-columns: 1fr; }
  .field-span-2 { grid-column: auto; }
  .file-field { align-items: flex-start; flex-wrap: wrap; }
  .file-name { width: 100%; max-width: none; padding-left: 56px; }
  .branch-visual { grid-template-columns: 1fr; }
  .map-scene { min-height: 390px; }
  .branch-note { display: block; }
  .faq-item summary { padding: 22px 0; font-size: .94rem; }
  .faq-item p { margin-right: 20px; font-size: .78rem; }
  .contact-title { font-size: clamp(2.5rem, 13vw, 4.1rem); }
  .contact-form { padding: 25px 20px; }
  .footer-main { grid-template-columns: 1fr; padding-top: 52px; }
  .footer-links { grid-column: auto; grid-template-columns: 1fr 1fr; }
  .footer-links > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .back-top { right: 14px; bottom: 14px; }
}

@media (max-width: 430px) {
  .hero-proof { grid-template-columns: 1fr; }
  .panel-a { left: 0; }
  .panel-b { right: 0; }
  .floating-panel { min-width: 160px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-links > div:last-child { grid-column: auto; }
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow { display: none; }
  .tilt-card { transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .marquee-track { animation: none; }
  .js .reveal-up, .js .reveal-scale { opacity: 1; transform: none; }
  #heroCanvas { opacity: .35; }
}
/* Multilingual typography and right-to-left layout. */
html[lang="ar"] {
  --font-body: "Noto Naskh Arabic", Tahoma, Arial, serif;
  --font-display: "Amiri", "Noto Naskh Arabic", Tahoma, serif;
}
html[lang="ar"] body { font-size: 17px; line-height: 1.78; }
html[lang="ar"] .brand-copy strong,
html[lang="ar"] .loader-mark { font-family: "Syne", "Manrope", Arial, sans-serif; }
html[lang="ar"] .brand-copy small { font-family: "Noto Naskh Arabic", Tahoma, serif; letter-spacing: 0; }
html[lang="ar"] .hero-title,
html[lang="ar"] .section-title,
html[lang="ar"] .contact-title,
html[lang="ar"] .mobile-nav a,
html[lang="ar"] .service-card h3,
html[lang="ar"] .feature-row h3,
html[lang="ar"] .process-step h3,
html[lang="ar"] .form-shell-head h3,
html[lang="ar"] .faq-item summary,
html[lang="ar"] .contact-email strong { letter-spacing: 0; line-height: 1.2; }
html[lang="ar"] .hero-title { line-height: 1.08; }
html[lang="ar"] .eyebrow,
html[lang="ar"] .section-kicker,
html[lang="ar"] .brand-copy small,
html[lang="ar"] .form-shell-head > div > span,
html[lang="ar"] .branch-note span,
html[lang="ar"] .footer-links small { letter-spacing: .015em; }
html[lang="ar"] .stack-card strong,
html[lang="ar"] .stack-card small,
html[lang="ar"] .orbit-tag { letter-spacing: 0; }
html[lang="ar"] input,
html[lang="ar"] textarea,
html[lang="ar"] select { line-height: 1.65; }

html[dir="rtl"] body { text-align: start; }
html[dir="rtl"] .skip-link { inset: 10px 10px auto auto; }
html[dir="rtl"] .desktop-nav a::after { right: 0; left: 100%; }
html[dir="rtl"] .desktop-nav a:hover::after,
html[dir="rtl"] .desktop-nav a.is-active::after { left: 0; right: 0; }
html[dir="rtl"] .service-index { right: auto; left: 26px; }
html[dir="rtl"] .service-arrow { right: auto; left: 25px; }
html[dir="rtl"] .stack-card span { right: auto; left: 28px; }
html[dir="rtl"] .field select {
  background-position: 18px 22px, 13px 22px;
  padding-right: 14px;
  padding-left: 38px;
}
html[dir="rtl"] .form-shell-light .field select {
  background-position: 18px 22px, 13px 22px;
  padding-right: 14px;
  padding-left: 38px;
}
html[dir="rtl"] .contact-email { padding: 22px 0 22px 62px; }
html[dir="rtl"] .contact-email i { right: auto; left: 0; }
html[dir="rtl"] .faq-item p { margin-right: 0; margin-left: 50px; }
html[dir="rtl"] .back-top { right: auto; left: 22px; }
html[dir="rtl"] .nav-email,
html[dir="rtl"] .mobile-mail,
html[dir="rtl"] .contact-email strong,
html[dir="rtl"] input[type="email"],
html[dir="rtl"] input[type="url"],
html[dir="rtl"] input[type="tel"] { direction: ltr; text-align: left; }
html[dir="rtl"] .file-name { unicode-bidi: plaintext; }

@media (max-width: 680px) {
  .nav-wrap { gap: 10px; }
  .nav-actions { gap: 8px; }
  .language-switcher { gap: 2px; padding: 2px; }
  .language-switcher button { min-width: 27px; height: 27px; padding: 0 5px; font-size: .56rem; }
  .language-switcher button[lang="ar"] { font-size: .82rem; }
  html[lang="ar"] .hero-title { font-size: clamp(2.65rem, 13vw, 4.1rem); }
  html[dir="rtl"] .faq-item p { margin-left: 20px; margin-right: 0; }
  html[dir="rtl"] .back-top { left: 14px; right: auto; }
}

@media (max-width: 360px) {
  .brand-copy small { display: none; }
  .brand-copy { gap: 0; }
  .language-switcher button { min-width: 25px; padding-inline: 4px; }
}


/* ========================================================================== 
   ELITE CLICK — IMMERSIVE DIGITAL EXPERIENCE
   A progressive, performance-aware layer added on top of the core website.
   ========================================================================== */
:root {
  --future-red: #ff2f27;
  --future-red-soft: rgba(255,47,39,.16);
  --future-ice: #b9fbff;
  --future-ice-soft: rgba(185,251,255,.12);
  --future-intensity: 0;
  --page-progress: 0;
  --scroll-velocity: 0;
  --world-shift: 0px;
}

html.intro-open,
body.intro-open { overflow: hidden; }
body.experience-ready { overflow-x: clip; }
main,
.site-footer { position: relative; z-index: 2; }
main > section { transform-style: preserve-3d; }
.site-header { z-index: 1200; }
.noise { z-index: 1150; opacity: .028; }

/* Global future world */
.world-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: calc(.2 + var(--future-intensity) * .28);
  transition: opacity .8s ease;
}
.world-grid {
  position: fixed;
  z-index: 0;
  left: -25vw;
  right: -25vw;
  bottom: -44vh;
  height: 94vh;
  pointer-events: none;
  opacity: calc(.07 + var(--future-intensity) * .14);
  background-image:
    linear-gradient(rgba(255,47,39,.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to top, #000 2%, rgba(0,0,0,.88) 38%, transparent 86%);
  transform-origin: 50% 100%;
  transform: perspective(640px) rotateX(69deg) translate3d(0, var(--world-shift), 0);
  transition: opacity .6s ease;
}
.world-vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 48%, transparent 38%, rgba(0,0,0,.28) 78%, rgba(0,0,0,.58) 100%),
    linear-gradient(90deg, rgba(0,0,0,.25), transparent 12%, transparent 88%, rgba(0,0,0,.25));
}
.world-scanlines {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  opacity: .045;
  background: repeating-linear-gradient(180deg, transparent 0 3px, rgba(255,255,255,.2) 4px);
  mix-blend-mode: soft-light;
}

/* One-second 3D logo intro */
.page-loader.logo-intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  min-height: 100dvh;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(225,6,0,.13), transparent 28%),
    #050506;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  isolation: isolate;
  transition: opacity .18s ease, visibility .18s ease;
}
.page-loader.logo-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.035), transparent 42%);
  opacity: .8;
  pointer-events: none;
}
.page-loader.logo-intro.is-exiting {
  opacity: 0;
  visibility: hidden;
}
.logo-intro-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(42vw, 190px);
  aspect-ratio: 1;
  perspective: 1200px;
  transform-style: preserve-3d;
}
.logo-intro-card {
  width: clamp(108px, 14vw, 150px);
  aspect-ratio: 1;
  border-radius: 34px;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity, filter;
  animation: eliteLogoIntro3D .82s cubic-bezier(.18,.82,.22,1) both;
}
.logo-intro-card img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  backface-visibility: hidden;
  box-shadow:
    0 32px 100px rgba(0,0,0,.72),
    0 0 70px rgba(225,6,0,.32),
    0 0 0 1px rgba(255,255,255,.12);
}
@keyframes eliteLogoIntro3D {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translateZ(-260px) scale(.48) rotateX(-62deg) rotateY(-210deg) rotateZ(-16deg);
  }
  48% {
    opacity: 1;
    filter: blur(0);
    transform: translateZ(105px) scale(1.09) rotateX(12deg) rotateY(26deg) rotateZ(3deg);
  }
  72% {
    transform: translateZ(42px) scale(.97) rotateX(-5deg) rotateY(-10deg) rotateZ(-1deg);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateZ(0) scale(1) rotateX(0) rotateY(0) rotateZ(0);
  }
}
@media (max-width: 680px) {
  .logo-intro-stage { width: min(54vw, 170px); }
  .logo-intro-card { width: clamp(104px, 31vw, 132px); border-radius: 30px; }
}
@media (prefers-reduced-motion: reduce) {
  .logo-intro-card { animation: eliteLogoIntroReduced .08s ease both; }
}
@keyframes eliteLogoIntroReduced {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Futuristic scroll HUD */
.future-hud {
  position: fixed;
  z-index: 900;
  left: 19px;
  top: 50%;
  width: 78px;
  display: grid;
  justify-items: center;
  gap: 17px;
  padding: 14px 8px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(8,8,9,.42);
  color: rgba(255,255,255,.5);
  opacity: 0;
  transform: translate(-12px, -50%);
  pointer-events: none;
  transition: opacity .5s ease, transform .5s var(--ease);
  backdrop-filter: blur(15px);
}
body.experience-ready .future-hud { opacity: 1; transform: translate(0, -50%); }
.future-hud-brand { display: grid; justify-items: center; gap: 5px; }
.future-hud-brand i { width: 7px; height: 7px; border-radius: 50%; background: var(--future-red); box-shadow: 0 0 0 5px rgba(255,47,39,.08), 0 0 18px rgba(255,47,39,.65); animation: hudPulse 1.8s ease-in-out infinite; }
.future-hud-brand span { writing-mode: vertical-rl; font: 800 .46rem/1 "Manrope", sans-serif; letter-spacing: .15em; }
.future-hud-brand b { color: var(--future-red); font: 800 .52rem/1 "Syne", sans-serif; }
.future-hud-sector,
.future-hud-depth { display: grid; justify-items: center; gap: 4px; }
.future-hud small { color: rgba(255,255,255,.24); font: 800 .42rem/1 "Manrope", sans-serif; letter-spacing: .12em; }
.future-hud-sector strong { max-width: 60px; color: rgba(255,255,255,.68); font: 800 .44rem/1.25 "Manrope", sans-serif; letter-spacing: .07em; text-align: center; overflow-wrap: anywhere; }
.future-hud-depth { grid-template-columns: auto auto; column-gap: 2px; }
.future-hud-depth small { grid-column: 1 / -1; }
.future-hud-depth b { color: #fff; font: 800 .7rem/1 "Manrope", sans-serif; }
.future-hud-depth span { color: rgba(255,255,255,.3); font: 700 .42rem/1 "Manrope", sans-serif; }
.future-hud-progress { position: relative; width: 2px; height: 92px; overflow: hidden; background: rgba(255,255,255,.1); }
.future-hud-progress i { position: absolute; inset: 0; background: linear-gradient(180deg, var(--future-red), rgba(185,251,255,.75)); transform: scaleY(0); transform-origin: 50% 0; box-shadow: 0 0 12px rgba(255,47,39,.55); }
@keyframes hudPulse { 50% { opacity: .45; transform: scale(.72); } }

/* Hero: opening a portal into the Elite Click digital world */
.hero {
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 40%, rgba(225,6,0,.16), transparent 27%),
    radial-gradient(circle at 48% 105%, rgba(185,251,255,.035), transparent 35%),
    linear-gradient(180deg, rgba(3,3,4,.97), rgba(9,9,11,.95));
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: -35%;
  width: 130vw;
  height: 60vh;
  background: radial-gradient(ellipse at center, rgba(225,6,0,.16), transparent 62%);
  transform: translateX(-50%) perspective(800px) rotateX(67deg);
  filter: blur(20px);
  pointer-events: none;
}
.hero-grid-bg { opacity: calc(.18 + var(--future-intensity) * .16); background-size: 58px 58px; animation: heroGridDrift 18s linear infinite; }
.hero-tunnel {
  position: absolute;
  z-index: 0;
  right: -17vw;
  top: 50%;
  width: min(72vw, 960px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  perspective: 900px;
  transform-style: preserve-3d;
  opacity: .38;
  pointer-events: none;
  mask-image: radial-gradient(circle, #000 12%, rgba(0,0,0,.94) 42%, transparent 72%);
}
.hero-tunnel i {
  --tunnel-i: 0;
  position: absolute;
  inset: calc(var(--tunnel-i) * 5.3%);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18%;
  transform: rotate(45deg) translateZ(calc(var(--tunnel-i) * -38px));
  animation: heroTunnelPulse calc(7s + var(--tunnel-i) * .8s) ease-in-out infinite;
}
.hero-tunnel i:nth-child(1) { --tunnel-i: 0; border-color: rgba(255,47,39,.34); }
.hero-tunnel i:nth-child(2) { --tunnel-i: 1; animation-delay: -.8s; }
.hero-tunnel i:nth-child(3) { --tunnel-i: 2; animation-delay: -1.6s; border-color: rgba(185,251,255,.14); }
.hero-tunnel i:nth-child(4) { --tunnel-i: 3; animation-delay: -2.4s; }
.hero-tunnel i:nth-child(5) { --tunnel-i: 4; animation-delay: -3.2s; border-color: rgba(255,47,39,.25); }
.hero-tunnel i:nth-child(6) { --tunnel-i: 5; animation-delay: -4s; }
.hero-tunnel i:nth-child(7) { --tunnel-i: 6; animation-delay: -4.8s; }
.hero-data-streams { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; opacity: .22; }
.hero-data-streams span { position: absolute; top: -35%; width: 1px; height: 34%; background: linear-gradient(180deg, transparent, rgba(255,47,39,.72), transparent); animation: dataFall 5s linear infinite; }
.hero-data-streams span:nth-child(1) { left: 9%; animation-delay: -1s; }
.hero-data-streams span:nth-child(2) { left: 34%; animation-delay: -3.7s; height: 24%; }
.hero-data-streams span:nth-child(3) { left: 56%; animation-delay: -2.2s; }
.hero-data-streams span:nth-child(4) { left: 79%; animation-delay: -4.4s; height: 19%; background: linear-gradient(180deg, transparent, rgba(185,251,255,.5), transparent); }
.hero-data-streams span:nth-child(5) { left: 93%; animation-delay: -.3s; }
.future-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: rgba(255,255,255,.42);
  font: 800 .52rem/1 "Manrope", sans-serif;
  letter-spacing: .11em;
  backdrop-filter: blur(12px);
}
.future-chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--future-red); box-shadow: 0 0 15px rgba(255,47,39,.85); animation: hudPulse 1.6s ease-in-out infinite; }
.future-chip span { color: #fff; }
.future-chip b { padding-left: 9px; border-left: 1px solid rgba(255,255,255,.12); color: rgba(185,251,255,.52); font-weight: 800; }
.hero-title { text-shadow: 0 18px 70px rgba(0,0,0,.42); }
.hero-title span { background: linear-gradient(110deg, transparent 4%, rgba(255,255,255,.96) 38%, var(--future-red) 58%, transparent 92%); background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; animation: futureTitleScan 7s ease-in-out infinite; }
.hero-visual { --hero-depth: 0px; transform: translateZ(var(--hero-depth)); }
.portal-depth {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
  pointer-events: none;
}
.portal-depth i {
  --portal-depth-i: 0;
  position: absolute;
  inset: calc(var(--portal-depth-i) * 8%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  transform: translateZ(calc(var(--portal-depth-i) * -50px)) rotateX(73deg) rotateZ(calc(var(--portal-depth-i) * 20deg));
  animation: portalDepthSpin calc(12s + var(--portal-depth-i) * 2s) linear infinite;
}
.portal-depth i:nth-child(1) { --portal-depth-i: 0; border-color: rgba(255,47,39,.3); }
.portal-depth i:nth-child(2) { --portal-depth-i: 1; animation-direction: reverse; }
.portal-depth i:nth-child(3) { --portal-depth-i: 2; border-color: rgba(185,251,255,.14); }
.portal-depth i:nth-child(4) { --portal-depth-i: 3; animation-direction: reverse; }
.portal-depth i:nth-child(5) { --portal-depth-i: 4; border-color: rgba(255,47,39,.18); }
.hero-hud-grid { position: absolute; inset: 0; pointer-events: none; }
.hero-node { position: absolute; display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.35); font: 800 .48rem/1 "Manrope", sans-serif; letter-spacing: .09em; }
.hero-node i { width: 5px; height: 5px; border-radius: 50%; background: var(--future-red); box-shadow: 0 0 12px rgba(255,47,39,.8); }
.hero-node::after { content: ""; width: 44px; height: 1px; background: linear-gradient(90deg, rgba(255,255,255,.28), transparent); }
.hero-node.node-a { left: 7%; top: 23%; }
.hero-node.node-b { right: 4%; top: 34%; flex-direction: row-reverse; }
.hero-node.node-b::after { background: linear-gradient(270deg, rgba(255,255,255,.28), transparent); }
.hero-node.node-c { left: 1%; bottom: 27%; }
.hero-node.node-d { right: 10%; bottom: 17%; flex-direction: row-reverse; }
.hero-node.node-d::after { background: linear-gradient(270deg, rgba(255,255,255,.28), transparent); }
.core-mark { box-shadow: 0 35px 110px rgba(0,0,0,.66), 0 0 95px rgba(225,6,0,.28), inset 0 1px rgba(255,255,255,.12); }
.visual-halo { animation: haloBreathe 4.5s ease-in-out infinite; }
.floating-panel { border-color: rgba(255,255,255,.16); background: rgba(12,12,14,.7); box-shadow: 0 18px 55px rgba(0,0,0,.4), 0 0 24px rgba(225,6,0,.06); }
@keyframes heroGridDrift { to { background-position: 116px 58px; } }
@keyframes heroTunnelPulse { 0%,100% { opacity: .28; transform: rotate(45deg) translateZ(calc(var(--tunnel-i) * -38px)) scale(.92); } 50% { opacity: .85; transform: rotate(55deg) translateZ(calc(var(--tunnel-i) * -20px)) scale(1.05); } }
@keyframes dataFall { to { transform: translateY(440%); } }
@keyframes futureTitleScan { 0%,55% { background-position: 200% 0; } 80%,100% { background-position: -60% 0; } }
@keyframes portalDepthSpin { to { transform: translateZ(calc(var(--portal-depth-i) * -50px)) rotateX(73deg) rotateZ(360deg); } }
@keyframes haloBreathe { 50% { opacity: .62; transform: translate(-50%,-50%) scale(1.12); } }

/* Scroll portals between worlds */
.portal-divider {
  position: relative;
  z-index: 7;
  height: 1px;
  pointer-events: none;
  perspective: 900px;
}
.portal-divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(82vw, 980px);
  height: 130px;
  background:
    linear-gradient(90deg, transparent, rgba(255,47,39,.32), transparent) 50% 50% / 100% 1px no-repeat,
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255,255,255,.08) 43px 44px) 50% 50% / 100% 12px no-repeat;
  transform: translate(-50%, -50%) rotateX(70deg);
  mask-image: radial-gradient(ellipse, #000 0 35%, transparent 74%);
}
.portal-divider span {
  position: absolute;
  left: 50%;
  top: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,47,39,.42);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 35px rgba(225,6,0,.2);
  animation: dividerPulse 2.8s ease-in-out infinite;
}
.portal-divider span::before,
.portal-divider span::after { content: ""; position: absolute; inset: 7px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.portal-divider span::after { inset: 13px; border-color: rgba(185,251,255,.35); }
@keyframes dividerPulse { 50% { transform: translate(-50%, -50%) rotate(225deg) scale(1.25); opacity: .55; } }

/* Progressive 3D depth while scrolling */
.depth-node {
  --depth-x: 0px;
  --depth-y: 0px;
  --depth-z: 0px;
  --depth-rx: 0deg;
  --depth-ry: 0deg;
  transform-style: preserve-3d;
  will-change: transform;
}
body.experience-ready .js .depth-node.reveal-up.is-visible,
body.experience-ready .js .depth-node.reveal-scale.is-visible {
  transform: perspective(1500px) translate3d(var(--depth-x), var(--depth-y), var(--depth-z)) rotateX(var(--depth-rx)) rotateY(var(--depth-ry)) !important;
  transition: opacity .85s var(--ease), transform .25s linear, box-shadow .4s ease, border-color .4s ease;
}
body.experience-ready .js .tilt-card.depth-node.reveal-up.is-visible,
body.experience-ready .js .tilt-card.depth-node.reveal-scale.is-visible,
body.experience-ready .tilt-card.depth-node:not(.reveal-up):not(.reveal-scale) {
  transform: perspective(1500px) translate3d(var(--depth-x), var(--depth-y), var(--depth-z)) rotateX(calc(var(--tilt-x) + var(--depth-rx))) rotateY(calc(var(--tilt-y) + var(--depth-ry))) !important;
}
body.experience-ready .depth-node:not(.reveal-up):not(.reveal-scale):not(.tilt-card) {
  transform: perspective(1500px) translate3d(var(--depth-x), var(--depth-y), var(--depth-z)) rotateX(var(--depth-rx)) rotateY(var(--depth-ry));
  transition: transform .25s linear;
}
.future-section { --section-phase: 0; isolation: isolate; }
.future-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: calc(.02 + var(--future-intensity) * .04);
  background: linear-gradient(104deg, transparent 35%, rgba(255,47,39,.28) 49.5%, rgba(185,251,255,.08) 50%, transparent 65%);
  transform: translateX(calc((var(--section-phase) - .5) * 32%));
  mix-blend-mode: screen;
}
.future-section > .container { position: relative; z-index: 2; }
.future-section.in-focus { --section-focus: 1; }

/* Surfaces become layered, luminous objects */
.service-card,
.process-step,
.feature-row,
.form-shell,
.contact-form-wrap,
.faq-item,
.aside-card {
  backface-visibility: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -40%;
  top: -50%;
  width: 36%;
  height: 210%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: rotate(18deg) translateX(-160%);
  transition: transform .85s var(--ease);
  pointer-events: none;
}
.service-card:hover::after { transform: rotate(18deg) translateX(520%); }
.service-card:hover { transform-style: preserve-3d; }
.service-card h3,
.service-card p,
.service-card ul,
.service-card .service-arrow,
.service-card .service-index { transform: translateZ(18px); }
.service-card .service-arrow { transform: translateZ(28px); }
.service-card:hover .service-arrow { transform: translateZ(28px) rotate(45deg); }
.process-step { border: 1px solid rgba(17,17,19,.09); border-top-color: rgba(225,6,0,.25); border-radius: 18px; box-shadow: 0 20px 50px rgba(20,15,15,.05); overflow: hidden; }
.process-step::before { content: ""; position: absolute; right: -55px; top: -55px; width: 120px; height: 120px; border: 1px solid rgba(225,6,0,.14); border-radius: 50%; box-shadow: 0 0 0 18px rgba(225,6,0,.025), 0 0 0 36px rgba(225,6,0,.018); }
.form-shell,
.contact-form-wrap { box-shadow: 0 42px 120px rgba(0,0,0,.34), 0 0 0 1px rgba(255,255,255,.025); }
.form-shell-light { box-shadow: 0 42px 110px rgba(35,25,20,.13), 0 0 0 1px rgba(255,255,255,.7); }
.form-shell::before,
.contact-form-wrap::before {
  content: "";
  position: absolute;
  z-index: 3;
  left: 28px;
  right: 28px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,47,39,.75), transparent);
  opacity: .58;
  pointer-events: none;
}
.form-shell { position: relative; }
.contact-form-wrap { position: relative; }
.feature-row { position: relative; }
.feature-row::after { content: ""; position: absolute; left: 0; bottom: -1px; width: calc(var(--row-progress, 0) * 100%); height: 1px; background: linear-gradient(90deg, var(--future-red), transparent); box-shadow: 0 0 12px rgba(255,47,39,.5); }
.faq-item { position: relative; transition: padding .35s var(--ease), background .35s ease; }
.faq-item:hover { padding-inline: 16px; background: rgba(255,255,255,.35); }

/* Make dark worlds more dimensional while preserving the brand */
.ecosystem,
.collaboration,
.contact { background-color: rgba(8,8,10,.96); }
.ecosystem::after,
.collaboration::after,
.contact::after { z-index: 0; }
.collaboration::before { opacity: .85; background-size: 56px 56px; transform: translateY(calc(var(--page-progress) * -70px)); }
.expertise,
.approach,
.branch,
.faq { box-shadow: 0 -40px 100px rgba(0,0,0,.12), 0 40px 100px rgba(0,0,0,.1); }
.marquee-section { box-shadow: 0 0 90px rgba(225,6,0,.08); }
.marquee-content i { text-shadow: 0 0 18px rgba(255,47,39,.7); }



/* ========================================================================== 
   ELITE CLICK MOBILE APP — INSTALLABLE AND RESPONSIVE
   ========================================================================== */
.mobile-app {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 150px;
  background:
    radial-gradient(circle at 78% 30%, rgba(225,6,0,.24), transparent 26%),
    radial-gradient(circle at 15% 84%, rgba(185,251,255,.055), transparent 28%),
    linear-gradient(145deg, #050506 0%, #0b0b0d 52%, #080809 100%);
  color: #fff;
}
.mobile-app::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -25%;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 66px 66px;
  transform: perspective(760px) rotateX(66deg) translateY(27%);
  transform-origin: 50% 52%;
  mask-image: radial-gradient(circle at 65% 50%, #000 0 32%, transparent 68%);
}
.mobile-app::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: -42%;
  width: 115vw;
  height: 72%;
  background: radial-gradient(ellipse at center, rgba(225,6,0,.19), transparent 62%);
  transform: translateX(-50%) perspective(800px) rotateX(66deg);
  filter: blur(22px);
  pointer-events: none;
}
.app-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 50%;
  pointer-events: none;
}
.app-orbit::before,
.app-orbit::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--future-red);
  box-shadow: 0 0 24px rgba(255,47,39,.9);
}
.app-orbit-a { right: -15vw; top: 8%; width: 55vw; aspect-ratio: 1; transform: rotateX(67deg); animation: appOrbit 19s linear infinite; }
.app-orbit-b { left: -18vw; bottom: -30%; width: 50vw; aspect-ratio: 1; border-style: dashed; opacity: .55; animation: appOrbit 26s linear infinite reverse; }
.app-orbit-a::before { left: 19%; top: 9%; }
.app-orbit-a::after { right: 15%; bottom: 12%; background: var(--future-ice); box-shadow: 0 0 22px rgba(185,251,255,.65); }
.app-orbit-b::before { right: 18%; top: 14%; }
.app-layout {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: clamp(54px, 7vw, 112px);
}
.app-copy { position: relative; z-index: 3; max-width: 640px; }
.app-copy .section-title { max-width: 620px; }
.app-copy .section-intro { max-width: 590px; color: rgba(255,255,255,.62); }
.app-benefits { display: grid; margin-top: 38px; border-top: 1px solid rgba(255,255,255,.1); }
.app-benefit {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.app-benefit > i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,47,39,.32);
  border-radius: 12px;
  background: rgba(225,6,0,.08);
  color: var(--future-red);
  font: 800 .58rem/1 "Manrope", sans-serif;
  font-style: normal;
}
.app-benefit div { display: grid; gap: 4px; }
.app-benefit strong { color: #fff; font-size: .94rem; }
.app-benefit span { color: rgba(255,255,255,.47); font-size: .78rem; line-height: 1.65; }
.app-downloads { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.store-button {
  position: relative;
  min-width: 244px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  color: #fff;
  text-align: start;
  overflow: hidden;
  box-shadow: inset 0 1px rgba(255,255,255,.05), 0 18px 50px rgba(0,0,0,.22);
  transition: transform .28s var(--ease), border-color .28s ease, background .28s ease, box-shadow .28s ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.store-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 24%, rgba(255,255,255,.13), transparent 70%);
  transform: translateX(-125%);
  transition: transform .7s var(--ease);
}
.store-button:hover {
  transform: translateY(-4px);
  border-color: rgba(255,47,39,.48);
  background: rgba(225,6,0,.1);
  box-shadow: 0 24px 70px rgba(225,6,0,.17), inset 0 1px rgba(255,255,255,.08);
}
.store-button:hover::before { transform: translateX(125%); }
.store-button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.store-button.is-ready { border-color: rgba(61,220,132,.46); box-shadow: 0 18px 50px rgba(61,220,132,.08); }
.store-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  background: rgba(0,0,0,.32);
}
.store-icon svg { width: 25px; height: 25px; }
.android-icon svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.apple-icon svg { fill: currentColor; stroke: none; }
.store-copy { position: relative; z-index: 1; display: grid; gap: 3px; }
.store-copy small { color: rgba(255,255,255,.44); font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.store-copy strong { color: #fff; font: 700 1rem/1.15 var(--font-display); letter-spacing: -.02em; }
.store-arrow { position: relative; z-index: 1; display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; color: rgba(255,255,255,.62); font-style: normal; }
.app-install-note { display: flex; align-items: center; gap: 9px; margin: 16px 0 0; color: rgba(255,255,255,.38); font-size: .68rem; }
.app-install-note span { color: var(--green); font-size: .62rem; text-shadow: 0 0 12px rgba(61,220,132,.8); }

.app-visual {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  perspective: 1450px;
  transform-style: preserve-3d;
  direction: ltr;
}
.app-rings { position: absolute; left: 50%; top: 50%; width: min(610px, 50vw); aspect-ratio: 1; transform: translate(-50%, -50%) rotateX(67deg); transform-style: preserve-3d; }
.app-rings i { position: absolute; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; animation: appRingSpin 18s linear infinite; }
.app-rings i:nth-child(1) { inset: 0; border-color: rgba(255,47,39,.22); }
.app-rings i:nth-child(2) { inset: 13%; animation-direction: reverse; animation-duration: 13s; }
.app-rings i:nth-child(3) { inset: 28%; border-style: dashed; border-color: rgba(185,251,255,.13); animation-duration: 9s; }
.app-rings i::before { content: ""; position: absolute; left: 12%; top: 8%; width: 6px; height: 6px; border-radius: 50%; background: var(--future-red); box-shadow: 0 0 20px rgba(255,47,39,.85); }
.phone-shadow { position: absolute; left: 50%; bottom: 6%; width: 420px; height: 90px; border-radius: 50%; background: rgba(225,6,0,.22); filter: blur(45px); transform: translateX(-50%) rotateX(66deg); }
.phone-device {
  position: absolute;
  width: 314px;
  height: 642px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  background: linear-gradient(145deg, #27272a, #050506 58%);
  box-shadow: 0 45px 120px rgba(0,0,0,.68), inset 0 1px rgba(255,255,255,.22), inset 0 -1px rgba(255,255,255,.06);
  transform-style: preserve-3d;
}
.phone-device::before { content: ""; position: absolute; inset: 5px; border: 1px solid rgba(255,255,255,.055); border-radius: 45px; pointer-events: none; }
.phone-device-front { z-index: 3; transform: rotateY(-12deg) rotateX(3deg) translate3d(30px, 0, 65px); animation: phoneFloat 5.8s ease-in-out infinite; }
.phone-device-back { z-index: 1; transform: rotateY(22deg) rotateZ(-7deg) translate3d(-120px, 18px, -35px); opacity: .62; background: linear-gradient(145deg, #161618, #050506 68%); }
.phone-camera { position: absolute; left: 24px; top: 24px; width: 82px; height: 82px; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: radial-gradient(circle at 29% 30%, #202024 0 9%, #050506 10% 17%, transparent 18%), radial-gradient(circle at 70% 32%, #202024 0 9%, #050506 10% 17%, transparent 18%), radial-gradient(circle at 48% 72%, #202024 0 9%, #050506 10% 17%, transparent 18%), #0b0b0d; box-shadow: inset 0 1px rgba(255,255,255,.1); }
.phone-back-logo { position: absolute; left: 50%; top: 50%; width: 82px; height: 82px; overflow: hidden; border-radius: 24px; opacity: .48; transform: translate(-50%, -50%); box-shadow: 0 0 70px rgba(225,6,0,.26); }
.phone-back-logo img { width: 100%; height: 100%; object-fit: cover; }
.phone-screen { position: absolute; inset: 8px; overflow: hidden; border-radius: 42px; background: linear-gradient(180deg, #111114, #08080a 55%, #0d0d10); color: #fff; padding: 18px 17px 14px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.04); }
.phone-screen::before { content: ""; position: absolute; left: 50%; top: 10px; width: 92px; height: 25px; border-radius: 999px; background: #020203; transform: translateX(-50%); z-index: 4; }
.phone-screen::after { content: ""; position: absolute; right: -48px; top: 80px; width: 190px; height: 190px; border-radius: 50%; background: rgba(225,6,0,.18); filter: blur(45px); pointer-events: none; }
.phone-status { position: relative; z-index: 5; display: flex; align-items: center; justify-content: space-between; padding: 0 8px; font: 700 .57rem/1 "Manrope", sans-serif; }
.phone-status > div { display: flex; align-items: center; gap: 4px; }
.phone-status i { display: block; width: 3px; height: 6px; border-radius: 1px; background: #fff; }
.phone-status i:nth-child(2) { height: 9px; }
.phone-status b { display: block; width: 13px; height: 7px; border: 1px solid #fff; border-radius: 2px; }
.phone-app-head { position: relative; z-index: 2; display: grid; grid-template-columns: 38px 1fr 30px; align-items: center; gap: 10px; margin-top: 27px; }
.phone-app-logo { width: 38px; height: 38px; overflow: hidden; border-radius: 12px; box-shadow: 0 8px 25px rgba(225,6,0,.24); }
.phone-app-logo img { width: 100%; height: 100%; object-fit: cover; }
.phone-app-head > div { display: grid; line-height: 1.15; }
.phone-app-head small { color: rgba(255,255,255,.42); font-size: .54rem; }
.phone-app-head strong { font-size: .72rem; }
.phone-app-head button { width: 30px; height: 30px; padding: 0; border: 1px solid rgba(255,255,255,.08); border-radius: 10px; background: rgba(255,255,255,.04); color: rgba(255,255,255,.58); font-size: .58rem; cursor: default; }
.phone-welcome { position: relative; z-index: 2; margin-top: 25px; padding: 19px 17px 21px; overflow: hidden; border: 1px solid rgba(255,47,39,.24); border-radius: 22px; background: linear-gradient(135deg, rgba(225,6,0,.88), rgba(92,0,0,.92)); box-shadow: 0 18px 50px rgba(225,6,0,.18); }
.phone-welcome::after { content: ""; position: absolute; right: -24px; top: -30px; width: 110px; height: 110px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 18px rgba(255,255,255,.04), 0 0 0 36px rgba(255,255,255,.025); }
.phone-welcome small { position: relative; z-index: 1; color: rgba(255,255,255,.58); font-size: .46rem; font-weight: 800; letter-spacing: .12em; }
.phone-welcome h3 { position: relative; z-index: 1; max-width: 200px; margin: 7px 0 0; font: 700 1.16rem/1.1 var(--font-display); letter-spacing: -.04em; }
.phone-welcome > span { display: block; width: 46px; height: 2px; margin-top: 14px; background: #fff; }
.phone-actions { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 12px; }
.phone-action { min-height: 124px; display: grid; align-content: start; gap: 5px; padding: 13px; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; background: rgba(255,255,255,.035); }
.phone-action > i { display: grid; place-items: center; width: 28px; height: 28px; margin-bottom: 7px; border: 1px solid rgba(255,255,255,.11); border-radius: 9px; color: var(--future-red); font-style: normal; font-size: .66rem; }
.phone-action strong { font-size: .61rem; line-height: 1.25; }
.phone-action small { color: rgba(255,255,255,.35); font-size: .46rem; line-height: 1.45; }
.phone-action-red { background: rgba(225,6,0,.075); border-color: rgba(255,47,39,.18); }
.phone-services-head { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; margin-top: 20px; }
.phone-services-head strong { font-size: .66rem; }
.phone-services-head span { color: var(--future-red); font-size: .49rem; }
.phone-services { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-top: 10px; }
.phone-services i { display: grid; place-items: center; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.07); border-radius: 13px; background: rgba(255,255,255,.035); color: rgba(255,255,255,.64); font: 800 .48rem/1 "Manrope", sans-serif; font-style: normal; }
.phone-nav { position: absolute; z-index: 4; left: 16px; right: 16px; bottom: 12px; display: grid; grid-template-columns: repeat(3, 1fr); padding: 8px 5px; border: 1px solid rgba(255,255,255,.075); border-radius: 17px; background: rgba(9,9,11,.86); backdrop-filter: blur(14px); }
.phone-nav span { display: grid; justify-items: center; gap: 3px; color: rgba(255,255,255,.32); }
.phone-nav i { font-style: normal; font-size: .72rem; }
.phone-nav small { font-size: .43rem; }
.phone-nav .is-active { color: #fff; }
.phone-nav .is-active i { color: var(--future-red); }
.app-floating-card { position: absolute; z-index: 5; display: flex; align-items: center; gap: 10px; min-width: 190px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 17px; background: rgba(10,10,12,.72); box-shadow: 0 20px 55px rgba(0,0,0,.42); backdrop-filter: blur(16px); animation: appCardFloat 4.8s ease-in-out infinite; }
.app-floating-card > span { display: grid; place-items: center; min-width: 36px; height: 36px; padding: 0 5px; border: 1px solid rgba(255,47,39,.28); border-radius: 11px; background: rgba(225,6,0,.08); color: var(--future-red); font: 800 .62rem/1 "Manrope", sans-serif; }
.app-floating-card div { display: grid; gap: 2px; }
.app-floating-card small { color: rgba(255,255,255,.36); font-size: .48rem; }
.app-floating-card strong { font-size: .66rem; }
.app-floating-card-a { left: 0; top: 21%; }
.app-floating-card-b { right: -2%; bottom: 20%; animation-delay: -2.3s; }

/* Install instructions sheet */
.install-sheet { position: fixed; inset: 0; z-index: 12000; display: grid; place-items: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility .28s ease; }
.install-sheet[hidden] { display: none; }
.install-sheet.is-open { opacity: 1; visibility: visible; }
.install-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(0,0,0,.78); backdrop-filter: blur(12px); cursor: pointer; }
.install-panel { position: relative; z-index: 1; width: min(540px, 100%); max-height: min(720px, calc(100dvh - 48px)); overflow: auto; padding: 30px; border: 1px solid rgba(255,255,255,.13); border-radius: 28px; background: linear-gradient(145deg, #151517, #080809 74%); box-shadow: 0 45px 140px rgba(0,0,0,.7), inset 0 1px rgba(255,255,255,.08); transform: translateY(18px) scale(.97); transition: transform .34s var(--ease); }
.install-sheet.is-open .install-panel { transform: none; }
.install-close { position: absolute; top: 18px; right: 18px; display: grid; place-items: center; width: 38px; height: 38px; padding: 0; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; background: rgba(255,255,255,.04); color: #fff; font-size: 1.15rem; }
.install-panel-head { display: flex; align-items: center; gap: 14px; padding-right: 45px; }
.install-logo { width: 58px; height: 58px; overflow: hidden; border-radius: 17px; box-shadow: 0 14px 42px rgba(225,6,0,.25); }
.install-logo img { width: 100%; height: 100%; object-fit: cover; }
.install-panel-head div { display: grid; gap: 3px; }
.install-panel-head small { color: var(--future-red); font-size: .58rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.install-panel-head h2 { margin: 0; font: 700 1.45rem/1.12 var(--font-display); letter-spacing: -.04em; }
.install-content { display: none; margin-top: 27px; }
.install-content.is-active { display: block; }
.install-content h3 { margin: 0 0 15px; color: rgba(255,255,255,.7); font-size: .82rem; }
.install-content ol { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.install-content li { display: grid; grid-template-columns: 42px minmax(0, 1fr); align-items: center; gap: 13px; padding: 13px; border: 1px solid rgba(255,255,255,.08); border-radius: 15px; background: rgba(255,255,255,.03); }
.install-content li b { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(255,47,39,.25); border-radius: 11px; color: var(--future-red); font: 800 .56rem/1 "Manrope", sans-serif; }
.install-content li span { color: rgba(255,255,255,.68); font-size: .76rem; line-height: 1.55; }
.install-secure { display: flex; align-items: center; gap: 9px; margin: 20px 0 0; color: rgba(255,255,255,.37); font-size: .67rem; }
.install-secure i { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: rgba(61,220,132,.1); color: var(--green); font-size: .65rem; font-style: normal; }
body.install-open { overflow: hidden; }

@keyframes appOrbit { to { transform: rotateX(67deg) rotateZ(360deg); } }
@keyframes appRingSpin { to { transform: rotate(360deg); } }
@keyframes phoneFloat { 0%,100% { transform: rotateY(-12deg) rotateX(3deg) translate3d(30px, 0, 65px); } 50% { transform: rotateY(-8deg) rotateX(1deg) translate3d(30px, -13px, 82px); } }
@keyframes appCardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

html[lang="ar"] .app-copy .section-title,
html[lang="ar"] .store-copy strong,
html[lang="ar"] .install-panel-head h2,
html[lang="ar"] .phone-welcome h3 { letter-spacing: 0; }
html[dir="rtl"] .install-close { right: auto; left: 18px; }
html[dir="rtl"] .install-panel-head { padding-right: 0; padding-left: 45px; }
html[dir="rtl"] .store-button { text-align: right; }

@media (max-width: 1100px) {
  .app-layout { grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr); gap: 38px; }
  .phone-device { width: 286px; height: 586px; border-radius: 46px; }
  .phone-screen { border-radius: 39px; }
  .app-visual { min-height: 660px; }
  .app-floating-card-a { left: -2%; }
  .app-floating-card-b { right: -4%; }
}
@media (max-width: 900px) {
  .mobile-app { padding-block: 112px; }
  .app-layout { grid-template-columns: 1fr; }
  .app-copy { max-width: 720px; }
  .app-copy .section-title,
  .app-copy .section-intro { max-width: 680px; }
  .app-visual { min-height: 680px; margin-top: 20px; }
  .app-rings { width: min(640px, 86vw); }
  .app-floating-card-a { left: 7%; }
  .app-floating-card-b { right: 5%; }
}
@media (max-width: 680px) {
  .mobile-app { padding-block: 92px; }
  .app-benefit { grid-template-columns: 42px minmax(0, 1fr); gap: 12px; }
  .app-benefit > i { width: 34px; height: 34px; }
  .app-downloads { display: grid; }
  .store-button { width: 100%; min-width: 0; }
  .app-visual { min-height: 590px; margin-inline: -8px; }
  .phone-device { width: 250px; height: 512px; border-radius: 40px; }
  .phone-screen { border-radius: 34px; padding: 15px 13px 12px; }
  .phone-screen::before { width: 76px; height: 21px; top: 8px; }
  .phone-device-front { transform: rotateY(-8deg) rotateX(2deg) translate3d(20px, 0, 45px); animation-name: phoneFloatMobile; }
  .phone-device-back { transform: rotateY(18deg) rotateZ(-7deg) translate3d(-85px, 16px, -20px); }
  .phone-app-head { margin-top: 22px; }
  .phone-welcome { margin-top: 18px; padding: 14px; }
  .phone-welcome h3 { font-size: .95rem; }
  .phone-action { min-height: 104px; padding: 10px; }
  .phone-services-head { margin-top: 13px; }
  .phone-nav { bottom: 9px; }
  .app-floating-card { min-width: 158px; padding: 10px; }
  .app-floating-card-a { left: 0; top: 18%; }
  .app-floating-card-b { right: 0; bottom: 16%; }
  .install-sheet { padding: 14px; align-items: end; }
  .install-panel { width: 100%; max-height: calc(100dvh - 28px); padding: 24px 18px 20px; border-radius: 26px 26px 18px 18px; }
  .install-panel-head h2 { font-size: 1.22rem; }
}
@media (max-width: 430px) {
  .app-visual { min-height: 535px; }
  .phone-device { width: 224px; height: 458px; border-radius: 36px; }
  .phone-screen { inset: 7px; border-radius: 30px; }
  .phone-actions { gap: 6px; }
  .phone-action { min-height: 92px; }
  .phone-services { gap: 5px; }
  .app-floating-card { min-width: 142px; border-radius: 14px; }
  .app-floating-card-a { left: -5px; }
  .app-floating-card-b { right: -5px; }
}
@keyframes phoneFloatMobile { 0%,100% { transform: rotateY(-8deg) rotateX(2deg) translate3d(20px, 0, 45px); } 50% { transform: rotateY(-5deg) rotateX(1deg) translate3d(20px, -9px, 58px); } }
@media (prefers-reduced-motion: reduce) {
  .app-orbit,
  .app-rings i,
  .phone-device-front,
  .app-floating-card { animation: none !important; }
}

/* Language and direction refinements for new interface */
html[lang="ar"] .future-chip,
html[lang="ar"] .future-hud-sector strong { letter-spacing: 0; }
html[dir="rtl"] .future-chip b { padding-left: 0; padding-right: 9px; border-left: 0; border-right: 1px solid rgba(255,255,255,.12); }
html[dir="rtl"] .future-hud { left: auto; right: 19px; }

/* Responsive performance profile */
@media (max-width: 1320px) {
  .future-hud { left: 8px; transform: translate(-16px, -50%) scale(.9); }
  body.experience-ready .future-hud { transform: translate(0, -50%) scale(.9); }
  html[dir="rtl"] .future-hud { left: auto; right: 8px; }
}
@media (max-width: 1180px) {
  .future-hud { display: none; }
  .hero-tunnel { right: -28vw; width: 90vw; }
}
@media (max-width: 980px) {
  .world-grid { opacity: .06; }
  .hero-tunnel { right: -45vw; top: 67%; opacity: .25; }
  .future-chip { margin-bottom: 14px; }
  .portal-depth { transform: translate(-50%, -50%) scale(.88); }
  .portal-divider::before { width: 96vw; }
}
@media (max-width: 680px) {
  .page-loader { padding: 18px; }
  .world-scanlines { opacity: .025; }
  .hero-tunnel { right: -80vw; width: 150vw; opacity: .2; }
  .hero-data-streams { opacity: .13; }
  .future-chip { max-width: 100%; flex-wrap: wrap; border-radius: 14px; line-height: 1.4; }
  .future-chip b { padding-left: 0; border-left: 0; }
  html[dir="rtl"] .future-chip b { padding-right: 0; border-right: 0; }
  .portal-depth { transform: translate(-50%, -50%) scale(.72); }
  .hero-hud-grid { opacity: .7; }
  .hero-node::after { width: 24px; }
  .portal-divider { display: none; }
  body.experience-ready .js .depth-node.reveal-up.is-visible,
  body.experience-ready .js .depth-node.reveal-scale.is-visible,
  body.experience-ready .depth-node:not(.reveal-up):not(.reveal-scale) {
    --depth-x: 0px !important;
    --depth-rx: 0deg !important;
    --depth-ry: 0deg !important;
  }
}
@media (max-width: 430px) {
  .language-switcher button { min-width: 27px; padding: 0 5px; }
  .intro-code span { max-width: 230px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .hero-node.node-b,
  .hero-node.node-c { display: none; }
}
@media (hover: none), (pointer: coarse) {
  .service-card::after { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .world-canvas,
  .world-grid,
  .world-scanlines,
  .hero-tunnel,
  .hero-data-streams,
  .portal-divider { display: none !important; }
  .page-loader::before { animation: none; }
  body.experience-ready .js .depth-node.reveal-up.is-visible,
  body.experience-ready .js .depth-node.reveal-scale.is-visible,
  body.experience-ready .depth-node { transform: none !important; }
}

/* Keep the fixed depth HUD outside the main content column. */
.future-hud { left: 8px; width: 60px; padding-inline: 5px; }
.future-hud-sector strong { max-width: 48px; font-size: .4rem; }
.future-hud-brand span { font-size: .42rem; }
html[dir="rtl"] .future-hud { left: auto; right: 8px; }
@media (max-width: 1320px) {
  .future-hud { left: 5px; }
  html[dir="rtl"] .future-hud { left: auto; right: 5px; }
}

/* Prevent direction changes from exposing off-canvas fixed effects on RTL/mobile. */
html {
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}
