/* ═══════════════════════════════════════
   MIMPI — Moonlit Story Sanctuary
   styles.css
   ═══════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --c-bg:          #0d1026;
  --c-card:        #111736;
  --c-card-2:      #161d40;
  --c-border:      rgba(168, 179, 209, 0.18);
  --c-border-gold: rgba(244, 200, 106, 0.40);
  --c-gold:        #f4c86a;
  --c-gold-dark:   #d6a94a;
  --c-cream:       #f6f2e9;
  --c-blue:        #a8b3d1;
  --c-rose:        #e88b8b;
  --c-purple:      #6c5ce7;

  --shadow-card:   0 24px 48px rgba(0, 0, 0, 0.42);
  --shadow-gold:   0 12px 32px rgba(244, 200, 106, 0.28);
  --shadow-glow:   0 0 80px rgba(108, 92, 231, 0.18);

  --r-xl:  28px;
  --r-lg:  18px;
  --r-md:  12px;
  --r-sm:  8px;
  --r-pill: 999px;

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background-color: var(--c-bg);
  color: var(--c-cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; }
p { margin: 0; }
a { color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
details > summary { cursor: pointer; }

/* ── Sky canvas ── */
#sky {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ── Sparkle trail canvas ── */
#sparkle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}
@media (pointer: coarse) {
  #sparkle-canvas { display: none; }
}

/* ── Orbs ── */
.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.35;
}
.orb-1 {
  width: 520px; height: 520px;
  top: -120px; right: -100px;
  background: radial-gradient(circle, #4a3a9a, transparent 70%);
  animation: orb-drift-1 18s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  bottom: 10%; left: -80px;
  background: radial-gradient(circle, #1e4a6e, transparent 70%);
  animation: orb-drift-2 22s ease-in-out infinite;
}
@keyframes orb-drift-1 {
  0%,100% { transform: translateY(0) scale(1); }
  33% { transform: translateY(40px) scale(1.06); }
  66% { transform: translateY(-30px) scale(0.95); }
}
@keyframes orb-drift-2 {
  0%,100% { transform: translateY(0) scale(1); }
  40% { transform: translateY(-50px) scale(1.08); }
  70% { transform: translateY(30px) scale(0.96); }
}

/* ── Layout ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── Navigation ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  background: rgba(13, 16, 38, 0);
  transition: background 300ms var(--ease-smooth), border-color 300ms, backdrop-filter 300ms;
}
.site-header.scrolled {
  background: rgba(13, 16, 38, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
}

/* Offset body content so it doesn't sit under the fixed header */
body { padding-top: 64px; }
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--c-cream);
  letter-spacing: 0.5px;
}
.wordmark-icon { font-size: 1.3rem; }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-blue);
  transition: color 180ms;
}
.nav-links a:hover { color: var(--c-cream); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--r-pill);
  padding: 11px 22px;
  transition:
    transform 200ms var(--ease-spring),
    box-shadow 200ms var(--ease-smooth),
    background 200ms;
  border: none;
  outline-offset: 3px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(130deg, var(--c-gold) 0%, var(--c-gold-dark) 100%);
  color: #1a1633;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { box-shadow: 0 16px 40px rgba(244, 200, 106, 0.4); }

.btn-ghost {
  background: transparent;
  color: var(--c-blue);
  border: 1px solid var(--c-border);
}
.btn-ghost:hover {
  background: rgba(168, 179, 209, 0.08);
  color: var(--c-cream);
}

.btn-outline {
  background: transparent;
  color: var(--c-cream);
  border: 1px solid var(--c-border);
}
.btn-outline:hover {
  background: rgba(168, 179, 209, 0.08);
  border-color: rgba(168, 179, 209, 0.35);
}

.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Burger (mobile) ── */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  width: 32px;
}
.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--c-blue);
  border-radius: 2px;
  transition: transform 250ms var(--ease-smooth), opacity 250ms;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Eyebrow ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 16px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease-smooth), transform 700ms var(--ease-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-right {
  transform: translateY(0) translateX(28px);
}
.reveal-right.visible {
  transform: translateY(0) translateX(0);
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  padding: 80px 0 60px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Hero text */
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--c-cream);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}
.hero h1 em {
  font-style: italic;
  color: var(--c-gold);
}
.hero-hook {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--c-cream);
  opacity: 0.85;
  margin-bottom: 14px;
  max-width: 42ch;
}
.hero-sub {
  font-size: 1.06rem;
  color: var(--c-blue);
  max-width: 46ch;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-trust p {
  font-size: 0.88rem;
  color: var(--c-blue);
}
.hero-trust strong { color: var(--c-cream); }
.trust-avatars {
  display: flex;
  gap: -4px;
}
.trust-avatars span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-card-2);
  border: 2px solid var(--c-bg);
  font-size: 1rem;
  margin-right: -6px;
}

/* ── Phone mockup ── */
.hero-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.phone-frame {
  width: 280px;
  background: linear-gradient(160deg, #1d2451, #0f1630);
  border-radius: 44px;
  border: 2px solid rgba(168, 179, 209, 0.25);
  box-shadow:
    var(--shadow-card),
    inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.phone-notch {
  width: 100px; height: 28px;
  background: #0a0e1e;
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
}
.phone-screen {
  padding: 0 10px 16px;
  min-height: 480px;
}
.phone-glow {
  position: absolute;
  inset: -30px;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.25), transparent 65%);
  pointer-events: none;
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,100% { opacity: 0.6; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* App screen inside phone */
.app-screen { display: grid; gap: 12px; }

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 4px;
  font-size: 0.75rem;
  color: var(--c-blue);
}
.app-screen-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-cream);
}

