/* 
  SEED HEALTH AI HEALTH TECHNOLOGIES - STYLE SYSTEM
  Premium Dark Technology & Biotechnology Theme
*/

:root {
  /* Color Palette */
  --bg-dark: #02060A;
  --bg-darker: #010305;
  --bg-panel: rgba(8, 20, 35, 0.5);
  --bg-panel-hover: rgba(12, 30, 50, 0.6);
  --border-subtle: rgba(0, 240, 255, 0.15);
  --border-cyan: rgba(0, 240, 255, 0.4);

  --text-main: #E0E7ED;
  --text-muted: #8A9CAE;

  --accent-cyan: #00F0FF;
  --accent-teal: #00B1A7;
  --accent-blue: #2A6BFF;

  --glow-cyan: rgba(0, 240, 255, 0.6);
  --glow-teal: rgba(0, 177, 167, 0.5);

  /* Typography */
  --font-heading: 'Satoshi', sans-serif;
  --font-body: 'Satoshi', sans-serif;

  /* Layout */
  --max-width: 1280px;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Effects */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
}

.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image:
    linear-gradient(to right, rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.dark-bg {
  background-color: var(--bg-darker);
  position: relative;
  z-index: 1;
}

/* Typography Classes */
h1,
h2,
h3,
h4,
h5,
h6,
.brand-text {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cyan-text {
  color: var(--accent-cyan);
}

.teal-text {
  color: var(--accent-teal);
}

.lead-text {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 400;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.divider {
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, var(--accent-cyan), transparent);
  margin: 1.5rem 0;
}

.divider.center-div {
  margin: 1.5rem auto;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  width: 120px;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
}

.section-heading.center {
  text-align: center;
}

.section-subheading {
  font-size: 1.8rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #fff;
  text-align: center;
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5%;
}

.container-small {
  max-width: 900px;
}

.container-large {
  max-width: 1400px;
}

.section-padding {
  padding: 6rem 0;
}

.mt-4 {
  margin-top: 2rem;
}

.spacer {
  height: 100px;
}

.center-text {
  text-align: center;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 0;
  z-index: 100;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(2, 6, 10, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 3.5px;
  color: #fff;
  font-weight: 300;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-cyan);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px var(--accent-cyan);
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after {
  opacity: 1;
  bottom: -4px;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle .bar {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}

/* UI Elements */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

.btn-primary {
  background: rgba(0, 240, 255, 0.1);
  color: var(--accent-cyan);
  border: 1px solid var(--border-cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.btn-primary:hover {
  background: rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.glass-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: skewX(-20deg);
  transition: 0.5s;
}

.glass-card:hover::before {
  left: 150%;
}

.glass-card:hover {
  border-color: var(--border-cyan);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 240, 255, 0.1);
}

/* Animations */
.hidden-element {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hidden-element.up-slide {
  transform: translateY(40px);
}

.hidden-element.left-slide {
  transform: translateX(-40px);
}

.hidden-element.right-slide {
  transform: translateX(40px);
}

.element-visible {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

/* Hero Section Redesign */
.hero-section {
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 130px;
  padding-bottom: 50px;
  overflow: hidden;
}

.hero-layout-new {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4%;
  position: relative;
  z-index: 10;
}

.hero-content {
  flex: 0 0 50%;
  max-width: 750px;
}

.glow-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 30px;
  font-size: 0.75rem;
  color: var(--accent-cyan);
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.display-title {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 500px;
  line-height: 1.8;
}

.custom-actions {
  display: flex;
  gap: 1.5rem;
}

.btn-glow {
  background: linear-gradient(90deg, rgba(0, 177, 167, 0.8), rgba(0, 240, 255, 0.6));
  color: #fff;
  border: 1px solid rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.3);
}

.btn-glow:hover {
  background: linear-gradient(90deg, rgba(0, 177, 167, 1), rgba(0, 240, 255, 0.8));
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.5);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* New Hero Visual */
.hero-visual-new {
  flex: 0 0 50%;
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.9;
}

/* Tech Widgets */
.tech-widget {
  position: absolute;
  border-top: 1px solid rgba(0, 240, 255, 0.4);
  border-left: 1px solid rgba(0, 240, 255, 0.1);
  background: linear-gradient(135deg, rgba(8, 20, 35, 0.8), transparent);
  padding: 1rem;
  width: 140px;
  z-index: 10;
  backdrop-filter: blur(5px);
}

.tech-widget::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 4px;
  height: 4px;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
}

.tech-widget::after {
  content: '';
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 4px;
  height: 4px;
  background: var(--accent-teal);
}

.widget-tr {
  top: 15%;
  right: -5%;
}

.widget-bl {
  bottom: 10%;
  left: 10%;
  width: 180px;
  border-top: none;
  border-bottom: 1px solid rgba(0, 240, 255, 0.4);
}

.widget-bl::before {
  top: auto;
  bottom: -1px;
}

.widget-br {
  bottom: 20%;
  right: -5%;
  width: 160px;
}

.widget-title {
  font-size: 0.55rem;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 0.8rem;
  font-family: var(--font-body);
}

.widget-chart {
  height: 20px;
  width: 100%;
  position: relative;
}

.sparkline {
  background: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 240, 255, 0.2) 2px, rgba(0, 240, 255, 0.2) 4px);
}

.sparkline::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--accent-cyan);
  top: 10px;
  box-shadow: 0 0 5px var(--accent-cyan);
}

.widget-dots {
  display: flex;
  gap: 2px;
  margin-top: 5px;
}

.widget-dots::before {
  content: '.... .. . .... ..';
  color: rgba(0, 240, 255, 0.4);
  font-size: 6px;
  letter-spacing: 2px;
  font-family: monospace;
}

.widget-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  margin-top: 10px;
}

