:root {
  --ink: #140a24;
  --muted: #625772;
  --purple-950: #160521;
  --purple-900: #260844;
  --purple-800: #42117a;
  --purple-600: #6d28d9;
  --violet: #a855f7;
  --gold: #f9c22e;
  --gold-dark: #c98a08;
  --paper: #fbf9ff;
  --line: rgba(66, 17, 122, 0.14);
  --shadow: 0 24px 70px rgba(31, 8, 65, 0.16);
  --section-divider: linear-gradient(90deg, rgba(66, 17, 122, 0.18) 0%, rgba(249, 194, 46, 0.95) 34%, rgba(168, 85, 247, 0.72) 66%, rgba(109, 40, 217, 0.24) 100%);
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.container {
  max-width: 1180px;
}

.site-nav,
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(109, 40, 217, 0.16);
  background:
    radial-gradient(circle at 12% 0%, rgba(249, 194, 46, 0.16), transparent 16rem),
    linear-gradient(100deg, rgba(251, 249, 255, 0.96) 0%, rgba(239, 232, 250, 0.94) 52%, rgba(223, 207, 246, 0.94) 100%);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(20, 10, 36, 0.08);
}

.nav-shell {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.public-nav-shell {
  justify-content: center;
}

.public-nav-shell .nav-links {
  justify-content: center;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--purple-900);
  font-weight: 800;
  letter-spacing: 0;
  min-width: 0;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark:hover,
.brand-mark:focus {
  color: var(--purple-800);
}

.brand-icon,
.home-brand-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple-800), var(--violet));
  box-shadow: 0 10px 28px rgba(109, 40, 217, 0.25);
}

.home-brand-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.logo-home-icon {
  width: 50px;
  height: 42px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.logo-home-icon img {
  display: block;
  width: 48px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(109, 40, 217, 0.2));
}

.nav-links .home-nav-link {
  gap: 0.45rem;
  padding-left: 0.35rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.nav-links a,
.navbar .nav-link {
  display: inline-flex;
  position: relative;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  color: #332347;
  font-weight: 700;
  padding: 0.65rem 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus,
.navbar .nav-link:hover {
  color: var(--purple-600);
  background: rgba(109, 40, 217, 0.08);
}

.nav-links a.nav-active {
  color: var(--purple-800);
}

.nav-links a.nav-active::after {
  position: absolute;
  right: 0.85rem;
  bottom: 0.25rem;
  left: 0.85rem;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
  box-shadow: 0 0 16px rgba(249, 194, 46, 0.42);
}

.nav-links .nav-cta,
.nav-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(249, 194, 46, 0.72);
  border-radius: 999px;
  box-sizing: border-box;
  padding-inline: 1.15rem;
  color: var(--purple-950);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 42%),
    linear-gradient(135deg, #fff1a8 0%, var(--gold) 48%, #f59e0b 100%);
  box-shadow:
    0 14px 30px rgba(201, 138, 8, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.62) inset,
    0 0 24px rgba(249, 194, 46, 0.18);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus {
  border-color: rgba(109, 40, 217, 0.26);
  color: var(--purple-950);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 40%),
    linear-gradient(135deg, #fff6c9 0%, #ffd84d 48%, var(--gold-dark) 100%);
  box-shadow:
    0 18px 38px rgba(201, 138, 8, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset,
    0 0 32px rgba(249, 194, 46, 0.28);
  transform: translateY(-1px);
}

.hero-section {
  position: relative;
  display: grid;
  box-sizing: border-box;
  overflow: hidden;
  min-height: calc(100vh - 74px);
  align-items: center;
  padding: clamp(2rem, 4vh, 4rem) 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 26%, rgba(249, 194, 46, 0.18), transparent 12rem),
    radial-gradient(circle at 80% 28%, rgba(168, 85, 247, 0.26), transparent 24rem),
    radial-gradient(circle at 12% 70%, rgba(91, 33, 182, 0.22), transparent 22rem),
    linear-gradient(135deg, #12051c 0%, #2b0a49 48%, #42117a 100%);
}

body:not(.admin-body) main > section + section {
  border-top: 4px solid transparent;
  border-image: var(--section-divider) 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero-section::before,
.hero-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-section::before {
  inset: 0;
  opacity: 0.44;
  background:
    linear-gradient(100deg, transparent 0 18%, rgba(249, 194, 46, 0.55) 32%, rgba(232, 121, 249, 0.45) 46%, transparent 62%) 50% 34% / 130% 5px no-repeat,
    linear-gradient(100deg, transparent 0 25%, rgba(255, 255, 255, 0.3) 44%, transparent 66%) 50% 43% / 120% 2px no-repeat,
    linear-gradient(100deg, transparent 0 30%, rgba(168, 85, 247, 0.5) 52%, transparent 74%) 50% 55% / 130% 4px no-repeat;
  filter: blur(0.5px);
  animation: lightSweep 10s ease-in-out infinite alternate;
}

.hero-section::after {
  inset: 0;
  opacity: 0.16;
  background:
    linear-gradient(rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.32)) 0 28% / 100% 1px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.22)) 0 62% / 100% 1px no-repeat,
    linear-gradient(90deg, transparent 0 49%, rgba(255, 255, 255, 0.22) 49% 50%, transparent 50% 100%) 50% 50% / 120px 120px;
  mask-image: radial-gradient(circle at 50% 45%, #000 0 45%, transparent 72%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(249, 194, 46, 0.78);
  box-shadow:
    0 0 22px rgba(249, 194, 46, 0.8),
    -28px 0 18px rgba(249, 194, 46, 0.18);
  animation: starTwinkle 3.8s ease-in-out infinite alternate;
}

.hero-particles span:nth-child(1) { top: 19%; left: 11%; animation-delay: -1s; }
.hero-particles span:nth-child(2) { top: 30%; left: 24%; width: 4px; height: 4px; animation-delay: -2.6s; }
.hero-particles span:nth-child(3) { top: 21%; right: 16%; animation-delay: -1.8s; }
.hero-particles span:nth-child(4) { top: 48%; right: 9%; width: 8px; height: 8px; animation-delay: -3.2s; }
.hero-particles span:nth-child(5) { bottom: 22%; left: 14%; animation-delay: -0.8s; }
.hero-particles span:nth-child(6) { bottom: 16%; right: 21%; width: 4px; height: 4px; animation-delay: -2.2s; }
.hero-particles span:nth-child(7) { top: 68%; left: 31%; animation-delay: -3s; animation-duration: 4.4s; }
.hero-particles span:nth-child(8) { top: 63%; right: 33%; width: 5px; height: 5px; animation-delay: -1.4s; animation-duration: 4.8s; }
.hero-particles span:nth-child(9) { top: 37%; left: 47%; width: 4px; height: 4px; animation-delay: -3.6s; animation-duration: 4.1s; }

.hero-particles span:nth-child(n + 10) {
  opacity: 0;
  box-shadow:
    0 0 20px rgba(249, 194, 46, 0.82),
    -42px 0 22px rgba(249, 194, 46, 0.2);
}

.hero-particles span:nth-child(10) { bottom: -9%; right: 18%; animation: shootNorthWest 4.2s ease-in-out infinite; animation-delay: -4.1s; }
.hero-particles span:nth-child(11) { top: 38%; left: -10%; width: 4px; height: 4px; animation: shootEastRise 4.8s ease-in-out infinite; animation-delay: -7s; }
.hero-particles span:nth-child(12) { top: -8%; right: 28%; width: 7px; height: 7px; animation: shootSouthWest 5.3s ease-in-out infinite; animation-delay: -10.2s; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1540px);
  justify-content: center;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  --hero-offset-x: 0px;

  display: grid;
  width: 100%;
  min-width: 0;
  justify-items: center;
  text-align: center;
  transform: translateX(var(--hero-offset-x));
}

@media (min-width: 1100px) {
  .hero-copy {
    --hero-offset-x: min(0px, calc((1180px - min(1320px, 92vw)) / 2));
  }
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--purple-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.church-grid h2,
.contact-panel h2 {
  margin: 0;
  color: var(--purple-950);
  font-weight: 800;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 880px;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1;
  text-shadow: 0 12px 42px rgba(20, 5, 31, 0.42);
}

.hero-subtitle {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.95rem, 1.25vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 10px 34px rgba(20, 5, 31, 0.38);
}

.hero-actions {
  display: flex;
  width: min(1320px, 92vw);
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-top: 2.1rem;
  transform: translateX(13%);
}

.btn-primary-custom,
.btn-secondary-custom {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn-primary-custom {
  color: #21072f;
  background: linear-gradient(135deg, var(--gold), #ffe389);
  box-shadow: 0 16px 35px rgba(201, 138, 8, 0.28);
}

.btn-secondary-custom {
  color: #fff;
  background: linear-gradient(135deg, var(--purple-800), var(--purple-600));
  box-shadow: 0 16px 35px rgba(66, 17, 122, 0.24);
}

.btn-danger-custom {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(248, 113, 113, 0.36);
  border-radius: 999px;
  padding: 0.8rem 1.15rem;
  color: #fff;
  background: linear-gradient(135deg, #8b1d31, #b91c1c);
  box-shadow: 0 16px 35px rgba(127, 29, 29, 0.22);
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn-primary-custom:hover,
.btn-secondary-custom:hover,
.btn-danger-custom:hover {
  transform: translateY(-2px);
}

.hero-cta {
  min-width: 180px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, var(--purple-600), var(--purple-800));
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow:
    0 0 0 1px rgba(249, 194, 46, 0.22),
    0 18px 44px rgba(20, 5, 31, 0.34),
    0 0 34px rgba(168, 85, 247, 0.42);
  animation: ctaPulse 2.8s ease-in-out infinite;
}

.hero-feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  width: min(100%, 820px);
  margin-top: 1.5rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-feature {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.62rem 0.85rem;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(20, 5, 31, 0.16);
  font-size: 0.92rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.feature-icon {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.feature-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-feature:nth-child(2) {
  transition-delay: 130ms;
}

.hero-feature:nth-child(3) {
  transition-delay: 260ms;
}

.hero-cross-shell {
  position: relative;
  display: grid;
  width: min(330px, 68vw);
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 1.2rem;
}

.hero-logo-panel {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(1320px, 92vw);
  margin-bottom: 1.15rem;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-brand-logo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  filter:
    drop-shadow(0 24px 42px rgba(20, 5, 31, 0.42))
    drop-shadow(0 0 22px rgba(255, 255, 255, 0.14));
}

.hero-cross-shell::before,
.hero-cross-shell::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.hero-cross-shell::before {
  inset: 7%;
  background:
    radial-gradient(circle at 50% 50%, rgba(249, 194, 46, 0.22), transparent 33%),
    radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.42), transparent 68%);
  filter: blur(22px);
  animation: crossGlow 3.6s ease-in-out infinite;
}

.hero-cross-shell::after {
  inset: 14%;
  border: 1px solid rgba(249, 194, 46, 0.18);
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.14), transparent 14rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(168, 85, 247, 0.08));
  box-shadow:
    inset 0 0 36px rgba(255, 255, 255, 0.06),
    0 0 38px rgba(249, 194, 46, 0.2),
    0 0 80px rgba(168, 85, 247, 0.28);
}

.hero-logo-mark {
  position: relative;
  z-index: 1;
  width: 58%;
  height: 58%;
  filter:
    drop-shadow(0 22px 38px rgba(20, 5, 31, 0.34))
    drop-shadow(0 0 20px rgba(249, 194, 46, 0.2));
}

.hero-logo-mark::before,
.hero-logo-mark::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-logo-mark::before {
  inset: 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(249, 194, 46, 0.16), transparent 54%),
    radial-gradient(circle, rgba(168, 85, 247, 0.24), transparent 72%);
}

.hero-logo-mark::after {
  inset: 28% 18%;
  border-radius: 999px;
  opacity: 0.72;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: rotate(-42deg);
}

.cross-vertical,
.cross-horizontal {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.36), transparent 22% 78%, rgba(255, 255, 255, 0.26)),
    linear-gradient(135deg, #f9c22e 0%, #ffe389 38%, #a855f7 100%);
  box-shadow:
    inset 0 0 12px rgba(255, 255, 255, 0.26),
    0 0 26px rgba(249, 194, 46, 0.26);
  transform: translate(-50%, -50%);
}

.cross-vertical {
  width: 17%;
  height: 86%;
}

.cross-horizontal {
  width: 72%;
  height: 17%;
}

.cross-node {
  position: absolute;
  z-index: 2;
  display: block;
  width: 16%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, #fff7bc 0 13%, transparent 14%),
    linear-gradient(135deg, #ffe389, #f9c22e 58%, #c98a08);
  box-shadow:
    0 0 0 5px rgba(249, 194, 46, 0.08),
    0 0 22px rgba(249, 194, 46, 0.44);
}

.node-top {
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
}

.node-left {
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
}

.node-right {
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
}

.node-bottom {
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
}

.hero-cross-emblem {
  position: relative;
  z-index: 1;
  width: min(78%, 245px);
  height: auto;
  overflow: visible;
  filter:
    drop-shadow(0 26px 44px rgba(20, 5, 31, 0.36))
    drop-shadow(0 0 28px rgba(249, 194, 46, 0.16));
}

.emblem-orbit {
  fill: rgba(255, 255, 255, 0.035);
  stroke: rgba(249, 194, 46, 0.2);
  stroke-width: 1.5;
  stroke-dasharray: 8 10;
}

.emblem-circuit {
  fill: none;
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 2;
  stroke-linecap: round;
}

.emblem-cross-shadow,
.emblem-cross-main,
.emblem-cross-core {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.emblem-cross-shadow {
  stroke: rgba(20, 5, 31, 0.34);
  stroke-width: 30;
}

.emblem-cross-main {
  filter: url("#crossGlow");
  stroke: url("#crossStroke");
  stroke-width: 22;
}

.emblem-cross-core {
  stroke: url("#crossCore");
  stroke-width: 7;
}

.emblem-node,
.emblem-center {
  filter: url("#crossGlow");
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 1.5;
}

.emblem-node {
  fill: #f9c22e;
}

.emblem-center {
  fill: #fff7bc;
}

.hero-copy .eyebrow {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(249, 194, 46, 0.24);
}

@keyframes crossGlow {
  0%, 100% {
    opacity: 0.7;
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(249, 194, 46, 0.22),
      0 18px 44px rgba(20, 5, 31, 0.34),
      0 0 34px rgba(168, 85, 247, 0.42);
  }

  50% {
    box-shadow:
      0 0 0 7px rgba(249, 194, 46, 0.08),
      0 20px 50px rgba(20, 5, 31, 0.38),
      0 0 48px rgba(249, 194, 46, 0.42);
  }
}

@keyframes particleDrift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(22px, -18px, 0);
  }
}

@keyframes shootingDrift {
  from {
    opacity: 0.3;
    transform: translate3d(0, 0, 0) scale(0.82);
  }

  12% {
    opacity: 1;
  }

  88% {
    opacity: 1;
  }

  to {
    opacity: 0.42;
    transform: translate3d(126vw, -34px, 0) scale(1.08);
  }
}

@keyframes starTwinkle {
  from {
    opacity: 0.42;
    transform: scale(0.82);
  }

  to {
    opacity: 1;
    transform: scale(1.15);
  }
}

@keyframes shootEast {
  0%, 18% { opacity: 0; transform: translate3d(0, 0, 0) scale(0.8); }
  26%, 74% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(124vw, -52px, 0) scale(1.05); }
}