.story-label {
  font-size: 0.7rem;
  color: var(--c-blue);
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.story-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-cream);
  line-height: 1.2;
}

.story-text { display: grid; gap: 6px; }
.story-line {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  color: rgba(246, 242, 233, 0.45);
  line-height: 1.5;
  border-radius: 4px;
  padding: 2px 4px;
  transition: color 400ms, background 400ms;
}
.story-line.highlighted {
  color: var(--c-cream);
  background: rgba(244, 200, 106, 0.12);
}

.player-bar { display: grid; gap: 8px; }
.player-progress { display: grid; gap: 4px; }
.player-track {
  height: 4px;
  border-radius: var(--r-pill);
  background: rgba(168, 179, 209, 0.18);
  overflow: hidden;
}
.player-fill {
  height: 100%;
  width: 20%;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-dark));
  transition: width 800ms linear;
}
.player-times {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: rgba(168,179,209,0.6);
}
.player-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.ctrl-btn {
  background: none;
  border: none;
  color: var(--c-blue);
  font-size: 0.75rem;
  padding: 6px;
  border-radius: var(--r-sm);
  transition: color 180ms;
}
.ctrl-play {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--c-gold), var(--c-gold-dark));
  color: #1a1633;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ═══════════════════════════════════════
   BANNER
   ═══════════════════════════════════════ */
.banner {
  background: linear-gradient(120deg, rgba(27, 33, 70, 0.9), rgba(17, 23, 54, 0.9));
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: 32px 0;
  backdrop-filter: blur(4px);
}
.banner-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  text-align: center;
}
.banner-item { padding: 8px 24px; }
.banner-num {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: 4px;
}
.banner-label {
  display: block;
  font-size: 0.82rem;
  color: var(--c-blue);
  line-height: 1.3;
}
.banner-divider {
  width: 1px;
  height: 48px;
  background: var(--c-border);
}

/* ═══════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
}
.section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--c-blue);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════ */
.how-it-works {
  padding: 100px 0;
  position: relative;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.step-card {
  background: linear-gradient(160deg, var(--c-card-2), var(--c-card));
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-align: center;
  position: relative;
  transition: transform 300ms var(--ease-spring), border-color 300ms var(--ease-smooth), box-shadow 300ms var(--ease-smooth);
}
.step-card:hover {
  transform: translateY(-7px);
  border-color: var(--c-border-gold);
  box-shadow: 0 0 0 1px rgba(244,200,106,0.12), var(--shadow-gold);
}
/* ── Image panel ── */
.step-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.step-img img {
  width: 100%;
  height: 125%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease-smooth);
}
/* .step-card:hover .step-img img {
  transform: scale(1.05);
} */
/* Gradient fading image into card background */
.step-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,13,35,0) 40%,
    var(--c-card-2) 100%
  );
  pointer-events: none;
}
/* Step number badge over image */
.step-num {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--c-gold);
  background: rgba(8,11,30,0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(244,200,106,0.35);
  border-radius: 20px;
  padding: 4px 11px;
}
/* ── Text panel ── */
.step-body {
  padding: 16px 24px 28px;
}
.step-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.875rem;
  color: var(--c-blue);
  line-height: 1.65;
}
.step-icon { display: none; }

/* ═══════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════ */
.features { padding: 0 0 100px; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.feature-card {
  background: linear-gradient(160deg, var(--c-card-2), var(--c-card));
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: transform 250ms var(--ease-spring), border-color 250ms;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 200, 106, 0.25);
}
.card-large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.feature-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--c-gold);
  background: rgba(244, 200, 106, 0.1);
  border: 1px solid rgba(244, 200, 106, 0.2);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: 12px;
  line-height: 1.1;
}
.feature-card h3 em {
  color: var(--c-gold);
  font-style: italic;
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--c-blue);
  line-height: 1.7;
}
.feature-visual {
  margin-top: 20px;
}
.card-large .feature-visual {
  margin-top: 0;
}

/* card-large inner layout */
.card-large-text { display: flex; flex-direction: column; }

/* Daily moment field inside phone mockup */
.story-moment-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 7px 10px;
  border-radius: var(--r-sm);
  background: rgba(244, 200, 106, 0.08);
  border: 1px solid rgba(244, 200, 106, 0.25);
}
.story-moment-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--c-gold);
  opacity: 0.8;
}
.story-moment-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  color: var(--c-cream);
}

/* Daily moment → story flow (feature card) */
.feature-moment-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.moment-input-mock {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 14px;
  border-radius: var(--r-md);
  background: rgba(168, 179, 209, 0.06);
  border: 1px solid var(--c-border);
}
.moment-input-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--c-blue);
  opacity: 0.7;
}
.moment-input-value {
  font-size: 0.88rem;
  color: var(--c-cream);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}
.moment-arrow {
  font-size: 1.1rem;
  color: var(--c-gold);
  opacity: 0.7;
}
.moment-output-mock {
  padding: 10px 14px;
  border-radius: var(--r-md);
  background: rgba(244, 200, 106, 0.08);
  border: 1px solid rgba(244, 200, 106, 0.22);
  font-size: 0.86rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--c-gold);
  line-height: 1.4;
}


/* Mood selector visual */
.mood-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mood-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 0.84rem;
  font-weight: 600;
  border: 1.5px solid rgba(168, 179, 209, 0.45);
  background: rgba(168, 179, 209, 0.1);
  color: var(--c-blue);
  white-space: nowrap;
  transition: all 250ms;
}
.mood-pill.active {
  background: linear-gradient(130deg, rgba(244, 200, 106, 0.22), rgba(244, 200, 106, 0.08));
  border-color: rgba(244, 200, 106, 0.6);
  color: var(--c-gold);
}