.widget-progress {
  width: 30%;
  height: 100%;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: scan 3s infinite;
  position: absolute;
}

@keyframes scan {
  0% {
    left: 0%;
    width: 10%;
  }

  50% {
    left: 80%;
    width: 20%;
  }

  100% {
    left: 0%;
    width: 10%;
  }
}

.wave-line {
  background: repeating-linear-gradient(0deg, rgba(0, 240, 255, 0.1), rgba(0, 240, 255, 0.1) 1px, transparent 1px, transparent 3px);
}

.wave-line::before {
  content: '_/~\\_/~\\_';
  color: var(--accent-teal);
  font-size: 8px;
  position: absolute;
  top: -5px;
}

/* Split Layouts */
.split-layout {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.split-layout.reverse {
  flex-direction: row-reverse;
}

.content-side {
  flex: 1;
}

.visual-side {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Fluid Editorial Flow Section */
.focus-section {
  position: relative;
  overflow: hidden;
}

.focus-bg-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  max-width: 1000px;
  max-height: 1000px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.focus-flow-container {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin-top: 5rem;
  position: relative;
  z-index: 1;
}

.focus-flow-row {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.focus-flow-row.reverse {
  flex-direction: row-reverse;
}

.flow-lead {
  flex: 1;
  position: relative;
}

.flow-icon-watermark {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(0, 177, 167, 0.02));
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 8rem;
  position: absolute;
  top: -3rem;
  left: -2rem;
  z-index: -1;
}

.flow-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  color: #fff;
}

.flow-summary {
  font-size: 1.15rem;
  color: #E0E7ED;
  line-height: 1.8;
  font-weight: 300;
  border-left: 2px solid var(--accent-cyan);
  padding-left: 1.5rem;
}

.flow-data {
  flex: 1.2;
}

.flow-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-teal);
  margin-bottom: 1.5rem;
}

.data-node-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.data-node-item {
  padding: 0.6rem 1.2rem;
  background: rgba(0, 240, 255, 0.03);
  border: 1px solid rgba(0, 240, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.95rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.data-node-item:hover {
  background: rgba(0, 240, 255, 0.08);
  border-color: rgba(0, 240, 255, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 900px) {

  .focus-flow-row,
  .focus-flow-row.reverse {
    flex-direction: column;
    gap: 3rem;
  }

  .flow-icon-watermark {
    font-size: 5rem;
    top: -2rem;
    left: 0;
  }
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
}

.feature-card h3,
.feature-card h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Lists */
.data-list {
  list-style: none;
}

.data-list li {
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-main);
}

.data-list i {
  color: var(--accent-cyan);
  font-size: 1.2rem;
  width: 25px;
  text-align: center;
}

.minor-heading {
  color: #fff;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  font-weight: 500;
}

.list-style ul {
  list-style: none;
  padding-left: 5px;
}

.list-style ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.list-style ul li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-family: monospace;
  font-weight: bold;
}

.card-header-icon {
  color: var(--accent-teal);
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Editorial Image Visuals */
.editorial-visual-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.editorial-image {
  width: 140%;
  max-width: 900px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  transform: translateX(5%);
  opacity: 1;
  -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 72%);
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 72%);
  animation: editorial-pulse 12s ease-in-out infinite alternate;
}

/* Editorial Typography Formatting */
.editorial-content {
  padding-right: 2rem;
}

.editorial-content .section-heading {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 2rem;
}

.highlight-text {
  font-size: 1.35rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 2rem;
  border-left: 2px solid var(--accent-teal);
  padding-left: 1.5rem;
}

