/* 
  IBRAHIM MKUNZI - PILLARS OF CREATION & NEBULA ARCHITECTURE
  Concept: Cosmic Nebula Voids • Deep Pillars of Creation Particle Canvas • Pure Black Surface Blend • Full Color Portrait
*/

:root {
  /* Absolute Black & Nebula Void Palette */
  --bg-black: #000000;
  --bg-card: rgba(0, 0, 0, 0.75);
  --bg-card-hover: rgba(14, 14, 18, 0.85);
  --bg-pill: rgba(0, 0, 0, 0.8);

  --border-stark: #ffffff;
  --border-subtle: #222226;
  --border-mid: #333338;
  --border-hover: #555560;

  --text-white: #ffffff;
  --text-silver: #f1f5f9;
  --text-muted: #cbd5e1;
  --text-dim: #94a3b8;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;

  --radius-full: 9999px;
  --radius-large: 44px;
  --radius-card: 32px;
  --radius-inner: 20px;

  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
  background-color: #000000;
  color: var(--text-white);
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: transparent;
  color: var(--text-white);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Background Particle Canvas (Realistic Deep Pitch Black Starfield) */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  display: block;
  background-color: #000000;
  opacity: 1;
}

main {
  position: relative;
  z-index: 1;
}

.footer {
  position: relative;
  z-index: 1;
}

/* Typography Helpers */
h1,
h2,
h3,
h4,
.font-heading {
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text-white);
}

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

/* Curved Containers */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-padding {
  padding: 90px 0;
  background: transparent;
}

/* Fluid Pill Tag */
.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  background: var(--bg-pill);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-full);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(2.4rem, 4.8vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-white);
}

.section-subtitle {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 680px;
  margin: 0 auto 48px auto;
  font-weight: 400;
  line-height: 1.7;
}

/* ==========================================================================
   FLOATING CURVED SOLID NAVBAR
   ========================================================================== */
.navbar-wrapper {
  position: fixed;
  top: 18px;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  pointer-events: none;
}

.navbar {
  pointer-events: auto;
  width: 100%;
  max-width: 1060px;
  background: #000000;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-full);
  padding: 10px 16px 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 1);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: var(--radius-full);
}

.badge-logo-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.brand-crest {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: var(--text-white);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.nav-link {
  color: var(--text-silver);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: #000000;
  background: var(--text-white);
}

.nav-cta-btn {
  background: var(--text-white);
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--text-white);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-cta-btn:hover {
  background: #000000;
  color: var(--text-white);
}

.mobile-menu-toggle {
  display: none;
  background: #000000;
  border: 1px solid var(--border-mid);
  color: var(--text-white);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.98);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 16px;
  right: -100%;
  width: 88vw;
  max-width: 340px;
  height: calc(100vh - 32px);
  background: #000000;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-card);
  z-index: 1050;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.active {
  right: 16px;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

.mobile-nav-close {
  background: #000000;
  border: 1px solid var(--border-mid);
  color: var(--text-white);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
}

.mobile-nav-link {
  padding: 14px 20px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  text-decoration: none;
  background: #000000;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: var(--text-white);
  color: #000000;
  border-color: var(--text-white);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.hero-card-container {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-large);
  padding: 60px 52px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.hero-name {
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 12px;
}

.hero-former-name {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.hero-archetype-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.archetype-pill {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-subtle);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-silver);
}

.hero-bio {
  font-size: 1.025rem;
  color: var(--text-silver);
  margin-bottom: 34px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-pill-primary {
  background: var(--text-white);
  color: #000000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.925rem;
  padding: 16px 34px;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--text-white);
  transition: var(--transition-fast);
}

.btn-pill-primary:hover {
  background: #000000;
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-pill-secondary {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-mid);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.925rem;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.btn-pill-secondary:hover {
  background: var(--text-white);
  color: #000000;
  border-color: var(--text-white);
}

/* Portrait Hero Capsule (Full Color Image) */
.hero-image-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portrait-capsule-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-large);
  padding: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  transition: var(--transition-smooth);
}

.portrait-capsule-wrapper:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.portrait-capsule-frame {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  background: #000000;
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.05) brightness(1.02);
  transition: transform 0.5s ease;
}

.portrait-capsule-wrapper:hover .portrait-img {
  transform: scale(1.03);
}

.portrait-badge-pill {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-full);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.portrait-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--text-white);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.portrait-badge-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

.portrait-badge-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}

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

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-mid);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  color: var(--text-white);
  cursor: pointer;
  background: #000000;
  border: 1px solid var(--border-mid);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   TICKER MARQUEE
   ========================================================================== */
.ticker-section {
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.ticker-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll-ticker 35s linear infinite;
}

@keyframes scroll-ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-silver);
  white-space: nowrap;
}

.ticker-star {
  color: var(--text-white);
}

/* ==========================================================================
   THE 26-YEAR CRUCIBLE (TIMELINE)
   ========================================================================== */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 38px 32px;
  transition: var(--transition-smooth);
}

.timeline-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.timeline-year-pill {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-white);
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-mid);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.timeline-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.timeline-desc {
  color: var(--text-silver);
  font-size: 0.925rem;
  line-height: 1.7;
}

/* ==========================================================================
   THE SINGLE OFFICIAL BLOG & PODCAST TRANSMISSIONS HUB
   ========================================================================== */
.blog-hub-card {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-large);
  padding: 60px 48px;
  text-align: center;
}

.blog-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.blog-feature-item {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-inner);
  padding: 30px 22px;
  text-align: left;
  transition: var(--transition-smooth);
}

.blog-feature-item:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.blog-feature-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: inline-block;
}

.blog-feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.blog-feature-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.blog-cta-banner {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-full);
  padding: 22px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
  text-align: left;
}

