/* ============================================
   DOTTY&DASH DEMO EXPERIENCE
   Cinematic single-page demo
   ============================================ */

:root {
  --cream: #F5F0E8;
  --cream-soft: #FAF6F0;
  --ink: #0F1419;
  --ink-soft: #1A2028;
  --ink-mid: #2A3340;
  --green: #00C896;
  --green-glow: rgba(0, 200, 150, 0.4);
  --gold: #E5B574;
  --gold-glow: rgba(229, 181, 116, 0.4);
  --white: #FFFFFF;
  --muted: rgba(245, 240, 232, 0.6);
  --muted-strong: rgba(245, 240, 232, 0.85);
  --border: rgba(245, 240, 232, 0.1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--ink);
  color: var(--cream);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background:
    radial-gradient(ellipse at top, rgba(0, 200, 150, 0.08), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(229, 181, 116, 0.06), transparent 50%),
    var(--ink);
  position: relative;
}

/* Particle canvas */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 50;
  pointer-events: none;
}
.topbar > * { pointer-events: auto; }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--green);
  box-shadow: 0 0 16px var(--green-glow);
}
.brand-wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.brand-amp { font-weight: 700; }

.top-controls {
  display: flex;
  gap: 12px;
  align-items: center;
}

.icon-btn {
  background: rgba(245, 240, 232, 0.05);
  border: 1px solid var(--border);
  color: var(--cream);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}
.icon-btn:hover {
  background: rgba(245, 240, 232, 0.1);
  border-color: var(--green);
  transform: scale(1.05);
}

.text-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted-strong);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}
.text-btn:hover {
  color: var(--cream);
  border-color: var(--green);
  background: rgba(0, 200, 150, 0.05);
}

/* ============================================
   PROGRESS DOTS
   ============================================ */
.progress-dots {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 50;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.2);
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}
.dot.active {
  background: var(--green);
  width: 32px;
  border-radius: 4px;
  box-shadow: 0 0 12px var(--green-glow);
}
.dot.visited {
  background: rgba(0, 200, 150, 0.5);
}

/* ============================================
   STAGE & SCENES
   ============================================ */
.stage {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

.scene {
  position: absolute;
  inset: 0;
  padding: 96px 48px 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98) translateY(8px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), visibility 0s linear 0.6s;
}
.scene.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), visibility 0s linear 0s;
}

.scene-header {
  text-align: center;
  max-width: 900px;
  margin-bottom: 32px;
}
.scene-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.scene-title em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}
.scene-title-huge { font-size: clamp(56px, 8vw, 120px); }
.scene-sub {
  margin-top: 16px;
  font-size: 18px;
  color: var(--muted-strong);
  font-weight: 400;
}
.scene-eyebrow {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.eyebrow-counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted-strong);
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 24px;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* ============================================
   DOTTY PORTRAIT
   ============================================ */
.dotty-portrait {
  position: relative;
  width: 180px; height: 180px;
  margin-bottom: 32px;
}
.portrait-large { width: 220px; height: 220px; }

.dotty-img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green);
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 0 6px rgba(0, 200, 150, 0.15),
    0 0 48px var(--green-glow),
    0 20px 60px rgba(0, 0, 0, 0.4);
}
.dotty-breathe {
  animation: breathe 4s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.dotty-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-glow), transparent 60%);
  filter: blur(20px);
  animation: glow-pulse 3s ease-in-out infinite;
  z-index: 1;
}
.dotty-glow.small { inset: -20px; }
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* ============================================
   SPEECH BUBBLES
   ============================================ */
