/* ==========================================================================
   XXX Collective — Premium Brand Presentation Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Brand Color Tokens & Variables
   -------------------------------------------------------------------------- */
:root {
  /* Foundations */
  --color-base: #14161A;        /* Deep ink canvas */
  --color-anchor: #23262B;      /* Card and elevated surface background */
  --color-warm-white: #F5F2EC;  /* Clean high-contrast body text */
  --color-white-muted: rgba(245, 242, 236, 0.75);
  --color-white-dim: rgba(245, 242, 236, 0.45);

  /* Rose-Gold Accent System */
  --color-rose-gold: #E8B574;
  --color-champagne: #F5D9B8;
  --color-bronze: #C89060;

  /* Blush Accent System */
  --color-blush: #EDB7B5;
  --color-soft-blush: #F5D2D0;
  --color-mauve-rose: #C68A88;

  /* Pixlr & Designs.ai Handshake Lineage */
  --color-pixlr-cyan: #3EBBDF;
  --color-pixlr-purple: #C415F9;
  --color-dsai-indigo: #4519EF;

  /* Font Families */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Open Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout Constants */
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  /* Transition Constants */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* --------------------------------------------------------------------------
   1. Reset & Global Setup
   -------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-base);
  color: var(--color-warm-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-height);
}

/* Ambient Radial Gradients Drifting & Spark Particles */
.tech-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(62, 187, 223, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(62, 187, 223, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
  transition: var(--transition-smooth);
}

body.voice-institutional .tech-grid-overlay {
  background-image: linear-gradient(rgba(245, 242, 236, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(245, 242, 236, 0.05) 1px, transparent 1px);
  opacity: 0.6;
}

body.voice-event .tech-grid-overlay {
  background-image: linear-gradient(rgba(196, 21, 249, 0.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(196, 21, 249, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.8;
}

.glow-bg {
  position: fixed;
  border-radius: 50%;
  filter: blur(130px);
  z-index: -2;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: screen;
  transition: var(--transition-smooth);
}

.glow-purple {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 21, 249, 0.25) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  animation: driftRight 25s infinite alternate ease-in-out;
}

.glow-cyan {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(62, 187, 223, 0.25) 0%, transparent 70%);
  bottom: -250px;
  left: -250px;
  animation: driftLeft 30s infinite alternate ease-in-out;
}

.glow-rose {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 181, 116, 0.2) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseCenter 20s infinite ease-in-out;
}

/* Voice-specific dynamic background accent morphs */
body.voice-institutional .glow-purple { background: radial-gradient(circle, rgba(69, 25, 239, 0.18) 0%, transparent 70%); }
body.voice-institutional .glow-cyan { background: radial-gradient(circle, rgba(62, 187, 223, 0.15) 0%, transparent 70%); }
body.voice-institutional .glow-rose { background: radial-gradient(circle, rgba(245, 242, 236, 0.15) 0%, transparent 70%); filter: blur(100px); }

body.voice-event .glow-purple { background: radial-gradient(circle, rgba(196, 21, 249, 0.38) 0%, transparent 70%); filter: blur(150px); }
body.voice-event .glow-cyan { background: radial-gradient(circle, rgba(62, 187, 223, 0.38) 0%, transparent 70%); filter: blur(150px); }
body.voice-event .glow-rose { background: radial-gradient(circle, rgba(232, 181, 116, 0.3) 0%, transparent 70%); }

.particle-sparks {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.spark {
  position: absolute;
  bottom: -20px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-rose-gold);
  box-shadow: 0 0 10px var(--color-rose-gold), 0 0 20px var(--color-rose-gold);
  opacity: 0;
  animation: riseAndFade 14s infinite linear;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

body.voice-institutional .spark {
  background: var(--color-warm-white);
  box-shadow: 0 0 8px var(--color-warm-white), 0 0 15px var(--color-warm-white);
}

body.voice-event .spark {
  background: var(--color-pixlr-cyan);
  box-shadow: 0 0 10px var(--color-pixlr-cyan), 0 0 20px var(--color-pixlr-cyan);
  width: 6px;
  height: 6px;
}

@keyframes riseAndFade {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 0.6; }
  85% { opacity: 0.6; }
  100% { transform: translateY(-105vh) translateX(60px) scale(0.5); opacity: 0; }
}

@keyframes driftRight {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-80px, 120px) scale(1.15); }
}

@keyframes driftLeft {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(120px, -80px) scale(1.1); }
}

@keyframes pulseCenter {
  0%, 100% { opacity: 0.05; transform: translate(-50%, -50%) scale(0.9); }
  50% { opacity: 0.12; transform: translate(-50%, -50%) scale(1.05); }
}

/* Cinematic Antigravity Floating Animations */
.float-slow {
  animation: floatSlow 10s ease-in-out infinite;
}

.float-delayed {
  animation: floatSlow 10s ease-in-out infinite;
  animation-delay: 2.5s;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(0.5deg); }
}

/* --------------------------------------------------------------------------
   2. Typography & Core Styling
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

p {
  color: var(--color-white-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Accent & Text Glow Utilities */
