:root {
  color-scheme: dark;
  --page: #020914;
  --page-2: #041424;
  --panel: rgba(5, 18, 32, 0.88);
  --panel-2: rgba(8, 29, 51, 0.84);
  --ink: #f7fbff;
  --muted: #aec1d3;
  --soft: #d9e7f4;
  --line: rgba(83, 184, 255, 0.24);
  --line-strong: rgba(83, 184, 255, 0.44);
  --blue: #0b98ff;
  --blue-2: #42c3ff;
  --gold: #cda96a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 78% 2%, rgba(11, 152, 255, 0.2), transparent 34rem),
    radial-gradient(circle at 8% 38%, rgba(66, 195, 255, 0.11), transparent 30rem),
    linear-gradient(180deg, #020914 0%, #041322 48%, #020914 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(32, 151, 255, 0.16) 49%, transparent 50% 100%),
    linear-gradient(25deg, transparent 0 58%, rgba(32, 151, 255, 0.12) 59%, transparent 60% 100%);
  background-size: 240px 240px, 280px 280px;
  mask-image: radial-gradient(circle at 70% 18%, black, transparent 62%);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.wrap {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 3.8vw, 58px);
  border-bottom: 1px solid rgba(83, 184, 255, 0.18);
  background: rgba(2, 9, 20, 0.86);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand__logo {
  width: 64px;
  height: 70px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(11, 152, 255, 0.58));
}

.brand strong,
.brand small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.brand strong {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.74rem;
}

.topbar__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(4px, 1vw, 14px);
}

.topbar__links a {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  color: rgba(247, 251, 255, 0.9);
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(0.68rem, 0.92vw, 0.82rem);
  font-weight: 900;
}

.topbar__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue);
  transition: transform 180ms ease;
}

.topbar__links a:hover,
.topbar__links a.is-active {
  color: var(--blue-2);
}

.topbar__links a:hover::after,
.topbar__links a.is-active::after {
  transform: scaleX(1);
}

.topbar__links .nav-donate {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 7px;
  background: linear-gradient(180deg, #2badff, #087bea);
  color: #fff;
}

.topbar__links .nav-donate::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button,
.icon-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 22px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
}

.button--primary {
  background: linear-gradient(180deg, #2badff, #087bea);
  color: #fff;
  box-shadow: 0 14px 36px rgba(11, 152, 255, 0.28);
}

.button--ghost {
  border-color: rgba(247, 251, 255, 0.3);
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
}

.button:hover,
.icon-button:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.home-hero {
  min-height: calc(100vh - 88px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.home-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 9, 20, 0.99) 0%, rgba(2, 9, 20, 0.9) 38%, rgba(2, 9, 20, 0.18) 68%, rgba(2, 9, 20, 0.42) 100%),
    linear-gradient(0deg, #020914 0%, rgba(2, 9, 20, 0) 24%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(54px, 8vw, 120px) 0;
}

.home-hero__copy {
  width: min(680px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-2);
  text-transform: uppercase;
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span,
.page-hero h1 + p strong {
  color: var(--blue);
}

h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.6vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
}

.home-hero__copy > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.verse-box {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  max-width: 520px;
  margin-top: clamp(32px, 6vw, 58px);
  color: var(--soft);
}

.verse-box p,
.verse-box strong {
  margin: 0;
  line-height: 1.6;
}

.verse-box strong {
  display: block;
  grid-column: 2;
  color: var(--blue-2);
  text-transform: uppercase;
}

.band {
  padding: clamp(58px, 8vw, 98px) 0;
}

.band--tight {
  padding-top: 36px;
}

.band--warm {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 12%, rgba(205, 169, 106, 0.16), transparent 24rem),
    linear-gradient(180deg, rgba(5, 20, 36, 0.76), rgba(2, 9, 20, 0.94));
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 28px;
}

.section-head--center {
  justify-content: center;
  text-align: center;
}

.framed-section {
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(11, 152, 255, 0.14), transparent 24rem),
    rgba(5, 18, 32, 0.62);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-resource,
.content-card,
.media-card,
.builder-panel,
.response-panel,
.team-card,
.leader-card,
.statement,
.faith-card,
.faith-callout,
.training-feature,
.certificate-card,
.article-shell,
.qr-card,
.book-card,
.cta-band,
.featured-video,
.split-copy article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(8, 29, 51, 0.86), rgba(3, 14, 26, 0.9));
  box-shadow: var(--shadow);
}

