/* ============================================================
   CHRIST APPS — Sections
   ============================================================ */

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  transition: background-color 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(5, 5, 7, 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-color: var(--line);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--pad-mobile);
  height: 72px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 750;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  flex-shrink: 0;
}

.navbar__logo img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: contain;
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 6px;
}

@media (min-width: 960px) {
  .navbar__links {
    display: flex;
  }
}

.navbar__links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 14px;
  font-size: 14px;
  font-weight: 550;
  color: var(--text-2);
  border-radius: var(--r-btn);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.navbar__links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.navbar__actions {
  display: none;
  align-items: center;
  gap: 10px;
}

@media (min-width: 960px) {
  .navbar__actions {
    display: flex;
  }
}

.navbar__actions .btn {
  font-size: 13.5px;
}

/* Mobile hamburger */
.navbar__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  color: var(--text-2);
  transition: background-color 0.2s ease;
}

.navbar__hamburger:hover {
  background: rgba(255, 255, 255, 0.06);
}

.navbar__hamburger svg {
  width: 22px;
  height: 22px;
}

@media (min-width: 960px) {
  .navbar__hamburger {
    display: none;
  }
}

/* Mobile drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 160;
  width: min(88vw, 340px);
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.3, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.drawer.open {
  transform: translateX(0);
}

.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  color: var(--text-2);
  transition: background-color 0.2s;
}

.drawer__close:hover {
  background: rgba(255, 255, 255, 0.06);
}

.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer__nav a {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-2);
  border-radius: var(--r-sm);
  transition: color 0.2s, background-color 0.2s;
}

.drawer__nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.drawer__bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.drawer__bottom .btn {
  width: 100%;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 60px;
  overflow: hidden;
}

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

.hero__orb::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(139, 92, 246, 0.16) 0%,
    rgba(139, 92, 246, 0.06) 35%,
    transparent 65%
  );
  filter: blur(2px);
}

.hero__orb::after {
  content: "";
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translateX(-50%);
  width: 460px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(99, 50, 230, 0.18) 0%,
    transparent 70%
  );
  filter: blur(50px);
  animation: hero-breathe 7s ease-in-out infinite alternate;
}

@keyframes hero-breathe {
  0% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-inline: var(--pad-mobile);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero__eyebrow svg {
  width: 15px;
  height: 15px;
}

.hero h1 {
  font-size: clamp(40px, 7.5vw, 84px);
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin-bottom: 28px;
  text-wrap: balance;
}

.hero__sub {
  color: var(--text-2);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 36px;
}

.hero__status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero__available {
  font-size: 13px;
  color: var(--muted);
}

.hero__available strong {
  color: var(--text-2);
  font-weight: 600;
}

.hero__building {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
}

.hero__building .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* Hero ecosystem visual */
.hero-visual {
  position: relative;
  z-index: 2;
  margin-top: 64px;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual__orb {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line-strong);
  box-shadow:
    0 0 0 40px rgba(139, 92, 246, 0.06),
    0 0 0 80px rgba(139, 92, 246, 0.03),
    0 0 100px rgba(139, 92, 246, 0.2),
    0 0 40px rgba(139, 92, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-visual__orb img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
}

.hero-visual__ring {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, 0.15);
  z-index: 1;
  animation: ring-spin 90s linear infinite;
}

.hero-visual__ring::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-visual__node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  background: var(--card-hi);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: var(--text-2);
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 4px 16px -8px rgba(0,0,0,0.5);
  translate: -50% -50%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.hero-visual__node:hover {
  border-color: rgba(167, 139, 250, 0.45);
  box-shadow: 0 4px 20px -8px rgba(139, 92, 246, 0.4);
  color: var(--text);
}