@keyframes shootWest {
  0%, 22% { opacity: 0; transform: translate3d(0, 0, 0) scale(0.82); }
  30%, 72% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(-122vw, 44px, 0) scale(1.06); }
}

@keyframes shootSouthEast {
  0%, 20% { opacity: 0; transform: translate3d(0, 0, 0) scale(0.82); }
  29%, 70% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(76vw, 112vh, 0) scale(1.08); }
}

@keyframes shootNorthWest {
  0%, 34% { opacity: 0; transform: translate3d(0, 0, 0) scale(0.82); }
  42%, 58% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(-82vw, -112vh, 0) scale(1.05); }
}

@keyframes shootEastRise {
  0%, 36% { opacity: 0; transform: translate3d(0, 0, 0) scale(0.82); }
  44%, 60% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(118vw, -88px, 0) scale(1.06); }
}

@keyframes shootSouthWest {
  0%, 38% { opacity: 0; transform: translate3d(0, 0, 0) scale(0.82); }
  46%, 62% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(-74vw, 112vh, 0) scale(1.08); }
}

@keyframes lightSweep {
  from {
    background-position: 46% 34%, 52% 43%, 48% 55%;
  }

  to {
    background-position: 54% 34%, 45% 43%, 55% 55%;
  }
}

.solutions-preview-section {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  color: var(--purple-950);
  background:
    radial-gradient(circle at 86% 16%, rgba(249, 194, 46, 0.2), transparent 18rem),
    radial-gradient(circle at 14% 24%, rgba(168, 85, 247, 0.16), transparent 22rem),
    linear-gradient(135deg, #fbf9ff 0%, #efe7fb 48%, #ddcaf5 100%);
}

.solutions-preview-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(66, 17, 122, 0.16) 49% 50%, transparent 50% 100%) 0 0 / 118px 118px,
    linear-gradient(rgba(249, 194, 46, 0.28), rgba(249, 194, 46, 0.28)) 0 58% / 100% 1px no-repeat;
  mask-image: radial-gradient(circle at 50% 38%, #000 0 42%, transparent 76%);
}

.solutions-preview-section .container {
  position: relative;
  z-index: 1;
}

.solutions-preview-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 1.4rem 2.5rem;
  align-items: end;
  margin-bottom: 2.1rem;
}

.solutions-preview-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.solutions-preview-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--purple-950);
  font-size: clamp(2.1rem, 4.4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.04;
}

.solutions-preview-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.solutions-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.solution-example-card {
  overflow: hidden;
  border: 1px solid rgba(66, 17, 122, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 56px rgba(31, 8, 65, 0.14);
}

.solution-example-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--purple-900);
}

.solution-example-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 12%, rgba(249, 194, 46, 0.22), transparent 9rem),
    linear-gradient(180deg, transparent 42%, rgba(20, 5, 31, 0.34));
}

.solution-example-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-example-copy {
  padding: 1.35rem;
}

.solution-example-copy span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.68rem;
  color: var(--purple-950);
  background: rgba(249, 194, 46, 0.84);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-example-copy h3 {
  margin: 0.95rem 0 0.55rem;
  color: var(--purple-950);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.2;
}

.solution-example-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-area-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 88px;
  padding: clamp(4.5rem, 6vw, 6.5rem) 0;
  color: #fff;
  background:
    radial-gradient(circle at 18% 22%, rgba(249, 194, 46, 0.14), transparent 20rem),
    radial-gradient(circle at 86% 62%, rgba(168, 85, 247, 0.2), transparent 24rem),
    linear-gradient(135deg, #11031b 0%, #25083f 48%, #41117a 100%);
}

.service-area-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(249, 194, 46, 0.3) 49% 50%, transparent 51% 100%) 0 0 / 136px 136px,
    linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)) 0 54% / 100% 1px no-repeat;
  mask-image: radial-gradient(circle at 50% 48%, #000 0 44%, transparent 78%);
}

.service-area-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: 2rem;
  align-items: center;
}

.service-area-copy h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 900;
  line-height: 1.04;
}

.service-area-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.75;
}

.service-area-section .eyebrow {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(249, 194, 46, 0.24);
}

.county-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: clamp(1rem, 2vw, 1.35rem);
  background:
    radial-gradient(circle at 85% 10%, rgba(249, 194, 46, 0.17), transparent 10rem),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(20, 5, 31, 0.26);
  backdrop-filter: blur(14px);
}

.county-panel span {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(249, 194, 46, 0.24);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(22, 5, 33, 0.56);
  box-shadow: 0 14px 36px rgba(20, 5, 31, 0.16);
  font-weight: 850;
  text-align: center;
}

.mission-band {
  position: relative;
  overflow: hidden;
  padding: clamp(3.8rem, 5.8vw, 5.35rem) 0;
  color: #fff;
  background:
    radial-gradient(circle at 78% 22%, rgba(249, 194, 46, 0.16), transparent 18rem),
    radial-gradient(circle at 17% 70%, rgba(168, 85, 247, 0.18), transparent 22rem),
    linear-gradient(135deg, #160521 0%, #260844 54%, #42117a 100%);
}

.mission-band::before,
.mission-band::after {
  position: absolute;
  inset: auto;
  content: "";
  pointer-events: none;
}

.mission-band::before {
  inset: 0;
  opacity: 0.14;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px) 0 0 / 150px 100%,
    linear-gradient(0deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px) 0 0 / 100% 110px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0 45%, transparent 78%);
}

.mission-band::after {
  top: 50%;
  right: clamp(2rem, 9vw, 9rem);
  width: clamp(130px, 17vw, 310px);
  height: clamp(130px, 17vw, 310px);
  opacity: 0.38;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent) 0 28% / 100% 1px no-repeat,
    linear-gradient(90deg, rgba(249, 194, 46, 0.28), transparent) 0 52% / 78% 1px no-repeat,
    linear-gradient(135deg, transparent 0 49%, rgba(255, 255, 255, 0.16) 49% 50%, transparent 50% 100%) 0 0 / 96px 96px;
  transform: translateY(-50%) rotate(-8deg);
}

.mission-circuit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mission-circuit span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(249, 194, 46, 0.72);
  box-shadow: 0 0 26px rgba(249, 194, 46, 0.58);
}

.mission-circuit span:nth-child(1) {
  top: 28%;
  left: 7%;
}

.mission-circuit span:nth-child(2) {
  bottom: 25%;
  left: 16%;
}

.mission-circuit span:nth-child(3) {
  top: 24%;
  right: 13%;
}

.mission-circuit span:nth-child(4) {
  top: 52%;
  right: 7%;
}

.mission-circuit span:nth-child(5) {
  bottom: 15%;
  right: 24%;
}