/* Highlight demo visual */
.highlight-demo {
  display: grid;
  gap: 8px;
}
.hl-line {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  color: rgba(168, 179, 209, 0.5);
  border-left: 2px solid transparent;
}
.hl-line.active {
  color: var(--c-cream);
  background: rgba(244, 200, 106, 0.1);
  border-left-color: var(--c-gold);
}
.hl-line.past {
  color: rgba(246, 242, 233, 0.35);
  text-decoration: none;
}

/* ───────── Why Mimpi — premium feature blocks ───────── */
.why-mimpi { padding: 80px 0 100px; }

.wf-block {
  margin-bottom: 24px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0,0,0,0.38);
  border: 1px solid var(--c-border);
  transition: border-color 300ms var(--ease-smooth), box-shadow 300ms var(--ease-smooth);
}
.wf-block:hover {
  border-color: var(--c-border-gold);
  box-shadow: 0 0 0 1px rgba(244,200,106,0.15), var(--shadow-gold);
}

/* ── Block 1 & 2: side-by-side ── */
.wf-img-left,
.wf-img-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
}
.wf-image {
  position: relative;
  overflow: hidden;
}
.wf-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease-smooth);
}
.wf-block:hover .wf-image img {
  transform: scale(1.03);
}

/* Gradient overlays */
.wf-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.wf-overlay-gold {
  background: linear-gradient(
    135deg,
    rgba(244,200,106,0.22) 0%,
    rgba(13,16,38,0.55) 100%
  );
}
.wf-overlay-right {
  background: linear-gradient(
    225deg,
    rgba(244,200,106,0.14) 0%,
    rgba(13,16,38,0.55) 100%
  );
}
.wf-overlay-dark {
  background: linear-gradient(
    to top,
    rgba(13,16,38,0.88) 0%,
    rgba(13,16,38,0.50) 45%,
    rgba(13,16,38,0.18) 100%
  );
}

/* Gold glow orb */
.wf-glow {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(244,200,106,0.90) 0%, transparent 65%);
  filter: blur(18px);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: glow-pulse 3.5s ease-in-out infinite;
}

/* Edge fade — image bleeds into text panel */
.wf-img-left .wf-image::after,
.wf-img-right .wf-image::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  pointer-events: none;
  z-index: 2;
}
.wf-img-left .wf-image::after {
  right: 0;
  background: linear-gradient(to right, transparent 0%, var(--c-card) 100%);
}
.wf-img-right .wf-image::after {
  left: 0;
  background: linear-gradient(to left, transparent 0%, var(--c-card) 100%);
}
/* Hide edge fades when stacked on mobile */
@media (max-width: 768px) {
  .wf-img-left .wf-image::after,
  .wf-img-right .wf-image::after { display: none; }
}

/* Text panel */
.wf-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 52px;
  background: linear-gradient(160deg, var(--c-card-2), var(--c-card));
}
.wf-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--c-cream);
  line-height: 1.08;
  margin-bottom: 18px;
}
.wf-text h3 em {
  color: var(--c-gold);
  font-style: italic;
}
.wf-text p {
  font-size: 1.02rem;
  color: var(--c-blue);
  line-height: 1.78;
}

/* ── Block 3: full-width centered bg ── */
.wf-centered {
  min-height: 440px;
}
.wf-bg-wrap {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.wf-bg-wrap > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease-smooth);
}
.wf-centered:hover .wf-bg-wrap > img {
  transform: scale(1.03);
}
.wf-center-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 32px 56px;
  max-width: 640px;
}
.wf-center-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--c-cream);
  line-height: 1.08;
  margin-bottom: 14px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}
.wf-center-text h3 em {
  color: var(--c-gold);
  font-style: italic;
}
.wf-center-text p {
  font-size: 1.05rem;
  color: rgba(246,242,233,0.88);
  line-height: 1.75;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .wf-img-left,
  .wf-img-right {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  /* Image always on top on mobile */
  .wf-img-left  .wf-image  { order: 1; height: 220px; }
  .wf-img-left  .wf-text   { order: 2; }
  .wf-img-right .wf-image  { order: 1; height: 220px; }
  .wf-img-right .wf-text   { order: 2; }
  .wf-text { padding: 30px 26px; }

  .wf-centered, .wf-bg-wrap { min-height: 320px; }
  .wf-center-text { padding: 0 22px 36px; }
}

@media (max-width: 480px) {
  .wf-img-left  .wf-image,
  .wf-img-right .wf-image { height: 180px; }
  .wf-text { padding: 24px 20px; }
  .wf-text h3 { font-size: 1.5rem; }
  .wf-centered, .wf-bg-wrap { min-height: 260px; }
  .wf-center-text { padding: 0 16px 28px; }
  .wf-center-text h3 { font-size: 1.6rem; }
}

/* Lesson chips */
.lesson-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lesson-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(108, 92, 231, 0.12);
  border: 1px solid rgba(108, 92, 231, 0.25);
  color: #b4aee8;
  white-space: nowrap;
  transition: all 250ms;
}
.lesson-chip.active {
  background: rgba(108, 92, 231, 0.28);
  border-color: rgba(108, 92, 231, 0.5);
  color: var(--c-cream);
}

