/* VistaClair standalone page */

.vc-page-hero {
  position: relative;
  z-index: 1;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 4rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vc-page-hero-content {
  flex: 1;
  animation: fadeInUp 0.8s ease-out;
}

.vc-page-hero .vc-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  margin-bottom: 0.75rem;
}

.vc-page-hero .vc-tagline {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-bottom: 1.5rem;
}

.vc-page-hero .vc-description {
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

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

.vc-hero-visual {
  flex: 0 0 clamp(280px, 30vw, 460px);
  animation: fadeInRight 0.8s ease-out 0.2s both;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vc-hero-glyph {
  width: clamp(220px, 25vw, 360px);
  height: clamp(220px, 25vw, 360px);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(16, 185, 129, 0.08));
  border: 3px solid rgba(6, 182, 212, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 80px rgba(6, 182, 212, 0.15), 0 0 160px rgba(16, 185, 129, 0.08);
}

.vc-hero-logo {
  width: clamp(120px, 15vw, 200px);
  height: auto;
  filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.4));
}

/* Section wrappers */

.vc-page-section {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vc-page-section .section-title {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Architecture section */

.vc-arch-section {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.vc-arch-section .section-title {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Demo video */

.vc-demo-video {
  display: block;
  width: 100%;
  max-width: 960px;
  margin: 2.5rem auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(6, 182, 212, 0.2);
  background: #000;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(6, 182, 212, 0.08);
}

/* Back link */

.vc-back {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.vc-back:hover {
  color: var(--accent-cyan);
  border-color: var(--accent-cyan);
  transform: translateX(-3px);
}

/* Responsive */

@media (max-width: 968px) {
  .vc-page-hero {
    flex-direction: column-reverse;
    text-align: center;
    min-height: auto;
    padding-top: 5rem;
  }
  .vc-page-hero .vc-description { max-width: 100%; }
  .vc-hero-actions { justify-content: center; }
  .vc-hero-visual { flex: none; margin-bottom: 2rem; }
}

@media (max-width: 640px) {
  .vc-page-section { padding: 3rem 1rem; }
  .vc-arch-section { padding: 3rem 1rem; }
  .vc-hero-actions .btn-primary,
  .vc-hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}
