/* ═══════════════════════════════════════════════
   AWAKENING.CSS — The Inner Shift Stylesheet
   Warm indigo, soft violet, dawn gold
   Intimate, contemplative, emotionally resonant
   ═══════════════════════════════════════════════ */

/* ── Color Tokens ── */
:root {
  --aw-indigo: #6366f1;
  --aw-violet: #a78bfa;
  --aw-dawn: #f59e0b;
  --aw-rose: #e879a0;
  --aw-mist: rgba(163, 139, 230, 0.08);
  --aw-deep: rgba(99, 102, 241, 0.06);
}

/* ── Keyframes ── */
@keyframes aw-breathe {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0.9; }
}
@keyframes aw-float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.05; }
  25% { transform: translateY(-25px) rotate(3deg); opacity: 0.1; }
  50% { transform: translateY(-40px) rotate(-2deg); opacity: 0.07; }
  75% { transform: translateY(-20px) rotate(2deg); opacity: 0.09; }
}
@keyframes aw-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(167, 139, 250, 0.08); }
  50% { box-shadow: 0 0 50px rgba(167, 139, 250, 0.2), 0 0 100px rgba(99, 102, 241, 0.05); }
}
@keyframes aw-glow-text {
  0%, 100% { text-shadow: 0 0 20px rgba(167, 139, 250, 0.15); }
  50% { text-shadow: 0 0 40px rgba(167, 139, 250, 0.35), 0 0 80px rgba(167, 139, 250, 0.1); }
}
@keyframes aw-dawn-flow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes aw-ripple {
  0% { transform: scale(0.6); opacity: 0.3; }
  100% { transform: scale(2.5); opacity: 0; }
}
@keyframes aw-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes aw-whisper {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* ── Floating Symbols ── */
.aw-symbols-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.aw-symbol {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.04;
  animation: aw-float 14s ease-in-out infinite;
  user-select: none;
  color: var(--aw-violet);
}
.aw-symbol:nth-child(1) { top: 8%; left: 6%; animation-delay: 0s; font-size: 2rem; }
.aw-symbol:nth-child(2) { top: 20%; right: 10%; animation-delay: 2.5s; font-size: 3rem; }
.aw-symbol:nth-child(3) { top: 38%; left: 15%; animation-delay: 5s; font-size: 1.8rem; }
.aw-symbol:nth-child(4) { top: 55%; right: 12%; animation-delay: 7s; font-size: 2.5rem; }
.aw-symbol:nth-child(5) { top: 70%; left: 5%; animation-delay: 9s; font-size: 2rem; }
.aw-symbol:nth-child(6) { top: 82%; right: 8%; animation-delay: 11s; font-size: 2.8rem; }
.aw-symbol:nth-child(7) { top: 12%; left: 45%; animation-delay: 4s; font-size: 1.5rem; }
.aw-symbol:nth-child(8) { top: 45%; right: 35%; animation-delay: 8s; font-size: 2rem; }

/* ── Hero ── */
.aw-hero {
  background: radial-gradient(ellipse at center bottom, rgba(99, 102, 241, 0.06) 0%, var(--color-bg-deep) 70%);
  position: relative;
  overflow: hidden;
  min-height: 65vh;
}
.aw-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 20, 0.5) 0%, var(--color-bg-deep) 100%);
}
.aw-hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 50%;
  width: 600px; height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(167, 139, 250, 0.05) 0%, transparent 70%);
  animation: aw-breathe 10s ease-in-out infinite;
  pointer-events: none;
}
.aw-hero-question {
  color: var(--aw-violet);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 2.2;
  opacity: 0.85;
  animation: aw-whisper 6s ease-in-out infinite;
}

/* ── Dawn Divider ── */
.aw-divider {
  height: 2px;
  margin: 4rem auto;
  max-width: 400px;
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.35), rgba(245, 158, 11, 0.2), rgba(167, 139, 250, 0.35), transparent);
  background-size: 200% 100%;
  animation: aw-dawn-flow 5s ease-in-out infinite;
  border-radius: 2px;
}