.editorial-details p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@keyframes editorial-pulse {
  0% {
    transform: scale(1) translateX(10%);
    filter: brightness(0.95);
  }

  100% {
    transform: scale(1.02) translateX(8%);
    filter: brightness(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .editorial-image {
    animation: none;
  }
}

.card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.highlight {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

/* Professional Focus Ecosystem Atmospheric Visual */
.focus-section {
  position: relative !important;
  overflow: hidden;
}

.focus-ecosystem-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Puts it behind container */
  pointer-events: none;
  overflow: hidden;
}

.focus-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  /* Subtle transparency so text pops perfectly */
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0) 100%);
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0) 100%);
  animation: ecosystemFloat 45s ease-in-out infinite alternate;
}

@keyframes ecosystemFloat {
  0% {
    transform: scale(1.05) translate(0, 0);
  }

  50% {
    transform: scale(1.1) translate(1%, -1%);
  }

  100% {
    transform: scale(1.05) translate(-1%, 1%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .focus-bg-image {
    animation: none !important;
  }
}

/* Reference Advanced Research Technology Section */
.reference-tech-section {
  position: relative;
  overflow: hidden;
  background-color: #010408;
  /* Deepest black/navy */
}

.tech-canvas-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Atmospheric Glows & Waves */
.ref-bg-particles::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image:
    radial-gradient(ellipse at 30% 70%, rgba(0, 240, 255, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 30%, rgba(0, 150, 255, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 10% 10%, rgba(0, 240, 255, 0.02) 0%, transparent 60%);
  animation: waveBreathe 35s ease-in-out infinite alternate;
}

/* Grid & Particles & Molecular Structures */
.ref-bg-particles::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image:
    /* Molecular nodes */
    radial-gradient(circle at center, transparent 30%, rgba(0, 240, 255, 0.02) 32%, transparent 34%) 0 0 / 120px 120px,
    radial-gradient(circle at 15px 15px, rgba(0, 240, 255, 0.1) 1px, transparent 1px) 0 0 / 60px 60px,
    radial-gradient(circle at 45px 30px, rgba(0, 240, 255, 0.08) 1px, transparent 1px) 0 0 / 60px 60px,
    /* Scientific Grid Network Pattern */
    linear-gradient(0deg, rgba(0, 240, 255, 0.025) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(90deg, rgba(0, 240, 255, 0.025) 1px, transparent 1px) 0 0 / 80px 80px;
  animation: gridDrift 60s linear infinite;
}

@keyframes waveBreathe {
  0% {
    transform: scale(1) translate(0%, 0%);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.1) translate(-2%, 3%);
    opacity: 1;
  }

  100% {
    transform: scale(1) translate(2%, -1%);
    opacity: 0.8;
  }
}

@keyframes gridDrift {
  0% {
    transform: rotate(0deg) translate(0%, 0%);
  }

  50% {
    transform: rotate(1deg) translate(-1%, -1%);
  }

  100% {
    transform: rotate(0deg) translate(0%, 0%);
  }
}

@media (prefers-reduced-motion: reduce) {

  .ref-bg-particles::before,
  .ref-bg-particles::after {
    animation: none !important;
  }
}

.reference-tech-section .container {
  position: relative;
  z-index: 1;
}

.ref-master-header {
  text-align: center;
  margin-bottom: 5rem;
}

.massive-ref-heading {
  font-size: 3.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}

.ref-master-divider {
  width: 120px;
  height: 2px;
  background: var(--accent-cyan);
  margin: 0 auto;
  box-shadow: 0 0 15px var(--accent-cyan);
}

.ref-subsections-container {
  display: flex;
  flex-direction: column;
}

.ref-subsection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 4rem 0;
}

.ref-inter-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.3), transparent);
}

.ref-content-col {
  flex: 1;
  max-width: 500px;
}

.ref-visual-col {
  flex: 1.2;
  display: flex;
  justify-content: center;
  position: relative;
}

.ref-sub-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.ref-sub-summary {
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.ref-data-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
}

.ref-clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ref-clean-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.ref-clean-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
}

/* Custom Visual Wrappers and SVG Styling */
.custom-vis-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sphere-visual,
.stack-visual {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sphere-svg,
.stack-svg {
  width: 90%;
  height: 90%;
  z-index: 2;
  overflow: visible;
}

.glow-sphere {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 150, 255, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 1;
}

.glow-stack {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 350px;
  background: radial-gradient(ellipse at center, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
  z-index: 1;
}

/* Leader Labels and Lines */
.leader-labels {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 3;
}

.left-labels {
  left: -80px;
}

.right-labels {
  right: -80px;
}

.leader-label {
  position: absolute;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--accent-cyan);
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}

.left-labels .leader-label {
  text-align: right;
  right: 0;
}

.right-labels .leader-label {
  text-align: left;
  left: 0;
}

.leader-line {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: rgba(0, 240, 255, 0.4);
}

.left-labels .leader-line {
  left: 105%;
}

.right-labels .leader-line {
  right: 105%;
}

.leader-dot {
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-cyan);
  transform: translateY(-50%);
  box-shadow: 0 0 5px var(--accent-cyan);
}

