/* --- Global setup --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: system-ui, sans-serif;
  color: #fff;
  background: radial-gradient(ellipse at top, #2e035a 0%, #0e0119 100%);
  line-height: 1.6;
}

/* --- Hero --- */
.hero {
  height: 100vh;
  background: linear-gradient(160deg, #2e035a 0%, #24124a 60%, #0e0119 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.hero .overlay { max-width: 700px; }
.hero .title { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }
.hero .subtitle { font-size: 1.1rem; color: #ddd; margin-bottom: 1.8rem; }
.button {
  background: #f05032;
  color: #fff;
  padding: 0.8rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.button:hover { background: #ff704d; }

/* --- Section --- */
.section {
  padding: 5rem 2rem;
  text-align: center;
  background: #120223;
}
.section h2 { font-size: 1.8rem; margin-bottom: 2rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: left;
}
.card h3 { color: #ff946d; margin-bottom: 0.5rem; }

/* --- Steps section --- */
.steps { background: #1a0334; }
.steps ol {
  list-style: none;
  counter-reset: step;
  max-width: 700px;
  margin: 2rem auto 0;
  text-align: left;
}
.steps li {
  counter-increment: step;
  background: rgba(255,255,255,0.05);
  margin: 1rem 0;
  padding: 1rem 1.5rem;
  border-radius: 8px;
}
.steps li::before {
  content: counter(step);
  background: #f05032;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  display: inline-block;
  width: 24px; height: 24px;
  text-align: center;
  margin-right: 10px;
}

/* --- CTA section --- */
.cta-section {
  padding: 4rem 2rem;
  background: linear-gradient(160deg, #2e035a 0%, #0e0119 100%);
  text-align: center;
}
.cta-section h2 { font-size: 1.7rem; margin-bottom: 0.5rem; }
.cta-section p { margin-bottom: 1rem; }
.button.large { font-size: 1.1rem; padding: 1rem 2rem; }

/* --- Footer --- */
footer {
  background: #0a0014;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
footer nav a {
  color: #bbb;
  margin: 0 0.5rem;
  text-decoration: none;
}
footer nav a:hover { color: #fff; }

/* --- Enhanced Footer --- */
.footer {
  background: #0a0014;
  text-align: center;
  padding: 2rem 1rem 3rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #bbb;
}
.footer-links {
  margin-top: 0.5rem;
}
.footer-links a {
  color: #ff946d;
  text-decoration: none;
  margin: 0 0.4rem;
}
.footer-links a:hover {
  color: #fff;
}
.footer-links .divider {
  color: #666;
}

/* --- Smooth Scroll Enhancements --- */
html {
  scroll-behavior: smooth;
}

/* --- Resonant Breathing Glow Animation --- */

/* Headline glow (Reflect. Evolve. Transcend.) */
@keyframes pulseGlow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255,255,255,0.1), 0 0 25px rgba(255,255,255,0.05);
    opacity: 0.95;
  }
  50% {
    text-shadow: 0 0 25px rgba(255,255,255,0.25), 0 0 60px rgba(255,255,255,0.2);
    opacity: 1;
  }
}

/* Apply the glow to the hero title */
.hero .title {
  animation: floatTitle 6s ease-in-out infinite, pulseGlow 5s ease-in-out infinite;
}

/* Button breathing glow */
@keyframes buttonPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(240,80,50,0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 35px rgba(255,120,80,0.7);
    transform: scale(1.05);
  }
}

/* Apply it to the main hero button */
.button {
  animation: buttonPulse 4.5s ease-in-out infinite;
}

/* --- Brand Title Animation --- */
.brand-title {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 2px;
  
  background: linear-gradient(90deg, #ff946d, #ffd5b2, #ff946d);
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite, fadeInBrand 1.2s ease-out;
  margin-bottom: 1.5rem;
}

@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes fadeInBrand {
  0%   { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --- Interactive Mirror-Tilt Effect --- */
.brand-title {
  perspective: 800px;
  transform-style: preserve-3d;
  transition: transform 0.25s ease, text-shadow 0.25s ease;
}
.brand-title:hover {
  cursor: default;
}

/* --- Mission & Vision Section --- */
.mission-section {
  background: #0e0119;
  padding: 5rem 2rem;
  color: #eee;
  text-align: left;
}

.mission-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.mission-left, .mission-right {
  flex: 1 1 400px;
  min-width: 300px;
  max-width: 500px;
}

.mission-heading {
  font-size: 1.6rem;
  color: #ff946d;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.mission-left p, .mission-right p {
  line-height: 1.8;
  font-size: 1rem;
  color: #ddd;
  text-shadow: 0 0 10px rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
  .mission-container {
    flex-direction: column;
    text-align: center;
  }
  .mission-left, .mission-right {
    max-width: 100%;
  }
}
/* === GrowthMirror Feature Cards === */
.features {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, #0e0119 0%, #1b0530 100%);
  color: #fff;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}


.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(153, 51, 255, 0.3), 0 0 40px rgba(255, 102, 204, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.feature .icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: block;
}
/* === GrowthMirror Dynamic Feature Cards === */
.features {
  padding: 100px 0;
  text-align: center;
  background: radial-gradient(circle at top, #240046, #0e0119);
  color: #fff;
  animation: fadeIn 1.2s ease-in;
}

.features h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #ff6ec4, #7873f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}


.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 30px rgba(255, 102, 255, 0.4), 0 0 60px rgba(120, 115, 245, 0.3);
  background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(120,115,245,0.1));
}

.feature .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
/* === Scroll Fade-In Animation for GrowthMirror Features === */

.feature:nth-child(1) { transition-delay: 0.1s; }
.feature:nth-child(2) { transition-delay: 0.25s; }
.feature:nth-child(3) { transition-delay: 0.4s; }
.feature:nth-child(4) { transition-delay: 0.55s; }
.feature:nth-child(5) { transition-delay: 0.7s; }
/* Ensure hidden until revealed */

/* === GrowthMirror Phrase Bubbles === */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
}

  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ff9ff3, #a29bfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  z-index: 2;
}

  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 0.95rem;
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  animation: floatPulse 6s ease-in-out infinite;
}

  left: 5%;
  background: linear-gradient(135deg, #7d5fff55, #f1c0e855);
}

  right: 5%;
  background: linear-gradient(135deg, #ff9ff355, #a29bfe55);
}

@keyframes floatPulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.9; }
  50% { transform: translateY(-60%) scale(1.05); opacity: 1; }
}
/* === GrowthMirror Phrase Bubbles === */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
}

  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ff9ff3, #a29bfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  z-index: 2;
}

  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 0.95rem;
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  animation: floatPulse 6s ease-in-out infinite;
}

  left: 5%;
  background: linear-gradient(135deg, #7d5fff55, #f1c0e855);
}

  right: 5%;
  background: linear-gradient(135deg, #ff9ff355, #a29bfe55);
}

@keyframes floatPulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.9; }
  50% { transform: translateY(-60%) scale(1.05); opacity: 1; }
}
/* === Corner-Mirrored Phrase Bubbles === */
.brand-title-wrapper {
  position: relative;
  display: inline-block;
}
  position: absolute;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 20px;
  color: #fff;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(255,255,255,0.15);
  white-space: nowrap;
  animation: floatPulse 6s ease-in-out infinite;
}
  top: -20px;
  left: -140px;
  background: linear-gradient(135deg,#7d5fff66,#f1c0e866);
}
  top: -20px;
  right: -140px;
  background: linear-gradient(135deg,#ff9ff366,#a29bfe66);
}
@keyframes floatPulse {
  0%,100% {transform: translateY(0) scale(1); opacity:.9;}
  50% {transform: translateY(-6px) scale(1.05); opacity:1;}
}
/* === Inline Mirror Panels beside GrowthMirror === */
.mirrors-inline {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1.5rem;
  position:relative;
  margin:24px auto;
}

  width:120px;
  height:70px;
  perspective:600px;
  position:relative;
}

  width:100%;
  height:100%;
  border-radius:12px;
  background:linear-gradient(145deg,rgba(255,255,255,0.1),rgba(150,150,255,0.05));
  box-shadow:inset 0 0 20px rgba(255,255,255,0.08),0 0 25px rgba(180,180,255,0.15);
  display:flex;
  align-items:center;
  justify-content:center;
  transform:rotateY(0deg);
  transition:transform 2s ease-in-out;
  animation:mirrorShimmer 8s ease-in-out infinite;
}

  font-size:0.85rem;
  color:#e0dfff;
  letter-spacing:0.5px;
  text-shadow:0 0 6px rgba(255,255,255,0.4);
}