.hero-visual__node svg {
  width: 16px;
  height: 16px;
  color: var(--accent-soft);
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.hero-visual__node:hover svg {
  color: var(--accent-soft);
}

.hero-visual__node:nth-child(4) { animation: node-float-1 8s ease-in-out infinite; }
.hero-visual__node:nth-child(5) { animation: node-float-2 9s ease-in-out infinite 0.5s; }
.hero-visual__node:nth-child(6) { animation: node-float-3 10s ease-in-out infinite 1s; }
.hero-visual__node:nth-child(7) { animation: node-float-1 11s ease-in-out infinite 1.5s; }
.hero-visual__node:nth-child(8) { animation: node-float-2 8.5s ease-in-out infinite 2s; }
.hero-visual__node:nth-child(9) { animation: node-float-3 9.5s ease-in-out infinite 2.5s; }
.hero-visual__node:nth-child(10) { animation: node-float-1 10.5s ease-in-out infinite 3s; }
.hero-visual__node:nth-child(11) { animation: node-float-2 8s ease-in-out infinite 3.5s; }

@keyframes node-float-1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes node-float-2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-4px) translateX(3px); }
}
@keyframes node-float-3 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(3px) translateX(-4px); }
}

@media (min-width: 960px) {
  .hero-visual { max-width: 680px; }
  .hero-visual__orb { width: 200px; height: 200px; }
  .hero-visual__orb img { width: 82px; height: 82px; }
  .hero-visual__ring { width: 420px; height: 420px; }
}

/* Large screens: side-by-side hero — content left, ecosystem visual right */
@media (min-width: 1024px) {
  .hero:not(.companion-hero) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas: "content visual";
    align-items: center;
    column-gap: clamp(32px, 5vw, 72px);
    max-width: 1240px;
    margin-inline: auto;
    padding: 140px clamp(var(--pad-mobile), 4vw, 48px) 60px;
    text-align: left;
  }

  .hero:not(.companion-hero) .hero__content {
    grid-area: content;
    justify-self: start;
    width: 100%;
    max-width: 640px;
    padding-inline: 0;
  }

  .hero:not(.companion-hero) .hero__sub {
    margin-inline: 0;
  }

  .hero:not(.companion-hero) .hero__actions {
    justify-content: flex-start;
  }

  .hero:not(.companion-hero) .hero__status {
    align-items: flex-start;
  }

  .hero:not(.companion-hero) .hero-visual {
    grid-area: visual;
    justify-self: end;
    width: 100%;
    max-width: 620px;
    margin-top: 0;
    margin-inline: 0;
  }
}

/* ---------- TRUST / INTRO ---------- */
.trust {
  position: relative;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .trust-grid { grid-template-columns: 1fr; }
}

.trust-card {
  padding: 32px;
  border-radius: var(--r-md);
}

.trust-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-soft);
  margin-bottom: 18px;
  display: block;
}

.trust-card h3 {
  font-size: 18px;
  font-weight: 750;
  margin-bottom: 10px;
  line-height: 1.2;
}

.trust-card p {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ---------- PRODUCTS ---------- */
.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--r-lg);
}

.product-card.reverse { direction: rtl; }
.product-card.reverse > * { direction: ltr; }

.product-card__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-card__title {
  font-size: clamp(24px, 3.6vw, 38px);
  line-height: 1.12;
}

.product-card__desc {
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.65;
}

@media (max-width: 860px) {
  .product-card {
    grid-template-columns: 1fr;
    padding: clamp(28px, 6vw, 40px);
  }
  .product-card.reverse { direction: ltr; }
}

/* Phone mockup */
.phone {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
  aspect-ratio: 9 / 19.5;
  border-radius: 40px;
  background: var(--bg);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-phone);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.4, 1), box-shadow 0.5s ease;
  animation: phone-glow 6s ease-in-out infinite alternate;
}

@keyframes phone-glow {
  0% { box-shadow: 0 32px 64px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(139, 92, 246, 0.05); }
  100% { box-shadow: 0 32px 64px -20px rgba(0,0,0,0.7), 0 0 40px -10px rgba(139, 92, 246, 0.12); }
}

