:root {
  color-scheme: dark;
  --bg: #07111c;
  --bg-soft: #0b1825;
  --panel: #101d2b;
  --panel-strong: #132334;
  --text: #f2f7ff;
  --muted: #b8c6d8;
  --subtle: #7f90a6;
  --line: rgba(255, 255, 255, 0.13);
  --brand: #5bd4ee;
  --brand-strong: #75e59c;
  --accent: #f2c66d;
  --ink: #04111d;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.58;
  background:
    linear-gradient(180deg, rgba(10, 31, 46, 0.9) 0, rgba(7, 17, 28, 0.98) 28rem),
    var(--bg);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(91, 212, 238, 0.07), transparent 30%),
    linear-gradient(240deg, rgba(117, 229, 156, 0.06), transparent 32%);
  pointer-events: none;
}

img,
video {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
video:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

button,
select {
  font: inherit;
}

:target {
  scroll-margin-top: 6.5rem;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  inset-block-start: 0.75rem;
  inset-inline-start: 0.75rem;
  z-index: 9999;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
  background: var(--text);
  color: var(--ink);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 28, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 76px;
  padding-block: 0.65rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
}

.brand img {
  display: block;
  width: min(232px, 38vw);
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.primary-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.primary-nav a:not(.btn) {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.35rem 0.55rem;
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.94rem;
  white-space: nowrap;
  opacity: 0.9;
}

.primary-nav a:not(.btn):hover {
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  opacity: 1;
}

.nav-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
}

.language-control select {
  min-height: 40px;
  max-width: 10.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.42rem 2rem 0.42rem 0.7rem;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  cursor: pointer;
}

.language-control option {
  background: #0d1824;
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 99px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  max-width: 100%;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.68rem 0.95rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(91, 212, 238, 0.2);
}

.btn-secondary,
.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.065);
  color: var(--text);
}

.btn-secondary:hover,
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.btn-small {
  min-height: 38px;
  padding: 0.55rem 0.8rem;
}