.brand-title {
  font-size:3.8rem;
  font-weight:900;
  letter-spacing:1.5px;
  background:linear-gradient(90deg,#ff9ff3,#a29bfe,#ff9ff3);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:brandGlow 10s linear infinite;
}

@keyframes mirrorShimmer {
  0%,100% {transform:rotateY(0deg);}
  50% {transform:rotateY(8deg);}
}
@keyframes brandGlow {
  0%,100% {filter:drop-shadow(0 0 8px rgba(255,255,255,0.15));}
  50% {filter:drop-shadow(0 0 20px rgba(170,120,255,0.35));}
}
/* === GrowthMirror Center Composition with Side Mirrors === */
.mirrors-distance {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4rem;
  margin:40px auto;
  flex-wrap:wrap;
}

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:.5rem;
}

  width:110px;
  height:140px;
  border-radius:50%;
  background:radial-gradient(circle at 30% 30%,rgba(255,255,255,0.25),rgba(150,150,255,0.1) 60%,rgba(255,255,255,0.05) 100%);
  box-shadow:0 0 20px rgba(255,255,255,0.1),0 0 35px rgba(170,120,255,0.25);
  border:1px solid rgba(255,255,255,0.15);
  animation:mirrorGlow 8s ease-in-out infinite;
}

  font-size:.9rem;
  color:#dcd9ff;
  text-align:center;
  max-width:150px;
  line-height:1.3;
  font-style:italic;
  text-shadow:0 0 8px rgba(255,255,255,0.2);
}