.phone:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 48px 96px -24px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 100px -20px rgba(139, 92, 246, 0.35);
}

.phone__notch {
  width: 120px;
  height: 28px;
  margin: 0 auto;
  background: #000;
  border-radius: 0 0 18px 18px;
  flex-shrink: 0;
  z-index: 2;
}

.phone__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px 14px;
  flex-shrink: 0;
  z-index: 2;
}

.phone__header img {
  width: 22px;
  height: 22px;
  border-radius: 5px;
}

.phone__header-text {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone__body {
  flex: 1;
  overflow: hidden;
  padding: 0 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone__greeting {
  font-size: 20px;
  font-weight: 700;
  padding: 8px 0 0;
  color: var(--text);
}

.phone__greeting small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 4px;
}

.phone__card {
  background: var(--card-hi);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.5;
}

.phone__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  flex: 1;
}

.phone__grid-item {
  background: var(--card-hi);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 6px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-2);
}

.phone__grid-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent-soft);
}

.phone__verse {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(139, 92, 246, 0.04));
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 14px;
  padding: 14px;
}

.phone__verse-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-soft);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.phone__verse-text {
  font-size: 11px;
  color: var(--text-2);
  line-height: 1.55;
  font-style: italic;
}

.phone__nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px 0 16px;
  flex-shrink: 0;
  border-top: 1px solid var(--line);
}

.phone__nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 8.5px;
  font-weight: 600;
  color: var(--muted);
}

.phone__nav-item.active { color: var(--accent-soft); }

.phone__nav-item svg {
  width: 17px;
  height: 17px;
}

/* Vox abstract visual */
.vox-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 3;
  margin-inline: auto;
  border-radius: var(--r-md);
  background: var(--bg);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 64px -20px rgba(0,0,0,0.7);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.4, 1), box-shadow 0.5s ease;
}

.vox-visual:hover {
  transform: translateY(-4px);
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.8),
    0 0 100px -30px rgba(139, 92, 246, 0.3);
}

.vox-visual__top {
  padding: 20px 24px 14px;
  border-bottom: 1px solid var(--line);
}

.vox-visual__brand {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vox-visual__brand span { color: #b066ff; }

.vox-visual__bars {
  flex: 1;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.vox-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  opacity: 0.65;
  animation: bar-dance 4s ease-in-out infinite;
}

@keyframes bar-dance {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.6); }
}

.vox-visual__presets {
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px;
  overflow: hidden;
}

.vox-preset {
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 650;
  white-space: nowrap;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text-2);
}

.vox-preset.active {
  background: var(--accent-dim);
  border-color: rgba(167, 139, 250, 0.3);
  color: var(--accent-soft);
}

/* ---------- STATUS / CURRENT STATUS ---------- */
.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: 12px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: var(--r-sm);
}

.status-item svg {
  width: 22px;
  height: 22px;
  color: var(--accent-soft);
  flex-shrink: 0;
}

.status-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  line-height: 1.2;
}

/* ---------- SHOWCASE BENTO ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .showcase-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

@media (max-width: 640px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.showcase-item {
  border-radius: var(--r-md);
  padding: 0;
  display: block;
  aspect-ratio: 0.55 / 1;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.4, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.showcase-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.4, 1);
}

.showcase-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(to top, rgba(5, 5, 7, 0.92), transparent);
  pointer-events: none;
}

.showcase-item__label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.showcase-item:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.35);
  box-shadow: 0 20px 48px -20px rgba(139, 92, 246, 0.3);
}

.showcase-item:hover img {
  transform: scale(1.06);
}

/* ---------- WORKFLOW ---------- */
.workflow {
  position: relative;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workflow-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
}

@media (max-width: 768px) {
  .workflow-flow {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-width: 380px;
    margin-inline: auto;
  }
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 24px 16px;
  position: relative;
  flex: 1;
  min-width: 0;
}