/* Streak calendar */
.streak-calendar {
  display: grid;
  gap: 14px;
}
.streak-week {
  display: flex;
  gap: 8px;
  align-items: center;
}
.streak-day {
  flex: 1;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1.5px solid transparent;
  transition: transform 250ms var(--ease-spring);
}
.streak-day span { line-height: 1; }
.streak-day.done {
  background: linear-gradient(130deg, var(--c-gold), var(--c-gold-dark));
  color: #1a1633;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(244, 200, 106, 0.35);
}
.streak-day.today {
  background: rgba(244, 200, 106, 0.15);
  border-color: rgba(244, 200, 106, 0.6);
  color: var(--c-gold);
  animation: streak-pulse 1.8s ease-in-out infinite;
}
.streak-day.upcoming {
  background: rgba(168, 179, 209, 0.06);
  border-color: rgba(168, 179, 209, 0.2);
  color: rgba(168, 179, 209, 0.35);
}
@keyframes streak-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244, 200, 106, 0); }
  50%       { box-shadow: 0 0 0 5px rgba(244, 200, 106, 0.15); }
}
.streak-count {
  display: flex;
  align-items: center;
  gap: 8px;
}
/* ── Animated flame ── */
.streak-flame {
  display: inline-flex;
  align-items: flex-end;
  width: 28px;
  height: 36px;
  flex-shrink: 0;
}
.flame-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 6px rgba(255,120,0,0.7)) drop-shadow(0 0 14px rgba(255,60,0,0.45));
  animation: flame-flicker 1.8s ease-in-out infinite alternate;
  transform-origin: 50% 100%;
}
/* Outer flame — deep orange / amber */
.flame-outer {
  fill: #ff6a00;
  animation: flame-outer-anim 1.3s ease-in-out infinite alternate;
  transform-origin: 50% 100%;
}
/* Inner flame — bright yellow-orange */
.flame-inner {
  fill: #ffaa00;
  animation: flame-inner-anim 1s ease-in-out infinite alternate;
  transform-origin: 50% 100%;
}
/* Core — near-white hot centre */
.flame-core {
  fill: #ffe066;
  animation: flame-core-anim 0.7s ease-in-out infinite alternate;
  transform-origin: 50% 100%;
}

@keyframes flame-flicker {
  0%   { transform: scaleX(1)    scaleY(1)    rotate(-1deg); }
  25%  { transform: scaleX(0.96) scaleY(1.03) rotate(1.5deg); }
  50%  { transform: scaleX(1.03) scaleY(0.97) rotate(-1deg); }
  75%  { transform: scaleX(0.97) scaleY(1.04) rotate(0.5deg); }
  100% { transform: scaleX(1.01) scaleY(0.98) rotate(-0.5deg); }
}
@keyframes flame-outer-anim {
  0%   { transform: scaleX(1)    scaleY(1); }
  40%  { transform: scaleX(0.93) scaleY(1.04) rotate(1deg); }
  70%  { transform: scaleX(1.04) scaleY(0.96) rotate(-1.5deg); }
  100% { transform: scaleX(0.97) scaleY(1.02) rotate(0.5deg); }
}
@keyframes flame-inner-anim {
  0%   { transform: scaleX(1)    scaleY(1);    opacity: 1; }
  33%  { transform: scaleX(0.92) scaleY(1.06); opacity: 0.9; }
  66%  { transform: scaleX(1.05) scaleY(0.95); opacity: 1; }
  100% { transform: scaleX(0.96) scaleY(1.03); opacity: 0.95; }
}
@keyframes flame-core-anim {
  0%   { transform: scaleY(1)    scaleX(1);    opacity: 1; }
  50%  { transform: scaleY(1.12) scaleX(0.88); opacity: 0.85; }
  100% { transform: scaleY(0.92) scaleX(1.08); opacity: 1; }
}
/* Crackle: tiny random brightness pulses */
@keyframes flame-crackle {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(255,120,0,0.7)) drop-shadow(0 0 14px rgba(255,60,0,0.45)) brightness(1); }
  15%       { filter: drop-shadow(0 0 8px rgba(255,140,0,0.9)) drop-shadow(0 0 18px rgba(255,80,0,0.6))  brightness(1.15); }
  30%       { filter: drop-shadow(0 0 5px rgba(255,100,0,0.6)) drop-shadow(0 0 12px rgba(255,40,0,0.35)) brightness(0.9); }
  55%       { filter: drop-shadow(0 0 10px rgba(255,160,0,1))  drop-shadow(0 0 22px rgba(255,90,0,0.7))  brightness(1.2); }
  80%       { filter: drop-shadow(0 0 6px rgba(255,120,0,0.7)) drop-shadow(0 0 14px rgba(255,60,0,0.45)) brightness(1); }
}
.flame-svg {
  animation: flame-flicker 1.8s ease-in-out infinite alternate,
             flame-crackle  0.9s steps(1) infinite;
}
.streak-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
}
.streak-label {
  font-size: 0.88rem;
  color: var(--c-blue);
  font-weight: 500;
}

.saved-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--c-cream);
  padding: 8px 12px;
  border-radius: var(--r-md);
  background: rgba(168, 179, 209, 0.06);
  border: 1px solid var(--c-border);
}
.saved-item.dimmed { opacity: 0.42; }

/* ═══════════════════════════════════════
   STORY PREVIEW
   ═══════════════════════════════════════ */