.eyebrow-accent {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.text-glow-rose { text-shadow: 0 0 15px rgba(237, 183, 181, 0.4); color: var(--color-blush); }
.text-glow-cyan { text-shadow: 0 0 15px rgba(62, 187, 223, 0.4); color: var(--color-pixlr-cyan); }
.text-glow-purple { text-shadow: 0 0 15px rgba(196, 21, 249, 0.4); color: var(--color-pixlr-purple); }

.accent-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

/* --------------------------------------------------------------------------
   3. Header Navigation & Dynamic Voice Switcher
   -------------------------------------------------------------------------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(20, 22, 26, 0.75);
  backdrop-filter: blur(15px) saturate(180%);
  border-bottom: 1px solid rgba(245, 242, 236, 0.06);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.brand-identity {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.logo-display {
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--color-warm-white);
  transition: var(--transition-smooth);
}

.logo-display span {
  color: var(--color-rose-gold);
}

.brand-lineage-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}

.family-pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-pixlr-cyan);
  box-shadow: 0 0 8px var(--color-pixlr-cyan);
}

.badge-text {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--color-white-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Voice Switcher Control */
.voice-switcher-panel {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.switcher-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--color-white-dim);
}

.switcher-options {
  position: relative;
  display: flex;
  background: rgba(35, 38, 43, 0.6);
  border: 1px solid rgba(245, 242, 236, 0.08);
  padding: 4px;
  border-radius: 30px;
  gap: 2px;
}

.switcher-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  width: 155px; /* Managed dynamically via Javascript */
  border-radius: 30px;
  background: rgba(232, 181, 116, 0.15);
  border: 1px solid var(--color-rose-gold);
  box-shadow: 0 0 15px rgba(232, 181, 116, 0.25);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1;
}

.switcher-btn {
  position: relative;
  background: transparent;
  border: none;
  color: var(--color-white-dim);
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.switcher-btn:hover {
  color: var(--color-warm-white);
}

.switcher-btn.active {
  color: var(--color-warm-white);
  text-shadow: 0 0 10px rgba(245, 242, 236, 0.3);
}

/* --------------------------------------------------------------------------
   4. Buttons & Base Layout Components
   -------------------------------------------------------------------------- */
.content-wrapper {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--color-rose-gold);
  color: #14161A;
  border: 1px solid var(--color-rose-gold);
  box-shadow: 0 4px 20px rgba(232, 181, 116, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 181, 116, 0.4);
  background: var(--color-champagne);
}

.btn-secondary {
  background: transparent;
  color: var(--color-warm-white);
  border: 1px solid rgba(245, 242, 236, 0.15);
}

.btn-secondary:hover {
  border-color: var(--color-blush);
  box-shadow: 0 0 15px rgba(237, 183, 181, 0.15);
  transform: translateY(-2px);
}

/* Section Templates */
.section-header {
  max-width: 750px;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: var(--color-warm-white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-white-muted);
}

/* High Fidelity Glass Cards & Gradient Borders */
.border-gradient-glow {
  position: relative;
  background: rgba(35, 38, 43, 0.45);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(245, 242, 236, 0.08);
  border-radius: var(--border-radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Lineage accent stripes */
.family-accent-strip {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, 
    var(--color-rose-gold) 0%, 
    var(--color-blush) 25%, 
    var(--color-pixlr-cyan) 50%, 
    var(--color-pixlr-purple) 75%, 
    var(--color-dsai-indigo) 100%
  );
}

/* --------------------------------------------------------------------------
   5. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  min-height: calc(80vh - var(--header-height));
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: 3.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-description {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
}

/* Hero Magazine Mockup Card */
.magazine-cover-panel {
  padding: 1rem;
}

.hero-magazine-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(245, 242, 236, 0.08);
}

.hero-magazine-img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-smooth);
}

.hero-magazine-wrap:hover .hero-magazine-img {
  transform: scale(1.03);
}

.magazine-overlay-tag {
  position: absolute;
  bottom: 1.2rem;
  right: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  background: rgba(20, 22, 26, 0.85);
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid rgba(245, 242, 236, 0.1);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   6. The Premise: The Third Path
   -------------------------------------------------------------------------- */
.premise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 3rem;
  gap: 3.5rem;
}

.premise-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.pane-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.premise-col-title {
  font-size: 2.2rem;
  color: var(--color-warm-white);
  letter-spacing: -0.01em;
}

.premise-col-text {
  font-size: 1.05rem;
  color: var(--color-white-muted);
  line-height: 1.7;
}

.premise-divider-left {
  border-left: 1px dashed rgba(245, 242, 236, 0.1);
  padding-left: 3.5rem;
}

@media (max-width: 900px) {
  .premise-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2rem;
  }
  .premise-divider-left {
    border-left: none;
    border-top: 1px dashed rgba(245, 242, 236, 0.1);
    padding-left: 0;
    padding-top: 3rem;
  }
}

/* --------------------------------------------------------------------------
   7. Who We Are & Ethos Section
   -------------------------------------------------------------------------- */
