/*
  OurChurchIT Phase 1 — modern high-tech redesign
  Shared visual system for the product page and fictional demo church.
*/

:root {
  --ink-1000: #02040b;
  --ink-950: #050814;
  --ink-900: #080d1c;
  --ink-850: #0c1327;
  --ink-800: #101a32;
  --ink-700: #1b2947;
  --paper: #f7f8fc;
  --paper-2: #eef2f8;
  --white: #ffffff;
  --text: #edf4ff;
  --text-muted: #a5b2c9;
  --dark-text: #0d1730;
  --dark-muted: #667189;
  --cyan: #55e9ff;
  --cyan-2: #16c7e0;
  --violet: #7b61ff;
  --purple: #6247ee;
  --magenta: #e06bff;
  --coral: #ff7c68;
  --mint: #68efc0;
  --line: rgba(255, 255, 255, 0.105);
  --line-dark: rgba(13, 24, 48, 0.11);
  --glass: rgba(10, 16, 34, 0.72);
  --glass-strong: rgba(9, 14, 30, 0.92);
  --shadow-xl: 0 36px 100px rgba(0, 0, 0, 0.42);
  --shadow-lg: 0 25px 70px rgba(9, 19, 45, 0.22);
  --shadow-md: 0 16px 42px rgba(9, 19, 45, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 13px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
  overflow-x: clip;
  background: var(--ink-950);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  font-family: "Segoe UI Variable", "Aptos", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection,
body *::selection {
  color: #031018;
  background: var(--cyan);
}

a {
  text-decoration: none;
}

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

button,
input {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(85, 233, 255, .55);
  outline-offset: 3px;
}

::-webkit-scrollbar {
  width: 11px;
}

::-webkit-scrollbar-track {
  background: var(--ink-950);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--ink-950);
  border-radius: 999px;
  background: linear-gradient(var(--cyan), var(--violet));
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1200;
  width: 0;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--magenta));
  box-shadow: 0 0 18px rgba(85, 233, 255, .8);
}

.reveal.will-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

.reveal-delay-1.will-reveal {
  transition-delay: .1s;
}

.reveal-delay-2.will-reveal {
  transition-delay: .2s;
}

.reveal.will-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Shared brands, navigation and buttons -------------------------------- */

.brand-lockup,
.church-brand {
  display: inline-flex;
  align-items: center;
  gap: .68rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: -.035em;
}

.brand-lockup:hover,
.brand-lockup:focus,
.church-brand:hover,
.church-brand:focus {
  color: #fff;
}

.brand-lockup > span:last-child {
  font-size: 1.04rem;
}

.brand-lockup > span:last-child > span {
  color: var(--cyan);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(85, 233, 255, .95), rgba(98, 71, 238, .98) 54%, rgba(224, 107, 255, .96));
  box-shadow: 0 12px 28px rgba(98, 71, 238, .32), inset 0 1px rgba(255, 255, 255, .38);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.product-nav,
.church-nav {
  padding: 16px 0;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(3, 6, 16, .82), rgba(3, 6, 16, 0));
  transition: padding .28s var(--ease), background .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}

.product-nav.is-scrolled,
.church-nav.is-scrolled {
  padding: 10px 0;
  border-color: rgba(255, 255, 255, .08);
  background: rgba(5, 8, 20, .86);
  box-shadow: 0 16px 46px rgba(0, 0, 0, .2);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
}

.product-nav .nav-link,
.church-nav .nav-link {
  position: relative;
  padding: .62rem .78rem !important;
  color: rgba(238, 245, 255, .72) !important;
  font-size: .84rem;
  font-weight: 650;
  transition: color .2s ease;
}

.product-nav .nav-link::after,
.church-nav .nav-link::after {
  position: absolute;
  right: .75rem;
  bottom: .42rem;
  left: .75rem;
  height: 1px;
  content: "";
  opacity: 0;
  transform: scaleX(.2);
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transition: opacity .2s ease, transform .2s ease;
}

.product-nav .nav-link:hover,
.product-nav .nav-link:focus,
.church-nav .nav-link:hover,
.church-nav .nav-link:focus {
  color: #fff !important;
}

.product-nav .nav-link:hover::after,
.product-nav .nav-link:focus::after,
.church-nav .nav-link:hover::after,
.church-nav .nav-link:focus::after {
  opacity: 1;
  transform: scaleX(1);
}

.navbar-toggler {
  color: #fff !important;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border-radius: 999px;
  font-weight: 760;
  letter-spacing: -.01em;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s ease, background .22s ease, color .22s ease;
}

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

.btn-nav,
.btn-church-nav {
  min-height: 40px;
  padding: .58rem 1rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .09);
  box-shadow: inset 0 1px rgba(255, 255, 255, .12);
}

.btn-nav:hover,
.btn-nav:focus,
.btn-church-nav:hover,
.btn-church-nav:focus {
  color: #05101a;
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 12px 32px rgba(85, 233, 255, .28);
}

.btn-glow {
  padding-inline: 1.35rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .16);
  background: linear-gradient(120deg, var(--violet), #6751f8 52%, #2fcfe9);
  box-shadow: 0 14px 38px rgba(98, 71, 238, .34), inset 0 1px rgba(255, 255, 255, .34);
}

.btn-glow:hover,
.btn-glow:focus {
  color: #fff;
  box-shadow: 0 20px 52px rgba(98, 71, 238, .45), 0 0 0 6px rgba(85, 233, 255, .08);
}

.btn-ghost-light {
  padding-inline: 1.3rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(12px);
}

.btn-ghost-light:hover,
.btn-ghost-light:focus {
  color: #fff;
  border-color: rgba(85, 233, 255, .55);
  background: rgba(85, 233, 255, .09);
}

.btn-church-light,
.btn-light {
  padding-inline: 1.3rem;
  color: #10182b;
  border: 1px solid #fff;
  background: #fff;
  box-shadow: 0 13px 38px rgba(0, 0, 0, .2);
}

.btn-church-light:hover,
.btn-church-light:focus,
.btn-light:hover,
.btn-light:focus {
  color: #10182b;
  background: #f4f7ff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .26);
}

/* Product website ------------------------------------------------------- */

.product-site {
  color: var(--dark-text);
  background: var(--paper);
}

.product-hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 22%, rgba(92, 69, 247, .26), transparent 31%),
    radial-gradient(circle at 25% 30%, rgba(36, 203, 228, .10), transparent 28%),
    linear-gradient(145deg, #050814 0%, #080d1c 58%, #050814 100%);
}

.product-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 190px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(2, 4, 11, .92));
}

.hero-grid,
.ai-grid,
.cta-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-image:
    linear-gradient(rgba(111, 139, 190, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 139, 190, .09) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 86%);
}

.hero-grid::after,
.cta-grid::after {
  position: absolute;
  inset: 0;
  content: "";
  background: url("network-grid.svg") center / cover no-repeat;
  opacity: .5;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb::after {
  position: absolute;
  inset: 15%;
  content: "";
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: inherit;
}

.hero-orb-one {
  top: 90px;
  right: -260px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(123, 97, 255, .15);
  box-shadow: inset 0 0 120px rgba(123, 97, 255, .06);
}

.hero-orb-two {
  bottom: -360px;
  left: -250px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(85, 233, 255, .12);
}

.hero-container {
  position: relative;
  z-index: 2;
  padding-top: 175px;
  padding-bottom: 155px;
}

.eyebrow-pill,
.ai-church-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .46rem .76rem;
  color: #dce9fb;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  box-shadow: inset 0 1px rgba(255, 255, 255, .06);
  backdrop-filter: blur(14px);
  font-size: .73rem;
  font-weight: 760;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(104, 239, 192, .1), 0 0 16px rgba(104, 239, 192, .72);
}

