:root {
  --purple: #5B3DF5;
  --purple-dark: #17103f;
  --lime: #B9F227;
  --bg: #F8F7FC;
  --text: #17152B;
  --muted: #68657A;
  --card: #FFFFFF;
  --line: #ddd7ff;
  --shadow: 0 18px 50px rgba(35, 25, 92, .10);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: "Tajawal", "Alexandria", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 14%, rgba(185, 242, 39, .24), transparent 23rem),
    radial-gradient(circle at 85% 6%, rgba(91, 61, 245, .18), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 34%, #fff 100%);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.shell { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.section { padding: 92px 0; }
.band { background: rgba(255,255,255,.62); border-block: 1px solid rgba(91,61,245,.09); }

.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 20;
  background: transparent;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.site-header.scrolled { background: rgba(255,255,255,.86); border-bottom-color: rgba(91,61,245,.12); box-shadow: 0 12px 35px rgba(23,21,43,.06); }
.nav { min-height: 84px; display: flex; align-items: center; gap: 18px; transition: min-height .25s ease; }
.site-header.scrolled .nav { min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-logo {
  display: block;
  width: 148px;
  height: auto;
  object-fit: contain;
}
.footer-brand .brand-logo {
  width: 170px;
  filter: drop-shadow(0 10px 22px rgba(91,61,245,.18));
}
.brand-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 14px;
  background: var(--purple);
  color: white;
  font-family: "Alexandria", sans-serif;
  font-weight: 800;
}
.brand strong { display: block; font-family: "Alexandria"; font-size: 1.05rem; }
.brand small { display: block; color: var(--muted); font-size: .72rem; letter-spacing: 0; }
.nav-links {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 8px;
  margin-inline: auto;
  padding: 8px;
  border: 1px solid rgba(91,61,245,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  font-size: .92rem;
  color: var(--muted);
  align-items: center;
  box-shadow: 0 12px 36px rgba(35,25,92,.06);
  min-width: 0;
}
.nav-links > a,
.nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover,
.nav-item:hover > a {
  color: var(--purple);
  background: #f0edff;
}
.nav-item { position: relative; }
.has-mega > a:after { content: "⌄"; margin-right: 5px; font-size: .8rem; color: var(--purple); }
.mega-menu {
  position: absolute;
  top: calc(100% + 18px);
  right: 50%;
  transform: translate(50%, 8px);
  width: min(390px, calc(100vw - 34px));
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(91,61,245,.14);
  box-shadow: 0 24px 70px rgba(23,21,43,.15);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(50%, 0);
}
.mega-menu a {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border-radius: 16px;
  color: var(--text);
}
.mega-menu a:hover { background: #f4f1ff; }
.mega-menu span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: var(--lime);
  color: #242710;
  font-weight: 900;
}
.mega-menu strong { font-family: "Alexandria"; display: block; }
.mega-menu small { color: var(--muted); line-height: 1.5; }
.nav-actions { display: flex; gap: 10px; align-items: center; flex-wrap: nowrap; white-space: nowrap; }
.hero-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-top: 24px; }
.nav-toggle { display: none; border: 0; background: var(--card); border-radius: 12px; width: 42px; height: 42px; color: var(--purple); box-shadow: var(--shadow); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 42px; padding: 10px 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--purple); color: white; box-shadow: 0 12px 24px rgba(91,61,245,.23); }
.btn-ghost { border-color: var(--line); color: var(--purple); background: white; }
.btn-soft { background: #eeebff; color: var(--purple); }
.btn-dark { background: var(--text); color: white; }
.btn-outline-dark { border-color: rgba(23,21,43,.22); }
.btn-large { min-height: 52px; padding-inline: 24px; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 64px;
  min-height: calc(100vh - 78px);
  padding-top: 138px;
  padding-bottom: 48px;
}

.page-hero {
  padding-top: 148px;
  padding-bottom: 42px;
}
.page-hero h1 {
  max-width: 860px;
}
.page-hero p {
  max-width: 760px;
  font-size: 1.15rem;
}
.apply-page-section {
  padding-top: 20px;
}
.round-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: -20px;
  padding: 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 20%, rgba(185,242,39,.34), transparent 14rem),
    linear-gradient(135deg, #17152B, #5B3DF5);
  color: white;
  box-shadow: 0 28px 70px rgba(35,25,92,.18);
}
.round-copy span {
  color: var(--lime);
  font-weight: 900;
}
.round-copy h2 {
  margin-top: 8px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}
