body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #172033;
  background: #f8f5ee;
  line-height: 1.6;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.top-strip {
  background: #071426;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.top-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.top-strip a {
  color: #f4b942;
  font-weight: 800;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 245, 238, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #10233f;
  min-width: 0;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #10233f, #2563eb);
  color: white;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.22);
  flex: 0 0 auto;
}

.logo-text {
  min-width: 0;
}

.logo-text span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #334155;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #2563eb;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 850;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: #f4b942;
  color: #231a00;
  box-shadow: 0 14px 34px rgba(244, 185, 66, 0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(244, 185, 66, 0.42);
}

.btn-blue {
  background: #2563eb;
  color: white;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.24);
}

.btn-blue:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, rgba(244, 185, 66, 0.22), transparent 26%), radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.20), transparent 24%), linear-gradient(135deg, #071426, #10233f);
  color: white;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 44px;
  align-items: center;
  min-height: 680px;
  padding: 80px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f4b942;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 16px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  line-height: 0.93;
  letter-spacing: -0.075em;
  margin: 0 0 24px;
}

.hero p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.22rem;
  max-width: 680px;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 720px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 18px;
}

.stat-card strong {
  display: block;
  font-size: 1.7rem;
  color: #f4b942;
  line-height: 1;
}

.stat-card span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  margin-top: 8px;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 36px;
  padding: 22px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.13);
}

.hero-card {
  background: white;
  color: #172033;
  border-radius: 28px;
  padding: 28px;
}

.hero-card h2 {
  color: #10233f;
  margin: 0 0 16px;
  font-size: 1.6rem;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-card li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.hero-card li:last-child {
  border-bottom: 0;
}

.check {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.section {
  padding: 86px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header h2 {
  color: #10233f;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin: 0 0 16px;
}

.section-header p {
  color: #64748b;
  font-size: 1.08rem;
  margin: 0;
}

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

.card {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.07);
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.card h3 {
  margin: 0 0 10px;
  color: #10233f;
  font-size: 1.25rem;
}

.card p {
  margin: 0;
  color: #64748b;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.feature-box {
  background: #10233f;
  color: white;
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.13);
}

.feature-box h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin: 0 0 18px;
}

.feature-box p {
  color: rgba(255, 255, 255, 0.82);
}

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

.list-item {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 22px;
  padding: 20px;
}

.list-item strong {
  color: #10233f;
  display: block;
  margin-bottom: 5px;
}

.list-item span {
  color: #64748b;
}

.cta {
  background: radial-gradient(circle at 20% 30%, rgba(244, 185, 66, 0.24), transparent 26%), linear-gradient(135deg, #071426, #10233f);
  color: white;
  border-radius: 38px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  max-width: 720px;
}

.page-hero {
  background: radial-gradient(circle at 20% 15%, rgba(244, 185, 66, 0.20), transparent 25%), linear-gradient(135deg, #071426, #10233f);
  color: white;
  padding: 90px 0;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
  margin: 0;
}

.content-box {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 30px;
  padding: 36px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.07);
}

.content-box h2,
.content-box h3 {
  color: #10233f;
}

.content-box p,
.content-box li {
  color: #475569;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  font-weight: 800;
  color: #10233f;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: white;
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.notice {
  background: rgba(244, 185, 66, 0.16);
  border: 1px solid rgba(244, 185, 66, 0.42);
  border-radius: 22px;
  padding: 20px;
  color: #5c4100;
}

.footer {
  background: #071426;
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 0.8fr;
  gap: 28px;
}

.footer h3,
.footer h4 {
  color: white;
  margin-top: 0;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer a:hover {
  color: #f4b942;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 36px;
  padding-top: 22px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.56);
}

.mobile-donate {
  display: none;
}

@media (max-width: 880px) {
  .top-strip .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero .container,
  .split,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero .container {
    min-height: unset;
    padding: 58px 0;
  }

  .hero-stats,
  .cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 34px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, 1120px);
  }

  .top-strip {
    font-size: 0.82rem;
  }

  .top-strip .container {
    gap: 6px;
    padding: 8px 0;
  }

  .site-header {
    position: relative;
  }

  .navbar {
    gap: 12px;
    padding: 12px 0;
  }

  .logo {
    width: 100%;
    gap: 10px;
    align-items: center;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .logo-text {
    font-size: 0.96rem;
    line-height: 1.05;
  }

  .logo-text span {
    font-size: 0.62rem;
    letter-spacing: 0.05em;
    margin-top: 3px;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    font-size: 0.85rem;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    text-align: center;
  }

  .nav-links .btn-primary {
    display: flex;
    grid-column: 1 / -1;
    min-height: 42px;
    background: #f4b942;
  }

  .mobile-donate {
    display: none;
  }

  .hero .container {
    padding: 38px 0;
    gap: 26px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .hero p,
  .page-hero p {
    font-size: 1rem;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 22px;
  }

  .hero-actions .btn,
  .cta .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 14px;
  }

  .stat-card strong {
    font-size: 1.35rem;
  }

  .hero-panel {
    padding: 12px;
    border-radius: 24px;
  }

  .hero-card {
    padding: 18px;
    border-radius: 20px;
  }

  .hero-card h2 {
    font-size: 1.25rem;
  }

  .hero-card li {
    gap: 10px;
    padding: 12px 0;
    font-size: 0.94rem;
  }

  .check {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .section {
    padding: 48px 0;
  }

  .section-header h2,
  .feature-box h2,
  .cta h2 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .cards {
    gap: 14px;
  }

  .card,
  .content-box,
  .feature-box,
  .list-item {
    padding: 20px;
    border-radius: 20px;
  }

  .cta {
    padding: 24px;
    border-radius: 24px;
  }

  .page-hero {
    padding: 54px 0;
  }

  .footer {
    padding: 38px 0 24px;
  }
}
