:root {
  color-scheme: dark;
  --ink: #07080b;
  --ink-soft: #0d0f14;
  --panel: #11141a;
  --paper: #f0eee8;
  --paper-bright: #faf9f5;
  --text: #f6f7f9;
  --text-muted: #a7abb4;
  --dark-text: #101217;
  --dark-muted: #5f6269;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(10, 12, 16, 0.15);
  --signal: #dfff5a;
  --fleet: #8d64ff;
  --parts: #3b82f6;
  --mec: #fcdd09;
  --max-width: 1440px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --scroll-progress: 0%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: #60646d var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[lang="ar"] body {
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
}

::selection {
  background: var(--signal);
  color: var(--ink);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  inset-block-start: 1rem;
  inset-inline-start: 1rem;
  z-index: 1000;
  transform: translateY(-200%);
  border-radius: 999px;
  background: var(--signal);
  color: var(--ink);
  padding: 0.8rem 1rem;
  font-weight: 700;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

.page-grain {
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  z-index: 101;
  inset-block-start: 0;
  inset-inline: 0;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: var(--scroll-progress);
  height: 100%;
  background: linear-gradient(90deg, var(--fleet), var(--parts), var(--mec));
  box-shadow: 0 0 14px rgba(223, 255, 90, 0.5);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset-block-start: 0;
  inset-inline: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 82px;
  padding-inline: var(--gutter);
  border-block-end: 1px solid transparent;
  transition:
    min-height 300ms var(--ease-out),
    background-color 300ms ease,
    border-color 300ms ease,
    backdrop-filter 300ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  border-color: var(--line);
  background: rgba(7, 8, 11, 0.78);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.brand-lockup {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand-lockup strong {
  font-family: Bahnschrift, "Arial Black", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}

.brand-lockup span {
  margin-block-start: 0.28rem;
  color: var(--text-muted);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  color: #c4c7cd;
  font-size: 0.82rem;
  font-weight: 650;
}

.desktop-nav a,
.footer-links a,
.text-link {
  position: relative;
}

.desktop-nav a::after,
.footer-links a::after,
.text-link::after {
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: -0.4rem;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease-out);
}

[dir="rtl"] .desktop-nav a::after,
[dir="rtl"] .footer-links a::after,
[dir="rtl"] .text-link::after {
  transform-origin: left;
}

.desktop-nav a:hover::after,
.footer-links a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

[dir="rtl"] .desktop-nav a:hover::after,
[dir="rtl"] .footer-links a:hover::after,
[dir="rtl"] .text-link:hover::after {
  transform-origin: right;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.language-toggle {
  min-width: 76px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  transition: background-color 180ms ease;
}

.language-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 0.4rem 0.55rem 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  transition:
    color 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease;
}

[dir="rtl"] .header-cta {
  padding: 0.4rem 1rem 0.4rem 0.55rem;
}

.header-cta > span:last-child {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--signal);
  color: var(--ink);
}

.header-cta:hover {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--ink);
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: clamp(6.5rem, 11vh, 8.5rem) var(--gutter) 3rem;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 35%, rgba(55, 72, 118, 0.2), transparent 36%),
    linear-gradient(180deg, #07080b 0%, #08090d 70%, #0b0d12 100%);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  inset-block-start: 8%;
  width: min(86vw, 1160px);
  aspect-ratio: 2.6 / 1;
  transform: rotate(-6deg);
  animation: orbit-drift 18s ease-in-out infinite alternate;
}

.orbit-two {
  inset-block-start: 17%;
  width: min(68vw, 900px);
  aspect-ratio: 2.2 / 1;
  transform: rotate(7deg);
  animation: orbit-drift 15s ease-in-out -4s infinite alternate-reverse;
}

@keyframes orbit-drift {
  to {
    transform: rotate(3deg) translateY(18px);
  }
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  width: min(100%, 1120px);
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  color: var(--signal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow-dark {
  color: #3e4a13;
}

.hero h1 {
  margin: 0;
  font-family: Bahnschrift, "Arial Black", "Segoe UI", sans-serif;
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.85;
}

html[lang="ar"] .hero h1 {
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  font-size: clamp(3.2rem, 7.5vw, 7.5rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.hero-line {
  display: block;
}

.hero-line-accent {
  padding-block-end: 0.1em;
  background: linear-gradient(
    100deg,
    #f8f9fb 8%,
    #c7d4f8 46%,
    var(--signal) 94%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-intro {
  max-width: 690px;
  margin: 1.8rem auto 0;
  color: #b9bdc7;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-block-start: 2.25rem;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.6rem 0.65rem 0.6rem 1.35rem;
  font-size: 0.85rem;
  font-weight: 800;
  transition:
    transform 260ms var(--ease-out),
    box-shadow 260ms ease,
    background-color 260ms ease;
}

[dir="rtl"] .button {
  padding: 0.6rem 1.35rem 0.6rem 0.65rem;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--signal);
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(162, 194, 57, 0.15);
}

.button-primary:hover {
  box-shadow: 0 22px 55px rgba(181, 219, 55, 0.25);
}

.button-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--text);
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #d7d9de;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: min(100%, 1320px);
  margin-block-start: clamp(1.8rem, 3vw, 2.8rem);
  perspective: 1400px;
}

.hero-visual-frame {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1672 / 941;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: clamp(1.25rem, 2.4vw, 2.5rem);
  background: #080a0e;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.48);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 240ms ease-out;
}

.hero-visual-frame::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-visual-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.012);
}

.hero-visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 11, 0.1), transparent 40%),
    linear-gradient(0deg, rgba(7, 8, 11, 0.72), transparent 30%);
}

