@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');




:root{
  --bg-body: #060606;
  --bg-card: #121212;
  --bg-card-elevated: #181818;
  --accent-red: #e63928;
  --accent-red-hover: #ff4532;
  --accent-red-glow: rgba(230, 57, 40, 0.25);
  --accent-red-subtle: rgba(230, 57, 40, 0.12);
  --text-white: #ffffff;
  --text-offwhite: #f5f5f7;
  --text-muted: #9e9ea7;
  --text-dark-muted: #66666e;
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-red: rgba(230, 57, 40, 0.35);
  --font-serif: 'Cinzel', 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}


.fc-pitchdeck *, .fc-pitchdeck *::before, .fc-pitchdeck *::after{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.fc-pitchdeck{
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-body);
  color: var(--text-offwhite);
  font-family: var(--font-sans);
}

.fc-pitchdeck{
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.fc-pitchdeck a{
  color: inherit;
  text-decoration: none;
}

.fc-pitchdeck img{
  max-width: 100%;
  height: auto;
  display: block;
}

.fc-pitchdeck ul{
  list-style: none;
}


.fc-pitchdeck .serif-title{
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.15;
}

.fc-pitchdeck .title-white{
  color: var(--text-white);
}

.fc-pitchdeck .title-red{
  color: var(--accent-red);
}

.fc-pitchdeck .highlight-red{
  color: var(--accent-red);
  font-weight: 600;
}


.fc-pitchdeck .btn-toggle-view{
  background: var(--bg-card-elevated);
  border: 1px solid var(--border-red);
  color: var(--text-white);
  padding: 0.65rem 1.4rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 0 15px var(--accent-red-subtle);
}

.fc-pitchdeck .btn-toggle-view:hover{
  background: var(--accent-red);
  border-color: var(--accent-red);
  box-shadow: 0 0 25px var(--accent-red-glow);
  transform: translateY(-2px);
}

.fc-pitchdeck .btn-primary{
  background: var(--accent-red);
  color: var(--text-white);
  padding: 0.65rem 1.4rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--accent-red-glow);
}

.fc-pitchdeck .btn-primary:hover{
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(230, 57, 40, 0.4);
}


.fc-pitchdeck .main-content{
  padding-top: 0;
}

.fc-pitchdeck .section{
  padding: 5rem 2rem;
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-dark);
}

.fc-pitchdeck .section-container{
  max-width: 1250px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.fc-pitchdeck .section-single{
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 900px;
}


.fc-pitchdeck .section-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--accent-red-subtle);
  border: 1px solid var(--border-red);
  color: var(--accent-red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.fc-pitchdeck .section-title{
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.fc-pitchdeck .section-desc{
  font-size: 1.1rem;
  color: var(--text-offwhite);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.fc-pitchdeck .section-list{
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fc-pitchdeck .section-list-item{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
  color: var(--text-offwhite);
}

.fc-pitchdeck .list-svg-icon{
  flex-shrink: 0;
  margin-top: 2px;
}

.fc-pitchdeck .bullet-dot{
  width: 8px;
  height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  display: inline-block;
  margin-top: 9px;
  flex-shrink: 0;
}


.fc-pitchdeck .highlight-quote{
  margin-top: 2rem;
  padding: 1.2rem 1.6rem;
  background: linear-gradient(135deg, rgba(230, 57, 40, 0.12) 0%, rgba(18, 18, 18, 0.6) 100%);
  border-left: 4px solid var(--accent-red);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-white);
}


.fc-pitchdeck .card-showcase-wrapper{
  position: relative;
  display: flex;
  justify-content: center;
}

.fc-pitchdeck .card-red-backdrop{
  position: absolute;
  top: 15px;
  right: -15px;
  width: 100%;
  height: 100%;
  background: var(--accent-red);
  border-radius: var(--radius-lg);
  z-index: 1;
  opacity: 0.85;
}

.fc-pitchdeck .card-showcase{
  position: relative;
  z-index: 2;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  transition: var(--transition);
  width: 100%;
}

.fc-pitchdeck .card-showcase img{
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: var(--transition);
}

.fc-pitchdeck .card-showcase:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(230, 57, 40, 0.25);
}

.fc-pitchdeck .card-showcase:hover img{
  transform: scale(1.04);
}


.fc-pitchdeck .hero-section{
  min-height: 92vh;
  background: radial-gradient(circle at center, rgba(230, 57, 40, 0.15) 0%, rgba(6, 6, 6, 1) 75%);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.fc-pitchdeck .hero-content{
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  z-index: 2;
}

.fc-pitchdeck .hero-logo-wrapper{
  width: 170px;
  height: 170px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  margin: 0 auto 2.2rem;
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.3), 0 0 25px var(--accent-red-glow);
  transition: var(--transition);
  animation: pulseLogo 4s infinite alternate ease-in-out;
}

.fc-pitchdeck .hero-logo-wrapper:hover{
  transform: scale(1.06);
  box-shadow: 0 0 45px rgba(255, 255, 255, 0.5), 0 0 35px var(--accent-red-glow);
}

.fc-pitchdeck .hero-logo-img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

@keyframes pulseLogo {
  0% { transform: scale(1); box-shadow: 0 0 30px rgba(255, 255, 255, 0.25); }
  100% { transform: scale(1.05); box-shadow: 0 0 45px rgba(255, 255, 255, 0.45), 0 0 30px var(--accent-red-glow); }
}

.fc-pitchdeck .hero-title{
  font-size: 3.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.fc-pitchdeck .hero-subtitle{
  font-size: 1.8rem;
  font-family: var(--font-serif);
  color: var(--text-offwhite);
  margin-bottom: 2.5rem;
  letter-spacing: 3px;
}

.fc-pitchdeck .hero-cta-group{
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}


.fc-pitchdeck .pillars-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.fc-pitchdeck .pillar-card{
  background: var(--bg-card-elevated);
  border: 1px solid var(--border-dark);
  padding: 1.4rem 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.fc-pitchdeck .pillar-card:hover{
  border-color: var(--border-red);
  background: rgba(230, 57, 40, 0.08);
}

.fc-pitchdeck .pillar-icon{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-red-subtle);
  border: 1px solid var(--border-red);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
}

.fc-pitchdeck .pillar-title{
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-white);
}


.fc-pitchdeck .market-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.fc-pitchdeck .market-box{
  background: var(--bg-card-elevated);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.fc-pitchdeck .market-box::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-red);
}

.fc-pitchdeck .market-box-title{
  font-size: 1.4rem;
  color: var(--accent-red);
  font-family: var(--font-serif);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}


.fc-pitchdeck .partners-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.fc-pitchdeck .partner-card{
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  transition: var(--transition);
}

.fc-pitchdeck .partner-card:hover{
  border-color: var(--accent-red);
  transform: translateY(-4px);
}

.fc-pitchdeck .partner-header{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.6rem;
}

.fc-pitchdeck .partner-dot{
  width: 12px;
  height: 12px;
  background: var(--accent-red);
  border-radius: 50%;
}

.fc-pitchdeck .partner-name{
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-red);
}