.left-labels .leader-dot {
  left: calc(105% + 30px);
}

.right-labels .leader-dot {
  right: calc(105% + 30px);
}

/* Label Positioning Overrides */
.left-labels .l1 {
  top: 25%;
}

.left-labels .l2 {
  top: 50%;
}

.left-labels .l3 {
  top: 75%;
}

.right-labels .r1 {
  top: 15%;
}

.right-labels .r2 {
  top: 30%;
}

.right-labels .r3 {
  top: 45%;
}

.right-labels .r4 {
  top: 60%;
}

.right-labels .r5 {
  top: 75%;
}

.right-labels .r6 {
  top: 90%;
}

/* --- Reference Visual Animations --- */

/* Microbiome Sphere Animations */
@keyframes slowPulseOpacity {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes floatGroup {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(0, -3px) rotate(1deg);
  }
}

@keyframes floatGroupReverse {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(0, 3px) rotate(-1deg);
  }
}

@keyframes rotateSphereRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseGridRing {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 2px rgba(0, 240, 255, 0.5));
  }
}

.glow-sphere {
  animation: slowPulseOpacity 6s ease-in-out infinite;
}

.sphere-svg .anim-ring {
  transform-origin: center;
  animation: rotateSphereRing 80s linear infinite;
}

.sphere-svg .anim-pulse-ring {
  animation: pulseGridRing 4s ease-in-out infinite alternate;
}

.sphere-svg .anim-rod {
  transform-box: fill-box;
  transform-origin: center;
}

.sphere-svg .rod-a {
  animation: floatGroup 6s ease-in-out infinite;
}

.sphere-svg .rod-b {
  animation: floatGroupReverse 7s ease-in-out infinite;
}

.sphere-svg .anim-node {
  animation: slowPulseOpacity 2.5s ease-in-out infinite alternate;
  transform-origin: center;
}

/* Data Stack Animations */
@keyframes layerPulse {

  0%,
  100% {
    opacity: 0.8;
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 4px rgba(0, 240, 255, 0.5));
  }
}

@keyframes pulseChart {

  0%,
  100% {
    filter: drop-shadow(0 0 3px rgba(0, 240, 255, 1));
    opacity: 0.6;
  }

  50% {
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 1));
    opacity: 1;
  }
}

@keyframes flowVertical {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: 20;
  }
}

.stack-svg .anim-layer {
  animation: layerPulse 3s ease-in-out infinite;
  transform-origin: center;
}

.stack-svg .layer-1 {
  animation-delay: 0s;
}

.stack-svg .layer-2 {
  animation-delay: 0.4s;
}

.stack-svg .layer-3 {
  animation-delay: 0.8s;
}

.stack-svg .layer-4 {
  animation-delay: 1.2s;
}

.stack-svg .layer-5 {
  animation-delay: 1.6s;
}

.stack-svg .anim-chart {
  animation: pulseChart 4s ease-in-out infinite;
}

.stack-svg .anim-v-line {
  stroke-dasharray: 4 6;
  animation: flowVertical 2s linear infinite;
}

@media (prefers-reduced-motion: reduce) {

  .glow-sphere,
  .sphere-svg .anim-ring,
  .sphere-svg .anim-pulse-ring,
  .sphere-svg .anim-rod,
  .sphere-svg .anim-node,
  .stack-svg .anim-layer,
  .stack-svg .anim-chart,
  .stack-svg .anim-v-line {
    animation: none !important;
  }
}

@media (max-width: 900px) {
  .ref-subsection {
    flex-direction: column !important;
  }

  .ref-visual-col {
    order: -1;
  }

  .left-labels {
    left: 0;
  }

  .right-labels {
    right: 0;
  }
}

/* Leadership */
.leadership-section {
  position: relative;
  background-color: #020508;
  /* Deep void base */
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(0, 240, 255, 0.05)'/%3E%3C/svg%3E");
  background-attachment: fixed;
  z-index: 1;
  overflow: hidden;
}

/* Atmospheric Glowing Orbs */
.leadership-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.04) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