.ethos-split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.ethos-visual {
  height: 480px;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(245, 242, 236, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.ethos-key-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  filter: grayscale(15%) brightness(80%);
  transition: var(--transition-smooth);
  z-index: 1;
}

.ethos-visual:hover .ethos-key-img {
  transform: scale(1.05);
  opacity: 0.85;
  filter: grayscale(0%) brightness(100%);
}

.ethos-wordmark-container {
  text-align: center;
  z-index: 2;
  background: rgba(20, 22, 26, 0.55);
  padding: 2.2rem;
  border-radius: var(--border-radius-md);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 242, 236, 0.08);
}

.watermark-display {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(245, 242, 236, 0.03);
  text-shadow: 0 0 40px rgba(245, 242, 236, 0.01);
  line-height: 1;
  margin-bottom: 0.5rem;
  animation: pulseScale 10s infinite ease-in-out;
}

.watermark-sub {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-rose-gold);
  opacity: 0.8;
}

@keyframes pulseScale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.ethos-text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.philosophy-frame-selector {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 1rem;
}

.mono-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-white-dim);
  letter-spacing: 0.08em;
}

.frame-buttons {
  display: flex;
  gap: 10px;
}

.frame-toggle-btn {
  background: rgba(20, 22, 26, 0.5);
  border: 1px solid rgba(245, 242, 236, 0.1);
  color: var(--color-white-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.frame-toggle-btn:hover, .frame-toggle-btn.active {
  border-color: var(--color-rose-gold);
  color: var(--color-rose-gold);
  background: rgba(232, 181, 116, 0.05);
}

.philosophy-core-box {
  background: rgba(20, 22, 26, 0.4);
  border-left: 2px solid var(--color-blush);
  padding: 1.2rem;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  margin: 0.5rem 0;
  min-height: 100px;
  display: flex;
  align-items: center;
}

.philosophy-quote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-soft-blush);
  transition: opacity 0.3s ease;
}

.ethos-body {
  font-size: 1.05rem;
  color: var(--color-white-muted);
  line-height: 1.7;
}

@media (max-width: 1000px) {
  .ethos-split-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ethos-visual {
    height: 300px;
  }
  .ethos-text {
    padding: 2rem;
  }
}

/* --------------------------------------------------------------------------
   8. Who This Is For targeting
   -------------------------------------------------------------------------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.audience-card {
  background: rgba(35, 38, 43, 0.25);
  border: 1px solid rgba(245, 242, 236, 0.05);
  border-radius: var(--border-radius-md);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.audience-card:hover {
  background: rgba(35, 38, 43, 0.45);
  transform: translateY(-3px);
  border-color: rgba(232, 181, 116, 0.15);
}

.audience-mono-lbl {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-rose-gold);
  letter-spacing: 0.05em;
}

.audience-card-title {
  font-size: 1.5rem;
  color: var(--color-warm-white);
  letter-spacing: -0.01em;
}

.audience-card-desc {
  font-size: 0.95rem;
  color: var(--color-white-muted);
  line-height: 1.6;
}

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

/* --------------------------------------------------------------------------
   9. The 6 Pedagogical Pillars Grid (COMPLETELY BALANCED ALIGNMENT!)
   -------------------------------------------------------------------------- */
.beliefs-section {
  display: flex;
  flex-direction: column;
}

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

.belief-card {
  background: rgba(35, 38, 43, 0.35);
  border: 1px solid rgba(245, 242, 236, 0.06);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%; /* Rigid structure for grid heights */
  justify-content: flex-start;
  gap: 1rem;
}

.card-accent-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: var(--transition-smooth);
}

.belief-card:hover {
  background: rgba(35, 38, 43, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(232, 181, 116, 0.18);
}

.belief-card:hover .card-accent-strip {
  background: linear-gradient(90deg, 
    var(--color-rose-gold), 
    var(--color-blush), 
    var(--color-pixlr-cyan), 
    var(--color-pixlr-purple)
  );
}

.belief-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(245, 242, 236, 0.08);
  line-height: 1;
  font-weight: 300;
  transition: var(--transition-smooth);
}

.belief-card:hover .belief-num {
  color: rgba(232, 181, 116, 0.25);
  transform: scale(1.1) translateX(5px);
}

.belief-title {
  font-size: 1.4rem;
  color: var(--color-warm-white);
  letter-spacing: -0.01em;
}