.hero {
  padding: 5.2rem 0 2.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  min-width: 0;
  width: 100%;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow {
  max-width: 100%;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

.eyebrow span:last-child {
  min-width: 0;
}

.eyebrow-dot {
  flex: 0 0 auto;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 99px;
  background: var(--accent);
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 12.5em;
  margin: 0 0 1rem;
  font-size: 3.55rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.lead {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-cta,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero-media,
.section-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.proof-strip {
  padding: 1.5rem 0 0.5rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.proof-item {
  min-width: 0;
  min-height: 104px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.45rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.proof-item strong {
  color: var(--text);
  font-size: 1.55rem;
  line-height: 1.1;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 4rem 0;
}

.section-muted {
  background: rgba(255, 255, 255, 0.025);
  border-block: 1px solid rgba(255, 255, 255, 0.07);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 1.6rem;
}

.section-heading h2 {
  margin: 0 0 0.65rem;
  font-size: 2.2rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.card-grid,
.split-layout,
.contact-grid,
.media-layout {
  display: grid;
  gap: 1rem;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.two,
.split-layout,
.contact-grid,
.media-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.media-layout {
  align-items: start;
}

.section-media img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: 50% 28%;
}

.info-card {
  min-width: 0;
  min-height: 100%;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 29, 43, 0.86);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.feature-card {
  padding: 1.35rem;
}

.callout-card {
  position: relative;
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(242, 198, 109, 0.08), rgba(16, 29, 43, 0.92)),
    var(--panel);
}

.info-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  line-height: 1.25;
}

.info-card h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.info-card p,
.info-card li {
  color: var(--muted);
}

.info-card p {
  margin: 0 0 0.8rem;
}

.info-card p:last-child {
  margin-bottom: 0;
}

.info-card a:not(.btn),
.contact-list a,
.source-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.info-card strong {
  color: var(--text);
}

.driver-address-card {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(91, 212, 238, 0.26);
  border-radius: var(--radius);
  background: rgba(91, 212, 238, 0.08);
}

.driver-address-card p {
  margin: 0;
}

.driver-address-card p:first-child {
  color: var(--subtle);
  font-size: 0.92rem;
}

.driver-address {
  margin-top: 0.45rem !important;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0;
  unicode-bidi: isolate;
}

.copy-button {
  min-height: 38px;
  margin-top: 0.75rem;
  border: 1px solid rgba(91, 212, 238, 0.34);
  border-radius: var(--radius);
  padding: 0.48rem 0.75rem;
  background: rgba(91, 212, 238, 0.12);
  color: var(--brand);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
}

.copy-button:hover {
  background: rgba(91, 212, 238, 0.18);
}

.inline-copy {
  margin: 0.45rem 0 0;
}

.compact-actions {
  margin-top: 0.95rem;
}

.embedded-video-card {
  display: grid;
  align-content: start;
}

.embedded-video-shell {
  margin-top: 0.95rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #000;
}

.embedded-video-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: contain;
}

.compact .info-card {
  padding: 1rem;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.8rem;
  border-radius: var(--radius);
  background: rgba(91, 212, 238, 0.13);
  color: var(--brand);
  font-weight: 900;
}

.stepper {
  counter-reset: step;
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.stepper li {
  counter-increment: step;
  position: relative;
  min-width: 0;
  padding: 0.95rem 0.95rem 0.95rem 3.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.stepper li::before {
  content: counter(step);
  position: absolute;
  top: 0.95rem;
  left: 0.95rem;
  display: grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: var(--ink);
  font-weight: 900;
  line-height: 1;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 0.85rem 0 1.2rem;
  padding-left: 1.1rem;
}

.check-list li {
  padding-left: 0.15rem;
}

.contact-section {
  padding-bottom: 4.5rem;
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin: 0 0 1.2rem;
}

.contact-list div {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.contact-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-list dt,
.contact-list dd {
  margin: 0;
}

.contact-list dt {
  color: var(--subtle);
  font-size: 0.9rem;
}

.contact-list dd {
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 800;
}

.site-footer {
  padding: 2rem 0 2.7rem;
  border-top: 1px solid var(--line);
  background: rgba(4, 11, 18, 0.55);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: start;
}

.fineprint {
  max-width: 820px;
  margin: 0 0 0.9rem;
  font-size: 0.92rem;
}

.fineprint strong {
  color: var(--text);
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
  font-size: 0.9rem;
}

.source-links span {
  color: var(--subtle);
}

.footer-actions {
  display: grid;
  justify-items: end;
  gap: 0.75rem;
  text-align: right;
}

.footer-actions p {
  margin: 0;
  color: var(--subtle);
  font-size: 0.9rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(2, 7, 12, 0.76);
  backdrop-filter: blur(12px);
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-dialog {
  width: min(520px, 100%);
  max-height: min(860px, calc(100vh - 2rem));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #081522;
  box-shadow: var(--shadow);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
}

.modal-title {
  margin: 0;
  font-size: 1rem;
}

.modal-close {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.45rem 0.75rem;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  cursor: pointer;
}

.modal-body {
  display: grid;
  place-items: center;
  background: #000;
}

.modal video {
  display: block;
  width: 100%;
  max-height: calc(100vh - 7rem);
  background: #000;
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .primary-nav,
html[dir="rtl"] .hero-cta,
html[dir="rtl"] .button-row,
html[dir="rtl"] .source-links {
  direction: rtl;
}

html[dir="rtl"] .stepper li {
  padding: 0.95rem 3.4rem 0.95rem 0.95rem;
}

html[dir="rtl"] .stepper li::before {
  right: 0.95rem;
  left: auto;
}

html[dir="rtl"] .check-list {
  padding-right: 1.1rem;
  padding-left: 0;
}

html[dir="rtl"] .footer-actions {
  text-align: left;
}

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .menu-toggle {
    display: grid;
  }

  .primary-nav {
    grid-column: 1 / -1;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 0.5rem;
    padding: 0.5rem 0 0.75rem;
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a,
  .primary-nav .btn {
    width: 100%;
  }

  .primary-nav a:not(.btn) {
    justify-content: center;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.045);
    white-space: normal;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  h1 {
    max-width: 14em;
    font-size: 3rem;
  }

  .hero-media {
    max-width: 720px;
  }

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

@media (max-width: 820px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .hero {
    padding: 3rem 0 1.8rem;
  }

  h1 {
    font-size: 2.35rem;
  }

  .lead {
    font-size: 1rem;
  }

  .proof-grid,
  .card-grid.three,
  .card-grid.two,
  .split-layout,
  .contact-grid,
  .media-layout {
    grid-template-columns: 1fr;
  }

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

  .proof-item {
    min-height: 88px;
  }

  .section {
    padding: 3rem 0;
  }

  .section-heading h2 {
    font-size: 1.85rem;
  }

  .section-heading p:last-child {
    font-size: 1rem;
  }

  .section-media img {
    height: 420px;
  }

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

  .footer-actions {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.55rem;
    min-height: 68px;
  }

  .brand img {
    width: min(150px, 36vw);
    height: 42px;
  }

  .language-control select {
    width: 7rem;
    max-width: 7rem;
    padding-inline: 0.5rem;
  }

  .primary-nav {
    grid-template-columns: 1fr;
  }

  .eyebrow {
    align-items: flex-start;
    font-size: 0.86rem;
  }

  h1 {
    max-width: 100%;
    font-size: 1.82rem;
    line-height: 1.12;
  }

  .hero-cta,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-cta .btn,
  .button-row .btn,
  .contact-card .btn {
    width: 100%;
  }

  .info-card,
  .feature-card,
  .callout-card {
    padding: 1rem;
  }

  .section-media img {
    height: 340px;
  }

  .modal {
    padding: 0.65rem;
  }
}

@media print {
  :root {
    color-scheme: light;
    --bg: #ffffff;
    --bg-soft: #ffffff;
    --panel: #ffffff;
    --panel-strong: #ffffff;
    --text: #111827;
    --muted: #4b5563;
    --subtle: #6b7280;
    --line: rgba(0, 0, 0, 0.16);
    --shadow: none;
  }

  body,
  body::before {
    background: #ffffff;
  }

  .site-header {
    position: static;
    background: #ffffff;
    backdrop-filter: none;
  }

  .menu-toggle,
  .modal {
    display: none !important;
  }

  .primary-nav {
    display: none;
  }

  .info-card,
  .hero-media,
  .section-media,
  .proof-item {
    box-shadow: none;
    background: #ffffff;
  }
}