.hero-hotspot {
  --hotspot: var(--signal);
  position: absolute;
  z-index: 4;
  width: 52px;
  height: 52px;
}

.hero-hotspot.is-active {
  z-index: 7;
}

.hero-hotspot-fleet {
  --hotspot: var(--fleet);
  inset-block-start: 34%;
  left: 23%;
}

.hero-hotspot-mec {
  --hotspot: var(--mec);
  inset-block-start: 38%;
  left: 50%;
}

.hero-hotspot-parts {
  --hotspot: var(--parts);
  inset-block-start: 31%;
  left: 82%;
}

.hero-hotspot-trigger {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  outline: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.hero-hotspot-trigger::before,
.hero-hotspot-trigger::after {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

[dir="rtl"] .hero-hotspot-trigger::before,
[dir="rtl"] .hero-hotspot-trigger::after {
  transform: translate(50%, -50%);
}

.hero-hotspot-trigger::before {
  width: 30px;
  height: 30px;
  border: 1px solid color-mix(in srgb, var(--hotspot) 80%, white 20%);
  background: color-mix(in srgb, var(--hotspot) 16%, rgba(7, 8, 11, 0.8));
  box-shadow:
    0 0 0 8px color-mix(in srgb, var(--hotspot) 12%, transparent),
    0 0 24px color-mix(in srgb, var(--hotspot) 72%, transparent);
}

.hero-hotspot-trigger::after {
  width: 10px;
  height: 10px;
  background: white;
  box-shadow: 0 0 12px var(--hotspot);
}

.hero-hotspot-trigger > span {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: 32px;
  height: 32px;
  border: 1px solid var(--hotspot);
  border-radius: 50%;
  animation: hero-hotspot-pulse 1.9s ease-out infinite;
}

.hero-hotspot-trigger:hover::before,
.hero-hotspot-trigger[aria-expanded="true"]::before {
  background: var(--hotspot);
}

.hero-hotspot-trigger:hover::after,
.hero-hotspot-trigger[aria-expanded="true"]::after {
  background: var(--ink);
}

.hero-hotspot-trigger:focus-visible {
  outline: 3px solid white;
  outline-offset: 3px;
}

@keyframes hero-hotspot-pulse {
  0% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(0.8);
  }
  80%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.15);
  }
}

@keyframes hero-hotspot-pulse-rtl {
  0% {
    opacity: 0.9;
    transform: translate(50%, -50%) scale(0.8);
  }
  80%,
  100% {
    opacity: 0;
    transform: translate(50%, -50%) scale(2.15);
  }
}

[dir="rtl"] .hero-hotspot-trigger > span {
  animation-name: hero-hotspot-pulse-rtl;
}

.hero-hotspot-card {
  position: absolute;
  z-index: 6;
  inset-block-start: calc(100% + 12px);
  left: -8px;
  display: grid;
  width: min(285px, calc(100vw - 3rem));
  gap: 0.65rem;
  border: 1px solid color-mix(in srgb, var(--hotspot) 50%, rgba(255, 255, 255, 0.16));
  border-radius: 1.2rem;
  background: rgba(8, 10, 15, 0.94);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.54),
    0 0 34px color-mix(in srgb, var(--hotspot) 12%, transparent);
  padding: 1rem;
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-8px) scale(0.96);
  transform-origin: top left;
  transition:
    opacity 160ms ease,
    transform 200ms var(--ease-out),
    visibility 160ms linear;
  -webkit-backdrop-filter: blur(22px) saturate(125%);
  backdrop-filter: blur(22px) saturate(125%);
}

.hero-hotspot-mec .hero-hotspot-card {
  left: 50%;
  transform: translate(-50%, -8px) scale(0.96);
  transform-origin: top center;
}

[dir="rtl"] .hero-hotspot-mec .hero-hotspot-card {
  transform: translate(-50%, -8px) scale(0.96);
}

.hero-hotspot-parts .hero-hotspot-card {
  left: auto;
  right: -8px;
  transform-origin: top right;
}

.hero-hotspot.is-active .hero-hotspot-card {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.hero-hotspot-mec.is-active .hero-hotspot-card {
  transform: translate(-50%, 0) scale(1);
}

[dir="rtl"] .hero-hotspot-mec.is-active .hero-hotspot-card {
  transform: translate(-50%, 0) scale(1);
}

.hero-hotspot-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8f949f;
  font-family: "Courier New", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.hero-hotspot-card-topline button {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: #c8cbd1;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.hero-hotspot-brand {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 0.75rem;
}

.hero-hotspot-brand-fleet img {
  border-radius: 11px;
}

.hero-hotspot-brand strong {
  font-size: 1.45rem;
  letter-spacing: -0.045em;
}

.hero-hotspot-brand-logo img {
  width: 126px;
  height: auto;
}

.hero-hotspot-card > small {
  color: var(--hotspot);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-hotspot-card > p {
  margin: 0;
  color: #bec2ca;
  font-size: 0.78rem;
  line-height: 1.55;
}

.hero-hotspot-card > a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  margin-block-start: 0.15rem;
  border-radius: 999px;
  background: var(--hotspot);
  padding: 0.5rem 0.6rem 0.5rem 0.9rem;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-hotspot-card > a i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(7, 8, 11, 0.14);
  font-style: normal;
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-block-start: 2.25rem;
  color: #898e98;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  width: 44px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--signal);
  transform: translateX(-100%);
  animation: scroll-line 2s var(--ease-out) infinite;
}

[dir="rtl"] .scroll-cue i::after {
  transform: translateX(100%);
}

@keyframes scroll-line {
  55%,
  100% {
    transform: translateX(100%);
  }
}

.platforms {
  position: relative;
  z-index: 3;
  padding: clamp(6rem, 11vw, 10rem) var(--gutter);
  background: var(--paper);
  color: var(--dark-text);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 7vw, 8rem);
  max-width: var(--max-width);
  margin-inline: auto;
}

