/* Zion Nexus — Support view cards */

.support-page {
  width: 100%;
  min-height: 100%;
  padding: 0.85rem 0.75rem 1.4rem;
}

.support-page__header {
  max-width: 58rem;
  margin: 0 auto 0.9rem;
  text-align: center;
}

.support-page__header h2 {
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  line-height: 1.15;
  color: #f7fbff;
  letter-spacing: 0.025em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5), 0 0 24px rgba(31, 169, 255, 0.14);
}

.support-page__lead {
  max-width: 54rem;
  margin: 0.7rem auto 0;
  color: rgba(218, 232, 244, 0.92);
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  line-height: 1.55;
}

.support-page__labor {
  margin-top: 0.5rem;
  color: rgba(255, 231, 190, 0.9);
  font-family: var(--font-display);
  font-size: clamp(0.86rem, 1.8vw, 1rem);
  font-style: italic;
  letter-spacing: 0.02em;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  width: min(100%, 65rem);
  margin: 0 auto;
}

.support-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 169, 255, 0.24);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(7, 24, 43, 0.96), rgba(2, 9, 20, 0.98)),
    #020914;
  box-shadow:
    inset 0 1px 0 rgba(170, 225, 255, 0.08),
    0 10px 28px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(31, 169, 255, 0.08);
  transition: transform 160ms var(--ease), border-color 160ms ease, box-shadow 160ms ease;
}

.support-card:hover,
.support-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(92, 225, 255, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(190, 235, 255, 0.12),
    0 14px 34px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(31, 169, 255, 0.16);
}

.support-card__art {
  position: relative;
  height: 8.8rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(31, 169, 255, 0.18);
  background:
    radial-gradient(circle at 50% 42%, rgba(90, 210, 255, 0.17), transparent 42%),
    linear-gradient(180deg, rgba(7, 31, 54, 0.96), rgba(1, 8, 18, 0.98));
}

.support-card__art::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    radial-gradient(circle at 12% 22%, #5ce1ff 0 1px, transparent 1.6px),
    radial-gradient(circle at 28% 66%, #5ce1ff 0 1px, transparent 1.6px),
    radial-gradient(circle at 54% 18%, #5ce1ff 0 1px, transparent 1.6px),
    radial-gradient(circle at 78% 54%, #5ce1ff 0 1px, transparent 1.6px),
    radial-gradient(circle at 91% 26%, #5ce1ff 0 1px, transparent 1.6px);
}

.support-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0.9rem 0.95rem 1rem;
}

.support-card__type {
  color: var(--blue-bright);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.support-card h3 {
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2.7vw, 1.48rem);
  line-height: 1.18;
  color: #f7fbff;
  letter-spacing: 0.025em;
}

.support-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.32rem;
  margin-top: 0.45rem;
  color: var(--warm);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.8rem);
  line-height: 1;
}

.support-card__price span {
  color: rgba(195, 215, 232, 0.8);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.support-card__copy {
  margin-top: 0.6rem;
  color: rgba(207, 224, 238, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
}

.support-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  margin-top: auto;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(92, 225, 255, 0.42);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(38, 176, 246, 0.95), rgba(10, 103, 165, 0.98));
  color: #031018;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 5px 18px rgba(31, 169, 255, 0.22);
}

.support-card__button::after {
  content: "↗";
  margin-left: 0.45rem;
  font-size: 0.95rem;
}

.support-card__link {
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
}

.support-card__link:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: -3px;
}

.support-page__disclosure {
  width: min(100%, 65rem);
  margin: 0.85rem auto 0;
  padding: 0.7rem 0.85rem;
  border-left: 2px solid rgba(224, 181, 106, 0.65);
  background: rgba(224, 181, 106, 0.06);
  color: rgba(185, 205, 222, 0.82);
  font-size: 0.74rem;
  line-height: 1.48;
}

/* Five loaves and two fish */
.loaves-scene,
.basket-scene,
.angel-scene {
  position: absolute;
  inset: 0;
}

