:root {
  color-scheme: light;
  --ink: #14183a;
  --ink-2: #272d58;
  --gold: #d9a441;
  --paper: #fbf8ef;
  --white: #fff;
  --muted: #6a6f85;
  --line: rgba(20, 24, 58, .13);
  --ok: #0d7666;
}
* { box-sizing: border-box; }
html { background: var(--paper); color: var(--ink); }
body {
  margin: 0;
  font-family: "IBM Plex Sans Arabic", "Noto Sans Arabic", system-ui, sans-serif;
  background:
    radial-gradient(circle at 13% 5%, rgba(217,164,65,.16), transparent 29rem),
    var(--paper);
}
a { color: inherit; }
.shell { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
header {
  min-height: 84px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.brand { text-decoration: none; font: 800 25px Georgia, serif; color: var(--ink); }
.brand span { color: var(--gold); }
nav { display: flex; gap: 14px; flex-wrap: wrap; }
nav a { color: var(--muted); font-size: 14px; text-underline-offset: 5px; }
.hero { padding: 60px 0 42px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 34px; align-items: center; }
.eyebrow { color: var(--ok); font-weight: 800; font-size: 14px; letter-spacing: .03em; }
h1 { margin: 10px 0 16px; font-size: clamp(37px, 7vw, 72px); line-height: 1.08; letter-spacing: -.04em; }
.lead { max-width: 680px; color: var(--muted); font-size: clamp(17px, 2vw, 21px); line-height: 1.85; }
.card {
  position: relative; overflow: hidden; padding: 30px; border-radius: 28px;
  color: white; background: linear-gradient(145deg, var(--ink), var(--ink-2));
  box-shadow: 0 24px 65px rgba(20,24,58,.22);
}
.card::after {
  content: ""; position: absolute; width: 190px; height: 190px; border-radius: 50%;
  left: -60px; bottom: -90px; border: 28px solid rgba(217,164,65,.14);
}
.card-kicker { color: #f5d792; font-weight: 800; }
.card h2 { font-size: 30px; margin: 8px 0 22px; }
.card-metric { font-size: 56px; font-weight: 900; line-height: 1; }
.card-label { color: #c8cbe0; margin: 8px 0 24px; }
.card small { color: #aeb4d3; line-height: 1.6; display: block; }
.actions { display: flex; gap: 12px; margin-top: 25px; flex-wrap: wrap; }
button, .button {
  border: 0; border-radius: 999px; padding: 13px 20px; font: inherit;
  font-weight: 800; cursor: pointer; text-decoration: none;
}
.primary { background: var(--gold); color: var(--ink); }
.secondary { background: rgba(255,255,255,.1); color: white; border: 1px solid rgba(255,255,255,.2); }
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 10px 0 54px; }
.fact { padding: 22px; background: rgba(255,255,255,.72); border: 1px solid var(--line); border-radius: 20px; }
.fact b { display: block; font-size: 27px; margin-bottom: 4px; }
.fact span { color: var(--muted); font-size: 14px; }
.honesty { padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.65); margin-bottom: 34px; }
.honesty h2, .systems h2 { margin-top: 0; font-size: 27px; }
.honesty p { color: var(--muted); line-height: 1.9; }
.systems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.system { padding: 19px; background: white; border: 1px solid var(--line); border-radius: 18px; }
.system strong { display: block; line-height: 1.45; }
.system span { color: var(--muted); font-size: 13px; }
footer { margin-top: 70px; border-top: 1px solid var(--line); padding: 28px 0 45px; color: var(--muted); font-size: 13px; }
.loading { min-height: 60vh; display: grid; place-items: center; color: var(--muted); }
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; padding-top: 34px; }
  .facts { grid-template-columns: 1fr 1fr; }
  .systems-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  nav { display: none; }
  .facts, .systems-grid { grid-template-columns: 1fr; }
  .card { border-radius: 22px; padding: 24px; }
}
@media print {
  header, .facts, .honesty, .systems, footer, .actions { display: none !important; }
  body { background: white; }
  .hero { display: block; padding: 0; }
  .hero-copy { display: none; }
  .card { width: 1080px; height: 1080px; border-radius: 0; padding: 100px; box-shadow: none; }
  .card h2 { font-size: 78px; margin-top: 30px; }
  .card-metric { font-size: 190px; margin-top: 110px; }
  .card-label, .card small { font-size: 35px; }
}
