:root {
  --ink: #061a43;
  --muted: #5e6f8e;
  --blue: #0b5be8;
  --blue-deep: #003f9e;
  --cyan: #18d4de;
  --panel: rgba(255, 255, 255, .88);
  --line: rgba(10, 73, 154, .12);
  --shadow: 0 24px 70px rgba(0, 49, 116, .11);
  --soft-shadow: 0 16px 40px rgba(0, 68, 148, .08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { display: block; }

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 12%, rgba(24, 212, 222, .12), transparent 30%),
    radial-gradient(circle at 15% 88%, rgba(12, 92, 233, .09), transparent 34%),
    linear-gradient(180deg, #fbfdff 0%, #f5faff 54%, #fff 100%);
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .38;
  background-image: linear-gradient(rgba(4,73,151,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(4,73,151,.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.ambient { position: absolute; border-radius: 999px; filter: blur(14px); pointer-events: none; }
.ambient--one { width: 340px; height: 340px; left: -130px; top: 120px; background: rgba(34, 163, 255, .08); }
.ambient--two { width: 420px; height: 420px; right: -180px; bottom: 140px; background: rgba(24, 212, 222, .07); }

.container { width: min(1460px, calc(100% - 80px)); margin-inline: auto; position: relative; z-index: 2; }

.site-header {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  direction: ltr;
}

.brand { width: 255px; min-width: 190px; display: inline-flex; align-items: center; }
.brand img { width: 100%; height: 82px; object-fit: contain; object-position: left center; mix-blend-mode: multiply; }

.status-badge {
  direction: rtl;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid rgba(17, 113, 235, .14);
  color: #0f62dc;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 26px rgba(0, 76, 166, .08), inset 0 0 20px rgba(23, 193, 245, .06);
  border-radius: 999px;
  font-size: 14px;
  backdrop-filter: blur(14px);
}
.status-badge__icon { width: 22px; height: 22px; display: grid; place-items: center; }
.status-badge__icon svg { width: 22px; height: 22px; }

.hero {
  min-height: 475px;
  padding: 18px 0 10px;
  display: grid;
  grid-template-columns: minmax(430px, .82fr) minmax(650px, 1.2fr);
  gap: 34px;
  align-items: center;
  direction: ltr;
}

.hero-copy { direction: rtl; text-align: right; padding-inline: 8px 0; align-self: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: #497199; margin-bottom: 10px; }
.eyebrow::before { content: ""; width: 36px; height: 3px; border-radius: 99px; background: linear-gradient(90deg, var(--cyan), var(--blue)); }

.hero-copy h1 {
  margin: 0 0 24px;
  font-size: clamp(76px, 8vw, 126px);
  line-height: .84;
  letter-spacing: -5px;
  font-weight: 900;
  background: linear-gradient(180deg, #18cddf 4%, #0c7fed 42%, #0748c7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 18px rgba(5, 92, 220, .09));
}

.hero-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 2.65vw, 41px);
  line-height: 1.42;
  font-weight: 850;
  letter-spacing: -.8px;
}

.launch-note {
  margin: 26px 0 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #687995;
  font-size: 17px;
}
.launch-note > span { flex: 0 0 44px; height: 4px; border-radius: 99px; background: linear-gradient(90deg, var(--cyan), #0b78f0); }

.micro-proof { display: none; }

.hero-visual {
  direction: ltr;
  position: relative;
  height: 470px;
  border-radius: 40px;
  isolation: isolate;
  perspective: 1200px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 26px 8px 12px 6px;
  z-index: -4;
  border-radius: 44px;
  background: linear-gradient(120deg, rgba(227, 247, 255, .75), rgba(237, 243, 255, .42));
  box-shadow: inset 0 0 70px rgba(20, 150, 245, .07), 0 36px 90px rgba(2, 45, 111, .08);
}

.glow-orb { position: absolute; border-radius: 999px; filter: blur(10px); z-index: -3; }
.glow-orb--a { width: 220px; height: 220px; left: 115px; top: 42px; background: rgba(29, 212, 222, .14); }
.glow-orb--b { width: 260px; height: 260px; right: 100px; bottom: 20px; background: rgba(26, 111, 235, .10); }

.dashboard {
  position: absolute;
  z-index: 1;
  left: 32px;
  top: 58px;
  width: 510px;
  height: 352px;
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(10, 95, 183, .14);
  border-radius: 26px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 25px 70px rgba(0, 68, 148, .16);
  backdrop-filter: blur(18px);
  transform: rotateY(-6deg) rotateX(1.5deg);
  transform-origin: center;
}

.dashboard__side {
  width: 54px;
  padding: 17px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: #d8e8ff;
  background: linear-gradient(180deg, #1551a8, #0d67d3);
}
.side-logo { margin-bottom: 7px; font-size: 13px; font-weight: 800; color: #fff; }
.side-dot { width: 13px; height: 13px; border-radius: 4px; border: 2px solid rgba(255,255,255,.72); opacity: .62; }
.side-dot.active { background: #fff; box-shadow: 0 0 0 6px rgba(255,255,255,.08); opacity: 1; }

.dashboard__content { flex: 1; padding: 22px; background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(243,248,255,.95)); }
.dash-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.dash-chip { padding: 8px 11px; border-radius: 10px; color: #1475d6; background: #eef7ff; font-size: 11px; font-weight: 700; }
.skeleton { border-radius: 99px; background: linear-gradient(90deg, #e9f0f9, #f3f7fb); }
.skeleton--title { width: 100px; height: 10px; }
.skeleton--small { width: 65px; height: 7px; margin-top: 8px; }
.skeleton--line { width: 88%; height: 8px; margin-top: 10px; }
.skeleton--line.short { width: 58%; }

.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dash-card { position: relative; min-height: 122px; padding: 14px; border: 1px solid rgba(9,87,170,.09); border-radius: 17px; background: rgba(255,255,255,.92); box-shadow: 0 12px 25px rgba(0,64,140,.05); }
.car-icon { width: 72px; color: #2a78de; }
.car-icon svg { width: 72px; height: 44px; }
.checkmark { position: absolute; right: 12px; top: 12px; width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: #16c98f; color: #fff; font-weight: 800; font-size: 14px; }
.gear-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; color: #2873d5; background: #edf5ff; font-size: 25px; }
.bars { height: 72px; display: flex; align-items: flex-end; gap: 7px; }
.bars i { width: 13px; border-radius: 5px 5px 2px 2px; background: linear-gradient(180deg, #1acfe0, #0a6feb); box-shadow: 0 4px 10px rgba(15,111,235,.12); }
.mini-row { display: flex; align-items: center; gap: 8px; margin: 7px 0; }
.mini-row b { width: 27px; height: 27px; border-radius: 9px; background: #eef6ff; }
.mini-row span { flex: 1; height: 7px; border-radius: 99px; background: #e9f0f8; }

.mechanic-wrap {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: 56%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 42px 42px 36px 46px;
  mask-image: linear-gradient(to left, #000 0%, #000 72%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, #000 0%, #000 72%, transparent 100%);
}
.mechanic-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 44% center; transform: scale(1.03); }

.toolbox { position: absolute; z-index: 4; left: 325px; bottom: 23px; height: 18px; display: flex; align-items: flex-end; gap: 10px; opacity: .9; }
.toolbox span { display: block; width: 42px; height: 7px; border-radius: 8px; background: linear-gradient(90deg, #fc5f48, #ff9e2c); box-shadow: 0 4px 7px rgba(92,39,13,.18); }
.toolbox span:nth-child(2) { width: 58px; background: linear-gradient(90deg, #2f3e52, #6f829d); transform: rotate(4deg); }
.toolbox span:nth-child(3) { width: 30px; background: #e9eef5; border: 1px solid #8da4bd; }
.toolbox span:nth-child(4) { width: 48px; background: linear-gradient(90deg, #1f2b3d, #8196ad); transform: rotate(-7deg); }

.features {
  padding: 40px 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  direction: ltr;
}

.feature-card {
  direction: rtl;
  min-height: 205px;
  padding: 28px 24px 24px;
  text-align: center;
  border: 1px solid rgba(6,83,173,.08);
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(12px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(15,112,235,.16); box-shadow: 0 22px 50px rgba(0,70,150,.12); }
.feature-icon { width: 56px; height: 56px; margin: 0 auto 15px; display: grid; place-items: center; color: #0870ec; border-radius: 18px; background: linear-gradient(180deg, #f5faff, #edf5ff); box-shadow: inset 0 0 0 1px rgba(11,105,230,.05); }
.feature-icon svg { width: 31px; height: 31px; }
.feature-card h3 { margin: 0 0 8px; font-size: 21px; line-height: 1.35; color: var(--ink); }
.feature-card p { margin: 0; color: #667793; font-size: 15.5px; line-height: 1.7; }

.site-footer {
  min-height: 132px;
  padding: 22px 0 31px;
  display: flex;
  align-items: center;
  gap: 28px;
  direction: ltr;
  border-top: 1px solid rgba(7,74,154,.07);
}

.footer-brand { display: flex; align-items: center; gap: 18px; min-width: 390px; direction: ltr; }
.footer-brand img { width: 190px; height: 62px; object-fit: contain; object-position: left center; mix-blend-mode: multiply; }
.footer-brand div { direction: rtl; text-align: right; }
.footer-brand strong { display: block; font-size: 16px; color: var(--ink); margin-bottom: 3px; }
.footer-brand span { display: block; font-size: 14px; color: #6d7e97; }
.footer-sep { width: 1px; height: 44px; background: rgba(4,72,152,.16); }

.contact-link { display: flex; align-items: center; gap: 12px; direction: ltr; min-width: 235px; }
.contact-link:hover strong { color: #0a70e8; }
.contact-icon { width: 34px; height: 34px; display: grid; place-items: center; color: #1f6fd9; }
.contact-icon svg { width: 28px; height: 28px; }
.contact-link span:last-child { display: flex; flex-direction: column; direction: rtl; text-align: right; }
.contact-link small, .socials small { color: #8290a6; font-size: 12px; }
.contact-link strong { font-size: 14px; color: #314c78; transition: color .2s ease; }

.socials { min-width: 160px; direction: rtl; }
.socials > div { display: flex; gap: 12px; margin-top: 5px; direction: ltr; }
.socials a { width: 28px; height: 28px; display: grid; place-items: center; color: #164d9d; border-radius: 9px; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.socials a:hover { background: #edf5ff; transform: translateY(-2px); }
.car-line { margin-left: auto; width: 260px; color: rgba(35, 143, 235, .36); }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
body.ready .reveal { opacity: 1; transform: none; }
.reveal--2 { transition-delay: .10s; }
.reveal--3 { transition-delay: .18s; }
.reveal--4 { transition-delay: .26s; }

@media (max-width: 1180px) {
  .container { width: min(100% - 44px, 1100px); }
  .hero { grid-template-columns: .85fr 1.15fr; gap: 12px; }
  .dashboard { width: 450px; height: 332px; left: 0; }
  .mechanic-wrap { width: 58%; }
  .features { gap: 16px; }
  .feature-card { padding-inline: 16px; }
  .site-footer { flex-wrap: wrap; row-gap: 18px; }
  .car-line { width: 220px; }
}

@media (max-width: 920px) {
  .site-header { min-height: 90px; }
  .brand { width: 220px; }
  .brand img { height: 70px; }
  .hero { grid-template-columns: 1fr; padding-top: 4px; }
  .hero-copy { text-align: center; padding: 18px 0 0; }
  .eyebrow { justify-content: center; }
  .hero-copy h1 { font-size: 90px; letter-spacing: -4px; }
  .hero-copy h2 { font-size: 31px; }
  .launch-note { justify-content: center; }
  .micro-proof { margin: 22px auto 4px; max-width: 620px; display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
  .micro-proof__item { padding: 10px; border-radius: 14px; background: rgba(255,255,255,.6); }
  .micro-proof strong { display: block; color: #0b67dc; font-size: 15px; }
  .micro-proof span { color: #73829a; font-size: 12px; }
  .hero-visual { height: 500px; }
  .dashboard { left: 8%; top: 55px; width: 56%; }
  .mechanic-wrap { width: 58%; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { min-width: 100%; }
  .car-line { display: none; }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 28px); }
  .site-header { min-height: 76px; }
  .brand { width: 168px; min-width: 0; }
  .brand img { height: 58px; }
  .status-badge { padding: 9px 12px; gap: 7px; font-size: 12px; }
  .status-badge__icon, .status-badge__icon svg { width: 18px; height: 18px; }
  .hero-copy h1 { margin-bottom: 20px; font-size: 74px; }
  .hero-copy h2 { font-size: 24px; line-height: 1.55; }
  .launch-note { font-size: 14px; gap: 8px; }
  .launch-note > span { flex-basis: 28px; }
  .micro-proof { grid-template-columns: 1fr; gap: 7px; }
  .hero-visual { height: 405px; margin-top: 12px; }
  .hero-visual::before { inset: 18px 0 6px; border-radius: 30px; }
  .dashboard { left: 0; top: 42px; width: 72%; height: 260px; border-radius: 20px; transform: rotateY(-4deg); }
  .dashboard__side { width: 40px; gap: 13px; }
  .dashboard__content { padding: 14px; }
  .dash-card { min-height: 88px; padding: 10px; }
  .dash-grid { gap: 8px; }
  .car-icon, .car-icon svg { width: 52px; }
  .bars { height: 52px; }
  .mechanic-wrap { width: 67%; border-radius: 28px; }
  .mechanic-wrap img { object-position: 42% center; }
  .toolbox { display: none; }
  .features { padding-top: 28px; grid-template-columns: 1fr; gap: 12px; }
  .feature-card { min-height: 0; padding: 20px 18px; display: grid; grid-template-columns: 58px 1fr; column-gap: 14px; text-align: right; }
  .feature-icon { grid-row: 1 / 3; margin: 0; align-self: center; }
  .feature-card h3 { align-self: end; font-size: 19px; margin-bottom: 4px; }
  .feature-card p { font-size: 14px; }
  .site-footer { padding-top: 25px; gap: 18px; }
  .footer-brand { min-width: 100%; gap: 12px; }
  .footer-brand img { width: 150px; }
  .footer-brand strong { font-size: 14px; }
  .footer-brand span { font-size: 12px; }
  .footer-sep { display: none; }
  .contact-link { min-width: 55%; }
  .socials { margin-left: auto; min-width: 110px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
