:root {
  --bg: #070809;
  --bg-2: #101214;
  --bg-3: #171a1d;
  --panel: rgba(16, 18, 20, 0.72);
  --gold: #c9a227;
  --gold-2: #e8c547;
  --amber: #ffb020;
  --red: #e11d2e;
  --red-dim: #7a121c;
  --text: #ece8de;
  --muted: #9a9588;
  --line: rgba(201, 162, 39, 0.28);
  --ua-blue: #005bbb;
  --ua-yellow: #ffd500;
  --ok: #3dd68c;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--text); }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", "Noto Sans", "Noto Sans Arabic", system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
body.rtl { direction: rtl; text-align: right; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.ua-bar {
  height: 6px;
  background: linear-gradient(90deg, var(--ua-blue) 50%, var(--ua-yellow) 50%);
}

.ticker {
  background: #12080a;
  border-bottom: 1px solid rgba(225, 29, 46, 0.35);
  color: #ffd0d4;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  padding: 8px 0;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.wrap { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }

header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7, 8, 9, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  width: 46px; height: 46px; object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.brand-name {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 0.16em;
  font-size: 17px;
}
.brand-sub { display: block; font-size: 9px; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; }
.hero-slogan {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-size: clamp(13px, 1.6vw, 16px);
  margin: 0 0 14px;
}

.nav-links { display: flex; gap: 22px; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.nav-links a:hover { color: var(--gold-2); }

.lang {
  display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end;
}
.lang button {
  min-width: 42px;
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.lang button.active, .lang button:hover {
  border-color: var(--gold);
  color: var(--gold-2);
  background: rgba(201,162,39,0.08);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: end start;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,8,9,0.2) 0%, rgba(7,8,9,0.35) 40%, rgba(7,8,9,0.92) 100%),
    url("../img/team.jpg") center 30% / cover no-repeat;
  filter: saturate(0.85) contrast(1.05);
}
.scanlines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(180deg, transparent 0 2px, rgba(0,0,0,0.12) 2px 3px);
  pointer-events: none;
  mix-blend-mode: multiply;
}
.hero-content { position: relative; z-index: 2; padding: 70px 0 80px; max-width: 820px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold-2);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 18px;
}
.dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(225,29,46,0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(225,29,46,0); }
}
h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.lead { font-size: 18px; color: #d7d2c6; max-width: 64ch; }
.hero-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.btn {
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}
.btn.solid { background: var(--gold); color: #111; font-weight: 700; }
.btn.ghost { color: var(--gold-2); }
.hud {
  margin-top: 34px;
  display: flex; gap: 18px; flex-wrap: wrap;
  font-family: "Share Tech Mono", ui-monospace, monospace;
  font-size: 12px;
  color: #b7ec9a;
}
.hud span { opacity: 0.85; }

section { padding: 84px 0; }
.section-kicker {
  color: var(--gold);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}
h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.prose { color: #d3cec3; max-width: 78ch; }
.prose p + p { margin-top: 14px; }

.grid-3, .grid-2 { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); margin-top: 32px; }
.grid-2 { grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 36px; }
.card {
  background: var(--bg-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card img { width: 100%; height: 210px; object-fit: cover; }
.card .pad { padding: 18px; }
.card h3 {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.card p { color: var(--muted); font-size: 14px; }

.warning {
  background:
    radial-gradient(800px 300px at 10% 0%, rgba(225,29,46,0.18), transparent 60%),
    var(--bg-2);
  border: 1px solid rgba(225,29,46,0.4);
  border-radius: 24px;
  padding: 36px;
  position: relative;
}
.warning::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 6px;
  background: linear-gradient(90deg, var(--ua-blue), var(--ua-yellow), var(--red));
  border-radius: 24px 24px 0 0;
}
.warning h2 { color: #ffd7db; }
.warning .legal {
  font-size: 18px;
  color: #f3ece4;
  margin-top: 12px;
}
.warning-meta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  margin-top: 24px;
  align-items: center;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip {
  border: 1px solid rgba(255,208,80,0.3);
  color: var(--amber);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.warning-sign { border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); }

.team-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.team-frame img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.cam-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,0,0,0.62);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 10px;
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  color: #ff5a63;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.mosaic img {
  width: 100%; height: 100%; object-fit: cover;
  min-height: 180px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
}
.mosaic img:first-child { grid-row: 1 / span 2; min-height: 380px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.stat {
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 18px;
}
.stat b {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 32px;
  color: var(--gold-2);
}
.stat span { color: var(--muted); font-size: 13px; }

footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 13px;
}
.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .grid-3, .grid-2, .warning-meta, .stats, .mosaic { grid-template-columns: 1fr; }
  .mosaic img:first-child { grid-row: auto; min-height: 240px; }
  .hero { min-height: 78vh; }
}
