@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,600..12,900;1,600..12,900&family=Nunito:ital,wght@0,300..1000;1,300..1000&display=swap');

/* --- CUSTOM PROPERTIES & TOKENS --- */
:root {
  --font-main: 'Nunito', sans-serif;
  --font-sans: 'Nunito Sans', sans-serif;
  
  /* Color Palette */
  --coral: #f2534f;
  --coral-rgb: 242, 83, 79;
  --coral-glow: rgba(var(--coral-rgb), 0.35);
  --coral-hover: #e03f3a;
  
  --peach-bg: #fdeee9;
  --peach-card: rgba(255, 255, 255, 0.7);
  --peach-border: rgba(242, 83, 79, 0.15);
  
  --navy-bg: #0b1120;
  --navy-card: rgba(15, 23, 42, 0.6);
  --navy-border: rgba(255, 255, 255, 0.1);
  
  --text-dark: #0f172a; /* Slate-900 */
  --text-dark-muted: #334155; /* Slate-700 - Enhanced legibility contrast */
  
  --text-light: #f8fafc; /* Slate-50 */
  --text-light-muted: #cbd5e1; /* Slate-300 - High-contrast on dark backgrounds */
  
  /* Theme Transition Durations */
  --theme-transition: background-color 0.8s cubic-bezier(0.25, 1, 0.5, 1), color 0.5s ease;
  --card-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Glow Effects */
  --neon-shadow: 0 0 20px var(--coral-glow);
  --teal-neon: #14b8a6;
  --teal-glow: rgba(20, 184, 166, 0.3);
  --indigo-neon: #6366f1;
  --indigo-glow: rgba(99, 102, 241, 0.3);
}

/* --- BASE STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--peach-bg);
  color: var(--text-dark);
  overflow-x: hidden;
  width: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 900;
  line-height: 1.15;
}

/* --- THEME CONTROLLER & SECTIONS --- */
/* The main sections will have dynamic background behaviors. */
.section-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--theme-transition);
}

/* Section Specific Theme Backgrounds */
.section-wrapper.theme-peach {
  background-color: var(--peach-bg);
  color: var(--text-dark);
}

.theme-navy {
  --navy-bg: #fdeee9;
  --navy-card: rgba(255, 255, 255, 0.88);
  --navy-border: rgba(242, 83, 79, 0.22);
  --text-light: #0f172a;
  --text-light-muted: #334155;
  --teal-neon: #0f766e;
  --indigo-neon: #4338ca;
  --coral: #c22f2b;
}

.section-wrapper.theme-navy {
  background-color: var(--navy-bg);
  color: var(--text-light);
}

/* Section Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem; /* Ensure breathing room on small screens */
  position: relative;
  z-index: 5;
}

.spa-container {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 640px) {
  .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .section-wrapper {
    padding: 6rem 1rem;
  }
}

/* --- GLOBAL NAVIGATION & PROGRESS INDICATOR --- */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(1.5rem, 3vw, 4rem); /* Responsive padding to prevent overflow */
  z-index: 1000;
  background: rgba(253, 238, 233, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--peach-border);
  transition: var(--theme-transition), border-color 0.5s ease;
}

.theme-navy-active .nav-header {
  background: rgba(11, 17, 32, 0.4);
  border-bottom: 1px solid var(--navy-border);
}

.logo-text {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: var(--coral);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo-img {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  filter: invert(1) hue-rotate(180deg) brightness(0.95);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.theme-navy-active .brand-logo-img {
  filter: none;
}

/* Hover rotation effects */
.logo-text:hover .brand-logo-img {
  transform: scale(1.1) rotate(15deg);
}

/* Footer Logo Block Styles */
.footer-logo-block {
  display: inline-block;
  margin-bottom: 1.5rem;
  text-align: center;
  cursor: pointer;
}

.footer-logo-img {
  width: 150px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-logo-block:hover .footer-logo-img {
  transform: scale(1.05) rotate(-8deg);
}


.nav-links {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1.5rem); /* Responsive gap to fit all items seamlessly */
  list-style: none;
  align-items: center; /* Vertically centers text links and button */
}

.nav-links a {
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(0.9rem, 1vw, 1rem); /* Adaptive scaling for perfect fitting */
  color: var(--text-dark);
  transition: color 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
  position: relative;
  opacity: 0.85; /* Better contrast */
}

.theme-navy-active .nav-links a {
  color: var(--text-light);
}

.nav-links a:hover,
.nav-links a.active,
.theme-navy-active .nav-links a:hover,
.theme-navy-active .nav-links a.active {
  color: var(--coral) !important;
  opacity: 1 !important;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--coral);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.download-guide-btn {
  background: var(--coral);
  color: var(--text-light) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  box-shadow: var(--neon-shadow);
  font-weight: 800 !important;
  opacity: 1 !important;
}

.download-guide-btn:hover {
  background: var(--coral-hover);
  transform: translateY(-2px);
}

.download-guide-btn::after {
  display: none !important;
}

/* Scroll Progress Bar */
.scroll-progress-container {
  position: fixed;
  top: 5rem;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.05);
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--indigo-neon));
  width: 0%;
}

/* --- GLASSMORPHIC CARDS --- */
.premium-card {
  border-radius: 1.5rem;
  padding: 2.5rem;
  background: var(--peach-card);
  border: 1px solid var(--peach-border);
  box-shadow: 0 10px 30px rgba(242, 83, 79, 0.03);
  transition: var(--card-transition);
}

.theme-navy .premium-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(242, 83, 79, 0.08);
}

.theme-navy .premium-card:hover {
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.8), 0 0 20px rgba(242, 83, 79, 0.1);
  border-color: rgba(242, 83, 79, 0.3);
}

/* --- 1. HERO HEADER SECTION --- */
.hero-wrapper {
  background: radial-gradient(circle at 80% 20%, rgba(242, 83, 79, 0.12), transparent 45%),
              radial-gradient(circle at 10% 85%, rgba(99, 102, 241, 0.08), transparent 40%),
              var(--peach-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
}

.hero-title-group {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(242, 83, 79, 0.1);
  border: 1px solid rgba(242, 83, 79, 0.2);
  color: var(--coral);
  padding: 0.5rem 1.2rem;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.00rem; /* Enlarged badge */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(242, 83, 79, 0.05);
}

.hero-badge svg {
  width: 1rem;
  height: 1rem;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
  color: var(--text-dark);
}

.hero-title span {
  display: block;
  background: linear-gradient(135deg, var(--coral), #ff7e7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.35rem; /* Enlarged font size */
  line-height: 1.6;
  color: var(--text-dark-muted);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--coral);
  color: var(--text-light);
  border: none;
  padding: 1.1rem 2.4rem; /* Expanded padding for prominence */
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.10rem; /* Enlarged font-size */
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--neon-shadow);
}

