:root {
      --bg: #08111f;
      --bg-soft: #0d1726;
      --card: rgba(15, 29, 48, 0.78);
      --border: rgba(255,255,255,0.08);
      --text: #f8fafc;
      --muted: #9aa9bd;
      --accent: #66b7ff;
      --accent-2: #8bd3ff;
      --gold: #f7c66b;
      --green: #82d9a2;
      --max-width: 1180px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

      background:
        radial-gradient(circle at top left, rgba(39,111,191,0.16), transparent 35%),
        radial-gradient(circle at 85% 15%, rgba(31,139,163,0.12), transparent 30%),
        linear-gradient(180deg, #07101c 0%, #08111f 100%);

      color: var(--text);
      line-height: 1.6;
    }

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

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(92%, var(--max-width));
      margin: 0 auto;
    }

    section {
      padding: 90px 0;
    }

    .eyebrow {
      color: var(--accent);
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      margin-bottom: 12px;
    }

    h1,
    h2,
    h3 {
      line-height: 1.1;
      letter-spacing: -0.03em;
    }

    h2 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      margin-bottom: 20px;
    }

    .section-intro {
      max-width: 760px;
      color: var(--muted);
      font-size: 1.08rem;
      margin-bottom: 42px;
    }

    /* NAV */

    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;

      background: rgba(7,16,28,0.78);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      backdrop-filter: blur(18px);
    }

    .nav-inner {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .logo {
      font-weight: 800;
      letter-spacing: -0.03em;
      font-size: 1.2rem;
    }

    .nav-links {
      display: flex;
      gap: 22px;
      color: #c7d2df;
      font-size: 0.92rem;
    }

    .nav-links a:hover {
      color: white;
    }

    /* HERO */

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 120px;
      padding-bottom: 80px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      align-items: center;
      gap: 70px;
    }

    .hero h1 {
      font-size: clamp(3.5rem, 9vw, 7rem);
      margin-bottom: 18px;
    }

    .hero-tagline {
      color: var(--accent-2);
      font-size: clamp(1.2rem, 2.4vw, 1.65rem);
      font-weight: 600;
      margin-bottom: 24px;
    }

    .hero p {
      max-width: 720px;
      color: var(--muted);
      font-size: 1.15rem;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 13px 21px;
      border-radius: 10px;
      border: 1px solid var(--border);
      font-weight: 700;
      transition: 0.2s ease;
    }

    .btn-primary {
      background: var(--accent);
      color: #05101e;
      border-color: transparent;
    }

    .btn-secondary {
      background: rgba(255,255,255,0.04);
      color: white;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .hero-photo {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-photo img {
      width: 90%;
      height: auto;
      aspect-ratio: auto;
      object-fit: contain;
      border-radius: 0;
      border: none;
      box-shadow: none;
      display: block;
    }

    .hero-photo::after {
      content: "";
      position: absolute;
      inset: 18px -18px -18px 18px;
      border: 1px solid rgba(102,183,255,0.25);
      border-radius: 24px;
      z-index: -1;
    }

    /* CARDS */

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

    .card {
      padding: 28px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 18px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    }

    .card h3 {
      font-size: 1.35rem;
      margin-bottom: 12px;
    }

    .card p {
      color: var(--muted);
    }

    /* IMPACT */

    .impact-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--accent);
      margin-bottom: 8px;
    }

    /* TRANSFORMATION */

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 65px;
      align-items: center;
    }
    .feature-photo img {
      width: 100%;
      height: auto;
      object-fit: contain;
      border-radius: 22px;
      border: 1px solid var(--border);
    }

    .quote {
      margin-top: 26px;
      padding-left: 20px;
      border-left: 3px solid var(--accent);
      color: #d7e2ef;
      font-size: 1.15rem;
      font-style: italic;
    }

    /* BUCKET LIST */

    .bucket-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
.bucket-card {
  overflow: hidden;
  border-radius: 18px;
  background: #0e1b2d;
  border: 1px solid rgba(255,255,255,0.08);
}

.bucket-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.bucket-card:nth-child(2) img {
  object-position: center 35%;
}

.bucket-card:nth-child(3) img {
  object-position: center 25%;
}

.bucket-card:nth-child(4) img {
  object-position: center 20%;
}

.bucket-card:nth-child(5) img {
  object-position: center 35%;
}