.loaf {
  position: absolute;
  width: 3.4rem;
  height: 2.15rem;
  border-radius: 54% 54% 45% 45%;
  background:
    linear-gradient(115deg, transparent 42%, rgba(255, 236, 188, 0.55) 44% 48%, transparent 50%),
    linear-gradient(160deg, #d8a35b, #71411f 78%);
  box-shadow: inset 0 0 0 1px rgba(255, 223, 164, 0.22), 0 6px 14px rgba(0, 0, 0, 0.34);
}

.loaf:nth-child(1) { left: 28%; top: 23%; transform: rotate(-7deg); }
.loaf:nth-child(2) { left: 45%; top: 16%; transform: rotate(4deg); }
.loaf:nth-child(3) { left: 59%; top: 27%; transform: rotate(8deg); }
.loaf:nth-child(4) { left: 35%; top: 45%; transform: rotate(5deg); }
.loaf:nth-child(5) { left: 52%; top: 46%; transform: rotate(-6deg); }

.fish {
  position: absolute;
  width: 4.1rem;
  height: 1.2rem;
  border-radius: 60% 44% 44% 60%;
  background: linear-gradient(180deg, #d7edf7, #668da5 52%, #18354a);
  box-shadow: inset 0 0 0 1px rgba(214, 244, 255, 0.34), 0 4px 10px rgba(0, 0, 0, 0.32);
}

.fish::before {
  content: "";
  position: absolute;
  right: -0.8rem;
  top: 0.03rem;
  border-top: 0.57rem solid transparent;
  border-bottom: 0.57rem solid transparent;
  border-left: 0.95rem solid #497087;
}

.fish::after {
  content: "";
  position: absolute;
  left: 0.58rem;
  top: 0.35rem;
  width: 0.18rem;
  height: 0.18rem;
  border-radius: 50%;
  background: #07131c;
  box-shadow: 0 0 0 1px rgba(232, 250, 255, 0.6);
}

.loaves-scene .fish--one { left: 31%; top: 72%; transform: rotate(5deg); }
.loaves-scene .fish--two { left: 51%; top: 71%; transform: rotate(-8deg); }

/* Basket of abundance */
.basket-body {
  position: absolute;
  left: 25%;
  right: 25%;
  bottom: 10%;
  height: 42%;
  border-radius: 12% 12% 44% 44%;
  background:
    repeating-linear-gradient(8deg, rgba(244, 192, 119, 0.2) 0 2px, transparent 2px 7px),
    linear-gradient(180deg, #8e5a2f, #3b2113);
  box-shadow: inset 0 0 0 1px rgba(255, 218, 164, 0.16), 0 10px 20px rgba(0, 0, 0, 0.36);
}

.basket-rim {
  position: absolute;
  left: 21%;
  right: 21%;
  bottom: 47%;
  height: 0.82rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #b67a43, #4b2a18);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.basket-fish {
  position: absolute;
  width: 3.55rem;
  height: 0.9rem;
  border-radius: 62% 42% 42% 62%;
  background: linear-gradient(180deg, #effbff, #7197ad 52%, #173247);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.basket-fish::after {
  content: "";
  position: absolute;
  right: -0.65rem;
  top: 0;
  border-top: 0.43rem solid transparent;
  border-bottom: 0.43rem solid transparent;
  border-left: 0.72rem solid #4e748a;
}

.basket-fish:nth-child(1) { left: 28%; top: 23%; transform: rotate(-11deg); }
.basket-fish:nth-child(2) { left: 46%; top: 18%; transform: rotate(8deg); }
.basket-fish:nth-child(3) { left: 58%; top: 31%; transform: rotate(-3deg); }
.basket-fish:nth-child(4) { left: 35%; top: 37%; transform: rotate(7deg); }
.basket-fish:nth-child(5) { left: 50%; top: 44%; transform: rotate(-9deg); }
.basket-fish:nth-child(6) { left: 28%; top: 51%; transform: rotate(-1deg); }
.basket-fish:nth-child(7) { left: 60%; top: 54%; transform: rotate(12deg); }

/* Founding angel — same sacred-digital language as the dove */
.support-card__art--angel {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(255, 210, 140, 0.14), transparent 55%),
    radial-gradient(ellipse at 50% 40%, rgba(90, 210, 255, 0.2), transparent 58%),
    linear-gradient(180deg, rgba(7, 31, 54, 0.96), rgba(1, 8, 18, 0.98));
}

.support-card__art--angel::before {
  opacity: 0.18;
}

.angel-art {
  position: relative;
  z-index: 1;
  width: auto;
  height: 92%;
  max-width: 88%;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}

@media screen and (min-width: 640px) {
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-card:last-child {
    grid-column: 1 / -1;
  }
}

@media screen and (min-width: 900px) {
  .support-page {
    padding: 0.7rem 0.85rem 1.1rem;
  }

  .support-page__header {
    margin-bottom: 0.75rem;
  }

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

  .support-card:last-child {
    grid-column: auto;
  }

  .support-card__art {
    height: 8.2rem;
  }
}

@media screen and (max-height: 720px) and (min-width: 900px) {
  .support-card__art {
    height: 6.8rem;
  }

  .support-card__body {
    padding-top: 0.7rem;
    padding-bottom: 0.75rem;
  }

  .support-card__copy {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .support-page__disclosure {
    margin-top: 0.65rem;
  }
}
