/**
 * Minimal Pure - Essential Typography Only
 * Perfect fonts, everything else stripped away
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&display=swap');

/*********************************************
 * ESSENTIAL VARIABLES ONLY
 *********************************************/

:root {
  /* Perfect Typography */
  --font-system: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;

  /* Simple Scale */
  --text-body: 21px;
  --text-large: 28px;
  --text-title: 42px;
  --text-hero: 64px;

  /* Weight System */
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;

  /* Colors - Pure + Warm */
  --black: #1a1a1a;
  --gray: #666;
  --light-gray: #999;
  --white: #fff;
  --border-light: #e5e5e5;

  /* Warm Modern Gradient */
  --gradient-start: #2d1b69;
  --gradient-mid: #11998e;
  --gradient-end: #38ef7d;

  /* Sophisticated warm background */
  --background-creme: #fdf5f0;

  /* Soft pastel palette */
  --coral: #f5d4d0;
  --sage: #d4e8e0;
  --lavender: #e4dced;
  --amber: #f5e0c8;

  /* Consistent Radius Scale */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 20px;

  /* Reveal Integration */
  --r-background-color: var(--background-creme);
  --r-main-font: var(--font-system);
  --r-main-font-size: var(--text-body);
  --r-main-color: var(--black);
  --r-heading-font: var(--font-system);
  --r-heading-color: var(--black);
}

/*********************************************
 * BASE - MINIMAL FOUNDATION
 *********************************************/

.reveal-viewport {
  background-color: var(--r-background-color);
}

.reveal {
  font-family: var(--font-system);
  font-size: var(--text-body);
  font-weight: var(--regular);
  color: var(--black);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

.reveal .slides section {
  text-align: center;
}

/*********************************************
 * TYPOGRAPHY - PERFECT & SIMPLE
 *********************************************/

.reveal h1 {
  font-size: var(--text-hero);
  font-weight: var(--light);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 0.5em 0;
}

.reveal h2 {
  font-size: var(--text-title);
  font-weight: var(--light);
  line-height: 1.2;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 0.8em 0;
  text-align: center;
}

.reveal h3 {
  font-size: var(--text-large);
  font-weight: var(--medium);
  line-height: 1.3;
  color: var(--black);
  margin: 0 0 1em 0;
}

.reveal p {
  font-size: var(--text-body);
  line-height: 1.4;
  color: var(--black);
  margin: 0 0 1em 0;
}

/*********************************************
 * SIMPLE VARIANTS
 *********************************************/

.lead {
  font-size: var(--text-large);
  font-weight: var(--regular);
}

.caption {
  font-size: 16px;
  color: var(--gray);
}

.subtitle {
  font-size: var(--text-large);
  color: var(--gray);
}

/*********************************************
 * LISTS - CLEAN
 *********************************************/

.reveal ul {
  list-style: none;
  text-align: left;
  margin: 1em auto;
  max-width: 600px;
}

.reveal ul li {
  padding: 0.3em 0 0.3em 1.5em;
  position: relative;
}

.reveal ul li:before {
  content: "▸";
  position: absolute;
  left: 0;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.1em;
  font-weight: var(--medium);
}

/*********************************************
 * TABLES - CENTERED
 *********************************************/

.reveal table {
  margin: 1em auto;
  text-align: left;
}

.reveal table th,
.reveal table td {
  text-align: left;
  padding: 0.5em 1em;
  border-bottom: 1px solid var(--border-light);
}

.reveal table th {
  font-weight: var(--semibold);
  border-bottom: 2px solid var(--light-gray);
}

/*********************************************
 * CODE BLOCKS - CLEAN & READABLE
 *********************************************/

.reveal pre {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(45, 27, 105, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5em;
  margin: 2em auto;
  overflow: auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: left;
  max-width: 80%;
}

.reveal code {
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

.reveal :not(pre) > code {
  background: rgba(45, 27, 105, 0.08);
  color: var(--black);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.9em;
  font-weight: var(--medium);
}

/*********************************************
 * IMAGES - POLISHED & ELEGANT
 *********************************************/

.reveal img {
  border: none;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  box-shadow:
    0 4px 20px rgba(45, 27, 105, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.08);
  max-height: 450px;
  max-width: 85%;
  margin: 1.5em auto;
  display: block;
}

/* Screenshot images - full width with frame effect */
.reveal img[src*="incident"],
.reveal img[alt*="incident"],
.reveal img[alt*="example"] {
  max-width: 90%;
  max-height: 500px;
  border: 1px solid rgba(45, 27, 105, 0.08);
  padding: 0.5em;
  background: #fff;
}

/* Diagram & flowchart images */
.reveal img[src*="flowchart"],
.reveal img[src*="diagram"],
.reveal img[alt*="Flowchart"],
.reveal img[alt*="flowchart"] {
  max-width: 85%;
  max-height: 520px;
  background: rgba(255, 255, 255, 0.98);
  padding: 1.2em;
  border: 1px solid rgba(45, 27, 105, 0.06);
}

/* QR code - smaller and clean */
.reveal img[src*="website"],
.reveal img[alt*="QR"] {
  max-height: 180px;
  max-width: 180px;
  padding: 0.8em;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow:
    0 2px 12px rgba(45, 27, 105, 0.1),
    0 1px 4px rgba(0, 0, 0, 0.06);
}

/* Pyramid diagram - special styling */
.reveal img[src*="pyramid"] {
  max-height: 400px;
  max-width: 50%;
  padding: 1.2em;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(253,245,240,0.95));
  border: 1px solid rgba(45, 27, 105, 0.06);
}

/* Image with caption pairing */
.reveal img + .caption,
.reveal img + p.caption {
  margin-top: -0.5em;
  font-size: 14px;
  color: var(--light-gray);
  font-style: italic;
}

/* Full-bleed images */
.reveal img.full-bleed {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

/* Icon-sized images */
.reveal img.icon {
  max-height: 48px;
  max-width: 48px;
  border-radius: var(--radius-sm);
  box-shadow: none;
  padding: 0;
  margin: 0.5em;
}

/*********************************************
 * CONTACT SECTION
 *********************************************/

/* Remove underline from email links */
.reveal a {
  text-decoration: none;
  color: var(--gray);
  transition: color 0.2s ease;
}

.reveal a:hover {
  color: var(--black);
}

/* Contact section styling */
.reveal h3 + img + h3 {
  margin-top: 0.5em;
  font-size: var(--text-body);
  font-weight: var(--regular);
}

/*********************************************
 * FRAGMENTS - RISE AND REPLACE
 *********************************************/

/* Hidden state - positioned below */
/* .reveal .fragment.fade-in-then-semi-out {
  opacity: 0;
  transform: translateY(30px);
} */

/* Entering - rises from below */
/* .reveal .fragment.fade-in-then-semi-out.visible {
  opacity: 1;
  transform: translateY(0);
} */

/* Current fragment - full presence */
/* .reveal .fragment.fade-in-then-semi-out.current-fragment {
  opacity: 1;
  transform: translateY(0);
} */

/* Previous fragments - fade and continue rising */
/* .reveal .fragment.fade-in-then-semi-out:not(.current-fragment).visible {
  opacity: 0.2;
  transform: translateY(-25px);
} */

/*********************************************
 * TIMELINE - ELEGANT WITHOUT ANIMATIONS
 *********************************************/

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  max-width: 1000px;
  margin: 3em auto;
  padding: 2em 0;
  position: relative;
  gap: 1.5em;
}

/* Clean connecting line */
.timeline:after {
  content: "";
  position: absolute;
  top: 51px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gradient-start) 15%,
    var(--gradient-mid) 50%,
    var(--gradient-end) 85%,
    transparent 100%);
  z-index: 1;
  opacity: 0.4;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Clean timeline dots */
.timeline-item:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border: 3px solid var(--white);
  box-shadow: 0 1px 8px rgba(45, 27, 105, 0.2);
  margin-bottom: 0.8em;
  z-index: 3;
  position: relative;
}

.timeline-months {
  font-size: 9px;
  font-weight: var(--medium);
  color: var(--light-gray);
  margin-bottom: 0.3em;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.timeline-date {
  font-size: 13px;
  font-weight: var(--semibold);
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.6em;
  white-space: nowrap;
  line-height: 1.1;
}

.timeline-content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 27, 105, 0.1);
  border-radius: var(--radius-md);
  padding: 1em 0.8em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  width: 140px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Timeline content color variants */
.timeline-content.sage {
  background-color: rgba(212, 232, 224, 0.3);
}

.timeline-content.coral {
  background-color: rgba(245, 212, 208, 0.3);
}

.timeline-content h4 {
  margin: 0 0 0.5em 0;
  font-size: 14px;
  font-weight: var(--semibold);
  color: var(--black);
  line-height: 1.1;
  text-align: center;
}

.timeline-content p {
  margin: 0;
  font-size: 10px;
  color: var(--gray);
  line-height: 1.2;
  text-align: center;
  max-width: 120px;
}


/*********************************************
 * PILLARS - FIVE CARD LAYOUT
 *********************************************/

.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.8em;
  max-width: 900px;
  margin: 2em auto;
  padding: 1em 0 4em 0;
  position: relative;
}

/* Elegant foundation base */
.pillars:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gradient-start) 15%,
    var(--gradient-mid) 50%,
    var(--gradient-end) 85%,
    transparent 100%);
  opacity: 0.4;
  z-index: 1;
}


.pillar-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(45, 27, 105, 0.08);
  border-bottom: none;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 1.5em 1em;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  text-align: center;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: visible;
  z-index: 1;
}

/* Subtle capital accent */
.pillar-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  opacity: 0.8;
}

/* Vertical connector lines from pillar bottoms to foundation */
.pillars::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3.5em;
  background:
    linear-gradient(0deg, transparent 0%, var(--gradient-start) 100%) 10% 0 / 1px 100% no-repeat,
    linear-gradient(0deg, transparent 0%, var(--gradient-start) 100%) 30% 0 / 1px 100% no-repeat,
    linear-gradient(0deg, transparent 0%, var(--gradient-start) 100%) 50% 0 / 1px 100% no-repeat,
    linear-gradient(0deg, transparent 0%, var(--gradient-start) 100%) 70% 0 / 1px 100% no-repeat,
    linear-gradient(0deg, transparent 0%, var(--gradient-start) 100%) 90% 0 / 1px 100% no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.pillar-number {
  font-size: 24px;
  font-weight: var(--light);
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5em;
  line-height: 1;
}