.brand-title {
  font-size:3.8rem;
  font-weight:900;
  letter-spacing:1.5px;
  background:linear-gradient(90deg,#ff9ff3,#a29bfe,#ff9ff3);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  animation:brandGlow 10s linear infinite;
  text-align:center;
}

@keyframes mirrorGlow {
  0%,100% {box-shadow:0 0 20px rgba(255,255,255,0.1),0 0 35px rgba(170,120,255,0.25);}
  50% {box-shadow:0 0 30px rgba(255,255,255,0.25),0 0 50px rgba(170,120,255,0.4);}
}
@keyframes brandGlow {
  0%,100% {filter:drop-shadow(0 0 8px rgba(255,255,255,0.15));}
  50% {filter:drop-shadow(0 0 20px rgba(170,120,255,0.35));}
}
/* === GrowthMirror: side mirrors placed left/right of the title, with captions below === */
.mirrors-distance{
  display:flex; align-items:center; justify-content:center; gap:6rem;
  margin:32px auto 28px; flex-wrap:wrap;
}

/* each side is a vertical stack: mirror picture + caption underneath */
  display:flex; flex-direction:column; align-items:center; gap:.55rem;
}

/* “picture of a mirror” (CSS oval with glow + subtle shimmer) */
  width:120px; height:150px; border-radius:50%;
  background:
    radial-gradient(35% 35% at 30% 30%, rgba(255,255,255,.35), rgba(255,255,255,.12) 60%, rgba(255,255,255,.06) 100%),
    radial-gradient(80% 80% at 70% 70%, rgba(170,120,255,.15), rgba(120,115,245,.08) 60%, rgba(0,0,0,.0) 100%);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:
    inset 0 0 18px rgba(255,255,255,.18),
    0 0 28px rgba(170,120,255,.28);
  position:relative;
  overflow:hidden;
}

