:root {
  --bg-dark: #1A1A1A;
  /* Executive Black */
  --bg-card: #2C2C2A;
  /* Charcoal */
  --bg-card-light: #444441;
  /* Medium Gray */
  --text-main: #FFFFFF;
  /* Clean White */
  --text-muted: #999896;
  /* Light Gray */

  /* The Fallback / Solid Gold */
  --accent-gold: #D4AF37;
  --accent-gold-hover: #F1D570;
  --border-color: #444441;

  /* Smooth Metallic Gradients for optimal visibility */
  --gold-gradient: linear-gradient(to right, #D4AF37, #FFF08A, #D4AF37);
  --gold-gradient-hover: linear-gradient(to right, #EAC756, #FFFFFF, #EAC756);

  --font-primary: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Animations */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes pulseGold {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Shiny Text Utility */
.shiny-text {
  background: var(--gold-gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent-gold);
  /* Fallback */
  animation: shimmer 8s linear infinite;
}

/* Utilities */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border-width: 0;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold-gradient);
  background-size: 200% auto;
  color: #000;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background-position: right center;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
  color: #000;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 2px solid var(--accent-gold);
  box-shadow: inset 0 0 0 0 var(--accent-gold);
}

.btn-outline:hover {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #000;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 0.95rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0.75rem 5%;
  background-color: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
  min-height: 70px;
}

/* Offset navbar when standard urgency banner is present */
.urgency-banner+.navbar {
  top: 32px;
}

.nav-container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  max-width: 1600px !important;
  margin: 0 auto !important;
  width: 100% !important;
}

@media (max-width: 767px) {
  .nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    width: 100%;
    align-items: center;
  }

  .menu-toggle {
    grid-column: 1;
    justify-self: start;
    order: 1;
  }

  .logo-link {
    grid-column: 2;
    justify-self: center;
    order: 2;
    display: flex;
    align-items: center;
  }

  .btn.btn-primary {
    grid-column: 3;
    justify-self: end;
    order: 3;
    padding: 0.6rem 1.2rem;
    font-size: 0.72rem;
    white-space: nowrap;
    border-radius: 4px;
  }
}

.nav-links {
  display: none;
  /* Hidden by default on mobile, toggled via JS */
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--bg-dark);
  flex-direction: column;
  padding: 2rem;
  gap: 1.5rem;
  border-bottom: 2px solid var(--accent-gold);
}

.nav-links.active {
  display: flex;
}

@media (min-width: 768px) {
  .navbar {
    padding: 1.5rem 5%;
    min-height: 120px;
  }

  .nav-links {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    padding: 0 !important;
    gap: 6rem !important;
    /* Even more spread */
    width: auto !important;
    background: none !important;
    border: none !important;
    margin: 0 !important;
  }
}

.menu-toggle {
  display: block;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.brand-logo-img {
  height: 52px;
  width: auto;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

@media (min-width: 768px) {
  .brand-logo-img {
    height: 85px;
  }
}

.brand-logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.7));
}

.nav-links a {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links a:hover {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 0;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    height: 100vh;
    min-height: 800px;
    padding-bottom: 0;
    padding-top: 80px;
    overflow: visible;
  }
}

/* Mobile: image fills the entire hero as a background */
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

/* Dark gradient overlay for text readability on mobile */
.hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.6) 50%,
      rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero-image {
    position: relative;
    flex: 1;
    height: 100%;
  }

  .hero-image::after {
    display: none;
  }
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%) contrast(1.2);
}

/* Mobile: text overlays the background image, centered */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1;
}

@media (min-width: 768px) {
  .hero-content {
    flex: 1;
    padding: 0 5%;
    align-items: flex-start;
    text-align: left;
  }

  /* Optical baseline alignment for varying font sizes */
  .hero-subtitle,
  .hero-description,
  .hero-content .btn-primary {
    margin-left: 5px;
  }
}


.hero-content.centered {
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.hero-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  text-transform: uppercase;
  background: var(--gold-gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.accent-gold {
  background: var(--gold-gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s ease-in-out infinite alternate;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 450px;
  line-height: 1.6;
}

/* Trust Bar Marquee */
.trust-bar {
  padding: 3rem 5%;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.container-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.trust-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-align: center;
  width: 100%;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Masking edges for smooth fade */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  white-space: nowrap;
  animation: scrollMarquee 40s linear infinite;
  width: max-content;
}

.partner {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dot {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-left: 1rem;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.333%);
  }
}

.proof-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.2;
}

.telly-badge {
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  white-space: nowrap;
}

/* Essential Bio Section */
.bio-section {
  padding: 4rem 5%;
  width: 100%;
  background-color: var(--bg-card);
}

@media (min-width: 768px) {
  .bio-section {
    padding: 6rem 5%;
  }
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .bio-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
}

.bio-header {
  max-width: 1400px;
  margin: 0 auto 3rem auto;
}

.bio-header h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

/* Specific fix for underline visibility with shiny-text background-clip */
.bio-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--gold-gradient);
  background-size: 200% auto;
  animation: shimmer 6s infinite linear;
  -webkit-text-fill-color: initial;
  /* Reset fill for pseudo-element */
  z-index: 10;
}