.btn-primary:hover {
  background: var(--coral-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(242, 83, 79, 0.5);
}

.btn-primary svg {
  width: 1.2rem;
  height: 1.2rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateY(2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--peach-border);
  padding: 1.1rem 2.4rem; /* Expanded padding */
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.10rem; /* Enlarged font-size */
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--coral);
  background: rgba(242, 83, 79, 0.05);
}

/* Hero Lottie Animation */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-visual dotlottie-wc {
  width: 100%;
  max-width: 550px;
  height: auto;
  aspect-ratio: 1;
  filter: drop-shadow(0 20px 45px rgba(242, 83, 79, 0.22));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-visual dotlottie-wc:hover {
  transform: scale(1.02) translateY(-5px);
}

/* --- 2. OVERVIEW & STATS SECTION --- */
.stats-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem auto;
}

.section-subtitle {
  color: var(--coral);
  text-transform: uppercase;
  font-weight: 900; /* Extra prominent weight */
  font-size: 1.10rem; /* Enlarged font-size */
  letter-spacing: 0.12em; /* Wider tracking */
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.overview-p {
  font-size: 1.25rem; /* Enlarged text sizes */
  line-height: 1.65;
  color: var(--text-light-muted);
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.stat-circle-box {
  position: relative;
  width: 160px;
  height: 160px;
  margin-bottom: 1.5rem;
}

.stat-circle-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.stat-circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 10;
}

.stat-circle-bar {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 440;
  stroke-dashoffset: 440; /* Will be animated via GSAP */
}

.coral-stroke { stroke: var(--coral); filter: drop-shadow(0 0 6px var(--coral-glow)); }
.teal-stroke { stroke: var(--teal-neon); filter: drop-shadow(0 0 6px var(--teal-glow)); }
.indigo-stroke { stroke: var(--indigo-neon); filter: drop-shadow(0 0 6px var(--indigo-glow)); }

.stat-number-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-sans);
  font-size: 2.20rem; /* Substantially larger central numbers */
  font-weight: 900;
  color: var(--text-light);
}

.stat-card h3 {
  font-size: 1.45rem; /* Marginally larger card title */
  margin-bottom: 0.75rem;
}

.stat-card p {
  font-size: 1.10rem; /* 15% size upgrade */
  color: var(--text-light-muted);
  line-height: 1.5;
}

/* --- 3. REFLECTION CHECK-IN SECTION --- */
.reflection-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .reflection-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.checklist-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  cursor: pointer;
  user-select: none;
  transition: var(--card-transition);
}

.checklist-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(242, 83, 79, 0.2);
  transform: translateX(6px);
}

/* Hide standard checkbox */
.checklist-item input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 32px; /* Marginally expanded hitbox */
  height: 32px;
  border-radius: 8px;
  border: 2px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.checklist-item input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--coral);
  border-color: var(--coral);
  box-shadow: 0 0 12px var(--coral-glow);
}

.checkbox-custom svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-light);
  stroke-width: 3px;
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  transition: stroke-dashoffset 0.3s ease;
}

.checklist-item input[type="checkbox"]:checked + .checkbox-custom svg {
  stroke-dashoffset: 0;
}

.checklist-label {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 1.15rem; /* Enlarged check questions */
  color: var(--text-light-muted);
  transition: color 0.3s ease;
}

.checklist-item input[type="checkbox"]:checked ~ .checklist-label {
  color: var(--text-light);
}

/* Confidence Meter Card */
.gauge-card {
  position: sticky;
  top: 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--navy-border);
}

.gauge-svg-container {
  position: relative;
  width: 220px;
  height: 220px;
  margin-bottom: 1.5rem;
}

.gauge-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.gauge-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.04);
  stroke-width: 14;
}

.gauge-bar {
  fill: none;
  stroke: url(#gauge-gradient);
  stroke-width: 14;
  stroke-linecap: round;
  stroke-dasharray: 565.48; /* 2 * PI * 90 */
  stroke-dashoffset: 565.48; /* Starting fully empty */
}

.gauge-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gauge-value {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 3.20rem; /* Enlarged central gauge value */
  line-height: 1;
  color: var(--text-light);
}

.gauge-percent-sign {
  font-size: 1.40rem; /* Proportional scale-up */
  font-weight: 700;
  color: var(--coral);
}

.gauge-status {
  font-size: 1.00rem; /* Boosted status label */
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light-muted);
  margin-top: 0.25rem;
}

.gauge-comment {
  font-size: 1.15rem; /* Enlarged review commentary */
  line-height: 1.5;
  color: var(--text-light-muted);
}

/* --- 4. MINDFULNESS PAUSE MOMENT --- */
.pause-wrapper {
  background: radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.08), transparent 50%),
              var(--navy-bg);
  text-align: center;
}

.pause-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.pause-title span {
  display: block;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--teal-neon);
  margin-bottom: 0.5rem;
}

.breathing-bubble-container {
  max-width: 320px;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.breathing-bubble-container dotlottie-wc {
  width: 100%;
  max-width: 280px;
  height: auto;
  aspect-ratio: 1;
  filter: drop-shadow(0 15px 35px var(--teal-glow));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.breathing-text-overlay {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: rgba(11, 17, 32, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(20, 184, 166, 0.15);
  padding: 0.8rem 2.2rem;
  border-radius: 9999px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
              0 0 15px rgba(20, 184, 166, 0.1);
  min-width: 160px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.breathing-instruction {
  font-family: var(--font-sans);
  font-size: 2.60rem; /* Enlarged breathing text */
  font-weight: 900;
  color: var(--text-light);
  letter-spacing: -0.02em;
  transition: transform 0.5s ease;
}

.breathing-subtext {
  font-size: 1.05rem; /* Enlarged subtext */
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light-muted);
  margin-top: 0.25rem;
}

.pause-desc {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.25rem; /* Enlarged default description */
  line-height: 1.6;
  color: var(--text-light-muted);
}

/* --- 5. STORYTELLING THAT CONNECTS --- */
.story-intro-grid {
  margin-bottom: 6rem;
}

.story-point-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.story-point-item {
  display: flex;
  gap: 1rem;
  font-size: 1.15rem; /* Enlarged story text */
  line-height: 1.5;
  color: var(--text-dark-muted);
}

.theme-navy .story-point-item {
  color: var(--text-light-muted);
}

.story-point-item svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: var(--coral);
  flex-shrink: 0;
}

.story-point-item h4 {
  font-family: var(--font-sans);
  font-size: 1.25rem; /* Enlarged bullet title */
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.theme-navy .story-point-item h4 {
  color: var(--text-light);
}

/* Ted Talk Video Box */
.video-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--peach-border);
}

.theme-navy .video-card {
  border: 1px solid var(--navy-border);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* A/B Story Challenge Components */
.challenge-box {
  margin-top: 6rem;
}

.challenge-title-group {
  text-align: center;
  margin-bottom: 3.5rem;
}

.challenge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 3.5rem;
  position: relative;
}

@media (max-width: 1024px) {
  .challenge-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .vs-badge {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    margin: 1.5rem auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

.vs-badge {
  position: absolute;
  grid-column: 1 / -1;
  grid-row: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 9999px;
  background: var(--coral);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  padding: 0;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: var(--neon-shadow);
  z-index: 10;
}

.challenge-card {
  position: relative;
  cursor: pointer;
}

.challenge-card-badge {
  position: absolute;
  top: -15px;
  left: 2.5rem;
  background: rgba(15, 23, 42, 0.08);
  color: var(--text-dark-muted);
  border: 1px solid var(--peach-border);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.00rem; /* Enlarged badge text */
  text-transform: uppercase;
}

.theme-navy .challenge-card-badge {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light-muted);
  border: 1px solid var(--navy-border);
}

.challenge-card:hover .challenge-card-badge {
  border-color: var(--coral);
  color: var(--coral);
}

.challenge-card-title {
  font-size: 1.45rem; /* Enlarged card title */
  margin-bottom: 1rem;
}

.challenge-card-quote {
  font-style: italic;
  font-size: 1.20rem; /* Enlarged quote */
  line-height: 1.6;
  color: var(--text-dark-muted);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1rem;
  border-left: 3px solid var(--peach-border);
}

.theme-navy .challenge-card-quote {
  color: var(--text-light-muted);
  border-left-color: var(--navy-border);
}

.challenge-select-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--coral);
  border: 2px solid var(--coral);
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.05rem; /* Enlarged select button text */
  transition: all 0.3s ease;
}