.section-heading h2,
.ecosystem h2,
.vision h2,
.final-cta h2 {
  margin: 0;
  font-family: Bahnschrift, "Arial Black", "Segoe UI", sans-serif;
  font-size: clamp(2.6rem, 5.6vw, 6.1rem);
  font-weight: 750;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

html[lang="ar"] .section-heading h2,
html[lang="ar"] .ecosystem h2,
html[lang="ar"] .vision h2,
html[lang="ar"] .final-cta h2 {
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.section-heading > div > p {
  max-width: 700px;
  margin: 1.5rem 0 0;
  color: var(--dark-muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max-width);
  margin: clamp(3.5rem, 7vw, 7rem) auto 0;
  overflow: hidden;
  border: 1px solid #1d2026;
  border-radius: clamp(1.6rem, 2.5vw, 2.8rem);
  background: #2b2e35;
  box-shadow: 0 38px 90px rgba(19, 22, 27, 0.17);
}

.product-card {
  --accent: var(--signal);
  position: relative;
  display: flex;
  min-height: 680px;
  flex-direction: column;
  overflow: hidden;
  background: #0c0e13;
  color: var(--text);
  padding: clamp(1.5rem, 2.6vw, 2.8rem);
  isolation: isolate;
  transition: background-color 380ms ease;
}

.product-card::before {
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: var(--accent);
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 500ms var(--ease-out);
}

[dir="rtl"] .product-card::before {
  transform-origin: right;
}

.product-card::after {
  position: absolute;
  z-index: -2;
  inset: auto -35% -25%;
  height: 55%;
  border-radius: 50%;
  content: "";
  background: color-mix(in srgb, var(--accent) 25%, transparent);
  filter: blur(90px);
  opacity: 0.25;
  transition:
    opacity 400ms ease,
    transform 600ms var(--ease-out);
}

.product-card:hover {
  background: #11141a;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover::after {
  opacity: 0.48;
  transform: translateY(-8%);
}

.product-fleet {
  --accent: var(--fleet);
}

.product-parts {
  --accent: var(--parts);
}

.product-mec {
  --accent: var(--mec);
}

.product-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #8d929d;
  font-family: "Courier New", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.product-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 14%, transparent);
}

.product-brand {
  display: flex;
  min-height: 118px;
  align-items: center;
  gap: 1rem;
  margin-block-start: clamp(3rem, 5vw, 5rem);
}

.product-brand-fleet img {
  width: 68px;
  height: 68px;
  border-radius: 19px;
}

.product-brand-fleet span,
.product-brand-parts span,
.product-brand-mec span {
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-brand h3 {
  margin: 0.35rem 0 0;
  font-size: clamp(2.3rem, 3.8vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.product-brand-parts,
.product-brand-mec {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.55rem;
}

.product-brand-parts img {
  width: min(100%, 220px);
  height: auto;
}

.product-brand-mec img {
  width: min(100%, 220px);
  height: auto;
}

.product-lead {
  position: relative;
  z-index: 1;
  min-height: 128px;
  margin: 1.8rem 0 0;
  color: #c7cad0;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.62;
}

.feature-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 2.1rem;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #9fa4ad;
  font-size: 0.78rem;
}

.feature-list li::before {
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--accent);
}

.product-launch {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-block-start: auto;
  border-block-start: 1px solid rgba(255, 255, 255, 0.15);
  padding-block-start: 1.4rem;
}

.product-launch > span {
  display: grid;
  gap: 0.35rem;
}

.product-launch small {
  color: #838892;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-launch strong {
  font-size: 0.82rem;
}

.product-launch i {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--accent) 52%, transparent);
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  font-style: normal;
  transition:
    transform 260ms var(--ease-out),
    background-color 260ms ease,
    color 260ms ease;
}

.product-launch:hover i {
  background: var(--accent);
  color: var(--ink);
  transform: translate(3px, -3px);
}

[dir="rtl"] .product-launch:hover i {
  transform: translate(-3px, -3px);
}

.product-watermark {
  position: absolute;
  z-index: -1;
  inset-inline-end: -0.06em;
  inset-block-end: -0.28em;
  color: rgba(255, 255, 255, 0.018);
  font-family: Bahnschrift, "Arial Black", sans-serif;
  font-size: 27rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.assistant-section {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 11vw, 10rem) var(--gutter);
  background:
    radial-gradient(circle at 16% 22%, rgba(223, 255, 90, 0.09), transparent 27%),
    radial-gradient(circle at 82% 68%, rgba(141, 100, 255, 0.13), transparent 34%),
    #07080b;
}

.assistant-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
  pointer-events: none;
}