.bio-image img {
  width: 100%;
  border-radius: 4px;
  filter: grayscale(100%);
  border-bottom: 4px solid var(--accent-gold);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.bio-conclusion {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.2rem;
  line-height: 1.7;
}

.bio-conclusion strong.gold {
  color: var(--accent-gold);
  font-weight: 700;
}

.bio-lead {
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  /* Tight connection to story */
  max-width: 800px;
}

.bio-story-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  padding: 0;
  /* Remove collision padding */
  margin: 0;
}

.bio-story-content p {
  margin-bottom: 1.5rem;
  padding-left: 0;
  /* Ensure flush alignment */
}

.bio-story-content strong {
  color: var(--accent-gold);
}

/* Philosophy Section: Three Clauses */
.philosophy-section {
  padding: 4rem 5%;
  background-color: var(--bg-dark);
}

@media (min-width: 768px) {
  .philosophy-section {
    padding: 6rem 5%;
  }
}

.philosophy-header {
  text-align: center;
  margin-bottom: 4rem;
}

.philosophy-header .subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.philosophy-header .section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.philosophy-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .philosophy-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
  }
}

.clause-card {
  background: var(--bg-card);
  padding: 4rem 3rem;
  position: relative;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

.clause-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.clause-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.clause-card:hover::before {
  transform: scaleX(1);
}

.clause-number {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2rem;
  background: linear-gradient(to bottom, #444, #222);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.5;
  transition: all 0.4s ease;
}

.clause-card:hover .clause-number {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.clause-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.clause-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Keynotes Section */
.keynotes {
  padding: 4rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .keynotes {
    padding: 6rem 5%;
  }
}

.keynotes h2 {
  font-size: 2.5rem;
  margin-bottom: 4rem;
  position: relative;
  display: inline-block;
}

.keynotes h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--gold-gradient);
  background-size: 200% auto;
  animation: shimmer 6s infinite linear;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
  }
}

.pillar-body {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.pillar-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  margin-top: auto;
}

.pillar-best-for {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
}

.dark-card {
  background-color: var(--bg-card);
  padding: 3rem;
  position: relative;
  transition: transform 0.3s ease;
  /* Top border glowing */
  border-top: 4px solid var(--accent-gold);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dark-card::before {
  content: '';
  position: absolute;
  top: -4px;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--gold-gradient);
  background-size: 200% auto;
  animation: shimmer 5s infinite linear;
}

.dark-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.pillar-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
}

.pillar-subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dark-card h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.dark-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.wide-card {
  grid-column: 1 / -1;
  display: flex;
  padding: 0;
  overflow: hidden;
}

.wide-card-content {
  flex: 1;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wide-card-image {
  flex: 1;
}

.wide-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

/* Presence Section */
.presence {
  padding: 4rem 5%;
  background-color: var(--bg-card);
}

@media (min-width: 768px) {
  .presence {
    padding: 6rem 5%;
  }
}

.presence-header {
  max-width: 1400px;
  margin: 0 auto 4rem auto;
  text-align: center;
}

.presence-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.presence-header p {
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.presence-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 480px) {
  .presence-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .presence-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.video-card {
  cursor: pointer;
  display: block;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
}

.video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: grayscale(80%);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: rgba(26, 26, 26, 0.7);
  border: 2px solid var(--accent-gold);
  /* Solid because radius restricts border-image */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
  /* Glowing metallic look */
  animation: pulseGold 2s infinite;
}

.play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 14px solid var(--accent-gold);
  margin-left: 5px;
}

