/* Brand & Styling Tokens for Swapp Light Theme Landing Page */
:root {
  --cyan: #12e6ff;
  --cyan-dark: #0895a6;
  --cyan-glow: #0bc7e0;
  --green: #35ff76;
  --green-dark: #18e85c;
  --bg: #ffffff;
  --bg-alt: #f5f8fa;
  --bg-accent: #eef5f8;
  --text: #162126;
  --text-muted: #5a6d75;
  --primary-gradient: linear-gradient(135deg, var(--cyan-dark), var(--cyan-glow));
  --brand-gradient: linear-gradient(135deg, var(--cyan-dark) 0%, #10d3eb 50%, var(--green-dark) 100%);
  --radius: 16px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(22, 33, 38, 0.06);
  --shadow-lg: 0 16px 40px rgba(22, 33, 38, 0.08);
  --max-width: 1140px;
  --space: clamp(1rem, 2.5vw, 2.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Layout Elements */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.section.alt {
  background-color: var(--bg-alt);
}

.section.accent {
  background-color: var(--bg-accent);
}

/* Typography styling */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 2.6rem);
  margin-bottom: 1rem;
  text-align: center;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.25rem;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.section-title-wrapper {
  margin-bottom: 4rem;
}

/* Buttons and Links */
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  padding: 0.95rem 1.8rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn.primary {
  background: var(--brand-gradient);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(8, 149, 166, 0.3);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(8, 149, 166, 0.45);
  filter: brightness(1.05);
}

.btn.secondary {
  background-color: #ffffff;
  color: var(--cyan-dark);
  border-color: var(--cyan-glow);
  box-shadow: var(--shadow-sm);
}

.btn.secondary:hover {
  background-color: var(--bg-alt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--cyan-dark);
}

.btn:active {
  transform: translateY(1px);
}
/* Unified Showcase Section (Hero + App Showcase) */
.unified-showcase {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background: radial-gradient(circle at 80% 20%, rgba(18, 230, 255, 0.08) 0%, rgba(255, 255, 255, 0) 50%);
  position: relative;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 4rem;
  align-items: flex-start;
  position: relative;
}

.showcase-left-col {
  position: relative;
}

.hero-content-block {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 5rem;
}

.hero-media {
  position: relative;
}

.hero-mockup-wrapper {
  background: #ffffff;
  padding: 1.25rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(22, 33, 38, 0.05);
  transition: transform 0.5s ease;
}

.hero-mockup-wrapper:hover {
  transform: translateY(-8px);
}

.hero-mockup-wrapper img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

/* Pillar Showcase Layout */
.pillars-container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.pillar-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.pillar-row:nth-child(even) {
  grid-template-columns: 1.1fr 1fr;
}

.pillar-row:nth-child(even) .pillar-content {
  order: 2;
}

.pillar-row:nth-child(even) .pillar-visual {
  order: 1;
}

.pillar-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  background-color: var(--bg-accent);
  color: var(--cyan-dark);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.pillar-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text) 60%, var(--cyan-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pillar-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.pillar-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon-wrapper {
  background-color: var(--bg-accent);
  color: var(--cyan-dark);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: bold;
  box-shadow: var(--shadow-sm);
}

.feature-item-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.feature-item-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.pillar-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(22, 33, 38, 0.05);
  position: relative;
  width: 100%;
}

.visual-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

/* Feature grid (For auto-calendar, reminders, website etc.) */
.pastor-relief-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.pastor-card {
  background-color: var(--bg-alt);
  padding: 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(22, 33, 38, 0.04);
}

.pastor-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pastor-card h5::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--cyan-dark);
}

.pastor-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Pricing Section */
.pricing-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.pricing-card {
  background-color: #ffffff;
  border: 1px solid rgba(22, 33, 38, 0.08);
  border-radius: 20px;
  padding: 2.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(8, 149, 166, 0.2);
}

.pricing-card.featured {
  border: 2.5px solid var(--cyan-dark);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured::before {
  content: "RECOMMENDED";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--cyan-dark);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
  box-shadow: 0 2px 6px rgba(8, 149, 166, 0.3);
}