/* moving light sweep for “glass” feel */
  content:"";
  position:absolute; top:-20%; left:-60%;
  width:70%; height:140%;
  transform:rotate(20deg);
  background:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.35) 50%, rgba(255,255,255,0) 100%);
  filter:blur(4px);
  animation:mirrorSweep 6.5s ease-in-out infinite;
}

@keyframes mirrorSweep{
  0% { left:-60%; opacity:.0; }
  20% { opacity:.55; }
  50% { left:120%; opacity:.2; }
  100% { left:120%; opacity:0; }
}

/* caption under each mirror */
  display:block;
  font-size:.9rem; line-height:1.2; text-align:center;
  color:#e6e3ff; font-style:italic; letter-spacing:.2px;
  text-shadow:0 0 8px rgba(255,255,255,.18);
  max-width:140px;
}

/* keep the brand title proud */
.brand-title{
  font-size:3.8rem; font-weight:900; letter-spacing:1.5px;
}

/* responsive: pull mirrors in a bit on small screens */
@media (max-width: 720px){
  .mirrors-distance{ gap:2rem; }
  .brand-title{ font-size:3rem; }
}

/* --- Mission & Vision Section --- */
.mission-section {
  background: radial-gradient(circle at center, #101024 0%, #0d0d20 100%);
  color: #fff;
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mission-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
  gap: 3rem;
  justify-content: space-between;
}

.mission-left, .mission-right {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mission-left:hover, .mission-right:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(255, 200, 150, 0.25);
}

.mission-heading {
  font-size: 1.8rem;
  color: #ffb46a;
  margin-bottom: 1rem;
  text-align: center;
}

.mission-section p {
  line-height: 1.7;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

/* Our Story, Origins & Vision Section */
.our-story-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(40,0,80,0.6));
  color: #fff;
  border-radius: 12px;
  margin: 80px auto;
  max-width: 900px;
  box-shadow: 0 0 25px rgba(150, 80, 255, 0.3);
}
.our-story-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #d8a4ff;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 8px rgba(216, 164, 255, 0.6);
  letter-spacing: 1px;
}
.our-story-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: #e0d6ff;
}
/* Shimmer effect for Our Story heading */
@keyframes shimmer {
  0% { text-shadow: 0 0 8px rgba(216,164,255,0.3); }
  50% { text-shadow: 0 0 18px rgba(216,164,255,0.8); }
  100% { text-shadow: 0 0 8px rgba(216,164,255,0.3); }
}

.our-story-section h2 {
  animation: shimmer 4s infinite ease-in-out;
  background: linear-gradient(90deg, #cfa3ff, #ffbdf7, #cfa3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* === Our Story Section === */
.our-story-section {
  padding: 100px 0 80px;
  background: radial-gradient(circle at top, #150028, #0b0115);
  color: #f5f5f5;
  text-align: center;
  animation: fadeInUp 1.2s ease-in;
}

.our-story-title {
  font-size: 2.5rem;
  background: linear-gradient(90deg, #ff6ec4, #7873f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.story-content {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.story-content p {
  margin-bottom: 1.6rem;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
/* === Responsive Design Enhancements === */

/* Mobile phones */
@media (max-width: 768px) {
  .our-story-section {
    padding: 70px 20px;
  }

  .our-story-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .story-content {
    max-width: 90%;
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
  }

  .story-content p {
    margin-bottom: 1.3rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 15px;
  }

  .feature h3 {
    font-size: 1.1rem;
  }

  .feature p {
    font-size: 0.95rem;
  }

  .cta-section {
    padding: 60px 20px;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section .button.large {
    width: 100%;
    font-size: 1.1rem;
    padding: 14px;
  }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  .story-content {
    max-width: 700px;
    font-size: 1.05rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .our-story-title {
    font-size: 2.3rem;
  }
}

/* Large desktop screens */
@media (min-width: 1440px) {
  .story-content {
    max-width: 1000px;
    font-size: 1.15rem;
  }
}