.mission-band .container {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.mission-label {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  justify-items: center;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(249, 194, 46, 0.28);
}

.mission-label::before {
  display: block;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--violet));
  box-shadow: 0 0 22px rgba(249, 194, 46, 0.36);
  content: "";
}

.mission-band .mission-copy {
  max-width: 1060px;
  margin: 0;
  font-size: clamp(1.45rem, 2.35vw, 2.55rem);
  font-weight: 800;
  line-height: 1.18;
  text-wrap: balance;
}

.section-block {
  position: relative;
  overflow: hidden;
  padding: 7.5rem 0;
  color: var(--purple-950);
  background:
    radial-gradient(circle at 84% 18%, rgba(249, 194, 46, 0.16), transparent 18rem),
    radial-gradient(circle at 14% 28%, rgba(168, 85, 247, 0.18), transparent 22rem),
    linear-gradient(135deg, #f0e7fb 0%, #dbc8f3 48%, #c5a8e8 100%);
}

.section-block::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.12;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(255, 255, 255, 0.32) 49% 50%, transparent 50% 100%) 0 0 / 120px 120px,
    linear-gradient(rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.22)) 0 60% / 100% 1px no-repeat;
  mask-image: radial-gradient(circle at 50% 35%, #000, transparent 74%);
}

.section-block .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading h2,
.church-grid h2,
.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.section-block .section-heading h2,
.process-section .section-heading h2 {
  color: var(--purple-950);
}

.section-block .eyebrow,
.church-section .eyebrow,
.contact-section .eyebrow {
  color: var(--purple-600);
}

.showcase-section {
  position: relative;
  overflow: hidden;
  padding: 7.5rem 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(249, 194, 46, 0.12), transparent 20rem),
    radial-gradient(circle at 86% 48%, rgba(168, 85, 247, 0.2), transparent 24rem),
    linear-gradient(135deg, #100318 0%, #26083f 45%, #3b116d 100%);
}

.showcase-section .eyebrow,
.showcase-copy h2 {
  color: var(--purple-950);
  text-shadow: none;
}

.showcase-copy p:not(.eyebrow) {
  color: var(--muted);
}

.showcase-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.22;
  pointer-events: none;
  background:
    linear-gradient(100deg, transparent 0 24%, rgba(249, 194, 46, 0.46) 42%, transparent 62%) 0 38% / 130% 3px no-repeat,
    linear-gradient(100deg, transparent 0 32%, rgba(168, 85, 247, 0.58) 54%, transparent 75%) 0 56% / 140% 5px no-repeat;
}

.showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1.25fr);
  gap: 2rem;
  align-items: center;
}

.showcase-copy h2 {
  max-width: 520px;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.04;
}

.showcase-section .eyebrow {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(249, 194, 46, 0.22);
}

.showcase-copy p:not(.eyebrow) {
  max-width: 540px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.75;
}

.showcase-media,
.service-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 28px 80px rgba(20, 5, 31, 0.34),
    0 0 0 1px rgba(249, 194, 46, 0.08);
}

.showcase-media::after,
.service-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 18%, rgba(249, 194, 46, 0.18), transparent 16rem),
    linear-gradient(180deg, transparent 45%, rgba(20, 5, 31, 0.18));
}

.showcase-media img,
.service-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-media {
  min-height: 430px;
}

.service-heading {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: center;
}

.service-media {
  min-height: 250px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(66, 17, 122, 0.14);
  border-radius: 8px;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 88% 8%, rgba(249, 194, 46, 0.16), transparent 9rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(251, 249, 255, 0.8));
  box-shadow: 0 18px 48px rgba(31, 8, 65, 0.12);
  backdrop-filter: blur(14px);
}

.service-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--purple-950);
  background: var(--gold);
  box-shadow: 0 0 26px rgba(249, 194, 46, 0.26);
  font-weight: 800;
}

.service-card h3 {
  margin: 1.1rem 0 0.55rem;
  color: var(--purple-950);
  font-size: 1.45rem;
  font-weight: 800;
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

.service-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.1rem 0 0;
  padding-left: 1.1rem;
}

.service-card li {
  color: var(--muted);
  line-height: 1.55;
}

.service-card li::marker {
  color: var(--gold);
}

.affordability-note {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.25rem;
  border: 1px solid rgba(249, 194, 46, 0.28);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 1.15rem 1.25rem;
  background:
    radial-gradient(circle at 96% 12%, rgba(249, 194, 46, 0.16), transparent 10rem),
    rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 44px rgba(20, 5, 31, 0.18);
}

.affordability-note strong {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 900;
}

.affordability-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.church-section {
  padding: 7.5rem 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 25%, rgba(249, 194, 46, 0.12), transparent 18rem),
    radial-gradient(circle at 15% 70%, rgba(168, 85, 247, 0.16), transparent 22rem),
    linear-gradient(135deg, #100318 0%, #26083f 48%, #3b116d 100%);
}

.church-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.church-grid h2 {
  color: #fff;
}

.church-grid p {
  margin-top: 1.3rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.75;
}

.church-scripture-card {
  margin: 1.8rem 0 0;
  border: 1px solid rgba(249, 194, 46, 0.28);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 1.25rem 1.35rem;
  background:
    radial-gradient(circle at 92% 8%, rgba(249, 194, 46, 0.16), transparent 8rem),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(20, 5, 31, 0.22);
}

.church-scripture-card blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.65;
}

.church-scripture-card figcaption {
  margin-top: 0.85rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.church-side {
  display: grid;
  gap: 1rem;
}

.church-media {
  position: relative;
  overflow: hidden;
  min-height: 285px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 26px 76px rgba(20, 5, 31, 0.3),
    0 0 0 1px rgba(249, 194, 46, 0.08);
}

.church-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 20%, rgba(249, 194, 46, 0.16), transparent 15rem),
    linear-gradient(180deg, rgba(22, 5, 33, 0.08), rgba(22, 5, 33, 0.36));
}

.church-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.church-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.church-list div {
  display: flex;
  min-height: 154px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 48px rgba(20, 5, 31, 0.2);
}

.church-list h3 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 800;
}

.church-list p {
  margin: 0.7rem 0 0;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.65;
}

.process-section {
  background:
    radial-gradient(circle at 20% 18%, rgba(249, 194, 46, 0.15), transparent 20rem),
    radial-gradient(circle at 86% 38%, rgba(168, 85, 247, 0.18), transparent 22rem),
    linear-gradient(135deg, #f0e7fb 0%, #dac6f1 46%, #c4a6e7 100%);
}

.process-section .section-heading h2 {
  color: var(--purple-950);
}

.process-section .eyebrow {
  color: var(--purple-600);
}

.process-intro > p,
.process-step p {
  color: var(--muted);
}

.process-step {
  border-color: rgba(66, 17, 122, 0.14);
  background:
    radial-gradient(circle at 95% 0%, rgba(249, 194, 46, 0.16), transparent 7rem),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 44px rgba(31, 8, 65, 0.1);
}

.process-step span {
  color: var(--purple-800);
}

.section-heading.compact {
  max-width: 780px;
  display: block;
}

.process-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 2rem;
  align-items: start;
}

.process-intro > p {
  margin: 2.45rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.75;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.process-step {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 1rem 1rem 1rem 1.2rem;
  background:
    radial-gradient(circle at 95% 0%, rgba(249, 194, 46, 0.12), transparent 7rem),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 38px rgba(20, 5, 31, 0.18);
}

.process-step span {
  color: var(--gold);
  font-weight: 800;
}

.process-step p {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.contact-section {
  padding: 7.5rem 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(249, 194, 46, 0.14), transparent 20rem),
    radial-gradient(circle at 18% 55%, rgba(168, 85, 247, 0.18), transparent 24rem),
    linear-gradient(135deg, #12051c 0%, #2c0a4b 52%, #4b148e 100%);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 88% 14%, rgba(249, 194, 46, 0.12), transparent 12rem),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(20, 5, 31, 0.28);
  backdrop-filter: blur(14px);
}

.contact-panel h2 {
  color: #fff;
}

.contact-panel p {
  max-width: 780px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.75;
}

.contact-card {
  display: grid;
  gap: 0.75rem;
  border-radius: 8px;
  padding: 1.2rem;
  color: #fff;
  background:
    radial-gradient(circle at 92% 10%, rgba(249, 194, 46, 0.18), transparent 8rem),
    linear-gradient(135deg, rgba(22, 5, 33, 0.94), rgba(66, 17, 122, 0.78));
  box-shadow: 0 18px 48px rgba(20, 5, 31, 0.22);
}

.contact-card a,
.contact-card span {
  overflow-wrap: anywhere;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.home-showcase-section {
  scroll-margin-top: 88px;
  color: var(--purple-950);
  background:
    radial-gradient(circle at 82% 18%, rgba(249, 194, 46, 0.18), transparent 18rem),
    radial-gradient(circle at 14% 68%, rgba(168, 85, 247, 0.14), transparent 22rem),
    linear-gradient(135deg, #fbf9ff 0%, #eadff8 48%, #d7c0ef 100%);
}

.home-showcase-section .eyebrow {
  color: var(--purple-600);
  text-shadow: none;
}

.home-showcase-section .showcase-copy h2 {
  color: var(--purple-950);
  text-shadow: none;
}

.home-showcase-section .showcase-copy p:not(.eyebrow) {
  color: var(--muted);
}

.home-services-section {
  scroll-margin-top: 88px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 24%, rgba(249, 194, 46, 0.14), transparent 20rem),
    radial-gradient(circle at 86% 42%, rgba(168, 85, 247, 0.2), transparent 24rem),
    linear-gradient(135deg, #12051c 0%, #2a0949 50%, #40117a 100%);
}

.home-services-section .eyebrow {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(249, 194, 46, 0.24);
}

.home-services-section .section-heading h2 {
  color: #fff;
}

.home-services-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.home-church-section {
  scroll-margin-top: 88px;
  color: var(--purple-950);
  background:
    radial-gradient(circle at 18% 22%, rgba(249, 194, 46, 0.18), transparent 18rem),
    radial-gradient(circle at 86% 62%, rgba(168, 85, 247, 0.14), transparent 24rem),
    linear-gradient(135deg, #fbf9ff 0%, #eadff8 50%, #d7c0ef 100%);
}

.home-church-section .eyebrow {
  color: var(--purple-600);
}

.home-church-section .church-grid h2 {
  color: var(--purple-950);
}

.home-church-section .church-grid p {
  color: var(--muted);
}

.home-process-section {
  scroll-margin-top: 88px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 18%, rgba(249, 194, 46, 0.13), transparent 20rem),
    radial-gradient(circle at 86% 38%, rgba(168, 85, 247, 0.2), transparent 22rem),
    linear-gradient(135deg, #100318 0%, #26083f 46%, #3f1175 100%);
}

.home-process-section .eyebrow,
.home-process-section .process-step span {
  color: var(--gold);
}

.home-process-section .section-heading h2,
.home-process-section.process-section .section-heading h2 {
  color: #fff;
}

.home-process-section .process-intro > p,
.home-process-section .process-step p {
  color: rgba(255, 255, 255, 0.76);
}

.home-process-section .process-step {
  border-color: rgba(255, 255, 255, 0.14);
  border-left-color: var(--gold);
  background:
    radial-gradient(circle at 95% 0%, rgba(249, 194, 46, 0.12), transparent 7rem),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 38px rgba(20, 5, 31, 0.18);
}

.home-contact-section {
  scroll-margin-top: 88px;
  background:
    radial-gradient(circle at 78% 20%, rgba(249, 194, 46, 0.18), transparent 20rem),
    radial-gradient(circle at 18% 55%, rgba(168, 85, 247, 0.15), transparent 24rem),
    linear-gradient(135deg, #fbf9ff 0%, #eadff8 48%, #d9c2f1 100%);
}

.home-contact-section .contact-panel {
  border-color: rgba(66, 17, 122, 0.14);
  background:
    radial-gradient(circle at 88% 14%, rgba(249, 194, 46, 0.14), transparent 12rem),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(31, 8, 65, 0.14);
}

.home-contact-section .contact-panel h2 {
  color: var(--purple-950);
}

.home-contact-section .contact-panel p {
  color: var(--muted);
}

.text-action {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--purple-800);
  font-weight: 900;
  text-decoration: none;
}

.text-action::after {
  content: "->";
  color: var(--gold-dark);
  transition: transform 180ms ease;
}

.text-action:hover,
.text-action:focus {
  color: var(--purple-600);
}

.text-action:hover::after,
.text-action:focus::after {
  transform: translateX(3px);
}

.text-action.light {
  color: #fff;
}

.text-action.light::after {
  color: var(--gold);
}

.link-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  align-items: center;
}

.interior-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 8vw, 8.5rem) 0;
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(249, 194, 46, 0.14), transparent 18rem),
    radial-gradient(circle at 82% 28%, rgba(168, 85, 247, 0.22), transparent 24rem),
    linear-gradient(135deg, #12051c 0%, #2b0a49 48%, #42117a 100%);
}

.interior-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.15;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px) 0 0 / 132px 132px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px) 0 0 / 132px 132px,
    linear-gradient(100deg, transparent 0 24%, rgba(249, 194, 46, 0.46) 42%, rgba(168, 85, 247, 0.42) 58%, transparent 74%) 0 62% / 130% 4px no-repeat;
  mask-image: radial-gradient(circle at 50% 44%, #000 0 46%, transparent 78%);
}