.video-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.video-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Testimonials */
.testimonials {
  padding: 4rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

@media (min-width: 768px) {
  .testimonials {
    padding: 6rem 5%;
  }
}

.carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

.carousel-header h2 {
  font-size: 2.5rem;
  margin: 0;
}

.carousel-navigation {
  display: flex;
  gap: 1rem;
}

.carousel-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.carousel-btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.carousel-container {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
}

.carousel-container:hover .carousel-track {
  animation-play-state: paused;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  padding-right: 2rem;
  width: max-content;
  animation: scrollMarquee 45s linear infinite;
}

.testimonial-card {
  background-color: var(--bg-card);
  padding: 2.5rem 3rem;
  position: relative;
  flex: 0 0 320px;
  /* Mobile width */
  border-top: 4px solid var(--border-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: auto;
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 500px;
  }
}

.quote-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin: 0 0 1.5rem 0;
  line-height: 1.4;
  font-style: italic;
  font-weight: 700;
}

@media (min-width: 768px) {
  .quote-text {
    font-size: 1.5rem;
  }
}

.quote-author {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quote-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-top: 5px;
  -webkit-text-fill-color: var(--text-muted);
  /* Overriding parent gradient logic */
}

/* Bottom CTA */
.bottom-cta {
  padding: 6rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #000;
}

@media (min-width: 768px) {
  .bottom-cta {
    padding: 10rem 5%;
  }
}

.bg-x {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40rem;
  color: rgba(212, 175, 55, 0.05);
  /* Reflective faint Metallic */
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  font-weight: 700;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-main);
}

@media (min-width: 768px) {
  .cta-content h2 {
    font-size: 4rem;
  }
}

.cta-content p {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 3.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Footer */
.footer {
  padding: 4rem 5%;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
  }
}

.footer-brand .logo {
  display: block;
  margin-bottom: 1rem;
}

.copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 250px;
}

.footer-links h4 {
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a:hover {
  color: var(--text-main);
}

/* Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive constraints */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .presence-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    height: auto;
    padding-top: 120px;
  }

  .hero-content {
    margin-bottom: 3rem;
    text-align: center;
  }

  .hero-image {
    min-height: 400px;
  }

  .pillars-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .wide-card {
    flex-direction: column-reverse;
  }

  .bio-grid {
    grid-template-columns: 1fr;
  }
}

/* Social Sidebar */
.social-sidebar {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 1000;
}

.social-icon {
  font-size: 1.4rem;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--gold-gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2) translateY(-2px);
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.7));
}

@media (max-width: 1024px) {
  .social-sidebar {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    flex-direction: row;
    justify-content: center;
    background: rgba(26, 26, 26, 0.95);
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
  }
}

/* --- FUNNEL UI MODULE --- */
.funnel-hero {
  background: radial-gradient(circle at center, rgba(30, 30, 30, 1) 0%, rgba(10, 10, 10, 1) 100%);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 4rem;
}

.funnel-section {
  padding: 5rem 5%;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.15), var(--bg-main) 70%);
  min-height: 60vh;
}

.funnel-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  padding: 4rem;
}

/* Timeline Components */
.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.progress-track {
  position: absolute;
  top: 15px;
  left: 5%;
  right: 5%;
  height: 2px;
  background-color: var(--border-color);
  z-index: -1;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
  transition: width 0.4s ease;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.step-indicator .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all 0.4s ease;
  gap: 0.8rem;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-main);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.4s ease;
}

.step-indicator .step.active {
  color: var(--accent-gold);
}

.step-indicator .step.active .step-circle {
  border-color: var(--accent-gold);
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.form-step {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.form-step.active-step {
  display: block;
}

.step-title {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.option-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--text-main);
  box-shadow: inset 0 0 0 rgba(212, 175, 55, 0);
}

.option-card i {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.option-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.option-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.5;
}

.option-card:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 0 30px rgba(212, 175, 55, 0.05);
}

.option-card:hover i {
  transform: scale(1.1);
}

.option-card.selected {
  border-color: var(--accent-gold);
  background-color: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2), inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.step-actions {
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  margin-top: 2rem;
}

.step-actions.split {
  justify-content: space-between;
}

.btn-back {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.btn-back:hover {
  color: var(--accent-gold);
}

/* Forms */
.booking-form-native .form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.booking-form-native label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  color: var(--text-muted);
}