.home-resource {
  min-height: 280px;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 28px 18px;
  text-align: center;
  text-decoration: none;
}

.home-resource h2,
.content-card h2,
.media-card h2,
.book-card h2 {
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.25;
}

.home-resource p,
.content-card p,
.media-card p,
.book-card p,
.response-panel p,
.article-shell p,
.split-copy p,
.statement p,
.team-card p,
.footer-brand p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.card-icon {
  width: 54px;
  height: 60px;
  position: relative;
  display: grid;
  place-items: center;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(11, 152, 255, 0.28));
}

.card-icon::before {
  content: "";
  position: absolute;
  inset: 3px 7px 2px;
  border: 2px solid var(--blue);
  clip-path: polygon(50% 0, 100% 18%, 100% 58%, 50% 100%, 0 58%, 0 18%);
}

.card-icon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 30px;
  background:
    linear-gradient(var(--blue-2), var(--blue-2)) center / 4px 30px no-repeat,
    linear-gradient(var(--blue-2), var(--blue-2)) center / 24px 4px no-repeat;
}

.resource-logo {
  width: min(82%, 210px);
  height: 170px;
  object-fit: contain;
  display: block;
  margin: -8px auto 10px;
  filter:
    drop-shadow(0 0 14px rgba(11, 152, 255, 0.5))
    drop-shadow(0 0 28px rgba(66, 195, 255, 0.24));
  transition: transform 180ms ease, filter 180ms ease;
}

.icon-card {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto 24px auto;
}

.home-resource:hover .resource-logo {
  filter:
    drop-shadow(0 0 18px rgba(11, 152, 255, 0.7))
    drop-shadow(0 0 34px rgba(66, 195, 255, 0.36));
  transform: translateY(-2px);
}

.home-resource:hover .icon-card {
  transform: translateY(-2px);
}

.tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border: 1px solid rgba(66, 195, 255, 0.28);
  border-radius: 999px;
  background: rgba(11, 152, 255, 0.12);
  color: var(--blue-2);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.text-link {
  color: var(--blue-2);
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.text-link::after {
  content: " →";
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 132px) 0 clamp(54px, 8vw, 96px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 18%, rgba(11, 152, 255, 0.23), transparent 24rem),
    linear-gradient(180deg, #03101f, #020914);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.page-hero--no-visual .page-hero__grid {
  grid-template-columns: minmax(0, 780px);
}

.page-hero__copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--soft);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}

.page-hero__visual {
  min-height: 350px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(83, 184, 255, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle, rgba(66, 195, 255, 0.28), transparent 11rem),
    linear-gradient(180deg, rgba(8, 29, 51, 0.64), rgba(2, 9, 20, 0.8));
}

.page-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  filter: saturate(0.96) brightness(0.86);
}

.page-hero--people .page-hero__visual img {
  object-position: 72% center;
}

.visual-symbol {
  color: rgba(247, 251, 255, 0.88);
  font-size: clamp(7rem, 18vw, 14rem);
  line-height: 1;
  text-shadow: 0 0 52px rgba(66, 195, 255, 0.48);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-card {
  min-height: 300px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 26px;
}

.media-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

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

.media-card {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.media-card.is-hidden {
  display: none;
}

.media-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(83, 184, 255, 0.3);
  border-radius: 7px;
  background: #000;
}

.media-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  filter: brightness(0.78) saturate(0.92);
  transition: transform 180ms ease, filter 180ms ease;
}

.media-thumb:hover img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(1.05);
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(2, 9, 20, 0.66);
  color: #fff;
  box-shadow: 0 0 24px rgba(11, 152, 255, 0.42);
}

.duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 3px 7px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
}

.media-filters,
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.media-filters button,
.tab-link,
.segmented button {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.media-filters button.is-active,
.media-filters button:hover,
.tab-link:hover,
.segmented button.is-active {
  border-color: transparent;
  background: linear-gradient(180deg, #2badff, #087bea);
  color: #fff;
}

.builder {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 30px;
  align-items: start;
}

.builder-panel,
.response-panel {
  padding: clamp(22px, 4vw, 32px);
}

.builder-panel {
  display: grid;
  gap: 20px;
}

.form-step {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--blue-2);
  text-transform: uppercase;
  font-weight: 950;
}

.form-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #2badff, #087bea);
  color: #fff;
}