.interior-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100% - 2rem, 1280px);
  max-width: none;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 0.98fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: center;
}

.interior-hero-copy h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.interior-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.interior-hero .hero-actions {
  width: auto;
  justify-content: flex-start;
  margin-top: 1.7rem;
  transform: none;
}

.interior-hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 10%, rgba(249, 194, 46, 0.14), transparent 12rem),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 82px rgba(20, 5, 31, 0.32);
  backdrop-filter: blur(16px);
}

.interior-hero-panel {
  padding: clamp(1.4rem, 3vw, 2rem);
}

.interior-hero-panel .panel-label {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.interior-hero-panel p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 800;
  line-height: 1.24;
}

.pricing-hero-card {
  display: grid;
  gap: 0.8rem;
  align-content: center;
  min-height: 320px;
  border: 1px solid rgba(249, 194, 46, 0.24);
  border-radius: 8px;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  color: #fff;
  background:
    radial-gradient(circle at 86% 14%, rgba(249, 194, 46, 0.2), transparent 11rem),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 82px rgba(20, 5, 31, 0.32);
  backdrop-filter: blur(16px);
}

.pricing-hero-card .panel-label {
  margin: 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-hero-card strong {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 0.98;
}

.pricing-hero-card span {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.6;
}

.examples-hero-preview {
  position: relative;
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: clamp(1rem, 2vw, 1.4rem);
  background:
    radial-gradient(circle at 88% 12%, rgba(249, 194, 46, 0.18), transparent 10rem),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 82px rgba(20, 5, 31, 0.32);
  backdrop-filter: blur(16px);
}

.preview-browser,
.preview-hero-block,
.preview-card-row span,
.preview-dashboard span {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.preview-browser {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  min-height: 46px;
  padding: 0 1rem;
}

.preview-browser span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.preview-hero-block {
  min-height: 170px;
  background:
    linear-gradient(90deg, rgba(249, 194, 46, 0.85) 0 32%, transparent 32% 100%) 1.1rem 1.4rem / 52% 12px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.76) 0 54%, transparent 54% 100%) 1.1rem 3.2rem / 72% 10px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.46) 0 42%, transparent 42% 100%) 1.1rem 4.7rem / 62% 10px no-repeat,
    radial-gradient(circle at 82% 24%, rgba(249, 194, 46, 0.24), transparent 8rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(168, 85, 247, 0.16));
}

.preview-card-row,
.preview-dashboard {
  display: grid;
  gap: 0.8rem;
}

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

.preview-card-row span {
  min-height: 86px;
  background:
    linear-gradient(rgba(249, 194, 46, 0.78), rgba(249, 194, 46, 0.78)) 1rem 1rem / 42px 8px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.58)) 1rem 2.1rem / 70% 7px no-repeat,
    rgba(255, 255, 255, 0.1);
}

.preview-dashboard {
  grid-template-columns: 0.9fr 1.2fr;
}

.preview-dashboard span {
  min-height: 78px;
  background:
    linear-gradient(rgba(249, 194, 46, 0.72), rgba(249, 194, 46, 0.72)) 1rem 1rem / 40px 8px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.44)) 1rem 2.1rem / 66% 7px no-repeat,
    rgba(255, 255, 255, 0.08);
}

.interior-media {
  overflow: visible;
  min-width: 0;
  height: clamp(380px, 34vw, 500px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.interior-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.example-hero-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)) 1.1rem 1.2rem / 54% 10px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.52)) 1.1rem 2.8rem / 72% 8px no-repeat,
    linear-gradient(rgba(249, 194, 46, 0.86), rgba(249, 194, 46, 0.86)) 1.1rem 4.2rem / 120px 28px no-repeat,
    radial-gradient(circle at 85% 12%, rgba(249, 194, 46, 0.2), transparent 9rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(168, 85, 247, 0.14));
  box-shadow: 0 24px 70px rgba(20, 5, 31, 0.26);
}

.gallery-tile.large {
  grid-row: span 2;
  min-height: 396px;
}

.gallery-tile::after {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  height: 34%;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.52)) 1rem 1rem / 44% 7px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.34)) 1rem 2rem / 68% 7px no-repeat,
    rgba(255, 255, 255, 0.1);
  content: "";
}

.gallery-tile span {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 1rem;
  color: var(--gold);
  font-weight: 900;
}

.example-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(4.8rem, 7vw, 7.5rem) 0;
}

.light-example {
  color: var(--purple-950);
  background:
    radial-gradient(circle at 82% 18%, rgba(249, 194, 46, 0.18), transparent 18rem),
    radial-gradient(circle at 14% 64%, rgba(168, 85, 247, 0.14), transparent 24rem),
    linear-gradient(135deg, #fbf9ff 0%, #eadff8 50%, #d7c0ef 100%);
}

.dark-example {
  color: #fff;
  background:
    radial-gradient(circle at 16% 20%, rgba(249, 194, 46, 0.12), transparent 20rem),
    radial-gradient(circle at 84% 52%, rgba(168, 85, 247, 0.2), transparent 24rem),
    linear-gradient(135deg, #100318 0%, #26083f 48%, #3b116d 100%);
}

.example-showcase-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.48fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.example-showcase-grid.reversed {
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.48fr);
}

.example-showcase-grid.reversed .example-context {
  order: 2;
}

.example-context h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(2rem, 4vw, 3.65rem);
  font-weight: 900;
  line-height: 1.04;
}

.example-context p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.dark-example .example-context p,
.dark-example .example-context li {
  color: rgba(255, 255, 255, 0.84);
}

.example-context ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.2rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}

.example-context li::marker {
  color: var(--gold-dark);
}

.dark-example .example-context li::marker {
  color: var(--gold);
}

.example-browser-frame {
  overflow: hidden;
  border: 1px solid rgba(66, 17, 122, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(31, 8, 65, 0.22);
}

.dark-example .example-browser-frame {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 80px rgba(7, 1, 14, 0.38);
}

.demo-browser-bar {
  display: flex;
  gap: 0.42rem;
  align-items: center;
  min-height: 38px;
  padding: 0 1rem;
  color: rgba(20, 10, 36, 0.62);
  background: #f3eefb;
  font-size: 0.78rem;
  font-weight: 800;
}

.demo-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.demo-browser-bar em {
  margin-left: 0.45rem;
  font-style: normal;
}

.demo-page {
  min-height: 620px;
  color: #1b102b;
  background: #fbf9ff;
}

.demo-page header {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.4rem;
  color: #1b102b;
  background: rgba(255, 255, 255, 0.9);
}

.demo-page header strong {
  font-size: 1rem;
  font-weight: 900;
}

.demo-page header nav {
  color: #625772;
  font-size: 0.78rem;
  font-weight: 900;
  word-spacing: 0.45rem;
}

.demo-hero,
.church-demo-hero,
.ministry-hero {
  margin: 1rem;
  border-radius: 8px;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.demo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 1rem;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 82% 22%, rgba(249, 194, 46, 0.22), transparent 11rem),
    linear-gradient(135deg, #260844, #6d28d9);
}

.demo-hero small,
.church-demo-hero small,
.ministry-hero small {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.demo-hero h3,
.church-demo-hero h3,
.ministry-hero h3 {
  margin: 0.65rem 0;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.04;
}

.demo-hero p,
.demo-hero aside p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.demo-actions span,
.donation-strip span,
.dashboard-page button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  color: #1b102b;
  background: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.demo-hero aside {
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.12);
}

.demo-card-row,
.demo-proof-row,
.program-grid,
.church-content-grid,
.visit-strip {
  display: grid;
  gap: 0.8rem;
  margin: 1rem;
}

.demo-card-row,
.program-grid,
.visit-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.church-content-grid,
.demo-proof-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.demo-card-row article,
.program-grid article,
.church-content-grid article,
.visit-strip div,
.demo-proof-row div {
  border: 1px solid rgba(66, 17, 122, 0.12);
  border-radius: 8px;
  padding: 1rem;
  background: #fff;
}

.demo-card-row p,
.program-grid p,
.church-content-grid p,
.visit-strip p {
  margin: 0.35rem 0 0;
  color: #625772;
  line-height: 1.45;
}

.demo-proof-row b,
.impact-card b,
.metric-row b {
  display: block;
  color: var(--purple-800);
  font-size: 1.75rem;
  font-weight: 900;
}

.demo-proof-row span,
.impact-card span,
.metric-row span {
  color: #625772;
  font-size: 0.82rem;
  font-weight: 800;
}

.church-demo-hero {
  color: #fff;
  background:
    linear-gradient(rgba(22, 5, 33, 0.42), rgba(22, 5, 33, 0.62)),
    url("/assets/images/church_service.png") center / cover;
}

.ministry-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 1rem;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(249, 194, 46, 0.24), transparent 12rem),
    linear-gradient(135deg, #3b116d, #6d28d9);
}