.hero-title {
  max-width: 690px;
  margin: 1.2rem 0 1.15rem;
  font-size: clamp(4rem, 6.3vw, 6.9rem);
  font-weight: 730;
  letter-spacing: -.073em;
  line-height: .92;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(95deg, #fff 0%, #83f2ff 35%, #8e72ff 74%, #e58aff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 640px;
  margin: 0 0 1.8rem;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.76;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.65rem;
}

.proof-stack {
  display: flex;
  align-items: center;
}

.proof-stack span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-left: -8px;
  color: #fff;
  border: 2px solid #081023;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-2), var(--violet));
  font-size: .55rem;
  font-weight: 850;
}

.proof-stack span:first-child {
  margin-left: 0;
}

.proof-stack span:nth-child(2) {
  background: linear-gradient(135deg, var(--violet), var(--magenta));
}

.proof-stack span:nth-child(3) {
  background: linear-gradient(135deg, #1d355d, #2c76c4);
}

.proof-stack span:nth-child(4) {
  background: linear-gradient(135deg, #ef6a78, #ffbd73);
}

.hero-proof strong,
.hero-proof small {
  display: block;
}

.hero-proof strong {
  color: #fff;
  font-size: .8rem;
}

.hero-proof small {
  margin-top: .14rem;
  color: #8494af;
  font-size: .68rem;
}

.hero-console-wrap {
  position: relative;
  min-height: 530px;
  perspective: 1200px;
}

.hero-console {
  position: absolute;
  top: 8px;
  right: -34px;
  left: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 26px;
  background: rgba(8, 13, 29, .9);
  box-shadow: 0 50px 120px rgba(0, 0, 0, .52), 0 0 0 1px rgba(85, 233, 255, .025), inset 0 1px rgba(255, 255, 255, .08);
  transform: rotateY(-4deg) rotateX(1deg);
  transform-origin: left center;
  backdrop-filter: blur(20px);
}

.console-bar {
  display: flex;
  height: 46px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  color: #8795ae;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  background: rgba(255, 255, 255, .025);
  font-size: .62rem;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots span,
.demo-browser-bar > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6f68;
}

.window-dots span:nth-child(2),
.demo-browser-bar > span:nth-child(2) {
  background: #ffd166;
}

.window-dots span:nth-child(3),
.demo-browser-bar > span:nth-child(3) {
  background: var(--mint);
}

.console-domain {
  display: flex;
  align-items: center;
  gap: .38rem;
}

.console-domain i {
  color: var(--cyan);
}

.console-live {
  display: flex;
  align-items: center;
  gap: .38rem;
  color: #cbe8dd;
}

.console-live span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(104, 239, 192, .8);
}

.console-layout {
  display: grid;
  min-height: 430px;
  grid-template-columns: 58px 1fr;
}

.console-side {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  padding: 14px 8px;
  border-right: 1px solid rgba(255, 255, 255, .07);
  background: rgba(255, 255, 255, .018);
}

.console-side a,
.mini-logo {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #7787a3;
  border-radius: 10px;
}

.mini-logo {
  margin-bottom: 5px;
  color: #fff;
  background: linear-gradient(135deg, var(--cyan-2), var(--violet));
  font-weight: 850;
}

.console-side a.active,
.console-side a:hover {
  color: #fff;
  background: rgba(123, 97, 255, .19);
}

.console-main {
  min-width: 0;
  padding: 22px;
}

.console-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.console-heading small,
.console-heading h3 {
  display: block;
}

.console-heading small {
  color: #6f7f9b;
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.console-heading h3 {
  margin: .15rem 0 0;
  color: #fff;
  font-size: 1.28rem;
  letter-spacing: -.04em;
}

.console-heading button,
.media-overlay button {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #dbe7fa;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 11px;
  background: rgba(255, 255, 255, .045);
}

.console-heading button span {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
}

.console-media {
  position: relative;
  height: 205px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 17px;
  background: #111a2b;
}

.media-image {
  position: absolute;
  inset: 0;
  background: url("church-worship.webp") center 48% / cover no-repeat;
  transform: scale(1.02);
}

.console-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 25%, rgba(4, 8, 18, .92));
}

.media-overlay {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 13px;
  left: 15px;
  display: grid;
  align-items: end;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
}

.live-badge {
  position: absolute;
  top: -135px;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .32rem .54rem;
  color: #fff;
  border-radius: 999px;
  background: rgba(255, 70, 87, .92);
  font-size: .53rem;
  font-weight: 850;
  letter-spacing: .06em;
}

.media-overlay div small,
.media-overlay div strong {
  display: block;
}

.media-overlay div small {
  color: #9dadc3;
  font-size: .58rem;
}

.media-overlay div strong {
  margin-top: .12rem;
  color: #fff;
  font-size: .92rem;
}

.media-overlay button {
  width: 34px;
  height: 34px;
  color: #10182a;
  border: 0;
  border-radius: 50%;
  background: #fff;
}

.metric-grid {
  display: grid;
  margin-top: 12px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.metric-card {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 10px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 14px;
  background: rgba(255, 255, 255, .035);
}

.metric-card.wide {
  grid-column: 1 / -1;
  justify-content: space-between;
}

.metric-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  color: #fff;
  border-radius: 10px;
}

.metric-icon.purple {
  background: rgba(123, 97, 255, .25);
}

.metric-icon.cyan {
  color: var(--cyan);
  background: rgba(85, 233, 255, .12);
}

.metric-card small,
.metric-card strong,
.metric-card em {
  display: block;
}

.metric-card small {
  color: #7d8ca7;
  font-size: .55rem;
}

.metric-card strong {
  margin-top: .05rem;
  color: #fff;
  font-size: 1.05rem;
}

.metric-card em {
  color: var(--mint);
  font-size: .5rem;
  font-style: normal;
}

.sparkline {
  display: flex;
  height: 42px;
  align-items: end;
  gap: 4px;
}

.sparkline i {
  width: 5px;
  height: 26%;
  border-radius: 999px;
  background: linear-gradient(var(--cyan), var(--violet));
}

.sparkline i:nth-child(2) { height: 40%; }
.sparkline i:nth-child(3) { height: 35%; }
.sparkline i:nth-child(4) { height: 64%; }
.sparkline i:nth-child(5) { height: 54%; }
.sparkline i:nth-child(6) { height: 82%; }
.sparkline i:nth-child(7) { height: 100%; }

.glass-card {
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(12, 20, 42, .76);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .38), inset 0 1px rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px) saturate(145%);
}

.floating-ai-card {
  position: absolute;
  z-index: 5;
  right: -54px;
  bottom: 34px;
  display: flex;
  width: 315px;
  gap: 11px;
  padding: 14px;
  border-radius: 17px;
}

.ai-avatar {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: #fff;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--cyan), var(--violet) 62%, var(--magenta));
  box-shadow: 0 10px 24px rgba(98, 71, 238, .3);
}

.floating-ai-card small,
.floating-ai-card p,
.floating-ai-card span,
.floating-sync strong,
.floating-sync small {
  display: block;
}