.assistant-aura {
  position: absolute;
  inset-block-start: 12%;
  inset-inline-end: -10%;
  width: min(42vw, 620px);
  aspect-ratio: 1;
  border: 1px solid rgba(223, 255, 90, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 68px rgba(141, 100, 255, 0.025),
    0 0 0 136px rgba(59, 130, 246, 0.02);
  pointer-events: none;
}

.assistant-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(540px, 1.22fr);
  gap: clamp(3rem, 8vw, 8rem);
  max-width: var(--max-width);
  margin-inline: auto;
}

.assistant-intro {
  align-self: center;
}

.assistant-intro h2 {
  max-width: 720px;
  margin: 1.8rem 0 0;
  font-family: Bahnschrift, "Arial Black", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 5.2vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

html[lang="ar"] .assistant-intro h2 {
  font-family: Tahoma, "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.75rem, 4.7vw, 5.4rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.assistant-lead {
  max-width: 610px;
  margin: 1.8rem 0 0;
  color: #b8bdc7;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.75;
}

.assistant-character-stage {
  position: relative;
  display: grid;
  width: min(72%, 280px);
  margin: 1.15rem auto -1rem;
  isolation: isolate;
  place-items: center;
}

.assistant-character-stage::before {
  position: absolute;
  z-index: -1;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(68, 206, 255, 0.2),
    rgba(112, 71, 188, 0.08) 48%,
    transparent 72%
  );
  content: "";
  filter: blur(10px);
}

.assistant-character-stage img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.34));
}

.assistant-character-orbit {
  position: absolute;
  z-index: -1;
  width: 82%;
  aspect-ratio: 1;
  border: 1px solid rgba(95, 235, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 24px rgba(112, 71, 188, 0.025),
    0 0 0 48px rgba(252, 221, 9, 0.014);
}

.assistant-capabilities {
  display: grid;
  margin-block-start: 1.5rem;
  border-block: 1px solid var(--line);
}

.assistant-capabilities > div {
  display: grid;
  grid-template-columns: auto 6rem 1fr;
  align-items: center;
  gap: 0.8rem;
  min-height: 58px;
  border-block-end: 1px solid rgba(255, 255, 255, 0.07);
}

.assistant-capabilities > div:last-child {
  border-block-end: 0;
}

.assistant-capabilities strong {
  font-size: 0.78rem;
}

.assistant-capabilities small {
  color: #898f9a;
  font-size: 0.72rem;
}

.assistant-product-dot,
.assistant-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.assistant-product-dot-fleet {
  background: var(--fleet);
  box-shadow: 0 0 12px var(--fleet);
}

.assistant-product-dot-parts {
  background: var(--parts);
  box-shadow: 0 0 12px var(--parts);
}

.assistant-product-dot-mec {
  background: var(--mec);
  box-shadow: 0 0 12px var(--mec);
}

.assistant-boundary {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 590px;
  margin: 1.4rem 0 0;
  color: #7f8490;
  font-size: 0.72rem;
  line-height: 1.6;
}

.assistant-boundary > span:first-child {
  color: var(--signal);
}

.assistant-console {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2rem;
  background: rgba(12, 14, 20, 0.94);
  box-shadow:
    0 48px 120px rgba(0, 0, 0, 0.42),
    inset 0 1px rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  backdrop-filter: blur(24px) saturate(130%);
}

.assistant-console-header {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-block-end: 1px solid var(--line);
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.018);
}

.assistant-console-header > div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.assistant-console-header > div > div {
  display: grid;
  gap: 0.2rem;
}

.assistant-console-header strong {
  font-size: 0.86rem;
}

.assistant-console-header small {
  color: #838894;
  font-size: 0.68rem;
}

.assistant-live-dot {
  background: var(--signal);
  box-shadow: 0 0 14px rgba(223, 255, 90, 0.8);
}

.assistant-language-badge {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.45rem 0.65rem;
  color: #969ba5;
  font-family: "Courier New", monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.assistant-messages {
  display: flex;
  min-height: 390px;
  max-height: 480px;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1.35rem;
  scrollbar-color: #494e59 transparent;
}

.assistant-message {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 88%;
}

.assistant-message > div {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.45rem 1.1rem 1.1rem 1.1rem;
  background: #141820;
  padding: 0.9rem 1rem;
}

[dir="rtl"] .assistant-message > div {
  border-radius: 1.1rem 0.45rem 1.1rem 1.1rem;
}

.assistant-message strong {
  display: block;
  margin-block-end: 0.38rem;
  color: #c7cbd2;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.assistant-message p {
  margin: 0;
  color: #d8dbe0;
  font-size: 0.84rem;
  line-height: 1.7;
  white-space: pre-wrap;
}

.assistant-message-user {
  flex-direction: row-reverse;
  align-self: flex-end;
}

.assistant-message-user > div {
  border-color: rgba(223, 255, 90, 0.45);
  border-radius: 1.1rem 0.45rem 1.1rem 1.1rem;
  background: var(--signal);
}

[dir="rtl"] .assistant-message-user > div {
  border-radius: 0.45rem 1.1rem 1.1rem 1.1rem;
}

.assistant-message-user strong,
.assistant-message-user p {
  color: #15180d;
}

.assistant-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(223, 255, 90, 0.35);
  border-radius: 12px;
  background: rgba(223, 255, 90, 0.08);
  color: var(--signal);
  font-family: Bahnschrift, "Arial Black", sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.assistant-message-user .assistant-avatar {
  border-color: rgba(255, 255, 255, 0.18);
  background: #23262d;
  color: white;
}

.assistant-thinking-dots {
  display: flex;
  gap: 0.28rem;
  margin-block-start: 0.65rem;
}

.assistant-thinking-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--signal);
  animation: assistant-thinking 900ms ease-in-out infinite alternate;
}

