
:root{
  --bg:#05060f;
  --panel:rgba(255,255,255,.045);
  --panel2:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.14);
  --text:#e9ecff;
  --muted:rgba(233,236,255,.70);
  --gold1:#f5e2a6;
  --gold2:#d7b24c;
  --gold3:#a67c2d;
  --shadow:0 18px 50px rgba(0,0,0,.55);
}

*{box-sizing:border-box}
body{
  margin:0;
  background:radial-gradient(1200px 700px at 30% 10%, rgba(215,178,76,.18), transparent 55%),
             radial-gradient(900px 700px at 80% 20%, rgba(245,226,166,.12), transparent 55%),
             var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Arial;
}

a{color:inherit}
.wrap{width:min(1120px,92%); margin:auto}
.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(5,6,15,.72);
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px}
.brand img{width:40px; height:40px}
.brand .t{font-weight:800; letter-spacing:.4px}
.navRight{display:flex; align-items:center; gap:12px}
.lang{display:flex; align-items:center; gap:6px; padding:6px; border-radius:14px;
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.10);
}
.langBtn{
  appearance:none; border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.85);
  padding:8px 10px; border-radius:12px;
  font-weight:900; font-size:12px; letter-spacing:.5px;
}
.langBtn[aria-pressed="true"]{
  border-color:rgba(215,178,76,.55);
  background:rgba(215,178,76,.14);
  color:var(--gold1);
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color:var(--muted);
  font-size:13px;
}
.badge b{color:var(--gold1)}
.hero{
  padding:26px 0 12px;
}
.hero h1{
  font-size:clamp(32px, 6vw, 56px);
  line-height:1.05; margin:14px 0 12px;
}
.hero p{color:var(--muted); font-size:16px; line-height:1.6; margin:0 0 18px}
.cta{
  display:flex; flex-wrap:wrap; gap:10px; margin:14px 0 6px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px;
  text-decoration:none; font-weight:800;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
}
.btn:hover{transform:translateY(-1px)}
.btn-gold{
  background:linear-gradient(135deg,var(--gold1),var(--gold2),var(--gold3));
  color:#0a0b18;
  border:none;
}
.grid{
  display:grid; gap:18px;
  grid-template-columns:repeat(12,1fr);
  padding:14px 0 40px;
}
.card{
  grid-column: span 12;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.12);
  border-radius:22px;
  box-shadow:var(--shadow);
  overflow:hidden;
}
.card .inner{padding:16px 16px 18px}
.card h2{margin:10px 0 6px; font-size:22px}
.card p{margin:0 0 12px; color:var(--muted); line-height:1.6}
.meta{
  display:flex; flex-wrap:wrap; gap:8px; margin:10px 0 12px;
}
.pill{
  padding:7px 10px; border-radius:999px;
  font-size:12px; font-weight:700;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.82);
}
.pill.gold{border-color:rgba(215,178,76,.45); color:var(--gold1)}
.actions{display:flex; flex-wrap:wrap; gap:10px}
.slimMedia{
  display:grid; gap:10px;
  grid-template-columns:repeat(3,1fr);
  margin:12px 0 14px;
}
.slimPh{
  height:54px;
  border-radius:14px;
  border:1px dashed rgba(255,255,255,.18);
  background:radial-gradient(220px 80px at 30% 20%, rgba(215,178,76,.12), transparent 60%),
             rgba(255,255,255,.03);
  color:rgba(255,255,255,.68);
  display:flex; align-items:center; justify-content:center;
  font-size:12px; font-weight:800;
  text-align:center; padding:8px;
}
.heroimg{width:100%; display:block; border-bottom:1px solid rgba(255,255,255,.10)}
.sectionTitle{margin:14px 0 10px; font-size:18px; color:rgba(255,255,255,.86)}
.investor{
  margin:12px 0 22px;
  padding:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
}
.investor b{color:var(--gold1)}
.mediaGrid{
  display:grid; gap:10px;
  grid-template-columns:repeat(2,1fr);
  margin-top:12px;
}
.mediaCard{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  padding:14px;
  display:flex; align-items:center; gap:10px;
}
.mediaIcon{font-size:20px}
.mediaLbl{font-weight:900; color:rgba(255,255,255,.82)}

/* RTL tweaks for Farsi */
html[dir="rtl"] body{font-family: ui-sans-serif, system-ui, -apple-system, Arial}
html[dir="rtl"] .brand{flex-direction:row-reverse}
html[dir="rtl"] .nav{flex-direction:row-reverse}
html[dir="rtl"] .navRight{flex-direction:row-reverse}
html[dir="rtl"] .cta{flex-direction:row-reverse}
html[dir="rtl"] .actions{flex-direction:row-reverse}

.footer{
  border-top:1px solid rgba(255,255,255,.10);
  padding:20px 0 28px;
  color:rgba(255,255,255,.62);
  font-size:13px;
}
.smallnote{font-size:12px;color:rgba(255,255,255,.55);line-height:1.5;margin-top:10px}
@media (min-width: 900px){
  .card{grid-column: span 6}
}

@media (max-width: 520px){
  .badge{display:none}
  .lang{gap:4px}
  .langBtn{padding:7px 9px}
  .slimMedia{grid-template-columns:1fr;}
}