.belief-desc {
  font-size: 0.95rem;
  color: var(--color-white-muted);
  line-height: 1.6;
  margin-top: auto; /* Push down to line up perfectly */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (max-width: 1100px) {
  .beliefs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .beliefs-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   10. Concentric Community Model & Timeline
   -------------------------------------------------------------------------- */
.phases-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding: 3rem 2.2rem;
  position: relative;
  overflow: hidden;
}

.timeline-accent-line {
  position: absolute;
  top: 4.8rem;
  left: 2rem;
  width: calc(100% - 4rem);
  height: 1px;
  background: linear-gradient(90deg, 
    rgba(232, 181, 116, 0.1), 
    rgba(232, 181, 116, 0.5) 50%, 
    rgba(232, 181, 116, 0.1)
  );
  z-index: 0;
}

.phase-node {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  gap: 1rem;
}

.phase-marker {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--color-base);
  border: 1px solid rgba(245, 242, 236, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-rose-gold);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.phase-node:hover .phase-marker {
  border-color: var(--color-rose-gold);
  box-shadow: 0 0 20px rgba(232, 181, 116, 0.3);
  transform: scale(1.05);
}

.phase-title {
  font-size: 1.35rem;
  color: var(--color-warm-white);
  letter-spacing: -0.01em;
}

.phase-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

.phase-text {
  font-size: 0.9rem;
  color: var(--color-white-muted);
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .phases-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .timeline-accent-line {
    display: none;
  }
}

@media (max-width: 700px) {
  .phases-timeline {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   11. Rebrand Naming Sandbox Workshop
   -------------------------------------------------------------------------- */
.naming-section {
  width: 100%;
}

.naming-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem;
  align-items: center;
}

.naming-text-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.naming-intro {
  font-size: 1.05rem;
  color: var(--color-white-muted);
}

.curated-names-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.group-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-white-dim);
  letter-spacing: 0.05em;
}

.names-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.name-candidate-btn {
  background: rgba(20, 22, 26, 0.5);
  border: 1px solid rgba(245, 242, 236, 0.1);
  color: var(--color-white-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.name-candidate-btn:hover, .name-candidate-btn.active {
  border-color: var(--color-rose-gold);
  color: var(--color-rose-gold);
  background: rgba(232, 181, 116, 0.05);
  box-shadow: 0 0 10px rgba(232, 181, 116, 0.15);
}

.custom-name-input-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(245, 242, 236, 0.06);
  padding-top: 1.5rem;
}

.input-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-rose-gold);
  letter-spacing: 0.05em;
}

#custom-name-input {
  width: 100%;
  background: rgba(20, 22, 26, 0.8);
  border: 1px solid rgba(245, 242, 236, 0.15);
  border-radius: var(--border-radius-sm);
  color: var(--color-warm-white);
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

#custom-name-input:focus {
  border-color: var(--color-blush);
  box-shadow: 0 0 12px rgba(237, 183, 181, 0.2);
}

/* Naming Canvas Visual Live Preview */
.naming-visual-preview {
  display: flex;
  justify-content: center;
  align-items: center;
}

.canvas-mockup {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at top right, rgba(35, 38, 43, 0.8), rgba(20, 22, 26, 0.95));
  border: 1px solid rgba(245, 242, 236, 0.1);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.canvas-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 181, 116, 0.12), transparent 70%);
  pointer-events: none;
}

.canvas-header-mono {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--color-white-dim);
  letter-spacing: 0.1em;
}

.brand-showcase-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  text-align: center;
}

.preview-brand-logo {
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  color: var(--color-warm-white);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(232, 181, 116, 0.2);
  transition: var(--transition-smooth);
}

.preview-brand-logo span {
  color: var(--color-rose-gold);
}

.preview-brand-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}

.canvas-spec-notes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(245, 242, 236, 0.06);
  padding-top: 1rem;
}

.spec-note-item {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-white-dim);
}

.spec-note-item .note-val {
  color: var(--color-white-muted);
}

/* --------------------------------------------------------------------------
   12. Cyber-Editorial Trainer Pool Section
   -------------------------------------------------------------------------- */
.trainers-section {
  display: flex;
  flex-direction: column;
}

.trainers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.trainer-card {
  position: relative;
  background: var(--color-anchor);
  border: 1px solid rgba(245, 242, 236, 0.06);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition-smooth);
  z-index: 1;
}

/* Huge Watermarked Initial in Background */
.trainer-card-background-initial {
  position: absolute;
  top: -10px;
  left: 10px;
  font-family: var(--font-display);
  font-size: 11rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(245, 242, 236, 0.02);
  z-index: -1;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.trainer-card-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.trainer-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  filter: grayscale(20%) contrast(105%);
  transition: var(--transition-smooth);
}

/* Abstract CSS placeholders for Dennis & Lance */
.abstract-avatar-wrap {
  background: radial-gradient(circle at center, #1b1e22, #0d0f11);
  display: flex;
  justify-content: center;
  align-items: center;
}

.abstract-avatar-shape {
  width: 120px;
  height: 120px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.3;
  filter: blur(10px);
  animation: blobMorph 8s infinite alternate ease-in-out;
}

.shape-purple { background: var(--color-pixlr-purple); }
.shape-indigo { background: var(--color-dsai-indigo); }

.abstract-avatar-lines {
  position: absolute;
  width: 80%;
  height: 80%;
  border: 1px solid rgba(245, 242, 236, 0.05);
  border-radius: 50%;
}

.abstract-avatar-lines::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  border: 1px solid rgba(245, 242, 236, 0.08);
  border-radius: 50%;
  border-top-color: transparent;
  transform: rotate(45deg);
}

.grid-pattern {
  background-image: radial-gradient(rgba(245, 242, 236, 0.05) 1px, transparent 1px);
  background-size: 15px 15px;
}