.assistant-thinking-dots i:nth-child(2) {
  animation-delay: 150ms;
}

.assistant-thinking-dots i:nth-child(3) {
  animation-delay: 300ms;
}

@keyframes assistant-thinking {
  to {
    opacity: 0.25;
    transform: translateY(-3px);
  }
}

.assistant-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-block-start: 0.85rem;
}

.assistant-sources a {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  padding: 0.32rem 0.55rem;
  color: #aeb3bd;
  font-size: 0.62rem;
  font-weight: 750;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.assistant-sources a:hover {
  border-color: var(--signal);
  color: var(--signal);
}

.assistant-prompts {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0 1.25rem 0.95rem;
  scrollbar-width: none;
}

.assistant-prompts::-webkit-scrollbar {
  display: none;
}

.assistant-prompts button {
  flex: 0 0 auto;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  padding: 0.55rem 0.75rem;
  color: #aeb2ba;
  cursor: pointer;
  font-size: 0.68rem;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}

.assistant-prompts button:hover {
  border-color: rgba(223, 255, 90, 0.55);
  background: rgba(223, 255, 90, 0.06);
  color: var(--signal);
}

.assistant-composer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 0.75rem;
  margin-inline: 1.25rem;
  margin-block-end: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.2rem;
  background: #10131a;
  padding: 0.55rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.assistant-composer:focus-within {
  border-color: rgba(223, 255, 90, 0.66);
  box-shadow: 0 0 0 3px rgba(223, 255, 90, 0.08);
}

.assistant-composer textarea {
  width: 100%;
  max-height: 144px;
  resize: none;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0.72rem 0.7rem;
  color: var(--text);
  font: inherit;
  font-size: 0.82rem;
  line-height: 1.45;
}

.assistant-composer textarea::placeholder {
  color: #717682;
}

.assistant-composer button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 0.6rem;
  border: 0;
  border-radius: 0.85rem;
  background: var(--signal);
  padding: 0.65rem 0.85rem;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 800;
}

.assistant-composer button > span:last-child {
  font-size: 1rem;
}

.assistant-console button:disabled,
.assistant-console textarea:disabled {
  cursor: wait;
  opacity: 0.55;
}

.ecosystem {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 11vw, 10rem) var(--gutter);
  background:
    radial-gradient(
      circle at 90% 18%,
      rgba(141, 100, 255, 0.14),
      transparent 25%
    ),
    radial-gradient(
      circle at 10% 78%,
      rgba(59, 130, 246, 0.12),
      transparent 28%
    ),
    #08090d;
}

.ecosystem::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.16;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 30%,
    black 70%,
    transparent
  );
  pointer-events: none;
}

.ecosystem-intro {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 0.65fr;
  gap: clamp(2rem, 8vw, 9rem);
  max-width: var(--max-width);
  margin-inline: auto;
}

.ecosystem-intro .eyebrow {
  grid-column: 1 / -1;
}

.ecosystem-intro h2 {
  max-width: 900px;
}

.ecosystem-intro > p:last-child {
  align-self: end;
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.flow {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(50px, 0.18fr) 1fr minmax(50px, 0.18fr) 1fr;
  align-items: stretch;
  max-width: var(--max-width);
  margin: clamp(4rem, 8vw, 7rem) auto 0;
}

.flow-step {
  position: relative;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.025);
  padding: clamp(1.5rem, 2.7vw, 2.6rem);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.flow-number {
  color: #747984;
  font-family: "Courier New", monospace;
  font-size: 0.72rem;
}

.flow-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin-block-start: 3.3rem;
  border: 1px solid currentColor;
  border-radius: 20px;
  font-size: 1.8rem;
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.05);
}

.flow-icon-fleet {
  color: var(--fleet);
}

.flow-icon-parts {
  color: var(--parts);
}

.flow-icon-mec {
  color: var(--mec);
}

.flow-product {
  margin: 1.5rem 0 0;
  color: #8e939d;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.flow-stage {
  display: inline-flex;
  width: fit-content;
  margin: 0.65rem 0 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  padding: 0.38rem 0.55rem;
  color: #c7cbd2;
  font-family: "Courier New", monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.flow-step h3 {
  margin: 0.65rem 0 0;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.flow-step > p:last-child {
  margin: 1rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.flow-connector {
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible;
}

.flow-connector span {
  position: relative;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--fleet), var(--mec));
}

.flow-connector:last-of-type span {
  background: linear-gradient(90deg, var(--mec), var(--parts));
}

.flow-connector small {
  position: absolute;
  inset-block-start: calc(50% + 0.8rem);
  inset-inline-start: 50%;
  z-index: 2;
  width: max-content;
  max-width: 160px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #0b0e13;
  padding: 0.35rem 0.55rem;
  color: #aeb3bd;
  font-size: 0.56rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  transform: translateX(-50%);
}

[dir="rtl"] .flow-connector small {
  transform: translateX(50%);
}

.flow-connector span::after {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: white;
  box-shadow: 0 0 16px white;
  transform: translate(-50%, -50%);
  animation: connector-pulse 3s linear infinite;
}

[dir="rtl"] .flow-connector span::after {
  transform: translate(50%, -50%);
}

@keyframes connector-pulse {
  to {
    inset-inline-start: 100%;
  }
}

.flow-summary {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  color: var(--text);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
}

.principles {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max-width);
  margin: clamp(4rem, 7vw, 6rem) auto 0;
  border-block: 1px solid var(--line);
}

