:root {
  --navy: #10173b;
  --navy-2: #1c2556;
  --purple: #5d3df0;
  --purple-2: #3125a8;
  --yellow: #ffd34e;
  --orange: #ff8738;
  --green: #35c98a;
  --cyan: #55dff5;
  --ink: #151a35;
  --muted: #59617d;
  --surface: #ffffff;
  --line: #e5e7f3;
  --page: #f5f6ff;
  --radius: 28px;
  --shadow: 0 18px 46px rgba(23, 28, 75, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: Inter, ui-rounded, "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.7;
}
a { color: var(--purple-2); }
.hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 211, 78, .26), transparent 20%),
    linear-gradient(135deg, var(--navy), var(--purple-2) 62%, var(--purple));
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -145px;
  height: 260px;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(#7ee244, #36b66d);
  opacity: .95;
}
.stadium-lights {
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image: radial-gradient(circle, #fff 0 3px, transparent 4px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 55%);
}
.topbar, .hero-content, main, footer { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}
.brand { display: flex; align-items: center; gap: 11px; color: #fff; text-decoration: none; font-size: 19px; font-weight: 900; letter-spacing: .08em; }
.ball { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: #fff; box-shadow: 0 7px 0 rgba(7, 11, 36, .32); font-size: 27px; }
.language-links { display: flex; gap: 8px; }
.language-links a { color: #fff; text-decoration: none; padding: 9px 15px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(255,255,255,.09); font-weight: 700; }
.language-links a:hover, .language-links a:focus-visible { background: var(--yellow); color: var(--ink); }
.hero-content { position: relative; z-index: 2; padding: 52px 0 150px; }
.eyebrow, .section-heading p, .providers p { margin: 0; color: var(--yellow); font-weight: 900; letter-spacing: .13em; font-size: 13px; }
.hero h1 { max-width: 690px; margin: 12px 0 14px; font-size: clamp(52px, 8vw, 92px); line-height: .94; letter-spacing: -.045em; }
.hero h1 span { color: var(--yellow); }
.hero-content > p { max-width: 620px; font-size: 20px; color: #e8eaff; }
.status-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.status-pill { padding: 9px 14px; border-radius: 999px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); font-weight: 700; font-size: 14px; }
.goal { position: absolute; z-index: 1; right: 7%; bottom: 20px; width: 300px; height: 190px; border: 10px solid rgba(255,255,255,.72); border-bottom: 0; border-radius: 24px 24px 0 0; opacity: .32; }
.goal::before, .goal::after { content: ""; position: absolute; inset: 0; background-size: 32px 32px; }
.goal::before { background-image: linear-gradient(to right, rgba(255,255,255,.7) 1px, transparent 1px); }
.goal::after { background-image: linear-gradient(to bottom, rgba(255,255,255,.7) 1px, transparent 1px); }
main { position: relative; z-index: 3; margin-top: -70px; padding-bottom: 70px; }
.summary, .policy-panel, .providers { background: var(--surface); border: 1px solid rgba(84, 70, 183, .1); border-radius: var(--radius); box-shadow: var(--shadow); }
.summary { padding: 34px; }
.section-heading { display: flex; align-items: center; gap: 16px; margin-bottom: 25px; }
.section-heading .number { display: grid; place-items: center; flex: 0 0 54px; height: 54px; border-radius: 18px; color: var(--purple-2); background: #edeaff; font-weight: 950; }
.section-heading p, .providers p { color: var(--purple); }
.section-heading h2, .providers h2 { margin: 0; font-size: clamp(26px, 4vw, 38px); line-height: 1.15; }
.summary-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.summary-card { min-height: 210px; padding: 22px; border-radius: 23px; border: 1px solid var(--line); background: #fafaff; }
.summary-card .icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 16px; font-size: 23px; color: #fff; box-shadow: 0 7px 0 rgba(12,17,49,.09); }
.summary-card h3 { margin: 20px 0 6px; font-size: 18px; }
.summary-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.summary-card.green .icon { background: var(--green); }
.summary-card.purple .icon { background: var(--purple); }
.summary-card.orange .icon { background: var(--orange); }
.summary-card.blue .icon { background: #2eaee6; }
.policy-panel { margin-top: 28px; padding: 38px clamp(22px, 5vw, 60px); scroll-margin-top: 20px; }
.policy-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 17px; border-radius: 20px; background: linear-gradient(115deg, var(--navy), var(--purple-2)); color: #fff; }
.policy-meta div { min-width: 0; padding: 7px 12px; }
.policy-meta span { display: block; color: #c9cdf7; font-size: 12px; text-transform: uppercase; letter-spacing: .07em; }
.policy-meta strong { display: block; overflow-wrap: anywhere; margin-top: 3px; }
.policy-panel article { padding: 25px 0; border-bottom: 1px solid var(--line); }
.policy-panel article:last-child { border: 0; }
.policy-panel h3 { display: flex; align-items: center; gap: 11px; margin: 0 0 10px; font-size: 21px; line-height: 1.35; }
.policy-panel h3 b { display: inline-grid; place-items: center; flex: 0 0 34px; height: 34px; border-radius: 11px; color: var(--purple); background: #f0edff; font-size: 14px; }
.policy-panel p { margin: 9px 0; color: #3f4663; }
.policy-panel li { margin: 6px 0; color: #3f4663; }
.arabic { font-family: Tahoma, Arial, sans-serif; }
.arabic .section-heading { flex-direction: row-reverse; justify-content: flex-end; }
.arabic .section-heading div { text-align: right; }
.arabic .policy-panel h3 { flex-direction: row; }
.arabic ul { padding-right: 24px; padding-left: 0; }
.providers { display: flex; justify-content: space-between; gap: 30px; margin-top: 28px; padding: 34px; }
.provider-links { display: grid; gap: 9px; min-width: min(100%, 420px); }
.provider-links a { display: flex; justify-content: space-between; gap: 18px; padding: 12px 16px; border-radius: 14px; color: var(--ink); background: #f3f1ff; text-decoration: none; font-weight: 750; }
.provider-links a:hover, .provider-links a:focus-visible { color: #fff; background: var(--purple); }
footer { display: flex; align-items: center; gap: 12px; padding: 0 0 45px; }
.footer-ball { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: #fff; box-shadow: 0 6px 16px rgba(18,25,68,.16); font-size: 28px; }
footer strong, footer span { display: block; }
footer strong { letter-spacing: .08em; }
footer span { color: var(--muted); font-size: 13px; }
footer a { margin-inline-start: auto; font-weight: 750; }

@media (max-width: 820px) {
  .summary-grid { grid-template-columns: repeat(2, 1fr); }
  .providers { display: block; }
  .provider-links { margin-top: 22px; }
  .goal { right: -50px; }
}
@media (max-width: 560px) {
  .topbar, .hero-content, main, footer { width: min(100% - 24px, 1120px); }
  .topbar { align-items: flex-start; }
  .brand { font-size: 14px; }
  .ball { width: 38px; height: 38px; font-size: 22px; }
  .language-links a { padding: 7px 10px; font-size: 12px; }
  .hero { min-height: 500px; }
  .hero-content { padding-top: 58px; }
  .hero-content > p { font-size: 17px; }
  .summary, .policy-panel, .providers { border-radius: 22px; }
  .summary { padding: 20px; }
  .summary-grid { grid-template-columns: 1fr; }
  .summary-card { min-height: 0; }
  .policy-panel { padding: 25px 18px; }
  .policy-meta { grid-template-columns: 1fr; }
  .policy-meta div { border-bottom: 1px solid rgba(255,255,255,.12); }
  .policy-meta div:last-child { border: 0; }
  .section-heading .number { flex-basis: 46px; height: 46px; border-radius: 14px; }
  .policy-panel h3 { font-size: 18px; }
  .policy-panel p, .policy-panel li { font-size: 15px; }
  footer { flex-wrap: wrap; }
  footer a { width: 100%; margin: 8px 0 0; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
