:root {
  --stage-navy: #0b4a86;
  --stage-navy-deep: #073568;
  --stage-gold: #f4a11a;
  --stage-gold-soft: #fff3d8;
  --stage-cream: #fff9f0;
  --stage-text: #12345b;
  --stage-muted: #6c7a8a;
  --stage-border: #e6ebf0;
  --stage-page: #ffffff;
  --stage-radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--stage-page);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--stage-text);
  background: var(--stage-page);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--stage-gold);
  outline-offset: 3px;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.stage-shell {
  width: min(1440px, calc(100% - 32px));
  margin: 16px auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--stage-border);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(11, 74, 134, .05);
}

.stage-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-right: auto;
}

.stage-brand img {
  display: block;
  width: 138px;
  height: 100px;
  object-fit: contain;
  object-position: left center;
}

.stage-footer-column a {
  transition: color .2s ease;
}

.stage-footer-column a:hover,
.stage-footer-column a:focus-visible {
  color: var(--stage-gold);
}

.stage-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.stage-button-primary:hover,
.stage-button-primary:focus-visible {
  background: #e99a10;
  transform: translateY(-2px);
}

.stage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .94fr);
  align-items: center;
  gap: 42px;
  min-height: 570px;
  padding: 64px 82px 48px 100px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #fffdfb 100%);
}

.stage-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.stage-kicker {
  display: block;
  margin-bottom: 17px;
  color: var(--stage-navy);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.3;
}

.stage-hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--stage-navy-deep);
  letter-spacing: -.045em;
  font-size: clamp(42px, 4.3vw, 66px);
  font-weight: 800;
  line-height: 1.08;
}

.stage-hero h1 em {
  color: var(--stage-gold);
  font-style: normal;
}

.stage-hero-copy > p {
  max-width: 580px;
  margin: 24px 0 28px;
  color: var(--stage-text);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.52;
}

.stage-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.stage-button {
  min-height: 60px;
  padding: 0 28px;
  font-size: 17px;
}

.stage-button svg {
  width: 22px;
  height: 22px;
}

.stage-button-primary {
  color: var(--stage-navy-deep);
  background: var(--stage-gold);
  box-shadow: 0 8px 18px rgba(244, 161, 26, .2);
}

.stage-button-outline {
  color: var(--stage-navy);
  background: #fff;
  border: 2px solid var(--stage-navy);
}

.stage-button-outline:hover,
.stage-button-outline:focus-visible {
  background: #eef6fc;
  transform: translateY(-2px);
}

.stage-hero-art {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
  isolation: isolate;
}

.stage-sunburst {
  position: absolute;
  z-index: -1;
  width: min(100%, 560px);
  opacity: .12;
  transform: rotate(-14deg);
}

.stage-tomorrow-mark {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 650px);
  height: auto;
  filter: drop-shadow(0 7px 7px rgba(7, 53, 104, .04));
}

.stage-trust {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  margin: -14px 72px 38px;
  padding: 20px 8px;
  background: #fff;
  border-top: 1px solid var(--stage-border);
  border-bottom: 1px solid var(--stage-border);
}

.stage-trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 70px;
  padding: 0 18px;
  border-right: 1px solid var(--stage-border);
}

.stage-trust-item:last-child {
  border-right: 0;
}

.stage-trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--stage-navy);
  background: var(--stage-gold-soft);
  border-radius: 50%;
}

.stage-trust-icon svg {
  width: 23px;
  height: 23px;
}

.stage-trust-item > span:last-child {
  display: grid;
  gap: 4px;
}

.stage-trust-item strong {
  color: var(--stage-navy);
  font-size: 15px;
  line-height: 1.2;
}

.stage-trust-item small {
  color: var(--stage-muted);
  font-size: 13px;
  line-height: 1.2;
}

.stage-donation {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(270px, .75fr);
  align-items: center;
  gap: 30px;
  width: min(100% - 96px, 1020px);
  margin: 0 auto 48px;
  padding: 30px 34px;
  background: var(--stage-cream);
  border: 1px solid #f4e1bc;
  border-radius: var(--stage-radius);
}

.stage-donation-copy {
  max-width: 680px;
}

.stage-heart {
  width: 28px;
  height: 28px;
  color: var(--stage-gold);
}

.stage-donation h2 {
  margin: 9px 0 12px;
  color: var(--stage-navy-deep);
  letter-spacing: -.035em;
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.08;
}

.stage-donation h2 span {
  color: var(--stage-gold);
}

.stage-donation p {
  max-width: 610px;
  margin: 0;
  color: var(--stage-text);
  font-size: 15px;
  line-height: 1.5;
}

.stage-donation-action {
  display: grid;
  gap: 10px;
  justify-items: stretch;
}

.stage-donation-action .stage-button {
  width: 100%;
}

.stage-donation-action small {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--stage-muted);
  font-size: 12px;
  line-height: 1.3;
}

