:root {
      --tj-navy: #102a43;
      --tj-blue: #1f5f8b;
      --tj-gold: #d9a441;
      --tj-cream: #f8f5ee;
      --tj-ink: #243b53;
      --tj-muted: #627d98;
    }

    body {
      color: var(--tj-ink);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    a {
      text-underline-offset: .2rem;
    }

    .navbar-brand {
      font-weight: 800;
      letter-spacing: -.02em;
    }

    .hero {
      position: relative;
      overflow: hidden;
      color: #fff;
      background:
        linear-gradient(115deg, rgba(16, 42, 67, .97), rgba(31, 95, 139, .84)),
        url("https://images.unsplash.com/photo-1533130061792-64b345e4a833?auto=format&fit=crop&w=1800&q=85")
        center/cover no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      right: -8rem;
      bottom: -10rem;
      width: 28rem;
      height: 28rem;
      border: 4rem solid rgba(255,255,255,.06);
      border-radius: 50%;
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      margin-bottom: 1rem;
      color: var(--tj-gold);
      font-size: .8rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .display-title {
      max-width: 850px;
      font-weight: 800;
      letter-spacing: -.04em;
    }

    .btn-gold {
      color: #17212b;
      background: var(--tj-gold);
      border-color: var(--tj-gold);
      font-weight: 700;
    }

    .btn-gold:hover,
    .btn-gold:focus {
      color: #17212b;
      background: #e6b65a;
      border-color: #e6b65a;
    }

    .section-space {
      padding: 5rem 0;
    }

    .section-heading {
      max-width: 760px;
      margin-inline: auto;
    }

    .icon-box {
      display: inline-grid;
      width: 3.25rem;
      height: 3.25rem;
      place-items: center;
      color: #fff;
      background: var(--tj-blue);
      border-radius: .9rem;
    }

    .support-card,
    .resource-card,
    .story-card {
      height: 100%;
      border: 0;
      border-radius: 1rem;
      box-shadow: 0 .65rem 2rem rgba(16, 42, 67, .08);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .support-card:hover,
    .resource-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 1rem 2.25rem rgba(16, 42, 67, .14);
    }

    .bg-cream {
      background: var(--tj-cream);
    }

    .mission-strip {
      color: #fff;
      background: var(--tj-navy);
    }

    .check-list {
      padding-left: 0;
      list-style: none;
    }

    .check-list li {
      display: flex;
      gap: .75rem;
      margin-bottom: 1rem;
    }

    .check-list i {
      margin-top: .25rem;
      color: var(--tj-gold);
    }

    .feature-image {
      min-height: 430px;
      background:
        linear-gradient(rgba(16,42,67,.15), rgba(16,42,67,.15)),
        url("https://images.unsplash.com/photo-1511895426328-dc8714191300?auto=format&fit=crop&w=1200&q=85")
        center/cover no-repeat;
      border-radius: 1.25rem;
    }

    .resource-card .card-footer {
      background: transparent;
      border: 0;
    }

    .quote-mark {
      color: var(--tj-gold);
      font-size: 2.25rem;
      line-height: 1;
    }

    .cta-panel {
      color: #fff;
      background:
        linear-gradient(115deg, rgba(16,42,67,.98), rgba(31,95,139,.92));
      border-radius: 1.25rem;
    }

    footer {
      color: rgba(255,255,255,.76);
      background: #091c2c;
    }

    footer a {
      color: rgba(255,255,255,.84);
      text-decoration: none;
    }

    footer a:hover {
      color: #fff;
    }

    @media (max-width: 767.98px) {
      .section-space {
        padding: 4rem 0;
      }

      .feature-image {
        min-height: 320px;
      }
    }