.challenge-card:hover .challenge-select-btn {
  background: var(--coral);
  color: var(--text-light);
  box-shadow: var(--neon-shadow);
}

/* Correct Option Celebration Canvas Overlay */
.confetti-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 100;
  border-radius: 1.5rem;
}

.correct-celebration-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1.5rem;
  border: 2px solid var(--teal-neon);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 50;
}

.correct-celebration-overlay.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.celebration-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 9999px;
  background: var(--teal-neon);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.4);
}

.celebration-icon-box svg {
  width: 2.2rem;
  height: 2.2rem;
}

/* --- 6. SPOTLIGHT CASE STUDIES SECTION --- */
.spotlight-wrapper {
  background: linear-gradient(180deg, var(--peach-bg) 0%, #fff7f4 100%);
}

.theme-navy.spotlight-wrapper {
  background: linear-gradient(180deg, var(--navy-bg) 0%, #0d1627 100%);
}

.spotlight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.spotlight-visual-container {
  width: 180px;
  height: 180px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Lotus Flower SVG Styles */
.lotus-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.lotus-petal {
  transform-origin: 90px 140px; /* Pivots relative to base center */
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), fill 0.8s ease, stroke-width 0.5s ease;
  fill: rgba(242, 83, 79, 0.15);
  stroke: var(--coral);
  stroke-width: 1.5;
}

.lotus-center {
  fill: #f59e0b; /* Golden core */
  stroke: none;
  transform-origin: 90px 120px;
  transition: transform 0.8s ease;
}

/* Bloom trigger styles */
.spotlight-card:hover .lotus-petal-left-outer {
  transform: rotate(-35deg) scale(1.05);
  fill: rgba(242, 83, 79, 0.3);
  stroke-width: 2;
}

.spotlight-card:hover .lotus-petal-left-inner {
  transform: rotate(-18deg) scale(1.03);
  fill: rgba(242, 83, 79, 0.45);
  stroke-width: 2;
}

.spotlight-card:hover .lotus-petal-right-outer {
  transform: rotate(35deg) scale(1.05);
  fill: rgba(242, 83, 79, 0.3);
  stroke-width: 2;
}

.spotlight-card:hover .lotus-petal-right-inner {
  transform: rotate(18deg) scale(1.03);
  fill: rgba(242, 83, 79, 0.45);
  stroke-width: 2;
}

.spotlight-card:hover .lotus-petal-center {
  transform: translateY(-8px) scale(1.08);
  fill: rgba(242, 83, 79, 0.6);
  stroke-width: 2.5;
}

.spotlight-card:hover .lotus-center {
  transform: scale(1.2) translateY(-4px);
}

/* Camera Aperture SVG Styles */
.aperture-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.aperture-outer-ring {
  fill: none;
  stroke: var(--coral);
  stroke-width: 3;
}

.theme-navy .aperture-outer-ring {
  stroke: rgba(255, 255, 255, 0.15);
}

.aperture-blade-group {
  transform-origin: 90px 90px;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.aperture-blade {
  fill: rgba(15, 23, 42, 0.05);
  stroke: var(--coral);
  stroke-width: 1.5;
  transition: fill 0.6s ease, stroke-width 0.4s ease;
}

.theme-navy .aperture-blade {
  fill: rgba(255, 255, 255, 0.04);
  stroke: rgba(255, 255, 255, 0.3);
}

.aperture-center-core {
  fill: none;
  transform-origin: 90px 90px;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.aperture-glow {
  fill: radial-gradient(circle, rgba(242, 83, 79, 0.5) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

/* Hover rotation effects */
.spotlight-card:hover .aperture-blade-group {
  transform: rotate(45deg);
}

.spotlight-card:hover .aperture-blade {
  fill: rgba(242, 83, 79, 0.1);
  stroke: var(--coral);
  stroke-width: 2;
}

.spotlight-card:hover .aperture-center-core {
  transform: scale(1.1);
}

.spotlight-card:hover .aperture-glow {
  opacity: 1;
}

/* Spotlight Text details */
.spotlight-tag-row {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.spotlight-tag {
  font-size: 0.95rem; /* Scaled up */
  background: rgba(242, 83, 79, 0.05);
  color: var(--coral);
  border: 1px solid rgba(242, 83, 79, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  font-weight: 800; /* Enhanced weight */
}

.theme-navy .spotlight-tag {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-light-muted);
  border: 1px solid var(--navy-border);
}

.spotlight-card h3 {
  font-size: 1.65rem; /* Scaled up */
  margin-bottom: 1rem;
}

.spotlight-card p {
  font-size: 1.15rem; /* Scaled up */
  color: var(--text-dark-muted);
  line-height: 1.6;
}

.theme-navy .spotlight-card p {
  color: var(--text-light-muted);
}

/* --- 7. CONTENT STRATEGY & PERSONA FLIP CARDS --- */
.persona-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem auto;
}

/* The card flip 3D structure */
.flip-card-container {
  perspective: 1200px;
  height: 400px; /* Enhanced height for premium spacing */
  width: 100%;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

.flip-card-container:hover .flip-card-inner,
.flip-card-container.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 1.5rem;
  padding: 2.25rem 1.75rem; /* Better balance and extra side breathing room */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--peach-border);
}

.theme-navy .flip-card-front,
.theme-navy .flip-card-back {
  border: 1px solid var(--navy-border);
}

.flip-card-front {
  background: var(--peach-card);
  color: var(--text-dark);
}

.theme-navy .flip-card-front {
  background: var(--navy-card);
  color: var(--text-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.flip-card-back {
  background: var(--coral);
  color: #ffffff;
  transform: rotateY(180deg);
  border-color: var(--coral);
}

/* Front card visuals */
.persona-icon-container {
  width: 80px;
  height: 80px;
  border-radius: 9999px;
  background: rgba(242, 83, 79, 0.08);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: transform 0.5s ease;
}

.theme-navy .persona-icon-container {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
}

.flip-card-container:hover .persona-icon-container {
  transform: scale(1.15) rotate(5deg);
}

.persona-icon-container svg {
  width: 2.5rem;
  height: 2.5rem;
}

.flip-card-front h3 {
  font-size: 1.65rem; /* Balanced */
  margin-bottom: 0.75rem;
}

.flip-card-front p {
  font-size: 1.1rem; /* Balanced */
  color: var(--text-dark-muted);
  line-height: 1.5;
}

.theme-navy .flip-card-front p {
  color: var(--text-light-muted);
}

.flip-hint {
  margin-top: 1.75rem;
  font-size: 0.95rem; /* Balanced */
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.theme-navy .flip-hint {
  color: var(--text-light-muted);
}

.flip-hint svg {
  width: 0.9rem;
  height: 0.9rem;
}

/* Back card details */
.flip-card-back h3 {
  font-size: 1.65rem; /* Balanced */
  margin-bottom: 0.75rem;
}

.flip-card-back .persona-back-divider {
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.25rem;
}

.persona-tip-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* Tighter gaps for vertical safety */
}

.persona-tip-list li {
  font-size: 1rem; /* Highly legible and responsive-safe */
  line-height: 1.4;
  display: flex;
  gap: 0.75rem;
}

.persona-tip-list li svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: #ffffff;
  flex-shrink: 0;
}

/* --- 8. TOOLS & TIPS SECTION --- */
.tools-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
}

@media (max-width: 1024px) {
  .tools-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.tools-card-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tool-item {
  display: flex;
  gap: 1.5rem;
}

.tool-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(242, 83, 79, 0.1);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tool-icon-wrapper svg {
  width: 1.6rem;
  height: 1.6rem;
}

.tool-info h4 {
  font-size: 1.35rem; /* Scaled up */
  margin-bottom: 0.5rem;
}

.tool-info p {
  font-size: 1.10rem; /* Scaled up */
  line-height: 1.5;
  color: var(--text-dark-muted);
}

.theme-navy .tool-info p {
  color: var(--text-light-muted);
}

/* Tips column */
.tips-panel h3 {
  font-size: 2.00rem; /* Scaled up */
  margin-bottom: 2rem;
}

.tips-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tip-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--peach-border);
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
}

.theme-navy .tip-card {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--navy-border);
}

.tip-number-box {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: var(--coral);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-sans);
  flex-shrink: 0;
  box-shadow: 0 4px 10px var(--coral-glow);
}

.tip-card p {
  font-weight: 700;
  font-size: 1.20rem; /* Scaled up */
}

/* Click here YouTube button with aura */
.video-cta-card {
  background: linear-gradient(135deg, rgba(242, 83, 79, 0.05), rgba(99, 102, 241, 0.05));
  border: 1px solid var(--peach-border);
  padding: 2.5rem;
  border-radius: 1.5rem;
  text-align: center;
  margin-top: 4rem;
}

.theme-navy .video-cta-card {
  border: 1px solid var(--navy-border);
}

.video-cta-card h4 {
  font-size: 1.55rem; /* Scaled up */
  margin-bottom: 1rem;
}

.video-cta-card p {
  color: var(--text-dark-muted);
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-size: 1.15rem; /* Scaled up */
  line-height: 1.55; /* Adjusted proportionately */
}

.theme-navy .video-cta-card p {
  color: var(--text-light-muted);
}

/* Pulsing aura button */
.pulse-btn-wrapper {
  position: relative;
  display: inline-block;
}

.pulse-ring-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: var(--coral-glow);
  pointer-events: none;
  z-index: 1;
  animation: pulseVideoCta 2s infinite ease-out;
}

@keyframes pulseVideoCta {
  0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.9; }
  100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

.pulse-btn-wrapper .btn-primary {
  position: relative;
  z-index: 5;
}

/* --- 9. FOOTER & COMMUNITY CONNECT --- */
.footer-wrapper {
  background-color: #050814;
  color: var(--text-light);
  padding: 6rem 2rem 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand h2 {
  font-size: 2.25rem; /* Scaled up */
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 1.20rem; /* Scaled up */
  color: var(--text-light-muted);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2.5rem;
  font-size: 1.05rem; /* Scaled up */
  color: var(--text-light-muted);
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

.back-to-top-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light-muted);
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-to-top-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-light);
  color: var(--text-light);
  transform: translateY(-2px);
}