.floating-ai-card small {
  color: var(--cyan);
  font-size: .57rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.floating-ai-card p {
  margin: .18rem 0 .3rem;
  color: #fff;
  font-size: .75rem;
  line-height: 1.45;
}

.floating-ai-card span {
  color: #8291aa;
  font-size: .52rem;
}

.floating-ai-card span i {
  color: var(--mint);
}

.floating-sync {
  position: absolute;
  z-index: 5;
  bottom: -22px;
  left: -16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 15px;
}

.floating-sync > i {
  color: var(--cyan);
  font-size: 1.2rem;
}

.floating-sync strong {
  color: #fff;
  font-size: .68rem;
}

.floating-sync small {
  color: #8291aa;
  font-size: .51rem;
}

.hero-metrics {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 31px;
  left: 0;
  display: grid;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  grid-template-columns: .7fr .8fr 1fr 2fr;
  gap: 20px;
}

.hero-metric {
  display: flex;
  align-items: baseline;
  gap: .45rem;
}

.hero-metric strong {
  color: #fff;
  font-size: 1.35rem;
  letter-spacing: -.04em;
}

.hero-metric span {
  color: #8b9bb5;
  font-size: .67rem;
}

.hero-metric-note {
  align-items: center;
  justify-content: flex-end;
}

.hero-metric-note i {
  color: var(--mint);
}

.logo-cloud-section {
  position: relative;
  z-index: 5;
  padding: 24px 0 30px;
  color: var(--dark-muted);
  border-bottom: 1px solid var(--line-dark);
  background: #fff;
}

.logo-cloud-section p {
  margin: 0 0 1rem;
  color: #9aa3b3;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
}

.logo-cloud {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-cloud span {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  color: #71809a;
  font-size: .72rem;
  font-weight: 700;
}

.logo-cloud i {
  color: #495a77;
}

.section-space {
  padding: 126px 0;
}

.platform-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(85, 233, 255, .07), transparent 26%),
    radial-gradient(circle at 88% 54%, rgba(123, 97, 255, .08), transparent 26%),
    var(--paper);
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 64px;
}

.section-kicker,
.church-kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #5c4cf1;
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.section-kicker::before,
.church-kicker::before {
  width: 24px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-heading h2,
.section-title {
  margin: .85rem 0 1rem;
  color: var(--dark-text);
  font-size: clamp(3.2rem, 5.2vw, 5.6rem);
  font-weight: 720;
  letter-spacing: -.065em;
  line-height: .96;
}

.section-heading h2 span {
  color: transparent;
  background: linear-gradient(95deg, #6351f0, #8791ff 48%, #5fdaea);
  -webkit-background-clip: text;
  background-clip: text;
}

.section-heading p,
.section-lead {
  max-width: 670px;
  margin: 0 auto;
  color: var(--dark-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section-title {
  font-size: clamp(3rem, 4.6vw, 5rem);
}

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

.bento-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(15, 28, 55, .09);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .85);
  box-shadow: 0 18px 55px rgba(18, 35, 70, .08), inset 0 1px rgba(255, 255, 255, .8);
  isolation: isolate;
}

.bento-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at 80% 20%, rgba(85, 233, 255, .15), transparent 35%);
  transition: opacity .35s ease;
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(18, 35, 70, .13);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.bento-ai { grid-column: span 7; color: #fff; background: linear-gradient(145deg, #090f22, #0c1530); }
.bento-bilingual { grid-column: span 5; }
.bento-web { grid-column: span 5; min-height: 390px; color: #fff; }
.bento-content { grid-column: span 7; }
.bento-analytics { grid-column: span 7; }
.bento-support { grid-column: span 5; min-height: 390px; color: #fff; }

.bento-copy {
  position: relative;
  z-index: 3;
  max-width: 55%;
}

.bento-bilingual > small,
.bento-bilingual > h3,
.bento-bilingual > p {
  position: relative;
  z-index: 2;
}

.feature-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  margin-bottom: 1.15rem;
  color: #6552f2;
  border: 1px solid rgba(98, 71, 238, .12);
  border-radius: 13px;
  background: rgba(98, 71, 238, .075);
}

.feature-icon.light {
  color: #fff;
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
}

.feature-icon.small {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  margin: 0;
  border-radius: 11px;
}

.bento-card small {
  display: block;
  margin-bottom: .45rem;
  color: #6a55ee;
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.bento-ai small,
.bento-web small,
.bento-support small {
  color: var(--cyan);
}

.bento-card h3 {
  margin: 0 0 .85rem;
  font-size: clamp(2rem, 2.6vw, 3rem);
  font-weight: 710;
  letter-spacing: -.055em;
  line-height: 1;
}

.bento-card p {
  margin: 0;
  color: var(--dark-muted);
  font-size: .88rem;
  line-height: 1.65;
}

.bento-ai p,
.bento-web p,
.bento-support p {
  color: #aab8ce;
}

.bento-card a {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  margin-top: 1.2rem;
  color: inherit;
  font-size: .75rem;
  font-weight: 800;
}

.orbital-ai {
  position: absolute;
  right: 8%;
  bottom: 25px;
  width: 270px;
  height: 270px;
}

.orbital-ring {
  position: absolute;
  border: 1px solid rgba(110, 204, 255, .24);
  border-radius: 50%;
  animation: orbit-spin 18s linear infinite;
}

.ring-one { inset: 24px; }
.ring-two { inset: 58px; animation-direction: reverse; animation-duration: 12s; }

.orbital-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #b6a7ff, #765bf2 52%, #3e2db9);
  box-shadow: 0 0 0 16px rgba(123, 97, 255, .08), 0 0 65px rgba(105, 79, 255, .55);
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
}

.orbit-chip {
  position: absolute;
  padding: .42rem .62rem;
  color: #e5ecfb;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  background: rgba(12, 20, 42, .86);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
  font-size: .53rem;
  font-weight: 800;
}

.chip-one { top: 35px; right: 0; }
.chip-two { right: 8px; bottom: 35px; }
.chip-three { bottom: 20px; left: -3px; }

.bento-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.secure-tag {
  display: inline-flex !important;
  padding: .38rem .58rem;
  color: #288966 !important;
  border: 1px solid rgba(37, 182, 130, .15);
  border-radius: 999px;
  background: rgba(104, 239, 192, .12);
  font-size: .5rem !important;
  letter-spacing: .04em !important;
  text-transform: none !important;
}

.language-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(16, 30, 60, .1);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(20, 38, 74, .09);
  grid-template-columns: 1fr 38px 1fr;
}

.language-card > div {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: .6rem;
  padding: 15px;
}

.language-card > div > span {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: #111a30;
  font-size: .55rem;
  font-weight: 850;
}

.language-card > div:last-child > span {
  background: var(--violet);
}

.language-card p {
  overflow: hidden;
  color: #25304a;
  font-size: .65rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-arrow {
  justify-content: center !important;
  padding: 0 !important;
  color: #8c97aa;
  border-right: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.photo-card-bg,
.support-photo {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition: transform .8s var(--ease);
}

.photo-card-bg {
  background-image: url("worship-close.webp");
}

.support-photo {
  background-image: url("church-tech.webp");
}

.bento-web:hover .photo-card-bg,
.bento-support:hover .support-photo {
  transform: scale(1.04);
}

.photo-card-shade,
.bento-support::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, rgba(4, 7, 16, .18), rgba(4, 7, 16, .92));
}

.bento-photo-copy,
.support-copy {
  position: absolute;
  z-index: 2;
  right: 27px;
  bottom: 27px;
  left: 27px;
}

.bento-photo-copy h3,
.support-copy h3 {
  max-width: 470px;
}

.bento-content .bento-copy,
.bento-analytics .bento-copy {
  max-width: 52%;
}

.content-flow {
  position: absolute;
  right: 28px;
  bottom: 30px;
  display: grid;
  width: 39%;
  min-width: 260px;
  gap: 14px;
}

.flow-source {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: 12px;
  color: #fff;
  border-radius: 13px;
  background: #0a1021;
  box-shadow: var(--shadow-md);
  font-size: .68rem;
  font-weight: 780;
}

.flow-source i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--cyan);
  border-radius: 9px;
  background: rgba(85, 233, 255, .1);
}

.flow-line {
  display: flex;
  height: 18px;
  justify-content: space-around;
}

.flow-line i {
  width: 1px;
  height: 100%;
  background: linear-gradient(var(--violet), rgba(123, 97, 255, .1));
}

.flow-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.flow-results span {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: 9px;
  color: #516079;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  background: #fff;
  font-size: .55rem;
  font-weight: 750;
}

.flow-results i {
  color: var(--violet);
}

.analytics-panel {
  position: absolute;
  right: 25px;
  bottom: 27px;
  width: 42%;
  min-width: 270px;
  padding: 17px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-md);
}

