/* ============================================
   CALAVERALAND — Landing Page Styles
   Primary: #B769C9 (violet-purple)
   ============================================ */

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

:root {
  --purple: #B769C9;
  --purple-dark: #7B3F8D;
  --purple-deep: #2D1236;
  --purple-light: #D4A5E0;
  --gold: #F5C842;
  --dark: #0D0A12;
  --text: #E8DFF0;
  --text-muted: #A893B8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- LANGUAGE SWITCH (inside navbar) ---- */
.lang-switch {
  display: flex;
  gap: 8px;
}

.lang-switch a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 4px;
  transition: all 0.3s;
}

.lang-switch a:hover {
  color: var(--text);
}

.lang-active {
  color: var(--gold) !important;
  border-bottom: 2px solid var(--gold);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('images/bg-pattern.png') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(13,10,18,0.3) 0%, rgba(13,10,18,0.85) 70%, rgba(13,10,18,0.97) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.2s ease-out;
}

.hero-logo {
  width: min(500px, 85vw);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(183,105,201,0.4));
  margin-bottom: 24px;
}

.hero-subtitle {
  font-family: 'Georgia', serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: #fff;
  font-style: italic;
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}

.tagline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.cta-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(183,105,201,0.4);
}

.cta-btn:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(183,105,201,0.6);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  z-index: 2;
  animation: bounce 2s infinite;
  color: var(--purple-light);
  font-size: 1.2rem;
  opacity: 0.6;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13,10,18,0.0);
  backdrop-filter: blur(0px);
  transition: all 0.4s ease;
  padding: 12px 0;
}

.navbar.scrolled {
  background: rgba(13,10,18,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--purple);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--purple-light);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

/* ---- SECTIONS ---- */
.section {
  padding: 100px 0;
}

.section-title {
  font-family: 'Bone', 'Creepster', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 2px;
  text-transform: lowercase;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 48px;
}

/* ---- STORY ---- */
.story {
  background: linear-gradient(180deg, var(--dark) 0%, var(--purple-deep) 100%);
}

.story-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}

.book-tagline {
  font-family: 'Georgia', serif;
  font-size: 1.05rem;
  color: var(--purple-light);
  margin-top: 1.2rem;
  margin-bottom: 0.4rem;
}

.story-grid .book-cover {
  text-align: center;
  max-width: 320px;
}
.story-grid .book-cover .book-tagline {
  margin-top: 1.4rem;
  text-align: center;
}
.story-grid .book-cover .book-meta {
  text-align: center;
  margin-bottom: 1rem;
}
.story-grid .book-cover .badge {
  display: inline-block;
}

.anchor-offset {
  display: block;
  position: relative;
  top: -80px;
  visibility: hidden;
}