.back-to-top-btn svg {
  width: 1.2rem;
  height: 1.2rem;
}

/* --- SCROLL REVEAL CLASSTAGS FOR GSAP --- */
.gsap-reveal {
  opacity: 0;
  transform: translateY(30px);
}

.gsap-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.gsap-reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

.gsap-reveal-scale {
  opacity: 0;
  transform: scale(0.95);
}

/* --- BRAND IMAGES INTEGRATION (SPOTLIGHT & STORYTELLING) --- */

/* Spotlight Brand Image & Frame Styles */
.spotlight-img-frame {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--peach-border);
  box-shadow: 0 8px 24px rgba(242, 83, 79, 0.1);
  transition: var(--card-transition);
  position: relative;
  z-index: 1;
}

.theme-navy .spotlight-img-frame {
  border-color: var(--navy-border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.spotlight-brand-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(95%);
  transition: var(--card-transition);
}

/* Hover transitions for the frame and image */
.spotlight-card:hover .spotlight-img-frame {
  border-color: var(--coral);
  box-shadow: 0 12px 30px var(--coral-glow);
  transform: scale(1.03);
}

.theme-navy .spotlight-card:hover .spotlight-img-frame {
  border-color: var(--teal-neon);
  box-shadow: 0 12px 30px var(--teal-glow);
}

.spotlight-card:hover .spotlight-brand-img {
  filter: grayscale(0%) contrast(100%);
  transform: scale(1.08);
}

/* Absolutely positioned SVG Badges */
.spotlight-svg-badge {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  border: 2px solid var(--peach-border);
  padding: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--card-transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.theme-navy .spotlight-svg-badge {
  background: rgba(15, 23, 42, 0.85);
  border-color: var(--navy-border);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.spotlight-card:hover .spotlight-svg-badge {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--coral);
  box-shadow: 0 8px 20px var(--coral-glow);
}

.theme-navy .spotlight-card:hover .spotlight-svg-badge {
  border-color: var(--teal-neon);
  box-shadow: 0 8px 20px var(--teal-glow);
}

/* --- INSTAGRAM-STYLE POST MOCKUP --- */
.challenge-post-preview {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.8rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: var(--card-transition);
  text-align: left;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.theme-navy .challenge-post-preview {
  background: #121826;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.challenge-card:hover .challenge-post-preview {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.theme-navy .challenge-card:hover .challenge-post-preview {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Post Header */
.challenge-post-header {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.theme-navy .challenge-post-header {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.challenge-post-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
}

.challenge-post-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.challenge-post-user-info {
  display: flex;
  flex-direction: column;
}

.challenge-post-username {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.theme-navy .challenge-post-username {
  color: var(--text-light);
}

.challenge-post-location {
  font-size: 0.7rem;
  color: var(--text-dark-muted);
}

.theme-navy .challenge-post-location {
  color: var(--text-light-muted);
}

.challenge-post-more {
  margin-left: auto;
  width: 16px;
  height: 16px;
  color: var(--text-dark-muted);
}

.theme-navy .challenge-post-more {
  color: var(--text-light-muted);
}

/* Post Image Container */
.challenge-post-img-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.02);
}

.challenge-post-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.challenge-card:hover .challenge-post-img {
  transform: scale(1.02);
}

/* Post Actions Footer */
.challenge-post-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
}

.challenge-post-actions-left {
  display: flex;
  gap: 0.75rem;
}

.post-action-icon {
  width: 20px;
  height: 20px;
  color: var(--text-dark);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.theme-navy .post-action-icon {
  color: var(--text-light);
}

.post-action-icon:hover {
  transform: scale(1.15);
}

/* Caption styling integration */
.challenge-card-quote strong {
  font-family: var(--font-sans);
  font-weight: 800;
  margin-right: 0.35rem;
  color: var(--text-dark);
}

.theme-navy .challenge-card-quote strong {
  color: var(--text-light);
}

/* --- 10. MOBILE NAVIGATION & RESPONSIVE REFINEMENTS --- */

/* Mobile Hamburger Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.hamburger-bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-dark);
  border-radius: 9999px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-navy-active .hamburger-bar {
  background-color: var(--text-light);
}

/* Open transitions for hamburger lines */
.mobile-nav-toggle.open .hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.open .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.open .hamburger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Media query for tablet screens (1024px and below) */
@media (max-width: 1024px) {
  .mobile-nav-toggle {
    display: flex;
  }

  .nav-header {
    padding: 0 2.5rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    max-width: 100%;
    width: min(320px, 100%);
    height: 100vh;
    background: rgba(253, 238, 233, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1050;
  }

  .theme-navy-active .nav-links {
    background: rgba(11, 17, 32, 0.98);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.45);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    font-size: 1.25rem; /* Scaled up */
    display: inline-block;
    padding: 0.5rem 1.5rem;
    width: 100%;
  }

  .download-guide-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    margin-top: 1rem;
  }

  /* Sticky gauge card on mobile stacked grid */
  .gauge-card {
    position: static !important;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
  }
}

/* Media query for small mobile screens (640px and below) */
@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }

  .lottie-hero-container {
    height: 300px !important;
  }

  .nav-header {
    padding: 0 1.5rem;
    height: 4.5rem;
  }

  .scroll-progress-container {
    top: 4.5rem;
  }

  .nav-links {
    width: 100%;
  }

  .section-wrapper {
    padding: 4.5rem 1.5rem;
  }

  .hero-title-group {
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .hero-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .cta-group {
    justify-content: center;
    gap: 1rem;
  }

  .cta-group .btn-primary,
  .cta-group .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  /* Responsive styling of grid lists */
  .stats-header h2 {
    font-size: 1.8rem;
  }

  /* Challenge card updates on tiny viewports */
  .challenge-card {
    padding: 1.5rem !important;
  }

  .challenge-post-header {
    padding: 0.5rem 0.75rem !important;
  }
}

/* Media query for tablet and narrow desktop screens (1200px and below) */
@media (max-width: 1200px) {
  .flip-card-container {
    height: 440px; /* Expand height for wrapped text on narrower columns */
  }

  .flip-card-front, 
  .flip-card-back {
    padding: 1.75rem 1.25rem; /* Conserve vertical space and maximize width */
  }

  .persona-icon-container {
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
  }

  .persona-icon-container svg {
    width: 2rem;
    height: 2rem;
  }

  .flip-card-front h3,
  .flip-card-back h3 {
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
  }

  .flip-card-front p {
    font-size: 1rem;
  }

  .flip-hint {
    margin-top: 1.25rem;
    font-size: 0.9rem;
  }

  .flip-card-back .persona-back-divider {
    margin-bottom: 1rem;
  }

  .persona-tip-list {
    gap: 0.6rem;
  }

  .persona-tip-list li {
    font-size: 0.95rem;
    gap: 0.5rem;
  }
}

/* Media query for extra small devices (480px and below) */
@media (max-width: 480px) {
  /* Increase card flipping height so lists never overflow */
  .flip-card-container {
    height: 440px;
  }

  .flip-card-front, 
  .flip-card-back {
    padding: 1.5rem 1rem; /* Save as much horizontal width as possible on tiny devices */
  }

  .flip-card-front h3,
  .flip-card-back h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
  }

  .flip-card-back .persona-back-divider {
    margin-bottom: 0.75rem;
  }

  .persona-tip-list {
    gap: 0.5rem;
  }

  .persona-tip-list li {
    font-size: 0.88rem;
    gap: 0.5rem;
  }
}

/* --- MEET OUR FOUNDERS SECTION --- */
.founder-placeholder-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/5;
  margin: 0 auto;
  border-radius: 2rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
  border: 1px solid rgba(242, 83, 79, 0.15);
  box-shadow: 0 20px 50px rgba(242, 83, 79, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: var(--card-transition);
}

.founder-placeholder-frame::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(242, 83, 79, 0.08) 0%, transparent 60%);
  animation: floatGlow 10s infinite linear;
  pointer-events: none;
}