.leadership-section::after {
  content: '';
  position: absolute;
  bottom: 0%;
  left: -20%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(0, 168, 150, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

/* Guarantee content stays above the ambient orbs */
.leadership-section .container {
  position: relative;
  z-index: 5;
}

/* --- High-End Luxury Editorial Leadership Section (Option 2) --- */

.luxury-leadership-featured {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.luxury-header-typography {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 10;
  pointer-events: none;
}

.luxury-firstname,
.luxury-lastname {
  font-size: 8rem;
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: -2px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  margin: 0;
}

.luxury-firstname {
  transform: translateX(-2rem);
}

.luxury-lastname {
  padding-left: 6rem;
  color: var(--accent-cyan);
}

.luxury-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: flex-end;
  margin-top: 4rem;
}

.luxury-image-col {
  position: relative;
}

.luxury-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
}

.luxury-image-frame::before {
  content: '';
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 240, 255, 0.4);
  z-index: 0;
  transition: all 0.5s ease;
}

.luxury-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  filter: grayscale(20%) contrast(1.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.luxury-bio-col {
  padding-top: 14rem;
  padding-bottom: 2rem;
  z-index: 3;
}

.luxury-role {
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-cyan);
  border-left: 2px solid var(--accent-cyan);
  padding-left: 1.5rem;
  line-height: 1.6;
}

.luxury-bio-text {
  margin-top: 3rem;
}

.luxury-bio-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.3);
  display: block;
  margin-bottom: 1.5rem;
}

.luxury-bio-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #a0a5aa;
  margin-bottom: 1.2rem;
}

.pulse-node.small {
  width: 6px;
  height: 6px;
  margin-top: 0;
}

@media (max-width: 1000px) {
  .luxury-grid {
    grid-template-columns: 1fr;
  }

  .luxury-bio-col {
    padding-top: 0;
  }

  .luxury-firstname,
  .luxury-lastname {
    font-size: 4rem;
  }

  .luxury-lastname {
    padding-left: 2rem;
  }

  .luxury-header-typography {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 2rem;
  }

  .luxury-image-frame::before {
    top: -1rem;
    left: -1rem;
  }
}

/* Secondary Roster */
.executive-roster {
  max-width: 1100px;
  margin: 6rem auto 0;
  padding: 0 2rem;
}

.roster-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.roster-header h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

.roster-divider {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.2), transparent);
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.roster-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.roster-img-box.tall {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.3);
  padding: 0.6rem;
  background: rgba(0, 5, 10, 0.4);
  box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.05), 0 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 2px;
}

.roster-img-box.tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: all 0.5s ease;
}

.roster-card:hover .roster-img-box.tall img {
  filter: brightness(1.05);
}

.roster-info {
  text-align: left;
}

.roster-info h5 {
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.5rem;
}

.roster-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.roster-bio {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #90959a;
}

@media (max-width: 1000px) {
  .fe-layout {
    grid-template-columns: 1fr;
  }

  .fe-content-wrapper {
    margin-left: 0;
    margin-top: -4rem;
    padding: 3rem;
  }

  .fe-accent-line {
    display: none;
  }

  .roster-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

/* Philosophy */
.philosophy-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.p-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent);
  border-left: 2px solid var(--accent-cyan);
  border-radius: 0 8px 8px 0;
  transition: var(--transition);
}

.p-item:hover {
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.05), transparent);
  transform: translateX(10px);
}

.p-icon {
  font-size: 1.5rem;
  color: var(--accent-cyan);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}

.p-item h5 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.p-item p {
  margin: 0;
  font-size: 0.9rem;
}

.vision-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(circle at top right, rgba(0, 177, 167, 0.1), transparent 70%), var(--bg-panel);
  border-color: rgba(0, 177, 167, 0.3);
}

.vision-icon {
  font-size: 3rem;
  color: var(--accent-teal);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.vision-text {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
  font-family: var(--font-heading);
  margin-bottom: 2rem;
}

/* Expertise Tags */
.tags-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 3rem;
}

.tag-glow {
  padding: 1rem 1.8rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: default;
}

.tag-glow:hover {
  transform: translateY(-3px);
  border-color: var(--accent-cyan);
  background: rgba(0, 240, 255, 0.05);
  box-shadow: 0 5px 15px rgba(0, 240, 255, 0.15);
  color: var(--accent-cyan);
}

/* Footer */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 2rem;
  background: #010204;
  position: relative;
  z-index: 10;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.footer-brand h4 {
  color: #fff;
  letter-spacing: 2px;
  margin-top: 1rem;
}

