:root{
  --bg:#071327;
  --bg2:#0d1f43;
  --panel:rgba(255,255,255,.06);
  --panel-2:rgba(255,255,255,.08);
  --line:rgba(255,255,255,.12);
  --text:#eef4ff;
  --muted:#b9c8e6;
  --cyan:#1fd0ff;
  --blue:#2b79e3;
  --coral:#ff5664;
  --shadow:0 28px 70px rgba(0,0,0,.28);
  --radius:24px;
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(31,208,255,.10), transparent 26%),
    radial-gradient(circle at top right, rgba(255,86,100,.10), transparent 22%),
    linear-gradient(180deg, #0b1834 0%, #071327 42%, #050d1c 100%);
}
html[dir="rtl"] body{ text-align:right; }
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.container{width:min(calc(100% - 32px), var(--max));margin:0 auto}
.narrow{max-width:860px}
.sr-only{
  position:absolute;
  width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

.site-header{
  position:sticky;top:0;z-index:100;
  backdrop-filter:blur(16px);
  background:rgba(6,16,34,.72);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-shell{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand-link{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}
.brand-logo{
  width:48px;height:48px;
  object-fit:contain;
  border-radius:14px;
  box-shadow:0 12px 30px rgba(0,0,0,.24);
  background:rgba(255,255,255,.02);
}
.brand-copy{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand-copy strong{font-size:1.05rem}
.brand-copy span{font-size:.82rem;color:var(--muted)}

.site-nav{
  display:flex;
  align-items:center;
  gap:8px;
  flex:1;
  justify-content:center;
}
.nav-link{
  padding:10px 14px;
  border-radius:999px;
  color:var(--muted);
  transition:.2s ease;
}
.nav-link:hover,.nav-link.active{
  background:rgba(255,255,255,.08);
  color:var(--text);
}

.header-tools{
  display:flex;
  align-items:center;
  gap:10px;
}
.lang-switcher{
  appearance:none;
  border:1px solid var(--line);
  border-radius:14px;
  padding:11px 14px;
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:700;
  min-width:82px;
}
.menu-toggle{
  display:none;
  width:46px;height:46px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-size:1.1rem;
}

.mobile-menu{
  display:none;
  padding:0 0 16px;
}
.mobile-menu.open{display:block}
.mobile-link{
  display:block;
  padding:12px 14px;
  margin-bottom:8px;
  border-radius:14px;
  color:var(--muted);
  background:rgba(255,255,255,.05);
  border:1px solid var(--line);
}
.mobile-link.active{color:var(--text)}

.hero{
  padding:72px 0 36px;
}
.page-hero{
  padding:72px 0 24px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:36px;
  align-items:center;
}
.eyebrow{
  color:#85e9ff;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.8rem;
  font-weight:800;
  margin-bottom:14px;
}
h1{
  margin:0 0 14px;
  font-size:clamp(2.4rem, 6vw, 4.9rem);
  line-height:.98;
  letter-spacing:-.04em;
}
h2{
  margin:0;
  font-size:clamp(1.8rem, 3vw, 3rem);
  line-height:1.05;
  letter-spacing:-.03em;
}
.lead{
  margin:14px 0 0;
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.72;
  max-width:64ch;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:26px;
}
.hero-actions.compact{margin-top:20px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 18px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:800;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:linear-gradient(135deg, var(--cyan), var(--blue));
  color:#02101d;
  box-shadow:0 18px 40px rgba(31,208,255,.22);
}
.btn-secondary{
  background:rgba(255,255,255,.05);
  border-color:var(--line);
  color:var(--text);
}

.shot-stack{
  display:grid;
  grid-template-columns:1fr .72fr;
  gap:18px;
  align-items:end;
}
.shot-card{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius:28px;
  padding:14px;
  box-shadow:var(--shadow);
}
.shot-card.large{transform:translateY(18px)}
.shot-card img{
  width:100%;
  height:auto;
  border-radius:22px;
  object-fit:cover;
}
.shot-label{
  display:inline-block;
  font-size:.82rem;
  color:#9fefff;
  font-weight:800;
  margin-bottom:10px;
}

.section{
  padding:32px 0;
}
.section-soft{
  padding:28px 0 44px;
}
.section-head{
  margin-bottom:22px;
}
.section-lead{
  margin:14px 0 0;
  color:var(--muted);
  max-width:70ch;
  line-height:1.7;
}

.grid{
  display:grid;
  gap:18px;
}
.grid-4{grid-template-columns:repeat(4, 1fr)}
.grid-3{grid-template-columns:repeat(3, 1fr)}

.card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
}
.card h3{
  margin:0 0 10px;
  font-size:1.16rem;
  line-height:1.25;
}
.card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}
.card-link{
  transition:.2s ease;
}
.card-link:hover{
  transform:translateY(-4px);
  background:var(--panel-2);
}

.visual-band{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.visual-card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:28px;
  padding:14px;
  box-shadow:var(--shadow);
}
.visual-card img{
  border-radius:20px;
}

.callout{
  margin-top:22px;
  background:linear-gradient(135deg, rgba(31,208,255,.08), rgba(255,86,100,.08));
  border:1px solid var(--line);
  border-radius:24px;
  padding:20px 22px;
  color:var(--muted);
  line-height:1.8;
}
.callout strong{color:var(--text)}

.site-footer{
  padding:40px 0 24px;
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:24px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .9fr .9fr;
  gap:18px;
}
.footer-card{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:22px;
  padding:20px;
}
.footer-card h3{
  margin:0 0 10px;
  font-size:1rem;
}
.footer-card p,.footer-card a{
  color:var(--muted);
  line-height:1.7;
}
.footer-logo{
  width:48px;height:48px;object-fit:contain;margin-bottom:12px;
}
.footer-badge{
  display:inline-flex;
  margin-top:10px;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  font-size:.84rem;
  color:var(--text);
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding-top:18px;
  margin-top:18px;
  color:var(--muted);
  border-top:1px solid rgba(255,255,255,.08);
  font-size:.95rem;
}

@media (max-width: 1024px){
  .grid-4{grid-template-columns:repeat(2, 1fr)}
  .grid-3,.footer-grid,.hero-grid,.visual-band{grid-template-columns:1fr}
  .shot-card.large{transform:none}
  .site-nav{display:none}
  .menu-toggle{display:inline-grid;place-items:center}
}

@media (max-width: 640px){
  .container{width:min(calc(100% - 20px), var(--max))}
  .grid-4{grid-template-columns:1fr}
  .brand-copy span{display:none}
  .footer-bottom{flex-direction:column}
}