.impact-card {
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.92);
}

.donation-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: #fff;
}

.dashboard-page {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  min-height: 620px;
  color: #1b102b;
  background: #f5f0fb;
}

.dashboard-page aside {
  display: grid;
  align-content: start;
  gap: 0.6rem;
  padding: 1.2rem;
  color: #fff;
  background: #260844;
}

.dashboard-page aside strong {
  margin-bottom: 0.8rem;
  color: var(--gold);
}

.dashboard-page aside span {
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.dashboard-page main {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.2rem;
}

.dashboard-page main header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-page h3 {
  margin: 0.2rem 0 0;
  font-size: 1.6rem;
  font-weight: 900;
}

.dashboard-page button {
  border: 0;
}

.metric-row,
.dashboard-board {
  display: grid;
  gap: 0.8rem;
}

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

.metric-row article,
.dashboard-board article {
  border: 1px solid rgba(66, 17, 122, 0.12);
  border-radius: 8px;
  padding: 1rem;
  background: #fff;
}

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

.dashboard-board p {
  margin: 0.55rem 0 0;
  border-radius: 8px;
  padding: 0.65rem;
  color: #625772;
  background: #f3eefb;
  font-weight: 700;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.example-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 58px rgba(20, 5, 31, 0.22);
}

.example-mockup {
  display: grid;
  gap: 0.85rem;
  min-height: 230px;
  padding: 1rem;
  background:
    radial-gradient(circle at 86% 12%, rgba(249, 194, 46, 0.18), transparent 9rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(168, 85, 247, 0.12));
}

.mock-nav,
.mock-hero,
.mock-columns span {
  border-radius: 8px;
}

.mock-nav {
  height: 34px;
  background:
    linear-gradient(90deg, rgba(249, 194, 46, 0.86) 0 18%, transparent 18% 100%) 0.8rem 50% / 80% 8px no-repeat,
    rgba(255, 255, 255, 0.1);
}

.mock-hero {
  min-height: 94px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86) 0 50%, transparent 50% 100%) 0.9rem 1rem / 72% 9px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0 40%, transparent 40% 100%) 0.9rem 2.3rem / 64% 8px no-repeat,
    radial-gradient(circle at 78% 24%, rgba(249, 194, 46, 0.25), transparent 7rem),
    rgba(22, 5, 33, 0.5);
}

.mock-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.mock-columns span {
  min-height: 58px;
  background: rgba(255, 255, 255, 0.12);
}

.example-card-copy {
  padding: 1.25rem;
}

.example-card-copy span {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.32rem 0.65rem;
  color: var(--purple-950);
  background: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.example-card-copy h3 {
  margin: 0.85rem 0 0.5rem;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
}

.example-card-copy p,
.example-card-copy li {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.62;
}

.example-card-copy p {
  margin: 0;
}

.example-card-copy ul {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.example-card-copy li::marker {
  color: var(--gold);
}

.possibility-list {
  display: grid;
  gap: 1rem;
}

.possibility-list article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  border: 1px solid rgba(66, 17, 122, 0.14);
  border-radius: 8px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 42px rgba(31, 8, 65, 0.1);
}

.possibility-list span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  color: var(--purple-950);
  background: var(--gold);
  font-weight: 900;
}

.possibility-list h3 {
  margin: 0 0 0.45rem;
  color: var(--purple-950);
  font-size: 1.35rem;
  font-weight: 900;
}

.possibility-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.workflow-example-grid,
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.workflow-example-grid article,
.bundle-grid article {
  border-radius: 8px;
  padding: 1.2rem;
}

.workflow-example-grid article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.bundle-grid article {
  border: 1px solid rgba(66, 17, 122, 0.14);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 42px rgba(31, 8, 65, 0.1);
}

.workflow-example-grid strong,
.bundle-grid strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
  font-weight: 900;
}

.workflow-example-grid strong {
  color: var(--gold);
}

.workflow-example-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.64;
}

.bundle-grid strong {
  color: var(--purple-950);
}

.bundle-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
}

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

.pricing-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid rgba(66, 17, 122, 0.14);
  border-radius: 8px;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 90% 8%, rgba(249, 194, 46, 0.16), transparent 9rem),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 44px rgba(31, 8, 65, 0.1);
}

.pricing-card.featured-pricing {
  border-color: rgba(249, 194, 46, 0.72);
  box-shadow:
    0 20px 54px rgba(31, 8, 65, 0.14),
    0 0 0 3px rgba(249, 194, 46, 0.16);
}

.pricing-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0.32rem 0.65rem;
  color: var(--purple-950);
  background: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 1rem 0 0.55rem;
  color: var(--purple-950);
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  font-weight: 900;
  line-height: 1.05;
}

.pricing-card p,
.pricing-card li {
  color: var(--muted);
  line-height: 1.6;
}

.pricing-card ul {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.pricing-card li::marker {
  color: var(--gold-dark);
}

.pricing-note {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hosting-cost-band {
  color: #fff;
  background:
    radial-gradient(circle at 16% 22%, rgba(249, 194, 46, 0.24), transparent 18rem),
    radial-gradient(circle at 82% 16%, rgba(168, 85, 247, 0.28), transparent 22rem),
    linear-gradient(135deg, #1b0631 0%, #32105e 52%, #4c167f 100%);
}

.hosting-cost-band h2 {
  color: #fff;
}

.hosting-cost-band .pricing-note,
.hosting-cost-band .workflow-example-grid p {
  color: rgba(255, 255, 255, 0.84);
}

.hosting-cost-band .workflow-example-grid article {
  border: 1px solid rgba(249, 194, 46, 0.18);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.payment-steps {
  display: grid;
  gap: 1rem;
}

.payment-steps article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
}

.payment-steps span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  color: var(--purple-950);
  background: var(--gold);
  font-weight: 900;
}

.payment-steps h3 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 900;
}

.payment-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.62;
}

.payment-security-card strong {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.payment-option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.payment-option-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(66, 17, 122, 0.14);
  border-radius: 8px;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 90% 8%, rgba(249, 194, 46, 0.16), transparent 9rem),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 44px rgba(31, 8, 65, 0.1);
}

.payment-option-card span:first-child {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0.32rem 0.65rem;
  color: var(--purple-950);
  background: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-option-card h3 {
  margin: 1rem 0 0.55rem;
  color: var(--purple-950);
  font-size: 1.45rem;
  font-weight: 900;
}

.payment-option-card p {
  flex: 1;
  color: var(--muted);
  line-height: 1.65;
}

.payment-disabled {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border: 1px dashed rgba(66, 17, 122, 0.26);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.5);
  font-weight: 900;
}

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

.faq-grid article {
  border: 1px solid rgba(66, 17, 122, 0.14);
  border-radius: 8px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 42px rgba(31, 8, 65, 0.1);
}

.faq-grid h3 {
  margin: 0 0 0.55rem;
  color: var(--purple-950);
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1.25;
}

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

.content-band {
  position: relative;
  overflow: hidden;
  padding: clamp(4.8rem, 7vw, 7.5rem) 0;
}

.light-band {
  color: var(--purple-950);
  background:
    radial-gradient(circle at 86% 16%, rgba(249, 194, 46, 0.16), transparent 18rem),
    radial-gradient(circle at 12% 40%, rgba(168, 85, 247, 0.14), transparent 24rem),
    linear-gradient(135deg, #fbf9ff 0%, #efe7fb 50%, #ddcaf5 100%);
}

.dark-band {
  color: #fff;
  background:
    radial-gradient(circle at 16% 18%, rgba(249, 194, 46, 0.12), transparent 20rem),
    radial-gradient(circle at 84% 44%, rgba(168, 85, 247, 0.2), transparent 24rem),
    linear-gradient(135deg, #100318 0%, #26083f 48%, #3b116d 100%);
}

.content-band .section-heading {
  display: block;
  max-width: 860px;
  margin-bottom: 2rem;
}

.content-band .section-heading h2,
.split-feature h2,
.page-cta-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.content-band .section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.dark-band .section-heading p:not(.eyebrow),
.dark-band .prose-stack p,
.dark-band .impact-list p,
.dark-band .service-list p {
  color: rgba(255, 255, 255, 0.76);
}

.split-feature,
.values-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.split-feature h2,
.dark-band h2 {
  color: #fff;
}

.light-band h2 {
  color: var(--purple-950);
}

.prose-stack {
  display: grid;
  gap: 1rem;
}

.prose-stack p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.large-copy p {
  color: var(--purple-950);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.35;
}

.content-band .detail-grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

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

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

.detail-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: clamp(1.25rem, 2vw, 1.7rem);
  background:
    radial-gradient(circle at 92% 8%, rgba(249, 194, 46, 0.12), transparent 9rem),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 52px rgba(20, 5, 31, 0.18);
}

.detail-card.light-card {
  border-color: rgba(66, 17, 122, 0.12);
  background:
    radial-gradient(circle at 92% 8%, rgba(249, 194, 46, 0.16), transparent 9rem),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 52px rgba(31, 8, 65, 0.11);
}

.detail-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0.34rem 0.7rem;
  color: var(--purple-950);
  background: rgba(249, 194, 46, 0.88);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-card h3 {
  margin: 1rem 0 0.6rem;
  color: inherit;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 900;
  line-height: 1.15;
}

.detail-card p,
.detail-card li {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.detail-card.light-card p,
.detail-card.light-card li {
  color: var(--muted);
}

.detail-card ul {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.detail-card li::marker {
  color: var(--gold-dark);
}

.impact-list,
.service-list,
.value-list {
  display: grid;
  gap: 1rem;
}

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

.impact-list div,
.service-list div,
.value-list div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 44px rgba(20, 5, 31, 0.16);
}

.light-band .value-list div {
  border-color: rgba(66, 17, 122, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 44px rgba(31, 8, 65, 0.1);
}

.impact-list strong,
.service-list strong,
.value-list strong {
  display: block;
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 900;
}

.light-band .value-list strong {
  color: var(--purple-800);
}

.impact-list p,
.service-list p,
.value-list p {
  margin: 0.5rem 0 0;
  line-height: 1.65;
}

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

.timeline-list {
  display: grid;
  gap: 1rem;
}

.timeline-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  border: 1px solid rgba(66, 17, 122, 0.12);
  border-radius: 8px;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 44px rgba(31, 8, 65, 0.1);
}

.timeline-list span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: var(--purple-950);
  background: var(--gold);
  font-weight: 900;
}

.timeline-list h3 {
  margin: 0;
  color: var(--purple-950);
  font-size: 1.35rem;
  font-weight: 900;
}

.timeline-list p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.page-cta {
  padding: clamp(4rem, 6vw, 6rem) 0;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(249, 194, 46, 0.14), transparent 18rem),
    linear-gradient(135deg, #12051c 0%, #2c0a4b 52%, #4b148e 100%);
}

.page-cta-panel {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: clamp(1.5rem, 4vw, 2.7rem);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(20, 5, 31, 0.28);
}

.page-cta-panel h2 {
  max-width: 820px;
  color: #fff;
}

.showcase-section .eyebrow {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(249, 194, 46, 0.22);
}

.showcase-copy h2 {
  color: #fff;
}

.showcase-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.mission-band .mission-copy {
  color: #fff;
  text-shadow: 0 18px 44px rgba(20, 5, 31, 0.34);
}

.section-block:not(.process-section) .section-heading h2,
.section-block:not(.process-section) .service-card h3 {
  color: var(--purple-950);
}

.section-block:not(.process-section) .eyebrow {
  color: var(--purple-600);
}

.section-block:not(.process-section) .section-heading p,
.section-block:not(.process-section) .service-card p,
.section-block:not(.process-section) .service-card li {
  color: var(--muted);
}

.church-section .eyebrow,
.contact-section .eyebrow {
  color: var(--gold);
}

.process-section .section-heading h2 {
  color: var(--purple-950);
}

.process-section .eyebrow {
  color: var(--purple-600);
}

.process-intro > p,
.process-section .process-step p {
  color: var(--muted);
}

.process-section .process-step {
  border-color: rgba(66, 17, 122, 0.14);
  border-left-color: var(--gold);
  background:
    radial-gradient(circle at 95% 0%, rgba(249, 194, 46, 0.16), transparent 7rem),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 44px rgba(31, 8, 65, 0.1);
}

.process-section .process-step span {
  color: var(--purple-800);
}

.home-showcase-section .eyebrow,
.home-church-section .eyebrow,
.home-contact-section .eyebrow {
  color: var(--purple-600);
  text-shadow: none;
}

.home-showcase-section .showcase-copy h2,
.home-church-section .church-grid h2,
.home-contact-section .contact-panel h2 {
  color: var(--purple-950);
}

.home-showcase-section .showcase-copy p:not(.eyebrow),
.home-church-section .church-grid p,
.home-contact-section .contact-panel p {
  color: var(--muted);
}

.home-services-section.section-block .eyebrow,
.home-process-section.process-section .eyebrow,
.home-services-section.section-block .text-action,
.home-process-section.process-section .text-action {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(249, 194, 46, 0.24);
}

.home-services-section.section-block .section-heading h2,
.home-process-section.process-section .section-heading h2 {
  color: #fff;
}

.home-services-section.section-block .section-heading p,
.home-process-section.process-section .process-intro > p,
.home-process-section.process-section .process-step p {
  color: rgba(255, 255, 255, 0.88);
}

.home-services-section.section-block .service-card h3 {
  color: var(--purple-950);
}

.home-services-section.section-block .service-card p {
  color: var(--muted);
}

.home-process-section.process-section .process-step {
  border-color: rgba(255, 255, 255, 0.18);
  border-left-color: var(--gold);
  background:
    radial-gradient(circle at 95% 0%, rgba(249, 194, 46, 0.16), transparent 7rem),
    rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 38px rgba(20, 5, 31, 0.18);
}

.home-process-section.process-section .process-step span {
  color: var(--gold);
}

.site-footer {
  padding: 1.5rem 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--purple-950);
}