.principles > div {
  display: flex;
  min-height: 154px;
  align-items: baseline;
  justify-content: center;
  gap: 1rem;
  padding: 2.5rem 1rem;
}

.principles > div + div {
  border-inline-start: 1px solid var(--line);
}

.principles span {
  font-family: Bahnschrift, "Arial Black", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.principles p {
  max-width: 145px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vision {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(3rem, 10vw, 10rem);
  min-height: 800px;
  overflow: hidden;
  padding: clamp(6rem, 11vw, 10rem) var(--gutter);
  background: var(--signal);
  color: var(--dark-text);
}

.vision::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.12) 1px, transparent 1px);
  background-size: 58px 58px;
  pointer-events: none;
}

.vision-copy,
.vision-detail {
  position: relative;
  z-index: 2;
  align-self: start;
}

.vision h2 {
  max-width: 960px;
  margin-block-start: 2rem;
}

.vision-detail {
  align-self: end;
  padding-block-end: 2rem;
}

.vision-detail > p {
  margin: 0;
  color: #323625;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.75;
}

.button-dark {
  margin-block-start: 2rem;
  background: var(--ink);
  color: var(--text);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.button-dark .button-arrow {
  background: var(--signal);
  color: var(--ink);
}

.vision-mark {
  position: absolute;
  z-index: 1;
  inset-inline-start: -0.06em;
  inset-block-end: -0.29em;
  color: rgba(7, 8, 11, 0.08);
  font-family: Bahnschrift, "Arial Black", sans-serif;
  font-size: min(43vw, 42rem);
  font-weight: 900;
  letter-spacing: -0.12em;
  line-height: 1;
  pointer-events: none;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(3rem, 10vw, 10rem);
  padding: clamp(6rem, 11vw, 10rem) var(--gutter);
  background: #0a0b0f;
}

.final-cta-copy h2 {
  max-width: 850px;
  margin-block-start: 1.8rem;
}

.platform-shortcuts {
  align-self: center;
  border-block-start: 1px solid var(--line);
}

.platform-shortcuts a {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  border-block-end: 1px solid var(--line);
  padding-inline: 0.2rem;
  transition:
    color 200ms ease,
    padding 300ms var(--ease-out);
}

.platform-shortcuts a:nth-child(1):hover {
  color: var(--fleet);
}

.platform-shortcuts a:nth-child(2):hover {
  color: var(--mec);
}

.platform-shortcuts a:nth-child(3):hover {
  color: var(--parts);
}

.platform-shortcuts a:hover {
  padding-inline: 0.8rem;
}

.platform-shortcuts span {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 750;
  letter-spacing: -0.035em;
}

.platform-shortcuts small {
  margin-inline-end: 1rem;
  color: #777c86;
  font-family: "Courier New", monospace;
  font-size: 0.65rem;
  letter-spacing: 0;
}

.platform-shortcuts i {
  font-style: normal;
  font-size: 1.3rem;
  transition: transform 250ms var(--ease-out);
}

.platform-shortcuts a:hover i {
  transform: translate(4px, -4px);
}

[dir="rtl"] .platform-shortcuts a:hover i {
  transform: translate(-4px, -4px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem var(--gutter);
  border-block-start: 1px solid var(--line);
  background: #07080b;
}

.brand-footer img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.site-footer > p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  color: #7e838d;
  font-size: 0.7rem;
}

.footer-links {
  justify-self: end;
  display: flex;
  gap: 1.5rem;
  color: #a2a6ae;
  font-size: 0.72rem;
  font-weight: 700;
}

.preview-dialog {
  width: min(560px, calc(100vw - 2rem));
  max-height: calc(100dvh - 2rem);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.75rem;
  background: #101319;
  padding: 0;
  color: var(--text);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.72);
}

.preview-dialog::backdrop {
  background: rgba(3, 4, 7, 0.78);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.preview-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.35rem, 4vw, 2.25rem);
}

.preview-form-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--signal);
  font-family: "Courier New", monospace;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.preview-form-topline button {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1;
}

