:root {
  --bg: #050816;
  --bg-soft: #0c1326;
  --panel: rgba(14, 20, 36, 0.62);
  --panel-strong: rgba(10, 15, 28, 0.92);
  --text: #f7f8fc;
  --muted: #cfd5e4;
  --line: rgba(255, 255, 255, 0.11);
  --primary: #8fd3ff;
  --secondary: #c7a9ff;
  --accent: #8cffd1;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top, rgba(127, 86, 217, 0.12), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(66, 201, 255, 0.14), transparent 25%),
    linear-gradient(180deg, #03050d 0%, #07101f 42%, #050816 100%);
  color: var(--text);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

#particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.65;
  pointer-events: none;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.glass {
  background: var(--panel);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 30;
  width: min(calc(100% - 24px), var(--container));
  margin: 18px auto 0;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand img { height: 44px; }
.desktop-nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--muted);
}
.desktop-nav a:hover, .footer-links a:hover { color: #fff; }
.desktop-cta { margin-left: auto; }
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px auto;
  transition: 0.3s ease;
}
.mobile-menu {
  position: fixed;
  top: 92px;
  left: 12px;
  right: 12px;
  z-index: 25;
  border-radius: 24px;
  padding: 18px;
  display: grid;
  gap: 14px;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { padding: 12px 18px; font-size: 0.92rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #07111d;
  box-shadow: 0 12px 30px rgba(143, 211, 255, 0.28);
}
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  color: white;
}

.hero {
  min-height: 100vh;
  width: min(calc(100% - 24px), var(--container));
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 28px;
  padding: 110px 0 60px;
  position: relative;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 40px;
}
.aurora, .light-orb, .grid-lines {
  position: absolute;
  inset: auto;
}
.aurora {
  filter: blur(50px);
  opacity: 0.6;
  mix-blend-mode: screen;
  animation: floatAura 18s ease-in-out infinite;
}
.aurora-one {
  width: 480px;
  height: 480px;
  left: -80px;
  top: 60px;
  background: radial-gradient(circle, rgba(143, 211, 255, 0.35), transparent 65%);
}
.aurora-two {
  width: 420px;
  height: 420px;
  right: -70px;
  bottom: 40px;
  background: radial-gradient(circle, rgba(199, 169, 255, 0.3), transparent 65%);
  animation-delay: -7s;
}
.grid-lines {
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(180deg, rgba(255,255,255,0.65), transparent 80%);
}
.light-orb {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
}
.orb-left { left: 18%; top: 15%; background: var(--accent); animation: drift 14s ease-in-out infinite; }
.orb-right { right: 10%; bottom: 18%; background: var(--secondary); animation: drift 16s ease-in-out infinite reverse; }

.hero-content, .hero-side { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.hero h1 {
  margin: 22px 0 16px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}
.hero h1 span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  background: linear-gradient(135deg, #fff, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  color: transparent;
}
.hero-text {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 34px;
}
.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.mini-card {
  padding: 20px;
  border-radius: var(--radius);
}
.mini-card strong, .spotlight-card h3, .belief-card h3, .truth-card h3, .step-card h3, .floating-panel h3, .salvation-box h2, .mission-content h2, .visit-copy h2, .section-heading h2, .section-copy h2 { font-size: clamp(1.4rem, 2vw, 2.7rem); }
.mini-card strong { display: block; font-size: 1rem; margin-bottom: 8px; }
.mini-card span { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

.spotlight-card {
  border-radius: 32px;
  padding: 28px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.spotlight-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}
.spotlight-card p { color: var(--muted); line-height: 1.8; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
}
.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  width: min(calc(100% - 24px), var(--container));
  margin: 0 auto;
  padding: 90px 0;
}
.section-tight { padding-top: 30px; }
.section-heading.center, .section-copy { max-width: 860px; }
.section-heading.center { margin: 0 auto 40px; text-align: center; }
.section-heading p, .section-copy p, .mission-content p, .visit-copy p, .salvation-box p { color: var(--muted); line-height: 1.9; }
.chip {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.belief-grid, .steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.belief-card, .step-card {
  padding: 26px;
  border-radius: 28px;
}
.belief-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(143, 211, 255, 0.16), rgba(199, 169, 255, 0.15));
  border: 1px solid rgba(255,255,255,0.08);
}
.belief-card p, .step-card p, .truth-card p { color: var(--muted); line-height: 1.8; }

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}
.truths-stack {
  display: grid;
  gap: 18px;
}
.truth-card {
  position: relative;
  padding: 28px 28px 28px 94px;
  border-radius: 28px;
}
.truth-number {
  position: absolute;
  left: 24px;
  top: 24px;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary);
}

.mission-band { padding-top: 30px; }
.mission-content {
  border-radius: 36px;
  padding: 42px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission-content::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 80deg, rgba(143,211,255,0.14), transparent 25%, rgba(199,169,255,0.12), transparent 55%, rgba(140,255,209,0.08));
  animation: spin 18s linear infinite;
}
.mission-content > * { position: relative; z-index: 1; }
.mission-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.mission-points span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.step-card span {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 800;
}

.visit-panel {
  border-radius: 36px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}
.visit-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: var(--muted);
}
.visit-box { position: relative; min-height: 100%; }
.floating-panel {
  height: 100%;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.14);
}
.floating-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.salvation-section { padding-top: 10px; }
.salvation-box {
  border-radius: 36px;
  padding: 38px;
  text-align: center;
}
.prayer {
  max-width: 900px;
  margin: 22px auto 0;
  font-size: 1.08rem;
}

.footer {
  width: min(calc(100% - 24px), var(--container));
  margin: 0 auto;
  padding: 40px 0 60px;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 26px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 48px; }
.footer-brand p { max-width: 560px; color: var(--muted); line-height: 1.7; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 26px 0;
}
.footer-links h4 { margin: 0 0 12px; }
.footer-links a {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.2s ease, border-color 0.3s ease, background 0.3s ease;
}
.tilt-card:hover {
  border-color: rgba(255,255,255,0.22);
  background: rgba(18, 25, 42, 0.78);
}

@keyframes floatAura {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(22px, -28px, 0) scale(1.08); }
}
@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(32px, -22px, 0); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
  .hero, .split-section, .visit-panel { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 90px; }
  .belief-grid, .steps-grid, .hero-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .desktop-nav, .desktop-cta { display: none; }
  .menu-toggle { display: block; }
  .topbar { border-radius: 24px; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 4.4rem); }
  .mission-content, .salvation-box, .visit-panel, .spotlight-card { padding: 26px; }
  .belief-grid, .steps-grid, .hero-cards, .footer-links, .hero-stats { grid-template-columns: 1fr; }
  .footer-brand, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .truth-card { padding-left: 28px; }
  .truth-number { position: static; display: inline-block; margin-bottom: 10px; }
}

@media (max-width: 560px) {
  .section { padding: 72px 0; }
  .brand img { height: 38px; }
  .topbar { top: 10px; margin-top: 10px; padding: 12px 14px; }
  .btn { width: 100%; }
  .hero-actions { width: 100%; }
}