@keyframes blobMorph {
  0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: rotate(0deg); }
  100% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; transform: rotate(180deg); }
}

.trainer-card-info {
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.trainer-mono-city {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--color-rose-gold);
  margin-bottom: 4px;
}

.trainer-card-name {
  font-size: 1.8rem;
  margin-bottom: 2px;
  color: var(--color-warm-white);
  text-shadow: 0 2px 10px rgba(20, 22, 26, 0.9);
}

.trainer-card-role {
  font-size: 0.8rem;
  color: var(--color-white-muted);
  text-shadow: 0 1px 5px rgba(20, 22, 26, 0.9);
}

/* Atmospheric Glowing Overlays per trainer secondary tint */
.trainer-card-glow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 22, 26, 0.95) 100%);
  transition: var(--transition-smooth);
}

.trainer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 242, 236, 0.15);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.trainer-card:hover .trainer-card-img {
  transform: scale(1.05);
  opacity: 0.85;
  filter: grayscale(0%) contrast(100%);
}

.trainer-card:hover .trainer-card-background-initial {
  color: rgba(232, 181, 116, 0.05);
}

/* Neon halos around individual cards */
.trainer-card.glow-sharon:hover {
  box-shadow: 0 0 40px rgba(237, 183, 181, 0.25);
  border-color: var(--color-blush);
}
.trainer-card.glow-chrissie:hover {
  box-shadow: 0 0 40px rgba(62, 187, 223, 0.22);
  border-color: var(--color-pixlr-cyan);
}
.trainer-card.glow-dennis:hover {
  box-shadow: 0 0 40px rgba(196, 21, 249, 0.18);
  border-color: var(--color-pixlr-purple);
}
.trainer-card.glow-lance:hover {
  box-shadow: 0 0 40px rgba(69, 25, 239, 0.24);
  border-color: var(--color-dsai-indigo);
}

/* --------------------------------------------------------------------------
   13. Editorial Cover System & Showcase
   -------------------------------------------------------------------------- */
.magazine-section {
  width: 100%;
}

.magazine-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.magazine-image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.magazine-cover-img {
  width: 100%;
  max-width: 440px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(245, 242, 236, 0.1);
  transition: var(--transition-smooth);
}

.magazine-cover-img:hover {
  transform: scale(1.02);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8);
}

.magazine-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.magazine-title {
  font-size: 3rem;
  color: var(--color-warm-white);
}

.magazine-desc {
  font-size: 1.1rem;
  color: var(--color-white-muted);
  line-height: 1.7;
}

.magazine-quote-box {
  border-left: 2px solid var(--color-blush);
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.magazine-quote-box blockquote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-soft-blush);
  margin-bottom: 0.5rem;
}

.magazine-quote-box cite {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-white-dim);
  font-style: normal;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   14. Cyber-Editorial Detailed Modals
   -------------------------------------------------------------------------- */
.trainer-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 11, 13, 0.8);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trainer-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.trainer-modal-container {
  width: 90%;
  max-width: 960px;
  max-height: 90vh;
  background: rgba(35, 38, 43, 0.85);
  border: 1px solid rgba(245, 242, 236, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  position: relative;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.trainer-modal-backdrop.active .trainer-modal-container {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--color-white-muted);
  font-size: 2.2rem;
  cursor: pointer;
  transition: var(--transition-fast);
  line-height: 1;
}

.modal-close-btn:hover {
  color: var(--color-rose-gold);
}

.modal-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.modal-visual-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.modal-halo-avatar-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 1.5rem;
}

.modal-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(245, 242, 236, 0.15);
  position: relative;
  z-index: 2;
}

.modal-avatar-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, #1b1e22, #0d0f11);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid rgba(245, 242, 236, 0.1);
  z-index: 1;
}

.placeholder-initial {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(245, 242, 236, 0.1);
}

.modal-avatar-halo {
  position: absolute;
  top: -8px;
  left: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.4;
  z-index: 0;
  transition: var(--transition-smooth);
}

.modal-name {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  color: var(--color-warm-white);
}

.modal-meta-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modal-city-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-rose-gold);
  letter-spacing: 0.1em;
}

.modal-role-tag {
  font-size: 0.85rem;
  color: var(--color-white-muted);
}

.modal-details-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Stat Cards */
.modal-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.modal-stats-grid .stat-card {
  background: rgba(20, 22, 26, 0.5);
  border: 1px solid rgba(245, 242, 236, 0.06);
  border-radius: var(--border-radius-sm);
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-rose-gold);
}

.stat-lbl {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--color-white-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modal-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-section-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-white-dim);
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(245, 242, 236, 0.05);
  padding-bottom: 4px;
}

.specialties-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spec-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--color-blush);
  background: rgba(237, 183, 181, 0.05);
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid rgba(237, 183, 181, 0.1);
}

.modal-bio-text {
  font-size: 0.95rem;
  color: var(--color-white-muted);
  line-height: 1.6;
}

.courses-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.courses-list li {
  font-size: 0.9rem;
  color: var(--color-warm-white);
  position: relative;
  padding-left: 15px;
}

.courses-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-rose-gold);
  font-size: 0.7rem;
}