select {
  width: 100%;
  min-height: 62px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(2, 9, 20, 0.7);
  color: var(--ink);
  padding: 0 18px;
  font: inherit;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.segmented--thirds {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.builder-submit {
  min-height: 64px;
  margin-top: 14px;
}

.response-panel {
  min-height: 520px;
  display: grid;
  grid-template-rows: auto 1fr;
}

.response-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.response-panel__top h2 {
  color: var(--blue-2);
  font-size: 1.6rem;
  text-transform: uppercase;
}

.icon-button {
  min-height: 40px;
  padding: 0 14px;
  background: rgba(11, 152, 255, 0.18);
  color: var(--blue-2);
  border-color: var(--line);
}

#generatedResponse {
  white-space: pre-wrap;
  font-size: 1.06rem;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.book-card {
  padding: 12px;
  text-align: center;
  box-shadow: none;
}

.book-cover {
  min-height: 230px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(205, 169, 106, 0.38);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(205, 169, 106, 0.22), transparent 38%),
    linear-gradient(180deg, #16110c, #071522 72%, #020914);
  color: #fff;
  box-shadow: inset 0 0 36px rgba(205, 169, 106, 0.16);
}

.book-cover span {
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  font-size: 1.05rem;
  line-height: 1.2;
}

.book-cover--image {
  min-height: auto;
  overflow: hidden;
  padding: 0;
  background: #020914;
}

.book-cover--image img {
  width: 100%;
  aspect-ratio: 2 / 3;
  display: block;
  object-fit: cover;
}

.book-card .button {
  width: 100%;
  margin-top: 14px;
  padding: 0 12px;
  font-size: 0.82rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.team-card {
  overflow: hidden;
}

.team-card img {
  width: 100%;
  height: 420px;
  display: block;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.team-card--johnny img {
  object-position: 62% center;
}

.team-card--manuel img {
  object-position: 88% center;
}

.team-card div {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 28px;
  text-align: center;
}

.team-card strong {
  color: var(--blue-2);
  font-size: 1.05rem;
}

.split-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.split-copy article,
.statement {
  padding: clamp(24px, 4vw, 36px);
}

.statement {
  max-width: 940px;
}

.leadership-band {
  padding-bottom: clamp(50px, 7vw, 80px);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.leader-card {
  overflow: hidden;
  text-align: center;
  box-shadow:
    0 26px 74px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(83, 184, 255, 0.08);
}

.leader-card__photo {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--line);
  filter: saturate(1.02) contrast(1.02);
}

.leader-card__body {
  min-height: 390px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 14px;
  padding: clamp(28px, 4vw, 44px);
}

.leader-card h2 {
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  line-height: 1;
}

.leader-card strong {
  color: var(--blue-2);
  font-size: 1.08rem;
}

.leader-card p {
  max-width: 540px;
  margin: 10px auto 28px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.65;
}

.leader-card .socials {
  justify-content: center;
  margin-top: auto;
}

.mission-vision {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 7vw, 110px);
  align-items: start;
}

.mission-vision h2 {
  max-width: 520px;
}

.mission-vision__copy {
  display: grid;
  gap: 18px;
}

.mission-vision__copy p {
  margin: 0;
  color: var(--soft);
  font-size: 1.08rem;
  line-height: 1.75;
}

.mission-vision blockquote {
  margin: 22px 0 0;
  padding: clamp(22px, 4vw, 34px);
  border-left: 4px solid var(--blue-2);
  border-radius: var(--radius);
  background: rgba(247, 251, 255, 0.045);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.25;
}

.mission-vision cite {
  display: block;
  margin-top: 18px;
  color: var(--blue-2);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faith-section > .section-head > p,
.evidence-section > .section-head > p {
  max-width: 420px;
  margin: 0;
  color: var(--soft);
  line-height: 1.7;
}

.faith-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faith-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  box-shadow: none;
}

.faith-card span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--blue-2);
  border-radius: 50%;
  background: rgba(11, 152, 255, 0.14);
  color: var(--blue-2);
  font-weight: 950;
}

.faith-card h3 {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.faith-card p {
  margin: 8px 0 12px;
  color: var(--muted);
  line-height: 1.65;
}

.faith-card strong {
  color: var(--blue-2);
  font-size: 0.82rem;
  line-height: 1.55;
}

.faith-callout {
  margin-top: 16px;
  padding: clamp(22px, 4vw, 30px);
  border-left: 4px solid var(--blue-2);
}

.faith-callout p {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.28;
}

.faith-callout strong {
  color: var(--blue-2);
  font-size: 0.82rem;
}

.training-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: center;
  overflow: hidden;
  padding: 16px;
  box-shadow: none;
}

.training-feature img {
  width: 100%;
  height: 350px;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}

.training-feature div {
  padding: clamp(12px, 2vw, 24px);
}

.training-feature h2 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.training-feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin-top: 24px;
}