.round-copy p {
  color: rgba(255,255,255,.78);
}
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 82px);
  gap: 10px;
}
.countdown div {
  display: grid;
  place-items: center;
  min-height: 88px;
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
}
.countdown b {
  font-family: "Alexandria";
  font-size: 1.7rem;
  color: var(--lime);
  line-height: 1;
}
.countdown span {
  color: rgba(255,255,255,.78);
  font-weight: 800;
  font-size: .88rem;
}
.about-story {
  padding-top: 22px;
}
.about-story-panel {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 32px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.about-focus-list {
  display: grid;
  gap: 12px;
}
.about-focus-list article {
  padding: 18px;
  border-radius: 20px;
  background: #f5f2ff;
  border: 1px solid var(--line);
}
.about-focus-list b {
  display: block;
  font-family: "Alexandria";
  color: var(--purple);
}
.about-focus-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 34px -34px auto auto;
  width: 190px;
  height: 190px;
  background: repeating-linear-gradient(135deg, rgba(91,61,245,.11) 0 8px, transparent 8px 18px);
  border-radius: 36px;
  transform: rotate(10deg);
  z-index: -1;
}
.eyebrow { display: inline-flex; color: var(--purple); background: #f0edff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 13px; font-weight: 800; font-size: .86rem; }
.hero-funding-pill {
  background: rgba(185,242,39,.96);
  color: #20230e;
  border-color: rgba(23,21,43,.08);
  box-shadow: 0 14px 30px rgba(185,242,39,.26);
}
h1, h2, h3 { font-family: "Alexandria", "Tajawal", sans-serif; line-height: 1.28; margin: 0; letter-spacing: 0; }
h1, h2, h3, p, a, span, strong, b { overflow-wrap: anywhere; }
h1 { font-size: clamp(2.2rem, 4.55vw, 4.2rem); margin-top: 20px; max-width: 760px; }
h2 { font-size: clamp(1.75rem, 3.5vw, 3.05rem); margin-top: 14px; }
h2 span { color: var(--purple); }
h3 { font-size: 1.1rem; }
p { color: var(--muted); margin: 14px 0 0; font-size: 1.05rem; }
.micro { font-size: .92rem; color: #4d4861; }
.hero-lead {
  margin-top: 22px;
  max-width: 720px;
  color: #464157;
  font-size: clamp(1.03rem, 1.7vw, 1.22rem);
}

.hero-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: -16px;
  margin-bottom: 18px;
  position: relative;
  z-index: 3;
}
.hero-summary article {
  position: relative;
  overflow: hidden;
  padding: 22px 22px 20px;
  min-height: 132px;
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(91,61,245,.14);
  box-shadow: 0 22px 55px rgba(35,25,92,.1);
  backdrop-filter: blur(12px);
}
.hero-summary article:before {
  content: "";
  position: absolute;
  inset-inline-start: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--purple), #8d77ff);
  opacity: .12;
}
.hero-summary b {
  color: var(--purple);
  font-family: "Alexandria";
  display: block;
  margin-bottom: 4px;
  font-size: 1.18rem;
}
.hero-summary span {
  display: block;
  color: var(--text);
  font-weight: 900;
  font-size: 1.05rem;
  line-height: 1.4;
}
.hero-summary small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.hero-image-frame {
  position: relative;
  min-height: 540px;
  border-radius: 32px;
  padding: 12px;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, rgba(91,61,245,.45), rgba(185,242,39,.85)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 30px 80px rgba(35, 25, 92, .16);
}
.hero-image-frame:before {
  content: "";
  position: absolute;
  inset: auto 28px -24px 28px;
  height: 46px;
  background: rgba(91,61,245,.22);
  filter: blur(28px);
  border-radius: 999px;
  z-index: -1;
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 516px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 24px;
}
.float-card {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 178px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 18px 40px rgba(23,21,43,.14);
  backdrop-filter: blur(12px);
  animation: float 3.8s ease-in-out infinite;
}
.float-card span { color: var(--muted); font-size: .86rem; font-weight: 800; }
.float-card strong { color: var(--text); font-family: "Alexandria"; }
.float-top { top: 28px; right: -18px; }
.float-bottom { bottom: 34px; left: -14px; animation-delay: .7s; }
.step-stack {
  position: absolute;
  right: 24px;
  bottom: 28px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 310px;
}
.step-stack span {
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--lime);
  color: #20230e;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(185,242,39,.25);
}
@keyframes float { 50% { transform: translateY(-10px); } }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.about-feature { padding-top: 42px; }
.initiative-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 210px;
  gap: 20px;
  overflow: hidden;
  padding: clamp(26px, 5vw, 46px);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(91,61,245,.96), rgba(23,16,63,.98)),
    var(--purple-dark);
  color: white;
  box-shadow: 0 30px 90px rgba(35,25,92,.22);
}
.initiative-banner:before {
  content: "";
  position: absolute;
  inset: -80px auto auto -30px;
  width: 260px;
  height: 260px;
  border-radius: 44px;
  background: rgba(185,242,39,.22);
  transform: rotate(18deg);
}
.initiative-banner:after {
  content: "";
  position: absolute;
  inset: auto 26px 22px auto;
  width: 220px;
  height: 90px;
  border: 1px dashed rgba(255,255,255,.35);
  border-radius: 999px;
}
.banner-copy, .banner-stat, .banner-points { position: relative; z-index: 1; }
.initiative-banner .light {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.18);
  color: white;
}
.initiative-banner h2 {
  max-width: 760px;
  font-size: clamp(1.95rem, 4vw, 3.55rem);
}
.initiative-banner p {
  max-width: 820px;
  color: rgba(255,255,255,.82);
  font-size: 1.14rem;
}
.banner-stat {
  align-self: start;
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 22px;
  border-radius: 28px;
  background: var(--lime);
  color: #20230e;
  text-align: center;
  box-shadow: 0 22px 42px rgba(0,0,0,.16);
}
.banner-stat strong { font-family: "Alexandria"; font-size: 4.2rem; line-height: 1; }
.banner-stat span { font-weight: 900; line-height: 1.45; }
.banner-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.banner-points article {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
}
.banner-points b { display: block; color: var(--lime); font-family: "Alexandria"; margin-bottom: 6px; }
.banner-points span { color: rgba(255,255,255,.86); font-weight: 700; }