.story-preview {
  padding: 0 0 100px;
}
.story-preview-card {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(160deg, var(--c-card-2), var(--c-card));
  border: 1px solid rgba(244, 200, 106, 0.35);
  border-radius: var(--r-xl);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 0 0 1px rgba(244,200,106,0.08) inset;
}
/* Slow gold shimmer sweep across the card */
.story-preview-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(244, 200, 106, 0.07) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  animation: preview-shimmer 4s ease-in-out infinite;
  pointer-events: none;
  border-radius: inherit;
}
@keyframes preview-shimmer {
  0%   { background-position: 200% center; }
  50%  { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.story-preview-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.story-preview-for {
  font-size: 0.82rem;
  color: var(--c-blue);
}
.story-preview-for em {
  color: var(--c-gold);
  font-style: normal;
}
.story-preview-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--c-gold);
  background: rgba(244, 200, 106, 0.1);
  border: 1px solid rgba(244, 200, 106, 0.25);
  border-radius: var(--r-pill);
  padding: 3px 10px;
}
.story-preview-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: 20px;
  line-height: 1.2;
}
.story-preview-body {
  position: relative;
  margin-bottom: 24px;
}
.story-preview-body p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: var(--c-cream);
  line-height: 1.8;
  margin-bottom: 14px;
  opacity: 0.92;
  transition: opacity 0.35s ease, color 0.35s ease;
}
/* Paragraph highlighting during narration playback */
.story-preview-body.sp-playing p {
  opacity: 0.35;
  color: var(--c-blue);
}
.story-preview-body.sp-playing p.sp-para-active {
  opacity: 1;
  color: var(--c-cream);
}
.story-preview-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--c-card));
  pointer-events: none;
}
.story-preview-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.story-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 200, 106, 0.12);
  border: 1px solid rgba(244, 200, 106, 0.35);
  border-radius: var(--r-pill);
  color: var(--c-gold);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 18px;
  font-family: inherit;
  cursor: pointer;
  transition: background 200ms, border-color 200ms;
}
.story-play-btn:hover {
  background: rgba(244, 200, 106, 0.22);
  border-color: rgba(244, 200, 106, 0.6);
}

/* ─── Sample narration player ─── */
.sp-player {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
.sp-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 200, 106, 0.12);
  border: 1px solid rgba(244, 200, 106, 0.4);
  border-radius: var(--r-pill);
  color: var(--c-gold);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 18px;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 200ms, border-color 200ms, transform 100ms;
}
.sp-play-btn:hover {
  background: rgba(244, 200, 106, 0.22);
  border-color: rgba(244, 200, 106, 0.65);
}
.sp-play-btn:active { transform: scale(0.96); }
.sp-track-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sp-track {
  height: 4px;
  background: rgba(168, 179, 209, 0.2);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.sp-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--c-gold);
  border-radius: 2px;
  transition: width 0.25s linear;
}
.sp-times {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--c-blue);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 640px) {
  .sp-player { flex-direction: column; align-items: flex-start; }
  .sp-track-wrap { width: 100%; }
}
.story-preview-note {
  font-size: 0.82rem;
  color: var(--c-blue);
  font-style: italic;
}
.sp-inline-cta {
  text-align: center;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.sp-inline-cta-link {
  color: var(--c-gold);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 200, 106, 0.4);
  padding-bottom: 1px;
  transition: border-color 200ms, opacity 200ms;
}
.sp-inline-cta-link:hover { border-color: var(--c-gold); opacity: 0.85; }
.sp-inline-cta-hint {
  font-size: 0.78rem;
  color: var(--c-blue);
  opacity: 0.75;
}

/* ═══════════════════════════════════════
   BEFORE / AFTER
   ═══════════════════════════════════════ */
.before-after {
  padding: 0 0 100px;
}
.ba-primer {
  text-align: center;
  font-size: 1rem;
  color: var(--c-blue);
  margin-bottom: 28px;
  opacity: 0.85;
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 840px;
  margin: 0 auto;
}
.ba-card {
  border-radius: var(--r-xl);
  padding: 36px 32px;
}
.ba-before {
  background: linear-gradient(160deg, rgba(30,20,20,0.9), rgba(25,18,18,0.8));
  border: 1px solid rgba(232, 139, 139, 0.2);
}
.ba-after {
  background: linear-gradient(160deg, rgba(20,28,20,0.9), rgba(17,23,17,0.8));
  border: 1px solid rgba(244, 200, 106, 0.3);
}
.ba-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ba-before .ba-label { color: #e88b8b; }
.ba-after .ba-label  { color: var(--c-gold); }
.ba-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ba-card ul li {
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}
.ba-before ul li { color: rgba(232, 139, 139, 0.85); }
.ba-before ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #e88b8b;
  font-size: 0.8rem;
}
.ba-after ul li { color: rgba(246, 242, 233, 0.88); }
.ba-after ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-gold);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════
   WHY MIMPI
   ═══════════════════════════════════════ */