.certificate-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
  background:
    radial-gradient(circle at 12% 0%, rgba(205, 169, 106, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(9, 34, 58, 0.9), rgba(3, 14, 26, 0.96));
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(205, 169, 106, 0.12);
}

.certificate-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.414 / 1;
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  border: 1px solid rgba(205, 169, 106, 0.42);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.certificate-card div {
  display: grid;
  gap: 10px;
  padding: 18px 4px 4px;
}

.certificate-card h3 {
  color: var(--ink);
  font-size: 1.16rem;
}

.certificate-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.donate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.donate-main {
  width: min(100%, 340px);
  min-height: 64px;
  margin-top: 24px;
}

.qr-card {
  display: block;
  overflow: hidden;
  padding: 12px;
}

.qr-card img {
  display: block;
  width: 100%;
  border-radius: 7px;
}

.article-shell {
  padding: clamp(24px, 5vw, 46px);
}

.article-shell > * + * {
  margin-top: 18px;
}

.article-shell h2 {
  margin-top: 34px;
  color: var(--ink);
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
}

.article-shell ul {
  color: var(--muted);
  line-height: 1.8;
}

.breadcrumb {
  display: inline-flex;
  color: var(--blue-2);
  font-weight: 900;
  text-decoration: none;
}

.article-cta,
.cta-band {
  margin-top: 38px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(83, 184, 255, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 20%, rgba(11, 152, 255, 0.2), transparent 16rem),
    rgba(2, 9, 20, 0.5);
}

.source-note {
  margin-top: 0;
  margin-bottom: 30px;
}

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

.resource-cluster {
  display: grid;
  gap: 18px;
  margin-bottom: 42px;
}

.resource-cluster--free {
  padding-top: 34px;
  border-top: 1px solid rgba(247, 251, 255, 0.12);
}

.affiliate-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(83, 184, 255, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 12%, rgba(11, 152, 255, 0.18), transparent 12rem),
    rgba(6, 24, 42, 0.64);
}

.affiliate-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.affiliate-card p {
  margin: 0;
  color: var(--soft);
  line-height: 1.62;
}

.affiliate-card small {
  display: block;
  color: var(--muted);
  line-height: 1.5;
}

.affiliate-card .button {
  width: 100%;
  margin-top: auto;
}

.affiliate-card--free {
  border-color: rgba(205, 169, 106, 0.34);
  background:
    radial-gradient(circle at 82% 12%, rgba(205, 169, 106, 0.14), transparent 12rem),
    rgba(6, 24, 42, 0.64);
}

.affiliate-card--free .tag {
  border-color: rgba(205, 169, 106, 0.5);
  background: rgba(205, 169, 106, 0.12);
  color: #f1cf91;
}

.affiliate-card--free .button {
  background: linear-gradient(180deg, #e2b96e, #b9812f);
  color: #07111d;
  border-color: rgba(255, 224, 166, 0.42);
}

.affiliate-center {
  display: grid;
  gap: 46px;
}

.affiliate-disclosure {
  padding: 18px 20px;
  border-left: 3px solid var(--blue);
  background: rgba(11, 152, 255, 0.08);
}

.affiliate-disclosure strong {
  color: var(--blue-2);
}

.affiliate-disclosure p {
  margin: 6px 0 0;
  color: var(--soft);
  line-height: 1.6;
}

.affiliate-product-section {
  display: grid;
  gap: 18px;
}

.section-head--compact {
  margin-bottom: 0;
}

.section-head--compact h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.product-count {
  color: var(--muted);
  font-size: 0.88rem;
  white-space: nowrap;
}

.affiliate-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.affiliate-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(83, 184, 255, 0.22);
  border-radius: 6px;
  background: rgba(6, 24, 42, 0.62);
}

.affiliate-product-card__image-link {
  display: block;
}

.affiliate-product-card__image-link img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  border-bottom: 1px solid rgba(83, 184, 255, 0.2);
  transition: filter 160ms ease, transform 160ms ease;
}

.affiliate-product-card__image-link:hover img {
  filter: brightness(1.08);
  transform: scale(1.015);
}