.workflow-step__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent-soft);
  text-transform: uppercase;
}

.workflow-step__dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--accent-dim);
  position: relative;
  z-index: 2;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.workflow-step__dot svg {
  width: 20px;
  height: 20px;
  color: var(--accent-soft);
  transition: transform 0.35s ease;
}

.workflow-step:hover .workflow-step__dot {
  transform: scale(1.1);
  box-shadow: 0 0 32px var(--accent-dim);
  background: var(--card-hi);
}

.workflow-step:hover .workflow-step__dot svg {
  transform: scale(1.05);
}

.workflow-step__text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.4;
  max-width: 120px;
}

/* Connector lines between steps */
.workflow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(24px + 24px + 12px);
  left: calc(50% + 24px);
  right: calc(-50% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(139, 92, 246, 0.2));
}

@media (max-width: 768px) {
  .workflow-step:not(:last-child)::after {
    top: auto;
    left: 24px;
    right: auto;
    bottom: -1px;
    width: 2px;
    height: calc(100% - 48px);
    background: linear-gradient(180deg, var(--accent), rgba(139, 92, 246, 0.2));
  }
}

/* ---------- WHO IT IS FOR ---------- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 860px) {
  .who-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .who-grid { grid-template-columns: 1fr; }
}

.who-card {
  padding: 36px 32px;
}

.who-card h3 {
  font-size: 16px;
  font-weight: 750;
  margin-bottom: 10px;
  color: var(--text);
}

.who-card p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.55;
}

.who-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.who-card__icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent-soft);
}

/* ---------- ECOSYSTEM ---------- */
.ecosystem {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eco-map {
  position: relative;
  width: 100%;
  max-width: 700px;
  aspect-ratio: 1 / 0.9;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco-center {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  box-shadow:
    0 0 0 30px rgba(139, 92, 246, 0.06),
    0 0 0 60px rgba(139, 92, 246, 0.03),
    0 0 80px rgba(139, 92, 246, 0.2);
  z-index: 3;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.eco-center:hover {
  transform: scale(1.04);
  box-shadow:
    0 0 0 30px rgba(139, 92, 246, 0.08),
    0 0 0 60px rgba(139, 92, 246, 0.04),
    0 0 100px rgba(139, 92, 246, 0.3);
}

.eco-center img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

.eco-center span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-2);
  text-transform: uppercase;
}

.eco-orbit {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px dashed rgba(139, 92, 246, 0.12);
  animation: orbit-spin 120s linear infinite;
}

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

.eco-orbit::after {
  content: "";
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  border: 1px dashed rgba(139, 92, 246, 0.06);
}

.eco-node {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  translate: -50% -50%;
  animation: node-counter-spin 120s linear infinite;
  transition: filter 0.3s ease;
}

.eco-node:hover {
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
}

@keyframes node-counter-spin {
  from { transform: rotate(0); }
  to { transform: rotate(-360deg); }
}

.eco-node__dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px -8px rgba(0,0,0,0.5);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.eco-node:hover .eco-node__dot {
  border-color: var(--accent);
  box-shadow: 0 0 24px var(--accent-dim);
}

.eco-node__dot svg {
  width: 20px;
  height: 20px;
  color: var(--accent-soft);
}

.eco-node__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-2);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.eco-node__status {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--r-pill);
}

@media (max-width: 768px) {
  .eco-map { max-width: 100%; aspect-ratio: 1; }
  .eco-orbit { width: 320px; height: 320px; }
  .eco-center { width: 90px; height: 90px; }
  .eco-center img { width: 28px; height: 28px; }
  .eco-node__dot { width: 42px; height: 42px; }
}

/* ---------- CHURCH PLATFORM FUTURE ---------- */
.church-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 860px) {
  .church-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .church-cols { grid-template-columns: 1fr; }
}

.church-col {
  padding: 32px;
}