.why-mimpi {
  padding: 0 0 100px;
  position: relative;
}
.why-mimpi-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: 12px;
}
.why-mimpi-h2 em {
  color: var(--c-gold);
  font-style: italic;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: linear-gradient(160deg, var(--c-card-2), var(--c-card));
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 250ms var(--ease-spring), border-color 250ms;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background: radial-gradient(ellipse at top, rgba(244, 200, 106, 0.06), transparent 70%);
  pointer-events: none;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 200, 106, 0.3);
}
.why-icon {
  font-size: 2.6rem;
  margin-bottom: 18px;
  display: block;
}
.why-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: 12px;
  line-height: 1.2;
}
.why-card p {
  font-size: 0.93rem;
  color: var(--c-blue);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(17, 23, 54, 0.6) 50%, transparent 100%);
}
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.tcard {
  background: linear-gradient(160deg, var(--c-card-2), var(--c-card));
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: transform 250ms var(--ease-spring), border-color 250ms;
}
.tcard:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 200, 106, 0.22);
}
.tcard-stars {
  color: var(--c-gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.tcard blockquote {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.06rem;
  color: var(--c-cream);
  line-height: 1.6;
  font-style: italic;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tcard-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  flex-shrink: 0;
}
.tcard-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--c-cream);
}
.tcard-author span {
  display: block;
  font-size: 0.78rem;
  color: var(--c-blue);
  margin-top: 2px;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(168, 179, 209, 0.3);
  border: none;
  padding: 0;
  transition: background 250ms, transform 250ms;
}
.dot.active {
  background: var(--c-gold);
  transform: scale(1.3);
}
.micro-proof {
  text-align: center;
  margin-top: 36px;
  font-size: 0.9rem;
  color: var(--c-blue);
  opacity: 0.8;
}
.micro-proof-stat {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-cream);
  opacity: 1;
}

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.pricing { padding: 100px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}
.price-card {
  background: linear-gradient(160deg, var(--c-card-2), var(--c-card));
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 250ms var(--ease-spring);
}
.price-card:hover { transform: translateY(-5px); }
.price-featured {
  border-color: var(--c-border-gold);
  background: linear-gradient(160deg,
    rgba(27, 33, 70, 0.95),
    rgba(17, 23, 54, 0.95));
  box-shadow: 0 0 0 1px rgba(244, 200, 106, 0.15), var(--shadow-gold);
  position: relative;
}
.price-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 4px;
}
.price-badge-gold { color: var(--c-gold); }
.price-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(130deg, var(--c-gold), var(--c-gold-dark));
  color: #1a1633;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.price-amount {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  line-height: 1;
}
.price-currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-blue);
  margin-top: 6px;
}
.price-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--c-cream);
  line-height: 1;
}
.price-period {
  font-size: 1rem;
  color: var(--c-blue);
  margin-top: 28px;
}
.price-desc {
  font-size: 0.9rem;
  color: var(--c-blue);
  line-height: 1.5;
}
.price-features {
  display: grid;
  gap: 10px;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--c-cream);
}
.pf-dim { opacity: 0.38; }
.pf-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(168, 179, 209, 0.1);
  display: inline-grid;
  place-items: center;
  font-size: 0.7rem;
  color: var(--c-blue);
  flex-shrink: 0;
}
.pf-gold {
  background: rgba(244, 200, 106, 0.15);
  color: var(--c-gold);
}
.pf-x { color: rgba(168, 179, 209, 0.35); font-size: 0.7rem; }
.price-trial {
  text-align: center;
  font-size: 0.78rem;
  color: var(--c-blue);
  opacity: 0.7;
}
.intro-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(244,200,106,0.18), rgba(244,200,106,0.08));
  border: 1px solid rgba(244,200,106,0.35);
  color: var(--c-gold);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 0.01em;
}
.intro-badge strong { color: #fff; }
.price-was {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--c-blue);
  opacity: 0.65;
  margin-top: -4px;
  margin-bottom: 12px;
}
.price-was s { text-decoration: line-through; }
.price-was-note { font-style: italic; }
.pricing-footer {
  text-align: center;
  font-size: 0.86rem;
  color: var(--c-blue);
  opacity: 0.6;
  margin-top: 28px;
}
.pricing-micro {
  font-size: 0.88rem;
  color: var(--c-gold);
  opacity: 0.75;
  margin-top: 6px;
  font-style: italic;
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq { padding: 100px 0; }
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: linear-gradient(160deg, var(--c-card-2), var(--c-card));
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 250ms;
}
.faq-item[open] {
  border-color: rgba(244, 200, 106, 0.28);
}
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--c-cream);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--c-gold);
  transition: transform 250ms var(--ease-smooth);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--c-gold); }
.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--c-blue);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════ */
.final-cta {
  padding: 80px 0 100px;
}
.final-cta-inner {
  text-align: center;
  background: linear-gradient(160deg, rgba(27, 33, 70, 0.9), rgba(17, 23, 54, 0.9));
  border: 1px solid var(--c-border-gold);
  border-radius: 36px;
  padding: 72px 48px;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.final-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(244, 200, 106, 0.1), transparent 55%);
  pointer-events: none;
}
.final-moon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 16px;
  animation: float-moon 4s ease-in-out infinite;
}
@keyframes float-moon {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}
.final-cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-cream);
  margin-bottom: 14px;
  position: relative;
}
.final-cta > .container > .final-cta-inner > p {
  color: var(--c-blue);
  font-size: 1.05rem;
  margin-bottom: 32px;
  position: relative;
}
.final-sub {
  font-size: 0.82rem;
  color: var(--c-blue);
  opacity: 0.6;
  margin-top: 14px;
}
.final-tagline {
  font-size: 0.85rem;
  color: var(--c-gold);
  opacity: 0.65;
  margin-top: 12px;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--c-border);
  padding: 52px 0;
  background: rgba(10, 13, 28, 0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--c-blue);
  line-height: 1.6;
  max-width: 28ch;
}
.footer-copy {
  margin-top: 20px !important;
  font-size: 0.78rem;
  opacity: 0.5;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(168, 179, 209, 0.7);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 180ms;
}
.footer-col a:hover { color: var(--c-cream); }

/* ═══════════════════════════════════════
   TOAST
   ═══════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(24px);
  background: rgba(27, 33, 70, 0.96);
  border: 1px solid var(--c-border-gold);
  color: var(--c-cream);
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms, transform 300ms var(--ease-spring);
  z-index: 200;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════
   WAITLIST MODAL
   ═══════════════════════════════════════ */
