/* Toplum Vakfı — Home
   Breakpoints mirror the design: phone < 820px, desktop >= 820px, wide >= 1240px. */

:root {
  --navy-950: #06163A;
  --navy-900: #0A2350;
  --navy: #0B2A5B;
  --blue: #1E9BFF;
  --blue-strong: #1E7BFF;
  --blue-dark: #0B6FD6;
  --cyan: #00B4FF;
  --glow: #7fd6ff;
  --bg: #F3F8FF;
  --text: #0B2A5B;
  --text-2: #4A5F82;
  --text-3: #5A6F92;
  --text-4: #6A7FA2;
  --line: #E1EBF8;
  --line-2: #DCE8F8;
  --line-3: #EEF3FA;
  --tint: #EAF4FF;
  --tint-2: #F0F7FF;
  --field: #F7FAFF;
  --grad: linear-gradient(90deg, #00B4FF, #1E7BFF);
  --grad-diag: linear-gradient(135deg, #00B4FF, #1E7BFF);
  --gutter: clamp(16px, 3vw, 40px);
  --font: 'Cairo', system-ui, sans-serif;
  --font-script: 'Aref Ruqaa', 'Caveat', cursive;
  --shadow-card: 0 12px 34px rgba(11, 42, 91, .08);
  --shadow-pop: 0 26px 60px rgba(6, 22, 58, .2), 0 0 0 1px rgba(11, 42, 91, .06);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
button { font-family: inherit; cursor: pointer; }
input { font-family: inherit; }
img { max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
::-webkit-scrollbar { height: 6px; width: 8px; }
::-webkit-scrollbar-thumb { background: #bcd3f0; border-radius: 9px; }
@keyframes tvSpin { to { transform: rotate(360deg); } }
@keyframes tvPulse {
  0%, 100% { box-shadow: 0 0 10px 3px rgba(0, 180, 255, .7); }
  50% { box-shadow: 0 0 22px 8px rgba(0, 180, 255, .95); }
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ic { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; display: block; }
.ic--fill { stroke: none; }
html[dir="ltr"] .flip-ltr { transform: scaleX(-1); }
html[dir="rtl"] .flip-rtl { transform: scaleX(-1); }
.script { font-family: var(--font-script); }
html.no-deco .deco { display: none !important; }
section[id], #donate { scroll-margin-top: 90px; }

.skip {
  position: fixed; top: 8px; inset-inline-start: 8px; z-index: 200;
  background: #fff; color: var(--text); border-radius: 999px; padding: 10px 18px; font-weight: 800;
  box-shadow: var(--shadow-pop); transform: translateY(-160%); transition: transform .2s;
}
.skip:focus { transform: none; }

.wrap { max-width: 1360px; margin: 0 auto; padding-inline: var(--gutter); }
.card { background: #fff; border-radius: 24px; box-shadow: var(--shadow-card); }
.wave { display: block; width: 100%; }

/* pill CTA with the white arrow disc */
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  border: 0; border-radius: 999px; background: var(--grad); color: #fff;
  font-size: 14px; font-weight: 800;
  padding-block: 5px; padding-inline: 20px 5px;
}
.pill:hover { color: #fff; }
.pill__icon { flex: none; width: 30px; height: 30px; border-radius: 50%; background: #fff; display: grid; place-items: center; color: var(--blue-strong); }
.pill--shadow { box-shadow: 0 8px 20px rgba(30, 155, 255, .35); }
.pill--xs { gap: 8px; font-size: 13px; padding-block: 4px; padding-inline: 14px 4px; }
.pill--xs .pill__icon { width: 26px; height: 26px; }
.pill--md { gap: 12px; font-size: 15px; padding-inline: 22px 5px; box-shadow: 0 8px 22px rgba(30, 155, 255, .4); }
.pill--md .pill__icon { width: 32px; height: 32px; }
.pill--lg { gap: 14px; font-size: 16px; padding-block: 6px; padding-inline: 26px 6px; }
.pill--lg .pill__icon { width: 36px; height: 36px; }

/* ---------- campaign bar ---------- */
.topbar {
  position: relative; z-index: 61;
  background: linear-gradient(90deg, #0B2A5B, #1E7BFF); color: #fff;
  font-size: 14px; font-weight: 700;
}
.topbar__in {
  max-width: 1360px; margin: 0 auto; padding: 8px var(--gutter);
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; text-align: center;
}
.topbar__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--glow); animation: tvPulse 2s ease-in-out infinite; flex: none; }
.topbar__cta { border: 0; border-radius: 999px; background: #fff; color: var(--blue-strong); font-weight: 900; font-size: 13px; padding: 5px 16px; }
.topbar__close { border: 0; background: none; color: #fff; font-size: 18px; line-height: 1; padding: 4px 6px; opacity: .8; }
.topbar__close:hover { opacity: 1; }

/* ---------- desktop header ---------- */
.hdr { position: sticky; top: 0; z-index: 60; background: #fff; box-shadow: 0 6px 24px rgba(6, 22, 58, .06); }
.hdr__in {
  max-width: 1360px; margin: 0 auto; padding: 10px var(--gutter);
  display: flex; align-items: center; gap: clamp(14px, 2vw, 30px);
}
.hdr__logo { display: flex; align-items: center; }
.hdr__logo img { height: 58px; width: auto; display: block; }
.hdr__wave { position: absolute; top: 100%; left: 0; width: 100%; height: 34px; display: block; pointer-events: none; }
.chev { transition: transform .2s; }
[aria-expanded="true"] > .chev { transform: rotate(180deg); }

.dd { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  color: var(--text); font-size: 14px; font-weight: 700; padding: 7px 12px;
}
.lang-btn:hover { border-color: #9fcfff; }
.lang-btn[aria-expanded="true"] { background: var(--tint); }
.lang-menu { position: absolute; top: 100%; inset-inline-start: -6px; padding-top: 12px; z-index: 70; }
.lang-menu__caret { position: absolute; top: 6px; inset-inline-start: 28px; width: 14px; height: 14px; background: #fff; transform: rotate(45deg); border-radius: 3px; }
.lang-menu__panel {
  position: relative; background: #fff; border-radius: 18px; box-shadow: var(--shadow-pop);
  padding: 8px; width: 220px; display: flex; flex-direction: column; gap: 2px;
}
.lang-opt {
  display: flex; align-items: center; gap: 12px; text-align: start;
  background: transparent; border: 0; border-radius: 12px; padding: 8px 10px;
  font-size: 14px; font-weight: 700; color: var(--text);
}
.lang-opt:hover { background: var(--tint-2); }
.lang-opt__code {
  flex: none; width: 34px; height: 34px; border-radius: 10px; background: #EEF4FC; color: var(--text-2);
  display: grid; place-items: center; font-size: 12px; font-weight: 900; letter-spacing: .04em;
}
.lang-opt__name { flex: 1; }
.lang-opt__check { display: none; stroke: var(--blue-strong); }
.lang-opt.is-on { background: var(--tint-2); color: var(--blue-strong); }
.lang-opt.is-on .lang-opt__code { background: var(--grad-diag); color: #fff; }
.lang-opt.is-on .lang-opt__check { display: block; }

.nav { display: flex; flex-wrap: wrap; gap: clamp(14px, 2vw, 30px); }
.nav__item { position: relative; }
.nav__link { display: flex; align-items: center; gap: 5px; color: var(--text); font-size: 15px; font-weight: 700; padding: 14px 0; }
.nav__link:hover, .nav__item.is-open > .nav__link { color: var(--blue); }
.nav__drop { position: absolute; top: 100%; inset-inline-start: -22px; padding-top: 12px; z-index: 70; }
.nav__caret {
  position: absolute; top: 6px; inset-inline-start: 34px; width: 14px; height: 14px;
  background: #fff; transform: rotate(45deg); border-radius: 3px; box-shadow: -3px -3px 6px rgba(6, 22, 58, .05);
}
.nav__panel {
  position: relative; background: #fff; border-radius: 20px; box-shadow: var(--shadow-pop);
  padding: 10px; width: 280px; max-width: calc(100vw - 40px);
}
.nav__panel--wide { width: 500px; }
.nav__head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 8px 12px 12px; margin-bottom: 6px; border-bottom: 1px solid var(--line-3);
}
.nav__head-title { font-size: 13px; font-weight: 900; color: var(--text); }
.nav__all {
  display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 800;
  color: var(--blue-strong); padding: 4px 10px; border-radius: 999px; background: var(--tint);
}
.nav__all:hover { background: #D8EBFF; color: var(--blue-dark); }
.nav__grid { display: grid; grid-template-columns: 1fr; gap: 2px; }
.nav__panel--wide .nav__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.nav__kid {
  display: flex; align-items: center; gap: 12px; padding: 9px 10px; border-radius: 14px;
  color: var(--text); font-size: 14px; font-weight: 700; line-height: 1.45;
}
.nav__kid:hover { background: var(--tint-2); color: var(--blue-strong); }
.nav__kid-ic {
  flex: none; width: 36px; height: 36px; border-radius: 11px;
  background: linear-gradient(135deg, #E8F5FF, #D3E8FF); color: var(--blue-strong); display: grid; place-items: center;
}
.nav__kid-label { flex: 1; min-width: 0; }

.hdr__actions { margin-inline-start: auto; display: flex; align-items: center; gap: 12px; }
.icon-btn {
  position: relative; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--text); display: grid; place-items: center;
}
.icon-btn:hover { border-color: var(--blue); color: var(--blue-strong); }
.count-badge {
  position: absolute; top: -4px; inset-inline-end: -4px; min-width: 18px; height: 18px; padding: 0 4px;
  border-radius: 9px; background: var(--blue); color: #fff; font-size: 11px; font-weight: 800; display: grid; place-items: center;
}
.btn-donate {
  display: flex; align-items: center; white-space: nowrap;
  background: var(--grad); color: #fff; border-radius: 999px; padding: 11px 26px;
  font-weight: 800; font-size: 15px; box-shadow: 0 2px 6px rgba(30, 123, 255, .22);
}
.btn-donate:hover { color: #fff; filter: brightness(1.08); }

/* ---------- mobile header + menu ---------- */
.mhdr {
  position: sticky; top: 0; z-index: 60;
  background: rgba(6, 22, 58, .92); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  direction: ltr; display: grid; grid-template-columns: 48px 1fr 48px; align-items: center; padding: 8px 12px;
}
.mhdr__btn { width: 44px; height: 44px; border: 0; background: none; color: #fff; display: grid; place-items: center; }
.mhdr__logo { justify-self: center; background: #fff; border-radius: 14px; padding: 3px 10px; }
.mhdr__logo img { height: 44px; width: auto; display: block; }
.mmenu {
  position: fixed; inset: 0; z-index: 90; background: rgba(6, 22, 58, .97); color: #fff;
  padding: 24px; display: flex; flex-direction: column; gap: 8px; overflow: auto; overscroll-behavior: contain;
}
.mmenu__close {
  align-self: flex-end; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2); background: none; color: #fff; font-size: 22px;
}
.mmenu__group { border-bottom: 1px solid rgba(255, 255, 255, .08); padding: 8px 0; }
.mmenu__link { color: #fff; font-size: 21px; font-weight: 800; display: block; padding: 6px 0; }
.mmenu__link:hover { color: var(--glow); }
.mmenu__kids { display: flex; flex-wrap: wrap; gap: 6px 14px; }
.mmenu__kid { color: #9fcfff; font-size: 14px; font-weight: 600; padding: 4px 0; }
.mmenu__kid:hover { color: #fff; }
.mmenu__langs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.mmenu__lang {
  border-radius: 999px; border: 1px solid rgba(120, 190, 255, .4); background: transparent;
  color: #fff; padding: 10px 18px; font-weight: 700; font-size: 14px;
}
.mmenu__lang.is-on { background: var(--blue); }
html.menu-open { overflow: hidden; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(120deg, #06163A 0%, #0B2A5B 100%); color: #fff; }
.hero__media { position: absolute; top: 0; bottom: 0; inset-inline-end: 0; width: 100%; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__fade { position: absolute; inset: 0; pointer-events: none; background: rgba(10, 35, 80, .72); }
.hero__fade-b { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, #0A2350 0%, rgba(10, 35, 80, 0) 30%); }
.hero__q1 {
  position: absolute; top: 22%; inset-inline-end: 6%; text-align: center;
  font-size: clamp(34px, 3.4vw, 52px); line-height: 1.25; color: #fff;
  transform: rotate(-8deg); text-shadow: 0 4px 20px rgba(0, 0, 0, .35); pointer-events: none;
}
.hero__q2 {
  position: absolute; bottom: 13%; inset-inline-end: 7%; display: flex; align-items: center; gap: 12px;
  font-size: clamp(24px, 2.1vw, 32px); line-height: 1.25; color: #fff; white-space: nowrap;
  transform: rotate(-6deg); text-shadow: 0 4px 18px rgba(0, 0, 0, .45); pointer-events: none;
}
/* Latin phrases run much longer than the Arabic ones: keep them clear of the headline */
html[dir="ltr"] .hero__q1 { max-width: 300px; font-size: clamp(30px, 2.8vw, 44px); }
.hero__q2 svg { filter: drop-shadow(0 0 8px rgba(0, 180, 255, .7)); }
.hero__q2-text { display: flex; flex-direction: column; align-items: center; }
.hero__planet {
  display: none; position: absolute; top: 8%; inset-inline-start: -360px; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle at 70% 40%, #1a4f9c 0%, #0b2a5b 45%, #06163A 70%);
  box-shadow: 0 0 60px 10px rgba(0, 180, 255, .35), inset -20px 0 60px rgba(0, 180, 255, .45); pointer-events: none;
}
.script--wide { display: none; }

.hero__in {
  position: relative; z-index: 2; max-width: 1360px; margin: 0 auto;
  padding: 70px var(--gutter) 150px;
  display: flex; flex-wrap: wrap; align-items: center; gap: clamp(24px, 4vw, 64px); pointer-events: none;
}

.orbit { position: relative; width: min(100%, 430px); aspect-ratio: 1; flex: 0 0 auto; pointer-events: auto; scroll-margin-top: 90px; }
.orbit__ring {
  position: absolute; inset: 0; border-radius: 50%; border: 1.5px solid rgba(30, 155, 255, .6);
  box-shadow: 0 0 40px rgba(30, 155, 255, .35), inset 0 0 40px rgba(30, 155, 255, .2);
}
.orbit__spin { position: absolute; inset: 0; border-radius: 50%; animation: tvSpin 60s linear infinite; }
.orbit__spin span { position: absolute; border-radius: 50%; background: var(--glow); }
.orbit__spin span:nth-child(1) { left: 50%; top: 0; width: 14px; height: 14px; margin: -7px; animation: tvPulse 2.6s ease-in-out infinite; }
.orbit__spin span:nth-child(2) { left: 93.3%; top: 25%; width: 12px; height: 12px; margin: -6px; animation: tvPulse 3s ease-in-out infinite; }
.orbit__spin span:nth-child(3) { left: 93.3%; top: 75%; width: 10px; height: 10px; margin: -5px; animation: tvPulse 2.2s ease-in-out infinite; }
.orbit__spin span:nth-child(4) { left: 6.7%; top: 75%; width: 13px; height: 13px; margin: -6.5px; animation: tvPulse 2.8s ease-in-out infinite; }
.orbit__spin span:nth-child(5) { left: 6.7%; top: 25%; width: 9px; height: 9px; margin: -4.5px; animation: tvPulse 3.3s ease-in-out infinite; }
.orbit__core {
  position: absolute; inset: 8%; border-radius: 50%; padding: 7%;
  background: radial-gradient(circle at 50% 25%, rgba(30, 155, 255, .22), rgba(6, 22, 58, .88) 70%);
  border: 1px solid rgba(120, 190, 255, .3); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center;
}
.orbit__title { margin: 0; font-size: clamp(22px, 2vw, 28px); font-weight: 900; line-height: 1.2; }
.orbit__sub { font-size: 14px; color: #cfe3ff; font-weight: 600; }
.stepper { display: flex; align-items: center; gap: 14px; direction: ltr; }
.stepper__btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(160, 210, 255, .5);
  background: rgba(255, 255, 255, .08); color: #fff; font-size: 22px; line-height: 1;
}
.stepper__btn:hover { background: rgba(255, 255, 255, .16); }
.stepper__val { font-size: clamp(32px, 3vw, 42px); font-weight: 900; min-width: 110px; letter-spacing: .5px; }
.orbit__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px; }
.freq { display: flex; border-radius: 999px; border: 1px solid rgba(160, 210, 255, .45); padding: 2px; }
.freq button {
  border: 0; border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 800;
  white-space: nowrap; color: #fff; background: transparent;
}
.freq button[aria-pressed="true"] { background: var(--grad); }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; direction: ltr; }
.chip {
  border-radius: 999px; padding: 6px 13px; font-size: 13px; font-weight: 800; color: #fff;
  border: 1px solid rgba(160, 210, 255, .35); background: rgba(255, 255, 255, .06);
}
.chip[aria-pressed="true"] { background: var(--grad); border-color: #3fb6ff; box-shadow: 0 0 16px rgba(0, 180, 255, .6); }
.orbit__donate {
  display: flex; align-items: center; gap: 8px; border: 0; border-radius: 999px;
  padding: 12px 38px; font-size: 17px; font-weight: 900; color: #fff;
  background: var(--grad); box-shadow: 0 0 26px rgba(0, 180, 255, .6);
}
.orbit__donate:hover { filter: brightness(1.08); }
.orbit__cap { font-size: 12.5px; color: #cfe3ff; font-weight: 600; }

/* custom select (designation) */
.sel { position: relative; }
.sel__btn { display: flex; align-items: center; color: #fff; }
.sel__btn:hover, .sel__btn[aria-expanded="true"] { border-color: var(--glow); }
.sel__label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sel__pop { position: absolute; bottom: 100%; z-index: 80; }
.sel--hero .sel__btn {
  gap: 6px; max-width: 150px; border-radius: 999px; border: 1px solid rgba(160, 210, 255, .45);
  background: rgba(6, 22, 58, .6); font-size: 12px; font-weight: 800; padding: 5px 10px 5px 12px;
}
.sel--hero .sel__pop { left: 50%; transform: translateX(-50%); padding-bottom: 10px; }
.sel__caret { position: absolute; bottom: 4px; left: 50%; margin-left: -7px; width: 14px; height: 14px; background: #fff; transform: rotate(45deg); border-radius: 3px; }
.listbox {
  position: relative; background: #fff; border-radius: 18px;
  box-shadow: 0 26px 60px rgba(6, 22, 58, .35), 0 0 0 1px rgba(11, 42, 91, .06);
  padding: 6px; width: 250px; max-height: 280px; overflow: auto; display: flex; flex-direction: column; gap: 2px; outline: none;
}
.listbox__head { padding: 8px 12px 6px; font-size: 12px; font-weight: 900; color: #6B7FA3; text-align: start; }
.opt {
  display: flex; align-items: center; gap: 10px; width: 100%; text-align: start; border: 0; background: transparent;
  border-radius: 12px; padding: 9px 12px; font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.45; cursor: pointer;
}
.opt:hover, .opt.is-active { background: var(--tint-2); color: var(--blue-strong); }
.opt[aria-selected="true"] { background: var(--tint-2); color: var(--blue-strong); }
.opt__dot { flex: none; width: 8px; height: 8px; border-radius: 50%; background: #D3E2F5; }
.opt[aria-selected="true"] .opt__dot { background: var(--blue); }
.opt__label { flex: 1; min-width: 0; }
.opt__check { display: none; stroke: var(--blue-strong); }
.opt[aria-selected="true"] .opt__check { display: block; }

.hero__text { flex: 1 1 320px; max-width: 520px; pointer-events: auto; }
.hero__h1 { margin: 0; font-weight: 900; font-size: clamp(52px, 6.4vw, 96px); line-height: 1.2; letter-spacing: -.5px; }
.hero__h1 span { display: block; }
.hero__l1 { color: #fff; }
.hero__l2 { color: var(--blue); text-shadow: 0 0 30px rgba(30, 155, 255, .45); }
.hero__sub { margin: 18px 0 8px; font-size: clamp(17px, 1.5vw, 21px); font-weight: 800; text-wrap: pretty; }
.hero__p { margin: 0 0 26px; font-size: 15px; line-height: 1.8; color: #cfe0f7; text-wrap: pretty; }
.hero__cta { box-shadow: 0 10px 28px rgba(30, 155, 255, .5); }
.hero__cta:hover { filter: brightness(1.08); }

/* ---------- stats ---------- */
.stats { position: relative; z-index: 3; margin-top: -100px; }
.stats__wave { display: block; width: 100%; height: clamp(40px, 7vw, 100px); }
.stats__sec { background: #fff; }
.stats__in {
  max-width: 1360px; margin: 0 auto; padding: 0 var(--gutter) 24px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px;
}
.stats__quote { flex: 0 0 250px; display: flex; align-items: flex-start; gap: 10px; }
.stats__qmark { font-size: 78px; line-height: .8; color: var(--blue); font-weight: 900; font-family: Georgia, serif; }
.stats__qtext { margin: 0; font-size: 17px; font-weight: 700; line-height: 1.7; color: var(--text); }
.stats__grid { flex: 1 1 400px; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.stat { text-align: center; padding: 10px 6px; border-inline-start: 1px solid #E6EEF9; }
.stat > .ic, .prog__go > .ic { display: inline-block; } /* inline like the design: keeps its line-box height */
.stat__num { font-size: clamp(18px, 1.9vw, 26px); font-weight: 900; color: var(--text); direction: ltr; line-height: 1.3; margin-top: 4px; font-variant-numeric: tabular-nums; }
.stat__label { font-size: clamp(11px, 1vw, 13px); color: var(--text-3); font-weight: 600; }

/* ---------- programs ---------- */
.programs { background: #fff; padding: 24px 0 30px; }
.programs__in {
  max-width: 1360px; margin: 0 auto; padding: 0 var(--gutter);
  display: flex; flex-wrap: wrap; align-items: center; gap: 28px;
}
.programs__intro { flex: 1 1 280px; max-width: 340px; min-width: 0; }
.programs__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.h-sec { margin: 0; font-weight: 900; line-height: 1.45; font-size: clamp(26px, 2.6vw, 38px); }
.programs__t1 { display: block; color: var(--blue); }
.programs__t2 { color: var(--text); }
.programs__all { flex: none; }
.programs__desc { margin: 14px 0 22px; font-size: 15px; line-height: 1.8; color: var(--text-2); text-wrap: pretty; }
.programs__rail {
  flex: 999 1 620px; min-width: 0; display: flex; gap: 14px;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 10px 4px 18px;
}
.programs__rail::-webkit-scrollbar { display: none; }
.prog {
  flex: 1 0 150px; max-width: 220px; scroll-snap-align: start;
  background: #fff; border-radius: 18px; box-shadow: 0 10px 28px rgba(11, 42, 91, .10); overflow: hidden;
  color: var(--text); display: flex; flex-direction: column; text-align: center; transition: transform .25s;
}
.prog:hover { transform: translateY(-4px); color: var(--text); }
.prog__media { position: relative; height: 118px; background: #EAF1FB; }
.prog__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-wave { position: absolute; bottom: -1px; left: 0; width: 100%; height: 26px; pointer-events: none; }
.prog__ic, .proj__ic {
  position: relative; width: 44px; height: 44px; margin: -30px auto 0; border-radius: 50%; background: #fff;
  box-shadow: 0 4px 14px rgba(30, 155, 255, .3); display: grid; place-items: center;
}
.prog__body { padding: 8px 10px 12px; display: flex; flex-direction: column; align-items: center; gap: 2px; flex: 1; }
.prog__title { font-size: 14.5px; font-weight: 800; line-height: 1.35; }
.prog__sub { font-size: 12px; color: var(--text-4); font-weight: 600; line-height: 1.6; }
.prog__kicker { font-size: 11px; font-weight: 800; color: var(--blue); letter-spacing: .02em; }
.prog--campaign { box-shadow: 0 10px 28px rgba(30, 155, 255, .22), inset 0 0 0 2px rgba(30, 155, 255, .4); }
.prog__go { margin-top: auto; padding-top: 8px; color: var(--blue); }

/* ---------- impact ---------- */
.wave--impact-top { height: clamp(40px, 6vw, 90px); background: #fff; }
.wave--impact-bottom { height: clamp(40px, 6vw, 90px); background: var(--bg); }
.impact {
  position: relative; overflow: hidden; color: #fff; padding: 10px 0 30px;
  background:
    radial-gradient(ellipse at 45% 50%, rgba(30, 120, 255, .28), rgba(10, 35, 80, 0) 60%),
    radial-gradient(rgba(140, 190, 255, .14) 1px, transparent 1.4px) 0 0 / 28px 28px,
    #0A2350;
}
.impact__in {
  max-width: 1360px; margin: 0 auto; padding: 0 var(--gutter);
  display: flex; flex-wrap: wrap-reverse; align-items: center; gap: 32px;
}
.impact__map { position: relative; flex: 1.7 1 520px; min-width: 0; }
.impact__frame { position: relative; width: 100%; aspect-ratio: 1.9 / 1; }
.impact__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: transparent; color-scheme: normal; }
.impact__text { flex: 1 1 300px; min-width: 0; }
.impact__title { margin: 0 0 10px; font-size: clamp(26px, 2.6vw, 38px); font-weight: 900; }
.impact__p { margin: 0 0 22px; max-width: 420px; color: #cfe0f7; font-size: 15px; line-height: 1.8; text-wrap: pretty; }
.impact__tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; max-width: 380px; }
.tile {
  padding: 12px 8px; border-radius: 16px; text-align: center;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(120, 180, 255, .28);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.tile__val { font-size: 26px; font-weight: 900; direction: ltr; }
.tile__label { font-size: 13px; color: #bcd3f0; font-weight: 600; }
.impact__explore { display: none; }
.impact__q {
  position: absolute; top: 16%; inset-inline-start: 3%; text-align: center;
  font-size: 34px; line-height: 1.3; color: #fff; transform: rotate(-8deg); pointer-events: none;
}

/* ---------- stories + transparency ---------- */
.stories { padding: 20px 0 10px; }
.stories__grid {
  max-width: 1360px; margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr)); gap: 24px;
}
.card-title { margin: 0 0 8px; font-size: clamp(22px, 2vw, 28px); font-weight: 900; color: var(--blue-strong); }
.trans {
  position: relative; overflow: hidden; background: linear-gradient(160deg, #fff 45%, #E6F1FF);
  padding: clamp(20px, 3vw, 32px); display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
}
.trans__ring { position: absolute; bottom: -120px; inset-inline-end: -100px; width: 320px; height: 320px; border-radius: 50%; border: 1.5px solid rgba(30, 155, 255, .25); }
.trans__main { position: relative; flex: 2 1 300px; min-width: 0; display: flex; flex-direction: column; gap: 18px; }
.trans__p { margin: 0; font-size: 14.5px; line-height: 1.8; color: var(--text-2); text-wrap: pretty; }
.badges { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.badge-item {
  display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid #E3ECF8;
  border-radius: 16px; padding: 10px 12px; box-shadow: 0 4px 14px rgba(11, 42, 91, .05);
}
.badge-item__ic { flex: none; width: 38px; height: 38px; border-radius: 50%; background: var(--tint); display: grid; place-items: center; }
.badge-item__label { font-size: 13px; font-weight: 800; line-height: 1.4; color: var(--text); }
.trans__cta { align-self: flex-start; }
.trans__side { position: relative; flex: 1 1 170px; min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.shield-badge {
  position: relative; width: 150px; height: 150px; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle, #fff 55%, rgba(30, 155, 255, .12));
  box-shadow: 0 0 0 10px rgba(30, 155, 255, .06), 0 16px 40px rgba(30, 155, 255, .25);
}
.shield-badge svg { filter: drop-shadow(0 8px 16px rgba(30, 155, 255, .4)); }
.shield-badge__dot { position: absolute; top: 6px; inset-inline-end: 14px; width: 10px; height: 10px; border-radius: 50%; background: var(--glow); animation: tvPulse 2.6s ease-in-out infinite; }
.trans__q { font-size: 28px; line-height: 1.3; color: var(--text); transform: rotate(-5deg); }

.story { padding: clamp(16px, 2.4vw, 24px); display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.story__main { flex: 1 1 260px; min-width: 0; }
.story__title { margin: 0; font-size: clamp(22px, 2vw, 28px); font-weight: 900; color: var(--blue-strong); }
.story__sub { font-size: 16px; font-weight: 800; margin-bottom: 12px; }
.story__quote { margin: 0 0 16px; font-size: 14px; line-height: 1.85; color: var(--text-2); text-wrap: pretty; }
.story__person { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.story__avatar { width: 44px; height: 44px; flex: none; border-radius: 50%; object-fit: cover; display: block; background: #EAF1FB; }
.story__name { font-weight: 800; font-size: 14px; }
.story__role { font-size: 12px; color: var(--text-4); }
.story__video { position: relative; flex: 1.2 1 280px; min-width: 0; aspect-ratio: 16 / 10; border-radius: 18px; overflow: hidden; background: #06163A; }
.story__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-btn { position: absolute; inset: 0; display: block; background: #06163A; }
.video-btn img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .85; transition: opacity .25s; }
.video-btn:hover img { opacity: 1; }
.video-btn__play {
  position: absolute; left: 50%; top: 50%; width: 66px; height: 66px; margin: -33px; border-radius: 50%;
  background: #fff; display: grid; place-items: center; box-shadow: 0 0 0 10px rgba(255, 255, 255, .25); transition: transform .2s;
}
.video-btn:hover .video-btn__play { transform: scale(1.06); }
.video-btn__q {
  position: absolute; bottom: 10%; inset-inline-start: 7%; font-size: 26px; line-height: 1.2; color: #fff;
  transform: rotate(-8deg); text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}
html[dir="ltr"] .video-btn__q { font-size: 20px; max-width: calc(50% - 64px); } /* stays left of the play button */
.reg { max-width: 1360px; margin: 22px auto 0; padding: 0 var(--gutter); }
.reg__in {
  margin: 0; display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center; text-wrap: pretty;
  background: #fff; border: 1px solid var(--line-2); border-radius: 20px; padding: 12px 22px;
  font-size: 14px; font-weight: 700; color: var(--text);
}

/* ---------- latest projects ---------- */
.projects { padding: 48px 0 40px; }
.projects__head { margin-bottom: 24px; }
.projects__title { margin: 0; font-size: clamp(26px, 2.6vw, 38px); font-weight: 900; color: var(--blue); }
.projects__sub { margin: 6px 0 0; color: var(--text-2); font-size: 15px; }
.projects__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr)); gap: 20px; }
.proj { background: #fff; border-radius: 20px; box-shadow: 0 10px 28px rgba(11, 42, 91, .10); overflow: hidden; display: flex; flex-direction: column; }
.proj__media { position: relative; height: 170px; background: #EAF1FB; }
.proj__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proj__media .card-wave { height: 30px; }
.proj__ic { width: 46px; height: 46px; margin-top: -32px; }
.proj__body { padding: 10px 16px 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.proj__title { margin: 0; font-size: 15.5px; font-weight: 800; line-height: 1.5; text-align: center; text-wrap: pretty; }
.proj__progress { margin-top: auto; }
.proj__progress--open { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--text-3); text-align: center; }
.proj__badge {
  position: absolute; top: 12px; inset-inline-start: 12px; z-index: 1;
  background: rgba(6, 22, 58, .8); color: var(--glow); border-radius: 999px; padding: 4px 12px; font-size: 12px; font-weight: 800;
}
.bar { height: 8px; border-radius: 9px; background: #E6EEF9; overflow: hidden; }
.bar__fill { height: 100%; border-radius: 9px; background: var(--grad); }
.proj__nums { display: flex; justify-content: space-between; gap: 8px; margin-top: 6px; font-size: 12px; color: var(--text-3); font-weight: 700; }
.proj__nums b { color: var(--text); }
.amount-field {
  display: flex; align-items: center; direction: ltr; border: 1px solid var(--line-2);
  border-radius: 999px; padding: 0 14px; background: var(--field);
}
.amount-field:focus-within { border-color: var(--blue); }
.amount-field span { font-weight: 800; color: var(--blue); }
.amount-field input {
  flex: 1; min-width: 0; border: 0; background: transparent; padding: 10px 8px;
  font-size: 15px; font-weight: 700; color: var(--text); outline: none;
}
.proj__actions { display: flex; gap: 8px; }
.proj__add {
  flex: 1.3; border: 0; border-radius: 999px; padding: 10px 8px; font-size: 13.5px; font-weight: 800; color: #fff;
  background: var(--grad); box-shadow: 0 6px 16px rgba(30, 155, 255, .3);
}
.proj__add.is-added { background: var(--navy); cursor: default; }
.proj__add.is-paused { background: #9fb0c8; cursor: not-allowed; box-shadow: none; }
.proj__more {
  flex: 1; display: grid; place-items: center; text-align: center; border: 1.5px solid var(--blue); border-radius: 999px;
  padding: 9px 8px; font-size: 13.5px; font-weight: 800; color: var(--blue-strong);
}
.proj__more:hover { background: var(--tint-2); }

/* ---------- giving: monthly + gift ---------- */
.giving { padding: 10px 0 40px; }
.giving__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 24px; }
.monthly {
  position: relative; overflow: hidden; color: #fff; border-radius: 28px;
  background: radial-gradient(ellipse at 15% 20%, rgba(30, 155, 255, .28), rgba(6, 22, 58, 0) 55%), linear-gradient(150deg, #06163A, #0B2A5B);
  padding: clamp(22px, 3.4vw, 44px); display: flex; flex-wrap: wrap; align-items: stretch; gap: clamp(20px, 3vw, 40px);
}
.monthly__ring1 { position: absolute; bottom: -160px; inset-inline-start: -120px; width: 380px; height: 380px; border-radius: 50%; border: 1.5px solid rgba(30, 155, 255, .45); box-shadow: 0 0 50px rgba(30, 155, 255, .22); }
.monthly__ring2 { position: absolute; bottom: -100px; inset-inline-start: -60px; width: 260px; height: 260px; border-radius: 50%; border: 1px dashed rgba(127, 214, 255, .35); }
.monthly__dot { position: absolute; bottom: 170px; inset-inline-start: 40px; width: 10px; height: 10px; border-radius: 50%; background: var(--glow); animation: tvPulse 2.6s ease-in-out infinite; }
.monthly__main { position: relative; flex: 1.35 1 380px; min-width: 0; display: flex; flex-direction: column; gap: 16px; }
.tag {
  display: inline-flex; align-items: center; gap: 6px; border: 1px solid rgba(127, 214, 255, .4); border-radius: 999px;
  padding: 4px 12px; font-size: 12.5px; font-weight: 800; color: var(--glow); background: rgba(30, 155, 255, .12);
}
.monthly__title { margin: 0; font-size: clamp(26px, 2.8vw, 40px); font-weight: 900; line-height: 1.3; }
.monthly__p { margin: 0; max-width: 520px; color: #cfe0f7; font-size: 15.5px; line-height: 1.85; text-wrap: pretty; }
.mon-chips { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; direction: ltr; }
.mon-chip {
  display: flex; flex-direction: column; align-items: center;
  border-radius: 18px; padding: 16px 6px; color: #fff; border: 1px solid rgba(160, 210, 255, .35); background: rgba(255, 255, 255, .06);
}
.mon-chip:hover { border-color: rgba(160, 210, 255, .7); }
.mon-chip[aria-pressed="true"] { background: var(--grad); border-color: #3fb6ff; box-shadow: 0 0 16px rgba(0, 180, 255, .55); }
.mon-chip__v { font-size: clamp(20px, 2vw, 26px); font-weight: 900; }
.mon-chip__p { font-size: 11.5px; color: #cfe0f7; font-weight: 700; }
.monthly__row { display: flex; flex-wrap: wrap; gap: 10px; }
.dark-field {
  flex: 1 1 150px; display: flex; align-items: center; direction: ltr;
  border: 1px solid rgba(160, 210, 255, .45); border-radius: 999px; padding: 0 16px; background: rgba(255, 255, 255, .06);
}
.dark-field:focus-within { border-color: var(--glow); }
.dark-field span { font-weight: 900; color: var(--glow); }
.dark-field input {
  flex: 1; min-width: 0; border: 0; background: transparent; color: #fff;
  padding: 12px 8px; font-size: 15px; font-weight: 800; outline: none;
}
.dark-field input::placeholder { color: rgba(207, 224, 247, .7); }
.sel--mon { flex: 1 1 180px; }
.sel--mon .sel__btn {
  width: 100%; gap: 10px; text-align: start; border-radius: 999px; border: 1px solid rgba(160, 210, 255, .45);
  background: rgba(6, 22, 58, .55); font-size: 14px; font-weight: 700; padding: 12px 16px;
}
.sel--mon .sel__label { flex: 1; min-width: 0; }
.sel--mon .sel__pop { inset-inline: 0; padding-bottom: 8px; }
.sel--mon .listbox { width: auto; min-width: 240px; max-height: 300px; }
.monthly__cta { align-self: flex-start; font-weight: 900; box-shadow: 0 0 26px rgba(0, 180, 255, .5); }
.monthly__cta:hover { filter: brightness(1.08); }
.summary {
  position: relative; flex: 1 1 300px; min-width: 0; display: flex; flex-direction: column; gap: 14px;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(120, 180, 255, .28); border-radius: 22px;
  padding: clamp(18px, 2.4vw, 28px); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.summary__label { font-size: 13px; color: #9fc3ee; font-weight: 800; }
.summary__amt { display: flex; align-items: baseline; justify-content: flex-end; gap: 8px; direction: ltr; }
.summary__per { font-size: 14px; color: #cfe0f7; font-weight: 700; }
.summary__big { font-size: clamp(40px, 4vw, 56px); font-weight: 900; line-height: 1; text-shadow: 0 0 24px rgba(30, 155, 255, .5); }
.summary__year {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  border-radius: 14px; background: rgba(30, 155, 255, .14); padding: 10px 14px; font-size: 14px; font-weight: 700;
}
.summary__year b { direction: ltr; color: var(--glow); font-size: 17px; }
.summary__hr { height: 1px; background: rgba(120, 180, 255, .2); }
.benefits { display: flex; flex-direction: column; gap: 14px; }
.benefit { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #dbe8fa; font-weight: 600; }
.benefit__ic { flex: none; width: 24px; height: 24px; border-radius: 50%; background: rgba(30, 155, 255, .25); display: grid; place-items: center; }
.summary__q { margin-top: auto; padding-top: 8px; font-size: 24px; line-height: 1.4; color: #fff; text-align: center; opacity: .95; }

.gift { padding: clamp(22px, 3vw, 34px); display: flex; flex-wrap: wrap; gap: 22px; }
.gift__form { flex: 1 1 260px; min-width: 0; display: flex; flex-direction: column; gap: 12px; }
.gift__title { margin: 0; font-size: clamp(22px, 2.2vw, 30px); font-weight: 900; color: var(--blue-strong); }
.gift__p { margin: 0; color: var(--text-2); font-size: 14.5px; line-height: 1.8; }
.occ { display: flex; flex-wrap: wrap; gap: 6px; }
.occ button, .gift-chips button {
  border-radius: 999px; font-weight: 800; color: var(--blue-strong); background: #fff; border: 1.5px solid var(--blue);
}
.occ button { white-space: nowrap; padding: 7px 16px; font-size: 13px; }
.occ button[aria-pressed="true"], .gift-chips button[aria-pressed="true"] { color: #fff; background: var(--grad); }
.field {
  min-width: 0; border: 1px solid var(--line-2); background: var(--field); border-radius: 14px;
  padding: 11px 14px; font-size: 14.5px; color: var(--text); outline-color: var(--blue);
}
.field.is-invalid { border-color: #e5484d; }
.gift-chips { display: flex; justify-content: flex-end; gap: 6px; direction: ltr; }
.gift-chips button { flex: 1; padding: 8px 6px; font-size: 14px; font-weight: 900; }
.gift__cta { align-self: flex-start; }
.gift__note { font-size: 12px; color: var(--text-4); }
.cert {
  flex: 1 1 220px; min-width: 0; align-self: center; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 22px 18px;
  background: linear-gradient(160deg, #fff, #EEF5FF); border: 1.5px solid #CFE0F7; border-radius: 18px;
  box-shadow: inset 0 0 0 6px #fff, 0 10px 26px rgba(11, 42, 91, .08);
}
.cert img { height: 52px; width: auto; }
.cert__occ { font-size: 12px; font-weight: 800; color: var(--blue); letter-spacing: .5px; }
.cert__title { font-size: 18px; font-weight: 900; }
.cert__line { font-size: 12.5px; color: var(--text-2); line-height: 1.7; }
.cert__name { font-size: 30px; color: var(--text); border-bottom: 1.5px dashed #9fc3ee; padding: 0 14px 4px; min-width: 70%; overflow-wrap: anywhere; }
.cert__foot { display: flex; justify-content: space-between; width: 100%; margin-top: 6px; font-size: 11px; color: var(--text-4); font-weight: 700; direction: ltr; }

/* ---------- zakat + faq ---------- */
.faq-sec { padding: 0 0 40px; }
.faq-sec__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); align-items: start; gap: 24px; }
.zakat { margin: 0; padding: clamp(22px, 3vw, 34px); display: flex; flex-direction: column; gap: 14px; }
.zakat__title { margin: 0; font-size: clamp(22px, 2.2vw, 30px); font-weight: 900; color: var(--blue-strong); }
.zakat__label { display: flex; flex-direction: column; gap: 6px; font-weight: 700; font-size: 14px; }
.zakat__field { display: flex; align-items: center; direction: ltr; border: 1px solid var(--line-2); border-radius: 14px; padding: 0 14px; background: var(--field); }
.zakat__field:focus-within { border-color: var(--blue); }
.zakat__field span { font-weight: 900; color: var(--blue); }
.zakat__field input { flex: 1; min-width: 0; border: 0; background: transparent; padding: 12px 8px; font-size: 17px; font-weight: 800; color: var(--text); outline: none; }
.zakat__result {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: linear-gradient(90deg, #06163A, #0B2A5B); color: #fff; border-radius: 16px; padding: 14px 18px;
}
.zakat__result span { font-weight: 700; }
.zakat__result output { font-size: 26px; font-weight: 700; direction: ltr; color: var(--glow); }
.zakat__cta { align-self: flex-start; }
.zakat__note { margin: 0; font-size: 12.5px; color: var(--text-4); line-height: 1.8; }
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq__title { margin: 0 0 4px; font-size: clamp(22px, 2.2vw, 30px); font-weight: 900; }
.faq__item { background: #fff; border-radius: 18px; box-shadow: 0 6px 18px rgba(11, 42, 91, .06); overflow: hidden; }
.faq__q {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 18px;
  font-size: 15.5px; font-weight: 800; color: var(--text); cursor: pointer; list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ''; }
.faq__q-text { flex: 1; min-width: 0; line-height: 1.6; }
.faq__sign {
  flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--tint); color: var(--blue-strong);
  display: grid; place-items: center; font-size: 18px; font-weight: 900; line-height: 1;
}
.faq__sign::before { content: '+'; }
.faq__item[open] .faq__sign { background: var(--blue); color: #fff; }
.faq__item[open] .faq__sign::before { content: '−'; }
.faq__a { margin: 0; padding: 0 18px 16px; color: var(--text-2); font-size: 14.5px; line-height: 1.85; }

/* ---------- donation journey ---------- */
.how { padding: 0 0 44px; }
.how__card { border-radius: 28px; padding: clamp(22px, 3.4vw, 44px); display: flex; flex-direction: column; gap: 26px; }
.how__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 14px; }
.how__intro { display: flex; flex-direction: column; gap: 6px; max-width: 620px; }
.how__title { margin: 0; font-size: clamp(22px, 2.2vw, 30px); font-weight: 900; }
.how__p { margin: 0; color: var(--text-2); font-size: 15px; line-height: 1.8; text-wrap: pretty; }
.soft-link {
  display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 10px 18px;
  font-weight: 800; font-size: 14px; color: var(--blue-strong); background: var(--tint);
}
.soft-link:hover { background: #D8EBFF; color: var(--blue-dark); }
.how__steps { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
.step { position: relative; background: #F5F9FF; border: 1px solid var(--line); border-radius: 20px; padding: 22px 20px; display: flex; flex-direction: column; gap: 10px; }
.step__head { display: flex; align-items: center; gap: 12px; }
.step__n {
  flex: none; width: 42px; height: 42px; border-radius: 50%; background: var(--grad-diag); color: #fff;
  display: grid; place-items: center; font-weight: 900; font-size: 17px; box-shadow: 0 8px 18px rgba(30, 155, 255, .35);
}
.step__t { margin: 0; font-size: 16px; font-weight: 900; line-height: 1.5; }
.step__d { margin: 0; color: var(--text-2); font-size: 14px; line-height: 1.85; text-wrap: pretty; }
.policies { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 18px; border-top: 1px solid var(--line-3); }
.policy {
  display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line-2); border-radius: 999px;
  padding: 8px 16px; font-size: 13.5px; font-weight: 700; color: var(--text);
}
.policy:hover { border-color: var(--blue); color: var(--blue-strong); }

/* ---------- join ---------- */
.join { padding: 0 0 44px; }
.join__title { margin: 0 0 16px; font-size: clamp(22px, 2.2vw, 30px); font-weight: 900; }
.join__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); gap: 20px; }
.join-card {
  display: flex; align-items: center; gap: 18px; padding: 22px; color: var(--text);
  background: #fff; border-radius: 22px; box-shadow: 0 10px 28px rgba(11, 42, 91, .08); transition: transform .25s;
}
.join-card:hover { color: var(--text); transform: translateY(-3px); }
.join-card__ic { flex: none; width: 64px; height: 64px; border-radius: 50%; background: var(--tint); display: grid; place-items: center; }
.join-card__body { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.join-card__t { font-size: 18px; }
.join-card__d { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.join-card__cta { color: var(--blue); font-weight: 800; font-size: 14px; }
.join-card__cta::after { content: ' ←'; }
html[dir="ltr"] .join-card__cta::after { content: ' →'; }

/* ---------- partners ---------- */
.wave--partners { height: clamp(30px, 5vw, 70px); background: var(--bg); }
.partners { background: #fff; padding: 10px 0 30px; }
.partners__in { max-width: 1360px; margin: 0 auto; padding: 0 var(--gutter); display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.partners__title { margin: 0; flex: 0 1 auto; font-size: clamp(20px, 1.8vw, 24px); font-weight: 900; }
.partners__row { flex: 1 1 400px; min-width: 0; display: flex; align-items: center; gap: 10px; }
.circle-btn {
  flex: none; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2);
  background: #fff; color: var(--blue); display: grid; place-items: center;
}
.circle-btn:hover { border-color: var(--blue); }
.partners__track {
  flex: 1; min-width: 0; display: flex; gap: 18px; padding: 6px 2px;
  overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none;
}
.partners__track::-webkit-scrollbar { display: none; }
.partner {
  flex: 0 0 170px; height: 76px; border-radius: 14px; border: 1px solid #EEF3FB; overflow: hidden;
  filter: grayscale(1); opacity: .7; transition: filter .3s, opacity .3s;
}
.partner:hover { filter: none; opacity: 1; }
.partner img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* ---------- final CTA ---------- */
.final { background: #fff; padding: 10px 0 20px; }
.final__card {
  position: relative; overflow: hidden; border-radius: 28px; color: #fff;
  background: linear-gradient(120deg, #06163A, #0B2A5B); padding: clamp(26px, 4vw, 48px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
}
.final__ring { position: absolute; top: -140px; inset-inline-end: -60px; width: 340px; height: 340px; border-radius: 50%; border: 1.5px solid rgba(30, 155, 255, .5); box-shadow: 0 0 50px rgba(30, 155, 255, .3); }
.final__dot { position: absolute; top: 40px; inset-inline-end: 250px; width: 12px; height: 12px; border-radius: 50%; background: var(--glow); animation: tvPulse 2.6s ease-in-out infinite; }
.final__text { position: relative; min-width: 0; }
.final__title { margin: 0; font-size: clamp(24px, 3vw, 40px); font-weight: 900; }
.final__sub { margin-top: 4px; font-family: var(--font-script); font-size: clamp(20px, 2vw, 28px); color: var(--glow); }
.final__cta { position: relative; gap: 12px; font-size: 17px; font-weight: 900; box-shadow: 0 0 30px rgba(0, 180, 255, .55); }
.final__cta .pill__icon { width: 38px; height: 38px; }
.final__cta:hover { filter: brightness(1.08); }

/* ---------- footer ---------- */
.wave--footer { height: clamp(36px, 5.5vw, 80px); background: #fff; }
.footer { position: relative; overflow: hidden; background: #06163A; color: #fff; }
.footer__skyline {
  position: absolute; bottom: 56px; inset-inline-end: 0; width: 50%; height: 130px; opacity: .35; mix-blend-mode: screen; pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at 50% 60%, #000 40%, transparent 72%);
  mask-image: radial-gradient(ellipse at 50% 60%, #000 40%, transparent 72%);
}
.footer__skyline img { width: 100%; height: 100%; object-fit: contain; display: block; }
.footer__in { position: relative; max-width: 1360px; margin: 0 auto; padding: 20px var(--gutter) 18px; display: flex; flex-wrap: wrap; gap: 36px; }
.footer__h { margin: 0 0 4px; font-size: 18px; font-weight: 900; }
.footer__nl { flex: 1.4 1 300px; min-width: 0; }
.footer__nl-p { margin: 0 0 14px; color: #bcd3f0; font-size: 13.5px; }
.nl-form { display: flex; max-width: 440px; padding: 4px; border-radius: 999px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(120, 180, 255, .3); }
.nl-form:focus-within { border-color: var(--glow); }
.nl-form input { flex: 1; min-width: 0; background: transparent; border: 0; outline: none; color: #fff; padding: 10px 16px; font-size: 14px; }
.nl-form input::placeholder { color: rgba(207, 224, 247, .75); }
.nl-form button { border: 0; border-radius: 999px; padding: 10px 26px; font-weight: 800; font-size: 14px; color: #fff; background: var(--grad); }
.nl-thanks { color: var(--glow); font-weight: 800; font-size: 15px; }
.footer__contact { flex: 1 1 220px; min-width: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.c-link { display: flex; align-items: center; gap: 8px; color: #dbe8fa; }
.c-link:hover { color: var(--glow); }
.c-link--tel { direction: ltr; justify-content: flex-end; align-self: flex-start; }
.c-addr { display: flex; align-items: flex-start; gap: 8px; color: #dbe8fa; }
.c-addr .ic { margin-top: 3px; }
.socials { display: flex; gap: 8px; margin-top: 6px; }
.social {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(120, 180, 255, .35);
  color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 800;
}
.social:hover { background: var(--blue); color: #fff; }
.footer__quick { flex: .8 1 150px; min-width: 0; }
.footer__h--quick { margin-bottom: 10px; }
.quick { display: flex; flex-direction: column; gap: 7px; }
.quick a { color: #bcd3f0; font-size: 14px; }
.quick a:hover { color: var(--glow); }
.footer__brand { flex: 1 1 200px; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer__logo { background: #fff; border-radius: 18px; padding: 8px 14px; }
.footer__logo img { height: 64px; width: auto; display: block; }
.footer__tag { font-size: 14px; font-weight: 700; color: #dbe8fa; }
.footer__bar { position: relative; z-index: 2; background: #06163A; border-top: 1px solid rgba(120, 180, 255, .15); }
.footer__bar-in {
  max-width: 1360px; margin: 0 auto; padding: 14px var(--gutter);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; font-size: 12.5px; color: #9fb6d8;
}
.legal { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.legal a { color: #9fb6d8; white-space: nowrap; }
.legal a:hover { color: #fff; }

/* ---------- floating UI ---------- */
.wa {
  position: fixed; left: 20px; bottom: 24px; z-index: 80; width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37, 211, 102, .45); transition: transform .2s;
}
.wa:hover { color: #fff; transform: scale(1.06); }
.totop {
  position: fixed; right: 20px; bottom: 24px; z-index: 80; width: 48px; height: 48px; border-radius: 50%; border: 0;
  background: #fff; color: var(--blue-strong); box-shadow: 0 10px 26px rgba(11, 42, 91, .2); display: grid; place-items: center;
}
.mnav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 85; background: #fff; border-radius: 22px 22px 0 0;
  box-shadow: 0 -8px 28px rgba(6, 22, 58, .14); display: grid; grid-template-columns: repeat(5, 1fr); align-items: end;
  padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
}
.mnav a {
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end; gap: 3px; min-height: 48px;
  color: var(--text); font-size: 11.5px; font-weight: 700; text-align: center;
}
.mnav .mnav__home { color: var(--blue); }
.mnav__ic { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; }
.mnav .mnav__donate { color: var(--blue-strong); }
.mnav__donate .mnav__ic { width: 60px; height: 60px; margin-top: -34px; background: var(--grad-diag); box-shadow: 0 0 0 6px #fff, 0 8px 24px rgba(30, 155, 255, .55); }
.consent {
  position: fixed; z-index: 96; inset-inline: 16px; bottom: 20px; max-width: 560px; margin-inline-start: auto;
  background: #06163A; color: #fff; border-radius: 20px; padding: 18px 20px; box-shadow: 0 20px 60px rgba(6, 22, 58, .45);
  display: flex; flex-direction: column; gap: 12px;
}
.consent b { font-size: 15px; }
.consent p { margin: 0; font-size: 13.5px; line-height: 1.8; color: #cfe0f7; }
.consent a { color: var(--glow); font-weight: 800; }
.consent__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.consent__all { border: 0; border-radius: 999px; padding: 9px 20px; font-weight: 900; font-size: 14px; color: #fff; background: var(--grad); white-space: nowrap; }
.consent__needed { border: 1px solid rgba(160, 210, 255, .45); background: none; color: #fff; border-radius: 999px; padding: 9px 20px; font-weight: 800; font-size: 14px; white-space: nowrap; }
.toast {
  position: fixed; left: 50%; bottom: 100px; z-index: 95; transform: translateX(-50%);
  background: var(--navy); color: #fff; border-radius: 999px; padding: 12px 24px; font-weight: 700; font-size: 14px;
  box-shadow: 0 10px 30px rgba(6, 22, 58, .3); max-width: calc(100vw - 32px); text-align: center;
}


/* ---------- stats source line ---------- */
.stats__source { max-width: 1360px; margin: 0 auto; padding: 0 var(--gutter) 16px; font-size: 12px; color: var(--text-4); text-align: center; }

/* ---------- impact: regions ---------- */
.impact__regions { margin-top: 18px; }
.impact__regions-t { margin-bottom: 8px; font-size: 13px; font-weight: 800; color: #bcd3f0; }
.region-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.region-chip {
  display: inline-flex; align-items: center; gap: 8px; padding-block: 5px; padding-inline: 5px 14px;
  border: 1px solid rgba(120, 180, 255, .3); background: rgba(255, 255, 255, .06); border-radius: 999px; font-size: 13.5px; font-weight: 800;
}
.region-chip__n { width: 24px; height: 24px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-size: 12px; direction: ltr; }

/* ---------- transparency: memberships ---------- */
.trans__members { margin: 0; font-size: 12.5px; line-height: 1.7; color: var(--text-3); }
.trans__members b { color: var(--text); }

/* ---------- from the field ---------- */
.proof { padding: 40px 0 0; }
.proof__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.proof__title { margin: 0; font-size: clamp(26px, 2.6vw, 38px); font-weight: 900; }
.proof__sub { margin: 6px 0 0; max-width: 680px; color: var(--text-2); font-size: 15px; line-height: 1.8; text-wrap: pretty; }
.proof__rail { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 2px 16px; }
.field-card {
  position: relative; flex: 0 0 clamp(230px, 24vw, 300px); aspect-ratio: 4 / 3; margin: 0; overflow: hidden;
  border-radius: 18px; background: #EAF1FB; box-shadow: 0 10px 28px rgba(11, 42, 91, .10); scroll-snap-align: start;
}
.field-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.field-card figcaption {
  position: absolute; inset-inline: 0; bottom: 0; display: flex; align-items: center; gap: 6px; padding: 30px 12px 10px;
  background: linear-gradient(to top, rgba(6, 22, 58, .9), rgba(6, 22, 58, 0)); color: #fff; font-size: 13px; font-weight: 800;
}

/* ---------- what your gift does ---------- */
.menu { padding: 8px 0 44px; scroll-margin-top: 90px; }
.menu__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.menu__title { margin: 0; font-size: clamp(26px, 2.6vw, 38px); font-weight: 900; color: var(--blue); }
.menu__sub { margin: 6px 0 0; color: var(--text-2); font-size: 15px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter { border: 1.5px solid var(--line-2); border-radius: 999px; background: #fff; padding: 8px 18px; font-size: 14px; font-weight: 800; color: var(--blue-strong); }
.filter:hover { border-color: var(--blue); }
.filter[aria-pressed="true"] { background: var(--grad); border-color: transparent; color: #fff; }
.menu__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 330px), 1fr)); gap: 20px; }
.offer { display: flex; flex-direction: column; overflow: hidden; background: #fff; border-radius: 20px; box-shadow: 0 10px 28px rgba(11, 42, 91, .10); }
.offer__media { position: relative; height: 170px; background: #EAF1FB; }
.offer__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.offer__media--icon { display: grid; place-items: center; background: radial-gradient(circle at 30% 20%, rgba(30, 155, 255, .45), rgba(6, 22, 58, 0) 60%), linear-gradient(135deg, #06163A, #0B2A5B); }
.offer__icon { width: 72px; height: 72px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .1); box-shadow: 0 0 0 10px rgba(255, 255, 255, .05); }
.offer__price {
  position: absolute; top: 12px; inset-inline-start: 12px; unicode-bidi: isolate;
  background: #fff; color: var(--navy); border-radius: 999px; padding: 5px 14px; font-size: 17px; font-weight: 900; box-shadow: 0 6px 16px rgba(6, 22, 58, .2);
}
.offer__tag { position: absolute; top: 14px; inset-inline-end: 12px; background: rgba(6, 22, 58, .78); color: var(--glow); border-radius: 999px; padding: 3px 10px; font-size: 11.5px; font-weight: 800; }
.offer__body { flex: 1; display: flex; flex-direction: column; gap: 8px; padding: 14px 16px 16px; }
.offer__title { margin: 0; font-size: 16px; font-weight: 900; line-height: 1.5; }
.offer__place { display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 800; color: var(--blue-strong); }
.offer__desc { flex: 1; margin: 0; font-size: 13.5px; line-height: 1.75; color: var(--text-2); }
.offer__qty { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; }
.offer__qty-lbl { font-size: 12.5px; font-weight: 700; color: var(--text-3); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: 999px; background: var(--field); }
.qty button { width: 34px; height: 34px; border: 0; border-radius: 50%; background: none; color: var(--blue-strong); font-size: 18px; font-weight: 800; }
.qty button:hover { background: var(--tint); }
.qty output { min-width: 26px; text-align: center; font-weight: 900; }
.offer__total { font-size: 12.5px; font-weight: 700; color: var(--text-3); }
.offer__total b { font-size: 15px; color: var(--text); direction: ltr; unicode-bidi: isolate; }
.offer__actions { display: flex; gap: 8px; margin-top: 4px; }
.offer__add { flex: 1; border: 1.5px solid var(--blue); border-radius: 999px; background: #fff; padding: 9px 8px; font-size: 13.5px; font-weight: 800; color: var(--blue-strong); }
.offer__add:hover { background: var(--tint-2); }
.offer__give { flex: 1.2; border: 0; border-radius: 999px; background: var(--grad); padding: 10px 8px; font-size: 13.5px; font-weight: 800; color: #fff; box-shadow: 0 6px 16px rgba(30, 155, 255, .3); }
.offer__give:hover { filter: brightness(1.08); }
.offer__wa { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; background: #25D366; padding: 10px 8px; font-size: 13.5px; font-weight: 800; color: #fff; }
.offer__wa:hover { color: #fff; filter: brightness(1.05); }

/* ---------- sponsorships ---------- */
.sponsors { display: flex; flex-direction: column; gap: 16px; scroll-margin-top: 90px; }
.sponsors__title { margin: 0; font-size: clamp(22px, 2.2vw, 30px); font-weight: 900; }
.sponsors__sub { margin: 4px 0 0; color: var(--text-2); font-size: 15px; }
.sponsors__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 20px; }
.sponsor { display: flex; flex-direction: column; overflow: hidden; background: #fff; border-radius: 22px; box-shadow: 0 10px 28px rgba(11, 42, 91, .08); }
.sponsor__media { height: 160px; background: #EAF1FB; }
.sponsor__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sponsor__body { flex: 1; display: flex; flex-direction: column; gap: 8px; padding: 16px 18px 18px; }
.sponsor__title { margin: 0; font-size: 17px; font-weight: 900; }
.sponsor__desc { flex: 1; margin: 0; font-size: 13.5px; line-height: 1.75; color: var(--text-2); }
.sponsor__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; margin-top: 6px; }
.sponsor__price { font-size: 22px; font-weight: 900; color: var(--navy); }
.sponsor__price small { font-size: 13px; font-weight: 700; color: var(--text-3); }

/* scroll reveal (added by core.js, so content stays visible without JS) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (min-width: 560px) {
  .how__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 820px) {
  .mhdr, .mmenu, .mnav, .programs__all { display: none !important; }
}
@media (min-width: 1100px) {
  .how__steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1240px) {
  .hero__media { width: 60%; }
  .hero__fade { background: linear-gradient(to right, #0A2350 0%, rgba(10, 35, 80, .6) 30%, rgba(10, 35, 80, 0) 70%); }
  html[dir="rtl"] .hero__fade { background: linear-gradient(to left, #0A2350 0%, rgba(10, 35, 80, .6) 30%, rgba(10, 35, 80, 0) 70%); }
  .hero__planet, .script--wide { display: block; }
  .hero__q2.script--wide { display: flex; }
}
@media (max-width: 819.98px) {
  body { padding-bottom: 84px; }
  .hdr, .stats__quote, .programs__desc, .programs__cta, .impact__tiles, .stat--wide { display: none; }
  .hero__media { position: relative; top: auto; bottom: auto; inset-inline-end: auto; height: 340px; }
  .hero__fade { display: none; }
  .hero__fade-b { background: linear-gradient(to top, #0A2350 0%, rgba(10, 35, 80, 0) 55%); }
  .hero__in { padding: 0 16px 90px; }
  .orbit { order: 2; margin: 0 auto; }
  .hero__text { order: 1; margin-top: -40px; }
  .stats { margin-top: -70px; }
  .stats__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .impact__explore { display: inline-flex; }
  .wa, .totop { bottom: 100px; }
  .consent { bottom: 96px; }
  .toast { bottom: 170px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .topbar__dot, .orbit__spin span, .shield-badge__dot, .monthly__dot, .final__dot { box-shadow: 0 0 10px 3px rgba(0, 180, 255, .7); }
}