.site-footer .container {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.site-footer div div {
  display: grid;
  gap: 0.25rem;
}

.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: flex-end;
}

.site-footer strong {
  display: block;
  color: #fff;
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.nav-logo {
  display: block;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  background: var(--purple-950);
  box-shadow: 0 10px 28px rgba(109, 40, 217, 0.22);
}

.admin-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0 6rem;
}

.admin-body {
  color: #fff;
  background:
    radial-gradient(circle at 78% 16%, rgba(249, 194, 46, 0.14), transparent 20rem),
    radial-gradient(circle at 16% 62%, rgba(168, 85, 247, 0.22), transparent 24rem),
    linear-gradient(135deg, #12031b 0%, #24073d 48%, #42117a 100%);
}

.admin-body main {
  min-height: calc(100vh - 168px);
}

.admin-body .admin-heading h1,
.admin-body .admin-card h2,
.admin-body .table-heading h2,
.admin-body .kanban-heading h2 {
  color: #fff;
}

.admin-body .admin-heading p:not(.eyebrow),
.admin-body .empty-state,
.admin-body .metric-card span,
.admin-body .table-heading span,
.admin-body .activity-list span {
  color: rgba(255, 255, 255, 0.72);
}

.admin-body .admin-card,
.admin-body .metric-card,
.admin-body .kanban-column {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 92% 8%, rgba(249, 194, 46, 0.13), transparent 10rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.08));
  box-shadow: 0 24px 70px rgba(12, 2, 20, 0.28);
  backdrop-filter: blur(14px);
}

.admin-body .metric-card strong,
.admin-body .table td,
.admin-body .detail-list dd,
.admin-body .task-row strong,
.admin-body .task-card strong {
  color: #fff;
}

.admin-body .detail-list dt,
.admin-body .task-row p,
.admin-body .activity-list p,
.admin-body .task-card p {
  color: rgba(255, 255, 255, 0.72);
}

.admin-body .table th {
  color: var(--gold);
}

.admin-body .table {
  --bs-table-bg: transparent;
  --bs-table-color: #fff;
  --bs-table-border-color: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: rgba(20, 5, 31, 0.28);
}

.admin-body .table thead th {
  background: rgba(255, 255, 255, 0.08);
}

.admin-body .table tbody tr {
  background: rgba(255, 255, 255, 0.06);
}

.admin-body .table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.1);
}

.admin-body .table td {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

.admin-body .table td span:not(.status-badge):not(.project-pill),
.admin-body .table td strong {
  color: #fff;
}

.admin-body .table a {
  color: #d8b4fe;
}

.admin-body .table-heading a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(249, 194, 46, 0.35);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  color: var(--purple-950);
  background: linear-gradient(135deg, var(--gold), #ffe389);
  box-shadow: 0 12px 28px rgba(20, 5, 31, 0.18);
  font-size: 0.9rem;
  font-weight: 900;
}

.admin-body .table-heading a:hover {
  color: var(--purple-950);
  transform: translateY(-1px);
}

.admin-body .status-badge {
  color: var(--purple-950);
  background: rgba(249, 194, 46, 0.82);
}

.admin-body .project-pill {
  color: #fff;
  background: rgba(109, 40, 217, 0.34);
}

.admin-body .form-control,
.admin-body .form-select {
  border-color: rgba(255, 255, 255, 0.22);
  background-color: rgba(255, 255, 255, 0.92);
}

.admin-auth-page,
.confirmation-page {
  display: grid;
  min-height: calc(100vh - 74px);
  place-items: center;
  padding: 4rem 1rem;
  color: #fff;
  background:
    radial-gradient(circle at 52% 18%, rgba(249, 194, 46, 0.18), transparent 16rem),
    radial-gradient(circle at 82% 38%, rgba(168, 85, 247, 0.28), transparent 25rem),
    linear-gradient(135deg, #12031b 0%, #24073d 48%, #4b148e 100%);
}

.auth-panel,
.confirmation-panel {
  display: grid;
  width: min(760px, 100%);
  gap: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background:
    radial-gradient(circle at 88% 10%, rgba(249, 194, 46, 0.14), transparent 12rem),
    rgba(255, 255, 255, 0.1);
  box-shadow: 0 32px 90px rgba(12, 2, 20, 0.4);
  backdrop-filter: blur(18px);
}

.auth-brand {
  color: #fff;
  text-decoration: none;
}

.auth-panel h1,
.confirmation-panel h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
}

.auth-panel h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.35rem);
}

.auth-panel p:not(.eyebrow),
.confirmation-panel p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.auth-form {
  display: grid;
  gap: 1rem;
}

.auth-panel .form-group label {
  color: rgba(255, 255, 255, 0.9);
}

.auth-panel .form-control {
  min-height: 52px;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 32px rgba(12, 2, 20, 0.16);
}

.auth-panel .btn-primary-custom {
  width: 100%;
  margin-top: 0.35rem;
  border: 0;
}

.auth-error {
  margin: 0;
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: #fecaca;
  background: rgba(127, 29, 29, 0.24);
}

.confirmation-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.confirmation-summary div,
.next-steps {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
}

.confirmation-summary span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.confirmation-summary strong {
  display: block;
  margin-top: 0.3rem;
  color: #fff;
}

.next-steps h2 {
  margin: 0 0 0.8rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
}

.next-steps ol {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.confirmation-actions .btn-primary-custom,
.confirmation-actions .btn-secondary-custom {
  border: 0;
}

.public-intake {
  max-width: 1040px;
}

.intake-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100vh - 74px);
  color: #fff;
  background:
    radial-gradient(circle at 52% 12%, rgba(249, 194, 46, 0.18), transparent 14rem),
    radial-gradient(circle at 82% 30%, rgba(168, 85, 247, 0.28), transparent 25rem),
    radial-gradient(circle at 12% 78%, rgba(109, 40, 217, 0.22), transparent 22rem),
    linear-gradient(135deg, #12031b 0%, #24073d 46%, #4b148e 100%);
}

.intake-page::before,
.intake-page::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.intake-page::before {
  z-index: 0;
  opacity: 0.18;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(255, 255, 255, 0.28) 49% 50%, transparent 50% 100%) 50% 50% / 128px 128px,
    linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)) 0 38% / 100% 1px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)) 0 70% / 100% 1px no-repeat;
  mask-image: radial-gradient(circle at 50% 28%, #000 0 42%, transparent 78%);
}

.intake-page::after {
  z-index: 0;
  opacity: 0.24;
  background:
    linear-gradient(100deg, transparent 0 24%, rgba(249, 194, 46, 0.5) 42%, rgba(232, 121, 249, 0.38) 56%, transparent 72%) 50% 18% / 130% 3px no-repeat,
    linear-gradient(100deg, transparent 0 31%, rgba(168, 85, 247, 0.5) 54%, transparent 76%) 50% 47% / 140% 4px no-repeat;
}

.intake-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.intake-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(249, 194, 46, 0.74);
  box-shadow: 0 0 24px rgba(249, 194, 46, 0.75);
  animation: particleDrift 8s ease-in-out infinite alternate;
}

.intake-particles span:nth-child(1) { top: 15%; left: 14%; animation-delay: -1s; }
.intake-particles span:nth-child(2) { top: 33%; right: 18%; width: 4px; height: 4px; animation-delay: -4s; }
.intake-particles span:nth-child(3) { top: 54%; left: 8%; animation-delay: -2s; }
.intake-particles span:nth-child(4) { bottom: 24%; right: 11%; width: 8px; height: 8px; animation-delay: -5s; }
.intake-particles span:nth-child(5) { bottom: 15%; left: 28%; width: 4px; height: 4px; animation-delay: -3s; }
.intake-particles span:nth-child(6) { top: 72%; right: 31%; animation-delay: -6s; }

.intake-page .public-intake {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 6rem;
}

.intake-page .admin-heading {
  margin-inline: auto;
  text-align: center;
}

.intake-page .admin-heading .eyebrow {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(249, 194, 46, 0.24);
}

.intake-page .admin-heading h1 {
  color: #fff;
  text-shadow: 0 16px 46px rgba(20, 5, 31, 0.38);
}

.intake-page .admin-heading p:not(.eyebrow) {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.78);
}