/* ── Recognition Block ── */
.aw-recognition {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.03), rgba(167, 139, 250, 0.02));
  border: 1px solid rgba(167, 139, 250, 0.08);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.aw-recognition::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(167, 139, 250, 0.03), transparent 50%);
  pointer-events: none;
}
.aw-recognition-sign {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(167, 139, 250, 0.04);
}
.aw-recognition-sign:last-child { border-bottom: none; }
.aw-recognition-sign .aw-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--aw-violet);
  flex-shrink: 0;
  margin-top: 0.5rem;
  animation: aw-breathe 4s ease-in-out infinite;
}
.aw-recognition-sign p {
  color: var(--color-text-dim);
  font-size: 0.92rem;
  line-height: 1.8;
  margin: 0;
}

/* ── Path Cards ── */
.aw-path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.aw-path-card {
  background: linear-gradient(135deg, rgba(10, 10, 25, 0.7), rgba(5, 5, 15, 0.9));
  border: 1px solid rgba(167, 139, 250, 0.06);
  border-radius: 10px;
  padding: 1.8rem 1.5rem;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}
.aw-path-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aw-indigo), var(--aw-violet));
  opacity: 0;
  transition: opacity 0.4s;
}
.aw-path-card:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 139, 250, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.aw-path-card:hover::before { opacity: 1; }
.aw-path-card__icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  display: block;
}
.aw-path-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--aw-violet);
  margin-bottom: 0.4rem;
}
.aw-path-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-dim);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.aw-path-card__meta {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.aw-path-card__meta span {
  color: var(--aw-violet);
  opacity: 0.7;
}

/* ── Start Here Cards ── */
.aw-start-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.aw-start-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(167, 139, 250, 0.06);
  border-radius: 10px;
  padding: 1.5rem;
  text-decoration: none;
  display: block;
  transition: all 0.4s;
  cursor: pointer;
}
.aw-start-card:hover {
  border-color: rgba(167, 139, 250, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.aw-start-card__q {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--aw-violet);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.aw-start-card__desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ── Knowledge Blocks ── */
.aw-block {
  background: linear-gradient(135deg, rgba(10, 10, 25, 0.5), rgba(5, 5, 15, 0.7));
  border: 1px solid rgba(167, 139, 250, 0.06);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  transition: border-color 0.4s;
}
.aw-block:hover { border-color: rgba(167, 139, 250, 0.15); }
.aw-block h3 {
  color: var(--aw-violet);
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}
.aw-block h4 {
  color: var(--aw-dawn);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.6rem;
}
.aw-block p {
  color: var(--color-text-dim);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 0.8rem;
}
.aw-block p:last-child { margin-bottom: 0; }

/* ── Premium Chamber ── */
.aw-premium {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.04), rgba(167, 139, 250, 0.02), rgba(245, 158, 11, 0.02));
  border: 1px solid rgba(167, 139, 250, 0.1);
  border-radius: 14px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  animation: aw-pulse 6s ease-in-out infinite;
}
.aw-premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aw-indigo), var(--aw-violet), var(--aw-dawn));
}
.aw-premium-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.6rem 0;
}
.aw-premium-item .aw-check {
  color: var(--aw-violet);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.aw-premium-item p {
  font-size: 0.88rem;
  color: var(--color-text-dim);
  line-height: 1.7;
  margin: 0;
}

/* ── Ripple Circles (Hero) ── */
.aw-ripple-container {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 350px; height: 350px;
  pointer-events: none;
}
.aw-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(167, 139, 250, 0.08);
  animation: aw-ripple 8s ease-out infinite;
}
.aw-ripple:nth-child(2) { animation-delay: 2s; }
.aw-ripple:nth-child(3) { animation-delay: 4s; }
.aw-ripple:nth-child(4) { animation-delay: 6s; }

/* ── Cross Nav ── */
.aw-nav { margin-top: 5rem; padding-top: 3rem; border-top: 1px solid rgba(167, 139, 250, 0.05); }
.aw-nav-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; }
.aw-nav-link { padding: 1.2rem; text-align: center; text-decoration: none; display: block; background: rgba(10, 10, 25, 0.4); border: 1px solid rgba(167, 139, 250, 0.04); border-radius: 6px; transition: all 0.3s; }
.aw-nav-link:hover { border-color: rgba(167, 139, 250, 0.15); transform: translateY(-3px); }
.aw-nav-link span { font-size: 1.5rem; margin-bottom: 0.5rem; display: block; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .aw-path-grid { grid-template-columns: 1fr; }
  .aw-start-grid { grid-template-columns: 1fr; }
  .aw-recognition { padding: 2rem 1.5rem; }
  .aw-premium { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .aw-hero { min-height: 55vh; }
  .aw-hero-question { font-size: 0.9rem; }
}