.speech-bubble {
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  padding: 20px 28px;
  border-radius: 24px;
  font-size: 18px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.5;
  max-width: 640px;
  text-align: center;
  position: relative;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.speech-large {
  font-size: 22px;
  padding: 24px 36px;
  font-weight: 500;
}
.speech-bottom {
  margin-top: 32px;
}
.cursor {
  display: inline-block;
  width: 2px;
  margin-left: 2px;
  color: var(--green);
  animation: blink 1s steps(2) infinite;
}
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Waveform */
.waveform {
  display: flex;
  gap: 4px;
  align-items: center;
  margin: 20px 0 32px;
  height: 24px;
}
.waveform span {
  display: block;
  width: 3px;
  background: var(--green);
  border-radius: 2px;
  opacity: 0.6;
  animation: wave 1.2s ease-in-out infinite;
}
.waveform span:nth-child(1) { animation-delay: 0s; height: 30%; }
.waveform span:nth-child(2) { animation-delay: 0.1s; height: 60%; }
.waveform span:nth-child(3) { animation-delay: 0.2s; height: 100%; }
.waveform span:nth-child(4) { animation-delay: 0.3s; height: 80%; }
.waveform span:nth-child(5) { animation-delay: 0.4s; height: 50%; }
.waveform span:nth-child(6) { animation-delay: 0.5s; height: 70%; }
.waveform span:nth-child(7) { animation-delay: 0.6s; height: 90%; }
.waveform span:nth-child(8) { animation-delay: 0.7s; height: 40%; }
.waveform span:nth-child(9) { animation-delay: 0.8s; height: 60%; }
.waveform span:nth-child(10) { animation-delay: 0.9s; height: 30%; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

/* ============================================
   SCENE 1: HELLO
   ============================================ */
.scene-1-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ============================================
   CTA BUTTONS
   ============================================ */
.cta-primary {
  background: linear-gradient(135deg, var(--green), #00A87D);
  color: var(--ink);
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 100px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 8px 32px var(--green-glow), 0 0 0 1px rgba(0, 200, 150, 0.3);
  position: relative;
  overflow: hidden;
}
.cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out);
}
.cta-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 40px var(--green-glow), 0 0 0 1px rgba(0, 200, 150, 0.5);
}
.cta-primary:hover::before {
  transform: translateX(100%);
}
.cta-large {
  font-size: 18px;
  padding: 20px 40px;
}
.pulse {
  animation: cta-pulse 2.2s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 8px 32px var(--green-glow), 0 0 0 1px rgba(0, 200, 150, 0.3); }
  50% { box-shadow: 0 8px 32px var(--green-glow), 0 0 0 8px rgba(0, 200, 150, 0); }
}

.cta-secondary {
  color: var(--cream);
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(245, 240, 232, 0.04);
  text-decoration: none;
  transition: all 0.2s var(--ease-out);
}
.cta-secondary:hover {
  border-color: var(--gold);
  background: rgba(229, 181, 116, 0.08);
  color: var(--gold);
}

/* ============================================
   SCENE 2: ORBIT / CHANNELS
   ============================================ */
.orbit-container {
  position: relative;
  width: min(640px, 80vw);
  height: min(640px, 80vw);
  margin: 16px 0;
}
.orbit-rings { position: absolute; inset: 0; }
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(245, 240, 232, 0.08);
  animation: spin 60s linear infinite;
}
.ring-1 { inset: 30%; animation-duration: 40s; }
.ring-2 { inset: 15%; animation-duration: 70s; animation-direction: reverse; }
.ring-3 { inset: 0%; animation-duration: 100s; }
@keyframes spin {
  to { transform: rotate(360deg); }
}

.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  z-index: 5;
}