@keyframes floatGlow {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-10%, -10%) rotate(180deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

.founder-placeholder-frame:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(242, 83, 79, 0.3);
  box-shadow: 0 30px 60px rgba(242, 83, 79, 0.1), var(--neon-shadow);
}

.founder-photo-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  border: 2px dashed rgba(242, 83, 79, 0.25);
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  transition: var(--card-transition);
  overflow: hidden;
  z-index: 2;
}

.founder-placeholder-frame:hover .founder-photo-placeholder {
  border-color: var(--coral);
  background: rgba(255, 255, 255, 0.8);
}

.founder-placeholder-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 83, 79, 0.2) 0%, transparent 70%);
  animation: pulseFounderAura 3s infinite ease-in-out;
  z-index: 1;
}

@keyframes pulseFounderAura {
  0%, 100% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}

.founder-placeholder-icon {
  width: 3.5rem;
  height: 3.5rem;
  stroke: var(--coral);
  stroke-width: 1.5;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-placeholder-frame:hover .founder-placeholder-icon {
  transform: scale(1.15) translateY(-5px);
}

.founder-placeholder-label {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
  position: relative;
  z-index: 2;
}

.founder-placeholder-sub {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 2;
  opacity: 0.8;
}

.founder-badge-overlay {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--text-dark);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.2rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 3;
  transition: var(--card-transition);
}