.preview-form h2 {
  margin: 0.8rem 0 0;
  font-family: Bahnschrift, "Arial Black", sans-serif;
  font-size: clamp(2rem, 6vw, 3.15rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.preview-form > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.preview-form label {
  display: grid;
  gap: 0.5rem;
  color: #d8dbe1;
  font-size: 0.75rem;
  font-weight: 700;
}

.preview-form input {
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.85rem;
  outline: none;
  background: rgba(255, 255, 255, 0.055);
  padding: 0.8rem 0.95rem;
  color: var(--text);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.preview-form input:focus {
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(223, 255, 90, 0.12);
}

.preview-form .preview-privacy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #8f949e;
  font-size: 0.7rem;
}

.preview-privacy > span:first-child {
  color: var(--signal);
  font-size: 0.55rem;
}

.preview-submit {
  display: flex;
  min-height: 3.5rem;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  margin-block-start: 0.35rem;
  border: 0;
  border-radius: 999px;
  background: var(--signal);
  padding: 0.8rem 1.2rem;
  color: var(--ink);
  font-weight: 800;
}

.launch-status {
  position: fixed;
  z-index: 150;
  inset-inline-start: 50%;
  inset-block-end: 1.5rem;
  max-width: calc(100vw - 2rem);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(13, 15, 20, 0.94);
  padding: 0.8rem 1.1rem;
  color: var(--text);
  font-size: 0.76rem;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition:
    opacity 180ms ease,
    transform 220ms var(--ease-out);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

[dir="rtl"] .launch-status {
  transform: translate(50%, 20px);
}

.launch-status.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

[dir="rtl"] .launch-status.is-visible {
  transform: translate(50%, 0);
}

.is-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 800ms var(--ease-out),
    transform 800ms var(--ease-out);
}

.is-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.is-ready .product-grid .product-card:nth-child(2),
.is-ready .flow .flow-step:nth-of-type(2) {
  transition-delay: 90ms;
}

.is-ready .product-grid .product-card:nth-child(3),
.is-ready .flow .flow-step:nth-of-type(3) {
  transition-delay: 180ms;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 560px;
  }

  .assistant-layout {
    grid-template-columns: 1fr;
  }

  .assistant-intro {
    max-width: 820px;
  }

  .assistant-console {
    width: min(100%, 820px);
  }

  .product-lead {
    min-height: auto;
  }

  .flow {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .flow-step {
    min-height: 310px;
  }

  .flow-connector {
    width: 100%;
    height: 58px;
    justify-self: center;
    justify-content: center;
  }

  .flow-connector span {
    position: absolute;
    inset-inline-start: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, var(--fleet), var(--mec));
  }

  .flow-connector:last-of-type span {
    background: linear-gradient(180deg, var(--mec), var(--parts));
  }

  .flow-connector small {
    inset-block-start: 50%;
    transform: translate(-50%, -50%);
  }

  [dir="rtl"] .flow-connector small {
    transform: translate(50%, -50%);
  }

  .flow-connector span::after {
    inset-block-start: 0;
    inset-inline-start: 50%;
    animation-name: connector-pulse-vertical;
  }

  @keyframes connector-pulse-vertical {
    to {
      inset-block-start: 100%;
    }
  }

  .vision,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .vision {
    min-height: 720px;
  }

  .vision-detail {
    max-width: 650px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 70px;
    gap: 0.6rem;
  }

  .site-header.is-scrolled {
    min-height: 62px;
  }

  .brand img {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand-lockup strong {
    font-size: 1.08rem;
  }

  .brand-lockup span {
    display: none;
  }

  .header-actions {
    gap: 0.25rem;
  }

  .language-toggle {
    min-width: 62px;
    min-height: 40px;
  }

  .header-cta {
    width: 40px;
    min-height: 40px;
    justify-content: center;
    border: 0;
    padding: 0;
  }

  .header-cta > span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .header-cta > span:last-child {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: auto;
    padding-block-start: 6.5rem;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 5.6rem);
    line-height: 0.9;
  }

  html[lang="ar"] .hero h1 {
    font-size: clamp(3rem, 13.5vw, 4.9rem);
  }

  .hero-intro {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1.25rem;
  }

  .hero-visual {
    width: calc(100% + 1rem);
  }

  .hero-visual-frame {
    aspect-ratio: 4 / 4.2;
  }

  .hero-visual-frame > img {
    height: auto;
    object-fit: contain;
    object-position: center top;
    transform: none;
  }

  .hero-hotspot {
    width: 48px;
    height: 48px;
  }

  .hero-hotspot-trigger {
    width: 48px;
    height: 48px;
  }

  .hero-hotspot-fleet {
    inset-block-start: 24%;
    left: 23%;
  }

  .hero-hotspot-mec {
    inset-block-start: 27%;
    left: 50%;
  }

  .hero-hotspot-parts {
    inset-block-start: 22%;
    left: 82%;
  }

  .hero-hotspot-card {
    width: min(244px, calc(100vw - 3.5rem));
    gap: 0.5rem;
    padding: 0.85rem;
  }

  .hero-hotspot-card > p {
    font-size: 0.72rem;
  }

  .scroll-cue {
    margin-block-start: 1.5rem;
  }

  .section-heading,
  .ecosystem-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-heading h2,
  .assistant-intro h2,
  .ecosystem h2,
  .vision h2,
  .final-cta h2 {
    font-size: clamp(2.6rem, 12vw, 4.1rem);
  }

  .product-card {
    min-height: 610px;
    padding: 1.5rem;
  }

  .assistant-section {
    padding-block: 5.5rem;
  }

  .assistant-layout {
    gap: 2.5rem;
  }

  .assistant-character-stage {
    width: min(66vw, 245px);
    margin-block-end: -0.5rem;
  }

  .assistant-capabilities > div {
    grid-template-columns: auto 5.3rem 1fr;
  }

  .assistant-console {
    border-radius: 1.4rem;
  }

  .assistant-messages {
    min-height: 360px;
    max-height: 440px;
    padding: 1rem;
  }

  .assistant-message {
    max-width: 94%;
  }

  .assistant-prompts {
    padding-inline: 1rem;
  }

  .assistant-composer {
    margin-inline: 1rem;
  }

  .product-brand {
    margin-block-start: 2.6rem;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .principles > div {
    min-height: 110px;
    justify-content: flex-start;
  }

  .principles > div + div {
    border-block-start: 1px solid var(--line);
    border-inline-start: 0;
  }

  .vision {
    min-height: 760px;
  }

  .vision-mark {
    font-size: 60vw;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer > p {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .footer-links {
    gap: 1rem;
  }
}

@media (max-width: 430px) {
  .product-brand-parts img,
  .product-brand-mec img {
    width: 180px;
  }

  .product-launch strong {
    font-size: 0.72rem;
  }

  .assistant-capabilities > div {
    grid-template-columns: auto 1fr;
    gap: 0.3rem 0.75rem;
    padding-block: 0.65rem;
  }

  .assistant-capabilities small {
    grid-column: 2;
  }

  .assistant-message {
    max-width: 100%;
  }

  .assistant-avatar {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .assistant-composer button > span:first-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-self: start;
  }

  .site-footer > p {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .is-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Persistent V12 Guide launcher and anchored conversation panel. */
.assistant-widget {
  position: fixed;
  z-index: 1200;
  right: clamp(0.8rem, 2.2vw, 2rem);
  bottom: clamp(0.65rem, 1.8vw, 1.5rem);
  width: clamp(118px, 10vw, 150px);
  height: clamp(136px, 11vw, 168px);
  direction: ltr;
  pointer-events: none;
}

.assistant-panel,
.assistant-launcher {
  pointer-events: auto;
}

.assistant-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.35rem);
  display: flex;
  width: min(520px, calc(100vw - 2rem));
  max-height: min(720px, calc(100dvh - 10rem));
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.96);
  transform-origin: right bottom;
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 180ms linear;
}

[dir="rtl"] .assistant-panel {
  direction: rtl;
}

.assistant-panel::after {
  position: absolute;
  right: 48px;
  bottom: -8px;
  width: 16px;
  height: 16px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.18);
  border-block-end: 1px solid rgba(255, 255, 255, 0.18);
  background: #0c0e14;
  content: "";
  transform: rotate(45deg);
}

.assistant-widget.is-open .assistant-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.assistant-panel .assistant-console-header {
  flex: 0 0 auto;
  border-radius: 2rem 2rem 0 0;
}

.assistant-panel-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.assistant-close {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: #b9bec8;
  cursor: pointer;
  font: inherit;
  font-size: 1.15rem;
  line-height: 1;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.assistant-close:hover,
.assistant-close:focus-visible {
  border-color: rgba(223, 255, 90, 0.6);
  background: rgba(223, 255, 90, 0.08);
  color: var(--signal);
}

.assistant-panel .assistant-messages {
  min-height: 320px;
  max-height: min(460px, 50vh);
  flex: 1 1 auto;
}

.assistant-launcher {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0;
  color: var(--text);
  cursor: pointer;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
}

.assistant-launcher::before {
  position: absolute;
  z-index: -2;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.3),
    rgba(112, 71, 188, 0.13) 48%,
    transparent 72%
  );
  content: "";
  filter: blur(7px);
  transition: transform 200ms ease;
}

.assistant-launcher-orbit {
  position: absolute;
  z-index: -1;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(95, 235, 255, 0.3);
  border-radius: 50%;
  box-shadow:
    0 0 0 10px rgba(112, 71, 188, 0.045),
    0 0 28px rgba(19, 201, 255, 0.16);
}

.assistant-launcher img {
  display: block;
  width: 90%;
  height: auto;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.48));
  transform: translateY(-4px);
  transition:
    filter 200ms ease,
    transform 200ms ease;
}