.problem-grid, .solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.problem-grid article, .solution-grid article, .process article, .apply-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.problem-grid article {
  position: relative;
  min-height: 150px;
  padding: 22px 22px 20px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,244,255,.96));
}
.problem-grid article:after {
  content: "";
  position: absolute;
  inset-inline-end: -22px;
  bottom: -28px;
  width: 96px;
  height: 96px;
  border-radius: 28px;
  background: rgba(185,242,39,.25);
  transform: rotate(18deg);
}
.problem-grid span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: var(--purple);
  color: white;
  font-weight: 900;
  margin-bottom: 14px;
}
.problem-grid b { display: block; font-family: "Alexandria"; font-size: 1.05rem; }
.problem-grid p { position: relative; z-index: 1; margin-top: 7px; font-size: .98rem; }
.note { padding: 18px; background: #f0edff; border-inline-start: 5px solid var(--lime); border-radius: 16px; color: var(--text); }
.section-head { max-width: 760px; margin-bottom: 30px; }
.section-head p { max-width: 720px; }

.process { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process:before { content: ""; position: absolute; top: 34px; inset-inline: 6%; height: 4px; border-radius: 99px; background: linear-gradient(90deg, var(--lime), var(--purple)); }
.process article { position: relative; padding: 24px; min-height: 190px; }
.process b { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 18px; background: var(--lime); margin-bottom: 18px; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.audience-grid article {
  position: relative;
  padding: 22px;
  min-height: 170px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(35,25,92,.07);
  transition: transform .2s ease, border-color .2s ease;
}
.audience-grid article:hover { transform: translateY(-4px); border-color: rgba(91,61,245,.32); }
.audience-grid span {
  color: var(--purple);
  font-family: "Alexandria";
  font-weight: 900;
}
.audience-grid b {
  display: block;
  margin-top: 18px;
  font-family: "Alexandria";
  font-size: 1.08rem;
}
.audience-grid small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 700;
}
.chips, .topic-board { display: flex; gap: 12px; flex-wrap: wrap; }
.topic-board span { padding: 13px 17px; background: white; border: 1px solid var(--line); border-radius: 999px; font-weight: 800; }
.solution-grid { grid-template-columns: repeat(4, 1fr); }
.solution-grid article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 178px;
  padding: 20px;
  overflow: hidden;
  background: white;
  transition: transform .2s ease, box-shadow .2s ease;
}
.solution-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(35,25,92,.12);
}
.solution-grid article:before {
  content: "";
  position: absolute;
  inset-inline: 18px;
  top: 0;
  height: 4px;
  border-radius: 0 0 99px 99px;
  background: linear-gradient(90deg, var(--purple), var(--lime));
}
.solution-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: #f0edff;
  color: var(--purple);
  font-family: "Alexandria";
  font-weight: 900;
}
.solution-grid b { font-family: "Alexandria"; font-size: 1.02rem; }
.solution-grid small { color: var(--muted); line-height: 1.6; font-weight: 700; }