.analytics-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 13px;
  color: #18233b;
  font-size: .58rem;
  font-weight: 800;
}

.analytics-header em {
  color: #8a95a8;
  font-style: normal;
  font-weight: 650;
}

.bar-row {
  display: grid;
  align-items: center;
  margin-top: 9px;
  color: #68758d;
  grid-template-columns: 82px 1fr 22px;
  gap: 7px;
  font-size: .5rem;
}

.bar-row i {
  position: relative;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf0f6;
}

.bar-row i::after {
  display: block;
  width: var(--bar);
  height: 100%;
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), var(--cyan-2));
}

.bar-row b {
  color: #33405b;
  font-weight: 800;
}

.support-copy {
  max-width: 82%;
}

.response-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1.15rem;
  padding: .48rem .7rem;
  color: #dbe8f7;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  background: rgba(4, 8, 18, .5);
  backdrop-filter: blur(12px);
  font-size: .55rem;
  font-weight: 780;
}

.command-section {
  background: #fff;
}

.command-visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #cdd5df;
  box-shadow: var(--shadow-lg);
}

.command-photo {
  position: absolute;
  inset: 0;
  background: url("team-collaboration.webp") center / cover no-repeat;
}

.command-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 9, 20, .02), rgba(4, 9, 20, .32));
}

.command-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 16px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 45px rgba(16, 28, 52, .2);
  backdrop-filter: blur(16px);
}

.command-card-top {
  top: 40px;
  right: 25px;
}

.command-card-bottom {
  bottom: 28px;
  left: 28px;
}

.command-card strong,
.command-card small {
  display: block;
}

.command-card strong {
  color: #15203a;
  font-size: .67rem;
}

.command-card small {
  margin-top: .12rem;
  color: #748198;
  font-size: .54rem;
}

.mini-wave {
  display: flex;
  width: 39px;
  height: 32px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #fff;
  border-radius: 10px;
  background: #0a1022;
}

.mini-wave i {
  width: 2px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
}

.mini-wave i:nth-child(2) { height: 18px; }
.mini-wave i:nth-child(3) { height: 24px; }
.mini-wave i:nth-child(4) { height: 16px; }
.mini-wave i:nth-child(5) { height: 8px; }

.process-list {
  display: grid;
  margin-top: 2rem;
  gap: 18px;
}

.process-item {
  display: grid;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: 48px 1fr;
  gap: 14px;
}

.process-item > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #6552f2;
  border-radius: 12px;
  background: rgba(98, 71, 238, .08);
  font-size: .63rem;
  font-weight: 850;
}

.process-item h4 {
  margin: 0 0 .3rem;
  color: #17213a;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.process-item p {
  margin: 0;
  color: var(--dark-muted);
  font-size: .78rem;
  line-height: 1.65;
}

.demo-preview-section {
  background: linear-gradient(180deg, #fff, #f2f5fa);
}

.demo-preview {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  padding: 62px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 84% 22%, rgba(109, 78, 244, .34), transparent 34%),
    linear-gradient(135deg, #070b19, #101936);
  box-shadow: var(--shadow-xl);
  grid-template-columns: .9fr 1.35fr;
  gap: 35px;
}

.demo-preview::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .18;
  background: url("network-grid.svg") center / cover no-repeat;
}

.demo-preview-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}

.light-kicker {
  color: var(--cyan);
}

.demo-preview h2 {
  margin: .9rem 0 1rem;
  color: #fff;
  font-size: clamp(2.8rem, 4vw, 4.7rem);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .98;
}

.demo-preview p {
  max-width: 510px;
  color: #aebad0;
  line-height: 1.75;
}

.demo-bullets {
  display: grid;
  margin: 1.4rem 0 1.7rem;
  gap: .55rem;
}

.demo-bullets span {
  color: #d8e4f7;
  font-size: .74rem;
}

.demo-bullets i {
  margin-right: .4rem;
  color: var(--mint);
}

.demo-browser {
  position: relative;
  z-index: 2;
  align-self: end;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px 22px 0 0;
  background: #0e1528;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .4);
  transform: translate(35px, 70px);
}

.demo-browser-bar {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  color: #76859e;
  background: #0b1121;
  font-size: .55rem;
}

.demo-browser-bar em {
  margin-left: 8px;
  font-style: normal;
}

.demo-browser-image {
  position: relative;
  min-height: 365px;
  overflow: hidden;
  background: url("church-worship.webp") center 42% / cover no-repeat;
}

.demo-browser-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(4, 7, 15, .92), rgba(4, 7, 15, .17) 70%);
}

.browser-nav,
.browser-copy,
.browser-chat {
  position: absolute;
  z-index: 2;
}

.browser-nav {
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 46px;
  align-items: center;
  gap: 13px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(5, 8, 18, .38);
  backdrop-filter: blur(10px);
}

.browser-nav strong {
  margin-right: auto;
  color: #fff;
  font-size: .65rem;
}

.browser-nav i {
  width: 27px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .42);
}

.browser-nav button {
  padding: .4rem .65rem;
  color: #111a30;
  border: 0;
  border-radius: 999px;
  background: #fff;
  font-size: .5rem;
  font-weight: 800;
}

.browser-copy {
  top: 50%;
  left: 34px;
  max-width: 330px;
  transform: translateY(-38%);
}

.browser-copy small {
  color: var(--coral);
  font-size: .55rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.browser-copy h3 {
  margin: .3rem 0 .35rem;
  color: #fff;
  font-size: 3rem;
  letter-spacing: -.07em;
}

.browser-copy p,
.browser-copy span {
  color: #c1cbdc;
  font-size: .64rem;
}

.browser-chat {
  right: 15px;
  bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  color: #14203b;
  border-radius: 12px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-md);
}

.browser-chat i {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: var(--violet);
}

.browser-chat strong,
.browser-chat small {
  display: block;
  font-size: .5rem;
}

.browser-chat small {
  color: #7b879b;
}

.final-cta-section {
  position: relative;
  overflow: hidden;
  padding: 135px 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(123, 97, 255, .24), transparent 33%),
    #050814;
}

.final-cta-section::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 50% 54%, transparent 0, transparent 40%, rgba(1, 3, 9, .48) 100%);
}

.final-cta {
  position: relative;
  z-index: 2;
  max-width: 930px;
  margin: 0 auto;
  text-align: center;
}

.cta-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 0 auto 1.25rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 17px;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  box-shadow: 0 0 0 12px rgba(123, 97, 255, .06), 0 20px 55px rgba(98, 71, 238, .34);
}

.final-cta h2 {
  margin: 1rem 0;
  color: #fff;
  font-size: clamp(3.2rem, 5.4vw, 6rem);
  font-weight: 700;
  letter-spacing: -.068em;
  line-height: .96;
}

.final-cta p {
  max-width: 720px;
  margin: 0 auto 1.7rem;
  color: #a9b6ca;
  line-height: 1.75;
}

.product-footer,
.church-footer {
  color: #8190aa;
  background: #02040b;
}

.product-footer {
  padding: 38px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-top p {
  margin: 0 auto;
  font-size: .68rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a,
.footer-bottom a {
  color: #8190aa;
  font-size: .66rem;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: .59rem;
}

/* Fictional demo church ------------------------------------------------- */

.church-site {
  color: var(--dark-text);
  background: #fff;
}

.demo-ribbon {
  position: fixed;
  z-index: 1090;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 7px 16px;
  color: #cbd8ec;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: #050814;
  font-size: .62rem;
  font-weight: 680;
}

.demo-ribbon i {
  color: var(--cyan);
}

.demo-ribbon a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.church-nav {
  top: 34px;
}

.church-progress {
  top: 34px;
}

.church-brand {
  gap: .6rem;
  letter-spacing: .02em;
}

.church-brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, .03);
  font-weight: 800;
}

.church-brand strong,
.church-brand small {
  display: block;
}