.plan-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.plan-title {
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.plan-users {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.plan-price {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  text-align: center;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.plan-price small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.plan-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-card .btn {
  width: 100%;
}

/* Call to Action Section */
.cta-section {
  text-align: center;
  background: radial-gradient(circle at 10% 90%, rgba(18, 230, 255, 0.06) 0%, rgba(255, 255, 255, 0) 60%),
              radial-gradient(circle at 90% 10%, rgba(53, 255, 118, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
  padding: 6rem 0;
  border-top: 1px solid rgba(22, 33, 38, 0.05);
}

.cta-box h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}


/* Floating Audio Player Widget */
.audio-player {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(22, 33, 38, 0.08);
  border-radius: 40px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.215, 0.610, 0.355, 1.000);
  max-width: 280px;
}

.audio-player.hidden {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
}

.audio-control-btn {
  background: var(--brand-gradient);
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.audio-control-btn:hover {
  transform: scale(1.05);
}

.audio-control-btn svg {
  width: 16px;
  height: 16px;
}

.audio-details {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.audio-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.audio-status {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Waveform Animation */
.waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 18px;
  width: 24px;
  margin-left: 4px;
}

.waveform .bar {
  width: 3px;
  height: 100%;
  background-color: var(--cyan-dark);
  border-radius: 1px;
  transform: scaleY(0.25);
  transform-origin: bottom;
  transition: transform 0.2s ease;
}

.waveform.playing .bar {
  animation: wave 1.2s ease infinite alternate;
}

.waveform.playing .bar:nth-child(1) { animation-duration: 0.8s; }
.waveform.playing .bar:nth-child(2) { animation-duration: 1.1s; animation-delay: 0.15s; }
.waveform.playing .bar:nth-child(3) { animation-duration: 0.9s; animation-delay: 0.3s; }
.waveform.playing .bar:nth-child(4) { animation-duration: 1.3s; animation-delay: 0.45s; }

@keyframes wave {
  0% { transform: scaleY(0.2); }
  100% { transform: scaleY(1.0); }
}

.audio-close-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

.audio-close-btn:hover {
  color: var(--text);
}

/* Scroll-driven reveals fallback style */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000),
              transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

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

/* Native CSS Scroll Timeline styles (Where supported) */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes fade-slide-up {
      from {
        opacity: 0;
        transform: translateY(60px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    body.native-scroll-animations .reveal-on-scroll {
      opacity: 1; /* reset base state so animation controls it */
      transform: none;
      animation: fade-slide-up auto linear;
      animation-timeline: view();
      animation-range: entry 10% entry 40%;
    }
  }
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-headline {
    text-align: center;
  }
  
  .hero-subtitle {
    text-align: center;
    margin: 0 auto;
  }
  
  .preview-config-card {
    margin: 2rem auto 0 auto;
  }
  
  .hero-btn-group {
    justify-content: center;
  }

  .hero-media {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
  }
  
  .pricing-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 860px) {
  .pillar-row {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .pillar-row:nth-child(even) .pillar-content {
    order: 1;
  }

  .pillar-row:nth-child(even) .pillar-visual {
    order: 2;
  }
}

@media (max-width: 575px) {
  .pricing-container {
    grid-template-columns: 1fr;
  }

  .pastor-relief-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   New Scrollytelling & Church App Showcase Styles
   ========================================================================== */

/* Hero Headline & Interactive Input */
.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 1.5rem;
  text-align: left;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  max-width: 650px;
  margin: 0;
  line-height: 1.6;
  text-align: left;
}

/* Live App Config Card */
.preview-config-card {
  background: #ffffff;
  border: 1px solid rgba(8, 149, 166, 0.15);
  border-radius: 20px;
  padding: 1.5rem;
  width: 100%;
  max-width: 580px;
  margin: 2rem 0 0 0;
  box-shadow: 
    0 10px 30px rgba(8, 149, 166, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.02);
  position: relative;
  text-align: left;
}

.hero-btn-group {
  justify-content: flex-start;
}

.hero-iphone-wrapper {
  margin: 0 auto;
  transform: rotate(-1.5deg) scale(0.95);
  box-shadow: 
    0 25px 60px -15px rgba(22, 33, 38, 0.18),
    0 0 0 4px #2c3e46,
    0 0 30px rgba(8, 149, 166, 0.12);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.hero-iphone-wrapper:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 
    0 30px 70px -10px rgba(22, 33, 38, 0.25),
    0 0 0 4px #2c3e46,
    0 0 40px rgba(8, 149, 166, 0.2);
}

.config-card-header {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #18e85c;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-green 1.8s infinite ease-in-out;
}

@keyframes pulse-green {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.config-inputs-row {
  display: flex;
  gap: 1.25rem;
  width: 100%;
}

@media (max-width: 600px) {
  .config-inputs-row {
    flex-direction: column;
    gap: 1rem;
  }
}

.input-group-fld {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-group-fld label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-group-fld input {
  width: 100%;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: none;
  background: var(--bg-alt);
  color: var(--text);
  font-family: inherit;
  transition: all 0.25s ease;
}

.input-group-fld input:focus {
  background: #ffffff;
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 4px rgba(8, 149, 166, 0.08);
}

/* Scrollytelling Cards */
.scrolly-card {
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 0;
  opacity: 0.35;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.scrolly-card.active {
  opacity: 1;
  transform: translateY(0);
}

.scrolly-card .step-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cyan-dark);
  margin-bottom: 0.75rem;
  display: inline-block;
  background: rgba(8, 149, 166, 0.06);
  padding: 4px 10px;
  border-radius: 20px;
}

.scrolly-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  text-align: left;
  margin-bottom: 1.25rem;
  color: var(--text);
  line-height: 1.15;
}

.scrolly-card p {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.showcase-right-col {
  position: sticky;
  top: 100px;
  height: calc(100vh - 120px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

/* Premium iPhone Frame Mockup */
.iphone-frame-wrapper {
  width: 300px;
  height: 600px;
  border-radius: 44px;
  background: #162126;
  padding: 11px;
  box-shadow: 
    0 25px 60px -15px rgba(22, 33, 38, 0.22),
    0 0 0 4px #2c3e46,
    0 0 20px rgba(8, 149, 166, 0.1);
  position: relative;
  overflow: visible;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.iphone-container {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  border: 1px solid #000000;
}

.iphone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 18px;
  background: #162126;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 10;
}

.iphone-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #f4f7f9;
  position: relative;
}

/* App Header & Navigation styling */
.app-status-bar {
  height: 38px;
  padding: 10px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: #162126;
  z-index: 9;
  flex-shrink: 0;
}

.app-status-bar .status-icons {
  letter-spacing: 1px;
}

.app-header-nav {
  height: 48px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border-bottom: 1px solid rgba(22, 33, 38, 0.05);
  z-index: 8;
  flex-shrink: 0;
}

.app-logo-icon {
  font-size: 1.15rem;
}

.app-church-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

/* Screen Content Canvas */
.app-screen-content {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.app-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  overflow-y: auto;
  scrollbar-width: none;
}

.app-screen::-webkit-scrollbar {
  display: none;
}

.app-screen.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.screen-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  flex-shrink: 0;
}

.screen-title-row h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

.add-prayer-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: var(--cyan-dark);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Act 1: Prayer Feed Mock */
.prayer-cards-feed {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.prayer-card-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(22, 33, 38, 0.05);
  box-shadow: 0 4px 10px rgba(22, 33, 38, 0.01);
}

.prayer-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.45rem;
}

.prayer-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cyan-dark);
  color: #fff;
  font-weight: 700;
  font-size: 0.68rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prayer-card-header div {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.prayer-author {
  font-weight: 800;
  font-size: 0.72rem;
  color: var(--text);
}

.prayer-time {
  font-size: 0.58rem;
  color: var(--text-muted);
}

.prayer-text {
  font-size: 0.72rem;
  color: #374151;
  line-height: 1.4;
  margin-bottom: 0.45rem;
  text-align: left;
}

.prayer-card-actions {
  display: flex;
  align-items: center;
  position: relative;
}

.pray-btn {
  border: none;
  background: rgba(8, 149, 166, 0.06);
  color: var(--cyan-dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.pray-btn:hover, .pray-btn.active {
  background: rgba(8, 149, 166, 0.14);
}

.heart-icon {
  font-size: 0.72rem;
}

.pray-btn-text {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  font-family: inherit !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  cursor: default !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  box-shadow: none !important;
  outline: none !important;
  color: #64748b !important;
}

.pray-btn-text.active {
  color: var(--cyan-dark) !important;
}


/* Act 2: Events RSVP Mock */
.events-feed {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.event-card-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(22, 33, 38, 0.05);
  display: flex;
  gap: 12px;
  box-shadow: 0 4px 10px rgba(22, 33, 38, 0.01);
}

.event-date-badge {
  width: 38px;
  height: 40px;
  border-radius: 10px;
  background: rgba(8, 149, 166, 0.05);
  border: 1px solid rgba(8, 149, 166, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.15;
  flex-shrink: 0;
}

.event-date-badge .month {
  font-size: 0.52rem;
  font-weight: 700;
  color: var(--cyan-dark);
  text-transform: uppercase;
}

.event-date-badge .day {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.event-details h4 {
  font-size: 0.78rem;
  margin: 0;
  font-weight: 700;
  text-align: left;
}

.event-details .time {
  font-size: 0.6rem;
  color: var(--cyan-dark);
  font-weight: 700;
  margin: 0;
}

.event-details .desc {
  font-size: 0.65rem;
  color: var(--text-muted);
  line-height: 1.35;
  margin: 0 0 0.45rem 0;
  text-align: left;
}

.rsvp-row {
  display: flex;
  gap: 6px;
}

.btn-rsvp {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-rsvp.active {
  background: var(--cyan-dark);
  color: #fff;
  box-shadow: 0 2px 6px rgba(8, 149, 166, 0.2);
}

.btn-rsvp.outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* Act 3: Secure Giving Mock */
.giving-container {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.giving-card-hero {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.25rem 0.85rem;
  border: 1px solid rgba(22, 33, 38, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 12px rgba(22, 33, 38, 0.01);
}

.giving-heart-glow {
  font-size: 2rem;
  margin-bottom: 0.35rem;
  animation: pulse-heart 2s infinite ease-in-out;
}

@keyframes pulse-heart {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.giving-card-hero h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 3px;
}

.giving-tagline {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.amount-presets {
  display: flex;
  gap: 6px;
  margin-bottom: 1rem;
  width: 100%;
  justify-content: center;
}

.preset-btn {
  flex: 1;
  max-width: 54px;
  height: 26px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.preset-btn.active {
  background: var(--cyan-dark);
  color: #fff;
  border-color: var(--cyan-dark);
}

.btn-give-now {
  width: 100%;
  height: 34px;
  border-radius: 17px;
  background: #18e85c;
  color: #fff;
  border: none;
  font-size: 0.75rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(24, 232, 92, 0.2);
}

.fee-comparison-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
  border: 1px dashed rgba(8, 149, 166, 0.2);
  position: relative;
}

.fee-badge {
  position: absolute;
  top: -8px;
  right: 12px;
  background: #18e85c;
  color: #fff;
  font-size: 0.52rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fee-comparison-card p {
  font-size: 0.65rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.4;
  text-align: left;
}

/* Act 4: Daily Devotional Pushes */
.scripture-hero-card {
  background: linear-gradient(135deg, #0895a6 0%, #067280 100%);
  color: #ffffff;
  border-radius: 18px;
  padding: 1.35rem 0.95rem;
  text-align: center;
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 15px rgba(8, 149, 166, 0.15);
}

.scripture-quote {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.45;
  margin-bottom: 0.45rem;
}

.scripture-reference {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.75);
}

.lockscreen-notification-mock {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 4px 15px rgba(22, 33, 38, 0.05);
  text-align: left;
}

.notif-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.58rem;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.lockscreen-notification-mock h4 {
  font-size: 0.72rem;
  font-weight: 700;
  margin: 0 0 2px 0;
  text-align: left;
}

.lockscreen-notification-mock p {
  font-size: 0.65rem;
  color: #374151;
  margin: 0;
  line-height: 1.35;
}

/* App Bottom Navigation styling */
.app-bottom-nav {
  height: 52px;
  background: #ffffff;
  border-top: 1px solid rgba(22, 33, 38, 0.05);
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-shrink: 0;
  z-index: 8;
}

.nav-btn {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  flex: 1;
  height: 100%;
  gap: 2px;
  transition: all 0.2s ease;
  outline: none;
}

.nav-btn.active {
  color: var(--cyan-dark);
}

.nav-btn .icon {
  font-size: 1.05rem;
}

.nav-btn .label {
  font-size: 0.58rem;
  font-weight: 700;
}

/* Hide mobile inline visuals on desktop */
.visual-indicator-mobile {
  display: none;
}

/* Responsive collapse behavior */
@media (max-width: 800px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .showcase-right-col {
    display: none; /* Hide sticky panel */
  }
  
  .hero-content-block {
    min-height: auto;
    padding: 2rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-headline {
    text-align: center;
  }
  
  .hero-subtitle {
    text-align: center;
    margin: 0 auto;
  }
  
  .preview-config-card {
    display: none !important;
  }
  
  .hero-btn-group {
    justify-content: center;
  }
  
  .scrolly-card {
    min-height: auto;
    padding: 2.5rem 0;
    opacity: 1;
    transform: none;
  }
  
  .visual-indicator-mobile {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    width: 100%;
  }

  .visual-indicator-mobile .iphone-frame-wrapper {
    box-shadow: 0 15px 35px rgba(22, 33, 38, 0.12);
  }


  #step-4-phone-container {
    display: none !important;
  }

  /* Desktop Customizers Hiding */
  .facebook-composer,
  .event-customizer-card,
  .admin-dispatch-card {
    display: none !important;
  }
}

  /* Mobile Premium Visual Cards */
  .mobile-visual-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 1.25rem;
    max-width: 420px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    margin: 0 auto;
  }

  .mobile-visual-card .card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem;
  }

  .mobile-visual-card .avatar-glow {
    position: relative;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--cyan-dark) 0%, #00c853 100%);
  }

  .mobile-visual-card .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-dark);
  }

  .mobile-visual-card .author-info {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .mobile-visual-card .author-name {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-dark);
  }

  .mobile-visual-card .post-time {
    font-size: 0.7rem;
    color: #8a8d91;
    font-weight: 600;
  }

  .mobile-visual-card .card-badge {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--cyan-dark);
    background: rgba(8, 149, 166, 0.08);
    padding: 4px 10px;
    border-radius: 12px;
  }

  .mobile-visual-card .card-badge.success-badge {
    color: #00c853;
    background: rgba(0, 200, 83, 0.08);
  }

  .mobile-visual-card .card-body {
    padding: 0.25rem 0;
  }

  .mobile-visual-card .prayer-text {
    font-size: 0.9rem;
    line-height: 1.45;
    color: #2c3e50;
    margin: 0;
    font-weight: 600;
  }

  .mobile-visual-card .card-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
  }

  .mobile-visual-card.event-card-wrapper {
    padding: 0.5rem;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .mobile-visual-card.event-card-wrapper .event-card-item {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 1.25rem;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-visual-card .icon-glow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1.5px solid;
    box-sizing: border-box;
  }

  /* Animated Prayer Feed Demo Container */
  .prayer-feed-demo {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 350px; /* Reduced from 370px since notification is removed */
    margin: 0 auto;
  }

  /* Animated Groups Feed List Container (stacked vertical feed) */
  .groups-feed-list-wrapper {
    width: 100%;
    max-width: 420px;
    background: #f4f7f9;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  .groups-feed-header {
    background: #ffffff;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  }

  .groups-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .group-logo-icon {
    font-size: 1.1rem;
    color: var(--cyan-dark);
  }

  .group-title-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-dark);
  }

  .group-badge {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--cyan-dark);
    background: rgba(8, 149, 166, 0.08);
    padding: 3px 8px;
    border-radius: 20px;
  }

  .groups-feed-list {
    padding: 12px;
    height: 350px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scrollbar-width: none;
    box-sizing: border-box;
  }

  .groups-feed-list::-webkit-scrollbar {
    display: none;
  }

  .groups-feed-list .mobile-visual-card {
    position: relative;
    width: 100%;
    box-sizing: border-box;
  }

  /* Unify groups feed cards styling with other feature mockup cards */
  .groups-feed-list .mobile-visual-card:not(.event-card-wrapper) {
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    padding: 1.25rem !important;
    box-sizing: border-box !important;
  }

  .groups-feed-list .event-card-item {
    background: #ffffff !important;
    border-radius: 16px !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    padding: 1.25rem !important;
  }

  #desktop-groups-demo .prayer-comments-section {
    margin-top: 8px;
    padding-top: 6px;
  }

  #desktop-groups-demo .comment-item {
    margin-top: 4px;
    padding-top: 4px;
  }

  #desktop-groups-demo.groups-feed-list {
    padding: 12px 0px;
  }


  /* Animated Scripture Feed Demo Container */
  .scripture-feed-demo {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 350px;
    margin: 0 auto;
  }

  .scripture-feed-demo .mobile-visual-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }

  #desktop-scripture-demo-card {
    position: relative !important;
  }

  /* Animated Outreach Feed Demo Container */
  .outreach-feed-demo {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 350px;
    margin: 0 auto;
  }

  .outreach-feed-demo .mobile-visual-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }

  .map-pin {
    opacity: 0;
    transform: scale(0);
    transform-origin: center;
    transform-box: fill-box;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .map-pin.pin-dropped {
    opacity: 1 !important;
    transform: scale(1) !important;
  }

  /* Outreach Toast Notification style */
  .outreach-toast {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translate(-50%, -40px);
    background: rgba(22, 33, 38, 0.95);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    z-index: 101;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .outreach-toast.show {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  .mini-map-preview {
    position: relative;
    height: 120px;
    background: #f1f5f9;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 8px;
  }

  .preset-pill {
    flex: 1;
    text-align: center;
    padding: 6px;
    border: 1px solid #e4e6eb;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    transition: all 0.2s ease;
  }

  .preset-pill.active {
    border-color: var(--cyan-dark) !important;
    background: rgba(8, 149, 166, 0.05) !important;
    font-weight: 800 !important;
    color: var(--cyan-dark) !important;
  }

  /* Demo Prayer Wall Card */
  .prayer-feed-demo .prayer-wall-card {
    position: absolute;
    top: 0; /* Reset top to 0 since notification is removed */
    left: 0;
    right: 0;
  }

  /* Value switcher layout (standard size) */
  .count-value, .comment-value {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
  }

  /* JavaScript Animation Helper Classes */
  .notif-show {
    display: block !important;
    animation: slideInDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .notif-hide {
    animation: slideOutUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .card-show {
    display: block !important;
    animation: slideInUpCard 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .card-hide {
    animation: fadeOutCard 0.4s ease forwards;
  }

  @keyframes slideInUpCard {
    from {
      opacity: 0;
      transform: translateY(15px) scale(0.96);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes fadeOutCard {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
/* End of global mockup styling */

/* Floating Prayer Hearts Animation */
.floating-heart {
  position: absolute;
  bottom: 12px;
  left: 24px;
  font-size: 1.15rem;
  pointer-events: none;
  z-index: 100;
  animation: float-up-fade 1.2s cubic-bezier(0.08, 0.82, 0.17, 1) forwards;
}

@keyframes float-up-fade {
  0% {
    transform: translate(0, 0) scale(0.6);
    opacity: 0;
  }
  15% {
    transform: translate(var(--x-offset, 0px), -15px) scale(1.3);
    opacity: 1;
  }
  100% {
    transform: translate(calc(var(--x-offset, 0px) * 1.6), -80px) scale(0.9);
    opacity: 0;
  }
}

/* ==========================================================================
   Seamless Transitions & Configurations Overlay
   ========================================================================== */
.app-config-transition-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, rgba(22, 33, 38, 0.98) 0%, #162126 100%);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  color: #ffffff;
}

.app-config-transition-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.transition-content {
  text-align: center;
  max-width: 400px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-config-transition-overlay.active .transition-content {
  transform: translateY(0);
}

.transition-spinner-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.transition-spinner {
  width: 100%;
  height: 100%;
  border: 4px solid rgba(18, 230, 255, 0.1);
  border-left-color: var(--cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.transition-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

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

.transition-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.transition-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.transition-progress-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.transition-progress-fill {
  width: 0%;
  height: 100%;
  background: var(--brand-gradient);
  border-radius: 10px;
}

.app-config-transition-overlay.active .transition-progress-fill {
  animation: fill-bar 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fill-bar {
  to { width: 100%; }
}

/* Interactive Prayer Widget Styles: Facebook-Style Composer */
.prayer-demo-widget.facebook-composer {
  background: #ffffff;
  border: 1px solid #e4e6eb;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 4px 15px rgba(22, 33, 38, 0.04);
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  text-align: left;
}

.prayer-demo-widget.facebook-composer.heartbeat-pulse,
.swapp-composer-card.facebook-composer.heartbeat-pulse {
  animation: composer-pulse-glow 1.5s infinite ease-in-out;
}

@keyframes composer-pulse-glow {
  0% { 
    box-shadow: 0 4px 15px rgba(22, 33, 38, 0.04); 
    border-color: #e4e6eb; 
  }
  50% { 
    box-shadow: 0 4px 25px rgba(8, 149, 166, 0.35), 0 0 15px rgba(8, 149, 166, 0.25); 
    border-color: rgba(8, 149, 166, 0.6); 
  }
  100% { 
    box-shadow: 0 4px 15px rgba(22, 33, 38, 0.04); 
    border-color: #e4e6eb; 
  }
}

.composer-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.85rem;
}

.composer-avatar {
  width: 36px !important;
  height: 36px !important;
  font-size: 0.8rem !important;
  margin: 0 !important;
}

.composer-meta {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.composer-author {
  font-weight: 700;
  font-size: 0.85rem;
  color: #050505;
}

.composer-audience {
  font-size: 0.65rem;
  color: #65676b;
  margin-top: 1px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.composer-body {
  margin-bottom: 0.85rem;
}

.composer-body textarea {
  width: 100%;
  height: 72px;
  border: none;
  padding: 0;
  font-size: 0.95rem;
  font-family: inherit;
  resize: none;
  outline: none;
  background: transparent;
  color: #050505;
}

.composer-body textarea::placeholder {
  color: #8c9096;
}

.composer-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e4e6eb;
  padding-top: 0.75rem;
}

.composer-attachments {
  display: flex;
  gap: 12px;
}

.attachment-btn {
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  user-select: none;
}

.attachment-btn:hover {
  opacity: 1;
}

.composer-submit-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.composer-post-btn {
  border: none;
  background: var(--cyan-dark);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.composer-post-btn:hover {
  background: #067280;
}

.composer-post-btn:disabled {
  background: #e4e6eb;
  color: #bcc0c4;
  cursor: not-allowed;
}

.char-counter {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* User-submitted Prayer Card & Activity Styles */
.prayer-card-item.user-submitted {
  animation: slideInDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  border: 1px solid rgba(8, 149, 166, 0.2);
  background: #fcfefe;
}

.prayer-comments-section {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(22, 33, 38, 0.08);
  font-size: 0.72rem;
  animation: commentFadeIn 0.3s ease forwards;
}

.comments-title {
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.comment-item {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  animation: commentFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.comment-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #cbd5e1;
  color: #475569;
  font-weight: 700;
  font-size: 0.58rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comment-avatar.user-sj { background: #fee2e2; color: #ef4444; }
.comment-avatar.user-ew { background: #dcfce7; color: #22c55e; }
.comment-avatar.user-jd { background: #dbeafe; color: #3b82f6; }
.comment-avatar.user-pl { background: #e0f7fa; color: #00838f; }
.comment-avatar.user-tw { background: #f3e5f5; color: #6a1b9a; }

.comment-body {
  background: rgba(22, 33, 38, 0.03);
  border-radius: 8px;
  padding: 0.25rem 0.5rem;
  flex: 1;
  text-align: left;
  line-height: 1.2;
}

.comment-author {
  font-weight: 700;
  color: var(--text);
  margin-right: 4px;
}

.comment-text {
  color: #4b5563;
}

/* Floating Hearts Animation */
.floating-heart {
  position: absolute;
  font-size: 0.85rem;
  pointer-events: none;
  animation: floatUpHeart 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  z-index: 100;
  bottom: 12px;
  left: 18px;
}

.pray-btn.active.pulse {
  animation: heartPulse 0.4s ease;
}

@keyframes heartPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes commentFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatUpHeart {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.7) rotate(0deg);
  }
  15% {
    opacity: 1;
    transform: translate(var(--x-offset, 0), -10px) scale(1.1);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(var(--x-dest, -10px), -65px) scale(0.8) rotate(var(--rot, 15deg));
  }
}

/* Customizer Sync Button Glow & Scanner Sweeper Styles */
#apply-config-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

#apply-config-btn.has-changes {
  animation: apply-btn-glow 1.5s infinite ease-in-out;
  background: var(--cyan-dark);
  color: #fff;
  border-color: var(--cyan-dark);
  box-shadow: 0 0 15px rgba(8, 149, 166, 0.4);
}

@keyframes apply-btn-glow {
  0% { transform: scale(1); box-shadow: 0 0 8px rgba(8, 149, 166, 0.4); }
  50% { transform: scale(1.04); box-shadow: 0 0 20px rgba(8, 149, 166, 0.8); }
  100% { transform: scale(1); box-shadow: 0 0 8px rgba(8, 149, 166, 0.4); }
}

/* Phone Screen Scan Overlay */
.screen-scan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 149, 166, 0.05);
  pointer-events: none;
  z-index: 1000;
  opacity: 0;
  overflow: hidden;
  border-radius: inherit;
}

.screen-scan-overlay::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 6px;
  background: #18e85c;
  box-shadow: 
    0 0 10px #18e85c,
    0 0 20px #18e85c,
    0 0 35px #18e85c;
  opacity: 0.9;
}

.screen-scan-overlay.scanning {
  animation: fade-scan-overlay 1.2s ease forwards;
}

.screen-scan-overlay.scanning::after {
  animation: scan-line-sweep 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fade-scan-overlay {
  0% { opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes scan-line-sweep {
  0% { top: 0%; }
  100% { top: 100%; }
}

/* Updated Text Pulsing Glow Effect */
.glow-highlight {
  display: inline-block;
  animation: text-glow-pulse 1.2s ease forwards;
}

@keyframes text-glow-pulse {
  0% {
    color: inherit;
    transform: scale(1);
    text-shadow: none;
  }
  30% {
    color: #18e85c;
    transform: scale(1.12);
    text-shadow: 
      0 0 8px rgba(24, 232, 92, 0.8),
      0 0 16px rgba(24, 232, 92, 0.5);
  }
  70% {
    color: #18e85c;
    transform: scale(1.12);
    text-shadow: 
      0 0 8px rgba(24, 232, 92, 0.8),
      0 0 16px rgba(24, 232, 92, 0.5);
  }
  100% {
    color: inherit;
    transform: scale(1);
    text-shadow: none;
  }
}

/* Devotional Feed Layout Styles */
.devotional-feed-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.devotional-post-card {
  background: linear-gradient(135deg, #0895a6 0%, #067280 100%);
  border-radius: 16px;
  padding: 1rem 0.95rem;
  box-shadow: 
    0 10px 25px rgba(8, 149, 166, 0.12),
    0 1px 3px rgba(0, 0, 0, 0.02);
  color: #ffffff;
  position: relative;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.devotional-post-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.devotional-post-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.65rem;
}

.devotional-avatar-glow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.devotional-avatar-glow::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
  animation: avatar-glow-pulse 2s infinite ease-in-out;
}

@keyframes avatar-glow-pulse {
  0% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.08); opacity: 0.8; }
  100% { transform: scale(1); opacity: 0.4; }
}

.devotional-author-info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.devotional-author {
  font-weight: 800;
  font-size: 0.98rem;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.devotional-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 1px;
}

.devotional-post-body {
  text-align: left;
}

.devotional-quote {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.45;
  color: #ffffff;
  margin: 0 0 0.35rem 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.devotional-ref {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.75);
}

/* Swapp High-Fidelity Feed Mockup Styles */
.app-header-nav {
  justify-content: space-between !important;
  gap: 0 !important;
}

.app-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

.app-header-left .app-logo-icon-svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.app-header-bell-btn {
  background: transparent;
  border: none;
  color: #4b5563;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.app-header-bell-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.app-header-user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #1f2937;
  color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  flex-shrink: 0;
}

/* Composer Card Styles */
.swapp-composer-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 0.85rem;
  border: 1px solid rgba(22, 33, 38, 0.06);
  box-shadow: 0 4px 12px rgba(22, 33, 38, 0.015);
  margin-bottom: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.composer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}

.composer-avatar-green {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #00c853;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00c853;
  flex-shrink: 0;
}

.composer-post-btn-green {
  background: #00c853;
  color: #ffffff;
  border: none;
  padding: 5px 14px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 0.72rem;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: background 0.2s ease, transform 0.1s ease;
}

.composer-post-btn-green:hover:not(:disabled) {
  background: #00a844;
}

.composer-post-btn-green:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.composer-text-wrapper {
  width: 100%;
}

.composer-textarea {
  width: 100%;
  height: 64px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.5rem 0.65rem;
  font-size: 0.72rem;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  resize: none;
  outline: none;
  background: #ffffff;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.composer-textarea:focus {
  border-color: #00c853;
}

.composer-pills-row {
  display: flex;
  gap: 6px;
  margin-top: 4px;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar for pills row */
.composer-pills-row::-webkit-scrollbar {
  display: none;
}
.composer-pills-row {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.composer-pill-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 16px;
  font-size: 0.62rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.2s ease;
  background: #ffffff;
}

.composer-pill-btn.active {
  background: #00c853;
  color: #ffffff;
  border: 1px solid #00c853;
}

.composer-pill-btn.disabled {
  color: #9ca3af;
  border: 1px solid #e5e7eb;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Feed Card Styles */
.swapp-feed-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(22, 33, 38, 0.05);
  box-shadow: 0 4px 10px rgba(22, 33, 38, 0.01);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-align: left;
  margin-bottom: 0.65rem;
}

.swapp-feed-card.user-submitted {
  animation: slideInDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  border: 1px solid rgba(0, 200, 83, 0.25);
  background: #fcfefe;
}

.feed-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feed-card-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.68rem;
  color: #ffffff;
  flex-shrink: 0;
}

.feed-card-avatar.admin-avatar {
  background: #70757a;
}

.feed-card-avatar.user-avatar {
  background: #0895a6;
}

.feed-card-avatar.user-avatar.tommy-avatar {
  background: linear-gradient(135deg, #10b981, #059669);
}

.feed-card-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
}

.feed-card-author {
  font-weight: 800;
  color: #111827;
}

.feed-card-divider {
  color: #9ca3af;
}

.feed-card-time {
  color: #6b7280;
}

.feed-card-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feed-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  color: #111827;
  margin: 0;
}

.feed-card-text {
  font-size: 0.72rem;
  color: #374151;
  line-height: 1.4;
  margin: 0;
}

.feed-card-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(22, 33, 38, 0.03);
  padding-top: 0.45rem;
  margin-top: 0.15rem;
}

.feed-action-btn {
  background: transparent;
  border: none;
  color: #4b5563;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
  border-radius: 6px;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease;
}

.feed-action-btn:hover {
  background: rgba(0, 0, 0, 0.03);
}

.feed-action-btn.active {
  color: #00c853;
}

.feed-action-btn .action-icon {
  stroke: currentColor;
}

.feed-action-btn.active .action-icon.outline-thumb {
  fill: #00c853;
  stroke: #00c853;
}

.feed-action-btn.active.pulse {
  animation: heartPulse 0.4s ease;
}

/* Premium Cyan-Themed Composer Card */
.swapp-composer-card.facebook-composer {
  background: #ffffff;
  border: 1px solid #e4e6eb;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.3s ease;
  position: relative;
  text-align: left;
}

.composer-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.composer-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.composer-avatar-cyan {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--cyan-dark);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-dark);
  flex-shrink: 0;
}

.composer-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.composer-audience {
  font-size: 0.65rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 3px;
}

.composer-status-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--cyan-dark);
  background: rgba(8, 149, 166, 0.08);
  padding: 4px 8px;
  border-radius: 12px;
}

.composer-textarea-cyan {
  width: 100%;
  height: 90px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  font-size: 0.85rem;
  font-family: inherit;
  color: var(--text);
  resize: none;
  outline: none;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.composer-textarea-cyan:focus {
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 3px rgba(8, 149, 166, 0.1);
}

.composer-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.composer-pills-row {
  display: flex;
  gap: 6px;
}

.composer-pill-btn-cyan {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.65rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: all 0.2s ease;
  background: #ffffff;
  color: var(--text-muted);
  border: 1px solid #e5e7eb;
}

.composer-pill-btn-cyan.active {
  background: var(--cyan-dark);
  color: #ffffff;
  border: 1px solid var(--cyan-dark);
}

.composer-pill-btn-cyan.disabled {
  color: #bcc0c4;
  border: 1px solid #e5e7eb;
  cursor: not-allowed;
  opacity: 0.6;
}

.composer-post-btn-cyan {
  background: var(--cyan-dark);
  color: #ffffff;
  border: none;
  padding: 8px 14px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: background 0.2s ease, transform 0.1s ease;
}

.composer-post-btn-cyan:hover:not(:disabled) {
  background: #067280;
}

.composer-post-btn-cyan:disabled {
  background: #e4e6eb;
  color: #bcc0c4;
  cursor: not-allowed;
}

/* Outreach Dispatch & Polyline Map Styles */
.dispatch-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(22, 33, 38, 0.05);
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.dispatch-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 3px;
  background: var(--cyan-dark);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.dispatch-row:hover {
  background: rgba(22, 33, 38, 0.02) !important;
}

.dispatch-row.active {
  background: rgba(8, 149, 166, 0.03) !important;
}

.dispatch-row.active::before {
  opacity: 1;
}

.dispatch-row:last-child {
  border-bottom: none;
}

.dispatch-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #162126;
  font-family: inherit;
}

.dispatch-meta {
  font-size: 0.65rem;
  color: #8a8d91;
  font-weight: 500;
  margin-top: 1px;
}

.dispatch-btn {
  background: var(--cyan-dark);
  color: #ffffff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  outline: none;
}

.dispatch-btn:hover {
  background: #067280;
  transform: scale(1.04);
}

.dispatch-btn:active {
  transform: scale(0.96);
}

.outreach-push-banner {
  transition: top 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.outreach-push-banner.show {
  top: 48px !important; /* Slide down just below app nav header */
}

@keyframes pulseGhost {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(8, 149, 166, 0.2); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(8, 149, 166, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(8, 149, 166, 0); }
}

.map-ctrl-btn-green {
  transition: all 0.2s ease;
}

.map-ctrl-btn-green:hover {
  background: #00a846 !important;
  transform: scale(1.08);
}

.map-ctrl-btn-white {
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-ctrl-btn-white:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2) !important;
}

.map-ctrl-btn-white:active {
  transform: scale(0.95);
}

/* SVG House Dots */
.svg-house-dot {
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.svg-house-dot:hover {
  r: 6.5px !important;
  stroke: #162126 !important;
  stroke-width: 1.5px !important;
}

.svg-house-dot.state-unvisited {
  fill: #ffffff;
  stroke: #555555;
  stroke-width: 1.2px;
}

.svg-house-dot.state-nothome {
  fill: #d97706; /* Amber */
  stroke: #ffffff;
  stroke-width: 1.2px;
  filter: drop-shadow(0 2px 4px rgba(217, 119, 6, 0.35));
}

.svg-house-dot.state-prayed {
  fill: #e11d48; /* Rose/Red */
  stroke: #ffffff;
  stroke-width: 1.2px;
  filter: drop-shadow(0 2px 4px rgba(244, 63, 94, 0.45));
}

.svg-house-dot.state-tract {
  fill: #0895a6; /* Cyan */
  stroke: #ffffff;
  stroke-width: 1.2px;
  filter: drop-shadow(0 2px 4px rgba(8, 149, 166, 0.35));
}

.app-screen {
  opacity: 0;
  transform: scale(0.97);
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-screen.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}


