/* pitch-deck.css — NovaReelOS Investor Pitch Deck styles.
   Owns: slide layout, navigation controls, typography, animations.
   Does NOT own: sidebar, app-shell layout (see sidebar.css). */

/* ── Reset & Page ─────────────────────────────────────── */
.pd-page {
  position: relative;
  width: 100%;
  height: calc(100vh - 0px);
  overflow: hidden;
  background: #0A0A0A;
}

/* ── Slides ────────────────────────────────────────────── */
.pd-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
  transform: translateX(40px);
  text-align: center;
}
.pd-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.pd-slide.exit-left {
  transform: translateX(-40px);
  opacity: 0;
}
.pd-slide.exit-right {
  transform: translateX(40px);
  opacity: 0;
}

/* ── Slide inner container ─────────────────────────────── */
.pd-slide-inner {
  max-width: 900px;
  width: 100%;
}

/* ── Slide number badge ────────────────────────────────── */
.pd-slide-num {
  display: inline-block;
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #00F2EA;
  background: rgba(0,242,234,0.08);
  border: 1px solid rgba(0,242,234,0.2);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 1.25rem;
}

/* ── Title slide special ───────────────────────────────── */
.pd-slide--title {
  background: radial-gradient(ellipse at 50% 30%, rgba(0,242,234,0.06) 0%, transparent 70%);
}
.pd-logo-text {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #00F2EA;
  margin-bottom: 2rem;
  opacity: 0.7;
}
.pd-hero-title {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 1.5rem;
}
.pd-hero-title em {
  font-style: normal;
  color: #00F2EA;
}
.pd-hero-sub {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Standard slide heading ────────────────────────────── */
.pd-heading {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
}
.pd-subheading {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.5);
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

/* ── Bullet list ───────────────────────────────────────── */
.pd-bullets {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 620px;
  text-align: left;
}
.pd-bullets li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.8rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.pd-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00F2EA;
}

/* ── Stat grid ─────────────────────────────────────────── */
.pd-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}
.pd-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 1.25rem 1rem;
}
.pd-stat-value {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #00F2EA;
  margin-bottom: 0.25rem;
}
.pd-stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Card grid ─────────────────────────────────────────── */
.pd-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
}
.pd-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: left;
}
.pd-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.pd-card-title {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}
.pd-card-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* ── Split bar (45/55) ─────────────────────────────────── */
.pd-split-bar {
  display: flex;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  max-width: 600px;
  margin: 1.5rem auto;
}
.pd-split-creator {
  flex: 0.45;
  background: #00F2EA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.9375rem;
  color: #0A0A0A;
}
.pd-split-platform {
  flex: 0.55;
  background: #FF4D6D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.9375rem;
  color: #fff;
}

/* ── Flywheel visual ───────────────────────────────────── */
.pd-flywheel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin: 1.5rem auto 0;
}
.pd-fw-step {
  background: rgba(0,242,234,0.06);
  border: 1px solid rgba(0,242,234,0.15);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #00F2EA;
}
.pd-fw-arrow {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.25);
}

/* ── Table ─────────────────────────────────────────────── */
.pd-table-wrap {
  overflow-x: auto;
  max-width: 750px;
  margin: 0 auto;
}
.pd-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.pd-table th {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pd-table td {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pd-table td:first-child {
  font-weight: 600;
  color: #fff;
}

/* ── Highlight text ────────────────────────────────────── */
.pd-highlight {
  color: #00F2EA;
  font-weight: 700;
}
.pd-coral {
  color: #FF4D6D;
  font-weight: 700;
}

/* ── CTA slide ─────────────────────────────────────────── */
.pd-cta-heading {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.pd-cta-btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: #00F2EA;
  color: #0A0A0A;
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.9375rem;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: background 0.2s;
}
.pd-cta-btn:hover {
  background: #00d4cd;
}

/* ── Navigation controls ───────────────────────────────── */
.pd-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.06);
  z-index: 100;
}
.pd-nav-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}
.pd-nav-btn:hover {
  background: rgba(255,255,255,0.1);
}
.pd-nav-btn svg {
  width: 18px;
  height: 18px;
}
.pd-counter {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  min-width: 60px;
  text-align: center;
}

/* ── Progress bar ──────────────────────────────────────── */
.pd-progress-track {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.06);
  z-index: 101;
}
.pd-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #00F2EA, #FF4D6D);
  transition: width 0.4s ease;
  width: 5%;
}

/* ── Roadmap phases ────────────────────────────────────── */
.pd-phases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  max-width: 750px;
  margin: 0 auto;
}
.pd-phase {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: left;
}
.pd-phase-label {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00F2EA;
  margin-bottom: 0.5rem;
}
.pd-phase-done {
  color: rgba(0,242,234,0.4);
}
.pd-phase-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}
.pd-phase-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* ── Slide dots ───────────────────────────────────────── */
.pd-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.pd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.pd-dot:hover {
  background: rgba(255,255,255,0.35);
}
.pd-dot.active {
  background: #FF4D6D;
  transform: scale(1.3);
}

/* ── Share button ─────────────────────────────────────── */
.pd-share-btn {
  margin-left: 0.5rem;
}
.pd-share-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #FF4D6D;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 200;
  pointer-events: none;
}
.pd-share-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Footer links ─────────────────────────────────────── */
.pd-footer-links {
  position: fixed;
  bottom: 56px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(10,10,10,0.85);
  border-top: 1px solid rgba(255,255,255,0.04);
  z-index: 99;
}
.pd-footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  transition: color 0.2s;
}
.pd-footer-links a:hover {
  color: #FF4D6D;
}
.pd-footer-sep {
  color: rgba(255,255,255,0.15);
  font-size: 0.75rem;
}

/* ── Financial projections ────────────────────────────── */
.pd-projections {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.pd-projection {
  background: rgba(255,77,109,0.06);
  border: 1px solid rgba(255,77,109,0.2);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  flex: 1;
  text-align: center;
}
.pd-projection-label {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FF4D6D;
  margin-bottom: 0.75rem;
}
.pd-projection-revenue {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}
.pd-projection-revenue span {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pd-projection-profit {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #00F2EA;
}
.pd-projection-profit span {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pd-projection-arrow {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.2);
  font-weight: 700;
}

/* ── Contact info ─────────────────────────────────────── */
.pd-contact-info {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
  .pd-slide {
    padding: 3rem 1.5rem 6rem;
  }
  .pd-stats {
    grid-template-columns: 1fr 1fr;
  }
  .pd-cards {
    grid-template-columns: 1fr;
  }
  .pd-phases {
    grid-template-columns: 1fr;
  }
  .pd-hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .pd-dots {
    display: none;
  }
  .pd-projections {
    flex-direction: column;
    gap: 1rem;
  }
  .pd-projection-arrow {
    transform: rotate(90deg);
  }
}
@media (max-width: 480px) {
  .pd-slide {
    padding: 2.5rem 1rem 6rem;
  }
  .pd-stats {
    grid-template-columns: 1fr;
  }
  .pd-split-bar {
    height: 36px;
  }
  .pd-flywheel {
    gap: 0.35rem;
  }
  .pd-fw-step {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
  }
  .pd-footer-links {
    display: none;
  }
}