.stage-donation-action small svg {
  width: 16px;
  height: 16px;
}

.stage-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.55fr repeat(4, minmax(0, 1fr));
  gap: 34px;
  padding: 34px 58px 54px;
  overflow: hidden;
  background: #f8fafc;
  border-top: 1px solid var(--stage-border);
}

.stage-footer::after {
  content: "";
  position: absolute;
  right: -155px;
  bottom: -145px;
  width: 340px;
  height: 340px;
  opacity: .08;
  background: url("/brand/imbright-full-sun.svg") center / contain no-repeat;
  pointer-events: none;
}

.stage-footer-brand,
.stage-footer-column,
.stage-copyright {
  position: relative;
  z-index: 1;
}

.stage-footer-brand .stage-brand {
  margin: 0 0 5px;
}

.stage-footer-brand .stage-brand img {
  width: 138px;
  height: 100px;
}

.stage-footer-brand p,
.stage-copyright {
  margin: 0;
  color: var(--stage-muted);
  font-size: 13px;
  line-height: 1.45;
}

.stage-footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
  color: var(--stage-navy);
  font-size: 13px;
  line-height: 1.25;
}

.stage-footer-column strong {
  margin-bottom: 5px;
  font-size: 14px;
}

.stage-footer-subheading {
  margin-top: 14px !important;
}

.stage-copyright {
  grid-column: 1 / -1;
  margin-top: 8px;
  text-align: center;
}

@media (max-width: 1100px) {
  .stage-hero {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 56px 60px 36px;
  }

  .stage-hero-copy {
    max-width: 760px;
  }

  .stage-hero-art {
    min-height: 330px;
  }

  .stage-trust {
    grid-template-columns: 1fr 1fr;
    margin-inline: 60px;
  }

  .stage-trust-item:nth-child(2) {
    border-right: 0;
  }

  .stage-trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--stage-border);
  }

  .stage-donation {
    grid-template-columns: 1fr;
    width: calc(100% - 120px);
  }

  .stage-donation-action {
    width: min(100%, 420px);
  }

  .stage-footer {
    grid-template-columns: 1.4fr repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .stage-shell {
    width: calc(100% - 12px);
    margin: 6px auto;
    border-radius: 13px;
  }

  .stage-brand img,
  .stage-footer-brand .stage-brand img {
    width: 125px;
    height: 94px;
  }

  .stage-hero {
    display: block;
    min-height: 0;
    padding: 26px 24px 26px;
  }

  .stage-kicker {
    margin-bottom: 12px;
    letter-spacing: .1em;
    font-size: 10px;
  }

  .stage-hero h1 {
    letter-spacing: -.035em;
    font-size: 34px;
    line-height: 1.08;
  }

  .stage-hero-copy > p {
    margin: 18px 0 22px;
    font-size: 16px;
    line-height: 1.5;
  }

  .stage-hero-actions {
    display: grid;
    gap: 11px;
  }

  .stage-button {
    width: 100%;
    min-height: 56px;
    padding-inline: 20px;
    font-size: 16px;
  }

  .stage-hero-art {
    min-height: 294px;
    margin-top: 15px;
  }

  .stage-sunburst {
    width: 360px;
    max-width: 130%;
  }

  .stage-tomorrow-mark {
    width: 112%;
  }

  .stage-trust {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: -12px 14px 30px;
    padding: 7px;
  }

  .stage-trust-item {
    align-items: flex-start;
    gap: 9px;
    min-height: 92px;
    padding: 13px 8px;
    border: 0;
  }

  .stage-trust-item:nth-child(odd) {
    border-right: 1px solid var(--stage-border);
  }

  .stage-trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--stage-border);
  }

  .stage-trust-item:nth-child(2) {
    border-right: 0;
  }

  .stage-trust-icon {
    width: 30px;
    height: 30px;
  }

  .stage-trust-icon svg {
    width: 17px;
    height: 17px;
  }

  .stage-trust-item > span:last-child {
    gap: 3px;
  }

  .stage-trust-item strong {
    font-size: 11px;
    line-height: 1.2;
  }

  .stage-trust-item small {
    font-size: 10px;
    line-height: 1.2;
  }

  .stage-donation {
    display: block;
    width: calc(100% - 28px);
    margin-bottom: 34px;
    padding: 23px 20px;
    border-radius: 22px;
  }

  .stage-donation h2 {
    margin-top: 8px;
    font-size: 28px;
    line-height: 1.1;
  }

  .stage-donation p {
    font-size: 14px;
  }

  .stage-donation-action {
    width: 100%;
    margin-top: 18px;
  }

  .stage-footer {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
    padding: 30px 20px 54px;
  }

  .stage-footer-brand {
    grid-column: 1 / -1;
  }

  .stage-footer-column {
    gap: 8px;
    font-size: 12px;
  }

  .stage-footer-column strong {
    font-size: 13px;
  }

  .stage-copyright {
    margin-top: 4px;
    font-size: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
