:root {
  --bg: #08132d;
  --bg-2: #11234a;
  --surface: #f4f8ff;
  --surface-2: #eaf1ff;
  --ink: #0f1b34;
  --muted: #425172;
  --brand: #15d092;
  --brand-2: #2ac8ff;
  --line: #d1dcf4;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@font-face {
  font-family: "PolygraphHebrew";
  src: local("Noto Sans Hebrew"), local("Segoe UI"), local("Arial");
  font-display: swap;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
}

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: rgba(8, 19, 45, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  text-decoration: none;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--brand), var(--brand-2));
  box-shadow: 0 0 0 4px rgba(42, 200, 255, 0.2);
}

.brand-text { font-size: 1.24rem; }

.nav {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: #dbe7ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a:hover { color: #fff; }

.menu-btn {
  display: none;
  margin-inline-start: auto;
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  background: transparent;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-inline-start: 10px;
}

.lang-btn {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  border-radius: 10px;
  padding: 6px 10px;
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.active {
  background: #2f84d6;
  border-color: #8cc4ff;
}

.hero {
  background:
    radial-gradient(1200px 380px at 20% -10%, rgba(42,200,255,.22), transparent 45%),
    radial-gradient(800px 320px at 80% 0%, rgba(21,208,146,.2), transparent 55%),
    linear-gradient(150deg, var(--bg), var(--bg-2));
  color: var(--white);
  padding: 84px 0 68px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #7de3ff;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.hero-text {
  margin: 16px 0 24px;
  color: #dce8ff;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #092131;
  box-shadow: 0 10px 24px rgba(16, 210, 150, 0.25);
}

.btn-ghost {
  color: #e6f0ff;
  border: 1px solid rgba(230, 240, 255, 0.35);
}

.hero-points {
  margin: 20px 0 0;
  padding-inline-start: 18px;
  color: #d2defa;
}

.hero-panel {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 18px;
}

.hero-panel h2 { margin: 0 0 10px; font-size: 1.2rem; }

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  font-size: .86rem;
  color: #ebf3ff;
}

.section { padding: 72px 0; }
.section.alt { background: var(--surface-2); }

h2 {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
}

.lead {
  margin-top: -8px;
  margin-bottom: 22px;
  color: var(--muted);
  max-width: 900px;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.timeline li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 16px 16px 18px;
  border-inline-start: 4px solid #2ac8ff;
}

.timeline h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.spec-item strong { white-space: nowrap; }
.spec-item span {
  color: var(--muted);
  text-align: right;
}

.download-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.download-link {
  display: block;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}

.download-link:hover {
  border-color: #77b9ff;
  box-shadow: 0 6px 18px rgba(15, 27, 52, 0.1);
}

.video-wrap {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 10px auto 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(15, 27, 52, 0.12);
  background: #000;
}

.video-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.contact {
  background: linear-gradient(150deg, #08142d, #10244b);
  color: #fff;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.contact .eyebrow { color: #7de3ff; }

.contact p { color: #d8e5ff; }

.contact-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 18px;
}

.contact-card a { color: #b3ebff; }

.footer {
  background: #081127;
  color: #d6e3ff;
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer a {
  color: #95d9ff;
  text-decoration: none;
  font-weight: 700;
}

html[dir="rtl"] body {
  text-align: right;
  font-family: "PolygraphHebrew", "Segoe UI", Arial, sans-serif;
}

html[dir="rtl"] .hero-points {
  padding-inline-start: 0;
  padding-inline-end: 18px;
}

html[dir="rtl"] .spec-item span {
  text-align: left;
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-inner,
  .grid.four,
  .grid.two,
  .spec-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .nav { gap: 14px; }
}

@media (max-width: 760px) {
  .menu-btn { display: inline-flex; }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 4vw;
    right: 4vw;
    background: #101d40;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav.open { display: flex; }
}
