:root {
  --green-900: #00391c;
  --green-800: #00391c;
  --green-700: #00391c;
  --green-600: #2ca35c;
  --green-400: #66c282;
  --green-100: #bde8c7;
  --lime: #c8e628;
  --paper: #f7fff8;
  --paper-2: #e8f5ea;
  --ink: #17352e;
  --muted: #5d706b;
  --line: rgba(15, 81, 50, 0.16);
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(4, 61, 51, 0.14);
  --radius: 8px;
  --container: 1180px;
  --hero-container: 1760px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.12;
}

h1 {
  max-width: 680px;
  font-size: 4rem;
}

h2 {
  font-size: 2.75rem;
}

h3 {
  font-size: 1.1rem;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
  position: relative;
}

.section-dark {
  background: var(--green-900);
  color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark p,
.on-dark h2,
.on-dark p {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - var(--hero-container)) / 2));
  background: rgba(4, 61, 51, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.3s ease, min-height 0.3s ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  box-shadow: 0 16px 36px rgba(4, 61, 51, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
}

.brand img {
  width: 190px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  font-size: 0.83rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.main-nav a {
  padding: 34px 0;
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: var(--lime);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 26px;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.nav-cta,
.btn-primary {
  background: var(--lime);
  color: var(--green-900);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 26px rgba(200, 230, 40, 0.16);
}

.nav-cta:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(255, 255, 255, 0.16);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--green-700);
  cursor: pointer;
  place-items: center;
  padding: 11px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 94px 0 112px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -18%;
  width: 62%;
  height: 46%;
  background: var(--lime);
  opacity: 0.18;
  border-top-left-radius: 360px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 61, 51, 0.96) 0%, rgba(4, 61, 51, 0.84) 44%, rgba(4, 61, 51, 0.44) 100%),
    url("assets/hero-migranpreneur.jpg") right center / cover no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
}

