:root {
  --orange: #ea580c;
  --orange-dark: #c2410c;
  --navy: #020617;
  --slate: #334155;
  --muted: #f1f5f9;
  --line: #e2e8f0;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #0f172a;
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(850px, calc(100% - 32px)); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 18px; background: var(--orange); font-size: 24px; }
.brand strong { display: block; font-size: 18px; line-height: 1.1; }
.brand small { display: block; color: #64748b; text-transform: uppercase; letter-spacing: 1px; font-size: 11px; margin-top: 4px; }
.main-nav { display: flex; gap: 28px; font-weight: 700; color: #475569; font-size: 14px; }
.main-nav a:hover { color: var(--orange); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 16px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  border: 2px solid var(--orange);
  cursor: pointer;
}
.button:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.button.secondary { background: var(--white); color: var(--navy); border-color: var(--white); }
.button.small { min-height: 42px; padding: 0 18px; }
.button.full { width: 100%; }
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at top left, rgba(234,88,12,0.45), transparent 34%), linear-gradient(135deg, #0f172a, #020617 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; padding: 96px 0; }
.eyebrow { color: #fdba74; font-weight: 900; text-transform: uppercase; letter-spacing: 1.2px; font-size: 13px; margin: 0 0 14px; }
.eyebrow.orange { color: var(--orange); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(40px, 6vw, 68px); line-height: 1.02; margin-bottom: 24px; }
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.1; margin-bottom: 20px; }
h3 { font-size: 22px; line-height: 1.2; }
.lead { font-size: 20px; color: #e2e8f0; max-width: 680px; margin-bottom: 30px; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.vision-card { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18); border-radius: 30px; padding: 32px; box-shadow: 0 24px 70px rgba(0,0,0,0.28); }
.vision-card h2 { font-size: clamp(25px, 3vw, 36px); }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 26px; }
.stat-grid div { background: rgba(255,255,255,0.10); border-radius: 20px; padding: 18px; }
.stat-grid strong { display: block; font-size: 30px; line-height: 1; }
.stat-grid span { display: block; color: #cbd5e1; margin-top: 8px; font-size: 14px; }
.section { padding: 82px 0; }
.centered { text-align: center; }
.centered p { font-size: 19px; color: var(--slate); }
.soft-bg { background: var(--muted); }
.section-heading { max-width: 720px; margin-bottom: 38px; }
.section-heading p { color: var(--slate); font-size: 18px; }
.centered-text { text-align: center; margin-left: auto; margin-right: auto; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.program-grid article { background: var(--white); border-radius: 24px; padding: 24px; font-weight: 800; font-size: 18px; box-shadow: 0 8px 24px rgba(15,23,42,0.06); border: 1px solid #eef2f7; }
.program-grid article:before { content: "→"; display: inline-grid; place-items: center; width: 38px; height: 38px; margin-right: 12px; border-radius: 14px; background: #ffedd5; color: var(--orange); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { border: 1px solid var(--line); border-radius: 26px; padding: 28px; box-shadow: 0 8px 24px rgba(15,23,42,0.04); }
.value-card span { width: 48px; height: 48px; display: grid; place-items: center; background: #ffedd5; border-radius: 18px; font-size: 24px; margin-bottom: 16px; }
.value-card p { color: var(--slate); }
.dark-cta { background: var(--navy); color: var(--white); }
.cta-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center; }
.dark-cta p { color: #cbd5e1; font-size: 18px; }
.support-card { background: var(--white); color: var(--navy); border-radius: 28px; padding: 32px; }
.support-card p { color: var(--slate); margin-bottom: 14px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-section p { color: var(--slate); font-size: 18px; }
.contact-list { margin-top: 28px; }
.contact-list p { margin-bottom: 12px; }
.contact-form { background: var(--muted); border-radius: 28px; padding: 28px; }
.contact-form label { display: block; font-weight: 800; margin-bottom: 16px; }
.contact-form input, .contact-form textarea { width: 100%; display: block; border: 1px solid var(--line); border-radius: 14px; margin-top: 8px; padding: 14px; font: inherit; }
.form-note { font-size: 13px !important; margin: 14px 0 0; color: #64748b !important; }
.site-footer { background: var(--navy); color: #cbd5e1; padding: 28px 0; }
.footer-wrap { display: flex; justify-content: space-between; gap: 18px; font-size: 14px; }
.footer-wrap p { margin: 0; }
@media (max-width: 860px) {
  .main-nav { display: none; }
  .hero-grid, .cta-grid, .contact-grid { grid-template-columns: 1fr; }
  .program-grid, .value-grid { grid-template-columns: 1fr; }
  .hero-grid { padding: 72px 0; }
  .site-header .button.small { display: none; }
  .footer-wrap { flex-direction: column; }
}
@media (max-width: 520px) {
  .brand strong { font-size: 16px; }
  .section { padding: 62px 0; }
  .button-row .button { width: 100%; }
  .stat-grid { grid-template-columns: 1fr; }
}