.church-brand strong {
  font-size: .84rem;
  letter-spacing: .22em;
}

.church-brand small {
  margin-top: 1px;
  color: #9eabc0;
  font-size: .45rem;
  letter-spacing: .22em;
}

.church-hero-modern {
  position: relative;
  display: flex;
  min-height: 900px;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #070a13;
}

.church-hero-image,
.church-hero-overlay,
.church-hero-grid {
  position: absolute;
  inset: 0;
}

.church-hero-image {
  background: url("church-worship.webp") center 45% / cover no-repeat;
  transform: scale(1.02);
}

.church-hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 6, 13, .93) 0%, rgba(4, 6, 13, .72) 43%, rgba(4, 6, 13, .14) 75%),
    linear-gradient(180deg, rgba(4, 6, 13, .2), rgba(4, 6, 13, .8));
}

.church-hero-grid {
  opacity: .19;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000, transparent 74%);
}

.church-hero-content {
  position: relative;
  z-index: 3;
  padding-top: 190px;
  padding-bottom: 55px;
}

.church-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
  color: #e9edf7;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.church-eyebrow span {
  width: 26px;
  height: 1px;
  background: var(--coral);
}

.church-hero-modern h1 {
  margin: 0;
  font-size: clamp(5.5rem, 9.5vw, 10.6rem);
  font-weight: 690;
  letter-spacing: -.085em;
  line-height: .78;
}

.church-hero-modern h1 em {
  color: var(--coral);
  font-style: normal;
}

.church-hero-modern .col-xl-8 p {
  max-width: 670px;
  margin: 1.75rem 0 1.7rem;
  color: #d2d9e5;
  font-size: 1.05rem;
  line-height: 1.72;
}

.next-gathering-card {
  margin-left: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 22px;
  background: rgba(5, 8, 18, .7);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .34), inset 0 1px rgba(255, 255, 255, .08);
  backdrop-filter: blur(20px) saturate(135%);
}

.gathering-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.gathering-top span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #fff;
  font-size: .67rem;
  font-weight: 800;
}

.gathering-top span i {
  color: var(--coral);
}

.gathering-top em {
  color: #8390a4;
  font-size: .55rem;
  font-style: normal;
}

.gathering-time {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gathering-time strong {
  min-width: 100px;
  color: #fff;
  font-size: 3rem;
  letter-spacing: -.07em;
}

.gathering-time span {
  color: #c0cad9;
  font-size: .65rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.gathering-divider {
  height: 1px;
  margin: .7rem 0;
  background: rgba(255, 255, 255, .1);
}

.gathering-note {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  color: #93a1b6;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .58rem;
}

.gathering-note i {
  color: var(--mint);
}

.hero-bottom-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 72px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.hero-bottom-line > div {
  display: flex;
  gap: 1rem;
  color: #9ca8ba;
  font-size: .62rem;
}

.hero-bottom-line a {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
}

.church-section {
  padding: 120px 0;
}

.about-modern {
  background: #fff;
}

.church-photo-stack {
  position: relative;
  min-height: 620px;
}

.stack-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 26px;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-lg);
}

.stack-photo-main {
  inset: 0 22% 70px 0;
  background-image: url("pastor-community.webp");
}

.stack-photo-small {
  right: 0;
  bottom: 0;
  width: 45%;
  height: 44%;
  border: 8px solid #fff;
  background-image: url("team-collaboration.webp");
}

.stack-stat {
  position: absolute;
  top: 30px;
  right: 11%;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  padding: 10px;
  color: #fff;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 20px 45px rgba(255, 124, 104, .3);
  text-align: center;
}

.stack-stat strong,
.stack-stat span {
  display: block;
}

.stack-stat strong {
  font-size: 1.5rem;
}

.stack-stat span {
  font-size: .5rem;
  line-height: 1.35;
}

.stack-caption {
  position: absolute;
  bottom: 24px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .7rem;
  color: #fff;
  border-radius: 999px;
  background: rgba(8, 13, 28, .78);
  backdrop-filter: blur(12px);
  font-size: .57rem;
  font-weight: 780;
}

.stack-caption i {
  color: var(--coral);
}

.about-modern h2,
.church-heading h2,
.sermon-modern-section h2,
.events-modern-section h2,
.ai-experience-section h2,
.visit-card h2 {
  margin: .8rem 0 1rem;
  font-size: clamp(3.2rem, 5vw, 5.3rem);
  font-weight: 700;
  letter-spacing: -.068em;
  line-height: .95;
}

.church-lead {
  color: #536079;
  font-size: 1.02rem;
  line-height: 1.7;
}

.about-modern .col-lg-6 > p:not(.church-lead) {
  color: #748098;
  font-size: .85rem;
  line-height: 1.75;
}

.value-grid {
  display: grid;
  margin: 1.8rem 0;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.value-grid > div {
  display: grid;
  align-items: center;
  padding: 13px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: #fbfcff;
  grid-template-columns: 34px 1fr;
  gap: 0 10px;
}

.value-grid > div > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--coral);
  border-radius: 10px;
  background: rgba(255, 124, 104, .1);
  grid-row: 1 / 3;
}

.value-grid strong,
.value-grid small {
  display: block;
}

.value-grid strong {
  color: #1a253d;
  font-size: .72rem;
}

.value-grid small {
  color: #8590a3;
  font-size: .55rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #101a31;
  font-size: .73rem;
  font-weight: 850;
}

.text-link:hover {
  color: #634ff1;
}

.ministry-section,
.events-modern-section {
  background: #f4f2ed;
}

.church-heading {
  max-width: 790px;
  margin: 0 auto 58px;
  text-align: center;
}

.church-heading p {
  max-width: 620px;
  margin: 0 auto;
  color: #6e798e;
  line-height: 1.7;
}

.ministry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.ministry-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 24px;
  background: #111827;
  box-shadow: 0 18px 48px rgba(15, 24, 43, .13);
}

.ministry-image,
.ministry-shade {
  position: absolute;
  inset: 0;
}

.ministry-image {
  background-position: center;
  background-size: cover;
  transition: transform .75s var(--ease);
}

.ministry-kids .ministry-image { background-image: url("pastor-community.webp"); background-position: 42% center; }
.ministry-students .ministry-image { background-image: url("worship-close.webp"); }
.ministry-young .ministry-image { background-image: url("team-collaboration.webp"); }
.ministry-korean .ministry-image { background-image: url("worship-hands.webp"); }

.ministry-card:hover .ministry-image {
  transform: scale(1.045);
}

.ministry-shade {
  background: linear-gradient(180deg, rgba(4, 7, 15, .05), rgba(4, 7, 15, .92));
}

.ministry-copy {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 24px;
  left: 25px;
  color: #fff;
}