.wl-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms var(--ease-smooth);
}
.wl-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.wl-modal {
  background: linear-gradient(160deg, #1a2250, #111736);
  border: 1px solid var(--c-border-gold);
  border-radius: var(--r-xl);
  padding: 48px 40px 36px;
  max-width: 460px;
  width: 100%;
  position: relative;
  text-align: center;
  transform: translateY(20px) scale(0.98);
  transition: transform 280ms var(--ease-spring);
}
.wl-overlay.open .wl-modal {
  transform: translateY(0) scale(1);
}
.wl-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  color: var(--c-blue);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: background 150ms, color 150ms;
}
.wl-close:hover { background: rgba(255,255,255,0.1); color: var(--c-cream); }
.wl-moon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  animation: pulse-dot 3s ease-in-out infinite;
}
.wl-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--c-cream);
  margin-bottom: 12px;
}
.wl-sub {
  color: var(--c-blue);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 28px;
}
.wl-form {}
.wl-input-row {
  display: flex;
  gap: 8px;
}
.wl-input-row input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  color: var(--c-cream);
  font-size: 0.9rem;
  font-family: inherit;
  padding: 12px 14px;
  outline: none;
  transition: border-color 200ms;
  min-width: 0;
}
.wl-input-row input:focus { border-color: var(--c-gold); }
.wl-input-row input::placeholder { color: var(--c-blue); opacity: 0.6; }
.wl-error {
  color: var(--c-rose);
  font-size: 0.8rem;
  margin-top: 10px;
  text-align: left;
}
.wl-success { padding: 8px 0; }
.wl-success-icon { font-size: 2.5rem; margin-bottom: 10px; }
.wl-success p { color: var(--c-cream); font-size: 1rem; line-height: 1.5; }
.wl-footnote {
  color: var(--c-blue);
  font-size: 0.72rem;
  margin-top: 18px;
  opacity: 0.6;
}
@media (max-width: 480px) {
  .wl-modal { padding: 40px 22px 32px; }
  .wl-input-row { flex-direction: column; }
  .wl-input-row .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════
   MOBILE NAV
   ═══════════════════════════════════════ */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: min(80vw, 280px);
  height: 100vh;
  height: 100dvh;
  background: rgba(10, 13, 33, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid var(--c-border);
  padding: 0;
  z-index: 150;
  transform: translateX(-100%);
  transition: transform 260ms var(--ease-smooth);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 18px;
  border-bottom: 1px solid var(--c-border);
  flex-shrink: 0;
}
.mobile-nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-gold);
  text-decoration: none;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 12px;
  flex: 1;
  overflow-y: auto;
}
.mobile-nav ul li a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-blue);
  padding: 11px 14px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 150ms, color 150ms;
  border: 1px solid transparent;
}
.mobile-nav ul li a:hover {
  background: rgba(255,255,255,0.05);
  color: var(--c-cream);
}
.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 12px;
  border-top: 1px solid var(--c-border);
  flex-shrink: 0;
}
.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  color: var(--c-blue);
  font-size: 1rem;
  padding: 0;
  line-height: 1;
  transition: background 150ms, color 150ms;
}
.mobile-nav-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--c-cream);
}
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 140;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms;
}
.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .testimonial-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-phone {
    order: -1;
    justify-content: center;
  }
  .phone-frame { width: 240px; }
  .phone-screen { min-height: 400px; }
  .hero h1 { font-size: 2.4rem; }

  .banner-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .banner-divider { display: none; }

  .steps-grid { grid-template-columns: 1fr; }
  .step-img { aspect-ratio: 16 / 9; }

  .features-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .card-large {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .testimonial-track { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }

  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-signin-desktop { display: none; }
  .nav-download-desktop { display: none; }

  .hero { padding: 40px 0 40px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .how-it-works,
  .features,
  .story-preview,
  .before-after,
  .why-mimpi,
  .testimonials,
  .pricing,
  .faq { padding: 64px 0; }

  .final-cta-inner { padding: 48px 24px; }
  .final-cta-inner .btn { width: 100%; justify-content: center; }

  .story-preview-card { padding: 28px 20px; }
  .story-preview-meta { flex-direction: column; align-items: flex-start; }
  .story-preview-footer { flex-direction: column; align-items: flex-start; }

  .footer-links { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   PHONE MOCKUP — CHAPTER & COMPANION
   ═══════════════════════════════════════ */
.story-chapter-badge-phone {
  display: inline-block;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(244, 200, 106, 0.15);
  border: 1px solid rgba(244, 200, 106, 0.3);
  color: var(--c-gold);
  margin-bottom: 5px;
}
.story-companion-phone {
  font-size: 0.68rem;
  color: rgba(168, 179, 209, 0.55);
  margin-top: 4px;
  letter-spacing: 0.2px;
}

/* ═══════════════════════════════════════
   ADVENTURE SERIES
   ═══════════════════════════════════════ */
.adventure-series {
  padding: 100px 0;
  position: relative;
}

.adv-chain {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 860px;
  margin: 0 auto 72px;
}

.adv-card {
  background: linear-gradient(160deg, var(--c-card-2), var(--c-card));
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 28px 30px;
  position: relative;
  transition: transform 300ms var(--ease-spring), border-color 300ms var(--ease-smooth), box-shadow 300ms;
}
.adv-card:hover {
  transform: translateY(-5px);
  border-color: var(--c-border-gold);
}
.adv-card-gold {
  border-color: rgba(244, 200, 106, 0.28);
  box-shadow: 0 0 0 1px rgba(244,200,106,0.07), var(--shadow-gold);
}

.adv-chapter-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: rgba(168, 179, 209, 0.1);
  border: 1px solid rgba(168, 179, 209, 0.2);
  color: var(--c-blue);
  margin-bottom: 12px;
}
.adv-chapter-badge-gold {
  background: rgba(244, 200, 106, 0.14);
  border-color: rgba(244, 200, 106, 0.35);
  color: var(--c-gold);
}

.adv-meta {
  font-size: 0.76rem;
  color: rgba(168, 179, 209, 0.55);
  margin-bottom: 8px;
}

.adv-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-cream);
  line-height: 1.25;
  margin-bottom: 10px;
}