.orbit-channels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.channel-bubble {
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--ink-soft);
  border: 1.5px solid var(--border);
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.channel-bubble.pulse-channel {
  border-color: var(--green);
  box-shadow: 0 0 24px var(--green-glow), 0 4px 16px rgba(0,0,0,0.3);
  transform: translate(-50%, -50%) scale(1.15);
}
.channel-bubble svg { width: 30px; height: 30px; }
.channel-label {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.message-beams { position: absolute; inset: 0; pointer-events: none; }
.beam-msg {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  pointer-events: none;
}

/* ============================================
   SCENE 3: LIVE CHAT
   ============================================ */
.chat-stage {
  display: flex;
  gap: 32px;
  align-items: center;
  max-width: 900px;
}

.phone-frame {
  width: 340px;
  background: var(--ink-soft);
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(245, 240, 232, 0.05);
  position: relative;
  overflow: hidden;
}
.phone-small {
  width: 300px;
}
.phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 24px;
  background: var(--ink);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 28px 16px 12px;
  border-bottom: 1px solid var(--border);
}
.phone-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
}
.phone-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 6px;
}
.online-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}
.phone-status {
  font-size: 11px;
  color: var(--muted);
}
.phone-conversation {
  padding: 16px;
  min-height: 380px;
  max-height: 380px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  animation: msg-in 0.4s var(--ease-spring) forwards;
}
@keyframes msg-in {
  to { opacity: 1; transform: translateY(0); }
}
.msg.them {
  background: var(--ink-mid);
  color: var(--cream);
  border-bottom-left-radius: 6px;
  align-self: flex-start;
}
.msg.dotty {
  background: linear-gradient(135deg, var(--green), #00A87D);
  color: var(--ink);
  border-bottom-right-radius: 6px;
  align-self: flex-end;
  font-weight: 500;
}
.typing-dots {
  background: var(--ink-mid);
  align-self: flex-start;
  padding: 12px 16px;
  border-radius: 18px;
  border-bottom-left-radius: 6px;
  display: inline-flex;
  gap: 4px;
}
.typing-dots span {
  width: 6px; height: 6px;
  background: var(--muted);
  border-radius: 50%;
  animation: typing 1.4s infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.brain-panel {
  width: 260px;
  background: rgba(245, 240, 232, 0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(20px);
}
.brain-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.brain-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.brain-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  background: rgba(0, 200, 150, 0.08);
  border-left: 2px solid var(--green);
  border-radius: 8px;
  font-size: 13px;
  opacity: 0;
  transform: translateX(-8px);
  animation: brain-in 0.4s var(--ease-out) forwards;
}
@keyframes brain-in {
  to { opacity: 1; transform: translateX(0); }
}
.brain-key {
  color: var(--muted-strong);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.brain-val {
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}

/* ============================================
   SCENE 4: MEMORY
   ============================================ */
.memory-stage {
  display: flex;
  gap: 32px;
  align-items: center;
  margin: 16px 0 32px;
}
.memory-left, .memory-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.memory-arrow {
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}
.memory-arrow.show { opacity: 1; }
.arrow-path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: draw 1.5s var(--ease-out) forwards;
}
.memory-arrow.show .arrow-path {
  animation-play-state: running;
}
@keyframes draw {
  to { stroke-dashoffset: 0; }
}

.calendar-rewind {
  text-align: center;
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 32px;
  min-width: 220px;
}
.calendar-label {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  font-weight: 600;
}
.calendar-month {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--cream);
}

.old-contact-card {
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: 14px;
  min-width: 240px;
}
.contact-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink-mid);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--gold);
  font-size: 18px;
}
.contact-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
}
.contact-meta {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.contact-tag {
  font-size: 10px;
  color: var(--gold);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.booked-card {
  display: flex;
  gap: 12px;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 200, 150, 0.15), rgba(0, 200, 150, 0.05));
  border: 1px solid var(--green);
  padding: 14px 18px;
  border-radius: 14px;
  opacity: 0;
  transform: translateY(8px) rotateX(-30deg);
  transition: all 0.6s var(--ease-spring);
}
.booked-card.show {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}
.booked-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 18px;
}
.booked-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.booked-time {
  font-size: 13px;
  color: var(--cream);
  margin-top: 2px;
}