.philosophy-highlight {
  background: rgba(232, 181, 116, 0.03);
  border: 1px solid rgba(232, 181, 116, 0.08);
  border-radius: var(--border-radius-sm);
  padding: 1.2rem;
}

.modal-philosophy-text {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--color-champagne);
}

/* --------------------------------------------------------------------------
   15. Footer & Brand Guardrails
   -------------------------------------------------------------------------- */
.main-footer {
  background: #0d0f11;
  border-top: 1px solid rgba(245, 242, 236, 0.05);
  padding: 5rem 0 3rem 0;
}

.footer-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  font-size: 1.8rem;
  color: var(--color-warm-white);
}

.footer-brand-statement {
  font-size: 0.95rem;
  max-width: 440px;
}

.footer-lineage {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-mono-lbl {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--color-white-dim);
}

.footer-lineage-text {
  font-size: 0.9rem;
  color: var(--color-white-muted);
}

.footer-accent-strip-container {
  margin-top: 1rem;
}

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(245, 242, 236, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.copyright {
  font-size: 0.8rem;
  color: var(--color-white-dim);
}

.footer-tests {
  display: flex;
  gap: 10px;
}

.test-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  background: rgba(245, 242, 236, 0.03);
  border: 1px solid rgba(245, 242, 236, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--color-white-dim);
}

/* --------------------------------------------------------------------------
   16. Dynamic Voice Transition Effects & CSS Animation
   -------------------------------------------------------------------------- */
/* Body State Specific Accent Shifts */
body.voice-community {
  --active-voice-color: var(--color-rose-gold);
}

body.voice-institutional {
  --active-voice-color: var(--color-warm-white);
}

body.voice-event {
  --active-voice-color: var(--color-pixlr-cyan);
}

/* Animated state updates for voice-text elements */
.voice-text {
  transition: var(--transition-smooth);
}

.voice-text.morphing {
  opacity: 0;
  transform: translateY(-5px) scale(0.99);
}

/* --------------------------------------------------------------------------
   17. Responsive Layout Adjustments (Mobile Friendly)
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-interactive {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .naming-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 2rem;
  }
  .magazine-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .magazine-image-wrap {
    order: 2;
  }
  .magazine-text-wrap {
    order: 1;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  body {
    padding-top: calc(var(--header-height) + 40px); /* extra space for header wrap */
  }
  .main-header {
    height: auto;
    padding: 12px 0;
  }
  .header-container {
    flex-direction: column;
    gap: 12px;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .beliefs-grid {
    grid-template-columns: 1fr;
  }
  .modal-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .switcher-options {
    flex-wrap: wrap;
    justify-content: center;
  }
  .switcher-btn {
    padding: 6px 12px;
    font-size: 0.7rem;
  }
}

/* --------------------------------------------------------------------------
   18. Presentation Pitch Deck Scroll Section (Vibrant Web3 Evolution)
   -------------------------------------------------------------------------- */
body.voice-slides .hero-section,
body.voice-slides .premise-section,
body.voice-slides .ethos-section,
body.voice-slides .audience-section,
body.voice-slides .beliefs-section,
body.voice-slides .community-section,
body.voice-slides .trainers-section,
body.voice-slides .naming-section,
body.voice-slides .magazine-section,
body.voice-slides .lineage-accent-band,
body.voice-slides .showcase-section,
body.voice-showcase .hero-section,
body.voice-showcase .premise-section,
body.voice-showcase .ethos-section,
body.voice-showcase .audience-section,
body.voice-showcase .beliefs-section,
body.voice-showcase .community-section,
body.voice-showcase .trainers-section,
body.voice-showcase .naming-section,
body.voice-showcase .magazine-section,
body.voice-showcase .lineage-accent-band,
body.voice-showcase .presentation-deck-section {
  display: none !important;
}

.presentation-deck-section {
  display: none;
  flex-direction: column;
  gap: 5rem;
}