.intake-page .admin-card {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background:
    radial-gradient(circle at 88% 10%, rgba(249, 194, 46, 0.18), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 249, 255, 0.9));
  box-shadow:
    0 32px 90px rgba(12, 2, 20, 0.42),
    0 0 0 1px rgba(249, 194, 46, 0.08);
  backdrop-filter: blur(18px);
}

.intake-page .form-grid {
  gap: 1.15rem;
}

.intake-page .form-section {
  border-color: rgba(249, 194, 46, 0.24);
  background:
    linear-gradient(90deg, rgba(91, 33, 182, 0.09), rgba(250, 204, 21, 0.14));
}

.intake-page .form-control,
.intake-page .form-select {
  background: rgba(255, 255, 255, 0.94);
}

.intake-page .btn-primary-custom {
  border: 0;
  box-shadow:
    0 18px 40px rgba(20, 5, 31, 0.18),
    0 0 0 1px rgba(201, 138, 8, 0.22);
}

.request-brief-form .form-group label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.request-brief-form .form-group label span {
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
  color: var(--purple-900);
  background: rgba(249, 194, 46, 0.22);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.request-brief-form small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.request-prompt-grid,
.optional-request-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.request-prompt-grid .form-group,
.optional-request-grid .form-group {
  grid-column: auto;
}

.request-more-details {
  border: 1px solid rgba(91, 33, 182, 0.12);
  border-radius: 8px;
  padding: 0;
  background: rgba(255, 255, 255, 0.58);
  overflow: hidden;
}

.request-more-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  color: var(--purple-950);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.request-more-details summary::-webkit-details-marker {
  display: none;
}

.request-more-details summary span {
  font-size: 1.05rem;
}

.request-more-details summary em {
  color: var(--muted);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 700;
}

.optional-request-grid {
  padding: 0 1rem 1rem;
}

.request-upload-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr);
  gap: 1rem;
}

.file-drop-label {
  display: grid;
  min-height: 132px;
  align-content: center;
  gap: 0.45rem;
  border: 1px dashed rgba(91, 33, 182, 0.28);
  border-radius: 8px;
  padding: 1rem;
  color: var(--purple-950);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.file-drop-label input {
  color: var(--muted);
  font-weight: 700;
}

.file-drop-label em {
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 700;
}

.request-screenshot-zone {
  color: var(--purple-950);
  background: rgba(255, 255, 255, 0.72);
}

.request-screenshot-zone span {
  color: var(--muted);
}

.request-screenshot-preview {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.72);
}

.admin-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.row-heading {
  display: flex;
  max-width: none;
  gap: 1rem;
  align-items: end;
  justify-content: space-between;
}

.admin-heading h1 {
  margin: 0;
  color: var(--purple-950);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.admin-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.admin-card,
.metric-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 8%, rgba(249, 194, 46, 0.1), transparent 9rem),
    linear-gradient(180deg, #fff, #fbf9ff);
  box-shadow: 0 14px 40px rgba(31, 8, 65, 0.08);
}

.admin-card {
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

.admin-card h2 {
  margin: 0 0 1rem;
  color: var(--purple-950);
  font-size: 1.35rem;
  font-weight: 800;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.metric-card {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem;
}

.metric-card span,
.table-heading span,
.activity-list span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.metric-card strong {
  color: var(--purple-950);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.filter-bar,
.detail-grid,
.workspace-grid,
.form-grid {
  display: grid;
  gap: 1rem;
}

.filter-bar {
  grid-template-columns: auto minmax(220px, 320px) auto;
  align-items: end;
  margin-bottom: 1rem;
}

.filter-bar label,
.form-group label {
  color: var(--purple-900);
  font-weight: 800;
}

.detail-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: start;
}

.workspace-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  margin-top: 1rem;
}

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

.full-span {
  grid-column: 1 / -1;
}

.form-group {
  display: grid;
  gap: 0.45rem;
}

.form-section {
  grid-column: 1 / -1;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.35rem;
  padding: 1rem;
  border: 1px solid rgba(91, 33, 182, 0.12);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(91, 33, 182, 0.08), rgba(250, 204, 21, 0.08));
}

.form-section:first-of-type {
  margin-top: 0;
}

.form-section div {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.form-section span {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: var(--purple-950);
  font-weight: 900;
}

.form-section h2 {
  margin: 0;
  color: var(--purple-950);
  font-size: 1.15rem;
  font-weight: 900;
}

.form-section p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.form-control,
.form-select {
  border-color: rgba(66, 17, 122, 0.18);
  border-radius: 8px;
  padding: 0.72rem 0.85rem;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(109, 40, 217, 0.5);
  box-shadow: 0 0 0 0.18rem rgba(109, 40, 217, 0.16);
}

.danger-form {
  margin-top: 0.8rem;
}

.danger-form .btn-danger-custom {
  width: 100%;
}

.request-files-panel {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.4rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(66, 17, 122, 0.12);
}

.request-files-panel h2 {
  margin-bottom: 0.2rem;
}

.request-file-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  border: 1px solid rgba(66, 17, 122, 0.12);
  border-radius: 8px;
  padding: 0.7rem;
  color: var(--purple-950);
  background: rgba(255, 255, 255, 0.68);
  text-decoration: none;
}

.request-file-card strong,
.request-file-card em {
  display: block;
}

.request-file-card em {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 700;
}

.file-thumb,
.file-icon {
  display: grid;
  width: 72px;
  height: 54px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(91, 33, 182, 0.09);
}

.file-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-icon {
  color: var(--purple-900);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.table {
  margin: 0;
}

.table th {
  color: var(--purple-900);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.table td {
  color: #3f3350;
  vertical-align: middle;
}

.table td strong,
.table td span {
  display: block;
}

.table a,
.detail-list a,
.table-heading a {
  color: var(--purple-600);
  font-weight: 800;
  text-decoration: none;
}

.table-heading {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.table-heading h2 {
  margin: 0;
}

.detail-list {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 0.75rem 1rem;
  margin: 0;
}

.detail-list dt {
  color: var(--muted);
  font-weight: 800;
}

.detail-list dd {
  margin: 0;
  color: #332347;
  overflow-wrap: anywhere;
}

.detail-long {
  white-space: pre-line;
}

.request-detail-section {
  padding-bottom: 1.35rem;
  margin-bottom: 1.35rem;
  border-bottom: 1px solid rgba(66, 17, 122, 0.1);
}

.request-detail-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.action-card,
.stacked-form,
.task-list,
.activity-list {
  display: grid;
  gap: 0.9rem;
}

.action-card form,
.status-form {
  display: grid;
  gap: 0.75rem;
}

.action-card .btn-primary-custom,
.action-card .btn-secondary-custom,
.stacked-form .btn-primary-custom {
  width: 100%;
  border: 0;
}

.btn-primary-custom:disabled,
.btn-secondary-custom:disabled,
.btn-primary-custom.is-disabled,
.btn-secondary-custom.is-disabled {
  cursor: not-allowed;
  opacity: 0.55;
  filter: grayscale(1);
  box-shadow: none;
  transform: none;
}

.task-row,
.activity-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.72);
}

.kanban-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 1rem;
  align-items: start;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.task-board {
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  margin-top: 1rem;
}

.kanban-column {
  display: grid;
  gap: 0.8rem;
  min-height: 260px;
  border-radius: 8px;
  padding: 1rem;
}

.kanban-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kanban-heading h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
}

.kanban-heading span {
  display: inline-grid;
  min-width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 999px;
  color: var(--purple-950);
  background: var(--gold);
  font-weight: 900;
}

.kanban-card,
.task-card {
  display: grid;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.kanban-card strong {
  color: #fff;
}

.kanban-card > span,
.kanban-meta,
.task-card p {
  color: rgba(255, 255, 255, 0.72);
}

.kanban-meta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.86rem;
  font-weight: 800;
}

.project-management-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 1rem;
  margin-top: 1rem;
}

.task-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.task-card-actions button {
  border: 1px solid rgba(249, 194, 46, 0.24);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  color: var(--purple-950);
  background: rgba(249, 194, 46, 0.9);
  font-size: 0.82rem;
  font-weight: 900;
}

.task-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
  gap: 1rem;
  align-items: start;
}

.task-row strong {
  color: var(--purple-950);
}

.task-row p,
.activity-list p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.admin-body .admin-shell {
  width: min(1680px, calc(100% - 1.5rem));
  padding-top: 3.5rem;
}

.admin-body .row-heading {
  max-width: none;
  align-items: center;
}

.admin-body .admin-heading {
  max-width: 980px;
  margin-bottom: 1.4rem;
}

.admin-body .admin-heading h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.admin-body .admin-heading p:not(.eyebrow) {
  max-width: 860px;
}

.compact-action {
  min-width: max-content;
  text-decoration: none;
}

.admin-body .kanban-board {
  scrollbar-color: rgba(249, 194, 46, 0.75) rgba(255, 255, 255, 0.08);
  gap: 1.25rem;
  width: 100%;
  padding: 0.25rem 0 1rem;
}

.admin-body .request-board,
.admin-body .project-board {
  grid-template-columns: repeat(4, minmax(320px, 1fr));
}

.admin-body .task-board {
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  margin-top: 1.25rem;
}

.admin-body .kanban-column {
  align-content: start;
  gap: 1rem;
  min-height: clamp(520px, calc(100vh - 360px), 760px);
  padding: 1.25rem;
}

.admin-body .task-board .kanban-column {
  min-height: clamp(430px, calc(100vh - 420px), 640px);
}

.admin-body .kanban-heading {
  gap: 0.75rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-body .kanban-heading h2 {
  font-size: 1.12rem;
}

.admin-body .kanban-heading span {
  min-width: 2.3rem;
  height: 2.3rem;
}

.admin-body .kanban-card,
.admin-body .task-card {
  gap: 0.75rem;
  border-color: rgba(255, 255, 255, 0.16);
  padding: 1.25rem;
  background:
    radial-gradient(circle at 92% 0%, rgba(249, 194, 46, 0.1), transparent 7rem),
    rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 26px rgba(12, 2, 20, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.admin-body .kanban-card:hover,
.admin-body .kanban-card:focus,
.admin-body .task-card:hover,
.admin-body .task-card:focus-within {
  border-color: rgba(249, 194, 46, 0.38);
  background:
    radial-gradient(circle at 92% 0%, rgba(249, 194, 46, 0.16), transparent 7rem),
    rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 34px rgba(12, 2, 20, 0.25);
  transform: translateY(-2px);
}

.admin-body .request-card strong,
.admin-body .task-card strong {
  font-size: 1.12rem;
  line-height: 1.25;
}

.admin-body .kanban-card > span {
  font-size: 1rem;
}

.admin-body .kanban-meta {
  gap: 0.75rem;
  font-size: 0.9rem;
}

.admin-body .empty-state {
  margin: 0;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.06);
}

.task-management-card {
  min-width: 0;
  grid-column: 1 / -1;
}

.project-workspace .admin-heading {
  max-width: none;
}

.project-board-focus {
  margin-bottom: 1.25rem;
  border-color: rgba(249, 194, 46, 0.24);
  background:
    radial-gradient(circle at 88% 6%, rgba(249, 194, 46, 0.18), transparent 13rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
}

.project-board-focus .task-board {
  grid-template-columns: repeat(3, minmax(320px, 1fr));
}

.project-board-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.project-board-toolbar h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.project-board-toolbar span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  line-height: 1.5;
}

.project-board-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.project-board-stats div {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
}

.project-board-stats strong,
.project-board-stats span {
  display: block;
}

.project-board-stats strong {
  color: var(--gold);
  font-size: 1.55rem;
  line-height: 1;
}

.project-board-stats span {
  margin-top: 0.28rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-board {
  align-items: stretch;
}

.admin-body .ticket-board .ticket-column {
  grid-template-rows: auto minmax(0, 1fr);
  height: clamp(560px, calc(100vh - 410px), 820px);
  min-height: 0;
  overflow: hidden;
}

.kanban-items {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-height: 0;
  overflow-y: auto;
  padding-right: 0.35rem;
  scrollbar-color: rgba(249, 194, 46, 0.75) rgba(255, 255, 255, 0.08);
}

.ticket-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}

.ticket-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.ticket-card-top span,
.ticket-card-top em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
}

.ticket-card-top span {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.ticket-card-top em {
  color: var(--purple-950);
  background: rgba(249, 194, 46, 0.94);
}

.ticket-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(10, 1, 18, 0.36);
}

.ticket-card .btn-secondary-custom {
  width: 100%;
}

.project-support-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(260px, 0.65fr) minmax(320px, 1fr);
  gap: 1rem;
  align-items: start;
}

