
  :root {
    --navy: #003D7F;
    --navy-deep: #00234C;
    --navy-soft: #0B4E96;
    --teal: #0194B4;
    --teal-text: #006F87;
    --teal-light: #57C6DE;
    --ink: #0B1B2E;
    --muted: #56677E;
    --line: #DCE4EE;
    --paper: #F3F7FB;
    --white: #FFFFFF;

    --ar: "Cairo", "Segoe UI", Tahoma, sans-serif;
    --en-display: "Cairo", "Segoe UI", system-ui, sans-serif;
    --en-body: "Cairo", "Segoe UI", system-ui, sans-serif;

    --wrap: 1120px;
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
  }

  * { box-sizing: border-box; }

  body {
    margin: 0;
    background: var(--white);
    color-scheme: light;
  }

  #page {
    background: var(--white);
    color: var(--ink);
    font-family: var(--ar);
    font-size: 17px;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
  }
  #page[dir="ltr"] { font-family: var(--en-body); line-height: 1.7; }
  #page[dir="ltr"] h1,
  #page[dir="ltr"] h2,
  #page[dir="ltr"] h3,
  #page[dir="ltr"] .stat-n,
  #page[dir="ltr"] .btn { font-family: var(--en-display); }

  h1, h2, h3 { margin: 0; text-wrap: balance; font-weight: 700; letter-spacing: -0.01em; }
  p { margin: 0; }
  a { color: inherit; }
  img { max-width: 100%; display: block; }
  ul { margin: 0; padding: 0; list-style: none; }

  :focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

  .wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(16px, 4vw, 24px); }

  .band { padding-block: clamp(56px, 7vw, 104px); }
  .band--paper { background: var(--paper); }
  .band--dark { background: var(--navy-deep); color: #E8F1FA; }

  .eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: var(--teal-text);
    margin-bottom: 14px;
  }
  #page[dir="ltr"] .eyebrow {
    font-family: var(--en-display);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
  }
  .band--dark .eyebrow { color: var(--teal-light); }

  .h2 { font-size: clamp(27px, 3.4vw, 40px); line-height: 1.35; }
  .h3 { font-size: clamp(19px, 2vw, 22px); line-height: 1.5; }
  .lede { font-size: clamp(17px, 1.5vw, 19px); color: var(--muted); max-width: 62ch; }
  .band--dark .lede { color: #A9C6E2; }

  /* ---------- header ---------- */
  .top {
    position: sticky; top: 0; z-index: 60;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .top-in { display: flex; align-items: center; gap: 20px; height: 78px; min-width: 0; }
  .brand { display: flex; align-items: center; flex-shrink: 0; min-width: 0; }
  .brand img { height: 40px; width: auto; }

  .nav { display: flex; align-items: center; gap: clamp(12px, 2vw, 26px); margin-inline-start: auto; min-width: 0; }
  .nav a {
    text-decoration: none; font-size: 15px; font-weight: 600; color: #35485F;
    padding-block: 6px; border-bottom: 2px solid transparent; transition: color .18s, border-color .18s;
  }
  .nav a:hover { color: var(--navy); border-bottom-color: var(--teal); }

  .top-act { display: flex; align-items: center; gap: 10px; min-width: 0; }

  .lang {
    font-family: var(--en-display); font-size: 13px; font-weight: 600;
    background: none; border: 1px solid var(--line); color: #35485F;
    border-radius: 999px; padding: 7px 14px; cursor: pointer; transition: .18s;
    min-width: 52px;
    flex-shrink: 0;
  }
  .lang:hover { border-color: var(--navy); color: var(--navy); }

  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-size: 15px; font-weight: 700; text-decoration: none; cursor: pointer;
    padding: 13px 24px; border-radius: 999px; border: 1px solid transparent;
    transition: transform .18s, background .18s, border-color .18s, color .18s;
  }
  .btn:hover { transform: translateY(-2px); }
  .btn--solid { background: var(--navy); color: #fff; }
  .btn--solid:hover { background: var(--navy-soft); }
  .btn--teal { background: var(--teal); color: #fff; }
  .btn--teal:hover { background: #0AA6C8; }
  .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.42); }
  .btn--ghost:hover { background: rgba(255,255,255,.12); }
  .btn--line { background: transparent; color: var(--navy); border-color: var(--line); }
  .btn--line:hover { border-color: var(--navy); }
  .btn--sm { padding: 10px 18px; font-size: 14px; }

  .burger { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; padding: 9px 11px; cursor: pointer; }
  .burger span { display: block; width: 18px; height: 2px; background: #35485F; border-radius: 2px; }
  .burger span + span { margin-top: 4px; }

  .mnav { display: none; border-top: 1px solid var(--line); background: #fff; }
  .mnav.open { display: block; }
  .mnav ul { display: flex; flex-direction: column; padding: 14px 24px 22px; gap: 4px; }
  .mnav a { display: block; padding: 11px 0; text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--line); }
  .mnav .btn { margin-top: 14px; width: 100%; }

  /* ---------- hero ---------- */
  .hero {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #002144 0%, var(--navy) 52%, #016E93 100%);
    color: #fff;
  }
  .hero::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(80% 70% at 20% 0%, rgba(87,198,222,.22), transparent 62%);
    pointer-events: none;
  }
  .hero-in {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(24px, 4vw, 48px); align-items: center;
    padding-block: clamp(56px, 7vw, 92px);
  }
  .hero-copy { min-width: 0; }
  .hero h1 {
    font-size: clamp(30px, 4.4vw, 56px); line-height: 1.28; margin-bottom: 22px;
  }
  .hero h1 .hl { color: var(--teal-light); }
  .hero .lede { color: #C8DEF2; max-width: 52ch; }
  .hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
  .hero-note {
    margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.16);
    font-size: 14.5px; color: #9FC0DE; display: flex; flex-wrap: wrap; gap: 8px 20px;
  }
  .hero-note span { display: inline-flex; align-items: center; gap: 7px; }
  .hero-note i { width: 5px; height: 5px; border-radius: 50%; background: var(--teal-light); display: inline-block; }

  .hero-art { display: flex; justify-content: center; }
  .hero-art svg { width: 100%; max-width: 460px; height: auto; }
  .hero-art .lab { font-size: 17px; font-weight: 600; font-family: var(--ar); fill: #DCEEFB; }
  #page[dir="ltr"] .hero-art .lab { font-family: var(--en-body); font-size: 16px; }

  /* ---------- need ---------- */
  .need-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(24px, 4vw, 72px); align-items: center; }
  .need-body, .need-body p { min-width: 0; }
  .need-body p + p { margin-top: 18px; }
  .need-body .kicker { font-size: 19px; color: var(--ink); font-weight: 600; }

  .gaps { display: flex; flex-direction: column; gap: 2px; border-top: 2px solid var(--navy); }
  .gap-i { padding: 20px 0; border-bottom: 1px solid var(--line); display: flex; gap: 16px; align-items: baseline; }
  .gap-i b { color: var(--teal-text); font-family: var(--en-display); font-size: 14px; font-weight: 700; flex-shrink: 0; }
  .gap-i p { font-weight: 600; font-size: 16.5px; }
  .need-photo {
    min-width: 0; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: #edf6fa;
    box-shadow: 0 28px 40px -36px rgba(0,61,127,.45);
  }
  .need-photo img {
    width: 100%; height: 100%; min-height: 260px; object-fit: cover; display: block;
  }

  /* ---------- steps ---------- */
  .steps { margin-top: 52px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
  .step { position: relative; padding-block: 30px 6px; padding-inline-end: clamp(12px, 2vw, 26px); min-width: 0; }
  .step::before {
    content: ""; position: absolute; inset-block-start: 0; inset-inline: 0;
    height: 2px; background: var(--line);
  }
  .step::after {
    content: ""; position: absolute; inset-block-start: -8px; inset-inline-start: 0;
    width: 12px; height: 12px; border-radius: 50%; background: var(--teal);
    border: 3px solid var(--paper);
  }
  .step .n { font-family: var(--en-display); font-size: 13px; font-weight: 700; color: var(--teal-text); letter-spacing: .08em; }
  .step h3 { margin: 8px 0 10px; font-size: 19px; }
  .step p { font-size: 15.5px; color: var(--muted); line-height: 1.75; }

  /* ---------- fields ---------- */
  .fields { margin-top: 46px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .field {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: clamp(20px, 2vw, 28px) clamp(18px, 2vw, 26px); transition: border-color .2s, transform .2s, box-shadow .2s;
    min-width: 0;
  }
  .field:hover { border-color: #B9CEE6; transform: translateY(-3px); box-shadow: 0 14px 34px -22px rgba(0,61,127,.5); }
  .field .ic {
    width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
    background: #E7F1FA; color: var(--navy); margin-bottom: 18px;
  }
  .field:nth-child(3n+2) .ic { background: #E2F5FA; color: var(--teal); }
  .field h3 { font-size: 18px; margin-bottom: 7px; }
  .field p { font-size: 15px; color: var(--muted); line-height: 1.7; }

  /* ---------- why (dark) ---------- */
  .why-grid { margin-top: 46px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
  .why {
    border: 1px solid rgba(126,177,222,.24); border-radius: var(--r-lg);
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
    padding: clamp(22px, 2vw, 30px) clamp(18px, 2vw, 28px);
    min-width: 0;
  }
  .why--full {
    grid-column: 1 / -1;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .why h3 { font-size: 19px; color: #fff; margin-bottom: 10px; }
  .why p { font-size: 15.5px; color: #A9C6E2; line-height: 1.75; }
  .why .num {
    font-family: var(--en-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--teal-light);
    margin-bottom: 16px;
  }
  .why-format-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
  .why-format-card {
    min-width: 0;
    padding: clamp(17px, 1.7vw, 21px);
    border: 1px solid rgba(126, 177, 222, .28);
    border-radius: var(--r-sm);
    background: rgba(255, 255, 255, .065);
    color: #D7E8F4;
    line-height: 1.6;
  }
  .why-format-title {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
  .why-format-detail {
    display: block;
    margin-top: 7px;
    color: #B5CEE6;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.65;
  }
  #page[dir="ltr"] .why-format-card { line-height: 1.5; }
  #page[dir="ltr"] .why-format-detail { line-height: 1.55; }

  /* ---------- support ---------- */
  .sup-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(24px, 4vw, 64px); align-items: start; }
  .funds { margin-top: 26px; display: flex; flex-direction: column; gap: 0; }
  .fund { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .fund svg { flex-shrink: 0; margin-top: 4px; color: var(--teal); }

  .facts { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--white); }
  .fact { display: grid; grid-template-columns: 150px 1fr; border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: 0; }
  .fact dt { background: #EDF3F9; padding: 16px 20px; font-weight: 700; font-size: 15px; color: var(--navy); }
  .fact dd { margin: 0; padding: 16px 20px; font-size: 15.5px; color: #33455C; line-height: 1.7; }

  /* ---------- cta ---------- */
  .cta { background: var(--navy); color: #fff; text-align: center; }
  .cta h2 { font-size: clamp(26px, 3.2vw, 38px); line-height: 1.4; }
  .cta p { margin: 16px auto 0; color: #B7D3EC; max-width: 56ch; font-size: 17px; }
  .cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }

  /* ---------- footer ---------- */
  .foot { background: var(--navy-deep); color: #9FC0DE; padding-block: 66px 30px; }
  .foot-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(160px, .7fr) minmax(0, 1.15fr);
    gap: clamp(28px, 5vw, 60px);
    align-items: start;
  }

  .foot-brand,
  .foot-nav,
  .foot-org { min-width: 0; }
  .foot-brand-logo { height: 46px; width: auto; filter: brightness(0) invert(1); }
  .foot img.incubator-foot {
    width: min(45px, 100%);
    height: auto;
    margin-bottom: 20px;
    filter: none;
  }
  .foot p { font-size: 15.5px; line-height: 1.8; margin-top: 22px; max-width: 45ch; }
  .foot h4 { margin: 0 0 16px; color: #fff; font-size: 16px; font-weight: 700; }
  .foot li + li { margin-top: 10px; }
  .foot a { text-decoration: none; font-size: 15.5px; transition: color .18s; }
  .foot a:hover { color: #fff; }
  .foot-nav a { display: inline-block; padding-block: 2px; }
  .foot-contact { max-width: 34ch; }
  .foot-contact li { display: flex; gap: 11px; font-size: 15.5px; align-items: flex-start; line-height: 1.65; }
  .foot-contact svg { flex-shrink: 0; margin-top: 4px; color: var(--teal-light); }
  .foot-address {
    overflow-wrap: anywhere;
    white-space: normal;
  }
  .foot-tag-social {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    direction: rtl;
  }
  .foot-social-icons {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .foot-tag-separator {
    color: rgba(255,255,255,.34);
  }
  .foot-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    border-radius: 6px;
    background: rgba(87,198,222,.16);
    color: var(--teal-light);
  }
  .foot-social-link svg {
    margin-top: 0;
  }
  .foot-bot .tag .tag-muted {
    color: #7EA3C4;
  }
  .foot-bot {
    margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
    display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
    font-size: 14px; color: #7EA3C4;
  }
  .foot-bot .tag { font-family: var(--en-display); font-weight: 600; color: var(--teal-light); }

  .pulse { animation: none; }
  @media (prefers-reduced-motion: reduce) {
    .pulse { display: none; }
    * { animation-duration: .001s !important; transition-duration: .001s !important; }
  }

  @media (max-width: 1040px) {
    .nav { display: none; }
    .burger { display: block; margin-inline-start: auto; }
    .top-act .btn { display: none; }
    .top-act { margin-inline-start: 0; }
    .hero-in { grid-template-columns: 1fr; gap: 40px; }
    .hero-art { order: -1; }
    .hero-art svg { max-width: 380px; }
    .need-grid, .sup-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 12px; }
    .fields, .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .why-format-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; }
  }
  @media (max-width: 640px) {
    #page { font-size: 16px; }
    .top-in { height: 68px; gap: 8px; }
    .brand img { height: 32px; }
    .lang { min-width: 44px; padding: 6px 10px; }
    .burger { padding: 8px 10px; }
    .mnav ul { padding: 12px 16px 18px; }
    .mnav a { font-size: 15px; }
    .steps, .fields, .why-grid, .foot-grid { grid-template-columns: 1fr; }
    .why-format-grid { grid-template-columns: 1fr; }
    .step { padding-inline-end: 0; }
    .fact { grid-template-columns: 1fr; }
    .fact dt { padding-block: 12px; }
    .fact dd { padding-top: 12px; }
    .hero-cta .btn, .cta-row .btn { flex: 1 1 100%; }
    .hero h1 { font-size: clamp(28px, 9vw, 40px); }
    .hero-note { gap: 8px 14px; }
    .cta h2 { font-size: clamp(24px, 7vw, 34px); }
  }
  @media (max-width: 420px) {
    .wrap { padding-inline: 14px; }
    .top-act { gap: 6px; }
    .hero-art svg { max-width: 260px; }
    .hero-note { font-size: 13px; }
    .field, .why, .step { word-break: break-word; }
    .foot-bot { flex-direction: column; align-items: flex-start; }
  }
