﻿/* ==========================================================================
   Paint Yourself Happy â€” Master Stylesheet
   Dual Aesthetic Design System (Light & Shadow Modes)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* --------------------------------------------------------------------------
   1. Design Tokens & Theme Variables
   -------------------------------------------------------------------------- */
:root {
  /* Light Theme Defaults */
  --bg: #fef9f3;
  --bg-alt: #f5ede0;
  --bg-card: #ffffff;
  --bg-nav: rgba(254, 249, 243, 0.92);
  --text: #2d2417;
  --text-dim: #6b5d4f;
  --text-light: #1a1209;
  --border: rgba(45, 36, 23, 0.12);
  --radius: 16px;
  
  /* Chakra Colors (Light Mode Accents) */
  --root: #d4402e;      /* Muladhara â€” Red */
  --sacral: #e8761e;    /* Svadhisthana â€” Orange */
  --solar: #f0c020;     /* Manipura â€” Yellow */
  --heart: #4cb5a4;     /* Anahata â€” Green */
  --throat: #3a9bc9;    /* Vishuddha â€” Blue */
  --third-eye: #6a4c93; /* Ajna â€” Indigo */
  --crown: #b388d9;     /* Sahasrara â€” Violet */

  --void: #1f1f1f;
  --ether: #ffffff;

  --accent: var(--heart);
  --accent-rgb: 76, 181, 164;
  --accent-hover: #3a9d8e;
  --gold: #c8a45e;
  --shadow-color: rgba(45, 36, 23, 0.08);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}[data-theme="shadow"] {
  --bg: #0a0a14;
  --bg-alt: #111122;
  --bg-card: #1a1a2e;
  --bg-nav: rgba(10, 10, 20, 0.92);
  --text: #d8d4cc;
  --text-dim: #8a8a9a;
  --text-light: #f0ece4;
  --border: rgba(216, 212, 204, 0.12);
  
  --accent: #8b5cf6;     /* Purple Accent in Shadow Mode */
  --accent-rgb: 139, 92, 246;
  --accent-hover: #a78bfa;
  --accent-2: #c084fc;
  --gold: #9b7a3e;
  --shadow-color: rgba(0, 0, 0, 0.4);
}/* --------------------------------------------------------------------------
   2. Core Resets & Base Typography
   -------------------------------------------------------------------------- */*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}a, p, span, li, h1, h2, h3, h4, h5, h6, strong, em, td, th {
  overflow-wrap: break-word;
  word-wrap: break-word;
}a {
  overflow-wrap: anywhere;
  word-break: break-word;
}img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
}html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}html {
  scroll-behavior: smooth;
  font-size: 16px;
}body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background-color 0.4s ease, color 0.4s ease;
  min-height: 100vh;
  position: relative;
}/* Subtle Spiral Logo Watermark */body::after {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150vw;
  height: 150vh;
  background-image: url('../assets/branding/pyhlogotransparent.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% auto;
  opacity: 0.10; /* More visible watermark */
  z-index: -1;
  pointer-events: none;
}/* Subtle SVG Noise Texture Overlay */body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100vh;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  mix-blend-mode: multiply;
}[data-theme="shadow"] body::before {
  opacity: 0.025;
  mix-blend-mode: screen;
}h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-weight: 700;
  line-height: 1.2;
}h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); }h2 { font-size: clamp(2rem, 3.5vw, 3rem); }h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}a:hover {
  color: var(--accent-hover);
}p {
  margin-bottom: 1rem;
}.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}/* --------------------------------------------------------------------------
   3. Navbar Component
   -------------------------------------------------------------------------- */.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}.navbar.scrolled {
  box-shadow: 0 4px 20px var(--shadow-color);
}.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 1.5rem;
}.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  white-space: nowrap;
  flex-shrink: 0;
}.nav-logo span {
  color: var(--accent);
}.logo-mark {
  font-size: 1.5rem;
}.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}.nav-links li {
  white-space: nowrap;
}.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 0.35rem 0.2rem;
  transition: var(--transition);
}.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links .nav-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), transparent);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-links .nav-btn:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition);
}@media (max-width: 640px) {
  .nav-container {
    padding: 0 1rem;
    gap: 0.75rem;
  }
  .nav-logo {
    font-size: 1.15rem;
  }
}@media (max-width: 480px) {
  .nav-container {
    padding: 0 0.75rem;
    gap: 0.5rem;
  }
  .nav-logo {
    font-size: 0.95rem;
  }
}@media (max-width: 360px) {
  .nav-container {
    padding: 0 0.5rem;
    gap: 0.25rem;
  }
  .nav-logo {
    font-size: 0.85rem;
    letter-spacing: -0.2px;
  }
  .nav-logo .logo-mark svg,
  .nav-logo svg {
    width: 18px;
    height: 18px;
  }
  .nav-toggle {
    padding: 0.25rem;
  }
  .nav-toggle span {
    width: 20px;
  }
}/* Responsive Nav Breakpoint - hide horizontal links on mobile, rely on sidebar */@media (max-width: 1060px) {
  .nav-links {
    display: none;
  }
}/* --------------------------------------------------------------------------
   4. Hero & Theme Switcher
   -------------------------------------------------------------------------- */.hero {
  position: relative;
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  background-size: 200% 200%;
  animation: bgBreathing 15s ease infinite;
  text-align: center;
}@keyframes bgBreathing {
  0% { background-position: 50% 0%; }
  50% { background-position: 50% 100%; }
  100% { background-position: 50% 0%; }
}.hero-tag {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--accent);
  background: rgba(76, 181, 164, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}.hero h1 {
  max-width: 900px;
  margin: 0 auto 1.5rem;
}/* Dual-Theme Toggle Switch */.theme-switch-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}.theme-toggle {
  position: relative;
  width: 64px;
  height: 34px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  padding: 3px;
  transition: var(--transition);
}.toggle-ball {
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}[data-theme="shadow"] .toggle-ball {
  transform: translateX(30px);
}.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}/* --------------------------------------------------------------------------
   5. Buttons & Badges
   -------------------------------------------------------------------------- */.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}.btn-primary {
  background: var(--accent);
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text-light) !important;
}.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
  transform: translateY(-2px);
}.btn-large {
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
}/* --------------------------------------------------------------------------
   6. Sections, Mantra Banner & Chakra Divider
   -------------------------------------------------------------------------- */.section {
  padding: 90px 0;
}.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}.section-header p {
  color: var(--text-dim);
  font-size: 1.15rem;
}/* Chakra Divider */.dot-root { background: var(--root); }.dot-sacral { background: var(--sacral); }.dot-solar { background: var(--solar); }.dot-heart { background: var(--heart); }.dot-throat { background: var(--throat); }.dot-third-eye { background: var(--third-eye); }.dot-crown { background: var(--crown); }/* --------------------------------------------------------------------------
   7. Core Offerings Grid
   -------------------------------------------------------------------------- */.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 2rem;
}.offering-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}.offering-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px var(--shadow-color);
  border-color: var(--accent);
}.offering-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}.offering-card h3 {
  margin-bottom: 1rem;
}.offering-card p {
  color: var(--text-dim);
  flex-grow: 1;
}.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
}/* Tier Selection Cards (signup.html) */.tier-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}@media (max-width: 1060px) {
  .tier-selector {
    grid-template-columns: repeat(2, 1fr);
  }
}@media (max-width: 500px) {
  .tier-selector {
    grid-template-columns: 1fr;
  }
}.tier-option {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}.tier-option:hover {
  border-color: var(--accent);
}.tier-option.selected {
  border-color: var(--accent);
  background: rgba(76, 181, 164, 0.08);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}.tier-option h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}.tier-option .price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.3rem;
}/* --------------------------------------------------------------------------
   10. Social Bar Section (TikTok, Facebook, YouTube)
   -------------------------------------------------------------------------- */.social-section {
  text-align: center;
  padding: 70px 0;
  background: var(--bg-alt);
}.social-bar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}.social-link {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--text-light);
  transition: var(--transition);
  box-shadow: 0 4px 10px var(--shadow-color);
}.social-link:hover {
  background: var(--accent);
  color: #ffffff !important;
  transform: translateY(-4px) scale(1.05);
  border-color: var(--accent);
}/* --------------------------------------------------------------------------
   11. Forms (Signup & Contact)
   -------------------------------------------------------------------------- */.account-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 30px var(--shadow-color);
}.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(76, 181, 164, 0.15);
}.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}/* --------------------------------------------------------------------------
   12. CTA Box & Footer
   -------------------------------------------------------------------------- */.cta-section {
  padding: 80px 0;
}.cta-box {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-alt) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4rem 2rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 30px var(--shadow-color);
}.cta-box h2 {
  margin-bottom: 1rem;
}.cta-box p {
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 70px 0 40px;
  text-align: center;
}.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}.footer-logo span {
  color: var(--accent);
}.footer-tagline {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 2.5rem;
}.footer-links a {
  color: var(--text-dim);
  font-weight: 500;
  font-size: 0.95rem;
}.footer-links a:hover {
  color: var(--accent);
}.footer-copy {
  color: var(--text-dim);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}/* Toast Notification */.notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  color: var(--text-light);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px var(--shadow-color);
  z-index: 2000;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
}.notification.show {
  transform: translateY(0);
  opacity: 1;
}/* Page Hero Header for Subpages */.page-hero {
  padding: 140px 0 60px;
  background: var(--bg-alt);
  text-align: center;
  border-bottom: 1px solid var(--border);
}.page-hero h1 {
  margin-bottom: 1rem;
}.page-hero p {
  color: var(--text-dim);
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto;
}/* --------------------------------------------------------------------------
   Auth, Member Portal, Modal & Admin Monitor Styles
   -------------------------------------------------------------------------- */.auth-notice-box {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  padding: 1.2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}@media (max-width: 850px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}.dashboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 10px 30px var(--shadow-color);
}.dashboard-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}.tier-pill {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(76, 181, 164, 0.15);
  color: var(--accent);
  border: 1px solid rgba(76, 181, 164, 0.3);
}.account-details-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}.detail-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.6rem;
  border-bottom: 1px dashed var(--border);
  font-size: 0.95rem;
}.detail-label {
  color: var(--text-dim);
  font-weight: 500;
}.detail-value {
  font-weight: 600;
  color: var(--text-light);
}.resource-links-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}.resource-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: var(--transition);
}.resource-item:hover {
  transform: translateX(6px);
  border-color: var(--accent);
}.resource-icon {
  font-size: 1.6rem;
}.resource-item strong {
  display: block;
  color: var(--text-light);
  font-size: 0.95rem;
}.resource-item p {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0;
}/* Admin Panel */.admin-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 15px 40px var(--shadow-color);
}.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}.metric-box {
  background: var(--bg-alt);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
}.user-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}.user-table th {
  background: var(--bg-alt);
  padding: 1rem 1.2rem;
  color: var(--text-light);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}.user-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}.user-table tr:last-child td {
  border-bottom: none;
}.user-table tr:hover td {
  background: rgba(76, 181, 164, 0.04);
}/* Modal */.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 440px;
  width: 90%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}/* --------------------------------------------------------------------------
   Accessibility & Focus States
   -------------------------------------------------------------------------- */*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15); /* Soft purple glow */
  outline: none;
}/* ==========================================================================
   Member Studio Styles
   ========================================================================== */.studio-body {
  background-color: var(--bg-alt);
}.studio-header {
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}.studio-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 4rem;
  align-items: start;
}@media (max-width: 768px) {
  .studio-layout {
    grid-template-columns: 1fr;
  }
}.studio-sidebar {
  position: sticky;
  top: 80px;
}.studio-nav-section {
  margin-bottom: 2rem;
}.studio-nav-section h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 1rem;
}.studio-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}.studio-nav-links li {
  padding: 0.75rem 1rem;
  margin-bottom: 0.25rem;
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--text);
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}.studio-nav-links li:hover:not(.locked) {
  background: var(--shadow-color);
}.studio-nav-links li.active {
  background: var(--shadow-color);
  border-left-color: var(--accent);
  color: var(--accent);
}.studio-nav-links li.locked {
  color: var(--text-dim);
  opacity: 0.6;
  cursor: not-allowed;
}.studio-nav-links li.locked::after {
  content: ' ðŸ”’';
  font-size: 0.8rem;
}.studio-content-area {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 3rem;
  min-height: 600px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}.studio-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}.studio-text {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
  line-height: 1.8;
}.studio-prompt-card {
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}.studio-prompt-card h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}.studio-textarea {
  width: 100%;
  min-height: 150px;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  resize: vertical;
  margin-top: 1rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}.studio-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(76, 181, 164, 0.1);
}/* ==========================================================================
   Becoming Path â€” Course & Module Styles
   ========================================================================== *//* --- Tier Labels in Sidebar --- */.tier-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 700;
}.tier-label--spark { color: var(--root); }.tier-label--circle { color: var(--heart); }.tier-label--sanctuary { color: var(--crown); }.tier-desc {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}.studio-nav-links li.completed {
  color: var(--accent);
}/* --- Course Overview Tier Cards --- */.course-tiers-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}.course-tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--shadow-color);
}.course-tier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow-color);
}.tier-card-header {
  padding: 1.5rem 1.5rem 1rem;
  position: relative;
}.tier-spark .tier-card-header { border-top: 4px solid var(--root); }.tier-circle .tier-card-header { border-top: 4px solid var(--heart); }.tier-sanctuary .tier-card-header { border-top: 4px solid var(--crown); }.tier-number {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  display: block;
  margin-bottom: 0.5rem;
}.tier-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}.tier-spark .tier-card-header h3 { color: var(--root); }.tier-circle .tier-card-header h3 { color: var(--heart); }.tier-sanctuary .tier-card-header h3 { color: var(--crown); }.tier-level-badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-weight: 600;
}.tier-spark .tier-level-badge { background: rgba(212, 64, 46, 0.12); color: var(--root); }.tier-circle .tier-level-badge { background: rgba(76, 181, 164, 0.12); color: var(--heart); }.tier-sanctuary .tier-level-badge { background: rgba(179, 136, 217, 0.12); color: var(--crown); }.tier-card-subtitle {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 600;
  padding: 0 1.5rem;
  margin-bottom: 0.75rem;
}.tier-card-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  padding: 0 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}.tier-card-modules {
  padding: 0 1.5rem;
  margin-bottom: 1.25rem;
}.tier-module-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}.tier-module-item:last-child { border-bottom: none; }.tier-module-item:hover { color: var(--accent); }.module-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--border);
  border: 2px solid var(--border);
  transition: var(--transition);
}.module-status-dot.dot-complete {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 6px rgba(76, 181, 164, 0.4);
}.module-status-dot.dot-available {
  background: transparent;
  border-color: var(--accent);
}.module-status-dot.dot-locked {
  background: var(--bg-alt);
  border-color: var(--border);
  opacity: 0.5;
}.tier-card-footer {
  padding: 1rem 1.5rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}.tier-access-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
}.tier-access-badge.unlocked { color: var(--accent); }.tier-progress-bar {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
  max-width: 120px;
}.tier-progress-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 0.6s ease;
}.tier-spark .tier-progress-fill { background: var(--root); }.tier-circle .tier-progress-fill { background: var(--heart); }.tier-sanctuary .tier-progress-fill { background: var(--crown); }.course-cta-area {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}/* --- Module Content View --- */.module-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}.module-tier-badge {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}.module-cognitive-target {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.7;
  font-style: italic;
}.module-section {
  margin-bottom: 2.5rem;
}.module-section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-dim);
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}.module-teaching-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}@media (max-width: 768px) {
  .module-teaching-grid { grid-template-columns: 1fr; }
}.module-teaching-card {
  background: var(--bg-alt);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}.module-teaching-card h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}.module-teaching-card p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.7;
}.studio-assignment-card {
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  box-shadow: 0 8px 30px rgba(76, 181, 164, 0.08);
}.studio-assignment-card::before {
  content: 'ðŸŽ¨';
  position: absolute;
  top: -14px;
  left: 1.5rem;
  font-size: 1.5rem;
  background: var(--bg-card);
  padding: 0 0.5rem;
}.studio-assignment-card h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1rem;
}.studio-assignment-card p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
}.module-completion-area {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
}.module-completion-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}.module-completion-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  max-width: 500px;
}.module-already-complete {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(76, 181, 164, 0.08);
  border: 1px solid rgba(76, 181, 164, 0.2);
  border-radius: var(--radius);
}.module-already-complete span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}.locked-content-area {
  text-align: center;
  padding: 4rem 2rem;
}.locked-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}.workbook-module-group {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}.workbook-module-group:last-child { border-bottom: none; }.workbook-module-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}.workbook-entry {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--accent);
}.workbook-prompt {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}.workbook-response {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}/* --- Dashboard Course Progress Card --- */.course-progress-hero {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  grid-column: 1 / -1;
  box-shadow: 0 4px 20px var(--shadow-color);
}.course-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}.course-progress-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
}.progress-steps {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}.progress-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  transition: var(--transition);
}.progress-step.step-complete {
  background: rgba(76, 181, 164, 0.1);
  border-color: rgba(76, 181, 164, 0.3);
  color: var(--accent);
}.progress-step.step-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(76, 181, 164, 0.15);
}.progress-step.step-locked { opacity: 0.5; }.progress-step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}.step-complete .progress-step-dot { background: var(--accent); }.step-active .progress-step-dot { background: var(--accent); animation: pulse-dot 2s infinite; }.step-locked .progress-step-dot { background: var(--text-dim); opacity: 0.4; }@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76, 181, 164, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(76, 181, 164, 0); }
}.progress-connector {
  width: 20px;
  height: 2px;
  background: var(--border);
}/* Reveal Animations */.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}.reveal.active {
  opacity: 1;
  transform: translateY(0);
}.fade-in {
  opacity: 0;
  transition: opacity 1s ease-in;
}.fade-in.active {
  opacity: 1;
}.store-layout {
  display: flex;
  gap: 2rem;
  padding-top: 120px;
  padding-bottom: 80px;
  width: 100%;
}.store-sidebar {
  width: 250px;
  flex-shrink: 0;
}.store-main {
  flex: 1;
  min-width: 0;
}.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: 2rem;
}@media (max-width: 768px) {
  .store-layout {
    flex-direction: column;
    padding-top: 90px;
  }
  .store-sidebar {
    width: 100%;
  }
}.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}@media (max-width: 850px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}/* === Mobile Viewport & Overflow Optimization === */@media (max-width: 850px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
    min-width: 0;
  }
  .dashboard-card,
  .course-progress-hero {
    min-width: 0;
    max-width: 100%;
    padding: 1.5rem 1rem;
    box-sizing: border-box;
  }
}@media (max-width: 768px) {
  .studio-layout {
    grid-template-columns: 1fr;
    min-width: 0;
    padding-top: 1rem;
    padding-bottom: 2rem;
  }
  .studio-sidebar {
    min-width: 0;
    max-width: 100%;
    position: static;
  }
  .studio-content-area {
    min-width: 0;
    max-width: 100%;
    padding: 1.5rem 1rem;
    box-sizing: border-box;
  }
}@media (max-width: 480px) {
  .page-hero {
    padding: 3rem 0 2rem;
  }
  .page-hero h1 {
    font-size: 1.6rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .page-hero p {
    font-size: 0.95rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .dashboard-card,
  .course-progress-hero {
    padding: 1.25rem 0.75rem;
  }
  .course-progress-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .course-progress-header h3 {
    font-size: 1.3rem;
  }
  .progress-step {
    padding: 0.4rem 0.6rem;
    font-size: 0.78rem;
    max-width: 100%;
    box-sizing: border-box;
  }
  .detail-row {
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  .detail-value {
    word-break: break-all;
  }
  .resource-item {
    padding: 0.75rem;
    gap: 0.75rem;
  }
  .studio-content-area {
    padding: 1.25rem 0.75rem;
  }
  .studio-title {
    font-size: 1.75rem;
    word-break: break-word;
  }
  .studio-prompt-card {
    padding: 1rem 0.75rem;
  }
  .studio-nav-links li {
    padding: 0.6rem 0.75rem;
    font-size: 0.88rem;
    word-break: break-word;
  }
  .drawing-toolbar {
    padding: 0.5rem;
    gap: 0.4rem;
    flex-wrap: wrap;
  }
}@media (max-width: 360px) {
  .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .dashboard-card,
  .course-progress-hero,
  .studio-content-area {
    padding: 1rem 0.5rem;
  }
  .studio-nav-links li {
    padding: 0.5rem 0.5rem;
    font-size: 0.82rem;
  }
}/* --- Dropdown Navigation --- */.dropdown {
  position: relative;
  display: inline-block;
}.dropbtn {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.2rem;
  transition: var(--transition);
  text-decoration: none;
}.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--bg-card);
  min-width: 220px;
  box-shadow: 0 10px 30px var(--shadow-color);
  z-index: 1000;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  top: 100%;
  left: 0;
  padding: 0.5rem 0;
}.dropdown-content a {
  color: var(--text);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
  transition: var(--transition);
}.dropdown-content a:hover {
  background-color: var(--shadow-color);
  color: var(--accent);
}.dropdown:hover .dropdown-content {
  display: block;
}.dropdown:hover .dropbtn {
  color: var(--accent);
}.nav-actions {
  display: flex;
  align-items: center;
}/* Mobile responsive fixes for the nav-links */@media (max-width: 1060px) {
  .nav-links {
    display: none; /* Hidden by default, toggled via JS */
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 10px 30px var(--shadow-color);
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .dropdown {
    width: 100%;
  }
  
  .dropdown-content {
    display: none;
    position: relative;
    box-shadow: none;
    border: none;
    background-color: transparent;
    padding-left: 1rem;
    width: 100%;
  }
  
  .dropdown.active .dropdown-content {
    display: block;
  }
}@media (max-width: 1060px) {
  .nav-toggle {
    display: flex;
  }
}