.pillar-card h4 {
  margin: 0;
  font-size: 16px;
  font-weight: var(--semibold);
  color: var(--black);
  line-height: 1.2;
  text-align: center;
}

.foundation-label {
  text-align: center;
  margin-top: 1.5em;
  font-size: 16px;
  color: var(--gray);
  font-weight: var(--regular);
}

.foundation-label strong {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: var(--semibold);
}


/*********************************************
 * DISCLAIMER CARDS
 *********************************************/

.disclaimer-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5em;
  max-width: 750px;
  margin: 2em auto;
}

.disclaimer-card {
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  padding: 2.2em 1.8em;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.04),
    0 1px 3px rgba(0, 0, 0, 0.02);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.disclaimer-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.03);
}

.disclaimer-icon {
  font-size: 2.8em;
  margin-bottom: 0.4em;
  line-height: 1;
}

.disclaimer-title {
  font-size: 12px;
  font-weight: var(--semibold);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 0.9em;
}

.disclaimer-text {
  font-size: 1.1em;
  line-height: 1.5;
  color: var(--black);
}

.disclaimer-text strong {
  font-weight: var(--semibold);
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/*********************************************
 * QUOTES - SOPHISTICATED & BEAUTIFUL
 *********************************************/

.reveal blockquote {
  position: relative;
  background: none;
  border: none;
  padding: 0;
  margin: 4em auto;
  max-width: 800px;
  font-style: normal;
  text-align: left;
}

.reveal blockquote p {
  font-size: 48px;
  font-weight: 200;
  line-height: 1.2;
  color: var(--black);
  margin: 0;
  font-style: italic;
  position: relative;
  padding: 0 3em;
  text-align: center;
}

.reveal blockquote p:before {
  content: '"';
  position: absolute;
  left: 1em;
  top: -0.2em;
  font-size: 120px;
  font-weight: 100;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.3;
  transform: rotate(-8deg);
  transform-origin: center;
}

.reveal blockquote p:after {
  content: '"';
  position: absolute;
  right: 1em;
  bottom: -0.3em;
  font-size: 120px;
  font-weight: 100;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  opacity: 0.25;
  transform: rotate(8deg);
  transform-origin: center;
}

.reveal blockquote cite {
  display: block;
  font-size: 18px;
  font-weight: var(--regular);
  color: var(--gray);
  text-align: center;
  margin-top: 2em;
}

.reveal blockquote cite:before {
  content: "— ";
  color: var(--light-gray);
}

/* Centered compact blockquote variant */
.reveal blockquote.centered {
  max-width: 800px;
  margin: 2em auto;
  text-align: center;
}

.reveal blockquote.centered p {
  font-size: 1.3em;
  text-align: center;
}

/*********************************************
 * PROGRESS BAR - ELEGANT GRADIENT
 *********************************************/

.reveal .progress {
  height: 4px;
  background: rgba(45, 27, 105, 0.1);
  border-radius: 2px 2px 0 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.reveal .progress span {
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
  border-radius: 2px 2px 0 0;
  transition: transform 0.6s cubic-bezier(0.26, 0.86, 0.44, 0.985);
  box-shadow: 0 1px 3px rgba(45, 27, 105, 0.3);
}

/*********************************************
 * DARK SLIDE STYLING
 *********************************************/

.reveal .slides section.white-text h1,
.reveal .slides section.white-text h2,
.reveal .slides section.white-text h3,
.reveal .slides section.white-text h4,
.reveal .slides section.white-text h5,
.reveal .slides section.white-text h6,
.reveal .slides section.white-text p,
.reveal .slides section.white-text li {
  color: var(--white) !important;
}

.reveal .slides section.white-text h1,
.reveal .slides section.white-text h2 {
  background: linear-gradient(135deg, var(--white), #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*********************************************
 * VISUAL ENHANCEMENTS - RISK MATRICES & DIAGRAMS
 *********************************************/

/* Risk Matrix Grid */
.risk-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 600px;
  margin: 2em auto;
  padding: 1em;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.risk-cell {
  padding: 1em;
  text-align: center;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: var(--medium);
  line-height: 1.2;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.risk-low { background: linear-gradient(135deg, #e8f5e8, #c8e6c9); color: #2e7d32; }
.risk-medium { background: linear-gradient(135deg, #fff3e0, #ffcc02); color: #ef6c00; }
.risk-high { background: linear-gradient(135deg, #ffebee, #ffcdd2); color: #c62828; }
.risk-critical { background: linear-gradient(135deg, #d32f2f, #c62828); color: white; }

/* Swiss Cheese Model Layers */
.swiss-cheese {
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: center;
  margin: 2em auto;
  max-width: 800px;
}

.cheese-layer {
  width: 120px;
  height: 200px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  border-radius: var(--radius-lg);
  position: relative;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: var(--semibold);
  font-size: 14px;
  text-align: center;
}

.cheese-layer::before,
.cheese-layer::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.cheese-layer::before {
  width: 30px;
  height: 30px;
  top: 20px;
  left: 20px;
}

.cheese-layer::after {
  width: 25px;
  height: 25px;
  bottom: 30px;
  right: 25px;
}

/* Journey Arrow */
.journey-arrow {
  width: 0;
  height: 0;
  border-left: 15px solid var(--gradient-mid);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin: 0 1em;
}

/* Enhanced Fragment Animations */
.reveal .fragment.fade-in-then-semi-out {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.reveal .fragment.fade-in-then-semi-out.visible {
  opacity: 0.4;
  visibility: inherit;
  transform: translateY(0);
}

.reveal .fragment.fade-in-then-semi-out.current-fragment {
  opacity: 1;
  visibility: inherit;
  transform: translateY(0);
  color: var(--gradient-start);
  font-weight: var(--semibold);
}

/* Status Indicators */
.status-indicator {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 0.5em;
  vertical-align: middle;
}

.status-green { background: #4caf50; }
.status-yellow { background: #ff9800; }
.status-red { background: #f44336; }
.status-blue { background: #2196f3; }

/*********************************************
 * SLIDE NUMBERS & PRESENTER - ELEGANT & MINIMAL
 *********************************************/

/* Main slide number container (centered) */
.reveal .slide-number {
  position: fixed;
  display: inline-block;
  left: 50% !important;
  transform: translateX(-50%);
  bottom: 24px !important;
  top: auto !important;
  right: auto !important;
  z-index: 31;

  font-family: var(--font-system);
  font-size: 13px;
  font-weight: var(--regular);
  color: var(--black);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(45, 27, 105, 0.08);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 1px 2px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.26, 0.86, 0.44, 0.985);
}

/* Slide number hover effect */
.reveal .slide-number:hover {

  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 2px 4px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.98);
}

/* Presenter name pill (left side) */
.presenter-pill {
  position: fixed;
  display: inline-block;
  left: 24px;
  bottom: 24px;
  z-index: 31;

  font-family: var(--font-system);
  font-size: 13px;
  font-weight: var(--medium);
  color: rgba(255, 255, 255, 0.95);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.2),
    0 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.26, 0.86, 0.44, 0.985);
}

/* Presenter pill hover effect */
.presenter-pill:hover {
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.6);
}

/* PDF export adjustments */
@media print {
  .reveal .slide-number,
  .presenter-pill {
    display: none !important;
  }
}

/* Speaker view adjustments */
.reveal.speaker-mode .slide-number,
.reveal.speaker-mode .presenter-pill {
  display: none;
}

/* Overview mode adjustments */
.reveal.overview .slide-number {
  opacity: 0.3;
  transform: translateX(-50%) scale(0.8);
}

.reveal.overview .presenter-pill {
  opacity: 0.3;
  transform: scale(0.8);
}

/*********************************************
 * TIME OF DAY GRADIENT REFERENCE
 * Copy these values for data-background-gradient:
 *

 <!-- dawn gradient background -->
 <!-- .slide: data-background-gradient="linear-gradient(to bottom, #fdf5f0, #f8e8e0)" -->
 
 <!-- sunrise gradient background -->
 <!-- .slide: data-background-gradient="linear-gradient(to bottom, #fef6f0, #fce4d8)" -->
 
 <!-- morning gradient background -->
 <!-- .slide: data-background-gradient="linear-gradient(to bottom, #f8f6f4, #eef4f8)" -->
 
 <!-- midday gradient background -->
 <!-- .slide: data-background-gradient="linear-gradient(to bottom, #fdfcfa, #f5f5f5)" -->
 
 <!-- afternoon gradient background -->
 <!-- .slide: data-background-gradient="linear-gradient(to bottom, #fdf8f0, #f8edd8)" -->
 
 <!-- golden gradient background -->
 <!-- .slide: data-background-gradient="linear-gradient(to bottom, #fdf5ec, #f5e0c8)" -->
 
 <!-- evening gradient background -->
 <!-- .slide: data-background-gradient="linear-gradient(to bottom, #fdf4f2, #f0dcd8)" -->
 
 <!-- dusk gradient background -->
 <!-- .slide: data-background-gradient="linear-gradient(to bottom, #f8f4f6, #e8dce8)" -->
 
 <!-- twilight gradient background -->
 <!-- .slide: data-background-gradient="linear-gradient(to bottom, #f6f4f8, #e4dced)" -->
 
 *********************************************/

/*********************************************
 * JOURNEY - VERTICAL CAREER PATH
 *********************************************/

.journey {
  display: flex;
  flex-direction: column;
  max-width: 560px;
  margin: 2em auto;
  padding-left: 32px;
  position: relative;
}

.journey::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(180deg,
    rgba(45, 27, 105, 0.2) 0%,
    rgba(45, 27, 105, 0.08) 100%);
}

.journey-step {
  display: flex;
  align-items: center;
  gap: 1em;
  position: relative;
  padding: 0.55em 0;
}

.journey-step::before {
  content: "";
  position: absolute;
  left: -24.5px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--background-creme);
  border: 2px solid rgba(45, 27, 105, 0.25);
  box-sizing: border-box;
}

.journey-year {
  font-size: 13px;
  font-weight: var(--medium);
  color: rgba(45, 27, 105, 0.5);
  min-width: 38px;
  font-variant-numeric: tabular-nums;
}

.journey-label {
  font-size: 16px;
  color: var(--black);
  letter-spacing: -0.01em;
}

/*********************************************
 * CAREER VISUAL - HORIZONTAL BARS
 *********************************************/

.career-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  max-width: 800px;
  margin: 2em auto;
}

.career-row {
  display: flex;
  align-items: center;
  gap: 1.5em;
}

.career-label {
  font-size: 14px;
  font-weight: var(--medium);
  color: var(--gray);
  min-width: 100px;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.career-bar-wrapper {
  flex: 1;
  position: relative;
}

.career-bar {
  display: flex;
  width: 90%;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.career-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.career-segment span {
  font-size: 14px;
  font-weight: var(--medium);
  color: var(--black);
  opacity: 0.85;
  white-space: nowrap;
  padding: 0 1em;
}

.applications-bar .career-segment span {
  font-size: 12px;
}

.collaborators-bar .career-segment span {
  font-size: 11px;
}

.career-segment:hover {
  filter: brightness(0.97);
}

/* Timeline Strip */
.timeline-strip {
  position: relative;
  flex: 1;
  height: 60px;
  margin-bottom: 0.5em;
}

.timeline-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(45, 27, 105, 0.2) 0%,
    rgba(45, 27, 105, 0.35) 100%);
}

.timeline-line-future {
  position: absolute;
  bottom: 0;
  left: 90%;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(45, 27, 105, 0.25) 0px,
    rgba(45, 27, 105, 0.25) 4px,
    transparent 4px,
    transparent 8px
  );
}

.timeline-marker {
  position: absolute;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.timeline-marker::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--background-creme);
  border: 2px solid rgba(45, 27, 105, 0.4);
  border-radius: 50%;
  position: absolute;
  bottom: -6px;
}

.timeline-marker.now::after {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  border-color: transparent;
}

.marker-year {
  font-size: 11px;
  font-weight: var(--semibold);
  color: var(--gradient-start);
  opacity: 0.8;
}

.marker-label {
  font-size: 10px;
  color: var(--gray);
  text-align: center;
  max-width: 80px;
  line-height: 1.3;
}

.timeline-marker.now .marker-year {
  opacity: 1;
}

.timeline-marker.now .marker-label {
  font-weight: var(--medium);
  color: var(--gradient-start);
}

.timeline-marker.future::after {
  background: transparent;
  border: 2px dashed rgba(45, 27, 105, 0.4);
}

.timeline-marker.future .marker-year,
.timeline-marker.future .marker-label {
  opacity: 0.6;
}

/*********************************************
 * BALANCE - CAPABILITIES VS RISKS
 *********************************************/

.balance {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3em;
  align-items: start;
  max-width: 680px;
  margin: 2em auto;
}

.balance-side {
  text-align: left;
}

.balance-side h4 {
  margin: 0 0 0.8em 0;
  font-size: 11px;
  font-weight: var(--semibold);
  color: rgba(45, 27, 105, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.balance-side ul {
  margin: 0;
  max-width: none;
}

.balance-side ul li {
  padding: 0.35em 0 0.35em 1.2em;
}

.balance-center {
  align-self: center;
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(45, 27, 105, 0.15) 50%,
    transparent 100%);
}

/* New Literacy Balance - Visual Scale */
.literacy-balance {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5em;
  margin: 1.5em auto;
  max-width: 780px;
}

.balance-pan {
  flex: 1;
  max-width: 260px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 1.4em 1.5em;
  position: relative;
  border-top: 3px solid;
}

.balance-pan.sage {
  border-top-color: #5a9a7a;
}

.balance-pan.coral {
  border-top-color: #c07060;
}

.pan-header {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 1em;
}

.pan-header svg {
  width: 22px;
  height: 22px;
}

.balance-pan.sage .pan-header svg {
  stroke: #5a9a7a;
}

.balance-pan.coral .pan-header svg {
  stroke: #c07060;
}

.pan-header span {
  font-size: 0.85em;
  font-weight: var(--semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.balance-pan.sage .pan-header span {
  color: #4a8a6a;
}

.balance-pan.coral .pan-header span {
  color: #a06050;
}

.balance-pan ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.balance-pan ul li {
  font-size: 0.9em;
  color: var(--gray);
  padding: 0.4em 0;
  padding-left: 1.2em;
  position: relative;
}

.balance-pan ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.balance-pan.sage ul li::before {
  background: #5a9a7a;
}

.balance-pan.coral ul li::before {
  background: #c07060;
}

.balance-fulcrum {
  flex-shrink: 0;
  width: 80px;
  align-self: center;
}

.balance-fulcrum svg {
  width: 80px;
  height: 100px;
}

/*********************************************
 * ALLIES - HUB & SPOKE
 *********************************************/

.hub-spoke {
  position: relative;
  width: 400px;
  height: 280px;
  margin: 2em auto;
}

.hub-spoke svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #6b5b8a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--medium);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-align: center;
  z-index: 2;
}

.hub::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(107, 91, 138, 0.25);
}

.spoke {
  position: absolute;
  padding: 0.5em 1em;
  background: var(--white);
  border: 1px solid rgba(107, 91, 138, 0.15);
  border-radius: var(--radius-sm);
  font-size: 12px;
  letter-spacing: 0.01em;
  text-align: center;
  z-index: 1;
}

/* 4-spoke cross arrangement */
.spoke-1 { top: 8px; left: 50%; transform: translateX(-50%); }
.spoke-2 { top: 50%; right: 16px; transform: translateY(-50%); }
.spoke-3 { bottom: 8px; left: 50%; transform: translateX(-50%); }
.spoke-4 { top: 50%; left: 16px; transform: translateY(-50%); }

/* Hub diagram */
.hub-diagram {
  width: 400px;
  height: 310px;
  display: block;
  margin: 0 auto;
}

.hub-diagram .hub-center {
  fill: url(#hubGrad);
}

.hub-diagram .hub-label {
  fill: #5a4a6a;
  font-size: 14px;
  font-weight: 600;
  text-anchor: middle;
}

.hub-diagram .hub-label-sm {
  font-size: 11px;
  font-weight: 500;
}

.hub-diagram .spoke line {
  stroke: #c0b0d0;
  stroke-width: 1;
}

.hub-diagram .spoke circle {
  fill: #a898b8;
}

.hub-diagram .spoke text {
  fill: #4a3a5a;
  font-size: 12px;
  font-weight: 500;
}

/* Top spoke - centered */
.hub-diagram .spoke:nth-of-type(1) text { text-anchor: middle; }

/* Right spokes - left aligned */
.hub-diagram .spoke:nth-of-type(2) text,
.hub-diagram .spoke:nth-of-type(3) text { text-anchor: start; }

/* Left spokes - right aligned */
.hub-diagram .spoke:nth-of-type(4) text,
.hub-diagram .spoke:nth-of-type(5) text { text-anchor: end; }

/*********************************************
 * ALLIES - CIRCLE WHEEL
 *********************************************/

.allies-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75em;
  flex-wrap: wrap;
  max-width: 480px;
  margin: 2em auto;
}

.ally {
  border: 1px solid rgba(107, 91, 138, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.55em 1.1em;
  font-size: 13px;
  letter-spacing: 0.01em;
  background: var(--white);
}

.allies-center {
  background: #6b5b8a;
  color: white;
  border-radius: 50%;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: var(--medium);
  letter-spacing: 0.02em;
  text-align: center;
  position: relative;
}

.allies-center::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(107, 91, 138, 0.25);
}

/*********************************************
 * PROFILES - TEAM ROLES
 *********************************************/

.profiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5em;
  max-width: 620px;
  margin: 2em auto;
}

.profile-card {
  text-align: center;
}

.profile-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: rgba(45, 27, 105, 0.06);
  border-radius: 50%;
}

.profile-card h4 {
  margin: 0 0 0.3em 0;
  font-size: 14px;
  font-weight: var(--semibold);
  letter-spacing: 0.01em;
}

.profile-card p {
  margin: 0;
  font-size: 12px;
  color: var(--gray);
  line-height: 1.4;
}

/* Profile card color variants */
.profile-card.sage {
  background: rgba(212, 232, 224, 0.4);
}

.profile-card.sage .profile-icon {
  background: rgba(212, 232, 224, 0.6);
}

.profile-card.lavender {
  background: rgba(228, 220, 237, 0.4);
}

.profile-card.lavender .profile-icon {
  background: rgba(228, 220, 237, 0.6);
}

.profile-card.amber {
  background: rgba(245, 224, 200, 0.4);
}

.profile-card.amber .profile-icon {
  background: rgba(245, 224, 200, 0.6);
}

.profile-card.coral {
  background: rgba(245, 212, 208, 0.4);
}

.profile-card.coral .profile-icon {
  background: rgba(245, 212, 208, 0.6);
}

/* Compact profile grid variant */
.profiles.compact {
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
}

.profiles.compact .profile-card {
  padding: 1.2em;
}

/* Profile Evolution Layout */
.profile-evolution {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  max-width: 720px;
  margin: 1.5em auto;
}

.evolution-row {
  display: grid;
  grid-template-columns: 1fr auto 1.8fr;
  align-items: center;
  gap: 1.2em;
  padding: 0.8em 1.2em;
  background: linear-gradient(90deg, rgba(0,0,0,0.02) 0%, transparent 30%, rgba(212,232,224,0.3) 100%);
  border-radius: var(--radius-lg);
}

.profile-old {
  display: flex;
  align-items: center;
  gap: 0.6em;
  opacity: 0.5;
}

.old-icon {
  font-size: 1.4em;
}

.old-title {
  font-size: 0.85em;
  color: var(--gray);
  text-decoration: line-through;
  text-decoration-color: rgba(0,0,0,0.3);
}

.evolution-arrow {
  font-size: 1.6em;
  font-weight: 300;
  color: var(--gradient-start);
  opacity: 0.8;
}

.profile-new {
  display: flex;
  align-items: center;
  gap: 0.8em;
}

.new-icon {
  font-size: 1.8em;
}

.new-content {
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}

.new-title {
  font-size: 1em;
  font-weight: var(--semibold);
  color: var(--black);
}

.new-desc {
  font-size: 0.75em;
  color: var(--gray);
}

.evolution-note {
  text-align: center;
  font-size: 0.85em;
  color: var(--gray);
  font-style: italic;
  margin-top: 1.5em;
  padding-top: 1em;
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* Tech Requirements - Article 15 */
.tech-requirements {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 520px;
  margin: 1.5em auto;
}

.tech-req {
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 0.9em 1.2em;
  background: linear-gradient(135deg, var(--white) 0%, var(--background-creme) 100%);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gradient-start);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.req-icon {
  font-size: 1.6em;
}

.req-content {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

.req-title {
  font-size: 1em;
  font-weight: var(--semibold);
  color: var(--black);
}

.req-detail {
  font-size: 0.8em;
  color: var(--gray);
}

.slide-insight {
  text-align: center;
  font-size: 0.85em;
  color: var(--black);
  margin-top: 1.5em;
  padding: 0.8em 1.2em;
  background: rgba(245, 212, 208, 0.3);
  border-radius: var(--radius-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Article Display */
.article-display {
  max-width: 680px;
  margin: 0 auto 0.8em;
  text-align: left;
}

.article-header {
  display: flex;
  align-items: baseline;
  gap: 0.5em;
  margin-bottom: 0.4em;
}

.article-number {
  font-size: 0.85em;
  font-weight: var(--semibold);
  color: #6b5b8a;
  background: rgba(228, 220, 237, 0.5);
  padding: 0.2em 0.5em;
  border-radius: var(--radius-sm);
}

.article-title {
  font-size: 0.9em;
  font-weight: var(--semibold);
  color: var(--black);
}

.article-text {
  font-size: 0.75em !important;
  line-height: 1.4 !important;
  color: var(--gray);
  border-left: 3px solid #b8a9d4;
  padding: 0.5em 0.8em !important;
  margin: 0 !important;
  background: rgba(228, 220, 237, 0.15);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Compliance Gap Comparison */
.compliance-gap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  max-width: 700px;
  margin: 1.5em auto;
}

.gap-column {
  padding: 1.2em;
  border-radius: var(--radius-md);
}

.gap-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.gap-column li {
  font-size: 0.8em;
  padding: 0.4em 0;
  padding-left: 1.2em;
  position: relative;
}

.gap-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.gap-think {
  background: rgba(0,0,0,0.03);
}

.gap-think .gap-header {
  color: var(--gray);
}

.gap-think li::before {
  background: var(--gray);
  opacity: 0.4;
}

.gap-think li {
  color: var(--gray);
}

.gap-actual {
  background: linear-gradient(135deg, rgba(212,232,224,0.4) 0%, rgba(212,232,224,0.2) 100%);
}

.gap-actual .gap-header {
  color: var(--black);
}

.gap-actual li::before {
  background: var(--gradient-start);
}

.gap-actual li {
  color: var(--black);
  font-weight: var(--medium);
}

.gap-header {
  font-size: 0.75em;
  font-weight: var(--semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8em;
}

/* Attack Examples */
.attack-examples {
  display: flex;
  gap: 1em;
  max-width: 750px;
  margin: 1.5em auto 0;
}

.attack-item {
  flex: 1;
  padding: 0.8em;
  background: rgba(245, 212, 208, 0.25);
  border-radius: var(--radius-md);
  border-top: 2px solid var(--gradient-start);
}

.attack-name {
  display: block;
  font-size: 0.8em;
  font-weight: var(--semibold);
  color: var(--black);
  margin-bottom: 0.3em;
}

.attack-desc {
  display: block;
  font-size: 0.7em;
  color: var(--gray);
  line-height: 1.4;
}

/* Knowledge Depth - Article 15 deep dive */
.knowledge-depth {
  max-width: 640px;
  margin: 1.5em auto;
  text-align: center;
}

.depth-question {
  font-size: 1em;
  color: var(--black);
  margin-bottom: 1.2em;
}

.depth-reveal {
  margin-bottom: 1.5em;
}

.depth-header {
  font-size: 0.8em;
  color: var(--gray);
  margin-bottom: 0.8em;
}

.depth-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5em;
}

.depth-term {
  font-size: 0.85em;
  font-weight: var(--medium);
  color: var(--black);
  background: linear-gradient(135deg, rgba(212,232,224,0.5) 0%, rgba(212,232,224,0.3) 100%);
  padding: 0.4em 0.8em;
  border-radius: var(--radius-md);
  font-family: var(--font-mono);
}

.depth-punchline {
  font-size: 1em;
  font-weight: var(--semibold);
  color: #6b5b8a;
  margin-top: 0.3em;
}

/* Article 15 Breakdown */
.art15-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  max-width: 640px;
  margin: 0.6em auto 0.8em;
}

.art15-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: baseline;
  gap: 0.8em;
  text-align: left;
  padding: 0.5em 0.8em;
  background: rgba(228, 220, 237, 0.2);
  border-radius: var(--radius-md);
  border-left: 3px solid #b8a9d4;
}

.art15-label {
  font-size: 0.85em;
  font-weight: var(--semibold);
  color: #6b5b8a;
}

.art15-real {
  font-size: 0.75em;
  color: var(--black);
  line-height: 1.35;
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}

.art15-assume {
  font-style: italic;
  color: var(--gray);
  font-size: 0.95em;
  opacity: 0.7;
}

.art15-assume::before {
  content: "→ ";
  opacity: 0.4;
}

.art15-actual {
  font-weight: var(--medium);
  color: var(--black);
}

/*********************************************
 * TRIFECTA VENN - OVERLAPPING DANGERS
 *********************************************/

.trifecta-venn {
  position: relative;
  width: 340px;
  height: 280px;
  margin: 1.5em auto;
}

.trifecta-circle {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: var(--medium);
  line-height: 1.3;
  border: 1px solid rgba(107, 91, 138, 0.2);
}

.trifecta-circle span {
  position: relative;
  z-index: 2;
}

.trifecta-c1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(212, 232, 224, 0.45);
}

.trifecta-c2 {
  bottom: 30px;
  left: 45px;
  background: rgba(245, 224, 200, 0.45);
}

.trifecta-c3 {
  bottom: 30px;
  right: 45px;
  background: rgba(228, 220, 237, 0.45);
}

.trifecta-danger {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  z-index: 3;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.15); }
}

/*********************************************
 * ICEBERG - ABSTRACT MINIMAL
 *********************************************/

.iceberg {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 280px;
  margin: 1.5em auto;
}

/* Above water - small peak */
.iceberg-above {
  width: 48px;
  height: 32px;
  background: rgba(212, 232, 224, 0.6);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.iceberg-above .iceberg-label,
.iceberg-above .iceberg-items {
  display: none;
}

/* Water line */
.iceberg-wave {
  width: 100%;
  height: 1px;
  background: rgba(107, 91, 138, 0.2);
  margin: 2px 0;
}

/* Below water - the mass */
.iceberg-below {
  width: 100%;
  padding: 1.8em 1.5em 2em;
  background: rgba(228, 220, 237, 0.25);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.iceberg-label {
  font-size: 9px;
  font-weight: var(--semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  color: #6b5b8a;
  margin-bottom: 1em;
}

.iceberg-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5em;
}

.iceberg-item {
  font-size: 12px;
  padding: 0.4em 0.8em;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(107, 91, 138, 0.12);
  color: var(--black);
}

.iceberg-below .iceberg-item {
  background: rgba(245, 212, 208, 0.5);
  border-color: rgba(180, 100, 100, 0.12);
}

/*********************************************
 * STAT - DRAMATIC NUMBER HIGHLIGHT
 *********************************************/

.stat-highlight {
  text-align: center;
  margin: 2em auto;
}

.stat-number {
  font-size: 96px;
  font-weight: var(--semibold);
  color: #6b5b8a;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-unit {
  font-size: 48px;
  font-weight: var(--medium);
  color: rgba(107, 91, 138, 0.6);
}

.stat-label {
  font-size: 14px;
  color: var(--gray);
  margin-top: 0.5em;
  letter-spacing: 0.02em;
}

/*********************************************
 * VERSUS - SIDE BY SIDE COMPARISON
 *********************************************/

.versus {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2em;
  max-width: 700px;
  margin: 2em auto;
  align-items: start;
}

.versus-side {
  padding: 1.5em;
  background: var(--white);
  border: 1px solid rgba(107, 91, 138, 0.15);
  border-radius: var(--radius-md);
}

.versus-side h4 {
  margin: 0 0 1em 0;
  font-size: 13px;
  font-weight: var(--semibold);
  color: #6b5b8a;
  letter-spacing: 0.02em;
}

.versus-side ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.versus-side ul li {
  padding: 0.4em 0;
  font-size: 13px;
  color: var(--black);
  border-bottom: 1px solid rgba(107, 91, 138, 0.08);
}

.versus-side ul li:last-child {
  border-bottom: none;
}

.versus-side ul li::before {
  content: none;
}

.versus-divider {
  align-self: center;
  font-size: 11px;
  font-weight: var(--semibold);
  color: rgba(107, 91, 138, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/*********************************************
 * CONCEPT WEB - OVERLAPPING CIRCLES
 *********************************************/

.concept-web {
  position: relative;
  width: 380px;
  height: 280px;
  margin: 2em auto;
}

.concept-circle {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: var(--medium);
  line-height: 1.3;
  padding: 1em;
  box-sizing: border-box;
}

.concept-circle:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(245, 212, 208, 0.6);
}

.concept-circle:nth-child(2) {
  bottom: 0;
  left: 30px;
  background: rgba(212, 232, 224, 0.6);
}

.concept-circle:nth-child(3) {
  bottom: 0;
  right: 30px;
  background: rgba(228, 220, 237, 0.6);
}

.concept-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  font-size: 10px;
  font-weight: var(--semibold);
  color: rgba(45, 27, 105, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/*********************************************
 * COMPLEXITY CASCADE - QUESTION EXPLOSION
 *********************************************/

.complexity-cascade {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0.5em auto;
}

.cascade-question {
  font-size: 36px;
  font-weight: var(--light);
  font-style: italic;
  color: var(--black);
  margin-bottom: 0.2em;
}

.cascade-arrow {
  font-size: 24px;
  color: rgba(45, 27, 105, 0.25);
  margin-bottom: 0.4em;
}

.cascade-explosion {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6em;
  max-width: 650px;
  padding: 0.8em;
}

.cascade-subq {
  font-size: 14px;
  padding: 0.5em 1em;
  border-radius: var(--radius-pill);
  color: var(--black);
  white-space: nowrap;
}

/* Scatter with subtle rotations */
.cascade-subq:nth-child(1)  { background: rgba(245, 212, 208, 0.6); transform: rotate(-2deg); }
.cascade-subq:nth-child(2)  { background: rgba(212, 232, 224, 0.6); transform: rotate(1deg); }
.cascade-subq:nth-child(3)  { background: rgba(228, 220, 237, 0.6); transform: rotate(-1deg); }
.cascade-subq:nth-child(4)  { background: rgba(245, 224, 200, 0.6); transform: rotate(2deg); }
.cascade-subq:nth-child(5)  { background: rgba(245, 212, 208, 0.5); transform: rotate(-1deg); }
.cascade-subq:nth-child(6)  { background: rgba(212, 232, 224, 0.5); transform: rotate(1.5deg); }
.cascade-subq:nth-child(7)  { background: rgba(228, 220, 237, 0.5); transform: rotate(-2deg); }
.cascade-subq:nth-child(8)  { background: rgba(245, 224, 200, 0.5); transform: rotate(1deg); }
.cascade-subq:nth-child(9)  { background: rgba(245, 212, 208, 0.4); transform: rotate(2deg); }
.cascade-subq:nth-child(10) { background: rgba(212, 232, 224, 0.4); transform: rotate(-1.5deg); }
.cascade-subq:nth-child(11) { background: rgba(228, 220, 237, 0.4); transform: rotate(1deg); }
.cascade-subq:nth-child(12) { background: rgba(245, 224, 200, 0.4); transform: rotate(-2deg); }

/* Punchline */
.cascade-punchline {
  margin-top: 1.2em;
  font-size: 18px;
  font-weight: var(--light);
  color: var(--gray);
}

.cascade-punchline em {
  font-style: italic;
  font-weight: var(--medium);
  color: var(--black);
}

/* Additional complexity axes */
.cascade-extras {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  margin-top: 1.4em;
  flex-wrap: wrap;
}

.cascade-extra {
  font-size: 14px;
  font-weight: var(--medium);
  color: var(--gray);
  padding: 0.4em 0.8em;
  border-left: 3px solid var(--coral);
  background: rgba(245, 212, 208, 0.2);
}

.cascade-extras .cascade-punchline {
  margin-top: 0.4em;
}

/*********************************************
 * COMPLIANCE WEIGHT - BIG NUMBERS
 *********************************************/

.compliance-weight {
  display: flex;
  justify-content: center;
  gap: 3em;
  margin: 1em auto;
}

.weight-number {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.weight-number .big-num {
  font-size: 72px;
  font-weight: var(--light);
  line-height: 1;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.weight-number .num-label {
  font-size: 14px;
  font-weight: var(--medium);
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3em;
}

/* Obligations grid */
.obligations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6em;
  max-width: 580px;
  margin: 1.5em auto 0;
}

.obligation-chip {
  font-size: 13px;
  padding: 0.5em 1em;
  border-radius: var(--radius-md);
  color: var(--black);
  white-space: nowrap;
  background: rgba(45, 27, 105, 0.06);
  border: 1px solid rgba(45, 27, 105, 0.1);
}

.obligation-chip:nth-child(1) { background: rgba(245, 212, 208, 0.5); }
.obligation-chip:nth-child(2) { background: rgba(212, 232, 224, 0.5); }
.obligation-chip:nth-child(3) { background: rgba(228, 220, 237, 0.5); }
.obligation-chip:nth-child(4) { background: rgba(245, 224, 200, 0.5); }
.obligation-chip:nth-child(5) { background: rgba(245, 212, 208, 0.4); }
.obligation-chip:nth-child(6) { background: rgba(212, 232, 224, 0.4); }
.obligation-chip:nth-child(7) { background: rgba(228, 220, 237, 0.4); }
.obligation-chip:nth-child(8) { background: rgba(245, 224, 200, 0.4); }

.weight-punchline {
  margin-top: 1.5em;
  font-size: 17px;
  font-weight: var(--light);
  color: var(--gray);
}

.weight-punchline em {
  font-style: normal;
  font-weight: var(--semibold);
  color: var(--black);
}

/*********************************************
 * EVOLVING STACK - STILL BEING WRITTEN
 *********************************************/

.evolving-stack {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  max-width: 400px;
  margin: 1.5em auto;
}

.evolving-item {
  display: flex;
  align-items: center;
  gap: 1em;
}

.evolving-status {
  font-size: 10px;
  font-weight: var(--semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3em 0.8em;
  border-radius: var(--radius-sm);
  min-width: 70px;
  text-align: center;
}

.evolving-status.pending {
  background: rgba(245, 224, 200, 0.6);
  color: #8a6d3b;
}

.evolving-status.unknown {
  background: rgba(228, 220, 237, 0.6);
  color: #6a5080;
}

.evolving-label {
  font-size: 18px;
  font-weight: var(--regular);
  color: var(--black);
}

.evolving-subtext {
  margin-top: 1.5em;
  font-size: 17px;
  font-weight: var(--light);
  color: var(--gray);
}

/*********************************************
 * SIMPLICITY REVEAL - THE PIVOT
 *********************************************/

.simplicity-reveal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
  margin: 2em auto;
  max-width: 600px;
}

.simplicity-question {
  font-size: 26px;
  font-weight: var(--light);
  color: var(--gray);
  text-align: center;
  line-height: 1.4;
}

.simplicity-answer {
  font-size: 28px;
  font-weight: var(--light);
  color: var(--black);
  text-align: center;
  line-height: 1.4;
}

.simplicity-answer em {
  font-style: normal;
  font-weight: var(--semibold);
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*********************************************
 * THREE STEPS TO SANITY
 *********************************************/

.steps-sanity {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  max-width: 400px;
  margin: 1.5em auto;
}

.sanity-step {
  display: flex;
  align-items: center;
  gap: 1em;
}

.sanity-step .step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: var(--semibold);
  color: white;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  flex-shrink: 0;
}

.sanity-step .step-text {
  font-size: 22px;
  font-weight: var(--regular);
  color: var(--black);
}

/*********************************************
 * THE GOOD NEWS
 *********************************************/

.good-news {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  margin: 1.5em auto;
}

.news-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3em;
}

.news-stat .stat-big {
  font-size: 96px;
  font-weight: var(--light);
  line-height: 1;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.news-stat .stat-label {
  font-size: 18px;
  font-weight: var(--regular);
  color: var(--gray);
}

.news-implication {
  margin-top: 0.8em;
  font-size: 17px;
  font-weight: var(--light);
  color: var(--black);
  padding: 0.6em 1.2em;
  background: rgba(212, 232, 224, 0.4);
  border-radius: var(--radius-md);
}

/*********************************************
 * TAMING FLOW - CHAOS TO CLARITY
 *********************************************/

.taming-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  margin: 1.5em auto;
}

/* Left side: chaos */
.flow-chaos {
  display: flex;
  flex-wrap: wrap;
  width: 160px;
  gap: 0.4em;
  justify-content: center;
}

.chaos-item {
  font-size: 11px;
  padding: 0.3em 0.6em;
  border-radius: var(--radius-sm);
  background: rgba(245, 212, 208, 0.5);
  color: var(--gray);
  white-space: nowrap;
}

.chaos-item:nth-child(1) { transform: rotate(-3deg); background: rgba(245, 212, 208, 0.5); }
.chaos-item:nth-child(2) { transform: rotate(2deg); background: rgba(212, 232, 224, 0.5); }
.chaos-item:nth-child(3) { transform: rotate(-1deg); background: rgba(228, 220, 237, 0.5); }
.chaos-item:nth-child(4) { transform: rotate(3deg); background: rgba(245, 224, 200, 0.5); }
.chaos-item:nth-child(5) { transform: rotate(-2deg); background: rgba(245, 212, 208, 0.4); }
.chaos-item:nth-child(6) { transform: rotate(1deg); background: rgba(212, 232, 224, 0.4); }

/* Center: funnel */
.flow-funnel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.funnel-top {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 40px solid rgba(45, 27, 105, 0.15);
}

.funnel-label {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  color: var(--white);
  padding: 0.6em 1.2em;
  font-size: 13px;
  font-weight: var(--semibold);
  border-radius: var(--radius-sm);
  margin: -2px 0;
}

.funnel-bottom {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 25px solid rgba(45, 27, 105, 0.15);
}

/* Right side: clarity */
.flow-clarity {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  align-items: flex-start;
}

.clarity-item {
  font-size: 14px;
  font-weight: var(--medium);
  padding: 0.5em 1em;
  border-radius: var(--radius-md);
  background: rgba(212, 232, 224, 0.5);
  color: var(--black);
  border-left: 3px solid var(--gradient-mid);
}

/*********************************************
 * CONWAY INTEGRATION - PRACTICAL EXAMPLES
 *********************************************/

.conway-integration {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 600px;
  margin: 1.5em auto;
}

.integration-row {
  display: flex;
  align-items: center;
  gap: 1em;
}

.integration-dept {
  font-size: 15px;
  font-weight: var(--semibold);
  color: var(--black);
  min-width: 160px;
  text-align: right;
}

.integration-arrow {
  font-size: 20px;
  color: var(--gradient-mid);
  font-weight: var(--light);
}

.integration-outcome {
  font-size: 14px;
  font-weight: var(--regular);
  color: var(--black);
  padding: 0.5em 1em;
  background: rgba(212, 232, 224, 0.4);
  border-radius: var(--radius-md);
  flex: 1;
}

.integration-row:nth-child(1) .integration-outcome { background: rgba(245, 212, 208, 0.4); }
.integration-row:nth-child(2) .integration-outcome { background: rgba(212, 232, 224, 0.4); }
.integration-row:nth-child(3) .integration-outcome { background: rgba(228, 220, 237, 0.4); }
.integration-row:nth-child(4) .integration-outcome { background: rgba(245, 224, 200, 0.4); }
.integration-row:nth-child(5) .integration-outcome { background: rgba(245, 212, 208, 0.4); }
.integration-row:nth-child(6) .integration-outcome { background: rgba(212, 232, 224, 0.4); }

.conway-insight {
  margin-top: 1.5em;
  font-size: 17px;
  font-weight: var(--light);
  color: var(--gray);
  text-align: center;
}

/*********************************************
 * MIRROR - ORG STRUCTURE REFLECTION
 *********************************************/

.mirror {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 320px;
  margin: 2em auto;
}

.mirror-side {
  padding: 1.2em 2em;
  text-align: center;
  width: 100%;
}

.mirror-top {
  background: rgba(212, 232, 224, 0.4);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.mirror-bottom {
  background: rgba(228, 220, 237, 0.4);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.mirror-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(45, 27, 105, 0.2) 20%,
    rgba(45, 27, 105, 0.2) 80%,
    transparent 100%);
  position: relative;
}

.mirror-line::after {
  content: "↕";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--background-creme);
  padding: 0 0.5em;
  font-size: 14px;
  color: rgba(45, 27, 105, 0.3);
}

.mirror-label {
  font-size: 10px;
  font-weight: var(--semibold);
  color: rgba(45, 27, 105, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4em;
}

.mirror-content {
  font-size: 14px;
  color: var(--black);
}

/*********************************************
 * DATA TABLE - STYLED COMPARISON
 *********************************************/

.data-table {
  margin: 1.5em auto;
  border-collapse: collapse;
  font-size: 13px;
}

.data-table th,
.data-table td {
  padding: 0.6em 1em;
  text-align: center;
  border-bottom: 1px solid rgba(107, 91, 138, 0.15);
}

.data-table th {
  font-size: 11px;
  font-weight: var(--semibold);
  color: #6b5b8a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(228, 220, 237, 0.3);
}

.data-table td {
  font-variant-numeric: tabular-nums;
}

.data-table .highlight {
  background: rgba(245, 212, 208, 0.4);
  font-weight: var(--semibold);
  color: #a07070;
}

.data-table .model-name {
  text-align: left;
  font-weight: var(--medium);
}

/*********************************************
 * SOURCE CITATION
 *********************************************/

.source-cite {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.8em 1.2em;
  background: var(--white);
  border: 1px solid rgba(107, 91, 138, 0.15);
  border-radius: var(--radius-md);
  font-size: 13px;
  margin: 1em auto;
}

.source-cite .source-icon {
  font-size: 18px;
  opacity: 0.7;
}

.source-cite .source-text {
  text-align: left;
}

.source-cite .source-title {
  font-weight: var(--semibold);
  color: var(--black);
}

.source-cite .source-meta {
  font-size: 11px;
  color: var(--gray);
}

/*********************************************
 * HARM CATEGORIES - COMPACT TAXONOMY
 *********************************************/

.harm-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7em 1.4em;
  max-width: 580px;
  margin: 2em auto;
}

.harm-cat {
  padding: 0.6em 0.9em 0.6em 0.9em;
  font-size: 13px;
  font-weight: var(--medium);
  letter-spacing: 0.01em;
  border-left: 3px solid var(--cat-accent);
  background: var(--cat-bg);
  text-align: left;
}

/* 9 categories matching taxonomy colors */
.harm-cat:nth-child(1) { --cat-accent: rgba(90, 60, 140, 0.7); --cat-bg: rgba(228, 220, 237, 0.25); }
.harm-cat:nth-child(2) { --cat-accent: rgba(170, 70, 60, 0.7); --cat-bg: rgba(245, 212, 208, 0.25); }
.harm-cat:nth-child(3) { --cat-accent: rgba(170, 110, 40, 0.7); --cat-bg: rgba(245, 224, 200, 0.25); }
.harm-cat:nth-child(4) { --cat-accent: rgba(150, 130, 40, 0.7); --cat-bg: rgba(245, 240, 210, 0.25); }
.harm-cat:nth-child(5) { --cat-accent: rgba(40, 120, 90, 0.7); --cat-bg: rgba(212, 232, 224, 0.25); }
.harm-cat:nth-child(6) { --cat-accent: rgba(40, 90, 150, 0.7); --cat-bg: rgba(200, 220, 240, 0.25); }
.harm-cat:nth-child(7) { --cat-accent: rgba(150, 70, 120, 0.7); --cat-bg: rgba(240, 215, 230, 0.25); }
.harm-cat:nth-child(8) { --cat-accent: rgba(90, 60, 130, 0.7); --cat-bg: rgba(230, 225, 240, 0.25); }
.harm-cat:nth-child(9) { --cat-accent: rgba(50, 120, 50, 0.7); --cat-bg: rgba(210, 235, 210, 0.25); }

/* Fragment animation */
.harm-cat.fragment {
  opacity: 0;
}

.harm-cat.fragment.visible {
  opacity: 1;
  transition: opacity 0.25s ease;
}

/*********************************************
 * IMAGE FRAME - STYLED IMAGE CONTAINER
 *********************************************/

.img-frame {
  display: inline-block;
  padding: 0.5em;
  background: var(--white);
  border: 1px solid rgba(45, 27, 105, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(45, 27, 105, 0.06);
}

.img-frame img {
  display: block;
  border-radius: var(--radius-sm);
  max-width: 100%;
  height: auto;
}

.img-frame.small img {
  max-height: 280px;
  width: auto;
}

.img-frame.medium img {
  max-height: 380px;
  width: auto;
}

.img-frame.large img {
  max-height: 480px;
  width: auto;
}

.img-caption {
  margin-top: 0.8em;
  font-size: 11px;
  color: var(--gray);
  text-align: center;
}

/*********************************************
 * TAXONOMY FULL - COMPLETE HIERARCHY VIEW
 *********************************************/

.taxonomy-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6em 1.4em;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
}

.taxonomy-section {
  padding-left: 0.7em;
  border-left: 2px solid var(--section-color, rgba(45, 27, 105, 0.25));
}

.taxonomy-section h5 {
  margin: 0 0 0.3em 0;
  font-size: 10px;
  font-weight: var(--semibold);
  color: var(--section-title, rgba(45, 27, 105, 0.85));
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.taxonomy-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.taxonomy-section ul li {
  font-size: 9px;
  color: rgba(50, 50, 50, 0.8);
  line-height: 1.45;
  padding: 0.08em 0 0.08em 0.8em;
  position: relative;
}

.taxonomy-section ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--section-color);
  opacity: 0.6;
}

/* Section colors */
.taxonomy-section.sec-autonomy {
  --section-color: rgba(90, 60, 140, 0.6);
  --section-title: rgba(70, 45, 120, 1);
}

.taxonomy-section.sec-physical {
  --section-color: rgba(170, 70, 60, 0.6);
  --section-title: rgba(150, 55, 45, 1);
}

.taxonomy-section.sec-psychological {
  --section-color: rgba(170, 110, 40, 0.6);
  --section-title: rgba(150, 90, 25, 1);
}

.taxonomy-section.sec-reputational {
  --section-color: rgba(150, 130, 40, 0.6);
  --section-title: rgba(130, 110, 25, 1);
}

.taxonomy-section.sec-business {
  --section-color: rgba(40, 120, 90, 0.6);
  --section-title: rgba(25, 100, 70, 1);
}

.taxonomy-section.sec-rights {
  --section-color: rgba(40, 90, 150, 0.6);
  --section-title: rgba(25, 70, 130, 1);
}

.taxonomy-section.sec-societal {
  --section-color: rgba(150, 70, 120, 0.6);
  --section-title: rgba(130, 50, 100, 1);
}

.taxonomy-section.sec-political {
  --section-color: rgba(90, 60, 130, 0.6);
  --section-title: rgba(70, 40, 110, 1);
}

.taxonomy-section.sec-environmental {
  --section-color: rgba(50, 120, 50, 0.6);
  --section-title: rgba(30, 100, 30, 1);
}

/* Fragment animation */
.taxonomy-section.fragment {
  opacity: 0;
}

.taxonomy-section.fragment.visible {
  opacity: 1;
}

/*********************************************
 * TAXONOMY GRID - CARD VERSION (COMPACT)
 *********************************************/

.taxonomy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8em;
  max-width: 920px;
  margin: 1em auto;
  font-size: 10px;
}

.taxonomy-card {
  background: var(--cat-bg, rgba(245, 245, 245, 0.5));
  border: 1px solid var(--cat-border, rgba(45, 27, 105, 0.08));
  border-radius: var(--radius-md);
  padding: 0.7em 0.8em;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}

.taxonomy-card:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 16px rgba(45, 27, 105, 0.12);
  z-index: 10;
  position: relative;
}

.taxonomy-card:hover ul li {
  color: var(--black);
}

/* Smooth entrance for fragments */
.taxonomy-card.fragment {
  opacity: 0;
}

.taxonomy-card.fragment.visible {
  opacity: 1;
}

.taxonomy-card h5 {
  margin: 0 0 0.4em 0;
  font-size: 11px;
  font-weight: var(--semibold);
  color: var(--cat-title, rgba(45, 27, 105, 0.8));
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.4em;
}

.taxonomy-card h5 .cat-icon {
  font-size: 13px;
  opacity: 0.8;
}

.taxonomy-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2em 0.5em;
}

.taxonomy-card ul li {
  font-size: 9px;
  color: var(--gray);
  line-height: 1.4;
  padding: 0;
}

.taxonomy-card ul li::before {
  content: "•";
  margin-right: 0.3em;
  opacity: 0.4;
}

/* Category color variants */
.taxonomy-card.cat-autonomy {
  --cat-bg: rgba(228, 220, 237, 0.4);
  --cat-border: rgba(180, 160, 210, 0.25);
  --cat-title: rgba(90, 60, 140, 0.9);
}

.taxonomy-card.cat-physical {
  --cat-bg: rgba(245, 212, 208, 0.4);
  --cat-border: rgba(220, 160, 150, 0.25);
  --cat-title: rgba(160, 80, 70, 0.9);
}

.taxonomy-card.cat-psychological {
  --cat-bg: rgba(245, 224, 200, 0.4);
  --cat-border: rgba(220, 180, 130, 0.25);
  --cat-title: rgba(160, 100, 50, 0.9);
}

.taxonomy-card.cat-reputational {
  --cat-bg: rgba(245, 240, 210, 0.4);
  --cat-border: rgba(200, 180, 120, 0.25);
  --cat-title: rgba(140, 120, 50, 0.9);
}

.taxonomy-card.cat-business {
  --cat-bg: rgba(212, 232, 224, 0.4);
  --cat-border: rgba(150, 200, 180, 0.25);
  --cat-title: rgba(50, 120, 90, 0.9);
}

.taxonomy-card.cat-rights {
  --cat-bg: rgba(200, 220, 240, 0.4);
  --cat-border: rgba(140, 180, 220, 0.25);
  --cat-title: rgba(50, 90, 140, 0.9);
}

.taxonomy-card.cat-societal {
  --cat-bg: rgba(240, 215, 230, 0.4);
  --cat-border: rgba(210, 170, 200, 0.25);
  --cat-title: rgba(140, 70, 110, 0.9);
}

.taxonomy-card.cat-political {
  --cat-bg: rgba(230, 225, 240, 0.4);
  --cat-border: rgba(180, 170, 210, 0.25);
  --cat-title: rgba(80, 60, 120, 0.9);
}

.taxonomy-card.cat-environmental {
  --cat-bg: rgba(210, 235, 210, 0.4);
  --cat-border: rgba(150, 200, 150, 0.25);
  --cat-title: rgba(50, 110, 50, 0.9);
}

/*********************************************
 * TAXONOMY HOVER TOOLTIP
 *********************************************/

/* List item hover */
.taxonomy-section ul li {
  cursor: pointer;
  border-radius: var(--radius-sm);
  margin-left: -0.3em;
  padding-left: 1.1em;
}

.taxonomy-section ul li::before {
  left: 0.3em;
}

.taxonomy-section ul li:hover {
  background: linear-gradient(90deg, var(--section-color) 0%, transparent 80%);
  color: var(--black);
}

/* Tooltip */
.taxonomy-tooltip {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.taxonomy-tooltip.visible {
  visibility: visible;
}

.taxonomy-tooltip-content {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
  min-width: 180px;
  max-width: 320px;
}

.taxonomy-tooltip-accent {
  height: 2px;
}

.taxonomy-tooltip-body {
  padding: 12px 14px;
}

.taxonomy-tooltip-category {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 4px;
}

.taxonomy-tooltip-subcategory {
  font-size: 17px;
  font-weight: var(--medium);
  color: var(--black);
  line-height: 1.3;
}

/*********************************************
 * TOOL COMPARISON - SIDE BY SIDE BOXES
 *********************************************/

.tool-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  max-width: 700px;
  margin: 1.5em auto;
}

.tool-box {
  padding: 1.5em;
  border-radius: var(--radius-md);
  text-align: left;
}

.tool-box h4 {
  margin: 0 0 1em 0;
  font-size: 15px;
  font-weight: var(--semibold);
  text-align: center;
}

.tool-box ul {
  margin: 0;
  max-width: none;
}

.tool-box ul li {
  font-size: 15px;
  padding: 0.5em 0 0.5em 1.5em;
}

.tool-current {
  background: rgba(245, 212, 208, 0.3);
  border: 1px solid rgba(180, 100, 100, 0.15);
}

.tool-current h4 {
  color: #8a6060;
}

.tool-current ul li::before {
  content: "✗";
  color: #b07070;
  background: none;
  -webkit-text-fill-color: #b07070;
}

.tool-needed {
  background: rgba(212, 232, 224, 0.3);
  border: 1px solid rgba(100, 150, 130, 0.15);
}

.tool-needed h4 {
  color: #5a8a7a;
}

.tool-needed ul li::before {
  content: "✓";
  color: #6a9a8a;
  background: none;
  -webkit-text-fill-color: #6a9a8a;
}

/*********************************************
 * GRC EVOLUTION - Transformation Visual
 *********************************************/

.grc-evolution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  max-width: 900px;
  margin: 2em auto;
}

.evolution-side {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 1.5em 2em;
  width: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.evolution-side:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.evolution-old {
  border: 1px solid rgba(138, 107, 107, 0.2);
  border-top: 3px solid #8a6b6b;
}

.evolution-new {
  border: 1px solid rgba(90, 138, 122, 0.2);
  border-top: 3px solid #5a8a7a;
}

.evolution-header {
  font-size: 13px;
  font-weight: var(--semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2em;
  text-align: center;
}

.evolution-old .evolution-header {
  color: #8a6b6b;
}

.evolution-new .evolution-header {
  color: #5a8a7a;
}

.evolution-items {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}

.evo-item {
  display: flex;
  align-items: center;
  gap: 0.8em;
  padding: 0.5em 0;
}

.evo-item svg {
  flex-shrink: 0;
}

.evo-item span {
  font-size: 15px;
  color: var(--black);
}

.evolution-old .evo-item span {
  color: #666;
}

.evolution-new .evo-item span {
  font-weight: var(--medium);
}

.evolution-transform {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5em;
}

/*********************************************
 * INVENTORY ILLUSION - Dramatic Reveal Design
 *********************************************/

/* Stage - contains overlapping facade and truth */
.illusion-stage {
  position: relative;
  width: 600px;
  height: 320px;
  margin: 1.5em auto 1em;
}

/* The Promise - Polished facade card */
.illusion-facade {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  background: linear-gradient(145deg, #ffffff 0%, #f8f8f8 100%);
  border-radius: var(--radius-lg);
  padding: 1.5em 2em 1.8em;
  box-shadow:
    0 10px 40px rgba(107, 91, 138, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(107, 91, 138, 0.12);
  z-index: 2;
  overflow: hidden;
}

/* Subtle "premium" corner fold effect */
.facade-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, transparent 50%, rgba(107, 91, 138, 0.08) 50%);
}

.facade-header {
  display: flex;
  align-items: center;
  gap: 0.8em;
  margin-bottom: 1.2em;
  padding-bottom: 0.8em;
  border-bottom: 1px solid rgba(107, 91, 138, 0.1);
}

.facade-badge {
  flex-shrink: 0;
}

.facade-title {
  font-size: 1.3em;
  font-weight: var(--semibold);
  color: #6b5b8a;
  letter-spacing: 0.02em;
}

.facade-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6em;
  margin-bottom: 1.2em;
}

.facade-item {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.85em;
  color: var(--black);
  padding: 0.5em 0.7em;
  background: rgba(212, 232, 224, 0.25);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(90, 138, 106, 0.15);
}

.check-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: #5a8a6a;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.check-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 4px;
  height: 7px;
  border: solid white;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.facade-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: 0.9em;
  font-weight: var(--semibold);
  color: #5a8a6a;
  padding: 0.6em 1em;
  background: rgba(212, 232, 224, 0.4);
  border-radius: var(--radius-pill);
  width: fit-content;
  margin: 0 auto;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #5a8a6a;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

/* The Reality - Messy, uncertain underneath */
.illusion-truth {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  background: linear-gradient(145deg, #fdfaf8 0%, #f5f0ed 100%);
  border-radius: var(--radius-lg);
  padding: 1.5em 2em 1.8em;
  border: 2px dashed rgba(204, 153, 153, 0.4);
  z-index: 1;
}

.truth-header {
  display: flex;
  align-items: center;
  gap: 0.8em;
  margin-bottom: 1.2em;
  padding-bottom: 0.8em;
  border-bottom: 1px dashed rgba(204, 153, 153, 0.3);
}

.truth-badge {
  flex-shrink: 0;
}

.truth-title {
  font-size: 1.3em;
  font-weight: var(--medium);
  color: #996666;
  letter-spacing: 0.02em;
}

/* Chaotic scattered items */
.truth-chaos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-bottom: 1.2em;
  min-height: 100px;
  align-content: flex-start;
}

.chaos-item {
  font-size: 0.8em;
  padding: 0.4em 0.7em;
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease;
}

/* Known items - solid but isolated */
.chaos-item.known {
  background: rgba(212, 232, 224, 0.5);
  border: 1px solid rgba(90, 138, 106, 0.3);
  color: #5a8a6a;
}

/* Partial - somewhat known */
.chaos-item.partial {
  background: rgba(245, 224, 200, 0.5);
  border: 1px dashed rgba(180, 140, 80, 0.4);
  color: #8a7050;
}

/* Unknown - question marks */
.chaos-item.unknown {
  background: rgba(200, 200, 200, 0.2);
  border: 1px dashed rgba(150, 150, 150, 0.4);
  color: #999;
  font-weight: var(--medium);
  transform: rotate(var(--rotation, 0deg));
}

.chaos-item.unknown:nth-child(2) { --rotation: -2deg; }
.chaos-item.unknown:nth-child(3) { --rotation: 1deg; }
.chaos-item.unknown:nth-child(5) { --rotation: -1deg; }
.chaos-item.unknown:nth-child(7) { --rotation: 2deg; }

/* Shadow AI - concerning */
.chaos-item.shadow {
  background: rgba(245, 212, 208, 0.6);
  border: 1px solid rgba(204, 153, 153, 0.5);
  color: #996666;
  font-weight: var(--medium);
}

/* Forgotten POCs */
.chaos-item.forgotten {
  background: rgba(228, 220, 237, 0.4);
  border: 1px dashed rgba(107, 91, 138, 0.3);
  color: #8b7baa;
  font-style: italic;
}

/* The pointed question */
.truth-question {
  text-align: center;
  font-size: 1em;
  font-weight: var(--medium);
  color: #996666;
  font-style: italic;
  padding-top: 0.5em;
  border-top: 1px dashed rgba(204, 153, 153, 0.3);
}

/* Revelation punchline - dramatic emphasis */
.illusion-revelation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
  margin-top: 1.5em;
  padding: 1em 0;
}

.revelation-line {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(107, 91, 138, 0.3), transparent);
}

.revelation-content {
  text-align: center;
}

.revelation-prefix {
  display: block;
  font-size: 1.1em;
  color: var(--gray);
  font-weight: var(--regular);
  margin-bottom: 0.3em;
}

.revelation-word {
  display: block;
  font-size: 2.2em;
  font-weight: var(--bold);
  background: linear-gradient(135deg, #6b5b8a 0%, #8b7baa 50%, #6b5b8a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* Legacy classes preserved for backward compatibility */
.illusion-punchline {
  text-align: center;
  margin-top: 2em;
  padding: 1em 2em;
  background: linear-gradient(135deg, rgba(107, 91, 138, 0.08), rgba(107, 91, 138, 0.03));
  border-radius: var(--radius-lg);
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.reveal .illusion-punchline {
  display: block;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.punchline-text {
  font-size: 1.3em;
  color: var(--black);
  font-weight: var(--regular);
}

.punchline-emphasis {
  font-size: 1.5em;
  font-weight: var(--bold);
  background: linear-gradient(135deg, #6b5b8a, #8b7baa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 0.2em;
}

/* Legacy support - keep for other slides that might use these */
.inventory-intro {
  font-size: 1.3em;
  color: var(--gray);
  margin-bottom: 0.3em;
}

/*********************************************
 * QUESTIONNAIRE MAZE SLIDE
 *********************************************/

.questionnaire-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  width: 100%;
  height: 100%;
}

.questionnaire-title {
  flex: 0 0 auto;
  text-align: left;
}

.questionnaire-title h2 {
  font-size: 2.5em;
  line-height: 1.1;
  margin: 0;
}

.questionnaire-chart {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 70vh;
  overflow: hidden;
}

.questionnaire-chart img {
  max-height: 70vh;
  width: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/*********************************************
 * SIMPLIFICATION FLOW - Three-step visual
 *********************************************/

.simplification-flow {
  max-width: 800px;
  margin: 0 auto;
}

.simplification-flow h3 {
  font-size: 28px;
  font-weight: var(--light);
  margin-bottom: 1.5em;
  color: var(--black);
}

.simplification-steps {
  display: flex;
  align-items: stretch;
  gap: 2em;
  margin: 2em 0;
}

.simplification-step {
  flex: 1;
  border-radius: var(--radius-lg);
  padding: 1.5em 1.2em;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.simplification-step.sage { background: var(--sage); }
.simplification-step.coral { background: var(--coral); }
.simplification-step.lavender { background: var(--lavender); }

.simplification-step .step-icon {
  font-size: 42px;
  margin-bottom: 0.3em;
}

.simplification-step .step-label {
  font-size: 15px;
  font-weight: var(--semibold);
  color: var(--black);
  line-height: 1.3;
}

.simplification-arrow {
  flex: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--gray);
}

.simplification-example {
  background: linear-gradient(145deg, rgba(245, 224, 200, 0.5), rgba(253, 245, 240, 0.6));
  border: 1px solid rgba(245, 212, 208, 0.4);
  border-radius: var(--radius-lg);
  padding: 1.2em 1.8em;
  margin-top: 2em;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.simplification-example .example-label {
  font-size: 13px;
  font-weight: var(--medium);
  color: #c4908a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.6em;
}

.simplification-example .example-text {
  font-size: 20px;
  color: var(--black);
  line-height: 1.5;
}

/*********************************************
 * DISCLAIMER CARD VARIANTS
 *********************************************/

.disclaimer-card.sage {
  background: linear-gradient(145deg, rgba(212, 232, 224, 0.8), rgba(195, 222, 210, 0.6));
  border-color: rgba(170, 210, 190, 0.5);
}

.disclaimer-card.lavender {
  background: linear-gradient(145deg, rgba(228, 220, 237, 0.8), rgba(215, 205, 230, 0.6));
  border-color: rgba(195, 180, 215, 0.5);
}

/*********************************************
 * CENTERED PARAGRAPH VARIANTS
 *********************************************/

.reveal p.centered {
  text-align: center;
}

.reveal p.lead {
  font-size: 1.4em;
  color: #555;
  text-align: center;
  margin-bottom: 1.5em;
}

/*********************************************
 * BEYOND THE HYPE - TWO COLUMN LAYOUT
 *********************************************/

.hype-container {
  display: flex;
  justify-content: center;
  gap: 3em;
  margin-top: 1.5em;
}

.hype-card {
  flex: 1;
  max-width: 380px;
  text-align: center;
}

.hype-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hype-icon.sage {
  background: linear-gradient(135deg, var(--sage), #b8d4c8);
}

.hype-icon.coral {
  background: linear-gradient(135deg, var(--coral), #e8b8b0);
}

.hype-icon span {
  font-size: 2em;
}

.hype-title {
  font-size: 1.5em;
  font-weight: var(--medium);
  margin: 0 0 0.5em 0;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hype-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4em;
  margin-top: 0.8em;
}

.hype-tag {
  padding: 0.3em 0.7em;
  border-radius: var(--radius-pill);
  font-size: 0.75em;
}

.hype-tag.sage { background: var(--sage); }
.hype-tag.coral { background: var(--coral); }

/*********************************************
 * STRATEGIC GUIDANCE - GRID LAYOUT
 *********************************************/

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5em;
  max-width: 900px;
  margin: 1.2em auto;
}

.strategy-card {
  padding: 1.4em;
  border-radius: var(--radius-lg);
  text-align: left;
  display: flex;
  gap: 1em;
  align-items: flex-start;
}

.strategy-card.sage { background: rgba(212, 232, 224, 0.5); }
.strategy-card.coral { background: rgba(245, 212, 208, 0.5); }
.strategy-card.lavender { background: rgba(228, 220, 237, 0.5); }
.strategy-card.amber { background: rgba(245, 224, 200, 0.5); }

.strategy-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.strategy-icon.sage { background: linear-gradient(135deg, #d4e8e0, #b8d4c8); }
.strategy-icon.coral { background: linear-gradient(135deg, #f5d4d0, #e8b8b0); }
.strategy-icon.lavender { background: linear-gradient(135deg, #e4dced, #d0c4e0); }
.strategy-icon.amber { background: linear-gradient(135deg, #f5e0c8, #e8d0b0); }

.strategy-icon span {
  font-size: 1.3em;
}

.strategy-content h4 {
  font-size: 1em;
  font-weight: var(--semibold);
  margin: 0;
  color: var(--black);
}

.strategy-content p {
  font-size: 0.85em;
  color: var(--gray);
  margin: 0.4em 0 0 0;
  line-height: 1.4;
}

.strategy-highlight {
  background: linear-gradient(135deg, rgba(45, 27, 105, 0.12), rgba(17, 153, 142, 0.12));
  padding: 1.2em 1.6em;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 900px;
  margin: 0.8em auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8em;
}

.strategy-highlight span {
  font-size: 1.5em;
}

.strategy-highlight p {
  font-size: 1em;
  margin: 0;
}

/*********************************************
 * CONTACT / Q&A LAYOUT
 *********************************************/

.contact-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4em;
  margin-top: 1.5em;
}

.contact-qr {
  flex-shrink: 0;
}

.contact-qr img {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-info {
  text-align: left;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 0.8em;
}

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

.contact-row span:first-child {
  font-size: 1.3em;
}

.contact-row span:last-child {
  font-size: 1.1em;
}

/*********************************************
 * AGENTIC DIFFERENCE - VISUAL COMPARISON
 *********************************************/

.agentic-diff {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin-top: 1.5em;
}

.agentic-card {
  flex: 1;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 1.8em 1.5em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.agentic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.agentic-card.coral::before {
  background: linear-gradient(90deg, #e8a090, #f5d4d0);
}

.agentic-card.sage::before {
  background: linear-gradient(90deg, #8bc4a8, #d4e8e0);
}

.agentic-card.lavender::before {
  background: linear-gradient(90deg, #b8a0d0, #e4dced);
}

.agentic-visual {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
}

.agentic-card.coral .agentic-visual {
  background: linear-gradient(135deg, rgba(245, 212, 208, 0.6), rgba(245, 212, 208, 0.2));
}

.agentic-card.sage .agentic-visual {
  background: linear-gradient(135deg, rgba(212, 232, 224, 0.6), rgba(212, 232, 224, 0.2));
}

.agentic-card.lavender .agentic-visual {
  background: linear-gradient(135deg, rgba(228, 220, 237, 0.6), rgba(228, 220, 237, 0.2));
}

.agentic-visual svg {
  width: 36px;
  height: 36px;
}

.agentic-card h4 {
  font-size: 1.1em;
  font-weight: var(--semibold);
  color: var(--black);
  margin: 0 0 0.6em 0;
  text-align: center;
}

.agentic-card p {
  font-size: 0.85em;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.agentic-card .keyword {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75em;
  background: rgba(0, 0, 0, 0.04);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  margin: 0 0.1em;
}

/* Connector lines between cards */
.agentic-diff::after {
  display: none; /* Can enable for connected look */
}

/* Comparison header - Traditional vs Agentic */
.agentic-compare {
  display: flex;
  justify-content: center;
  gap: 4em;
  margin-bottom: 1.8em;
  padding: 1em 0;
}

.compare-old,
.compare-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6em;
}

.compare-label {
  font-size: 0.75em;
  font-weight: var(--semibold);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
}

.compare-old .compare-label {
  color: #888;
}

.compare-new .compare-label {
  color: #6a5a8a;
}

.compare-old svg,
.compare-new svg {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.06));
}

/* Larger visual icons */
.agentic-visual svg {
  width: 48px;
  height: 48px;
}

/*********************************************
 * GOVERNANCE CHALLENGES - SLEEK CARDS
 *********************************************/

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8em;
  max-width: 820px;
  margin: 1.2em auto;
}

.challenge-card {
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  padding: 1em 1em 1em 1.2em;
  text-align: left;
  position: relative;
  border-left: 3px solid;
}

.challenge-card.red { border-left-color: #d06050; }
.challenge-card.orange { border-left-color: #d09040; }
.challenge-card.purple { border-left-color: #8060a0; }
.challenge-card.blue { border-left-color: #4080b0; }

.challenge-icon {
  display: none;
}

.challenge-content h4 {
  font-size: 0.9em;
  font-weight: var(--semibold);
  color: var(--black);
  margin: 0 0 0.4em 0;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.challenge-content h4::before {
  font-size: 0.9em;
}

.challenge-card.red .challenge-content h4::before { content: '🔓'; }
.challenge-card.orange .challenge-content h4::before { content: '💸'; }
.challenge-card.purple .challenge-content h4::before { content: '⚖️'; }
.challenge-card.blue .challenge-content h4::before { content: '💉'; }

.challenge-myth {
  display: inline;
  font-size: 0.8em;
  color: var(--gray);
  text-decoration: line-through;
  opacity: 0.7;
}

.challenge-myth::before,
.challenge-myth::after {
  content: none;
}

.challenge-reality {
  display: inline;
  font-size: 0.8em;
  color: var(--black);
  line-height: 1.5;
  margin-left: 0.4em;
}

.challenge-reality::before {
  content: '→ ';
  color: var(--gray);
}

/*********************************************
 * THAT'S IT
 *********************************************/