body.voice-slides .presentation-deck-section {
  display: flex;
  animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.deck-header {
  max-width: 800px;
  margin-bottom: 2rem;
  border-left: 3px solid var(--color-rose-gold);
  padding-left: 2rem;
  text-shadow: 0 0 20px rgba(232, 181, 116, 0.15);
}

.deck-main-title {
  font-size: 3.4rem;
  color: var(--color-warm-white);
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.deck-subtitle {
  font-size: 1.2rem;
  color: var(--color-white-muted);
}

/* Highly Vibrant Slide Cards */
.slide-card {
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

/* Individual vibrant card glow borders based on slides content */
.slide-card:nth-child(2) { border-color: rgba(62, 187, 223, 0.25); box-shadow: 0 10px 40px rgba(62, 187, 223, 0.05), inset 0 0 20px rgba(62, 187, 223, 0.02); }
.slide-card:nth-child(3) { border-color: rgba(232, 181, 116, 0.25); box-shadow: 0 10px 40px rgba(232, 181, 116, 0.05), inset 0 0 20px rgba(232, 181, 116, 0.02); }
.slide-card:nth-child(4) { border-color: rgba(237, 183, 181, 0.25); box-shadow: 0 10px 40px rgba(237, 183, 181, 0.05), inset 0 0 20px rgba(237, 183, 181, 0.02); }
.slide-card:nth-child(5) { border-color: rgba(69, 25, 239, 0.25); box-shadow: 0 10px 40px rgba(69, 25, 239, 0.05), inset 0 0 20px rgba(69, 25, 239, 0.02); }
.slide-card:nth-child(6) { border-color: rgba(62, 187, 223, 0.25); box-shadow: 0 10px 40px rgba(62, 187, 223, 0.05), inset 0 0 20px rgba(62, 187, 223, 0.02); }
.slide-card:nth-child(7) { border-color: rgba(196, 21, 249, 0.25); box-shadow: 0 10px 40px rgba(196, 21, 249, 0.05), inset 0 0 20px rgba(196, 21, 249, 0.02); }
.slide-card:nth-child(8) { 
  border: 1px solid transparent;
  background: linear-gradient(var(--color-base), var(--color-base)) padding-box,
              linear-gradient(90deg, var(--color-rose-gold), var(--color-blush), var(--color-pixlr-cyan), var(--color-pixlr-purple)) border-box;
  box-shadow: 0 15px 50px rgba(232, 181, 116, 0.08);
}

.slide-card:hover {
  transform: translateY(-4px);
  background: rgba(35, 38, 43, 0.6);
}

.slide-card:nth-child(2):hover { border-color: rgba(62, 187, 223, 0.5); box-shadow: 0 20px 60px rgba(62, 187, 223, 0.15); }
.slide-card:nth-child(3):hover { border-color: rgba(232, 181, 116, 0.5); box-shadow: 0 20px 60px rgba(232, 181, 116, 0.15); }
.slide-card:nth-child(4):hover { border-color: rgba(237, 183, 181, 0.5); box-shadow: 0 20px 60px rgba(237, 183, 181, 0.15); }
.slide-card:nth-child(5):hover { border-color: rgba(69, 25, 239, 0.5); box-shadow: 0 20px 60px rgba(69, 25, 239, 0.15); }
.slide-card:nth-child(6):hover { border-color: rgba(62, 187, 223, 0.5); box-shadow: 0 20px 60px rgba(62, 187, 223, 0.15); }
.slide-card:nth-child(7):hover { border-color: rgba(196, 21, 249, 0.5); box-shadow: 0 20px 60px rgba(196, 21, 249, 0.15); }
.slide-card:nth-child(8):hover { box-shadow: 0 20px 70px rgba(232, 181, 116, 0.2); }

.slide-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(245, 242, 236, 0.08);
  padding-bottom: 1.2rem;
  margin-bottom: 2rem;
}

.slide-number {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-rose-gold);
  letter-spacing: 0.12em;
  background: rgba(232, 181, 116, 0.06);
  border: 1px solid rgba(232, 181, 116, 0.18);
  padding: 4px 12px;
  border-radius: 20px;
  text-shadow: 0 0 10px rgba(232, 181, 116, 0.2);
}

.slide-topic {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid currentColor;
  background: rgba(245, 242, 236, 0.03);
}

/* Slide Grid layout */
.slide-content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: center;
}

.slide-narrative {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.slide-title {
  font-size: 2.5rem;
  color: var(--color-warm-white);
  letter-spacing: -0.01em;
}

/* Bold Takeaway Glowing Callouts */
.slide-bold-takeaway {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  padding: 1.8rem 2.2rem;
  border-radius: var(--border-radius-md);
  border-left: 4px solid currentColor;
  background: linear-gradient(135deg, rgba(245, 242, 236, 0.03), rgba(20, 22, 26, 0.5));
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Color coordinates for takeovers matching active themes */
.slide-card:nth-child(2) .slide-bold-takeaway { color: var(--color-pixlr-cyan); border-left-color: var(--color-pixlr-cyan); background: linear-gradient(135deg, rgba(62, 187, 223, 0.05), rgba(20, 22, 26, 0.5)); box-shadow: 0 5px 25px rgba(62, 187, 223, 0.08); }
.slide-card:nth-child(3) .slide-bold-takeaway { color: var(--color-champagne); border-left-color: var(--color-rose-gold); background: linear-gradient(135deg, rgba(232, 181, 116, 0.05), rgba(20, 22, 26, 0.5)); box-shadow: 0 5px 25px rgba(232, 181, 116, 0.08); }
.slide-card:nth-child(4) .slide-bold-takeaway { color: var(--color-soft-blush); border-left-color: var(--color-blush); background: linear-gradient(135deg, rgba(237, 183, 181, 0.05), rgba(20, 22, 26, 0.5)); box-shadow: 0 5px 25px rgba(237, 183, 181, 0.08); }
.slide-card:nth-child(5) .slide-bold-takeaway { color: var(--color-white-muted); border-left-color: var(--color-dsai-indigo); background: linear-gradient(135deg, rgba(69, 25, 239, 0.03), rgba(20, 22, 26, 0.5)); }
.slide-card:nth-child(6) .slide-bold-takeaway { color: var(--color-pixlr-cyan); border-left-color: var(--color-pixlr-cyan); background: linear-gradient(135deg, rgba(62, 187, 223, 0.05), rgba(20, 22, 26, 0.5)); box-shadow: 0 5px 25px rgba(62, 187, 223, 0.08); }
.slide-card:nth-child(7) .slide-bold-takeaway { color: var(--color-warm-white); border-left-color: var(--color-pixlr-purple); background: linear-gradient(135deg, rgba(196, 21, 249, 0.05), rgba(20, 22, 26, 0.5)); box-shadow: 0 5px 25px rgba(196, 21, 249, 0.08); }
.slide-card:nth-child(8) .slide-bold-takeaway { color: var(--color-rose-gold); border-left-color: var(--color-rose-gold); background: linear-gradient(135deg, rgba(232, 181, 116, 0.06), rgba(20, 22, 26, 0.5)); box-shadow: 0 5px 25px rgba(232, 181, 116, 0.1); }

.slide-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.slide-bullets li {
  font-size: 1.05rem;
  color: var(--color-white-muted);
  position: relative;
  padding-left: 24px;
  line-height: 1.6;
}

.slide-bullets li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--color-rose-gold);
  font-size: 0.85rem;
  text-shadow: 0 0 8px rgba(232, 181, 116, 0.6);
}