.support { background: var(--purple-dark); color: white; }
.support p, .support .eyebrow { color: white; }
.support .eyebrow { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.15); }
.support-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: center; }
.check-list { margin: 0; padding: 0; list-style: none; columns: 2; }
.check-list li { margin: 0 0 12px; padding: 12px 16px; border-radius: 14px; background: rgba(255,255,255,.08); }
.check-list li:before { content: "✓"; color: var(--lime); margin-left: 9px; font-weight: 900; }

.accepted-benefits { padding-top: 74px; }
.benefits-panel {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 10% 20%, rgba(185,242,39,.35), transparent 16rem),
    linear-gradient(135deg, #ffffff, #f4f1ff);
  border: 1px solid var(--line);
  box-shadow: 0 26px 70px rgba(35,25,92,.12);
}
.benefits-panel:before {
  content: "";
  position: absolute;
  inset-inline-end: -60px;
  top: -70px;
  width: 220px;
  height: 220px;
  border-radius: 54px;
  background: rgba(91,61,245,.10);
  transform: rotate(18deg);
}
.benefits-copy, .benefits-grid { position: relative; z-index: 1; }
.benefits-copy h2 { font-size: clamp(1.85rem, 3.4vw, 3rem); }
.benefits-copy .btn { margin-top: 22px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.benefits-grid article {
  min-height: 170px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(91,61,245,.13);
  box-shadow: 0 16px 34px rgba(35,25,92,.08);
}
.benefits-grid span {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  height: 42px;
  padding-inline: 10px;
  border-radius: 15px;
  background: var(--purple);
  color: white;
  font-family: "Alexandria";
  font-weight: 900;
}
.benefits-grid article:first-child span { background: var(--lime); color: #20230e; }
.benefits-grid b {
  display: block;
  margin-top: 16px;
  font-family: "Alexandria";
}
.benefits-grid small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 700;
}

.mentorship-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(248,247,252,.95));
  padding-top: 30px;
}
.mentorship-panel {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  overflow: hidden;
  padding: clamp(26px, 5vw, 48px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 80%, rgba(185,242,39,.32), transparent 18rem),
    linear-gradient(135deg, #17152B, #312082 58%, #5B3DF5);
  color: white;
  box-shadow: 0 30px 80px rgba(23,21,43,.18);
}
.mentorship-panel:before {
  content: "";
  position: absolute;
  inset-inline-end: -70px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 64px;
  border: 28px solid rgba(185,242,39,.20);
  transform: rotate(16deg);
}
.mentorship-copy, .mentorship-steps { position: relative; z-index: 1; }
.mentorship-copy h2 {
  max-width: 720px;
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
}
.mentorship-copy p {
  color: rgba(255,255,255,.82);
  font-size: 1.12rem;
}
.mentorship-steps {
  display: grid;
  gap: 12px;
}
.mentorship-steps article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
}
.mentorship-steps span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--lime);
  color: #20230e;
  font-family: "Alexandria";
  font-weight: 900;
}
.mentorship-steps b {
  font-family: "Alexandria";
  font-size: 1.08rem;
}
.mentorship-steps small {
  color: rgba(255,255,255,.78);
  line-height: 1.55;
  font-weight: 700;
}

