:root {
  --bg: #0b1916;
  --panel: #11241f;
  --panel2: #183029;
  --accent: #c5ed83;
  --text: #f4f6f0;
  --muted: #a6b8ae;
  --line: #2a3e34;
  --font: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.7 var(--font);
  -webkit-font-smoothing: antialiased;
}
html[lang="ar"] {
  --font: "Noto Sans Arabic", sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a,
summary {
  touch-action: manipulation;
}
a,
button {
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
}
p {
  color: var(--muted);
  margin: 0 0 24px;
}
h1,
h2,
h3 {
  font-family: Manrope, var(--font);
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.045em;
}
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3 {
  font-family: var(--font);
  letter-spacing: 0;
  line-height: 1.5;
}
h1 {
  font-size: clamp(48px, 5.5vw, 82px);
}
h2 {
  font-size: clamp(34px, 4vw, 58px);
}
h3 {
  font-size: 22px;
  letter-spacing: -0.025em;
}
em {
  font-style: normal;
  color: var(--accent);
}
.wrap {
  width: min(1280px, calc(100% - 100px));
  margin-inline: auto;
}
.section {
  padding-block: 112px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.9px;
  color: var(--accent);
  margin-bottom: 27px;
}
html[lang="ar"] .eyebrow {
  letter-spacing: 0;
  font-size: 12px;
}
.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px #c5ed8340;
  flex-shrink: 0;
}
.button {
  background: var(--accent);
  color: #142219;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  padding: 15px 23px;
  border: 1px solid var(--accent);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.button:hover {
  background: #dbffad;
  transform: translateY(-2px);
}
.button span {
  font-size: 21px;
  font-weight: 400;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--line);
  padding-block: 10px;
}
.text-link:hover {
  color: var(--accent);
}
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #0b1916f2;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.brand {
  display: flex;
  gap: 11px;
  align-items: center;
  direction: ltr;
  width: max-content;
}
.brand svg {
  width: 43px;
  height: 43px;
  color: var(--accent);
}
.brand b {
  font-family: Manrope, sans-serif;
  font-size: 28px;
  letter-spacing: -1.5px;
  line-height: 1.1;
}
.brand-dot {
  color: var(--accent);
}
.brand small {
  display: block;
  font-family: "Noto Sans Arabic", sans-serif;
  line-height: 1.3;
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
  color: var(--muted);
  margin-top: 4px;
}
nav {
  display: flex;
  gap: 27px;
  font-size: 12px;
}
nav a:hover {
  color: var(--accent);
}
.nav-actions {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav-actions .button {
  padding: 9px 16px;
  font-size: 12px;
}
.language {
  font-size: 12px;
}
.menu {
  display: none;
  color: var(--text);
  background: none;
  border: 0;
  font-size: 24px;
}
.skip {
  position: fixed;
  top: -100px;
  inset-inline-start: 20px;
  z-index: 100;
  padding: 12px;
  background: var(--accent);
  color: var(--bg);
}
.skip:focus {
  top: 10px;
}
.hero {
  overflow: hidden;
  background: radial-gradient(ellipse at 85% 48%, #24423366, transparent 55%);
}
.hero-grid {
  min-height: 685px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  position: relative;
}
.hero-copy {
  z-index: 2;
  padding-block: 60px;
}
.hero-copy .eyebrow {
  font-size: 10px;
  white-space: nowrap;
}
.hero-copy h1 {
  margin-bottom: 26px;
}
.hero-copy > p {
  max-width: 400px;
  font-size: 17px;
}
.hero-actions {
  display: flex;
  gap: 27px;
  align-items: center;
  margin-top: 35px;
}
.hero-foot {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #829b8e;
  font-size: 11px;
  margin-top: 70px;
}
.tiny-mark {
  font-size: 26px;
  color: var(--accent);
}
.hero-art {
  position: relative;
  height: 550px;
  direction: ltr;
  margin-inline-start: -50px;
}
.hero-art img {
  position: absolute;
  top: 85px;
  left: -30px;
  width: 760px;
  max-width: none;
  filter: drop-shadow(0 30px 30px #0007);
  z-index: 2;
}
.orbit {
  border: 1px solid #7c9e6833;
  border-radius: 50%;
  position: absolute;
  transform: rotate(-20deg);
}
.orbit-one {
  width: 610px;
  height: 350px;
  top: 112px;
  left: 0;
}
.orbit-two {
  width: 730px;
  height: 455px;
  top: 58px;
  left: -52px;
}
.coordinate {
  position: absolute;
  top: 52px;
  left: 220px;
  font: 10px monospace;
  color: #789180;
  letter-spacing: 2px;
}
.art-label {
  position: absolute;
  top: 130px;
  left: 120px;
  color: #91b4821a;
  font: 800 68px Manrope;
  letter-spacing: 4px;
}
.art-label span {
  display: block;
  font: 9px monospace;
  letter-spacing: 9px;
  color: #72947566;
  text-align: center;
}
.vehicle-tag {
  position: absolute;
  bottom: 39px;
  left: 160px;
  display: flex;
  gap: 14px;
  padding: 15px 20px;
  background: #183027ed;
  border: 1px solid #4d6553;
  border-radius: 6px;
  z-index: 3;
  box-shadow: 0 10px 40px #0005;
  min-width: 230px;
}
.vehicle-tag b {
  display: block;
  font-size: 12px;
  font-weight: 500;
}
.vehicle-tag small {
  font-size: 10px;
  color: var(--muted);
}
.vehicle-tag .dot {
  margin-top: 8px;
}
.vehicle-tag > span {
  margin-left: auto;
  color: var(--accent);
  font-size: 24px;
}
.art-number {
  position: absolute;
  bottom: 0;
  right: 20px;
  color: #7d9587;
  font: 10px monospace;
  letter-spacing: 2px;
}
.capabilities {
  border-block: 1px solid var(--line);
  background: #11221b;
}
.capabilities > .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 25px;
}
.capabilities span {
  font-size: 12px;
  color: #becdc2;
  display: flex;
  align-items: center;
  gap: 16px;
}
.capabilities i {
  color: var(--accent);
  font-size: 18px;
  font-style: normal;
}
.section-intro {
  max-width: 600px;
}
.section-intro p {
  max-width: 500px;
  margin-top: 25px;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 85px;
  margin-top: 35px;
}
.device-art {
  position: relative;
  isolation: isolate;
}
.device-art img {
  position: relative;
  filter: drop-shadow(0 0 30px #719c5a18);
}
.device-ring {
  position: absolute;
  inset: 10%;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: rotate(-20deg);
}
.device-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin: 0 auto;
  color: var(--accent);
  font: 10px monospace;
  letter-spacing: 2px;
}
.steps article {
  display: flex;
  gap: 25px;
  padding-block: 25px;
  border-bottom: 1px solid var(--line);
}
.steps article > span {
  font: 12px monospace;
  color: var(--accent);
  padding-top: 5px;
}
.steps h3 {
  font-size: 19px;
  margin-bottom: 12px;
}
.steps p {
  font-size: 14px;
  margin: 0;
}
.platform {
  background: #10211b;
  border-block: 1px solid var(--line);
}
.split-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 50px;
}
.split-heading > p {
  max-width: 350px;
  font-size: 15px;
  margin-bottom: 5px;
}
.showcase {
  padding: 38px 38px 15px;
  border: 1px solid #35493b;
  border-radius: 10px;
  background: linear-gradient(135deg, #213c2d, #132820);
}
.showcase-heading {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
.showcase-heading p {
  font-size: 12px;
  margin: 0;
  max-width: 290px;
}
.dashboard {
  background: #0b1916;
  border: 1px solid #415244;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 25px 45px #0004;
}
.dash-head,
.dash-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 22px;
  font-size: 11px;
}
.dash-head > span {
  font-size: 9px;
  color: var(--accent);
}
.dash-body {
  display: grid;
  grid-template-columns: 190px 1fr;
  border-block: 1px solid var(--line);
}
.dash-body aside {
  padding: 25px 20px;
  font-size: 10px;
}
.dash-body aside small {
  font-size: 10px;
  color: var(--muted);
}
.dash-body aside strong {
  display: block;
  font-size: 37px;
  font-weight: 500;
  line-height: 1.5;
}
.dash-body aside strong span {
  font-size: 10px;
  color: var(--accent);
}
.dash-body aside p {
  margin: 10px 0;
}
.dash-body hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 25px 0;
}
.map {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  direction: ltr;
}
.map svg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}
.city {
  position: absolute;
  top: 40%;
  left: 42%;
  font-size: 19px;
  color: #d9e2d0;
  letter-spacing: 2px;
}
.district {
  position: absolute;
  font-size: 10px;
  color: #a8b7a0;
}
.d1 {
  bottom: 17%;
  right: 16%;
}
.d2 {
  top: 16%;
  left: 13%;
}
.map-chip {
  position: absolute;
  right: 11%;
  top: 29%;
  background: #0b1916;
  padding: 10px 14px;
  border: 1px solid #627e52;
  border-radius: 5px;
  font: 10px monospace;
  box-shadow: 0 10px 20px #0005;
}
.map-chip b {
  margin-left: 15px;
  color: var(--accent);
}
.dash-foot {
  color: var(--muted);
  font-size: 10px;
}
.dash-foot b {
  color: #eef3e9;
  margin-inline-start: 12px;
  font-weight: 400;
}
.sample {
  font-size: 10px;
  margin: 13px 0 0;
  text-align: center;
  color: #a0b19f;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
}
.features article {
  padding: 30px;
  border-bottom: 1px solid var(--line);
  border-inline-end: 1px solid var(--line);
}
.features article:nth-child(3n) {
  border-inline-end: 0;
}
.feature-icon {
  display: flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 26px;
  margin-bottom: 24px;
}
.features h3 {
  font-size: 19px;
  margin-bottom: 12px;
}
.features p {
  font-size: 14px;
  margin: 0;
  max-width: 290px;
}
.mobile-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}
.mobile-section > div > p {
  max-width: 440px;
  margin-block: 25px;
}
.mobile-art {
  display: flex;
  justify-content: center;
  position: relative;
  isolation: isolate;
  background: radial-gradient(ellipse, #34572b50, transparent 65%);
}
.phone {
  width: 244px;
  min-height: 455px;
  background: #10241c;
  border: 6px solid #3e4c40;
  outline: 1px solid #718367;
  border-radius: 35px;
  padding: 22px 17px;
  transform: rotate(-8deg);
  box-shadow: 30px 35px 65px #0006;
  direction: ltr;
}
.phone-notch {
  width: 65px;
  height: 14px;
  border-radius: 10px;
  background: #08140f;
  margin: -10px auto 20px;
}
.phone-brand {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 20px;
}
.phone-brand svg {
  width: 25px;
  color: var(--accent);
}
.phone-brand b {
  font-size: 15px;
  letter-spacing: -1px;
}
.phone > small {
  display: block;
  color: var(--muted);
  font-size: 9px;
}
.phone > strong {
  font-size: 28px;
  font-weight: 500;
}
.phone > strong span {
  font-size: 10px;
  color: var(--accent);
}
.phone-map {
  height: 138px;
  background:
    linear-gradient(
      115deg,
      transparent 47%,
      #597a6755 48%,
      #597a6755 52%,
      transparent 53%
    ),
    repeating-linear-gradient(
      25deg,
      #203d2d 0 20px,
      #3b5340 21px 23px,
      #203d2d 24px 42px
    );
  border-radius: 5px;
  margin-block: 12px;
  position: relative;
  overflow: hidden;
}
.phone-map:after {
  content: "⌖";
  color: var(--accent);
  position: absolute;
  left: 50%;
  top: 25%;
  font-size: 35px;
}
.phone-row {
  font-size: 9px;
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
}
.phone-row span {
  float: right;
  color: var(--muted);
}
.phone .sample {
  font-size: 7px;
}
.mobile-orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 430px;
  height: 280px;
  transform: rotate(-45deg);
  top: 100px;
  z-index: -1;
}
.solutions {
  background: #dce4d4;
  color: #14241c;
}
.solutions .eyebrow {
  color: #526540;
}
.solutions p {
  color: #56634f;
}
.modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #a8b79e;
  border-radius: 6px;
  overflow: hidden;
}
.module {
  padding: 30px 25px;
  border-inline-end: 1px solid #a8b79e;
  transition: background 0.2s;
}
.module:last-child {
  border: 0;
}
.module:hover {
  background: #c5ed83;
}
.module > span {
  display: block;
  font: 11px monospace;
  color: #56684b;
  margin-bottom: 55px;
}
.module > span b {
  float: right;
  font-size: 20px;
}
.module h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.module p {
  font-size: 13px;
  margin: 0;
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.about > div > p {
  margin-top: 45px;
}
.about ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}
.about li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.about li span {
  color: var(--accent);
  margin-inline-end: 18px;
}
.faq {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 110px;
  padding-top: 65px;
}
.faq h2 {
  font-size: 34px;
  line-height: 1.25;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 15px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary span {
  color: var(--accent);
  font-size: 24px;
}
.faq details[open] summary span {
  transform: rotate(45deg);
}
.faq details p {
  font-size: 14px;
  margin: 18px 20px 0 0;
}
.cta {
  background: var(--accent);
  color: #183020;
  padding: 85px 0;
  position: relative;
  overflow: hidden;
}
.cta .wrap {
  position: relative;
  z-index: 1;
}
.cta .eyebrow {
  color: #4f6b37;
}
.cta h2 {
  font-size: 64px;
}
.cta p {
  color: #4f6243;
  margin-top: 25px;
}
.cta .button {
  background: #11271a;
  color: #eff7e8;
  border-color: #11271a;
}
.cta .button:hover {
  background: #244532;
}
.cta-symbol {
  position: absolute;
  width: 420px;
  right: 8%;
  top: 25px;
  transform: rotate(15deg);
  opacity: 0.12;
}
.cta-symbol svg {
  width: 100%;
}
[dir="rtl"] .cta-symbol {
  right: auto;
  left: 8%;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-block: 65px;
}
.footer-top p {
  font-size: 13px;
  margin-top: 20px;
}
.footer-top > div > a:not(.brand) {
  display: block;
  font-size: 13px;
  margin-top: 8px;
}
.footer-top small {
  color: var(--muted);
  display: block;
  margin-bottom: 20px;
  font-size: 11px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-block: 24px;
  font-size: 10px;
  color: var(--muted);
}
.footer-bottom > span:nth-child(2) {
  font-family: monospace;
  direction: ltr;
}
.contact > .text-link {
  margin-bottom: 50px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.contact h1 {
  font-size: 56px;
  margin-bottom: 25px;
}
.contact-grid > div > p {
  max-width: 400px;
}
.contact-benefits {
  border-top: 1px solid var(--line);
  padding-top: 30px;
  margin-top: 45px;
}
.contact-benefits h3 {
  margin-bottom: 25px;
}
.contact-benefits p {
  font-size: 14px;
}
form {
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
label {
  display: block;
  font-size: 12px;
  color: #d4e0d4;
  margin-bottom: 20px;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  background: #0b1916;
  color: var(--text);
  border: 1px solid #425646;
  border-radius: 4px;
  padding: 12px;
  margin-top: 9px;
  min-width: 0;
}
textarea {
  resize: vertical;
}
.form-note,
.privacy-note {
  font-size: 12px;
}
.form-note {
  border-inline-start: 2px solid var(--accent);
  padding-inline-start: 13px;
}
.privacy-note {
  margin: 18px 0 0;
}
.honeypot {
  position: absolute;
  left: -10000px;
}
#form-status {
  font-size: 13px;
  margin: 16px 0 0;
}
html[lang="ar"] .hero-copy h1 {
  font-size: clamp(40px, 4.4vw, 66px);
}
html[lang="ar"] .hero-foot {
  margin-top: 40px;
}
html[lang="ar"] .hero-art {
  margin-inline-start: 0;
}
html[lang="ar"] .hero-art img {
  left: -80px;
}
html[lang="ar"] .hero-actions {
  gap: 18px;
}
html[lang="ar"] .hero-copy .eyebrow {
  white-space: normal;
}
html[lang="ar"] .contact h1 {
  font-size: 44px;
}
@media (min-width: 1550px) {
  .hero-art img {
    width: 820px;
  }
  .hero-grid {
    min-height: 750px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 60px);
  }
  nav {
    gap: 16px;
  }
  .nav-actions {
    gap: 16px;
  }
  .hero-art img {
    width: 650px;
    left: -70px;
  }
  .hero-copy h1 {
    font-size: 60px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .button {
    padding: 13px 16px;
  }
  .hero-art {
    margin-inline-start: -70px;
  }
  .story-grid {
    gap: 35px;
  }
  .mobile-section,
  .about {
    gap: 60px;
  }
  .contact-grid {
    gap: 40px;
  }
  .module {
    padding: 25px 18px;
  }
  html[lang="ar"] nav {
    gap: 13px;
    font-size: 11px;
  }
  html[lang="ar"] .hero-actions {
    flex-wrap: wrap;
  }
}
@media (max-width: 850px) {
  .nav {
    height: 82px;
  }
  .nav-actions > .button {
    display: none;
  }
  .menu {
    display: block;
  }
  nav {
    display: none;
    position: absolute;
    top: 81px;
    left: 0;
    right: 0;
    background: #10241f;
    padding: 25px 30px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  nav.open {
    display: flex;
    flex-direction: column;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy {
    padding: 65px 0 0;
  }
  .hero-copy h1 {
    font-size: 72px;
  }
  .hero-copy > p {
    max-width: 450px;
  }
  .hero-art {
    height: 470px;
    margin: 0;
    max-width: 660px;
    width: 100%;
    justify-self: center;
  }
  .hero-art img {
    width: 700px;
    left: -20px;
    top: 30px;
  }
  .orbit-one {
    top: 45px;
  }
  .orbit-two {
    top: 0;
  }
  .coordinate {
    top: 20px;
  }
  .art-label {
    top: 65px;
  }
  .vehicle-tag {
    bottom: 8px;
    left: 45%;
  }
  .art-number {
    display: none;
  }
  .hero-foot {
    margin-top: 30px;
  }
  .hero {
    padding-bottom: 45px;
  }
  .capabilities > .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
  }
  .section {
    padding-block: 75px;
  }
  .split-heading {
    gap: 30px;
  }
  .split-heading > p {
    max-width: 260px;
  }
  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .features article {
    padding: 25px 17px;
  }
  .mobile-section {
    gap: 50px;
  }
  .mobile-orbit {
    width: 300px;
  }
  .modules {
    grid-template-columns: 1fr 1fr;
  }
  .module:nth-child(2) {
    border-inline-end: 0;
  }
  .module:nth-child(-n + 2) {
    border-bottom: 1px solid #a8b79e;
  }
  .module > span {
    margin-bottom: 30px;
  }
  .about {
    gap: 40px;
  }
  .faq {
    gap: 45px;
  }
  .cta h2 {
    font-size: 52px;
  }
  .cta-symbol {
    right: -100px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-benefits {
    display: none;
  }
  html[lang="ar"] .hero-copy h1 {
    font-size: 58px;
  }
  html[lang="ar"] .hero-art img {
    left: -20px;
  }
}
@media (max-width: 560px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .brand b {
    font-size: 25px;
  }
  .brand svg {
    width: 36px;
    height: 36px;
  }
  .brand small {
    font-size: 10px;
  }
  .nav-actions {
    gap: 21px;
  }
  .hero-copy {
    padding-top: 43px;
  }
  .hero-copy .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
    white-space: normal;
  }
  .hero-copy h1 {
    font-size: 51px;
    letter-spacing: -2.5px;
  }
  .hero-copy > p {
    font-size: 15px;
    max-width: 310px;
  }
  .hero-actions {
    gap: 17px;
    flex-wrap: wrap;
    margin-top: 25px;
  }
  .hero-actions .button {
    font-size: 12px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero-art {
    height: 320px;
  }
  .hero-art img {
    width: 470px;
    left: 50%;
    transform: translateX(-50%);
    top: 25px;
  }
  .orbit-one {
    width: 350px;
    height: 220px;
    top: 25px;
    left: 0;
  }
  .orbit-two {
    width: 420px;
    height: 280px;
    top: -5px;
    left: -30px;
  }
  .coordinate {
    top: 5px;
    left: 65px;
    font-size: 8px;
  }
  .art-label {
    font-size: 40px;
    top: 50px;
    left: 35px;
  }
  .art-label span {
    font-size: 7px;
    letter-spacing: 5px;
  }
  .vehicle-tag {
    left: auto;
    right: 10px;
    bottom: 0;
    min-width: 190px;
    padding: 11px 14px;
  }
  .vehicle-tag b {
    font-size: 10px;
  }
  .vehicle-tag small {
    font-size: 9px;
  }
  .hero-foot {
    margin-bottom: 25px;
  }
  .hero {
    padding-bottom: 30px;
  }
  .capabilities > .wrap {
    gap: 18px 10px;
    padding-block: 22px;
  }
  .capabilities span {
    font-size: 10px;
    gap: 8px;
  }
  .capabilities i {
    font-size: 15px;
  }
  .section {
    padding-block: 60px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 37px;
  }
  .section-intro p {
    font-size: 14px;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 15px;
  }
  .device-art {
    max-width: 380px;
    margin: auto;
  }
  .steps article {
    gap: 20px;
    padding-block: 22px;
  }
  .split-heading {
    display: block;
    margin-bottom: 30px;
  }
  .split-heading > p {
    max-width: none;
    margin-top: 22px;
    font-size: 14px;
  }
  .showcase {
    padding: 20px 12px 12px;
  }
  .showcase-heading {
    display: block;
    padding-inline: 8px;
  }
  .showcase-heading h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .showcase-heading p {
    font-size: 11px;
  }
  .dash-body {
    grid-template-columns: 1fr;
  }
  .dash-body aside {
    display: none;
  }
  .map {
    min-height: 240px;
  }
  .dash-head,
  .dash-foot {
    padding: 12px;
    font-size: 9px;
  }
  .dash-foot {
    gap: 15px;
    font-size: 8px;
  }
  .dash-foot b {
    margin-inline-start: 4px;
  }
  .sample {
    font-size: 8px;
  }
  .features {
    grid-template-columns: 1fr 1fr;
    margin-top: 25px;
  }
  .features article {
    padding: 22px 12px;
  }
  .features article:nth-child(3n) {
    border-inline-end: 1px solid var(--line);
  }
  .features article:nth-child(2n) {
    border-inline-end: 0;
  }
  .features h3 {
    font-size: 17px;
  }
  .features p {
    font-size: 12px;
  }
  .feature-icon {
    margin-bottom: 16px;
  }
  .mobile-section {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .mobile-art {
    padding: 20px 0;
  }
  .mobile-section > div:last-child {
    order: -1;
  }
  .mobile-section p {
    font-size: 14px;
  }
  .phone {
    width: 220px;
    min-height: 410px;
  }
  .phone-map {
    height: 110px;
  }
  .module {
    padding: 22px 16px;
  }
  .module h3 {
    font-size: 18px;
  }
  .module p {
    font-size: 12px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .about > div > p {
    margin-top: 0;
    font-size: 14px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .faq h2 {
    font-size: 30px;
  }
  .faq summary {
    font-size: 13px;
  }
  .faq details p {
    font-size: 13px;
  }
  .cta {
    padding-block: 60px;
  }
  .cta h2 {
    font-size: 43px;
  }
  .cta p {
    font-size: 14px;
    max-width: 270px;
  }
  .cta-symbol {
    width: 280px;
    right: -160px;
    top: 80px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-block: 45px;
  }
  .footer-top > div:first-child {
    grid-column: 1/-1;
  }
  .footer-top p {
    margin-top: 10px;
  }
  .footer-top small {
    font-size: 10px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    font-size: 9px;
    gap: 15px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .contact h1 {
    font-size: 42px;
  }
  .contact > .text-link {
    margin-bottom: 30px;
  }
  form {
    padding: 23px 18px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  html[lang="ar"] .hero-copy h1 {
    font-size: 40px;
    letter-spacing: 0;
  }
  html[lang="ar"] .hero-art img {
    left: 50%;
  }
  html[lang="ar"] h2 {
    font-size: 33px;
  }
  html[lang="ar"] .hero-copy .eyebrow {
    font-size: 9px;
  }
  html[lang="ar"] .features h3 {
    font-size: 16px;
  }
  html[lang="ar"] .hero-foot {
    margin-top: 25px;
  }
  html[lang="ar"] .contact h1 {
    font-size: 35px;
  }
  html[lang="ar"] .capabilities span {
    font-size: 10px;
  }
  [dir="rtl"] .cta-symbol {
    left: -160px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
.mobile-art {
  overflow: clip;
  padding: 35px 20px;
}
.honeypot {
  left: auto;
  inset-inline-start: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
@media (min-width: 851px) and (max-width: 1100px) {
  .hero-art { margin-inline-start: 0; z-index: 0; }
  .hero-art img { left: 0; width: 520px; top: 110px; }
  html[lang="ar"] .hero-art img { left: -60px; }
}