.hero-copy {
  padding-top: 30px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 20px;
  border: 1px solid rgba(200, 230, 40, 0.42);
  border-radius: 999px;
  padding: 7px 14px;
  color: var(--lime);
  background: rgba(15, 81, 50, 0.28);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section:not(.section-dark) .eyebrow,
.trust-strip .eyebrow {
  color: var(--green-800);
  background: var(--green-100);
  border-color: rgba(15, 81, 50, 0.18);
}

.hero-lede {
  max-width: 650px;
  margin-top: 24px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.info-bar span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.hero-panel {
  position: relative;
  align-self: stretch;
  min-height: 560px;
  border-radius: 8px 8px 8px 120px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  max-width: 300px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 81, 50, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-badge strong {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  font-size: 1.8rem;
}

.hero-badge span {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.trust-strip {
  padding: 58px 0;
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.trust-grid > div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(4, 61, 51, 0.06);
}

.trust-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-grid strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
}

.split-grid,
.process-grid,
.organizer-grid,
.faq-grid,
.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  align-items: center;
}

.visual-stack {
  position: relative;
  min-height: 520px;
}

.photo-card {
  position: absolute;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-main {
  left: 0;
  top: 0;
  width: 78%;
  height: 300px;
}

.photo-accent {
  right: 0;
  bottom: 0;
  width: 58%;
  height: 300px;
}

.mini-stat {
  position: absolute;
  left: 16%;
  bottom: 74px;
  z-index: 2;
  width: 220px;
  border-radius: var(--radius);
  padding: 22px;
  background: var(--green-100);
  border: 1px solid rgba(15, 81, 50, 0.14);
  box-shadow: var(--shadow);
  text-align: center;
}

.mini-stat strong {
  display: block;
  color: var(--green-800);
  font-size: 1.8rem;
}

.mini-stat span {
  color: var(--ink);
  font-weight: 800;
}

.section-copy h2,
.section-heading h2 {
  margin-bottom: 24px;
}

.section-copy p + p {
  margin-top: 16px;
}

.section-copy > p:not(.eyebrow),
.section-heading > p {
  font-size: 1.02rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  margin-inline: auto;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}

.link-arrow {
  color: var(--green-800);
  font-weight: 900;
}

.link-arrow::after {
  content: " →";
}

.soft-band {
  background: var(--paper-2);
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.icon-card,
.benefit-card,
.program-card,
.proof-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(4, 61, 51, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.icon-card:hover,
.benefit-card:hover,
.program-card:hover,
.proof-card:hover {
  transform: translateY(-6px);
  border-color: rgba(44, 163, 92, 0.35);
  box-shadow: 0 22px 48px rgba(4, 61, 51, 0.14);
}

.icon-card {
  padding: 28px;
}

.icon-wrap {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
}

.icon-wrap svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-card h3,
.benefit-card h3,
.module-card h3,
.step-item h3,
.program-card h3 {
  margin-bottom: 10px;
}

.benefit-section {
  background: var(--paper);
}

.benefit-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.benefit-card {
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.benefit-card span {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 900;
}

.learning-section {
  position: relative;
  overflow: hidden;
  background: var(--green-800);
}

.pattern-bg {
  position: absolute;
  inset: 0;
  opacity: 0.72;
  background:
    linear-gradient(135deg, rgba(200, 230, 40, 0.18) 25%, transparent 25%) 0 0 / 96px 96px,
    linear-gradient(225deg, rgba(102, 194, 130, 0.18) 25%, transparent 25%) 0 0 / 96px 96px,
    linear-gradient(90deg, rgba(4, 61, 51, 0.92), rgba(15, 81, 50, 0.64));
}

.learning-section .container {
  position: relative;
  z-index: 1;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.module-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 132px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 32px rgba(4, 61, 51, 0.2);
  transition: transform 0.28s ease, background 0.28s ease;
}

.module-card:hover {
  transform: translateY(-5px);
  background: var(--white);
}

.module-card strong {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  font-size: 1.45rem;
}

.module-card-wide {
  grid-column: 1 / -1;
}

.steps-list {
  display: grid;
  gap: 16px;
}

.step-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  align-items: center;
  border-radius: 999px 8px 8px 999px;
  padding: 16px 22px 16px 16px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.step-item strong {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  font-size: 1.6rem;
}

.timeline-section {
  background: var(--paper);
}

.timeline-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.timeline-table table {
  width: 100%;
  border-collapse: collapse;
}

.timeline-table th,
.timeline-table td {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.timeline-table th {
  background: var(--green-900);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-table td:first-child {
  width: 38%;
  color: var(--green-800);
  font-weight: 900;
}

.timeline-table tr:last-child td {
  border-bottom: 0;
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.status-label {
  width: fit-content;
  margin-bottom: 28px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green-900);
  background: var(--green-100);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.program-card p {
  margin-top: 6px;
}

.progress {
  height: 12px;
  overflow: hidden;
  margin-top: auto;
  border-radius: 999px;
  background: rgba(15, 81, 50, 0.12);
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-700), var(--lime));
}

.program-card a {
  margin-top: 24px;
  color: var(--green-800);
  font-weight: 900;
  text-transform: uppercase;
}

.program-card a::after {
  content: " →";
}

.organizer-section {
  background: var(--paper-2);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.proof-card {
  min-height: 156px;
  padding: 28px;
}

.proof-card strong {
  display: block;
  color: var(--green-700);
  font-size: 2.6rem;
  line-height: 1;
}

.proof-card span {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(4, 61, 51, 0.06);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--green-700);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 24px 24px;
}

.closing-cta {
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.closing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background:
    radial-gradient(circle at 12px 12px, var(--lime) 2px, transparent 2px) 0 0 / 34px 34px,
    linear-gradient(90deg, rgba(4, 61, 51, 0.96), rgba(15, 81, 50, 0.7));
}

.cta-grid {
  position: relative;
  z-index: 1;
}

.cta-grid .btn {
  justify-self: end;
}

.site-footer {
  background:
    linear-gradient(rgba(4, 61, 51, 0.9), rgba(4, 61, 51, 0.96)),
    url("assets/about-visual.jpg") center / cover no-repeat,
    radial-gradient(circle at 12px 12px, rgba(200, 230, 40, 0.24) 2px, transparent 2px) 0 0 / 36px 36px,
    linear-gradient(135deg, var(--green-900), #062b26);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr 1fr;
  gap: 48px;
  padding: 72px 0;
}

.footer-logo {
  width: 220px;
  margin-bottom: 20px;
}

.site-footer p,
.site-footer a {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
}

.site-footer a:hover {
  color: var(--lime);
}

.footer-bottom {
  padding: 20px 24px;
  background: var(--green-700);
  text-align: center;
}

.footer-bottom p {
  color: var(--white);
}

.hero {
  min-height: 790px;
  padding: 104px 0 96px;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 23%, rgba(200, 230, 40, 0.12), transparent 22%),
    linear-gradient(135deg, #043d33 0%, #084634 52%, #0f5132 100%);
}

.hero::after {
  right: -9%;
  bottom: -26%;
  width: 44%;
  height: 34%;
  opacity: 0.14;
  border-top-left-radius: 420px;
}

.hero-bg {
  overflow: hidden;
  background:
    radial-gradient(circle at 12px 12px, rgba(200, 230, 40, 0.12) 2px, transparent 2px) 0 0 / 54px 54px,
    linear-gradient(135deg, rgba(4, 61, 51, 0.94), rgba(15, 81, 50, 0.64));
  opacity: 0.58;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-bg::before {
  left: -10%;
  top: auto;
  width: 54%;
  height: 44%;
  background: rgba(102, 194, 130, 0.16);
  border-top-right-radius: 420px;
}

.hero-bg::after {
  left: auto;
  width: 42%;
  background:
    linear-gradient(180deg, rgba(15, 81, 50, 0), rgba(200, 230, 40, 0.08)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 16px);
  opacity: 0.56;
}

.hero-grid {
  position: relative;
  display: block;
}

.hero > .container {
  width: min(100% - 128px, var(--hero-container));
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding-top: 10px;
}

.hero-visual {
  position: absolute;
  right: clamp(-96px, calc((100vw - var(--hero-container)) / 2), 80px);
  bottom: -170px;
  z-index: 2;
  width: min(62vw, 1120px);
  min-width: 720px;
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-visual.reveal.is-visible {
  opacity: 1;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 4.25vw, 5rem);
  letter-spacing: 0;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.22);
}

.hero .eyebrow {
  margin-bottom: 28px;
  background: rgba(4, 61, 51, 0.5);
}

.hero-lede {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.hero-social {
  position: absolute;
  right: max(64px, calc((100vw - var(--hero-container)) / 2));
  top: 50%;
  z-index: 2;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.hero-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-social a:hover {
  transform: translateX(-4px);
  background: rgba(255, 255, 255, 0.14);
}

.trust-strip {
  padding: 74px 0 88px;
}

.trust-note {
  max-width: 680px;
  margin: 0 auto 46px;
  color: rgba(23, 53, 46, 0.48);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.trust-grid {
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 32px;
  text-align: center;
}

.trust-grid > div {
  min-height: 86px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.trust-kicker {
  margin-bottom: 2px;
  color: var(--green-400);
  letter-spacing: 0.03em;
}

.trust-grid strong {
  color: var(--green-900);
  font-size: 1.08rem;
}

.about-action-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 520px;
  margin-top: 32px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--green-700);
}

.about-action-card a {
  display: grid;
  place-items: center;
  min-height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
}

.about-action-card a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.eligibility-grid {
  position: relative;
}

.eligibility-grid::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 31px;
  height: 2px;
  background: rgba(15, 81, 50, 0.12);
}

.eligibility-grid .icon-card {
  position: relative;
  z-index: 1;
  padding: 0 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.eligibility-grid .icon-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.eligibility-grid .icon-wrap {
  margin-inline: auto;
  width: 76px;
  height: 76px;
  border: 8px solid var(--paper-2);
  background: var(--green-100);
}

.module-grid {
  gap: 18px 36px;
}

.module-card {
  min-height: 142px;
  border: 2px solid rgba(255, 255, 255, 0.74);
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.module-card h3,
.module-card p {
  color: var(--white);
}

.module-card strong {
  background: var(--green-700);
  border: 3px solid var(--green-100);
}

.module-card:nth-child(odd) {
  grid-template-columns: 1fr 78px;
  border-radius: 30px 300px 300px 30px;
  text-align: right;
}

.module-card:nth-child(odd) strong {
  order: 2;
}

.module-card:nth-child(even) {
  border-radius: 300px 30px 30px 300px;
}

.module-card-wide {
  grid-column: 1 / -1;
  width: min(700px, 100%);
  justify-self: center;
  border-radius: 999px;
  text-align: left;
}

.program-card {
  min-height: 720px;
  padding: 34px;
}

.program-card-visual {
  position: relative;
  min-height: 260px;
  margin: -6px -6px 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(15, 81, 50, 0.66), rgba(15, 81, 50, 0.2)),
    url("assets/about-visual.jpg") center / cover no-repeat;
  overflow: hidden;
}

.program-card:nth-child(2) .program-card-visual {
  background:
    linear-gradient(rgba(15, 81, 50, 0.58), rgba(15, 81, 50, 0.14)),
    url("assets/hero-migranpreneur.jpg") center / cover no-repeat;
}

.program-card:nth-child(3) .program-card-visual {
  background:
    radial-gradient(circle at 12px 12px, rgba(200, 230, 40, 0.26) 2px, transparent 2px) 0 0 / 34px 34px,
    linear-gradient(135deg, var(--green-900), var(--green-700));
}

.status-ribbon {
  position: absolute;
  right: -38px;
  top: 30px;
  width: 160px;
  padding: 9px 0;
  background: var(--green-700);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(45deg);
}

.program-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 34px 0 22px;
}

.program-meta div,
.program-meta dt,
.program-meta dd {
  margin: 0;
}

.program-meta dt {
  color: var(--muted);
  font-size: 0.82rem;
}

.program-meta dd {
  color: var(--ink);
  font-weight: 900;
}

.purpose-section {
  background:
    linear-gradient(rgba(15, 81, 50, 0.2), rgba(15, 81, 50, 0.2)),
    var(--paper);
  padding: 102px 0;
}

.purpose-panel {
  width: min(960px, 100%);
  margin-inline: auto;
  padding: 44px;
  border-radius: var(--radius);
  background: var(--green-100);
  box-shadow: inset 0 0 0 1px rgba(15, 81, 50, 0.12);
}

.purpose-panel h2,
.purpose-panel p {
  max-width: 760px;
}

.purpose-panel::after {
  content: "";
  display: block;
  margin-top: 28px;
  border: 1px dashed var(--green-700);
}

.purpose-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.purpose-points span {
  min-height: 68px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green-900);
  font-weight: 900;
  text-align: center;
}

.team-section {
  background: var(--paper-2);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(4, 61, 51, 0.15);
}

.team-card > div {
  flex: 1;
  min-height: 250px;
  margin: -24px -24px 30px;
  border-radius: var(--radius) var(--radius) 0 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.9)),
    url("assets/hero-migranpreneur.jpg") center top / cover no-repeat;
}

.team-card:nth-child(even) > div {
  background:
    linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.9)),
    url("assets/about-visual.jpg") center top / cover no-repeat;
}

.team-card h3 {
  display: grid;
  place-items: center;
  min-height: 64px;
  margin: 0;
  border-radius: var(--radius);
  background: var(--green-700);
  color: var(--white);
  text-align: center;
}

.team-card span {
  display: block;
  margin-top: 8px;
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.donation-section {
  background: var(--paper);
}

.donation-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  font-size: 0.75rem;
}

.donation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.play-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-900);
  font-weight: 900;
  text-transform: uppercase;
}

.play-link::before {
  content: "";
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-700);
  clip-path: polygon(36% 25%, 36% 75%, 78% 50%);
}

.donation-visual {
  position: relative;
  min-height: 560px;
}

.photo-card-large {
  position: absolute;
  right: 0;
  top: 0;
  width: 86%;
  height: 340px;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-card-large img,
.floating-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-photo {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48%;
  height: 210px;
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-section {
  background: var(--paper);
}

.proof-visual {
  min-height: 520px;
}

.proof-stat {
  left: 33%;
  bottom: 140px;
}

blockquote {
  margin: 30px 0;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--paper-2);
  color: var(--ink);
  font-size: 1.15rem;
  font-style: italic;
}

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

.article-section {
  background: var(--paper-2);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.article-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 44px 0 0;
}

.article-card time {
  position: absolute;
  right: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 5px;
  background: var(--green-700);
  color: var(--white);
  font-weight: 900;
  text-align: center;
}

.article-card span {
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 900;
}

.article-card h3 {
  margin: 12px 0 12px;
  font-size: 1.35rem;
}

.article-card a {
  width: fit-content;
  margin-top: auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--green-700);
  border-radius: 999px;
  padding: 0 26px;
  color: var(--green-800);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 18px;
    padding-inline: 24px;
  }

  .hero {
    min-height: 720px;
    padding: 96px 0 96px;
  }

  .hero-grid {
    display: block;
  }

  .hero-visual {
    right: -70px;
    bottom: -130px;
    width: min(58vw, 860px);
    min-width: 560px;
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(3rem, 5.6vw, 4.35rem);
  }

  .main-nav {
    gap: 16px;
    font-size: 0.78rem;
  }

  .hero-grid,
  .split-grid,
  .process-grid,
  .organizer-grid,
  .faq-grid,
  .cta-grid {
    gap: 44px;
  }

  .icon-grid,
  .benefit-layout,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-card {
    min-height: 260px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-header {
    min-height: var(--header-height);
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .brand {
    min-width: 148px;
  }

  .brand img {
    width: 148px;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .nav-cta {
    justify-self: end;
    min-height: 42px;
    padding-inline: 16px;
    font-size: 0.74rem;
  }

  .main-nav {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    display: grid;
    gap: 0;
    justify-content: stretch;
    padding: 12px 24px 24px;
    background: var(--green-900);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  .site-header.nav-open .main-nav {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding: 76px 0 86px;
  }

  .hero > .container {
    width: min(100% - 32px, var(--container));
  }

  .hero-bg::before {
    left: -42%;
    width: 108%;
    height: 34%;
    opacity: 0.8;
  }

  .hero-bg::after {
    width: 52%;
    background:
      linear-gradient(180deg, rgba(15, 81, 50, 0), rgba(200, 230, 40, 0.07)),
      repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 16px);
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(2.75rem, 8vw, 3.55rem);
  }

  .hero-grid,
  .split-grid,
  .process-grid,
  .organizer-grid,
  .faq-grid,
  .cta-grid,
  .donation-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: block;
    right: -260px;
    bottom: -110px;
    width: 560px;
    min-width: 0;
    opacity: 0.22;
  }

  .hero-visual.reveal.is-visible {
    opacity: 0.22;
  }

  .hero-social {
    display: none;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-panel {
    min-height: 500px;
    border-radius: var(--radius);
  }

  .trust-grid,
  .program-cards,
  .footer-grid,
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .purpose-points {
    grid-template-columns: 1fr;
  }

  .donation-visual {
    min-height: 480px;
  }

  .visual-stack {
    min-height: 470px;
  }

  .photo-main {
    height: 260px;
  }

  .photo-accent {
    height: 260px;
  }

  .module-grid {
    grid-template-columns: 1fr;
  }

  .module-card-wide {
    grid-column: auto;
  }

  .cta-grid .btn {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  h3 {
    font-size: 1rem;
  }

  .section {
    padding: 78px 0;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand {
    min-width: 126px;
  }

  .brand img {
    width: 126px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-cta {
    display: inline-flex;
    justify-self: center;
    min-height: 40px;
    max-width: 150px;
    padding-inline: 12px;
    font-size: 0.68rem;
  }

  .hero {
    padding: 58px 0 72px;
  }

  .hero-visual {
    right: -270px;
    bottom: -82px;
    width: 500px;
    opacity: 0.16;
  }

  .hero-visual.reveal.is-visible {
    opacity: 0.16;
  }

  .hero::after {
    right: -42%;
    bottom: -18%;
    width: 108%;
    height: 26%;
    opacity: 0.12;
  }

  .hero-bg::before {
    background-position: 60% center;
    opacity: 0.28;
  }

  .hero h1 {
    font-size: 2.28rem;
    line-height: 1.15;
  }

  .hero-lede {
    font-size: 0.96rem;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 50px;
  }

  .info-bar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .info-bar span {
    justify-content: center;
  }

  .hero-panel {
    min-height: 390px;
  }

  .hero-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .trust-grid,
  .icon-grid,
  .benefit-layout,
  .program-cards,
  .proof-grid,
  .footer-grid,
  .team-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .visual-stack {
    min-height: 610px;
  }

  .photo-card {
    position: relative;
    width: 100%;
    height: 260px;
  }

  .photo-main,
  .photo-accent {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-bottom: 18px;
  }

  .mini-stat {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .module-card,
  .step-item {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
    text-align: left;
  }

  .module-card:nth-child(odd),
  .module-card:nth-child(even),
  .module-card-wide {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
    text-align: left;
  }

  .module-card:nth-child(odd) strong {
    order: 0;
  }

  .module-card strong,
  .step-item strong {
    width: 58px;
    height: 58px;
    font-size: 1.25rem;
  }

  .timeline-table {
    overflow-x: auto;
  }

  .timeline-table table {
    min-width: 620px;
  }

  .timeline-table th,
  .timeline-table td {
    padding: 18px;
  }

  .program-card {
    min-height: 600px;
  }

  .program-card-visual {
    min-height: 210px;
  }

  .program-meta {
    grid-template-columns: 1fr;
  }

  .purpose-panel {
    padding: 28px;
  }

  .team-card {
    min-height: 390px;
  }

  .photo-card-large,
  .floating-photo {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: 260px;
    margin-bottom: 18px;
  }

  .donation-visual,
  .proof-visual {
    min-height: auto;
  }

  blockquote {
    padding: 22px;
    font-size: 1rem;
  }

  .footer-grid {
    gap: 28px;
    padding: 54px 0;
  }
}