.booking-form-native input {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.2rem;
  color: var(--text-main);
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

.booking-form-native input:focus {
  outline: none;
  border-color: var(--accent-gold);
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* Loading & Success States */
.loading-container,
.success-container {
  text-align: center;
  padding: 4rem 2rem;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(212, 175, 55, 0.1);
  border-top-color: var(--accent-gold);
  border-radius: 50%;
  margin: 0 auto 2rem auto;
  animation: spin 1s linear infinite;
}

.success-icon {
  font-size: 5rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .option-grid {
    grid-template-columns: 1fr;
  }

  .funnel-container {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
}

/* --- SALES ENGINE MODULES --- */

/* Scarcity / Urgency Banner */
.urgency-banner {
  background: var(--gold-gradient);
  color: #000;
  padding: 0.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  position: fixed;
  top: 0;
  width: 100%;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  text-transform: uppercase;
}

/* Live Notifications */
.live-notify {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  transform: translateY(150%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 320px;
}

.live-notify.show {
  transform: translateY(0);
}

.live-notify i {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.notify-content p {
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.4;
}

.notify-content span {
  font-weight: 700;
  color: var(--accent-gold);
}

/* Guarantee Section */
.guarantee-block {
  margin: 6rem auto;
  max-width: 1000px;
  padding: 4rem;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.guarantee-seal {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  position: relative;
}

.guarantee-seal i {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 2rem;
  background: #1a1a1a;
  color: var(--accent-gold);
}

.guarantee-seal span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.guarantee-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.guarantee-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Authority Badges */
.authority-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
  opacity: 0.6;
  filter: grayscale(100%);
}

.authority-badges .badge {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
}

/* High-Contrast Action CTAs */
.btn-action {
  background: #FFFFFF;
  color: #000;
  border: none;
  font-size: 1.1rem;
  padding: 1.5rem 3rem;
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.btn-action:hover {
  background: var(--accent-gold);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

/* Progress Text enhancement */
.step-label {
  margin-top: 1rem;
  text-align: center;
  width: 100%;
}

@media (max-width: 768px) {
  .guarantee-block {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem;
    gap: 2rem;
  }

  .authority-badges {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

/* --- EXECUTIVE PROTOCOL MODULE --- */

/* --- SHARED SUBPAGE HERO BASE --- */
.subpage-hero {
  height: 55vh;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 5% 0 5%;
  position: relative;
  background-color: var(--bg-dark);
  background-size: cover;
  background-repeat: no-repeat;
}

.subpage-hero .hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* --- EXECUTIVE PROTOCOL MODULE --- */

.protocol-hero {
  background-image:
    radial-gradient(circle at center, transparent 0%, rgba(26, 26, 26, 0.4) 60%, var(--bg-dark) 100%),
    linear-gradient(to bottom, transparent 30%, var(--bg-dark) 100%),
    url('../assets/img/executive_building_bg.png');
  background-position: center;
  z-index: 2;
}

.italic-accent {
  font-style: italic;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.protocol-hero .hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
}

.protocol-hero .hero-subtitle {
  font-size: 0.8rem;
  letter-spacing: 4px;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-weight: 700;
}

/* Inquiry Section (Inspiration Layout) */
.inquiry-section {
  padding: 8rem 5%;
  background-color: var(--bg-main);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .inquiry-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.inquiry-context h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.inquiry-context .lead-text {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 500px;
}

.inquiry-value-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.inquiry-value-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.inquiry-value-item:first-child {
  padding-top: 0;
}

.inquiry-value-item:last-child {
  border-bottom: none;
}

.inquiry-value-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1rem;
}

.inquiry-value-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.35rem;
  letter-spacing: 0.5px;
}

.inquiry-value-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.protocol-point {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.point-number {
  font-family: serif;
  /* Subtle contrast as seen in image */
  font-style: italic;
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.point-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.point-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Form Chip Styling */
.challenge-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.chip {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-muted);
}

.chip:hover {
  border-color: rgba(212, 175, 55, 0.5);
  color: var(--text-main);
}

.chip.selected {
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.05);
  color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

/* Standards Section */
.standards-section {
  padding: 8rem 5%;
  border-top: 1px solid var(--border-color);
  background: #111;
}

.standards-header {
  text-align: center;
  margin-bottom: 5rem;
}

.standards-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.standards-header p {
  color: var(--accent-gold);
  letter-spacing: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.standards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .standards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }
}

.standard-card i {
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.standard-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.standard-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .protocol-hero.subpage-hero .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .standards-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .challenge-chips {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .challenge-chips {
      grid-template-columns: 1fr 1fr;
    }
  }

  /* --- PRESS KIT MODULE (FIXED) --- */

  .press-hero {
    background-image:
      linear-gradient(to bottom, rgba(26, 26, 26, 0.75), var(--bg-dark)),
      url('../assets/img/Headshot.png');
    background-position: center 15%;
  }

  .press-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }

  .resource-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
  }

  @media (min-width: 768px) {
    .resource-grid {
      grid-template-columns: repeat(3, 1fr);
      margin-top: -60px;
    }
  }

  .resource-icon {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--accent-gold);
  }

  .pillar-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2.5rem;
  }

  .pillar-body {
    flex-grow: 1;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  .resource-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1px;
  }

  .resource-link:hover {
    text-decoration: underline;
  }

  /* Video Library Section (Balanced) */
  .video-library-section {
    padding: 8rem 5%;
    background-color: #111;
  }

  .press-section-title {
    font-size: 2.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .video-vault {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 3rem;
  }

  @media (min-width: 1024px) {
    .video-vault {
      grid-template-columns: 1.6fr 1fr;
    }
  }

  .main-video .video-thumbnail {
    aspect-ratio: 16 / 9;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
  }

  .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .bottom-label {
    padding: 1.5rem 0;
  }

  .bottom-label h4 {
    font-size: 1.3rem;
    margin-top: 0.5rem;
  }

  .side-videos {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .side-video-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    align-items: center;
  }

  @media (min-width: 768px) {
    .side-video-card {
      grid-template-columns: 160px 1fr;
      gap: 2rem;
    }
  }

  .side-video-card .video-thumbnail {
    aspect-ratio: 16 / 9;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
  }

  .side-video-info h4 {
    font-size: 0.9rem;
    margin-top: 0.4rem;
    line-height: 1.4;
    color: var(--text-main);
  }

  /* Bio Narrative (Refined) */
  .bio-narrative {
    padding: 10rem 5%;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
  }

  .bg-x-watermark {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    font-size: 40rem;
    color: rgba(255, 255, 255, 0.015);
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
  }

  .bio-narrative-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
  }

  .official-quote {
    font-size: 1.35rem;
    line-height: 1.7;
    font-weight: 400;
    margin: 2rem 0 4rem 0;
    color: rgba(255, 255, 255, 0.85);
    border-left: 2px solid var(--accent-gold);
    padding-left: 2.5rem;
  }

  .bio-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .bio-actions {
      flex-direction: row;
      gap: 3rem;
    }
  }

  .btn-text {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
    transition: all 0.3s ease;
  }

  .btn-text:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
  }

  /* Engagement Prerequisites */
  .engagement-prereqs {
    padding: 8rem 5%;
    background-color: #111;
  }

  .prereq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  @media (min-width: 1024px) {
    .prereq-grid {
      grid-template-columns: 1fr 1.5fr;
      gap: 6rem;
    }
  }

  .prereq-intro {
    max-width: 400px;
  }

  .prereq-lists {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  @media (min-width: 768px) {
    .prereq-lists {
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
    }
  }

  .prereq-list-column h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
  }

  .prereq-list-column li {
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
    color: var(--text-main);
    list-style: none;
    padding-left: 1.5rem;
    position: relative;
  }

  .prereq-list-column li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    background: var(--accent-gold);
    border-radius: 50%;
  }

  /* Global Navbar Center Alignment Fix */
  .navbar .nav-container {
    align-items: center;
  }

  /* Legacy Responsive Overrides Cleared - All layouts now mobile-first */
}

/* Press Kit Page Styles */
.press-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/img/Hero_Portrait_Full.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.resource-icon {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.resource-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.resource-link:hover {
  color: var(--text-main);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* Bio Narrative Section (Press Page) */
.bio-narrative {
  padding: 8rem 5%;
  background-color: #000;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
}

.bg-x-watermark {
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  font-size: 30rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.05);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}

.bio-narrative-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.official-quote {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #fff;
  font-style: italic;
  margin: 3rem 0;
  padding-left: 3rem;
  border-left: 4px solid var(--accent-gold);
}

.bio-actions {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.bio-actions .btn-text {
  appearance: none !important;
  -webkit-appearance: none !important;
  background: transparent !important;
  border: none !important;
  color: var(--text-muted) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  padding: 0 !important;
  transition: all 0.3s ease !important;
  font-family: var(--font-primary) !important;
  outline: none !important;
}

.bio-actions .btn-text:hover {
  color: var(--accent-gold) !important;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4) !important;
}

.subtitle.gold {
  color: var(--accent-gold) !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-size: 0.85rem !important;
}

/* Protocol Stack Layout (Keynote Subpages) */
.protocol-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.protocol-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.protocol-row:first-child {
  border-top: 1px solid var(--border-color);
}

.protocol-row:hover .protocol-num {
  color: var(--accent-gold);
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.protocol-num {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  transition: all 0.5s ease;
  font-family: var(--font-primary);
}

.protocol-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.protocol-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 700px;
}

@media (min-width: 768px) {
  .protocol-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
    padding: 4rem 0;
  }

  .protocol-num {
    font-size: 6rem;
    min-width: 120px;
    text-align: right;
  }

  .protocol-content {
    flex: 1;
    padding-top: 0.5rem;
  }
}