.church-col h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.church-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.church-col li {
  font-size: 14px;
  color: var(--text-2);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}

.church-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.5;
}

/* ---------- ROADMAP ---------- */
.timeline {
  position: relative;
  padding-left: 36px;
  max-width: 700px;
  margin-inline: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--accent) 0%,
    rgba(139, 92, 246, 0.4) 40%,
    rgba(139, 92, 246, 0.12) 80%,
    transparent 100%
  );
}

.timeline-item {
  position: relative;
  padding: 0 0 48px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item__node {
  position: absolute;
  left: -29px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--accent);
  box-shadow: 0 0 14px var(--accent-dim);
  z-index: 2;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  animation: timeline-node-glow 3.5s ease-in-out infinite;
}

.timeline-item:hover .timeline-item__node {
  box-shadow: 0 0 24px var(--accent-glow);
  transform: scale(1.15);
}

@keyframes timeline-node-glow {
  0%, 100% { box-shadow: 0 0 10px var(--accent-dim); }
  50% { box-shadow: 0 0 18px var(--accent-glow); }
}

.timeline-item__node.done {
  background: var(--accent);
}

.timeline-item__year {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 8px;
}

.timeline-item__title {
  font-size: 18px;
  font-weight: 750;
  margin-bottom: 6px;
  color: var(--text);
  line-height: 1.2;
}

.timeline-item__text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 10px;
}

/* ---------- MISSION / VISION QUOTE ---------- */
.quote-block {
  position: relative;
  padding: clamp(48px, 8vw, 80px) clamp(32px, 6vw, 64px);
  border-radius: var(--r-lg);
  background: linear-gradient(
    160deg,
    rgba(139, 92, 246, 0.08) 0%,
    var(--card) 60%
  );
  border: 1px solid var(--line);
  text-align: center;
}

.quote-block::before {
  content: "\201C";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  opacity: 0.18;
  pointer-events: none;
}

.quote-block p {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--text);
  max-width: 700px;
  margin-inline: auto;
}

/* ---------- PHILOSOPHY ---------- */
.philo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .philo-grid { grid-template-columns: 1fr; }
}

.philo-card {
  padding: 40px 36px;
}

.philo-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 16px;
}

.philo-card h3 {
  font-size: 20px;
  font-weight: 750;
  margin-bottom: 12px;
  line-height: 1.2;
}

.philo-card p {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ---------- STORY ---------- */
.story-text {
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.65;
  color: var(--text-2);
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.story-text strong {
  color: var(--text);
  font-weight: 600;
}

.story-text em {
  color: var(--text);
  font-style: normal;
  font-weight: 500;
}

/* ---------- BUILDING IN PUBLIC ---------- */
.bp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(139, 92, 246, 0.1);
}

.faq-item[open] {
  background: var(--card);
  border-color: var(--line);
  box-shadow: 0 4px 16px -4px rgba(139, 92, 246, 0.08);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  min-height: 44px;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ""; }

.faq-item summary .chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.25s ease;
}

.faq-item[open] summary .chevron {
  transform: rotate(180deg);
}

.faq-item__body {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-2);
  animation: faq-reveal 0.35s cubic-bezier(0.2, 0.8, 0.4, 1) both;
}

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

/* ---------- CTA ---------- */
.cta {
  position: relative;
  text-align: center;
  padding-block: clamp(80px, 14vw, 160px);
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(139, 92, 246, 0.14) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta h2 {
  font-size: clamp(32px, 5.5vw, 56px);
  margin-bottom: 20px;
}

.cta p {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-2);
  margin-inline: auto;
  margin-bottom: 36px;
  max-width: 520px;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}

.footer__inner {
  padding-top: clamp(48px, 8vw, 80px);
  padding-bottom: 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .footer__top {
    grid-template-columns: 1.3fr repeat(4, 1fr);
    gap: 28px;
  }
  .footer__brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 260px;
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer__brand-logo img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.footer__brand-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}