.story-text p {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.story-lead {
  font-size: 1.2rem !important;
  font-weight: 600;
  color: var(--purple-light);
}

.story-creed {
  margin: 1.2rem 0 0.6rem;
  padding: 1rem 1.4rem;
  border-left: 3px solid #B769C9;
  background: #f3e6f7;
  border-radius: 0 8px 8px 0;
}
.story-creed p {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 1.05rem !important;
  line-height: 1.5;
  color: #5B2D6E;
  margin: 0 !important;
  letter-spacing: 0.2px;
}
.story-creed footer {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #5B2D6E;
  opacity: 0.7;
  text-align: right;
}

.story-hook {
  font-family: 'Bone', 'Creepster', cursive;
  font-size: 1.5rem !important;
  color: var(--gold);
  margin-top: 24px;
}

.cta-characters {
  margin-top: 24px;
}

.story-visual {
  text-align: center;
}

/* ---- FIGURINES ---- */
.figurines {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
}

.figurine img {
  width: 130px;
  height: auto;
  border-radius: 12px;
  filter: drop-shadow(0 4px 20px rgba(183,105,201,0.3));
  transition: transform 0.3s ease;
}

.figurine img:hover {
  transform: scale(1.05);
}

.figurine-center img {
  width: 150px;
}

.figurines-box {
  max-width: 380px;
  border: none;
  background: var(--purple-deep);
  border-radius: 12px;
  box-shadow: none !important;
  filter: none;
  border: none !important;
}

.story-img {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(183,105,201,0.3);
  border: 3px solid var(--purple-dark);
}

.img-caption {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ---- CHARACTER CARDS ---- */
.characters {
  background: var(--purple-deep);
}

.char-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.char-group-title {
  font-family: 'Bone', 'Creepster', cursive;
  font-size: 1.6rem;
  color: var(--gold);
  text-align: center;
  margin: 40px 0 24px;
  letter-spacing: 2px;
  text-transform: lowercase;
}

.char-group-title:first-of-type {
  margin-top: 0;
}

.char-group-villains {
  color: #e74c3c;
}

.char-card {
  cursor: pointer;
  position: relative;
  min-height: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(183,105,201,0.08);
  border: 1px solid rgba(183,105,201,0.2);
  transition: box-shadow 0.3s;
}

.char-card:hover {
  box-shadow: 0 8px 32px rgba(183,105,201,0.2);
}

.char-front {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: opacity 0.4s ease;
}

.char-card.flipped .char-front {
  opacity: 0;
  pointer-events: none;
}

.char-front img {
  width: auto;
  height: 200px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.char-front h3 {
  font-family: 'Bone', 'Creepster', cursive;
  font-size: 1.3rem;
  color: var(--purple-light);
  letter-spacing: 1px;
  text-transform: lowercase;
}

.char-back {
  position: absolute;
  inset: 0;
  background: rgba(183,105,201,0.15);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.char-card.flipped .char-back {
  opacity: 1;
  pointer-events: auto;
}

.char-back h3 {
  font-family: 'Bone', 'Creepster', cursive;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: lowercase;
}

.char-back p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

/* ---- BOOK FLIP ---- */
.book-flip {
  perspective: 1000px;
  cursor: pointer;
  display: inline-block;
}

.book-flip-inner {
  position: relative;
  width: 280px;
  height: 400px;
  transition: transform 0.7s ease;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.book-flip.flipped > .book-flip-inner {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.book-flip-front, .book-flip-back {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.book-flip-back {
  transform: rotateY(180deg);
}

.book-flip .book-img {
  width: 280px;
  height: 400px;
  object-fit: cover;
}

.book-flip .book-img:hover {
  transform: none;
}

.flip-hint {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0.7;
}

/* ---- COMING SOON ---- */
.coming-soon {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0.8;
}

/* ---- BOOK ---- */
.book {
  background: var(--purple-deep);
}

.book-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}

.book-cover {
  text-align: center;
}

.book-img {
  width: 280px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5), 0 0 30px rgba(183,105,201,0.2);
  transition: transform 0.4s ease;
}

.book-img:hover {
  transform: rotate(-2deg) scale(1.03);
}

.book-info h3 {
  font-family: 'Bone', 'Creepster', cursive;
  font-size: 1.6rem;
  color: var(--purple-light);
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.book-subtitle {
  font-family: 'Georgia', serif;
  text-transform: none;
  display: block;
}

.book-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.book-info p {
  margin-bottom: 16px;
}

.book-features {
  list-style: none;
  margin-bottom: 24px;
}

.book-features li {
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text-muted);
}

.book-features li::before {
  content: '\2726';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.book-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

a.badge:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(183,105,201,0.4);
}

.badge-outline {
  background: transparent;
  border: 2px solid var(--purple);
  color: var(--purple-light);
}

/* ---- WORLD / PILLARS ---- */
.world {
  background: linear-gradient(180deg, var(--purple-deep) 0%, var(--dark) 100%);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}


.pillar {
  background: rgba(183,105,201,0.08);
  border: 1px solid rgba(183,105,201,0.2);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.pillar:hover {
  background: rgba(183,105,201,0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(183,105,201,0.15);
}

.pillar-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.pillar-icon-img {
  width: auto;
  height: 120px;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: 6px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.pillar-logo {
  border-radius: 0;
}

.pillar-img {
  width: auto;
  max-width: 200px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: 12px;
}

.pillar h3 {
  font-family: 'Bone', 'Creepster', cursive;
  font-size: 1.3rem;
  color: var(--purple-light);
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---- THE CREATOR ---- */
.creator {
  background: linear-gradient(180deg, var(--purple-deep) 0%, var(--dark) 100%);
}

.creator-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}

.creator-photo {
  text-align: center;
  position: relative;
  width: 272px;
  height: 272px;
  margin: 0 auto;
  padding: 16px;
  box-sizing: border-box;
}

.creator-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #B769C9, #f6a83f, #ff6b9d, #7e3fad, #B769C9);
  z-index: 0;
  animation: calavera-halo 18s linear infinite;
}

@keyframes calavera-halo {
  to { transform: rotate(360deg); }
}

.creator-img {
  position: relative;
  z-index: 1;
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #1a0f25;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  display: block;
}

.creator-info h3 {
  font-family: 'Georgia', serif;
  font-size: 1.8rem;
  color: var(--purple-light);
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: none;
}

.creator-role {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
}

.creator-info p {
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text);
}

.creator-quote {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--purple-light);
  margin-top: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--purple);
  line-height: 1.6;
  opacity: 0.85;
}

.creator-signature {
  display: block;
  margin-top: 8px;
  font-family: 'Bradley Hand ITC', 'Bradley Hand', cursive;
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
  font-size: 1.2rem;
}

@media (max-width: 900px) {
  .creator-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ---- COLOFON ---- */
.colofon {
  background: var(--dark);
  border-top: 1px solid rgba(183,105,201,0.1);
}

.colofon-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.colofon-block h3 {
  font-family: 'Bone', 'Creepster', cursive;
  font-size: 1.2rem;
  color: var(--purple-light);
  margin-bottom: 12px;
  text-transform: lowercase;
}

.colofon-block p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .colofon-content {
    grid-template-columns: 1fr;
  }
}

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(183,105,201,0.15);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-info h2 {
  font-family: 'Bone', 'Creepster', cursive;
  font-size: 1.8rem;
  color: var(--purple);
  margin-bottom: 12px;
  text-transform: lowercase;
}

.footer-info p {
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-name {
  color: var(--text) !important;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 2px !important;
}

.contact-role {
  color: var(--purple-light) !important;
  font-style: italic;
  margin-bottom: 16px !important;
}

.footer-quote {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--purple-light);
  margin-top: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--purple);
  line-height: 1.6;
  opacity: 0.85;
}

.footer-email {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.footer-email:hover {
  color: var(--purple-light);
}

.footer-social h3 {
  font-family: 'Georgia', serif;
  font-size: 1.3rem;
  color: var(--purple-light);
  margin-bottom: 16px;
  text-transform: lowercase;
}

.social-link {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(183,105,201,0.15);
  border: 1px solid var(--purple);
  color: var(--text);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--purple);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(183,105,201,0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-ip {
  margin-top: 4px;
  font-size: 0.75rem !important;
  opacity: 0.6;
}

/* ---- PRIVACY ---- */
.privacy-content {
  max-width: 800px;
  margin: 40px auto 0;
}

.privacy-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-light);
  margin-top: 28px;
  margin-bottom: 8px;
}

.privacy-content p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 8px;
}

.privacy-content ul {
  list-style: none;
  margin-bottom: 12px;
}

.privacy-content ul li {
  padding: 3px 0 3px 20px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.privacy-content ul li::before {
  content: '\2726';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.privacy-date {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .book-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .book-cta {
    justify-content: center;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13,10,18,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  .creator-img {
    width: 180px;
    height: 180px;
  }
  .creator-photo {
    width: 212px;
    height: 212px;
  }

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

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

  .char-card {
    height: 280px;
  }

  .book-flip-inner {
    width: 220px;
    height: 314px;
  }

  .book-flip .book-img {
    width: 220px;
    height: 314px;
  }

  .hero-logo {
    width: min(360px, 80vw);
  }

  .section {
    padding: 64px 0;
  }

  .book-img {
    width: 220px;
  }
}

/* ---- PILLAR LINK (Business Case card) ---- */
a.pillar-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.pillar-link:hover {
  border-color: var(--gold);
}

.investor-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---- INVESTOR PAGE ---- */
.investor-gate {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: radial-gradient(ellipse at top, var(--purple-deep) 0%, var(--dark) 70%);
}

.investor-gate .gate-logo {
  width: 160px;
  margin-bottom: 32px;
  filter: drop-shadow(0 2px 16px rgba(183,105,201,0.3));
}

.investor-gate h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2rem;
  color: var(--purple-light);
  margin-bottom: 8px;
  text-align: center;
}

.investor-gate .gate-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
  text-align: center;
}

.gate-form {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.gate-form input[type="password"] {
  padding: 12px 20px;
  font-size: 1rem;
  border: 1px solid rgba(183,105,201,0.3);
  border-radius: 8px;
  background: rgba(183,105,201,0.08);
  color: var(--text);
  outline: none;
  width: 260px;
  transition: border-color 0.3s;
}

.gate-form input[type="password"]:focus {
  border-color: var(--gold);
}

.gate-form button {
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  background: var(--purple);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.gate-form button:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
}

.gate-error {
  color: #e74c3c;
  margin-top: 16px;
  font-size: 0.9rem;
  display: none;
}

/* ---- INVESTOR CONTENT ---- */
.investor-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.investor-content .watermark {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0.6;
}

.investor-content h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.2rem;
  color: var(--purple-light);
  text-align: center;
  margin-bottom: 8px;
}

.investor-content .bc-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 48px;
}

.bc-section {
  margin-bottom: 48px;
}

.bc-section h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.bc-section .bc-lead {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 20px;
}

.bc-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.bc-table thead th {
  background: rgba(183,105,201,0.2);
  color: var(--purple-light);
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid rgba(183,105,201,0.3);
}

.bc-table thead th.num {
  text-align: right;
}

.bc-table tbody td {
  padding: 8px 12px;
  border-bottom: 1px solid rgba(183,105,201,0.1);
  color: var(--text);
}

.bc-table tbody td.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.bc-table tbody tr:hover {
  background: rgba(183,105,201,0.06);
}

.bc-table tbody tr.total-row td {
  font-weight: 700;
  color: var(--gold);
  border-top: 2px solid var(--gold);
}

.bc-table tbody tr.highlight-row td {
  font-weight: 700;
  color: #00cc00;
  background: rgba(0,204,0,0.06);
}

.bc-callout {
  background: rgba(0,180,80,0.08);
  border: 1px solid rgba(0,180,80,0.25);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  margin: 24px 0;
}

.bc-callout strong {
  color: #00cc66;
  font-size: 1.05rem;
}

.bc-callout .bc-callout-sub {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 8px;
}

.bc-note {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 8px;
}

/* ---- ECOSYSTEM DIAGRAM ---- */
.eco-diagram {
  position: relative;
  width: 820px;
  max-width: 100%;
  height: 560px;
  margin: 0 auto 16px;
}

.eco-center {
  position: absolute;
  top: 50%;
  left: calc(160px + 250px);
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow: hidden;
}

.eco-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.eco-svg {
  display: none;
}

.eco-center-label {
  position: absolute;
  bottom: 95px;
  left: calc(160px + 250px);
  transform: translateX(-50%);
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  z-index: 3;
  letter-spacing: 1px;
}

.eco-node {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  z-index: 2;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.eco-node:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.eco-node span {
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.85;
}

/* 7 nodes evenly spaced around center */
/* 7 nodes in circle — center 410/280, radius 210px, node 110px */
.eco-node.concept { background: #8B45A6; top: 15px;  left: 355px; }
.eco-node.boek    { background: #8B5E3C; top: 94px;  left: 519px; }
.eco-node.film    { background: #4CB8A0; top: 271px; left: 559px; }
.eco-node.gaming  { background: #7B3F8D; top: 414px; left: 446px; }
.eco-node.retail  { background: #D94F8C; top: 414px; left: 263px; }
.eco-node.horeca  { background: #5DAE5D; top: 271px; left: 150px; }
.eco-node.leisure { background: #E8C840; top: 94px;  left: 190px; }

.eco-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 2px;
  background: rgba(183,105,201,0.3);
  transform-origin: 0 50%;
  z-index: 1;
}

.eco-tagline {
  text-align: center;
  font-family: Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.eco-label {
  position: absolute;
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.4;
  z-index: 3;
  pointer-events: none;
  max-width: 200px;
}

.eco-label.label-concept {
  top: 10px;
  left: calc(160px + 500px + 10px);
  max-width: 155px;
  font-size: 0.55rem;
  line-height: 1.5;
  color: rgba(183,105,201,0.7);
}

.eco-label.label-boek {
  top: 80px;
  left: calc(160px + 500px + 10px);
  text-align: left;
}

.eco-label.label-film {
  top: 230px;
  left: calc(160px + 550px);
  text-align: left;
}

.eco-label.label-gaming {
  top: 420px;
  left: calc(160px + 480px);
  text-align: left;
}

.eco-label.label-retail {
  bottom: 30px;
  left: calc(160px + 310px);
  text-align: left;
}

.eco-label.label-horeca {
  bottom: 100px;
  left: 30px;
  text-align: right;
  max-width: 150px;
}

.eco-label.label-leisure {
  top: 100px;
  left: 0;
  text-align: right;
  max-width: 150px;
}

/* ---- CONCEPT SECTIE ---- */
.concept-header {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.concept-text {
  flex: 1;
}

.concept-title {
  font-family: Georgia, serif;
  font-size: 2rem;
  color: var(--purple-light);
  border-left: 5px solid var(--purple);
  padding-left: 16px;
  margin-bottom: 24px;
}

.concept-name {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  color: var(--purple-light);
  font-weight: 700;
  margin-bottom: 16px;
}

.concept-role {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.concept-bio {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
}

.concept-photo {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--purple);
  box-shadow: 0 4px 20px rgba(183,105,201,0.3);
}

.concept-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-boxes {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-box {
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  padding: 24px 16px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
}

.stat-number {
  font-family: Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.75rem;
  line-height: 1.4;
  opacity: 0.9;
}

@media (max-width: 700px) {
  .concept-header {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  .concept-title {
    border-left: none;
    padding-left: 0;
  }
  .concept-photo {
    width: 150px;
    height: 150px;
  }
  .stat-boxes {
    gap: 10px;
  }
  .stat-box {
    min-width: 100px;
    padding: 16px 10px;
  }
  .stat-number {
    font-size: 1.6rem;
  }
}

/* ---- BEREIKT SECTIE ---- */
.bc-achievement-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.bc-achievement-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(183,105,201,0.08);
}

.bc-achievement-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #00cc66;
  font-weight: 700;
}

.bc-partners-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.85rem;
}

.bc-partners-table thead th {
  background: rgba(183,105,201,0.2);
  color: var(--purple-light);
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid rgba(183,105,201,0.3);
}

.bc-partners-table tbody td {
  padding: 8px 12px;
  border-bottom: 1px solid rgba(183,105,201,0.1);
  color: var(--text);
}

.bc-partners-table tbody tr:hover {
  background: rgba(183,105,201,0.06);
}

@media (max-width: 600px) {
  .eco-diagram {
    width: 320px;
    height: 320px;
  }
  .eco-center { width: 90px; height: 90px; font-size: 0.7rem; }
  .eco-node { width: 80px; height: 80px; font-size: 0.6rem; }
  .eco-node span { font-size: 0.5rem; }
  .eco-node.concept { top: 2px; }
  .eco-node.boek { top: 45px; right: 2px; }
  .eco-node.film { top: 145px; right: 2px; }
  .eco-node.gaming { bottom: 45px; right: 2px; }
  .eco-node.retail { bottom: 2px; }
  .eco-node.horeca { bottom: 45px; left: 2px; }
  .eco-node.leisure { top: 145px; left: 2px; }
}

/* ---- MERCHANDISE SHOWCASE ---- */
.merch-showcase {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}

.merch-showcase .merch-label {
  font-family: Georgia, serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  text-align: center;
}

.merch-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.merch-row:last-child {
  margin-bottom: 0;
}

.merch-item {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.merch-item:hover {
  transform: scale(1.05);
}

.merch-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.merch-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 150px;
}

.merch-cat-img {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s;
  overflow: hidden;
}

.merch-cat-img:hover {
  transform: scale(2);
  transition: transform 0.3s ease;
  z-index: 10;
  position: relative;
}

.merch-cat-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.merch-cat-name {
  font-family: Georgia, serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-light);
  text-align: center;
}

@media (max-width: 600px) {
  .merch-item {
    width: 90px;
    height: 90px;
  }
  .merch-row {
    gap: 10px;
  }
}

.investor-footer {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
  opacity: 0.5;
}

@media (max-width: 600px) {
  .bc-table {
    font-size: 0.75rem;
  }
  .bc-table thead th,
  .bc-table tbody td {
    padding: 6px 8px;
  }
  .investor-content h1 {
    font-size: 1.6rem;
  }
  .bc-section h2 {
    font-size: 1.2rem;
  }
}
