/* FundingForYourCause.com - v1
   Simple static HTML/CSS website. No outside libraries required.
*/

:root {
  --navy: #14213d;
  --blue: #1b6ca8;
  --green: #2e8b57;
  --gold: #f5b942;
  --cream: #fff9ef;
  --light: #f6f8fb;
  --text: #233042;
  --muted: #627084;
  --white: #ffffff;
  --border: #dce4ee;
  --shadow: 0 14px 35px rgba(20, 33, 61, 0.12);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.95rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--white);
  font-weight: 700;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: var(--white);
  font-size: 1.3rem;
  box-shadow: 0 9px 20px rgba(46, 139, 87, 0.22);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: var(--text);
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 999px;
}

.nav a:hover,
.nav a.active {
  background: var(--light);
  text-decoration: none;
  color: var(--blue);
}

.nav .button {
  color: var(--white);
  background: var(--green);
  padding: 11px 16px;
}

.nav .button:hover {
  background: #267447;
  color: var(--white);
}

.hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(245, 185, 66, 0.23), transparent 28%),
    radial-gradient(circle at 85% 0%, rgba(27, 108, 168, 0.18), transparent 30%),
    linear-gradient(135deg, #f7fbff 0%, #fffaf0 100%);
  padding: 76px 0 66px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  background: rgba(46, 139, 87, 0.1);
  border: 1px solid rgba(46, 139, 87, 0.18);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.28rem;
}

.lead {
  font-size: 1.2rem;
  color: #37465a;
  max-width: 760px;
}

.hero-actions,
.section-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 20px;
  min-height: 48px;
  font-weight: 800;
  border: 2px solid transparent;
  text-align: center;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(46, 139, 87, 0.22);
}

.btn-primary:hover {
  background: #267447;
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--light);
  color: var(--navy);
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -18px -18px auto auto;
  width: 130px;
  height: 130px;
  border-radius: 32px;
  background: rgba(245, 185, 66, 0.22);
  z-index: -1;
  transform: rotate(8deg);
}

.stat {
  border-bottom: 1px solid var(--border);
  padding: 17px 0;
}

.stat:first-child {
  padding-top: 0;
}

.stat:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.stat strong {
  display: block;
  color: var(--navy);
  font-size: 1.7rem;
  line-height: 1.1;
}

.stat span {
  color: var(--muted);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--light);
}

.section.cream {
  background: var(--cream);
}

.section-header {
  max-width: 790px;
  margin-bottom: 34px;
}

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

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 22px rgba(20, 33, 61, 0.07);
}

.card.highlight {
  border-color: rgba(46, 139, 87, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #f5fff8 100%);
}

.icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: rgba(27, 108, 168, 0.1);
  color: var(--blue);
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.check-list,
.clean-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.check-list li,
.clean-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 11px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.clean-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  font-size: 1.2rem;
}

.callout {
  background: var(--navy);
  color: var(--white);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.callout h2,
.callout h3 {
  color: var(--white);
}

.callout p {
  color: rgba(255, 255, 255, 0.86);
}

.callout a {
  color: var(--white);
  font-weight: 800;
}

.notice {
  background: #fffdf7;
  border: 1px solid rgba(245, 185, 66, 0.42);
  border-left: 6px solid var(--gold);
  border-radius: 16px;
  padding: 18px 20px;
}

.page-hero {
  background: linear-gradient(135deg, #f7fbff 0%, #fff9ef 100%);
  padding: 58px 0;
  border-bottom: 1px solid var(--border);
}

.page-hero p {
  max-width: 830px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 24px;
  margin-bottom: 14px;
}

.faq-item h3 {
  margin-bottom: 8px;
}

.contact-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-method {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.contact-method:last-child {
  border-bottom: 0;
}

.contact-method strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
}

.email-list {
  background: var(--light);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
}

.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  padding: 42px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
  margin-bottom: 32px;
}

.footer h3,
.footer strong {
  color: var(--white);
}

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

.footer ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.footer li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 18px;
  font-size: 0.92rem;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.small {
  font-size: 0.94rem;
  color: var(--muted);
}

.footer .small {
  color: rgba(255, 255, 255, 0.72);
}

.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.badge {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.92rem;
  font-weight: 800;
}

@media (max-width: 850px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 50px;
  }
}

@media (max-width: 520px) {
  .topbar .container {
    flex-direction: column;
    gap: 4px;
  }

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

  .btn {
    width: 100%;
  }

  .callout {
    padding: 26px;
  }
}