.fc-pitchdeck .partner-desc{
  font-size: 0.95rem;
  color: var(--text-offwhite);
  margin-bottom: 0.5rem;
}

.fc-pitchdeck .partner-handle{
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}


.fc-pitchdeck .pitchdeck-modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.96);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.fc-pitchdeck .pitchdeck-modal.active{
  opacity: 1;
  visibility: visible;
}

.fc-pitchdeck .pitchdeck-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(18, 18, 18, 0.9);
  border-bottom: 1px solid var(--border-dark);
}

.fc-pitchdeck .pitchdeck-title{
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.fc-pitchdeck .slide-counter{
  background: var(--accent-red-subtle);
  border: 1px solid var(--border-red);
  color: var(--accent-red);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

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

.fc-pitchdeck .btn-icon{
  background: var(--bg-card-elevated);
  border: 1px solid var(--border-dark);
  color: var(--text-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.fc-pitchdeck .btn-icon:hover{
  background: var(--accent-red);
  border-color: var(--accent-red);
}

.fc-pitchdeck .pitchdeck-stage{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}

.fc-pitchdeck .slide-image-container{
  max-width: 100%;
  max-height: 100%;
  box-shadow: 0 0 60px rgba(230, 57, 40, 0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-red);
}

.fc-pitchdeck .slide-image-container img{
  max-height: 72vh;
  width: auto;
  object-fit: contain;
  display: block;
}

.fc-pitchdeck .nav-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background: rgba(18, 18, 18, 0.8);
  border: 1px solid var(--border-red);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.fc-pitchdeck .nav-arrow:hover{
  background: var(--accent-red);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px var(--accent-red-glow);
}

.fc-pitchdeck .nav-arrow.prev{ left: 2rem; }
.fc-pitchdeck .nav-arrow.next{ right: 2rem; }

.fc-pitchdeck .pitchdeck-thumbnails{
  height: 90px;
  background: rgba(10, 10, 10, 0.95);
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.5rem 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.fc-pitchdeck .thumb-item{
  height: 60px;
  width: 100px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.5;
  transition: var(--transition);
  flex-shrink: 0;
}

.fc-pitchdeck .thumb-item.active, .fc-pitchdeck .thumb-item:hover{
  opacity: 1;
  border-color: var(--accent-red);
  box-shadow: 0 0 12px var(--accent-red-glow);
}

.fc-pitchdeck .thumb-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.fc-pitchdeck .fade-up{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fc-pitchdeck .fade-up.visible{
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 992px){
  .fc-pitchdeck .section-container{
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .fc-pitchdeck .section-title{
    font-size: 2.2rem;
  }
  .fc-pitchdeck .hero-title{
    font-size: 2.8rem;
  }
  .fc-pitchdeck .card-showcase img{
    height: 350px;
  }
  .fc-pitchdeck .market-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px){
  .fc-pitchdeck .hero-title{
    font-size: 2.2rem;
  }
  .fc-pitchdeck .hero-subtitle{
    font-size: 1.3rem;
  }
  .fc-pitchdeck .pillars-grid{
    grid-template-columns: 1fr;
  }
  .fc-pitchdeck .partners-grid{
    grid-template-columns: 1fr;
  }
  .fc-pitchdeck .nav-arrow.prev{ left: 0.5rem; }
  .fc-pitchdeck .nav-arrow.next{ right: 0.5rem; }
}

/* Defensive overrides against theme/hero-section.css collisions */
.fc-pitchdeck .hero-content{
  display: block;
  min-height: 0;
}
.fc-pitchdeck .btn-primary{
  border: none;
}
.fc-pitchdeck .btn-primary:focus,
.fc-pitchdeck .btn-primary:active{
  outline: none;
  box-shadow: 0 4px 20px var(--accent-red-glow);
}