.assistant-launcher-label {
  position: absolute;
  right: 50%;
  bottom: 0;
  min-width: max-content;
  border: 1px solid rgba(223, 255, 90, 0.48);
  border-radius: 999px;
  background: rgba(10, 12, 17, 0.94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  padding: 0.42rem 0.72rem;
  color: var(--signal);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transform: translateX(50%);
}

.assistant-launcher:hover img,
.assistant-launcher:focus-visible img,
.assistant-widget.is-open .assistant-launcher img {
  filter: drop-shadow(0 18px 30px rgba(19, 201, 255, 0.28));
  transform: translateY(-9px) scale(1.035);
}

.assistant-launcher:hover::before,
.assistant-launcher:focus-visible::before,
.assistant-widget.is-open .assistant-launcher::before {
  transform: scale(1.12);
}

.assistant-launcher:focus-visible .assistant-launcher-orbit {
  outline: 3px solid rgba(223, 255, 90, 0.72);
  outline-offset: 5px;
}

@media (max-width: 600px) {
  .assistant-widget {
    right: 0.65rem;
    bottom: 0.55rem;
    width: 106px;
    height: 122px;
  }

  .assistant-panel {
    right: 0;
    bottom: calc(100% + 0.35rem);
    width: calc(100vw - 1.3rem);
    max-height: calc(100dvh - 8.5rem);
    border-radius: 1.4rem;
  }

  .assistant-panel .assistant-console-header {
    min-height: 68px;
    border-radius: 1.4rem 1.4rem 0 0;
    padding: 0.8rem 0.9rem;
  }

  .assistant-panel .assistant-messages {
    min-height: 180px;
    max-height: calc(100dvh - 22rem);
  }

  .assistant-panel::after {
    right: 35px;
  }

  .assistant-language-badge {
    display: none;
  }
}

@media (max-height: 600px) {
  .assistant-panel {
    max-height: calc(100dvh - 7.5rem);
  }

  .assistant-panel .assistant-messages {
    min-height: 110px;
    max-height: calc(100dvh - 19rem);
  }

  .assistant-panel .assistant-prompts {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .assistant-panel,
  .assistant-launcher img,
  .assistant-launcher::before {
    transition: none;
  }
}