.memory-stat {
  text-align: center;
  margin-top: 16px;
}
.stat-big {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 700;
  background: linear-gradient(120deg, var(--gold), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 14px;
  color: var(--muted-strong);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

.memory-right .phone-conversation { min-height: 180px; max-height: 180px; }

/* ============================================
   SCENE 5: LEAD CARDS
   ============================================ */
.lead-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  width: 100%;
  margin: 16px 0;
}
.lead-card {
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  opacity: 0;
  transform: translateY(20px);
}
.lead-card.show {
  opacity: 1;
  transform: translateY(0);
}
.lead-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 16px 48px rgba(0, 200, 150, 0.15);
}
.lead-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  opacity: 0.6;
}
.lead-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.lead-type {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
}
.lead-stat {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.lead-stat-label {
  font-size: 12px;
  color: var(--muted-strong);
  margin-top: 4px;
  margin-bottom: 16px;
}
.lead-quote {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  line-height: 1.4;
}

/* ============================================
   SCENE 6: THE MONEY
   ============================================ */
.money-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  width: 100%;
  margin: 32px 0;
}
.money-card {
  background: linear-gradient(135deg, rgba(229, 181, 116, 0.05), rgba(0, 200, 150, 0.05));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  text-align: left;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s var(--ease-spring);
}
.money-card.show {
  opacity: 1;
  transform: scale(1);
}
.money-card::after {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--green-glow), transparent 70%);
  opacity: 0.5;
}
.money-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  background: linear-gradient(120deg, var(--gold), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  position: relative;
  z-index: 2;
}
.money-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  margin-top: 12px;
}
.money-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.money-disclaimer {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* ============================================
   SCENE 7: CTA
   ============================================ */
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.cta-foot {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}
.cta-wordmark {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.cta-wordmark-text {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.cta-wordmark-text span { font-weight: 700; }
.cta-wordmark-sub {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
}

/* ============================================
   NAV
   ============================================ */
.scene-nav {
  position: fixed;
  bottom: 28px;
  right: 32px;
  display: flex;
  gap: 8px;
  z-index: 50;
}
.nav-btn {
  background: rgba(245, 240, 232, 0.05);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 100px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s var(--ease-out);
  backdrop-filter: blur(20px);
}
.nav-btn:hover {
  background: rgba(0, 200, 150, 0.1);
  border-color: var(--green);
  color: var(--green);
}
.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.nav-next {
  background: linear-gradient(135deg, var(--green), #00A87D);
  color: var(--ink);
  border-color: transparent;
  padding-left: 20px;
  padding-right: 20px;
  box-shadow: 0 4px 16px var(--green-glow);
}
.nav-next:hover {
  color: var(--ink);
  border-color: transparent;
  background: linear-gradient(135deg, #00DAA8, var(--green));
  transform: translateY(-1px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .scene { padding: 80px 20px 100px; }
  .chat-stage { flex-direction: column; gap: 20px; }
  .brain-panel { width: 100%; max-width: 340px; }
  .memory-stage { flex-direction: column; gap: 20px; }
  .memory-arrow { transform: rotate(90deg); }
  .lead-cards { grid-template-columns: repeat(2, 1fr); }
  .money-grid { grid-template-columns: 1fr; }
  .scene-title { font-size: 32px; }
  .scene-title-huge { font-size: 56px; }
  .speech-bubble { font-size: 16px; padding: 16px 22px; }
  .topbar { padding: 16px 20px; }
  .scene-nav { right: 20px; bottom: 60px; }
}

@media (max-width: 560px) {
  .lead-cards { grid-template-columns: 1fr 1fr; }
  .orbit-container { width: 90vw; height: 90vw; }
  .channel-bubble { width: 48px; height: 48px; }
  .channel-bubble svg { width: 22px; height: 22px; }
  .channel-label { font-size: 9px; }
  .phone-frame { width: 280px; }
  .brand-wordmark { font-size: 16px; }
  .text-btn { font-size: 12px; padding: 6px 12px; }
}