.footer-brand p {
  color: var(--accent-cyan);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.footer-desc {
  color: var(--text-muted) !important;
  font-size: 0.9rem !important;
  max-width: 400px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  gap: 2rem;
  margin: 1rem 0;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  width: 100%;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .split-layout {
    flex-direction: column;
    gap: 3rem;
  }

  .split-layout.reverse {
    flex-direction: column;
  }

  .visual-side {
    width: 100%;
    order: -1;
  }

  .ai-analysis-card,
  .platform-card,
  .biotech-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 120px;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(2, 6, 10, 0.98);
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    transition: 0.4s;
  }

  .nav-menu.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .section-heading {
    font-size: 2rem;
  }

  .profile-layout {
    flex-direction: column;
  }

  .profile-overview {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 0;
    padding-bottom: 2rem;
  }

  .dimension-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .section-padding {
    padding: 4rem 0;
  }
}

/* --- Professional Responsibilities Accordion --- */
.luxury-section-header {
  margin-top: 8rem;
  margin-bottom: 4rem;
  text-align: center;
}

.luxury-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-cyan);
  margin-bottom: 1.5rem;
  display: inline-block;
  border-bottom: 1px solid rgba(0, 240, 255, 0.3);
  padding-bottom: 0.8rem;
}

.luxury-title {
  font-size: 5rem;
  font-family: var(--font-heading);
  font-weight: 300;
  letter-spacing: -2px;
  color: #fff;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0;
}

@media (max-width: 1000px) {
  .luxury-title {
    font-size: 3rem;
  }
}

.accordion-container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1400px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.5s ease;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.accordion-item.active {
  border: 1px solid rgba(0, 240, 255, 0.2);
  background: rgba(0, 240, 255, 0.02);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.1), inset 0 0 20px rgba(0, 240, 255, 0.05);
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.accordion-header {
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.accordion-header h3 {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  transition: all 0.4s ease;
}

.accordion-icon {
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent-cyan);
  transition: transform 0.4s ease;
}

.accordion-item:hover .accordion-header h3 {
  color: #fff;
  transform: translateX(1rem);
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.accordion-item.active .accordion-header h3 {
  color: var(--accent-cyan);
  transform: translateX(1rem);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  opacity: 1;
}

.accordion-content-inner {
  padding: 3rem 1rem 3rem 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 480px;
}

.accordion-text-side {
  position: relative;
  z-index: 2;
  width: 55%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-shadow: 0 4px 15px rgba(2, 5, 10, 0.9);
}

.accordion-text-side p {
  font-size: 1.1rem;
  color: #a0a5aa;
  line-height: 1.8;
}

.accordion-tags {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.a-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.a-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent-cyan);
  margin-right: 1.5rem;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* --- Immersive Background Visual --- */
.resp-visual-wrapper {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 70%;
  height: 120%;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at 75% 50%, rgba(0, 0, 0, 0.95) 25%, rgba(0, 0, 0, 0) 70%);
  mask-image: radial-gradient(ellipse at 75% 50%, rgba(0, 0, 0, 0.95) 25%, rgba(0, 0, 0, 0) 70%);
}

.resp-visual-graphic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0.6;
  filter: contrast(1.1) brightness(0.9);
}


/* --- Immersive Philosophy Video Section --- */
.philosophy-section {
  position: relative;
  overflow: hidden;
  padding: 12rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.philosophy-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  filter: hue-rotate(60deg) saturate(1.2) brightness(0.7);
  z-index: 0;
}

.philosophy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(2, 5, 10, 1) 0%, rgba(2, 5, 10, 0.6) 45%, rgba(2, 5, 10, 0) 100%);
  z-index: 1;
}

.philosophy-content-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.philosophy-section .luxury-section-header {
  text-align: left;
  margin-top: 0;
  margin-bottom: 2rem;
}

.philosophy-lead {
  text-align: left;
  font-size: 1.4rem;
  color: var(--accent-cyan);
  max-width: 650px;
  margin-bottom: 4rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.philosophy-network {
  display: flex;
  flex-direction: column;
  max-width: 700px;
}

.network-node {
  display: flex;
  gap: 3rem;
  position: relative;
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.network-node:hover {
  opacity: 1;
}

.node-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60px;
  flex-shrink: 0;
}

.node-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #fff;
  font-weight: 300;
  background: rgba(0, 240, 255, 0.05);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
}

.node-line {
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 240, 255, 0.5), rgba(0, 240, 255, 0.05));
  margin: 1rem 0;
  min-height: 80px;
}

.node-line.glow-stop {
  display: none;
}

.node-text {
  padding-top: 0.5rem;
  padding-bottom: 3rem;
}

.node-text h5 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.original-statement {
  font-size: 1.25rem;
  color: var(--accent-cyan);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-weight: 300;
  max-width: 650px;
}

.expanded-explanation {
  font-size: 1.1rem;
  color: #a0a5aa;
  line-height: 1.8;
  font-weight: 300;
  max-width: 650px;
}