.ready-section { padding-top: 34px; }
.ready-panel {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 32px;
  background: linear-gradient(135deg, #fff, #f3f0ff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.ready-copy .btn { margin-top: 22px; }
.ready-cards {
  display: grid;
  gap: 12px;
}
.ready-cards article {
  padding: 18px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(35,25,92,.07);
}
.ready-cards b, .ready-cards span, .ready-cards strong { display: block; }
.ready-cards b { font-family: "Alexandria"; }
.ready-cards span { color: var(--muted); margin-top: 8px; }
.ready-cards strong { color: var(--purple); margin-top: 6px; font-family: "Alexandria"; }
.ready-list {
  display: grid;
  gap: 18px;
  padding-top: 20px;
}
.ready-project-card {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border-radius: 28px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.ready-project-card {
  position: relative;
}
.ready-project-card:after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 24px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.0), rgba(255,255,255,.18), rgba(255,255,255,.0));
  opacity: .45;
}
.ready-project-cover {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 230px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  color: white;
  font-family: "Alexandria";
  font-size: clamp(1.35rem, 2.2vw, 1.95rem);
  font-weight: 900;
  isolation: isolate;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
}
.ready-project-cover:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(23,21,43,.05), rgba(23,21,43,.54)),
    radial-gradient(circle at 70% 20%, rgba(185,242,39,.35), transparent 34%);
}
.ready-project-cover span {
  width: calc(100% - 34px);
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(23,21,43,.68);
  text-align: center;
  line-height: 1.45;
  backdrop-filter: blur(12px);
}
.ready-project-cover.car {
  background-image: url("assets/ready-car-rental.png");
}
.ready-project-cover.store {
  background-image: url("assets/ready-store.png");
}
.ready-project-cover.booking {
  background-image: url("assets/ready-booking.png");
}
.ready-project-card small { color: var(--purple); font-weight: 900; }
.ready-project-card h2 { margin-top: 8px; font-size: clamp(1.5rem, 3vw, 2.4rem); }
.ready-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.price-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0;
}
.price-row span,
.price-row strong {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
}
.price-row span { background: #f0edff; color: var(--muted); }
.price-row span b { color: var(--text); }
.price-row strong { background: var(--lime); color: #20230e; }

.project-detail-hero {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding-top: 140px;
}
.project-detail-copy h1 {
  max-width: 760px;
}
.project-detail-copy,
.project-detail-visual,
.project-plan-panel,
.project-outcome-card {
  min-width: 0;
}
.project-detail-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 2;
}
.project-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.project-detail-visual {
  min-height: 430px;
  border-radius: 34px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.72);
  position: relative;
  overflow: hidden;
}
.project-detail-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23,21,43,0), rgba(23,21,43,.36)),
    radial-gradient(circle at 18% 18%, rgba(185,242,39,.28), transparent 34%);
}
.project-detail-visual.car { background-image: url("assets/ready-car-rental.png"); }
.project-detail-visual.store { background-image: url("assets/ready-store.png"); }
.project-detail-visual.booking { background-image: url("assets/ready-booking.png"); }
.project-value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 8px;
}
.project-value-strip article,
.included-grid article {
  padding: 20px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(35,25,92,.07);
}
.project-value-strip b,
.included-grid b {
  display: block;
  font-family: "Alexandria";
  color: var(--purple);
  margin-bottom: 8px;
}
.project-value-strip span,
.included-grid span {
  color: var(--muted);
  line-height: 1.75;
  font-weight: 700;
}
.project-detail-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 22px;
  align-items: start;
}
.project-plan-panel {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 30px;
  background: linear-gradient(135deg, #17152b, #302164 62%, #5b3df5);
  color: white;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.project-plan-panel h2 {
  color: white;
  max-width: 760px;
}
.timeline-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.timeline-list article {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
}
.timeline-list span {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--lime);
  color: #20230e;
  font-weight: 900;
  margin-bottom: 10px;
}
.timeline-list p {
  margin: 0;
  color: rgba(255,255,255,.84);
  line-height: 1.85;
}
.project-outcome-card {
  padding: 24px;
  border-radius: 28px;
  background: var(--lime);
  color: #20230e;
  box-shadow: var(--shadow);
  position: sticky;
  top: 110px;
}
.project-outcome-card span {
  font-weight: 900;
}
.project-outcome-card strong {
  display: block;
  margin: 12px 0;
  font-family: "Alexandria";
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.25;
}
.project-outcome-card p {
  margin: 0;
  line-height: 1.8;
  font-weight: 800;
}
.included-section {
  padding-top: 18px;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.preview-request-section {
  padding-top: 10px;
}
.preview-form {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 30px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.selected-project {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background: #f4f1ff;
  border: 1px solid var(--line);
}
.selected-project span {
  color: var(--muted);
  font-weight: 900;
}
.selected-project strong {
  font-family: "Alexandria";
  color: var(--purple);
}

.admin-page { padding-top: 18px; }
.admin-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.admin-summary article {
  padding: 20px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.admin-summary span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}
.admin-summary b {
  display: block;
  margin-top: 6px;
  color: var(--purple);
  font-family: "Alexandria";
  font-size: 1.8rem;
}
.admin-board {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 18px;
  align-items: start;
}
.submission-list {
  display: grid;
  gap: 10px;
}
.submission-item {
  display: grid;
  gap: 4px;
  width: 100%;
  text-align: right;
  padding: 16px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(35,25,92,.06);
  cursor: pointer;
}
.submission-item.active,
.submission-item:hover {
  border-color: rgba(91,61,245,.42);
  background: #f5f2ff;
}
.submission-item span {
  color: var(--purple);
  font-family: "Alexandria";
  font-weight: 900;
}
.submission-item strong { font-family: "Alexandria"; }
.submission-item small { color: var(--muted); }
.submission-detail {
  position: sticky;
  top: 92px;
  padding: 24px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.detail-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.detail-head span,
.detail-head strong {
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
}
.detail-head span { background: var(--lime); color: #20230e; }
.detail-head strong { background: #f0edff; color: var(--purple); }
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.detail-field {
  padding: 14px;
  border-radius: 16px;
  background: #fbfaff;
  border: 1px solid rgba(91,61,245,.10);
}
.detail-field span {
  display: block;
  color: var(--purple);
  font-weight: 900;
  margin-bottom: 4px;
}
.detail-field p { margin: 0; font-size: .98rem; }
.detail-field ul { margin: 0; padding-inline-start: 18px; color: var(--muted); }

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(185,242,39,.24), transparent 20rem),
    radial-gradient(circle at 80% 10%, rgba(91,61,245,.18), transparent 22rem),
    var(--bg);
}
.login-card {
  width: min(460px, 100%);
  display: grid;
  gap: 16px;
  padding: 34px;
  border-radius: 30px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.login-logo {
  width: 170px;
  display: block;
  margin-bottom: 4px;
}
.login-card h1 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
}
.login-card p {
  margin-top: 0;
}

.projects-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.projects-showcase article {
  overflow: hidden;
  border-radius: 26px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.projects-showcase article:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(35,25,92,.14);
}
.project-cover {
  position: relative;
  min-height: 178px;
  background:
    radial-gradient(circle at 25% 25%, rgba(185,242,39,.42), transparent 8rem),
    linear-gradient(135deg, var(--purple), #2b1b7a);
  overflow: hidden;
}
.project-cover:before {
  content: "";
  position: absolute;
  inset: 38px 28px auto;
  height: 6px;
  border-radius: 99px;
  background: rgba(255,255,255,.32);
  transform: rotate(-12deg);
}
.project-cover span {
  position: absolute;
  inset-inline-start: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  min-width: 74px;
  height: 46px;
  padding-inline: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  color: var(--purple);
  font-weight: 900;
}
.pc-two { background: radial-gradient(circle at 70% 20%, rgba(185,242,39,.48), transparent 8rem), linear-gradient(135deg, #17152B, #5B3DF5); }
.pc-three { background: radial-gradient(circle at 30% 70%, rgba(185,242,39,.45), transparent 8rem), linear-gradient(135deg, #6e58ff, #17103f); }
.project-body { padding: 22px; }
.project-body small { color: var(--purple); font-weight: 900; }
.project-body h3 { margin-top: 8px; font-size: 1.2rem; }
.project-body p { font-size: .98rem; }
.project-body b {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f0edff;
  color: var(--purple);
  font-size: .86rem;
}
.partners { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; align-items: center; }
.partner-logos {
  display: grid;
  grid-template-columns: minmax(180px, 240px) auto minmax(180px, 240px);
  align-items: center;
  justify-content: end;
  gap: 12px;
}
.partner-logos > strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: var(--lime);
  color: #20230e;
  font-size: 1.25rem;
  box-shadow: 0 14px 28px rgba(185,242,39,.24);
}
.partner-card {
  display: grid;
  place-items: center;
  min-height: 118px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  box-shadow: 0 20px 48px rgba(35,25,92,.09);
}
.partner-card img {
  display: block;
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}
.palcode-card {
  background: #005BEF;
}
.palcode-card img {
  width: 132px;
  max-height: 86px;
  border-radius: 14px;
  object-fit: cover;
  filter: none;
}
.community-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; padding: 32px; border-radius: 28px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.topic-board { align-content: center; }

.apply-form { padding: 28px; }
.progress { height: 10px; border-radius: 99px; background: #ebe7ff; overflow: hidden; margin-bottom: 24px; }
.progress span { display: block; width: 33.333%; height: 100%; background: linear-gradient(90deg, var(--lime), var(--purple)); transition: .25s ease; }
.form-step { display: none; }
.form-step.active { display: block; }
.fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 18px; }
label { display: grid; gap: 8px; color: var(--text); font-weight: 800; }
input, textarea, select {
  width: 100%; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--text);
  padding: 13px 14px; outline: 0;
}
textarea { min-height: 108px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(91,61,245,.10); }
.wide { grid-column: 1 / -1; }
.consent { display: flex; align-items: center; gap: 10px; grid-column: 1 / -1; }
.consent input { width: 20px; height: 20px; }
.form-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 22px; }
.hidden { display: none; }
.form-hint { font-size: .9rem; }

output { display: block; color: var(--purple); font-weight: 800; }
.faq { display: grid; gap: 12px; }
.faq details { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; box-shadow: 0 10px 26px rgba(35,25,92,.06); }
.faq summary { cursor: pointer; font-weight: 800; }
.faq p { margin-bottom: 0; }
.cta {
  background:
    radial-gradient(circle at 16% 50%, rgba(91,61,245,.18), transparent 18rem),
    var(--lime);
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 34px;
  border-radius: 30px;
  background: rgba(255,255,255,.30);
  border: 1px solid rgba(23,21,43,.10);
}
.cta-copy span {
  color: var(--purple);
  font-weight: 900;
}
.cta-copy h2 { margin-top: 8px; max-width: 720px; }
.cta p { color: #2c3020; max-width: 680px; }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }

.compact { grid-template-columns: repeat(2, 1fr); }

.footer { padding: 54px 0 22px; background: #120f26; color: white; }
.footer p, .footer a, .copyright { color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 24px; }
.footer h3 { font-size: 1rem; margin-bottom: 10px; }
.footer a { display: block; margin: 8px 0; }
.copyright { text-align: center; margin-top: 34px; font-size: .92rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav { justify-content: space-between; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-links, .nav-actions { display: none; }
  .nav.open .nav-links {
    display: grid;
    position: fixed;
    inset: 78px 16px auto 16px;
    max-height: calc(100vh - 100px);
    overflow: auto;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow);
    gap: 12px;
  }
  .nav.open .nav-links > a,
  .nav.open .nav-item > a { font-size: 1.08rem; font-weight: 900; color: var(--text); }
  .nav.open .nav-actions {
    display: grid;
    position: fixed;
    inset-inline: 32px;
    bottom: 24px;
    grid-template-columns: 1fr;
    z-index: 22;
  }
  .mega-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    margin-top: 10px;
    grid-template-columns: 1fr;
    background: #f7f4ff;
  }
  .has-mega:hover .mega-menu,
  .has-mega:focus-within .mega-menu { transform: none; }
  .hero, .two-col, .support-inner, .partners, .community-panel, .benefits-panel, .mentorship-panel, .ready-panel, .ready-project-card, .admin-board, .round-banner, .project-detail-hero, .project-detail-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-bottom: 32px; }
  .hero-image-frame { min-height: auto; }
  .hero-image-frame img { min-height: 420px; }
  .float-top { right: 18px; }
  .float-bottom { left: 18px; }
  .initiative-banner { grid-template-columns: 1fr; }
  .banner-stat { place-items: start; text-align: right; min-height: auto; }
  .banner-points { grid-template-columns: repeat(2, 1fr); }
  .process, .solution-grid, .audience-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .process:before { display: none; }
  .projects-showcase { grid-template-columns: 1fr; }
  .partner-logos { grid-template-columns: minmax(180px, 260px); justify-content: stretch; }
  .partner-logos > strong { margin: auto; }
  .submission-detail { position: static; }
  .countdown { grid-template-columns: repeat(4, 1fr); }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .project-detail-hero { padding-top: 120px; }
  .project-detail-visual { min-height: 330px; }
  .project-outcome-card { position: static; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 24px, 1180px); }
  .section { padding: 64px 0; }
  .brand-logo { width: 116px; }
  .nav { min-height: 58px; padding: 8px 0; }
  .eyebrow { max-width: 100%; border-radius: 18px; line-height: 1.6; white-space: normal; }
  h1 { font-size: clamp(1.75rem, 7.2vw, 2.25rem); line-height: 1.4; }
  .hero { padding-top: 118px; gap: 32px; }
  .hero-summary { grid-template-columns: 1fr; margin-top: 0; }
  .hero-image-frame { border-radius: 24px; padding: 8px; }
  .hero-image-frame img { min-height: 360px; border-radius: 18px; }
  .float-card { position: static; margin: 10px 8px 0; min-width: 0; }
  .step-stack { position: static; margin: 10px 8px 0; }
  .banner-points, .problem-grid, .process, .solution-grid, .audience-grid, .benefits-grid, .fields, .compact, .footer-grid, .admin-summary, .detail-grid, .project-value-strip, .timeline-list, .included-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 24px; }
  .countdown { grid-template-columns: repeat(2, 1fr); }
  .selected-project { display: grid; }
  .mentorship-steps article { grid-template-columns: 1fr; }
  .mentorship-steps span { grid-row: auto; }
  .check-list { columns: 1; }
  .cta-inner { display: block; }
  .cta-inner div { margin-top: 18px; }
  .logos { justify-content: center; flex-wrap: wrap; }
  .project-detail-visual { min-height: 260px; border-radius: 24px; }
  .ready-actions, .project-hero-actions { display: grid; }
  .project-detail-hero { padding-top: 104px; }
  .project-detail-copy { text-align: center; }
  .project-detail-copy h1,
  .project-detail-copy p { margin-inline: auto; }
  .project-detail-copy p { font-size: 1rem; line-height: 1.9; }
  .price-row span,
  .price-row strong { width: 100%; justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
