/* ===== Landing Page Styles (2Octave / 3Octave) ===== */

/* Sticky CTA bar */
.landing-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(20,20,20,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.landing-sticky-cta--visible {
  transform: translateY(0);
}

.landing-sticky-cta--center {
  justify-content: center;
}

.landing-sticky-cta__left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.landing-sticky-cta__discount {
  font-size: 14px;
  font-weight: 500;
  color: #F1EFE8;
}

.landing-sticky-cta__dash {
  font-size: 14px;
  color: #5F5E5A;
}

.landing-sticky-cta__time {
  font-size: 14px;
  color: #888780;
  font-variant-numeric: tabular-nums;
}

.landing-sticky-cta__btn {
  display: inline-block;
  background: #D94A5A;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #FBEAF0;
  text-decoration: none;
  white-space: nowrap;
}

/* Social Proof inline */
.landing-hero__social-proof {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.landing-hero__social-proof span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Instructor credit line */
.landing-instructor-credit {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 2rem;
}

/* Curriculum dropdown wrapper */
.landing-curriculum-accordion {
  max-width: 700px;
  margin: 0 auto;
}

/* Hero */
.landing-hero {
  padding: 5rem 0 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.landing-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.landing-hero__title em {
  font-style: normal;
  color: var(--accent);
}

.landing-hero__subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.landing-hero__video {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.landing-hero__badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Problem Section */
.landing-problem {
  text-align: center;
}

.landing-problem__list {
  list-style: none;
  max-width: 640px;
  margin: 2rem auto 0;
  text-align: left;
}

.landing-problem__list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.landing-problem__list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}

/* Why Section */
.landing-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.landing-why__item {
  text-align: center;
  padding: 2rem;
  background-color: var(--bg-card);
  border-radius: var(--radius);
}

.landing-why__item-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.landing-why__item h3 {
  margin-bottom: 0.5rem;
}

/* Course Contents / Curriculum */
.landing-curriculum {
  max-width: 800px;
  margin: 0 auto;
}

.landing-curriculum__module {
  background-color: var(--bg-card);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.landing-curriculum__module-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
}

.landing-curriculum__module-number {
  background-color: var(--accent);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.landing-curriculum__module-title {
  font-weight: 600;
  font-size: 1.05rem;
}

.landing-curriculum__module-lessons {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.landing-curriculum__module-lessons li {
  padding: 0.3rem 0;
  list-style: none;
  position: relative;
  padding-left: 1.25rem;
}

.landing-curriculum__module-lessons li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Before/After */
.landing-before-after__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.landing-before-after__item h3 {
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  text-align: center;
}

.landing-before-after__item p {
  text-align: center;
  font-size: 0.9rem;
}

/* Reviews Grid */
.landing-reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.landing-review-card {
  background-color: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
}

.landing-review-card--hidden {
  display: none;
}

.landing-review-card__stars {
  margin-bottom: 0.75rem;
}

.landing-review-card__text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.landing-review-card__author {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Instructor */
.landing-instructor {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
}

.landing-instructor__photo {
  aspect-ratio: 1;
  background-color: var(--bg-card);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.landing-instructor__info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.landing-instructor__info p {
  margin-bottom: 0.75rem;
}

.landing-instructor__credentials {
  list-style: none;
  margin-top: 1rem;
}

.landing-instructor__credentials li {
  padding: 0.4rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.landing-instructor__credentials li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: 700;
}

/* Pricing */
.landing-pricing {
  text-align: center;
}

.landing-pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 860px;
  margin: 2rem auto 0;
  align-items: stretch;
}

.landing-pricing__card {
  background-color: var(--bg-card);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
}

.landing-pricing__card--featured {
  border: 2px solid var(--accent);
}

.landing-pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.landing-pricing__plan-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.landing-pricing__amount {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.landing-pricing__original {
  color: var(--text-secondary);
  text-decoration: line-through;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.landing-pricing__desc {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.landing-pricing__features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.landing-pricing__features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.landing-pricing__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: 700;
}

/* Hero Social Proof */
.landing-hero__social-proof {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

/* Solution/Benefits — Instructor Note */
.landing-why__instructor-note {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Curriculum Accordion — lesson list inside panels */
.landing-curriculum .mn-accordion__panel .landing-curriculum__module-lessons {
  padding: 0 0 1.25rem 0;
}

/* FAQ */
.landing-faq {
  max-width: 800px;
  margin: 0 auto;
}

/* ===== Awakening: Personalized Hero ===== */
.landing-hero--personalized {
  padding: 4rem 0 3rem;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.hero-personal {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* Scroll arrow (hero → whyneed) */
.hero-personal__scroll {
  display: inline-block;
  color: rgba(255,255,255,0.4);
  animation: hero-bounce 1.8s ease-in-out infinite;
  transition: color 0.2s;
  text-decoration: none;
  margin-top: 0.5rem;
}

.hero-personal__scroll:hover {
  color: var(--accent);
}

@keyframes hero-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===== Awakening Gauge v1.2 — Block Cell Bar + Branch A/B Animation ===== */
.awake-gauge {
  margin-bottom: 1.5rem;
  text-align: left;
}

.awake-gauge__frame {
  position: relative;
  display: flex;
  gap: 2px;
  height: 48px;
  padding: 4px;
  background: #1a1a1a;
  border: 1px solid rgba(93,202,165,0.5);
  border-radius: 4px;
  overflow: visible;
  transition: border-color 0.3s ease;
}

/* Individual cell */
.awake-gauge__cell {
  flex: 1;
  border-radius: 2px;
  transition: opacity 0.15s;
}

.awake-gauge__cell--you { opacity: 1; }
.awake-gauge__cell--awake { opacity: 0; }
.awake-gauge__cell--dream {
  border: 1px dashed rgba(95,94,90,0.3);
  opacity: 0;
}

/* Cell fill animation (Branch A Phase 3) */
.awake-gauge__cell--fill {
  animation: awake-cell-fill 0.2s forwards;
}

@keyframes awake-cell-fill {
  0%   { opacity: 0; transform: scaleY(0.2); }
  20%  { opacity: 1; transform: scaleY(1.15); box-shadow: 0 0 8px rgba(93,202,165,0.7); }
  40%  { opacity: 0.6; transform: scaleY(0.85); }
  60%  { opacity: 1; transform: scaleY(1.08); box-shadow: 0 0 6px rgba(93,202,165,0.5); }
  80%  { opacity: 0.85; transform: scaleY(0.95); }
  100% { opacity: 1; transform: scaleY(1); box-shadow: none; }
}

/* Dream cell fade in */
.awake-gauge__cell--dream-in {
  animation: awake-dream-in 0.3s forwards;
}

@keyframes awake-dream-in {
  0%   { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Branch B: golden shimmer on cells */
.awake-gauge__cell--gold {
  background-size: 200% 100%;
  background-image: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.15) 45%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0.15) 55%, transparent 70%);
  animation: awake-shimmer 3s ease infinite;
}

@keyframes awake-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --- Limit wall (Branch A Phase 1-2) --- */
.awake-gauge__limit {
  position: absolute;
  top: -8px;
  bottom: -8px;
  width: 3px;
  border-radius: 1px;
  background: #D4537E;
  transform: translateX(-50%);
  opacity: 0;
  z-index: 3;
}

.awake-gauge__limit--glow {
  animation: awake-limit-glow 0.3s 3;
}

@keyframes awake-limit-glow {
  0%   { box-shadow: 0 0 4px rgba(212,83,126,0.5); }
  50%  { box-shadow: 0 0 14px rgba(212,83,126,0.9); }
  100% { box-shadow: 0 0 4px rgba(212,83,126,0.5); }
}

.awake-gauge__limit--break {
  animation: awake-limit-break 0.35s forwards;
}

@keyframes awake-limit-break {
  0%   { opacity: 1; transform: translateX(-50%) scaleY(1); }
  30%  { opacity: 1; transform: translateX(-50%) scaleY(1.2); }
  60%  { opacity: 0.5; transform: translateX(-50%) scaleY(0.2) scaleX(4); }
  100% { opacity: 0; transform: translateX(-50%) scaleY(0) scaleX(6); }
}

/* --- Frame shake (Phase 1, both branches) --- */
.awake-gauge__frame--shake {
  animation: awake-shake 0.6s 3;
}

@keyframes awake-shake {
  0%, 100% { transform: translateX(0); }
  10%  { transform: translateX(-3px); }
  20%  { transform: translateX(4px); }
  30%  { transform: translateX(-5px); }
  40%  { transform: translateX(5px); }
  50%  { transform: translateX(-4px); }
  60%  { transform: translateX(3px); }
  70%  { transform: translateX(-3px); }
  80%  { transform: translateX(4px); }
  90%  { transform: translateX(-2px); }
}

/* --- Phase 2 sparks (Branch A) --- */
.awake-gauge__sparks {
  position: absolute;
  top: 50%;
  z-index: 4;
  pointer-events: none;
}

.awake-gauge__spark {
  position: absolute;
  border-radius: 50%;
  animation: awake-spark-fly forwards;
}

@keyframes awake-spark-fly {
  0%   { opacity: 1; transform: translate(0,0) scale(1); }
  100% { opacity: 0; transform: translate(var(--tx),var(--ty)) scale(0); }
}

/* --- Flash --- */
.awake-gauge__flash {
  position: absolute;
  inset: -20px;
  border-radius: 8px;
  pointer-events: none;
  z-index: 2;
}

.awake-gauge__flash--fire {
  animation: awake-flash 0.3s;
}

@keyframes awake-flash {
  0%   { background: rgba(93,202,165,0.08); }
  50%  { background: rgba(93,202,165,0.15); }
  100% { background: transparent; }
}

/* --- Labels (You left, Dream Song right) --- */
.awake-gauge__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding: 0 2px;
  transform: translateY(10px);
}

.awake-gauge__lbl {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.awake-gauge__lbl:last-child { text-align: right; }

.awake-gauge__lbl-title {
  font-size: 10px;
  text-transform: uppercase;
  color: #5F5E5A;
  letter-spacing: 0.5px;
}

.awake-gauge__lbl-value {
  font-size: 13px;
  font-weight: 500;
}

.awake-gauge__lbl-value--you   { color: #9FE1CB; }
.awake-gauge__lbl-value--dream { color: #5F5E5A; }

/* Branch B: golden You label */
.awake-gauge[data-branch="b"] .awake-gauge__lbl-value--you { color: #EF9F27; }

/* --- G4 text (below labels, hero heading size) --- */
.awake-gauge__g4-text {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-align: center;
  color: #5DCAA5;
  margin-top: 16px;
  opacity: 0;
  transform: scale(0.5);
}

.awake-gauge[data-branch="b"] .awake-gauge__g4-text { color: #EF9F27; }

.awake-gauge__g4-text--pop {
  animation: awake-g4-pop 0.5s forwards;
}

@keyframes awake-g4-pop {
  0%   { opacity: 0; transform: scale(0.5); }
  50%  { opacity: 1; transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}

/* --- Headline (matches home hero title) --- */
.hero-personal__headline {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

/* --- CTA button (Awakening style) --- */
.mn-btn--awake {
  background: #D4537E;
  color: #FBEAF0;
  border: none;
  border-radius: 4px;
  padding: 14px 48px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 0 12px rgba(212,83,126,0.3);
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  transform: translateY(10px);
}

.mn-btn--awake:hover {
  background: #c44470;
  box-shadow: 0 0 20px rgba(212,83,126,0.5);
  transform: translateY(-2px);
  color: #FBEAF0;
}

.mn-btn--awake:active { transform: translateY(0); }

/* --- Branch C: Empty gauge (no test data) --- */
.awake-gauge--empty { margin-bottom: 2rem; }

.awake-gauge__frame--empty {
  border-color: rgba(93,202,165,0.3);
}

.awake-gauge__cell--placeholder {
  background: rgba(95,94,90,0.08);
  border: 1px dashed rgba(95,94,90,0.15);
  border-radius: 2px;
}

/* Spark wrapper (reused from home for Branch C) */
.spark-wrap {
  position: relative;
  display: inline-block;
}

.spark-svg {
  position: absolute;
  top: -16px;
  left: -16px;
  width: calc(100% + 32px);
  height: calc(100% + 32px);
  pointer-events: none;
  overflow: visible;
  z-index: 1;
}

/* Power button (reused from home) */
.mn-btn--power {
  background-color: var(--accent);
  color: #0A332F;
  font-weight: 700;
  border: none;
  padding: 1rem 2.25rem;
  border-radius: var(--radius);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}
.mn-btn--power:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(71,212,202,0.3);
  color: #0A332F;
}
.mn-btn--power.mn-btn--large {
  padding: 1.1rem 2.75rem;
  font-size: 1.15rem;
}

/* --- Message --- */
.hero-personal__message {
  color: var(--text-secondary);
  font-size: 15px;
  text-align: center;
  margin-bottom: 2rem;
  transform: translateY(10px);
}

@media (max-width: 768px) {
  .landing-hero--personalized { padding: 2.5rem 0 2rem; }
  .awake-gauge__frame { height: 40px; gap: 1px; padding: 3px; }
  .awake-gauge__lbl-title { font-size: 9px; }
  .awake-gauge__lbl-value { font-size: 11px; }
  .awake-gauge__g4-text { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .hero-personal__headline { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .mn-btn--awake { padding: 12px 36px; font-size: 14px; }
}

/* ===== Awakening: Why I Need Section (Accordion) ===== */
.landing-whyneed__card {
  max-width: 680px;
  margin: 2rem auto 0;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 20px;
}

.landing-whyneed__intro {
  color: #fff;
  font-size: calc(14px * 1.2);
  font-weight: 500;
  margin-bottom: 16px;
}

.landing-whyneed__list {
  margin: 0;
  padding: 0;
}

.landing-whyneed__item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.landing-whyneed__item:last-child {
  border-bottom: none;
}

/* Trigger row */
.landing-whyneed__trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font: inherit;
}

.landing-whyneed__trigger:hover {
  opacity: 0.85;
}

/* Checkbox icon */
.landing-whyneed__check {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #5DCAA5;
  flex-shrink: 0;
  position: relative;
}

.landing-whyneed__check::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.landing-whyneed__text {
  flex: 1;
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
}

.landing-whyneed__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.landing-whyneed__lesson {
  color: #5DCAA5;
  font-size: 12px;
  white-space: nowrap;
}

.landing-whyneed__arrow {
  font-size: 14px;
  color: #5F5E5A;
  transition: transform 0.3s;
}

.landing-whyneed__trigger[aria-expanded="true"] .landing-whyneed__arrow {
  transform: rotate(180deg);
}

/* Reason panel (accordion) */
.landing-whyneed__reason {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.landing-whyneed__reason[aria-hidden="false"] {
  max-height: 300px;
}

.landing-whyneed__reason p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 0 0 0 30px;
  margin: 0;
}

.landing-whyneed__reason p + p {
  padding-bottom: 14px;
}

.landing-whyneed__conclusion {
  color: #5DCAA5;
  font-weight: 600;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .landing-whyneed__card { padding: 16px; }
  .landing-whyneed__trigger { flex-wrap: wrap; gap: 6px 10px; }
  .landing-whyneed__right { margin-left: 30px; }
}

/* ===== Awakening: Already Awakened — Reviews Masonry ===== */
.landing-reviews__masonry {
  columns: 2;
  column-gap: 12px;
  max-width: 680px;
  margin: 2rem auto 0;
}

.landing-reviews__card {
  break-inside: avoid;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
}

/* Profile row */
.landing-reviews__profile {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.landing-reviews__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='rgba(255,255,255,0.3)'%3E%3Ccircle cx='16' cy='12' r='5'/%3E%3Cpath d='M6 28c0-5.5 4.5-10 10-10s10 4.5 10 10'/%3E%3C/svg%3E");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.landing-reviews__meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.landing-reviews__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.landing-reviews__date {
  font-size: 12px;
  color: #5F5E5A;
}

.landing-reviews__card p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.landing-reviews__card em {
  color: #5DCAA5;
  font-weight: 500;
  font-style: normal;
}

@media (max-width: 768px) {
  .landing-reviews__masonry {
    columns: 1;
  }
}

/* ===== Curriculum — 3 Lesson Cards ===== */
.landing-curriculum { padding: 80px 0; text-align: center; }

.landing-curriculum__sub {
  font-size: 15px;
  color: #888780;
  margin-top: 8px;
  margin-bottom: 36px;
}

.landing-curriculum__cards {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.landing-curriculum__card {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
}

/* Card head */
.landing-curriculum__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 24px 0;
}

.landing-curriculum__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(93,202,165,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  color: #5DCAA5;
  flex-shrink: 0;
}

.landing-curriculum__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.landing-curriculum__tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5F5E5A;
}

.landing-curriculum__title {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

/* Video placeholder */
.landing-curriculum__video {
  aspect-ratio: 16 / 9;
  margin: 20px 24px 0;
  border-radius: 6px;
  border: 1px dashed rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-curriculum__play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-curriculum__play span {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent rgba(255,255,255,0.2);
  margin-left: 2px;
}

/* Card body */
.landing-curriculum__body {
  padding: 20px 24px 24px;
}

.landing-curriculum__body p {
  font-size: 15px;
  color: #888780;
  line-height: 1.7;
  margin: 0 0 14px;
}

.landing-curriculum__promise {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.landing-curriculum__promise--keys {
  color: #888780;
  font-weight: 400;
}

.landing-curriculum__accent {
  color: #5DCAA5;
  font-weight: 500;
}

@media (max-width: 768px) {
  .landing-curriculum { padding: 56px 0; }
  .landing-curriculum__head { padding: 20px 16px 0; }
  .landing-curriculum__video { margin: 16px 16px 0; }
  .landing-curriculum__body { padding: 16px 16px 20px; }
  .landing-curriculum__title { font-size: 16px; }
}

/* ===== FAQ Section ===== */
.landing-faq-section { padding: 80px 0; }

.landing-faq {
  max-width: 640px;
  margin: 2rem auto 0;
}

.landing-faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.landing-faq__item:last-child { border-bottom: none; }

.landing-faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
}

.landing-faq__q:hover { opacity: 0.85; }

.landing-faq__arrow {
  font-size: 16px;
  color: #5F5E5A;
  flex-shrink: 0;
  transition: transform 0.3s;
  margin-left: 16px;
}

.landing-faq__q[aria-expanded="true"] .landing-faq__arrow {
  transform: rotate(180deg);
}

.landing-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.landing-faq__a[aria-hidden="false"] {
  max-height: 400px;
}

.landing-faq__a p {
  font-size: 16px;
  color: #888780;
  line-height: 1.7;
  padding-bottom: 20px;
  margin: 0;
}

@media (max-width: 768px) {
  .landing-faq-section { padding: 56px 0; }
  .landing-faq__q { font-size: 16px; }
  .landing-faq__a p { font-size: 14px; }
}

/* ===== Practicing alone is slow — Doubt Section ===== */
.landing-doubt { text-align: center; padding: 80px 0; }

.landing-doubt__sub {
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

.landing-doubt__sub:first-of-type { margin-top: 24px; }
.landing-doubt__sub + .landing-doubt__sub { margin-top: 12px; }

.landing-doubt__turn {
  font-size: 20px;
  color: var(--text-primary);
  font-weight: 600;
  margin-top: 16px;
}

.landing-doubt__divider {
  width: 40px;
  height: 1px;
  background: rgba(93,202,165,0.3);
  margin: 48px auto;
}

/* Process card */
.landing-doubt__process {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 32px 24px;
  max-width: 560px;
  margin: 0 auto;
}

.landing-doubt__process-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #5F5E5A;
  margin: 0 0 28px;
}

.landing-doubt__steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.landing-doubt__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.landing-doubt__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(93,202,165,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #5DCAA5;
  margin-bottom: 6px;
}

.landing-doubt__label {
  font-size: 17px;
  color: #fff;
  font-weight: 600;
}

.landing-doubt__desc {
  font-size: 14px;
  color: #5F5E5A;
  line-height: 1.4;
}

.landing-doubt__arrow {
  font-size: 18px;
  color: #5F5E5A;
  align-self: center;
  flex-shrink: 0;
  padding: 0 2px;
}

.landing-doubt__arrow--v { display: none; }

/* Feedback line */
.landing-doubt__feedback {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 32px;
}

.landing-doubt__feedback-num {
  color: #F1EFE8;
  font-weight: 600;
}

.landing-doubt__feedback-accent {
  color: #5DCAA5;
  font-weight: 600;
}

/* Speed promise */
.landing-doubt__speed {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 10px;
}

.landing-doubt__speed-w {
  color: #fff;
  font-weight: 500;
}

/* Stats */
.landing-doubt__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
}

.landing-doubt__stat { text-align: center; }

.landing-doubt__stat-num {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  display: block;
}

.landing-doubt__stat-num sup {
  font-size: 22px;
}

.landing-doubt__stat-lbl {
  font-size: 14px;
  color: #5F5E5A;
  margin-top: 6px;
  display: block;
}

@media (max-width: 600px) {
  .landing-doubt { padding: 56px 0; }

  .landing-doubt__steps {
    flex-direction: column;
    align-items: center;
  }

  .landing-doubt__step { margin: 12px 0; }
  .landing-doubt__arrow--h { display: none; }
  .landing-doubt__arrow--v { display: block; }

  .landing-doubt__stats { gap: 32px; }
  .landing-doubt__stat-num { font-size: 32px; }
}

/* ===== Awakening: Hero Background ===== */
.landing-hero--awakening {
  position: relative;
  overflow: hidden;
}

.landing-hero__bg-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,18,18,0.7) 0%, rgba(18,18,18,0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  z-index: 0;
}

.landing-hero--awakening .mn-container {
  position: relative;
  z-index: 1;
}

/* ===== Awakening: Stakes ===== */
.landing-stakes {
  text-align: center;
}

.landing-stakes__content {
  max-width: 640px;
  margin: 0 auto;
}

.landing-stakes__content p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.landing-stakes__content strong {
  color: var(--text-primary);
}

.landing-stakes__hook {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent) !important;
  margin-top: 2rem;
}

/* ===== Awakening: Senpai (Testimonials) ===== */
.landing-senpai__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.landing-senpai__card {
  background-color: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 3px solid var(--accent);
}

.landing-senpai__text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
}

.landing-senpai__text em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}

.landing-senpai__videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.landing-senpai__video-placeholder {
  aspect-ratio: 16 / 9;
  background-color: var(--bg-card);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.9rem;
  border: 1px dashed var(--border-color);
}

.landing-senpai__more {
  text-align: center;
  margin-top: 2rem;
}

/* ===== Awakening: Guide ===== */
.landing-guide__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.landing-guide__photo {
  aspect-ratio: 3 / 4;
  background-color: var(--bg-card);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  border: 1px dashed var(--border-color);
}

.landing-guide__story p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.landing-guide__story strong {
  color: var(--text-primary);
}

.landing-guide__story em {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

.landing-guide__expand {
  margin-top: 1rem;
}

.landing-guide__details {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-guide__details[aria-hidden="true"] {
  display: none;
}

.landing-guide__details p {
  margin-bottom: 1rem;
}

.landing-guide__diagram-placeholder,
.landing-guide__trainer-video-placeholder,
.landing-guide__student-video-placeholder,
.landing-guide__comments-placeholder {
  aspect-ratio: 16 / 9;
  background-color: var(--bg-card);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  border: 1px dashed var(--border-color);
  margin-bottom: 1.5rem;
}

.landing-guide__diagram-placeholder {
  aspect-ratio: 2 / 1;
}

.landing-guide__comments-placeholder {
  aspect-ratio: 3 / 1;
}

.landing-guide__student-proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* ===== Awakening: Plan ===== */
.landing-plan__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.landing-plan__step {
  text-align: center;
  padding: 2rem 1.5rem;
  background-color: var(--bg-card);
  border-radius: var(--radius);
}

.landing-plan__step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.landing-plan__step h3 {
  font-size: 1.05rem;
  line-height: 1.4;
}

.landing-plan__step h3 span {
  font-weight: 400;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.landing-plan__note {
  text-align: center;
  margin-top: 2rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.05rem;
}

/* ===== Awakening: Explanatory (Curriculum) ===== */
.landing-explanatory .mn-accordion {
  max-width: 800px;
  margin: 2rem auto 0;
}

.landing-explanatory .mn-accordion__panel p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== Awakening: Final CTA ===== */
.landing-final-cta {
  padding: 64px 0;
  padding-bottom: calc(64px + 60px); /* extra for sticky bar overlap */
  text-align: center;
}

.landing-final-cta__lead {
  margin-bottom: 36px;
}

.landing-final-cta__lead p {
  font-size: 18px;
  line-height: 1.7;
  margin: 6px 0;
}

.landing-final-cta__lead-dim {
  color: #888780;
}

.landing-final-cta__lead-bright {
  color: #F1EFE8;
  font-weight: 500;
}

.landing-final-cta__headline {
  font-size: 28px;
  font-weight: 500;
  color: #D94A5A;
  margin-bottom: 28px;
}

.landing-final-cta__price {
  margin-bottom: 24px;
  text-align: center;
}

.landing-final-cta__price-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 12px;
}

.landing-final-cta__price-original {
  font-size: 22px;
  color: #5F5E5A;
  text-decoration: line-through;
}

.landing-final-cta__price-arrow {
  font-size: 18px;
  color: #5F5E5A;
}

.landing-final-cta__price-sale {
  font-size: 36px;
  font-weight: 700;
  color: #F1EFE8;
}

.landing-final-cta__price-badge {
  font-size: 13px;
  color: #5DCAA5;
  font-weight: 500;
  margin-top: 4px;
}

.landing-final-cta__price-full {
  font-size: 36px;
  font-weight: 700;
  color: #F1EFE8;
}

.landing-final-cta__timer {
  margin-bottom: 32px;
}

.landing-final-cta__timer-label {
  font-size: 13px;
  color: #888780;
  margin-bottom: 10px;
}

.landing-final-cta__countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.landing-final-cta__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.landing-final-cta__num {
  font-size: 28px;
  font-weight: 500;
  color: #F1EFE8;
  font-variant-numeric: tabular-nums;
}

.landing-final-cta__unit-label {
  font-size: 11px;
  color: #5F5E5A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.landing-final-cta__colon {
  font-size: 24px;
  color: #5F5E5A;
  margin-top: -14px;
}

.landing-final-cta__btn {
  display: inline-block;
  background: #D94A5A;
  border-radius: 4px;
  padding: 16px 52px;
  font-size: 17px;
  font-weight: 500;
  color: #FBEAF0;
  text-decoration: none;
  box-shadow: 0 0 12px rgba(217,74,90,0.3);
  margin-bottom: 16px;
}

.landing-final-cta__sub {
  font-size: 13px;
  color: #5F5E5A;
}

.landing-final-cta__sub-paddle {
  color: #F1EFE8;
  font-weight: 500;
}

.landing-final-cta__sub-refund {
  color: #5DCAA5;
  font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .landing-why__grid { grid-template-columns: repeat(2, 1fr); }
  .landing-guide__layout { grid-template-columns: 220px 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .landing-hero { padding: 3rem 0; }
  .landing-hero__social-proof { flex-direction: column; gap: 0.5rem; align-items: center; }
  .landing-why__grid { grid-template-columns: 1fr; }
  .landing-reviews__grid { grid-template-columns: 1fr; }
  .landing-pricing__grid { grid-template-columns: 1fr; }
  .landing-pricing__card { padding: 2rem; }
  .landing-pricing__amount { font-size: 2.25rem; }
  .landing-senpai__grid { grid-template-columns: 1fr; }
  .landing-senpai__videos { grid-template-columns: 1fr; }
  .landing-guide__layout { grid-template-columns: 1fr; }
  .landing-guide__photo { max-width: 280px; margin: 0 auto; }
  .landing-plan__steps { grid-template-columns: 1fr; max-width: 400px; }
  .landing-final-cta { padding: 48px 0; padding-bottom: calc(48px + 60px); }
  .landing-sticky-cta { padding: 10px 12px; }
  .landing-sticky-cta__btn { padding: 8px 16px; font-size: 13px; }
}

/* ===== Vocalive Hero (v12) ===== */
@keyframes fadein{0%{opacity:0;transform:translateY(10px)}100%{opacity:1;transform:translateY(0)}}
@keyframes overGlow{0%{box-shadow:0 0 6px rgba(217,74,90,0.15)}15%{box-shadow:0 0 18px rgba(217,74,90,0.5)}30%{box-shadow:0 0 5px rgba(217,74,90,0.1)}50%{box-shadow:0 0 22px rgba(217,74,90,0.6),0 0 40px rgba(217,74,90,0.15)}70%{box-shadow:0 0 6px rgba(217,74,90,0.1)}85%{box-shadow:0 0 14px rgba(217,74,90,0.4)}100%{box-shadow:0 0 6px rgba(217,74,90,0.15)}}
@keyframes nameGlow{0%{text-shadow:0 0 0 transparent}50%{text-shadow:0 0 24px rgba(217,74,90,0.5)}100%{text-shadow:0 0 8px rgba(217,74,90,0.2)}}
.gauge-over-on{animation:overGlow 2s ease infinite}