.blog-cta-text h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 4px;
}

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

/* ==========================================================================
   FOUNDATIONS & ECOSYSTEM
   ========================================================================== */
.ventures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.venture-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.venture-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.venture-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-inner);
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
}

.venture-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.venture-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.venture-desc {
  color: var(--text-silver);
  font-size: 0.925rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

.venture-link-pill {
  align-self: flex-start;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-mid);
  color: var(--text-white);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 700;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.venture-link-pill:hover {
  background: var(--text-white);
  color: #000000;
  border-color: var(--text-white);
}

/* ==========================================================================
   CAUSES & PILLARS GRID
   ========================================================================== */
.causes-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-silver);
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.825rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-pill.active,
.filter-pill:hover {
  background: var(--text-white);
  color: #000000;
  font-weight: 700;
  border-color: var(--text-white);
}

.causes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.cause-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-inner);
  padding: 28px 22px;
  transition: var(--transition-smooth);
}

.cause-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.cause-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: inline-block;
}

.cause-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.cause-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   MANIFESTO & PHILOSOPHY
   ========================================================================== */
.manifesto-box {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-card);
  padding: 52px 44px;
}

.manifesto-text {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-family: var(--font-heading);
  color: var(--text-white);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 32px;
}

.manifesto-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--text-white);
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Philosophy Accordion */
.accordion-group {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-inner);
  overflow: hidden;
  transition: var(--transition-fast);
}

.accordion-item.active {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.accordion-header {
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.accordion-title {
  font-size: 1.1rem;
  font-weight: 700;
}

.accordion-icon {
  font-size: 1rem;
  color: var(--text-white);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
  padding: 0 26px;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 26px 22px 26px;
}

.accordion-body {
  color: var(--text-silver);
  font-size: 0.925rem;
  line-height: 1.7;
}

/* ==========================================================================
   SOCIALS SECTION
   ========================================================================== */
.socials-section {
  padding: 70px 0;
  text-align: center;
  background: transparent;
}

.socials-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.social-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 12px 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.social-pill:hover {
  background: var(--text-white);
  color: #000000;
  border-color: var(--text-white);
  transform: translateY(-2px);
}

.social-pill img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* ==========================================================================
   CONSCIOUSNESS PLEDGE / MOVEMENT SECTION
   ========================================================================== */
.pledge-card {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-card);
  padding: 52px 40px;
  max-width: 760px;
  margin: 0 auto;
}

.pledge-badge-modal {
  display: none;
  margin-top: 28px;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-inner);
  padding: 24px;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  padding: 50px 0 35px 0;
  text-align: center;
  background: #000000;
  border-top: 1px solid var(--border-subtle);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius-full);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
}

.footer-quote {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 560px;
  margin: 0 auto 24px auto;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-archetype-pills {
    justify-content: center;
  }

  .hero-bio {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .portrait-capsule-wrapper {
    max-width: 340px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .navbar-wrapper {
    top: 12px;
    padding: 0 12px;
  }

  .hero-card-container {
    padding: 36px 20px;
    border-radius: var(--radius-card);
  }

  .hero-section {
    padding-top: 95px;
    padding-bottom: 40px;
  }

  .hero-name {
    font-size: clamp(1.8rem, 6.5vw, 2.6rem);
  }

  .btn-pill-primary,
  .btn-pill-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .blog-hub-card {
    padding: 36px 20px;
    border-radius: var(--radius-card);
  }

  .blog-cta-banner {
    border-radius: var(--radius-card);
    padding: 20px;
    text-align: center;
    justify-content: center;
  }

  .pledge-card {
    padding: 32px 18px;
    border-radius: var(--radius-card);
  }

  .manifesto-box {
    padding: 32px 20px;
    border-radius: var(--radius-card);
  }

  .section-padding {
    padding: 50px 0;
  }

  .desktop-only-btn {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: 0 8px;
  }

  .portrait-capsule-wrapper {
    max-width: 290px;
  }
}

/* ==========================================================================
   MKUNZI NAME STORY & ETIMOLOGY STYLES
   ========================================================================== */
.hero-name-story-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 16px;
  padding: 8px 18px;
  background: rgba(27, 27, 27, 0.05);
  border: 1px solid rgba(32, 33, 33, 0.2);
  border-radius: var(--radius-full);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  margin-left: 0.5vw;
}

.hero-name-story-badge:hover {
  background: var(--text-white);
  color: var(--bg-black);
  border-color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.hero-name-story-badge .badge-icon {
  font-size: 1rem;
}

.hero-name-story-badge .pill-arrow {
  transition: transform 0.2s ease;
}

.hero-name-story-badge:hover .pill-arrow {
  transform: translateX(4px);
}

.story-hero-banner {
  width: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-mid);
  margin-top: 30px;
  margin-bottom: 40px;
  background: #000;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
}

.story-hero-banner img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.model-card {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.model-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.model-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.model-card:hover::before {
  opacity: 1;
}

.model-number-badge {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.model-root-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--text-silver);
}

.model-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-white);
  line-height: 1.3;
}

.model-subtitle {
  font-size: 0.9rem;
  color: var(--text-silver);
  font-weight: 600;
  margin-bottom: 16px;
  font-style: italic;
}

.model-desc {
  color: #f1f5f9;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 400;
}

.etymology-matrix-card {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-card);
  padding: 40px;
  margin: 50px 0;
}

.etymology-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  text-align: left;
}

.etymology-table th {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px;
  border-bottom: 2px solid var(--border-hover);
  color: var(--text-white);
}

.etymology-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-silver);
  font-size: 0.95rem;
}

.etymology-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.faq-accordion {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.back-home-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.back-home-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: var(--transition-fast);
}

.back-home-link:hover {
  color: var(--text-white);
}