.founder-badge-overlay svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke: var(--coral);
}

.founder-placeholder-frame:hover .founder-badge-overlay {
  transform: translateY(-4px);
  background: var(--coral);
}

.founder-placeholder-frame:hover .founder-badge-overlay svg {
  stroke: var(--text-light);
}

.founders-signature-block {
  border-left: 3px solid var(--coral);
  padding-left: 1.25rem;
  margin-top: 2rem;
  opacity: 0.9;
}


/* --- CONTACT INFO SECTION --- */
.contact-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.8rem 1.6rem;
  border-radius: 9999px;
  color: var(--text-light-muted);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: var(--card-transition);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent);
  pointer-events: none;
}

.contact-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-icon-box svg {
  width: 1.6rem;
  height: 1.6rem;
}

.contact-card h3 {
  font-size: 1.45rem; /* Scaled up */
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.contact-value {
  font-size: 1.30rem; /* Scaled up */
  font-weight: 700;
  color: var(--text-light-muted);
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
  word-break: break-all;
}

.contact-action {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.05rem; /* Scaled up */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  opacity: 0.5;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.contact-action svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}

/* Hover States for Contact Card */
.contact-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-card:hover .contact-icon-box {
  transform: scale(1.1) rotate(5deg);
}

.contact-card:hover .contact-value {
  color: var(--text-light);
}

.contact-card:hover .contact-action {
  opacity: 1;
  color: var(--coral);
}

.contact-card:hover .contact-action svg {
  transform: translate(3px, -3px);
}

/* Make sure specific cards get matching themed action links */
.contact-card:nth-child(2):hover .contact-action {
  color: var(--teal-neon);
}


/* --- RESEARCH INFOGRAPHICS SHOWCASE & LIGHTBOX --- */
.infographic-card {
  transition: var(--card-transition);
  display: flex;
  flex-direction: column;
}

.infographic-img-container {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  aspect-ratio: 16/22;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.infographic-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.infographic-img-container:hover .infographic-thumbnail {
  transform: scale(1.04);
}

.infographic-overlay-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(11, 17, 32, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1.5rem;
  text-align: center;
}

.infographic-img-container:hover .infographic-overlay-hover {
  opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(11, 17, 32, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.open {
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 3rem;
  font-weight: 200;
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 100000;
  line-height: 1;
  user-select: none;
}

.lightbox-close:hover {
  color: var(--coral);
  transform: scale(1.1) rotate(90deg);
}

.lightbox-content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 800px;
  max-height: 90vh;
  text-align: center;
  position: relative;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 1.25rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(242, 83, 79, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-caption {
  margin-top: 1.25rem;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 1.4rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .lightbox-close {
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
  }
  .lightbox-caption {
    font-size: 1.1rem;
    margin-top: 1rem;
  }
}

/* --- INTERACTIVE RESEARCH DASHBOARD STYLES --- */
.research-dashboard-box {
  transition: var(--theme-transition);
}

.dashboard-card {
  transition: var(--card-transition);
  position: relative;
  overflow: hidden;
}

.dashboard-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.02);
}

.chart-bar-item {
  position: relative;
  transition: transform 0.3s ease;
}

.chart-bar-item:hover {
  transform: translateX(4px);
}

.chart-bar-fill {
  background: var(--coral);
  box-shadow: 0 0 10px rgba(var(--coral-rgb), 0.2);
}

.chart-bar-fill.fill-coral {
  background: linear-gradient(90deg, var(--coral), #ec4899);
  box-shadow: 0 0 15px rgba(242, 83, 79, 0.25);
}

.chart-bar-fill.fill-teal {
  background: linear-gradient(90deg, var(--teal-neon), var(--indigo-neon));
  box-shadow: 0 0 15px rgba(20, 184, 166, 0.25);
}

/* Confidence Slider Scale */
.confidence-scale-wrapper {
  position: relative;
}

.confidence-dot {
  width: 18px;
  height: 18px;
  background: var(--navy-bg);
  border: 4px solid var(--text-light);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.confidence-dot:hover {
  transform: translate(-50%, -50%) scale(1.35);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.9);
}

.confidence-dot.position-not {
  left: 15%;
  border-color: var(--coral);
  box-shadow: 0 0 15px var(--coral-glow);
}

.confidence-dot.position-somewhat {
  left: 50%;
  border-color: var(--indigo-neon);
  box-shadow: 0 0 15px var(--indigo-glow);
}

.confidence-dot.position-very {
  left: 85%;
  border-color: var(--teal-neon);
  box-shadow: 0 0 15px var(--teal-glow);
}

.confidence-dot-value {
  position: absolute;
  top: -2.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--text-light);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.confidence-dot-label {
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light-muted);
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}

/* Strategic Pillars */
.audience-pillar-tile {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.25rem;
  transition: var(--card-transition);
}

.audience-pillar-tile:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.pillar-tile-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.pillar-tile-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.pillar-tile-header h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-light);
  margin: 0;
}

.audience-pillar-tile p {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  line-height: 1.4;
  margin: 0;
}

/* Helper Text Colors for Icons */
.coral-text { color: var(--coral) !important; filter: drop-shadow(0 0 4px var(--coral-glow)); }
.teal-text { color: var(--teal-neon) !important; filter: drop-shadow(0 0 4px var(--teal-glow)); }
.indigo-text { color: var(--indigo-neon) !important; filter: drop-shadow(0 0 4px var(--indigo-glow)); }
.yellow-text { color: #f59e0b !important; filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.3)); }

/* Callout Box */
.dashboard-callout-box {
  background: rgba(20, 184, 166, 0.04);
  border: 1px solid rgba(20, 184, 166, 0.15);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: inset 0 0 15px rgba(20, 184, 166, 0.02);
  transition: var(--card-transition);
}

.dashboard-callout-box:hover {
  background: rgba(20, 184, 166, 0.06);
  border-color: rgba(20, 184, 166, 0.25);
  box-shadow: inset 0 0 20px rgba(20, 184, 166, 0.05), 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 640px) {
  .confidence-scale-track {
    margin: 4rem 0 !important;
  }
  .confidence-dot-label {
    font-size: 0.75rem;
    bottom: -2.8rem;
    white-space: normal;
    width: 80px;
  }
}

/* --- PRESENCE VS. REAL VISIBILITY STYLES --- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  position: relative;
  align-items: stretch;
}

.comparison-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--card-transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.comparison-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  transition: background 0.8s ease;
  z-index: 1;
}

.presence-card:hover .comparison-card-glow {
  background: radial-gradient(circle, rgba(242, 83, 79, 0.04) 0%, rgba(255,255,255,0) 60%);
}

.visibility-card:hover .comparison-card-glow {
  background: radial-gradient(circle, rgba(20, 184, 166, 0.05) 0%, rgba(255,255,255,0) 60%);
}

.comparison-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.presence-card {
  border-color: rgba(242, 83, 79, 0.15);
  box-shadow: 0 10px 30px rgba(242, 83, 79, 0.02);
}

.presence-card:hover {
  border-color: rgba(242, 83, 79, 0.35);
  box-shadow: 0 20px 40px rgba(242, 83, 79, 0.05);
}

.visibility-card {
  border-color: rgba(20, 184, 166, 0.2);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.02);
}

.visibility-card:hover {
  border-color: rgba(20, 184, 166, 0.45);
  box-shadow: 0 20px 40px rgba(20, 184, 166, 0.08), 0 0 30px rgba(20, 184, 166, 0.03);
}

.comparison-badge {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 1.5rem;
  z-index: 2;
  position: relative;
}

.badge-presence {
  background: rgba(242, 83, 79, 0.12);
  color: var(--coral);
  border: 1px solid rgba(242, 83, 79, 0.2);
}

.badge-visibility {
  background: rgba(20, 184, 166, 0.12);
  color: var(--teal-neon);
  border: 1px solid rgba(20, 184, 166, 0.25);
  box-shadow: 0 0 10px rgba(20, 184, 166, 0.1);
}

.comparison-icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  z-index: 2;
  transition: var(--card-transition);
}

.comparison-card:hover .comparison-icon-wrap {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.comparison-icon {
  width: 2rem;
  height: 2rem;
  transition: all 0.4s ease;
}

.presence-card .comparison-icon {
  color: var(--text-light-muted);
}

.presence-card:hover .comparison-icon {
  color: var(--text-light);
  transform: scale(1.05);
}

.visibility-card .comparison-icon {
  color: var(--teal-neon);
  filter: drop-shadow(0 0 8px var(--teal-glow));
}

.visibility-card:hover .comparison-icon {
  color: #2dd4bf;
  transform: scale(1.1) rotate(10deg);
  filter: drop-shadow(0 0 12px rgba(20, 184, 166, 0.5));
}

/* Simulated interactive elements */
.cursor-pointer-simulated {
  position: absolute;
  bottom: 8px;
  right: 8px;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  animation: cursorDrift 4s infinite ease-in-out;
  pointer-events: none;
}

.presence-card:hover .cursor-pointer-simulated {
  transform: translate(-10px, -10px) scale(1.2);
}

@keyframes cursorDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(4px, 4px); }
}