.adv-excerpt {
  font-size: 0.87rem;
  color: var(--c-blue);
  line-height: 1.65;
  margin-bottom: 16px;
}

.adv-the-end {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  color: rgba(168, 179, 209, 0.38);
  font-style: italic;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}

.adv-continue-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-gold);
  opacity: 0.9;
  letter-spacing: 0.2px;
}

.adv-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
}
.adv-connector-line {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, rgba(244,200,106,0.4), transparent);
  border-radius: 2px;
}
.adv-night-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: rgba(244, 200, 106, 0.1);
  border: 1px solid rgba(244, 200, 106, 0.25);
  color: var(--c-gold);
  white-space: nowrap;
}

/* ── Companion showcase ── */
.companion-showcase {
  text-align: center;
  padding: 56px 40px;
  background: linear-gradient(160deg, rgba(27, 33, 70, 0.8), rgba(17, 23, 54, 0.6));
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.companion-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(244,200,106,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.companion-showcase-sub {
  font-size: 1.02rem;
  color: var(--c-blue);
  line-height: 1.72;
  max-width: 46ch;
  margin: 0 auto 32px;
}
.companion-showcase-sub em {
  color: var(--c-gold);
  font-style: italic;
}

.companion-chips-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.companion-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
  border-radius: var(--r-pill);
  font-size: 0.84rem;
  font-weight: 600;
  background: rgba(168, 179, 209, 0.06);
  border: 1px solid var(--c-border);
  color: var(--c-blue);
  cursor: default;
  transition: all 220ms var(--ease-smooth);
  white-space: nowrap;
}
.companion-chip:hover {
  background: rgba(244, 200, 106, 0.1);
  border-color: rgba(244, 200, 106, 0.28);
  color: var(--c-cream);
  transform: translateY(-2px);
}
.companion-chip-active {
  background: rgba(244, 200, 106, 0.14);
  border-color: rgba(244, 200, 106, 0.38);
  color: var(--c-gold);
  box-shadow: 0 4px 14px rgba(244, 200, 106, 0.18);
}

.companion-chips-hint {
  font-size: 0.86rem;
  color: rgba(168, 179, 209, 0.45);
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ── Adventure series responsive ── */
@media (max-width: 768px) {
  .adv-chain {
    grid-template-columns: 1fr;
  }
  .adv-connector {
    flex-direction: row;
    padding: 8px 0;
  }
  .adv-connector-line {
    width: 32px;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(244,200,106,0.4), transparent);
  }
  .companion-showcase {
    padding: 36px 20px;
  }
}

@media (max-width: 640px) {
  .adventure-series { padding: 64px 0; }
  .companion-chip { font-size: 0.78rem; padding: 6px 11px; }
  .adv-card { padding: 22px 20px; }
}

/* ═══════════════════════════════════════
   FEATURE VISUALS — VOICE & THEMES
   ═══════════════════════════════════════ */

/* Voice input waveform */
.voice-demo {
  display: grid;
  gap: 12px;
}
.voice-wave-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 44px;
}
.voice-bar {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(to top, rgba(244,200,106,0.55), rgba(244,200,106,0.92));
  animation: voice-bar-wave 1.4s ease-in-out infinite alternate;
}
.voice-bar:nth-child(1)  { animation-delay: 0.00s; }
.voice-bar:nth-child(2)  { animation-delay: 0.10s; }
.voice-bar:nth-child(3)  { animation-delay: 0.20s; }
.voice-bar:nth-child(4)  { animation-delay: 0.30s; }
.voice-bar:nth-child(5)  { animation-delay: 0.40s; }
.voice-bar:nth-child(6)  { animation-delay: 0.50s; }
.voice-bar:nth-child(7)  { animation-delay: 0.60s; }
.voice-bar:nth-child(8)  { animation-delay: 0.50s; }
.voice-bar:nth-child(9)  { animation-delay: 0.40s; }
.voice-bar:nth-child(10) { animation-delay: 0.30s; }
.voice-bar:nth-child(11) { animation-delay: 0.20s; }
.voice-bar:nth-child(12) { animation-delay: 0.10s; }
@keyframes voice-bar-wave {
  0%   { transform: scaleY(0.35); opacity: 0.45; }
  100% { transform: scaleY(1);    opacity: 1; }
}
.voice-transcription {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: rgba(246,242,233,0.6);
  font-style: italic;
  text-align: center;
  padding: 8px 14px;
  background: rgba(168, 179, 209, 0.05);
  border-radius: var(--r-md);
  border: 1px solid rgba(168, 179, 209, 0.1);
  line-height: 1.5;
}

/* Seasonal theme chips */
.theme-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.theme-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(108, 92, 231, 0.09);
  border: 1px solid rgba(108, 92, 231, 0.2);
  color: #b4aee8;
  white-space: nowrap;
  transition: all 220ms var(--ease-smooth);
}
.theme-chip:hover {
  background: rgba(108, 92, 231, 0.18);
  border-color: rgba(108, 92, 231, 0.38);
  color: var(--c-cream);
}
.theme-chip-active {
  background: rgba(244, 200, 106, 0.14);
  border-color: rgba(244, 200, 106, 0.38);
  color: var(--c-gold);
}