.footer__col h4 {
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__col a {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.2s;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
}

.footer__col a:hover {
  color: var(--text);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer__copy {
  font-size: 13px;
  color: var(--muted);
}

.footer__social {
  display: flex;
  gap: 8px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}

.footer__social a:hover {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
}

.footer__social svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   CHRIST MY COMPANION — dedicated landing page
   ============================================================ */

/* Companion hero: two-column (copy left, phone right) */
.companion-hero {
  padding: 140px 0 60px;
  text-align: left;
}

.companion-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  width: 100%;
  max-width: 1120px;
  padding-inline: var(--pad-mobile);
}

.companion-hero .hero__content {
  max-width: none;
  padding-inline: 0;
  text-align: left;
  align-items: flex-start;
}

.companion-hero .hero__sub {
  margin-inline: 0;
}

.companion-hero .hero__actions {
  justify-content: flex-start;
}

.companion-hero .hero__status {
  align-items: flex-start;
}

.companion-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.companion-hero__shot {
  width: 100%;
  max-width: 310px;
  height: auto;
  aspect-ratio: 490 / 939;
  object-fit: cover;
  border-radius: 32px;
  border: 1px solid var(--line);
  box-shadow:
    0 28px 60px -12px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(139, 92, 246, 0.08);
  animation: companion-float 7s ease-in-out infinite alternate;
}

@keyframes companion-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

/* Compact companion teaser used on the homepage (#products) */
.companion-teaser {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 4vw, 40px);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.companion-teaser::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  border-radius: 0 0 50% 50%;
  background: radial-gradient(closest-side, rgba(139, 92, 246, 0.1), transparent);
  pointer-events: none;
}

.companion-teaser__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.companion-teaser__title {
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.12;
  letter-spacing: var(--tracking-tight);
}

.companion-teaser__desc {
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.65;
}

.companion-teaser__shots {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding-right: clamp(0px, 2vw, 20px);
}

.companion-teaser__shot {
  position: relative;
  flex: 0 0 auto;
  width: 128px;
  margin-left: -22px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.4, 1);
}

.companion-teaser__shot:first-child {
  margin-left: 0;
  transform: rotate(-6deg) translateY(10px);
}

.companion-teaser__shot:nth-child(2) {
  width: 144px;
  transform: rotate(0deg);
  z-index: 2;
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(139, 92, 246, 0.12);
}

.companion-teaser__shot:nth-child(3) {
  transform: rotate(6deg) translateY(10px);
}

.companion-teaser__shot img {
  display: block;
  width: 100%;
  height: auto;
}

.companion-teaser:hover .companion-teaser__shot:nth-child(1) {
  transform: rotate(-4deg) translateY(4px);
}

.companion-teaser:hover .companion-teaser__shot:nth-child(2) {
  transform: rotate(0deg) translateY(-6px);
}

.companion-teaser:hover .companion-teaser__shot:nth-child(3) {
  transform: rotate(4deg) translateY(4px);
}

@media (max-width: 860px) {
  .companion-hero {
    padding: 120px 0 40px;
    text-align: center;
  }

  .companion-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .companion-hero .hero__content,
  .companion-hero .hero__actions,
  .companion-hero .hero__status {
    align-items: center;
    justify-content: center;
  }

  .companion-hero .hero__actions,
  .companion-hero .hero__status,
  .companion-hero .hero__sub {
    margin-inline: auto;
  }

  .companion-hero__shot {
    max-width: 240px;
  }

  .companion-teaser {
    grid-template-columns: 1fr;
  }

  .companion-teaser .btn {
    width: 100%;
  }

  .companion-teaser__shots {
    padding-right: 0;
    margin-top: 8px;
  }

  .companion-teaser__shot {
    width: 108px;
  }

  .companion-teaser__shot:nth-child(2) {
    width: 122px;
  }
}