.spotlight-beam-simulated {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%) scaleX(0.7);
  width: 120px;
  height: 120px;
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.15) 0%, rgba(20, 184, 166, 0) 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  opacity: 0.3;
  pointer-events: none;
  transition: all 0.5s ease;
  z-index: 1;
}

.visibility-card:hover .spotlight-beam-simulated {
  opacity: 0.7;
  transform: translate(-50%, -100%) scaleX(1);
  height: 140px;
}

.comparison-card-title {
  font-size: 1.95rem;
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  z-index: 2;
  position: relative;
  letter-spacing: -0.01em;
}

.comparison-card-subtitle {
  font-size: 1.15rem;
  color: var(--text-light-muted);
  line-height: 1.5;
  margin-bottom: 2.25rem;
  z-index: 2;
  position: relative;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 2;
  position: relative;
  flex-grow: 1;
}

.comparison-list li {
  display: flex;
  gap: 1.15rem;
  align-items: start;
}

.list-icon-box {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
  font-weight: 900;
}

.list-icon-box svg {
  width: 1.15rem !important;
  height: 1.15rem !important;
}

.list-icon-error {
  background: rgba(242, 83, 79, 0.1);
  border: 1px solid rgba(242, 83, 79, 0.2);
  color: var(--coral);
}

.list-icon-success {
  background: rgba(20, 184, 166, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.25);
  color: var(--teal-neon);
  box-shadow: 0 0 8px rgba(20, 184, 166, 0.08);
}

.comparison-list span {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-light-muted);
}

.comparison-card:hover .comparison-list span {
  color: var(--text-light);
  transition: color 0.3s ease;
}

.comparison-list strong {
  color: var(--text-light);
  font-weight: 700;
}

.comparison-footer {
  margin-top: 3rem;
  z-index: 2;
  position: relative;
}

.status-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 1.10rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  width: 100%;
  text-align: center;
  transition: all 0.4s ease;
}

.label-passive {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-light-muted);
}

.label-active-vis {
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.2);
  color: var(--teal-neon);
  box-shadow: 0 0 15px rgba(20, 184, 166, 0.05);
}

.visibility-card:hover .label-active-vis {
  background: var(--teal-neon);
  color: var(--navy-bg);
  box-shadow: 0 0 20px rgba(20, 184, 166, 0.4);
  border-color: transparent;
  transform: scale(1.02);
}

/* VS Divider Badge */
.comparison-divider-badge {
  position: absolute;
  grid-column: 1 / -1;
  grid-row: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: var(--navy-bg);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  padding: 0;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.comparison-divider-badge span {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--text-light-muted);
  letter-spacing: -0.02em;
}

/* Theme adaptation for Light Mode / Peach theme overlap if necessary */
.theme-peach-active .comparison-divider-badge {
  background: var(--peach-bg);
  border-color: rgba(242, 83, 79, 0.15);
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .comparison-divider-badge {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    margin: -1.5rem auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
}  
  .comparison-card {
    padding: 2.5rem 1.75rem;
  }
}

/* ==========================================================================
   --- THE W.E. PROJECT MULTI-VIEW SPA ADDITIONS ---
   ========================================================================== */

/* --- 1. SPA PAGE TRANSITIONS --- */
.spa-page {
  width: 100%;
}

/* --- 2. FLOATING BACK TO HOME BUTTON --- */
.back-to-home-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  background: var(--navy-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.95rem;
  display: none; /* Controlled dynamically in JS */
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.theme-peach-active .back-to-home-btn {
  background: var(--peach-bg);
  border-color: var(--peach-border);
  color: var(--text-dark);
  box-shadow: 0 10px 25px rgba(242, 83, 79, 0.1);
}
.back-to-home-btn:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: var(--neon-shadow);
  border-color: var(--coral);
}
.back-to-home-btn svg {
  width: 1.2rem;
  height: 1.2rem;
  transition: transform 0.3s;
}
.back-to-home-btn:hover svg {
  transform: translateX(-3px);
}