.project-workspace-card em {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  color: var(--purple-950);
  background: rgba(249, 194, 46, 0.9);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
}

.task-create-form {
  grid-template-columns: minmax(220px, 0.8fr) minmax(340px, 1.4fr) minmax(180px, auto);
  align-items: start;
  margin-bottom: 1rem;
}

.task-card {
  border: 0;
  text-align: left;
}

.task-card .form-select {
  min-height: 42px;
}

.task-card .btn-secondary-custom {
  min-height: 40px;
  border: 0;
  font-size: 0.86rem;
}

.task-dialog {
  width: min(760px, calc(100vw - 2rem));
  max-height: min(860px, calc(100vh - 2rem));
  border: 1px solid rgba(249, 194, 46, 0.22);
  border-radius: 8px;
  padding: 0;
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(249, 194, 46, 0.16), transparent 14rem),
    linear-gradient(145deg, rgba(58, 28, 82, 0.98), rgba(22, 2, 36, 0.98));
  box-shadow: 0 24px 70px rgba(7, 1, 14, 0.62);
  overflow: auto;
}

.task-dialog::backdrop {
  background: rgba(7, 1, 13, 0.72);
  backdrop-filter: blur(5px);
}

.task-dialog-panel {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: clamp(1rem, 3vw, 1.6rem);
}

.dialog-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.dialog-heading h2 {
  margin: 0.2rem 0 0;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.1;
}

.dialog-close {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.5rem;
  line-height: 1;
}

.task-dialog label {
  display: grid;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.screenshot-tool {
  display: grid;
  gap: 0.75rem;
}

.screenshot-paste-zone {
  display: grid;
  gap: 0.25rem;
  min-height: 98px;
  align-content: center;
  border: 1px dashed rgba(249, 194, 46, 0.42);
  border-radius: 8px;
  padding: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  cursor: text;
  outline: none;
}

.screenshot-paste-zone:focus,
.screenshot-paste-zone.has-screenshot {
  border-color: rgba(249, 194, 46, 0.9);
  box-shadow: 0 0 0 3px rgba(249, 194, 46, 0.14);
}

.screenshot-paste-zone span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.intake-page .request-screenshot-zone {
  min-height: 132px;
  border-color: rgba(91, 33, 182, 0.28);
  color: var(--purple-950);
  background: rgba(255, 255, 255, 0.78);
}

.intake-page .request-screenshot-zone strong {
  color: var(--purple-950);
  font-weight: 900;
}

.intake-page .request-screenshot-zone span {
  color: var(--muted);
}

.intake-page .request-screenshot-zone:focus,
.intake-page .request-screenshot-zone.has-screenshot {
  border-color: rgba(109, 40, 217, 0.55);
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.14);
}

.task-screenshot-preview {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(8, 1, 14, 0.4);
}

.screenshot-remove {
  display: flex !important;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 0.55rem !important;
  color: rgba(255, 255, 255, 0.8);
}

.screenshot-remove input {
  width: 18px;
  height: 18px;
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.activity-list form {
  margin-bottom: 0.3rem;
}

.admin-body .activity-list div {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.admin-card table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 8px;
}

.admin-card table th,
.admin-card table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
}

.admin-card table tr:last-child td {
  border-bottom: 0;
}

.admin-body .admin-card table {
  color: #fff;
  background: rgba(20, 5, 31, 0.24);
}

.admin-body .admin-card table th,
.admin-body .admin-card table td {
  border-color: rgba(255, 255, 255, 0.12);
}

.admin-body .admin-card table th {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.admin-body .admin-card table a {
  color: #f6d66d;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .admin-body .nav-shell {
    min-height: auto;
    align-items: center;
    flex-direction: column;
    gap: 0.75rem;
  }

  .admin-body .nav-links {
    justify-content: center;
  }

  .admin-body .nav-links a {
    min-height: 38px;
    padding: 0.55rem 0.72rem;
  }
}

.status-badge,
.project-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.status-badge {
  padding: 0.45rem 0.7rem;
  color: var(--purple-950);
  background: rgba(249, 194, 46, 0.22);
}

.project-pill {
  margin: 0.2rem 0.25rem 0.2rem 0;
  padding: 0.35rem 0.6rem;
  color: var(--purple-800);
  background: rgba(109, 40, 217, 0.1);
}

.empty-state {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 4.8rem 0 4.5rem;
  }

  .hero-copy h1 {
    font-size: 3.4rem;
  }

  .hero-logo-panel {
    width: min(980px, 94vw);
  }

  .hero-actions {
    width: min(980px, 94vw);
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .mission-band .container {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.2rem;
    text-align: center;
  }

  .mission-label {
    justify-items: center;
  }

  .hero-grid,
  .interior-hero-grid,
  .section-heading,
  .service-heading,
  .solutions-preview-heading,
  .service-area-grid,
  .showcase-grid,
  .church-grid,
  .contact-panel,
  .example-hero-gallery,
  .example-showcase-grid,
  .example-showcase-grid.reversed,
  .example-grid,
  .workflow-example-grid,
  .bundle-grid,
  .pricing-grid,
  .payment-option-grid,
  .faq-grid,
  .detail-grid,
  .detail-grid.two-up,
  .detail-grid.three-up,
  .split-feature,
  .values-layout,
  .workspace-grid,
  .project-management-grid,
  .process-intro {
    grid-template-columns: 1fr;
  }

  .example-showcase-grid.reversed .example-context {
    order: 0;
  }

  .gallery-tile.large {
    grid-row: auto;
    min-height: 240px;
  }

  .demo-page,
  .dashboard-page {
    min-height: auto;
  }

  .request-prompt-grid,
  .optional-request-grid,
  .request-upload-panel {
    grid-template-columns: 1fr;
  }

  .request-more-details summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .showcase-media {
    min-height: 360px;
  }

  .solutions-preview-grid {
    grid-template-columns: 1fr;
  }

  .solution-example-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  }

  .service-media {
    min-height: 280px;
  }

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

  .process-intro > p {
    margin-top: 0;
  }

  .row-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-body .row-heading {
    align-items: flex-start;
  }

  .project-support-grid {
    grid-template-columns: 1fr;
  }

  .task-create-form {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .church-grid h2,
  .contact-panel h2 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }
}

@media (max-width: 720px) {
  .nav-shell {
    min-height: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 0.75rem;
  }

  .brand-mark {
    justify-content: center;
  }

  .brand-mark span:last-child {
    font-size: 1rem;
  }

  .nav-links {
    justify-content: center;
  }

  .nav-links a {
    min-height: 38px;
    padding: 0.55rem 0.72rem;
    font-size: 0.88rem;
  }

  .nav-logo {
    width: 46px;
    height: 46px;
  }

  .hero-copy h1 {
    font-size: 2.8rem;
  }

  .hero-logo-panel {
    width: min(740px, 95vw);
    margin-bottom: 0.85rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .mission-band {
    padding: 3.8rem 0;
  }

  .mission-band .mission-copy {
    font-size: clamp(1.15rem, 5.8vw, 1.55rem);
    line-height: 1.28;
  }

  .hero-cross-shell {
    width: min(275px, 72vw);
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
    transform: none;
  }

  .hero-feature-row {
    display: grid;
    width: 100%;
  }

  .hero-feature {
    justify-content: center;
  }

  .section-block,
  .interior-hero,
  .content-band,
  .page-cta,
  .solutions-preview-section,
  .service-area-section,
  .showcase-section,
  .church-section,
  .contact-section,
  .intake-page .public-intake {
    padding: 4.5rem 0;
  }

  .service-grid,
  .solutions-preview-grid,
  .county-panel,
  .preview-card-row,
  .preview-dashboard,
  .demo-hero,
  .ministry-hero,
  .demo-card-row,
  .program-grid,
  .visit-strip,
  .church-content-grid,
  .demo-proof-row,
  .metric-row,
  .dashboard-board,
  .dashboard-page,
  .possibility-list article,
  .payment-steps article,
  .process-grid,
  .church-list,
  .impact-list,
  .service-list,
  .metric-grid,
  .filter-bar,
  .form-grid,
  .task-row {
    grid-template-columns: 1fr;
  }

  .solutions-preview-heading {
    gap: 0.8rem;
  }

  .solutions-preview-heading h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .solution-example-card {
    display: block;
  }

  .detail-list {
    grid-template-columns: 1fr;
  }

  .confirmation-summary {
    grid-template-columns: 1fr;
  }

  .form-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .showcase-media,
  .service-media {
    min-height: 240px;
  }

  .site-footer .container {
    display: grid;
  }

  .interior-hero-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .interior-media {
    height: 260px;
  }

  .page-cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-body .request-board,
  .admin-body .project-board,
  .admin-body .task-board {
    grid-template-columns: repeat(3, minmax(300px, 86vw));
  }

  .project-board-focus .task-board {
    grid-template-columns: repeat(3, minmax(300px, 86vw));
  }

  .project-board-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .admin-body .admin-shell {
    width: min(100% - 1rem, 1680px);
    padding: 2.6rem 0 4rem;
  }

  .admin-body .admin-heading h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .admin-body .kanban-column {
    min-height: 520px;
  }

  .admin-body .task-board .kanban-column {
    min-height: 430px;
  }

  .admin-body .ticket-board .ticket-column {
    height: 520px;
  }

  .dialog-actions {
    display: grid;
  }

  .dialog-actions .btn-primary-custom,
  .dialog-actions .btn-secondary-custom {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-section::before,
  .hero-particles span,
  .intake-particles span,
  .hero-cross-shell::before,
  .hero-cta {
    animation: none;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