/* --- Vision Manifesto Section --- */
.vision-section {
  position: relative;
  overflow: hidden;
  padding: 14rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: radial-gradient(ellipse at center, rgba(0, 240, 255, 0.04) 0%, var(--bg-dark) 70%);
}

.vision-manifesto {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.v-line-divider {
  width: 2px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(0, 240, 255, 0), rgba(0, 240, 255, 0.8), rgba(0, 240, 255, 0));
  margin: 0 auto 4rem auto;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.vision-text.highlight {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.35;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(0, 240, 255, 0.6) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* Fallback for unsupported browsers */
  text-transform: uppercase;
  letter-spacing: 2px;
}

.vision-subtext {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 2;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
}

@media (max-width: 1000px) {
  .accordion-header h3 {
    font-size: 1.5rem;
  }

  .accordion-content-inner {
    flex-direction: column;
    padding: 2rem 1rem;
    min-height: auto;
  }

  .accordion-text-side {
    width: 100%;
    margin-bottom: 2rem;
  }

  .resp-visual-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .network-node {
    gap: 1.5rem;
  }

  .node-indicator {
    width: 40px;
  }

  .node-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .philosophy-section {
    padding: 6rem 0;
  }

  .philosophy-overlay {
    background: linear-gradient(to right, rgba(2, 5, 10, 1) 0%, rgba(2, 5, 10, 0.8) 60%, rgba(2, 5, 10, 0.4) 100%);
  }

  .vision-section {
    padding: 6rem 1rem;
  }

  .vision-text.highlight {
    font-size: 2.5rem;
  }

  .p-plate-bottom {
    grid-template-columns: 1fr;
  }

  .plate-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .plate-text p {
    text-align: center;
    margin: 0 auto;
  }

  .vision-text.highlight {
    font-size: 1.8rem;
  }
}

/* --- Core Expertise Design Enhancements --- */
.expertise-header-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
}

.expertise-cinematic-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin: 1.5rem 0 2rem 0;
  background: linear-gradient(135deg, #ffffff 30%, rgba(0, 240, 255, 0.5) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

@media (max-width: 600px) {
  .expertise-cinematic-title {
    font-size: 2.2rem;
  }
}

.expertise-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.15;
  mix-blend-mode: screen;
  z-index: -2;
  pointer-events: none;
}

.expertise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.03) 0%, rgba(2, 5, 10, 1) 85%);
  z-index: -1;
  pointer-events: none;
}

/* --- Core Expertise Grid & Pills --- */
.tags-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 3rem;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.tag-glow {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 50px;
  padding: 1.2rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.tag-glow span {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  pointer-events: none;
}

.tag-glow:hover {
  background: rgba(0, 240, 255, 0.08);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .tags-grid {
    gap: 1.2rem 1.5rem;
  }

  .tag-glow {
    padding: 1rem 1.5rem;
  }

  .tag-glow span {
    font-size: 1.05rem;
  }
}

@media (max-width: 600px) {
  .tags-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* --- Expertise Modal System --- */
.expertise-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(2, 5, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.expertise-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.expertise-modal-content {
  background: #020508;
  border: 1px solid rgba(0, 240, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 240, 255, 0.1);
  padding: 4rem;
  max-width: 650px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.expertise-modal-overlay.active .expertise-modal-content {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: monospace;
}

.modal-close-btn:hover {
  color: #fff;
}

.expertise-modal-content h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.modal-line-divider {
  width: 40px;
  height: 2px;
  background: var(--accent-cyan);
  margin-bottom: 2rem;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.expertise-modal-content p {
  font-size: 1.15rem;
  color: #a0a5aa;
  line-height: 1.9;
  font-weight: 300;
}

@media (max-width: 600px) {
  .expertise-modal-content {
    padding: 2.5rem 1.5rem;
  }
}

/* --- Footer Modular Contact Panel --- */
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-contact-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background: rgba(2, 5, 10, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 12px;
  padding: 3rem 4rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
  max-width: 900px;
}

.contact-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.contact-icon {
  font-size: 1.6rem;
  color: var(--accent-cyan);
  margin-bottom: 1.2rem;
  opacity: 0.9;
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.4));
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.8rem;
}

.contact-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.contact-divider {
  width: 1px;
  height: 90px;
  background: linear-gradient(to bottom, rgba(0, 240, 255, 0), rgba(0, 240, 255, 0.3), rgba(0, 240, 255, 0));
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
  text-align: center;
  padding-top: 2.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .footer-contact-panel {
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    gap: 2.5rem;
  }

  .contact-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, rgba(0, 240, 255, 0), rgba(0, 240, 255, 0.3), rgba(0, 240, 255, 0));
  }
}

/* --- Navigation Dropdown System --- */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(2, 5, 10, 0.95);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 8px;
  padding: 0.8rem 0;
  min-width: 240px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  list-style: none;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  margin: 0;
}