.bucket-content {
  padding: 24px;
}


    .badge {
      display: inline-block;
      margin-bottom: 12px;
      padding: 5px 10px;
      border-radius: 999px;
      font-size: 0.72rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      background: rgba(130,217,162,0.12);
      color: var(--green);
      border: 1px solid rgba(130,217,162,0.2);
    }

    /* FAITH */

    .faith {
      position: relative;
    }

    .faith-box {
      padding: 55px;
      border-radius: 24px;
      background:
        linear-gradient(135deg, rgba(247,198,107,0.09), rgba(102,183,255,0.08)),
        rgba(14,27,45,0.82);

      border: 1px solid rgba(247,198,107,0.18);
    }

    .faith-box h2 {
      max-width: 800px;
    }

    .faith-box p {
      max-width: 820px;
      color: #c1ccda;
      font-size: 1.1rem;
    }

    .faith-box p + p {
      margin-top: 18px;
    }

    /* SERVICE */

    .service-list {
      display: grid;
      gap: 18px;
    }

    .service-item {
      padding: 24px;
      background: rgba(255,255,255,0.035);
      border: 1px solid var(--border);
      border-radius: 15px;
    }

    .service-item h3 {
      margin-bottom: 7px;
    }

    .service-item p {
      color: var(--muted);
    }

    /* TIMELINE */

    .timeline {
      display: grid;
      gap: 20px;
    }

    .timeline-item {
      padding: 25px 28px;
      border-left: 3px solid rgba(102,183,255,0.45);
      background: rgba(255,255,255,0.03);
      border-radius: 0 15px 15px 0;
    }

    .timeline-item .role {
      font-weight: 800;
      font-size: 1.15rem;
    }

    .timeline-item .meta {
      color: var(--accent);
      margin-bottom: 8px;
      font-size: 0.9rem;
    }

    .timeline-item p {
      color: var(--muted);
    }

    /* PERSONAL */

    .personal-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .personal-card {
      min-height: 190px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 22px;
      border-radius: 18px;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
    }

    .personal-card span {
      font-size: 2rem;
      margin-bottom: 14px;
    }

    .personal-card p {
      color: var(--muted);
      margin-top: 5px;
    }

    /* FOOTER */

    footer {
      padding: 60px 0;
      border-top: 1px solid var(--border);
      text-align: center;
      color: var(--muted);
    }

    footer h2 {
      color: white;
      font-size: 2rem;
      margin-bottom: 14px;
    }

    .social-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 18px;
      margin-top: 25px;
    }

    .social-links a {
      color: var(--accent);
      font-weight: 700;
    }

    .copyright {
      margin-top: 35px;
      font-size: 0.85rem;
    }

    /* RESPONSIVE */

    @media (max-width: 900px) {
      .hero-grid,
      .split {
        grid-template-columns: 1fr;
      }

      .grid-3,
      .bucket-grid {
        grid-template-columns: 1fr 1fr;
      }

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

      .hero-photo {
        max-width: 520px;
      }
    }

    @media (max-width: 650px) {
      section {
        padding: 70px 0;
      }

      .nav-links {
        display: none;
      }

      .grid-3,
      .bucket-grid,
      .personal-grid {
        grid-template-columns: 1fr;
      }

      .faith-box {
        padding: 35px 25px;
      }

      .hero h1 {
        font-size: 3.6rem;
      }
    }
    .featured-story {
  margin-top: 32px;
  padding: 24px 28px;
  background: rgba(102, 183, 255, 0.06);
  border: 1px solid rgba(102, 183, 255, 0.22);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
}

.featured-label {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.featured-story h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.featured-story p {
  color: var(--muted);
  margin-bottom: 14px;
}

.featured-link {
  color: var(--accent);
  font-weight: 700;
}
.publications-card {
  display: flex;
  flex-direction: column;
}

.publications-card > h3 {
  margin-bottom: 20px;
}

.publication {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.publication:first-of-type {
  border-top: none;
  padding-top: 0;
}

.publication-year {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.publication h4 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.4;
}

.publication a {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
}

.publication a:hover {
  color: var(--accent-2);
}
.certifications-card > h3 {
  margin-bottom: 20px;
}

.certification {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.certification:first-of-type {
  border-top: none;
  padding-top: 0;
}

.certification h4 {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.35;
  margin-bottom: 3px;
}

.certification p {
  color: var(--muted);
  font-size: 0.82rem;
}
.media-links {
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.media-link {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
}

.media-source {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.media-title {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.4;
}

.media-action {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.media-link:hover .media-title,
.media-link:hover .media-action {
  color: var(--accent);
}

@media (max-width: 700px) {
  .media-link {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}