.slide-card:nth-child(2) .slide-bullets li::before { color: var(--color-pixlr-cyan); text-shadow: 0 0 8px var(--color-pixlr-cyan); }
.slide-card:nth-child(4) .slide-bullets li::before { color: var(--color-blush); text-shadow: 0 0 8px var(--color-blush); }
.slide-card:nth-child(7) .slide-bullets li::before { color: var(--color-pixlr-purple); text-shadow: 0 0 8px var(--color-pixlr-purple); }

.slide-visual-element {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Glowing Slide Quote Boxes */
.slide-quote-box {
  padding: 3rem;
  background: radial-gradient(circle at bottom left, rgba(232, 181, 116, 0.04), transparent 50%), rgba(20, 22, 26, 0.7);
  border-radius: var(--border-radius-md);
  width: 100%;
  border: 1px solid rgba(232, 181, 116, 0.12);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.slide-quote-box:hover {
  border-color: rgba(232, 181, 116, 0.3);
  box-shadow: inset 0 0 30px rgba(232, 181, 116, 0.05), 0 10px 30px rgba(0, 0, 0, 0.4);
}

.quote-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-rose-gold);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 1.2rem;
}

.quote-body {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-soft-blush);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* High Fidelity Interactive Blueprints Canvas */
.slide-visual-canvas {
  width: 100%;
  aspect-ratio: 16 / 11;
  background: radial-gradient(circle at center, rgba(35, 38, 43, 0.7), rgba(20, 22, 26, 0.95));
  border: 1px solid rgba(245, 242, 236, 0.08);
  border-radius: var(--border-radius-md);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.slide-visual-canvas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-pixlr-cyan), var(--color-rose-gold), var(--color-pixlr-purple));
}

.slide-visual-canvas .spec-note-item {
  border-bottom: 1px dashed rgba(245, 242, 236, 0.06);
  padding-bottom: 8px;
}

.slide-visual-canvas .spec-note-item:last-child {
  border-bottom: none;
}

/* Slide visual magazine overlays */
.slide-visual-magazine {
  width: 100%;
  max-width: 340px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.6);
  border: 1px solid rgba(245, 242, 236, 0.1);
  aspect-ratio: 1 / 1;
  position: relative;
  transition: var(--transition-smooth);
}

.slide-visual-magazine::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 22, 26, 0.8) 100%);
  z-index: 1;
}

.slide-visual-magazine:hover {
  transform: scale(1.03) rotate(0.5deg);
  border-color: rgba(232, 181, 116, 0.3);
}

.slide-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: var(--transition-smooth);
}

.slide-visual-magazine:hover .slide-visual-img {
  opacity: 1;
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .slide-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .slide-card {
    padding: 2.2rem;
  }
  .slide-title {
    font-size: 2rem;
  }
  .slide-bold-takeaway {
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
  }
}

/* --------------------------------------------------------------------------
   19. Academy Live Portfolio Showcase Section Styles
   -------------------------------------------------------------------------- */
.showcase-section {
  display: none;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem 0 6rem 0;
}

body.voice-showcase .showcase-section {
  display: flex;
  animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.showcase-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 181, 116, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(232, 181, 116, 0.08);
}

.showcase-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.showcase-meta-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 1px;
}

.showcase-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.showcase-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-white-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}

.showcase-chip {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  color: var(--color-white-muted);
}

.showcase-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--color-white);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.showcase-btn:hover {
  background: rgba(232, 181, 116, 0.1);
  border-color: var(--color-rose-gold);
  color: var(--color-rose-gold);
  box-shadow: 0 0 15px rgba(232, 181, 116, 0.2);
}

.showcase-btn .btn-arrow {
  transition: transform 0.3s ease;
}

.showcase-btn:hover .btn-arrow {
  transform: translateX(4px);
}