.ministry-copy > span {
  color: var(--coral);
  font-size: .57rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ministry-copy h3 {
  margin: .25rem 0 .4rem;
  font-size: 2.3rem;
  letter-spacing: -.055em;
}

.ministry-copy p {
  max-width: 75%;
  margin: 0;
  color: #c4cedd;
  font-size: .72rem;
  line-height: 1.6;
}

.ministry-copy a {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #11182a;
  border-radius: 50%;
  background: #fff;
}

.ministry-more {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 25px;
}

.ministry-more span {
  color: #929aab;
  font-size: .61rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ministry-more a {
  padding: .42rem .65rem;
  color: #3f4b60;
  border: 1px solid rgba(15, 28, 50, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  font-size: .58rem;
  font-weight: 700;
}

.sermon-modern-section {
  background: #fff;
}

.sermon-layout {
  display: grid;
  grid-template-columns: 1.65fr .85fr;
  gap: 14px;
}

.featured-sermon {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 26px;
  background: #131b2c;
  box-shadow: var(--shadow-lg);
}

.featured-sermon-image,
.featured-sermon-shade {
  position: absolute;
  inset: 0;
}

.featured-sermon-image {
  background: url("pastor-community.webp") center / cover no-repeat;
}

.featured-sermon-shade {
  background: linear-gradient(180deg, rgba(4, 7, 15, .03), rgba(4, 7, 15, .91));
}

.sermon-play {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #131b2e;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .22);
  font-size: 1.2rem;
}

.featured-sermon-copy {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 30px;
  left: 32px;
  color: #fff;
}

.sermon-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sermon-meta span {
  padding: .38rem .58rem;
  color: #fff;
  border-radius: 999px;
  background: var(--coral);
  font-size: .5rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sermon-meta time {
  color: #c0cad8;
  font-size: .6rem;
}

.featured-sermon h3 {
  max-width: 680px;
  margin: .8rem 0 .45rem;
  font-size: clamp(3rem, 4.7vw, 5.3rem);
  font-weight: 680;
  letter-spacing: -.07em;
  line-height: .93;
}

.featured-sermon p {
  margin: 0;
  color: #c2ccdb;
  font-size: .72rem;
}

.sermon-side-list {
  display: grid;
  min-width: 0;
  grid-template-rows: 1fr 1fr .8fr;
  gap: 12px;
}

.sermon-side-card,
.sermon-series-card {
  display: grid;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(20, 35, 65, .07);
}

.sermon-side-card {
  grid-template-columns: 40% 1fr;
}

.sermon-side-image {
  min-height: 100%;
  background-position: center;
  background-size: cover;
}

.sermon-image-hope { background-image: url("worship-close.webp"); }
.sermon-image-community { background-image: url("worship-hands.webp"); }

.sermon-side-card > div:last-child {
  display: flex;
  min-width: 0;
  justify-content: center;
  flex-direction: column;
  padding: 17px;
}

.sermon-side-card span,
.sermon-series-card span {
  color: var(--coral);
  font-size: .5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sermon-side-card h4,
.sermon-series-card h4 {
  margin: .34rem 0;
  color: #17223b;
  font-size: 1.15rem;
  letter-spacing: -.035em;
}

.sermon-side-card p,
.sermon-series-card p {
  margin: 0 0 .45rem;
  color: #7a8598;
  font-size: .58rem;
  line-height: 1.5;
}

.sermon-side-card a {
  color: #5f4de7;
  font-size: .58rem;
  font-weight: 800;
}

.sermon-series-card {
  align-items: center;
  padding: 20px;
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, #11182d, #29214e);
  grid-template-columns: 1fr auto;
}

.sermon-series-card h4 {
  color: #fff;
}

.sermon-series-card p {
  color: #abb6ca;
}

.series-ring {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, .09);
  border-top-color: var(--coral);
  border-radius: 50%;
}

.series-ring strong,
.series-ring small {
  grid-area: 1 / 1;
}

.series-ring strong {
  margin-right: 12px;
  font-size: 1.15rem;
}

.series-ring small {
  margin: 15px 0 0 27px;
  color: #8794a9;
  font-size: .45rem;
}

.events-modern-section h2 {
  margin-bottom: 1rem;
}

.events-modern-section .btn-dark {
  margin-top: .6rem;
  padding-inline: 1.15rem;
  background: #10182b;
}

.event-list {
  display: grid;
  gap: 10px;
}

.event-card {
  display: grid;
  min-height: 118px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(16, 29, 52, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 32px rgba(25, 36, 58, .06);
  grid-template-columns: 74px 1fr 42px;
  gap: 16px;
}

.event-date {
  display: grid;
  width: 70px;
  height: 78px;
  place-items: center;
  padding: 8px;
  color: #11182c;
  border-radius: 15px;
  background: #f0f2f5;
  text-align: center;
}

.event-date.accent {
  color: #fff;
  background: var(--coral);
}

.event-date span,
.event-date strong {
  display: block;
}

.event-date span {
  font-size: .49rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.event-date strong {
  font-size: 1.7rem;
  letter-spacing: -.05em;
}

.event-type {
  color: var(--coral);
  font-size: .5rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.event-copy h3 {
  margin: .15rem 0 .25rem;
  color: #172138;
  font-size: 1.06rem;
  letter-spacing: -.03em;
}

.event-copy p {
  margin: 0;
  color: #7a8598;
  font-size: .58rem;
}

.event-card > a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #11182c;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: #fff;
}

.ai-experience-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 75% 35%, rgba(109, 78, 244, .22), transparent 34%),
    #050814;
}

.ai-grid {
  opacity: .28;
}

.ai-glow {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85, 233, 255, .12), transparent 68%);
  pointer-events: none;
}

.ai-church-kicker {
  color: #e8f1ff;
}

.ai-church-kicker i {
  color: var(--cyan);
}

.ai-experience-section h2 {
  color: #fff;
}

.ai-experience-section .col-lg-5 > p {
  color: #aab7cb;
  line-height: 1.75;
}

.ai-trust-list {
  display: grid;
  margin: 1.4rem 0;
  gap: .55rem;
}

.ai-trust-list span {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: #d5e0ef;
  font-size: .7rem;
}

.ai-trust-list i {
  color: var(--mint);
}

.quick-prompt-label {
  margin-bottom: .55rem;
  color: #75849d;
  font-size: .56rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.quick-prompt-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.quick-q {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .52rem .68rem;
  color: #c8d5e8;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  font-size: .57rem;
  font-weight: 700;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.quick-q:hover,
.quick-q:focus {
  color: #fff;
  border-color: rgba(85, 233, 255, .42);
  background: rgba(85, 233, 255, .08);
  transform: translateY(-2px);
}

.ai-demo {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 24px;
  background: rgba(10, 16, 34, .82);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .42), inset 0 1px rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.ai-demo-head {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.ai-avatar.large {
  width: 46px;
  height: 46px;
  flex-basis: 46px;
}

.ai-avatar.large span {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 11px;
  height: 11px;
  border: 2px solid #0c1225;
  border-radius: 50%;
  background: var(--mint);
}

.ai-demo-head strong,
.ai-demo-head small {
  display: block;
}

.ai-demo-head strong {
  color: #fff;
  font-size: .78rem;
}

.ai-demo-head small {
  margin-top: .15rem;
  color: #7e8ca5;
  font-size: .54rem;
}

.ai-status {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: #b8c5d8;
  font-size: .55rem;
}

.ai-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(104, 239, 192, .75);
}

.ai-demo-body {
  display: flex;
  min-height: 360px;
  max-height: 430px;
  overflow-y: auto;
  flex-direction: column;
  gap: 11px;
  padding: 20px;
  background:
    radial-gradient(circle at 90% 15%, rgba(123, 97, 255, .09), transparent 28%),
    rgba(5, 9, 20, .42);
}

.chat-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.chat-mini-avatar {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  font-size: .7rem;
}

.chat-bubble {
  width: fit-content;
  max-width: 82%;
  padding: 11px 13px;
  color: #dce6f6;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px 14px 14px 4px;
  background: rgba(255, 255, 255, .07);
  font-size: .68rem;
  line-height: 1.6;
}

.ai-demo-body > .chat-bubble.user,
.chat-bubble.user {
  align-self: flex-end;
  color: #fff;
  border: 0;
  border-radius: 14px 14px 4px 14px;
  background: linear-gradient(135deg, var(--violet), #694eed);
}

.ai-demo-body > .chat-bubble.bot {
  align-self: flex-start;
}

.chat-bubble small {
  display: block;
  margin-top: .45rem;
  color: #7e8ca5;
  font-size: .48rem;
}

.chat-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: .55rem;
}

.chat-source {
  padding: .25rem .4rem;
  color: #99eaf3;
  border: 1px solid rgba(85, 233, 255, .15);
  border-radius: 999px;
  background: rgba(85, 233, 255, .06);
  font-size: .45rem;
  font-weight: 750;
}

.ai-demo-foot {
  display: grid;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  grid-template-columns: 1fr 42px;
  gap: 8px;
}

.ai-demo-foot .form-control {
  height: 42px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 13px;
  background: rgba(255, 255, 255, .055);
  box-shadow: none;
  font-size: .64rem;
}

.ai-demo-foot .form-control::placeholder {
  color: #687790;
}

.ai-demo-foot .form-control:focus {
  border-color: rgba(85, 233, 255, .42);
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 0 0 3px rgba(85, 233, 255, .07);
}

.ai-demo-foot .btn {
  min-height: 42px;
  color: #fff;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
}

.ai-demo-foot .btn:disabled {
  opacity: .55;
}

.ai-disclaimer {
  padding: 0 16px 14px;
  color: #65738a;
  font-size: .49rem;
}

.ai-disclaimer i {
  color: var(--mint);
}

.visit-modern-section {
  background: #fff;
}

.visit-card {
  display: grid;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  border-radius: 28px;
  background: #0a1121;
  box-shadow: var(--shadow-xl);
  grid-template-columns: 1fr 1fr;
}

.visit-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 55px;
}

.visit-copy > p {
  color: #a9b5c9;
  line-height: 1.75;
}

.visit-details {
  display: grid;
  margin: 1.2rem 0 1.7rem;
  gap: .9rem;
}

.visit-details > div {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
}

.visit-details i {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  color: var(--coral);
  border-radius: 9px;
  background: rgba(255, 124, 104, .1);
}

.visit-details span,
.visit-details strong {
  display: block;
}

.visit-details span {
  color: #8593a9;
  font-size: .63rem;
  line-height: 1.5;
}

.visit-details strong {
  margin-bottom: .12rem;
  color: #fff;
  font-size: .68rem;
}

.visit-map {
  position: relative;
  overflow: hidden;
  background: #e9e6df;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: .65;
  background-image:
    linear-gradient(rgba(72, 83, 102, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 83, 102, .08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.map-road {
  position: absolute;
  height: 10px;
  border: 2px solid #fff;
  border-right: 0;
  border-left: 0;
  background: #d4d0c8;
  box-shadow: 0 0 0 1px rgba(80, 89, 102, .07);
}

.road-one {
  top: 28%;
  right: -13%;
  left: -12%;
  transform: rotate(-26deg);
}

.road-two {
  top: 61%;
  right: -15%;
  left: -17%;
  transform: rotate(18deg);
}

.road-three {
  top: 48%;
  right: -22%;
  left: 18%;
  transform: rotate(71deg);
}

.map-pin {
  position: absolute;
  top: 44%;
  left: 53%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  border-radius: 50% 50% 50% 8px;
  background: var(--coral);
  box-shadow: 0 18px 40px rgba(255, 124, 104, .34);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin i {
  transform: rotate(45deg);
  font-size: 1.2rem;
}

.map-label,
.map-chip {
  position: absolute;
  padding: 10px 12px;
  color: #172138;
  border: 1px solid rgba(16, 29, 50, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 34px rgba(24, 35, 54, .13);
}

.map-label {
  top: 57%;
  left: 38%;
}

.map-label strong,
.map-label small {
  display: block;
}

.map-label strong {
  font-size: .62rem;
}

.map-label small {
  margin-top: .14rem;
  color: #7b879b;
  font-size: .48rem;
}

.map-chip {
  top: 22px;
  right: 22px;
  color: #556176;
  font-size: .54rem;
  font-weight: 700;
}

.ai-fab {
  position: fixed;
  z-index: 1050;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: .55rem;
  padding: .5rem .8rem .5rem .5rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(10, 16, 34, .88);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
  backdrop-filter: blur(16px);
  font-size: .62rem;
  font-weight: 800;
}

.ai-fab:hover {
  color: #fff;
  transform: translateY(-2px);
}

.ai-fab i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
}

.church-footer {
  padding: 60px 0 24px;
}

.church-footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 45px;
}

.footer-church-brand {
  margin-bottom: 1rem;
}

.church-footer-main > div:first-child p {
  max-width: 330px;
  color: #697790;
  font-size: .65rem;
  line-height: 1.7;
}

.church-footer h5 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: .65rem;
  letter-spacing: .05em;
}

.church-footer-main > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.church-footer-main a {
  color: #78869f;
  font-size: .62rem;
}

.church-footer-main a:hover {
  color: #fff;
}

.church-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 19px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  color: #5d6a80;
  font-size: .55rem;
}

.church-footer-bottom a {
  color: #8e9bb0;
}

/* Responsive ------------------------------------------------------------ */

@media (max-width: 1199.98px) {
  .hero-title {
    font-size: clamp(4.2rem, 7.4vw, 6.5rem);
  }

  .hero-console {
    right: 0;
  }

  .floating-ai-card {
    right: -10px;
  }

  .bento-copy,
  .bento-content .bento-copy,
  .bento-analytics .bento-copy {
    max-width: 58%;
  }

  .church-hero-modern h1 {
    font-size: clamp(5rem, 10vw, 8.6rem);
  }
}

@media (max-width: 991.98px) {
  html {
    scroll-padding-top: 86px;
  }

  .product-nav,
  .church-nav {
    background: rgba(5, 8, 20, .9);
    backdrop-filter: blur(18px);
  }

  .navbar-collapse {
    margin-top: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 17px;
    background: rgba(7, 11, 24, .97);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .3);
  }

  .product-nav .nav-link,
  .church-nav .nav-link {
    padding: .72rem .55rem !important;
  }

  .product-nav .nav-link::after,
  .church-nav .nav-link::after {
    right: auto;
    left: .55rem;
    width: 28px;
  }

  .hero-container {
    padding-top: 145px;
    padding-bottom: 70px;
  }

  .product-hero {
    min-height: auto;
    padding-bottom: 145px;
  }

  .hero-console-wrap {
    min-height: 560px;
    margin-top: 20px;
  }

  .hero-console {
    left: 0;
    transform: none;
  }

  .floating-ai-card {
    right: 12px;
  }

  .floating-sync {
    left: 10px;
  }

  .hero-metrics {
    bottom: 28px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-metric-note {
    justify-content: flex-start;
  }

  .logo-cloud {
    flex-wrap: wrap;
    justify-content: center;
  }

  .bento-ai,
  .bento-bilingual,
  .bento-web,
  .bento-content,
  .bento-analytics,
  .bento-support {
    grid-column: span 6;
  }

  .bento-ai,
  .bento-content,
  .bento-analytics {
    grid-column: span 12;
  }

  .bento-copy,
  .bento-content .bento-copy,
  .bento-analytics .bento-copy {
    max-width: 55%;
  }

  .command-visual {
    min-height: 550px;
  }

  .demo-preview {
    min-height: 830px;
    grid-template-columns: 1fr;
  }

  .demo-browser {
    transform: translate(30px, 72px);
  }

  .church-hero-modern {
    min-height: 1040px;
    align-items: flex-start;
  }

  .church-hero-content {
    padding-top: 180px;
  }

  .next-gathering-card {
    max-width: 430px;
    margin: 35px 0 0;
  }

  .church-photo-stack {
    min-height: 590px;
    margin-bottom: 28px;
  }

  .sermon-layout {
    grid-template-columns: 1fr;
  }

  .sermon-side-list {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: none;
  }

  .sermon-side-card {
    min-height: 330px;
    grid-template-columns: 1fr;
    grid-template-rows: 55% 45%;
  }

  .sermon-series-card {
    min-height: 330px;
    grid-template-columns: 1fr;
    align-content: space-between;
  }

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

  .visit-map {
    min-height: 430px;
  }
}

@media (max-width: 767.98px) {
  .product-nav,
  .church-nav {
    padding: 10px 0;
  }

  .demo-ribbon {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .hero-container {
    padding-top: 128px;
  }

  .hero-title {
    font-size: clamp(3.45rem, 14.5vw, 5.2rem);
  }

  .hero-lead {
    font-size: .98rem;
  }

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

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-console-wrap {
    min-height: 545px;
  }

  .hero-console {
    border-radius: 20px;
  }

  .console-layout {
    grid-template-columns: 42px 1fr;
  }

  .console-side {
    padding-inline: 4px;
  }

  .console-side a,
  .mini-logo {
    width: 30px;
    height: 30px;
  }

  .console-main {
    padding: 14px;
  }

  .console-media {
    height: 170px;
  }

  .floating-ai-card {
    right: 0;
    bottom: 20px;
    width: 260px;
  }

  .floating-sync {
    display: none;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .hero-metric {
    justify-content: flex-start;
  }

  .logo-cloud-section {
    padding: 20px 0;
  }

  .logo-cloud {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .logo-cloud span {
    justify-content: center;
  }

  .section-space,
  .church-section {
    padding: 86px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .section-title,
  .about-modern h2,
  .church-heading h2,
  .sermon-modern-section h2,
  .events-modern-section h2,
  .ai-experience-section h2,
  .visit-card h2 {
    font-size: clamp(2.75rem, 11.5vw, 4.25rem);
  }

  .bento-grid,
  .ministry-grid {
    grid-template-columns: 1fr;
  }

  .bento-ai,
  .bento-bilingual,
  .bento-web,
  .bento-content,
  .bento-analytics,
  .bento-support {
    grid-column: auto;
  }

  .bento-card {
    min-height: 430px;
    padding: 24px;
  }

  .bento-ai {
    min-height: 560px;
  }

  .bento-copy,
  .bento-content .bento-copy,
  .bento-analytics .bento-copy {
    max-width: 100%;
  }

  .orbital-ai {
    right: 50%;
    bottom: 10px;
    width: 250px;
    height: 250px;
    transform: translateX(50%);
  }

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

  .language-arrow {
    display: none !important;
  }

  .content-flow,
  .analytics-panel {
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
    min-width: 0;
  }

  .bento-content,
  .bento-analytics {
    min-height: 610px;
  }

  .command-visual {
    min-height: 500px;
  }

  .command-card-top {
    top: 22px;
    right: 18px;
  }

  .command-card-bottom {
    bottom: 18px;
    left: 18px;
  }

  .demo-preview {
    min-height: 760px;
    padding: 34px 25px;
  }

  .demo-browser {
    transform: translate(12px, 56px);
  }

  .final-cta-section {
    padding: 100px 0;
  }

  .final-cta h2 {
    font-size: clamp(3rem, 12vw, 4.6rem);
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top p {
    margin: 0;
  }

  .church-hero-modern {
    min-height: 1020px;
  }

  .church-hero-content {
    padding-top: 150px;
    padding-bottom: 35px;
  }

  .church-hero-modern h1 {
    font-size: clamp(4.2rem, 18vw, 6rem);
  }

  .church-hero-modern .col-xl-8 p {
    font-size: .94rem;
  }

  .hero-bottom-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin-top: 45px;
  }

  .hero-bottom-line > div {
    flex-direction: column;
    gap: .2rem;
  }

  .church-photo-stack {
    min-height: 530px;
  }

  .stack-photo-main {
    right: 12%;
  }

  .stack-photo-small {
    width: 50%;
    height: 38%;
  }

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

  .ministry-card {
    min-height: 440px;
  }

  .ministry-copy p {
    max-width: 84%;
  }

  .featured-sermon {
    min-height: 560px;
  }

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

  .sermon-side-card {
    min-height: 210px;
    grid-template-columns: 40% 1fr;
    grid-template-rows: 1fr;
  }

  .sermon-series-card {
    min-height: 210px;
    grid-template-columns: 1fr auto;
  }

  .event-card {
    grid-template-columns: 62px 1fr 36px;
    gap: 11px;
  }

  .event-date {
    width: 60px;
    height: 70px;
  }

  .event-copy p {
    line-height: 1.6;
  }

  .ai-demo-body {
    min-height: 330px;
  }

  .visit-copy {
    padding: 36px 25px;
  }

  .visit-map {
    min-height: 390px;
  }

  .church-footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .church-footer-main > div:first-child {
    grid-column: 1 / -1;
  }

  .church-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: .65rem;
  }
}

@media (max-width: 479.98px) {
  .product-nav .container,
  .church-nav .container,
  main > section > .container,
  main > header > .container,
  .product-footer .container,
  .church-footer .container {
    --bs-gutter-x: 1.5rem;
  }

  .brand-lockup > span:last-child {
    font-size: .9rem;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
  }

  .hero-container {
    padding-top: 120px;
  }

  .hero-title {
    font-size: clamp(3.1rem, 14.7vw, 4.35rem);
  }

  .hero-console-wrap {
    min-height: 515px;
  }

  .console-domain {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

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

  .metric-card.wide {
    grid-column: auto;
  }

  .console-layout {
    min-height: 405px;
  }

  .floating-ai-card {
    width: 235px;
    padding: 11px;
  }

  .floating-ai-card p {
    font-size: .67rem;
  }

  .hero-metrics {
    bottom: 20px;
  }

  .bento-card h3 {
    font-size: 2rem;
  }

  .bento-bilingual {
    min-height: 500px;
  }

  .bento-web,
  .bento-support {
    min-height: 430px;
  }

  .command-visual {
    min-height: 430px;
  }

  .command-card {
    max-width: calc(100% - 36px);
  }

  .demo-preview {
    min-height: 760px;
  }

  .demo-preview h2 {
    font-size: 2.7rem;
  }

  .demo-browser-image {
    min-height: 320px;
  }

  .browser-copy {
    left: 20px;
  }

  .browser-copy h3 {
    font-size: 2.35rem;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .demo-ribbon {
    font-size: .54rem;
  }

  .church-brand-mark {
    width: 37px;
    height: 37px;
  }

  .church-brand small {
    display: none;
  }

  .church-hero-modern {
    min-height: 1000px;
  }

  .next-gathering-card {
    padding: 20px;
  }

  .gathering-time strong {
    min-width: 88px;
    font-size: 2.5rem;
  }

  .church-photo-stack {
    min-height: 465px;
  }

  .stack-photo-main {
    inset: 0 8% 60px 0;
  }

  .stack-photo-small {
    width: 52%;
    height: 36%;
    border-width: 5px;
  }

  .stack-stat {
    top: 18px;
    right: 1%;
    width: 92px;
    height: 92px;
  }

  .ministry-card {
    min-height: 400px;
  }

  .ministry-copy h3 {
    font-size: 2rem;
  }

  .featured-sermon h3 {
    font-size: 2.9rem;
  }

  .sermon-side-card {
    min-height: 350px;
    grid-template-columns: 1fr;
    grid-template-rows: 57% 43%;
  }

  .sermon-series-card {
    min-height: 240px;
  }

  .event-card {
    align-items: start;
    grid-template-columns: 58px 1fr;
  }

  .event-card > a {
    display: none;
  }

  .event-copy h3 {
    font-size: .96rem;
  }

  .quick-prompt-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quick-q {
    justify-content: flex-start;
  }

  .ai-demo-head {
    padding: 13px;
  }

  .ai-demo-body {
    padding: 14px;
  }

  .chat-bubble {
    max-width: 91%;
  }

  .ai-demo-foot {
    padding: 11px;
  }

  .visit-map {
    min-height: 350px;
  }

  .map-label {
    left: 18%;
  }

  .map-chip {
    top: 15px;
    right: 15px;
  }

  .ai-fab {
    width: 52px;
    height: 52px;
    justify-content: center;
    padding: 7px;
  }

  .ai-fab span {
    display: none;
  }

  .church-footer-main {
    grid-template-columns: 1fr;
  }

  .church-footer-main > div:first-child {
    grid-column: auto;
  }
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal,
  .reveal.will-reveal {
    opacity: 1;
    transform: none;
  }
}