.nav-item-dropdown:hover .dropdown-menu,
.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  position: relative;
  padding: 0.9rem 1.5rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.dropdown-link::before {
  content: '';
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-cyan);
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px var(--accent-cyan);
}

.dropdown-link:hover {
  color: #fff;
  padding-left: 1.8rem;
}

.dropdown-link:hover::before {
  opacity: 1;
}

/* Mobile Dropdown Alignments */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    border-left: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 0;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
  }

  .dropdown-menu.active {
    display: flex;
  }

  .nav-item-dropdown {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .dropdown-link {
    padding: 0.6rem 1.5rem;
  }

  .dropdown-link:hover {
    padding-left: 2rem;
  }
}

/* --- Leadership Canvas Background --- */
.leadership-bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.15;
}

/* ==========================================================================
   GLOBAL RESPONSIVENESS & EXTREME MOBILE ARCHITECTURE
   ========================================================================== */

/* Tablets & Small Laptops (Max Width: 1024px) */
@media (max-width: 1024px) {

  /* Navigation Fixes */
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(2, 6, 10, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 2rem 5%;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    align-items: flex-start;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-item-dropdown {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    border-left: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 0;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    display: none;
    transform: none;
    width: 100%;
  }

  .dropdown-menu.active {
    display: flex;
  }

  /* Hero Architecture */
  .hero-layout-new {
    flex-direction: column;
    padding-top: 130px;
    height: auto;
    min-height: auto;
    gap: 3rem;
  }

  .hero-content {
    width: 100%;
    padding-right: 0;
  }

  .hero-title.display-title {
    font-size: 3.5rem;
  }

  .hero-visual-new {
    width: 100%;
    min-height: 400px;
  }

  /* About Layout */
  .split-layout {
    flex-direction: column;
    gap: 3rem;
  }

  .content-side {
    width: 100%;
    padding-right: 0;
  }

  .visual-side {
    width: 100%;
    min-height: 400px;
  }

  /* Focus Flow Ecosystem */
  .focus-flow-row,
  .focus-flow-row.reverse {
    flex-direction: column;
    gap: 2.5rem;
    padding: 2.5rem;
    align-items: flex-start;
  }

  .flow-lead,
  .flow-data {
    width: 100%;
    padding: 0;
  }

  .data-node-list {
    flex-wrap: wrap;
  }

  /* Tech Diagram Overrides */
  .ref-master-header {
    text-align: center;
  }

  .ref-subsection {
    flex-direction: column !important;
    gap: 3rem;
  }

  .ref-visual-col,
  .ref-content-col {
    width: 100%;
    padding: 0;
  }

  .leader-labels {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
  }

  .leader-label {
    margin: 0;
    text-align: center;
    padding: 0.8rem;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 6px;
  }

  .leader-line,
  .leader-dot {
    display: none;
  }

  /* Leadership Grid */
  .luxury-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .luxury-image-frame {
    height: auto;
    aspect-ratio: 3/4;
    width: 100%;
  }

  .roster-grid {
    grid-template-columns: 1fr;
  }
}

/* MOBILE PHONES (Max Width: 768px) */
@media (max-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }

  .section-heading {
    font-size: 2.4rem;
  }

  .hero-title.display-title {
    font-size: 2.8rem;
  }

  .btn {
    padding: 1rem 1.5rem;
  }

  .hero-actions.custom-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions.custom-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .massive-ref-heading {
    font-size: 2.4rem;
  }

  .luxury-title {
    font-size: 2.2rem;
  }
}

/* HANDSETS (Max Width: 480px) */
@media (max-width: 480px) {
  .brand-text {
    font-size: 1.15rem;
    letter-spacing: 2px;
  }

  .hero-title.display-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .section-heading {
    font-size: 2rem;
  }

  .massive-ref-heading {
    font-size: 2rem;
  }

  .tag-glow {
    padding: 0.8rem;
  }

  .tag-glow span {
    font-size: 0.95rem;
  }

  .accordion-header h3 {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  .a-tag {
    font-size: 0.85rem;
  }

  .luxury-title {
    font-size: 1.8rem;
  }

  .node-text h5 {
    font-size: 1.4rem;
  }

  .vision-text.highlight {
    font-size: 1.6rem;
  }

  .expertise-cinematic-title {
    font-size: 1.8rem;
  }

  .expertise-modal-content {
    padding: 2rem 1.2rem;
  }

  .expertise-modal-content h3 {
    font-size: 1.5rem;
  }

  .contact-value {
    font-size: 1rem;
    word-break: break-all;
  }

  .footer-brand h4 {
    font-size: 1.2rem !important;
  }
}