/* --- 3. FOUNDER PORTRAIT DOUBLE-BORDER GLOW --- */
.founder-photo-frame {
  position: relative;
  width: 250px;
  height: 250px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  padding: 0;
  display: block;
  border: 4px solid var(--peach-bg);
  box-shadow: 0 0 0 4px var(--coral), 0 10px 30px rgba(242, 83, 79, 0.18);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.founder-photo-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: inset 0 0 15px rgba(242, 83, 79, 0.25);
  pointer-events: none;
}
.founder-photo-frame:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0 6px var(--coral), 0 15px 40px rgba(242, 83, 79, 0.3);
}
.founder-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  transition: transform 0.6s ease;
}
.founder-photo-frame:hover .founder-photo-img {
  transform: scale(1.08);
}

/* --- 4. PODCAST PLAYER STYLE --- */
.podcast-slider-track:hover .podcast-slider-knob {
  opacity: 1 !important;
}
.control-btn-small {
  transition: transform 0.2s, color 0.2s;
}
.control-btn-small:hover {
  color: var(--text-light) !important;
  transform: scale(1.1);
}
#btnPodcastPlay:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}
.audio-wave-box span {
  width: 4px;
  background-color: var(--indigo-neon);
  border-radius: 2px;
  height: 4px;
  transition: height 0.15s ease;
}
.audio-wave-box.playing span {
  animation: bounceWave 1s infinite alternate;
}
.audio-wave-box.playing .bar-1 { animation-delay: 0.1s; height: 18px; }
.audio-wave-box.playing .bar-2 { animation-delay: 0.3s; height: 24px; }
.audio-wave-box.playing .bar-3 { animation-delay: 0.2s; height: 14px; }
.audio-wave-box.playing .bar-4 { animation-delay: 0.4s; height: 20px; }

@keyframes bounceWave {
  0% { transform: scaleY(1); }
  100% { transform: scaleY(5); }
}

/* --- 5. DISCUSSION CHAT BOARD --- */
.comments-scroller-container::-webkit-scrollbar {
  width: 6px;
}
.comments-scroller-container::-webkit-scrollbar-track {
  background: transparent;
}
.comments-scroller-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.comments-scroller-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}
.comment-bubble {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.15rem;
  display: flex;
  gap: 1rem;
  align-items: start;
  transition: all 0.3s ease;
}
.comment-bubble:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.comment-avatar {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.comment-content-block {
  flex: 1;
}
.comment-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}
.comment-username {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-light);
}
.comment-time {
  font-size: 0.75rem;
  color: var(--text-light-muted);
}
.comment-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-light-muted);
}

/* --- 6. W.E.LLNESS AUDIO WAVE --- */
.wellness-wave-simulated span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--teal-neon);
  transition: transform 0.25s;
}
.wellness-wave-simulated.playing .meditation-dot {
  animation: pulseDot 1.2s infinite ease-in-out;
}
.wellness-wave-simulated.playing .bar-1 { animation-delay: 0s; }
.wellness-wave-simulated.playing .bar-2 { animation-delay: 0.4s; }
.wellness-wave-simulated.playing .bar-3 { animation-delay: 0.8s; }

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.6); opacity: 1; box-shadow: 0 0 10px var(--teal-glow); }
}

/* --- 7. YOGA RESPONSIVE VIDEO CARDS --- */
.yoga-video-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.yoga-video-card:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 184, 166, 0.25);
  box-shadow: 0 15px 35px rgba(20, 184, 166, 0.1);
}

/* Mobile responsive padding constraints for SPA sections */
@media (max-width: 768px) {
  .back-to-home-btn {
    bottom: 1.5rem;
    left: 1.5rem;
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
}\n
/* ==========================================================================
   --- STRATEGY SUB-NAVIGATION DROPDOWN MENU ---
   ========================================================================== */

/* Dropdown Container */
.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.dropdown-arrow {
  width: 0.95rem;
  height: 0.95rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  vertical-align: middle;
}

/* Submenu block - Desktop */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(253, 238, 233, 0.96); /* Peach theme matching background */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--peach-border);
  border-radius: 14px;
  padding: 0.75rem 0;
  width: 240px;
  box-shadow: 0 15px 35px rgba(242, 83, 79, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  list-style: none;
}

.theme-navy-active .dropdown-menu {
  background: rgba(11, 17, 32, 0.96); /* Dark navy theme dropdown matching background */
  border-color: var(--navy-border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

/* Hover & Focus state activations */
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Items styling */
.dropdown-menu li {
  width: 100%;
  padding: 0;
  margin: 0;
}

.dropdown-menu a {
  display: block !important;
  width: 100% !important;
  padding: 0.6rem 1.5rem !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  color: var(--text-dark) !important;
  text-align: left !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  opacity: 0.8 !important;
  position: relative;
}

.theme-navy-active .dropdown-menu a {
  color: var(--text-light) !important;
}

.dropdown-menu a:hover {
  background: rgba(242, 83, 79, 0.07) !important;
  color: var(--coral) !important;
  opacity: 1 !important;
  padding-left: 1.8rem !important; /* Premium slide-right hover effect */
}

.theme-navy-active .dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.04) !important;
}

/* Hide default bottom animated border line for submenu items */
.dropdown-menu a::after {
  display: none !important;
}

/* --- SCROLL OFFSET TO AVOID FIXED NAVBAR COVERING SECTIONS --- */
#visibility-strategy,
#self-reflection,
#persona-strategy,
#ab-challenge,
#local-inspiration,
#recommended-tools {
  scroll-margin-top: 6.5rem; /* Elegant offset padding for modern browsers */
}

/* --- RESPONSIVE TABLET & MOBILE NAV DRAWER SUBMENU (1024px and below) --- */
@media (max-width: 1024px) {
  /* Let Strategy parent item block direct navigation if drawer submenu is closed */
  .nav-dropdown {
    width: 100%;
  }

  .dropdown-trigger {
    display: inline-flex;
    justify-content: center;
    width: auto;
  }

  /* Expand relative submenu panel inside mobile drawer list */
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0.25rem 0 0.5rem 0 !important;
    display: none !important; /* Toggle display via class */
    flex-direction: column !important;
    gap: 0.4rem !important;
    z-index: 10;
  }

  /* Display mobile menu when open class applied */
  .nav-dropdown.mobile-open .dropdown-menu {
    display: flex !important;
  }

  .nav-dropdown.mobile-open .dropdown-arrow {
    transform: rotate(180deg);
  }

  .dropdown-menu a {
    padding: 0.5rem 1rem !important;
    font-size: 1.05rem !important;
    text-align: center !important;
    opacity: 0.75 !important;
    width: auto !important;
    display: inline-block !important;
  }

  .dropdown-menu a:hover {
    padding-left: 1rem !important;
    background: transparent !important;
  }
}