.affiliate-product-card__body {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
}

.affiliate-product-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.3;
}

.affiliate-product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.affiliate-product-card h3 a:hover {
  color: var(--blue-2);
}

.affiliate-product-card .button {
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  padding: 0 12px;
  font-size: 0.78rem;
}

.button--disabled {
  cursor: not-allowed;
  opacity: 0.62;
  filter: grayscale(0.25);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.featured-video {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 24px;
  padding: 18px;
}

.featured-video h2 {
  margin: 12px 0;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 8%, rgba(11, 152, 255, 0.13), transparent 26rem),
    #03101d;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) repeat(4, minmax(120px, 1fr));
  gap: clamp(18px, 3vw, 42px);
  padding: clamp(44px, 7vw, 72px) 0;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: var(--blue-2);
  font-size: 0.94rem;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-links a,
.socials a {
  color: var(--soft);
  text-decoration: none;
}

.footer-links a:hover,
.socials a:hover {
  color: var(--blue-2);
}

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

.socials--center {
  justify-content: center;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 251, 255, 0.24);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.footer-donate {
  margin-top: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 30px;
  border-top: 1px solid rgba(247, 251, 255, 0.12);
  color: var(--muted);
}

.legal-shell {
  max-width: 980px;
}

.legal-section + .legal-section {
  margin-top: 34px;
}

.legal-section h2 {
  color: var(--blue-2);
}

@media (max-width: 1180px) {
  .topbar {
    align-items: flex-start;
  }

  .topbar__links {
    flex-wrap: wrap;
  }

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

  .resource-grid,
  .media-grid,
  .book-grid,
  .affiliate-grid,
  .affiliate-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .media-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: block;
  }

  .topbar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .topbar__links {
    grid-column: 1 / -1;
    display: none;
    justify-content: flex-start;
    padding-top: 12px;
  }

  .topbar__links.is-open {
    display: flex;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .topbar {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .topbar__links {
    grid-column: 1 / -1;
    display: none;
    justify-content: flex-start;
    padding-top: 12px;
  }

  .topbar__links.is-open {
    display: flex;
  }

  .home-hero {
    min-height: 760px;
  }

  .home-hero__image {
    object-position: 68% top;
  }

  .home-hero__shade {
    background:
      linear-gradient(0deg, #020914 0%, rgba(2, 9, 20, 0.92) 36%, rgba(2, 9, 20, 0.34) 78%),
      linear-gradient(90deg, rgba(2, 9, 20, 0.82), rgba(2, 9, 20, 0.12));
  }

  .home-hero__content {
    align-self: end;
    padding-top: 360px;
  }

  .page-hero__grid,
  .builder,
  .donate-layout,
  .featured-video,
  .footer-grid,
  .mission-vision,
  .split-copy {
    grid-template-columns: 1fr;
  }

  .page-hero__visual {
    min-height: 260px;
  }

  .card-grid,
  .card-grid--two,
  .resource-grid,
  .media-grid,
  .book-grid,
  .affiliate-grid,
  .affiliate-product-grid,
  .media-row,
  .team-grid,
  .leadership-grid,
  .faith-grid,
  .certificate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .training-feature {
    grid-template-columns: 1fr;
  }

  .footer-bottom,
  .cta-band {
    display: grid;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    padding: 10px 14px;
  }

  .brand__logo {
    width: 52px;
    height: 58px;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .brand small {
    font-size: 0.64rem;
  }

  h1 {
    font-size: clamp(2.4rem, 14vw, 4.2rem);
  }

  .hero-actions .button,
  .builder-submit,
  .donate-main {
    width: 100%;
  }

  .verse-box,
  .card-grid,
  .card-grid--two,
  .resource-grid,
  .media-grid,
  .book-grid,
  .affiliate-grid,
  .affiliate-product-grid,
  .media-row,
  .team-grid,
  .leadership-grid,
  .faith-grid,
  .certificate-grid,
  .segmented,
  .segmented--thirds {
    grid-template-columns: 1fr;
  }

  .verse-box strong {
    grid-column: auto;
  }

  .home-resource,
  .content-card {
    min-height: auto;
  }

  .team-card img {
    height: 320px;
  }

  .leader-card__photo {
    height: 300px;
  }

  .leader-card__body {
    min-height: auto;
  }

  .faith-card {
    grid-template-columns: 1fr;
  }

  .training-feature img,
  .certificate-card img {
    height: 240px;
  }
}
