/* ============================================
   LUMISELF — Homepage Styles
   ============================================ */

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.05);
}

/* Soft overlays to ensure text readability */
.hero__background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, 
      rgba(58, 36, 52, 0.4) 0%, 
      rgba(58, 36, 52, 0.2) 40%, 
      rgba(58, 36, 52, 0.4) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 var(--space-xl);
}

.hero__label {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s var(--ease-out) 0.3s forwards;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: var(--fs-hero);
  font-weight: var(--fw-regular);
  line-height: var(--lh-tight);
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(25px);
  animation: heroFadeUp 1s var(--ease-out) 0.5s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--color-gold-light);
  text-shadow: 0 2px 12px rgba(212,168,67,0.3);
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  font-weight: var(--fw-light);
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 6px rgba(0,0,0,0.12);
  line-height: var(--lh-relaxed);
  max-width: 560px;
  margin: 0 auto var(--space-2xl);
  opacity: 0;
  transform: translateY(25px);
  animation: heroFadeUp 1s var(--ease-out) 0.7s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  transform: translateY(25px);
  animation: heroFadeUp 1s var(--ease-out) 0.9s forwards;
}

.hero__actions .btn {
  width: 240px;
}

.hero__actions .btn--secondary {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero__actions .btn--secondary:hover {
  border-color: var(--color-white);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: max-content;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out) 1.3s forwards;
}

.hero__scroll-text {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  animation: scrollLine 2s var(--ease-smooth) infinite;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollLine {
  0%   { top: -100%; }
  50%  { top: 100%; }
  100% { top: 100%; }
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
  }
}

/* Floating decorative SVGs on hero */
.hero__flourish {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: heroFadeIn 1.5s var(--ease-out) 1s forwards;
}

.hero__flourish--1 {
  top: 15%;
  left: 8%;
  animation-delay: 1.2s;
}

.hero__flourish--2 {
  bottom: 20%;
  right: 6%;
  animation-delay: 1.5s;
}

.hero__flourish--3 {
  top: 25%;
  right: 12%;
  animation-delay: 1.8s;
}

.hero__flourish svg {
  opacity: 0.15;
}


/* ---------- Intro / Statement Section ---------- */
.intro {
  position: relative;
  padding: var(--space-section) 0;
  background: var(--color-white);
  text-align: center;
  overflow: hidden;
}

.intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 160, 191, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.intro__divider {
  width: 40px;
  height: 1px;
  background: var(--gradient-rose);
  margin: 0 auto var(--space-2xl);
}

.intro__text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw + 0.5rem, 1.75rem);
  font-weight: var(--fw-regular);
  line-height: var(--lh-relaxed);
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto;
  text-wrap: balance;
}

.intro__text em {
  font-style: italic;
  color: var(--color-magenta);
}


/* ---------- Features Section ---------- */
.features {
  position: relative;
  padding: var(--space-section) 0;
  background: var(--color-off-white);
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(232, 160, 191, 0.08);
  pointer-events: none;
}

.features__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.features__header .section-subtitle {
  margin: 0 auto;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
}

.feature-card {
  position: relative;
  padding: var(--space-2xl);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-sunset);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.feature-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--gradient-hero);
  margin-bottom: var(--space-lg);
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-magenta);
  fill: none;
  stroke-width: 1.5;
}

.feature-card__title {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
}

.feature-card__text {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
}


/* ---------- How It Works Teaser ---------- */
.process {
  position: relative;
  padding: var(--space-section) 0;
  background: var(--color-white);
  overflow: hidden;
}

.process__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.process__header .section-subtitle {
  margin: 0 auto;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3xl);
  position: relative;
}

/* Connecting line between steps */
.process__steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: var(--gradient-sunset);
  opacity: 0.3;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step__number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  border-radius: 50%;
  background: var(--color-white);
  border: 1.5px solid var(--color-rose);
  font-family: var(--font-serif);
  font-size: var(--fs-xl);
  color: var(--color-magenta);
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.process-step:hover .process-step__number {
  background: var(--gradient-rose);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.process-step__title {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
}

.process-step__text {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
  max-width: 280px;
  margin: 0 auto;
}


/* ---------- Testimonial / Pull Quote ---------- */
.pullquote {
  position: relative;
  padding: var(--space-section) 0;
  background: var(--color-off-white);
  text-align: center;
  overflow: hidden;
}

.pullquote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  pointer-events: none;
}

.pullquote__mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--color-rose);
  opacity: 0.25;
  margin-bottom: -1rem;
}

.pullquote__text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-style: italic;
  line-height: var(--lh-relaxed);
  color: var(--color-text);
  max-width: 720px;
  margin: 0 auto var(--space-xl);
  position: relative;
}

.pullquote__attribution {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  font-weight: var(--fw-medium);
}


/* ---------- Pricing Preview ---------- */
.pricing-preview {
  position: relative;
  padding: var(--space-section) 0;
  background: var(--color-white);
  overflow: hidden;
}

.pricing-preview__header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.pricing-preview__header .section-subtitle {
  margin: 0 auto;
}

.pricing-preview__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  padding: var(--space-3xl) var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all var(--transition-base);
  background: var(--color-white);
}

.pricing-card--featured {
  border-color: var(--color-rose);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.pricing-card--featured .pricing-card__badge {
  display: block;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card__badge {
  display: none;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--gradient-rose);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border-radius: var(--radius-full);
}

.pricing-card__name {
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.pricing-card__desc {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.pricing-card__price {
  font-family: var(--font-serif);
  font-size: var(--fs-4xl);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.pricing-card__price span {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  font-weight: var(--fw-regular);
}

.pricing-card__features {
  margin: var(--space-xl) 0;
  text-align: left;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.pricing-card__feature svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--color-sage);
  fill: none;
  stroke-width: 2.5;
}


/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  padding: var(--space-5xl) 0;
  background: var(--color-off-white);
  text-align: center;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  pointer-events: none;
}

.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw + 0.5rem, 2.75rem);
  line-height: var(--lh-snug);
  max-width: 600px;
  margin: 0 auto var(--space-md);
  position: relative;
}

.cta-banner__subtitle {
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  font-weight: var(--fw-light);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

/* Decorative flanking circles */
.cta-banner__flourish {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232, 160, 191, 0.1);
  pointer-events: none;
}

.cta-banner__flourish--1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -80px;
}

.cta-banner__flourish--2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  right: -40px;
}


/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 600px;
  }

  .hero__actions {
    flex-direction: column;
    gap: var(--space-md);
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .process__steps::before {
    display: none;
  }

  .pricing-preview__cards {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .hero__scroll {
    bottom: 24px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }
}
