:root {
      --mobile-vh: 1vh;
      --mobile-menu-height: 80px;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 20px;
    }

    body {
      background: #000;
      color: #fff;
      font-family: 'Arial', sans-serif;
      line-height: 1.7;
      overflow-x: hidden;
      min-height: 100vh;
      min-height: -webkit-fill-available;
    }

    html {
      height: -webkit-fill-available;
    }

    /* Top Banner */
    .top-banner {
      width: 100%;
      background: #000;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .top-banner img {
      width: 100%;
      max-width: 480px;
      height: auto;
      display: block;
    }

    /* Floating Side Menu - DESKTOP ONLY */
    .side-menu.desktop-menu {
      display: block;
      position: fixed;
      left: 30px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1000;
      animation: breathePulse 4s infinite ease-in-out;
      background: rgba(0, 0, 0, 0.8);
      padding: 15px 12px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      max-height: 90vh;
    }

    /* Mobile Menu - HIDDEN ON DESKTOP */
    .mobile-menu {
      display: none;
    }

    .menu-logo {
      margin-bottom: 12px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      text-align: center;
    }

    .menu-logo img {
      width: 100%;
      max-width: 100px;
      height: auto;
      filter: brightness(1.1);
    }

    @keyframes breathePulse {
      0%, 100% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 20px rgba(0, 99, 156, 0.3);
      }
      50% {
        transform: translateY(-50%) scale(1.02);
        box-shadow: 0 0 30px rgba(162, 111, 25, 0.4);
      }
    }

    .side-menu nav {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .side-menu a {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: rgba(255, 255, 255, 0.7);
      transition: all 0.3s ease;
      padding: 6px 10px;
      border-radius: 5px;
      width: var(--nav-link-width, auto);
      min-height: var(--nav-link-height, 30px);
      flex: 0 0 auto;
      font: 500 12px/1.2 Arial, sans-serif;
      position: relative;
      text-align: left;
      justify-content: flex-start;
      white-space: pre-line;
    }

    .side-menu a::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      border: 2px solid rgba(255, 255, 255, 0.6);
      transition: all 0.3s ease;
      flex-shrink: 0;
    }

    .side-menu a:hover {
      color: rgba(255, 255, 255, 1);
      background: rgba(255, 255, 255, 0.1);
    }

    .side-menu a:hover::before {
      background: rgba(255, 255, 255, 0.8);
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    }

    .side-menu a.active {
      color: rgba(0, 99, 156, 1);
      background: rgba(0, 99, 156, 0.15);
    }

    .side-menu a.active::before {
      background: rgba(0, 99, 156, 0.9);
      border-color: rgba(0, 99, 156, 1);
      box-shadow: 0 0 15px rgba(0, 99, 156, 0.8);
    }

    /* Mobile Menu Styles - Completely Independent */
    .mobile-menu {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.95);
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding: 10px 15px;
      padding-bottom: calc(10px + env(safe-area-inset-bottom));
      z-index: 9999;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
      -webkit-overflow-scrolling: auto;
      overscroll-behavior: contain;
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
      will-change: auto;
    }

    @supports (padding: max(0px)) {
      .mobile-menu {
        padding-bottom: max(10px, env(safe-area-inset-bottom));
      }
    }

    .mobile-menu nav {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: stretch;
      gap: 8px;
      flex-wrap: nowrap;
      overflow-x: auto;
      overflow-y: hidden;
      padding: 2px 2px 4px;
      scroll-padding-inline: 16px;
      scroll-snap-type: x proximity;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }

    .mobile-menu nav::-webkit-scrollbar {
      display: none;
    }

    .mobile-menu a {
      font: 500 9px/1.2 Arial, sans-serif;
      padding: 8px 9px;
      flex: 0 0 var(--nav-chip-width, 88px);
      width: var(--nav-chip-width, 88px);
      min-width: var(--nav-chip-width, 88px);
      max-width: var(--nav-chip-width, 88px);
      min-height: var(--nav-chip-height, 44px);
      height: var(--nav-chip-height, 44px);
      text-align: center;
      border-radius: 6px;
      background: rgba(255, 255, 255, 0.05);
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: background 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      -webkit-tap-highlight-color: rgba(0, 99, 156, 0.3);
      touch-action: manipulation;
      user-select: none;
      -webkit-user-select: none;
      white-space: pre-line;
      scroll-snap-align: center;
      border: 1px solid transparent;
    }

    .mobile-menu a.active {
      background: rgba(0, 99, 156, 0.3);
      border: 1px solid rgba(0, 99, 156, 0.6);
      color: rgba(0, 99, 156, 1);
      box-shadow: 0 0 14px rgba(0, 99, 156, 0.3);
    }

    .mobile-menu a:hover,
    .mobile-menu a:active {
      background: rgba(255, 255, 255, 0.1);
    }

    /* Sections */
    section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 80px 20px;
      position: relative;
    }

    section:not(#hero) {
      content-visibility: auto;
      contain-intrinsic-size: 1000px;
    }

    .section-content {
      max-width: 900px;
      width: 100%;
    }

    /* Hero Section */
    #hero {
      position: relative;
    }

    .video-breath-wrapper {
      position: relative;
      margin: 0 auto 40px;
      width: 70%;
    }

    .video-container {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      border-radius: 3px;
      z-index: 2;
    }

    .video-container iframe, .video-container video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .breath-wave {
      position: absolute;
      border-radius: 3px;
      background: transparent;
      z-index: 1;
    }

    .inhale-wave {
      top: -15px;
      left: -15px;
      right: -15px;
      bottom: -15px;
      border: 2px solid rgba(255, 255, 255, 0.8);
      box-shadow: 0 0 10px rgba(0, 99, 156, 0.7);
      animation: inhaleWave 6s infinite;
    }

    .exhale-wave {
      top: -30px;
      left: -30px;
      right: -30px;
      bottom: -30px;
      border: 2px solid rgba(255, 255, 255, 0.8);
      box-shadow: 0 0 10px rgba(162, 111, 25, 0.7);
      animation: exhaleWave 6s infinite;
      animation-delay: 3s;
    }

    @keyframes inhaleWave {
      0%, 100% {
        transform: scale(1);
        opacity: 0.3;
        box-shadow: 0 0 5px rgba(0, 99, 156, 0.5);
      }
      50% {
        transform: scale(1.05);
        opacity: 0.8;
        box-shadow: 0 0 15px rgba(0, 99, 156, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
      }
    }

    @keyframes exhaleWave {
      0%, 100% {
        transform: scale(1.05);
        opacity: 0.8;
        box-shadow: 0 0 15px rgba(162, 111, 25, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
      }
      50% {
        transform: scale(1);
        opacity: 0.3;
        box-shadow: 0 0 5px rgba(162, 111, 25, 0.5);
      }
    }

    .breath-light {
      position: absolute;
      top: -40px;
      left: -40px;
      right: -40px;
      bottom: -40px;
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
      filter: blur(15px);
      z-index: 0;
      opacity: 0.7;
      animation: breatheLightPulse 6s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
    }

    @keyframes breatheLightPulse {
      0%, 100% {
        opacity: 0.3;
        transform: scale(0.95);
        background: radial-gradient(circle at center, rgba(0, 99, 156, 0.1) 0%, transparent 70%);
      }
      50% {
        opacity: 0.7;
        transform: scale(1.05);
        background: radial-gradient(circle at center, rgba(162, 111, 25, 0.1) 0%, transparent 70%);
      }
    }

    /* Text Sections */
    .text-sections {
      margin: 30px auto;
      position: relative;
      max-width: 720px;
    }

    .text-section {
      margin-bottom: 20px;
      padding: 16px;
      background: rgba(0, 0, 0, 0.7);
      border-radius: 5px;
      border-left: 2px solid rgba(255, 255, 255, 0.5);
      text-shadow: 0 0 2px rgba(255, 255, 255, 0.3);
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1s ease, transform 1s ease;
      font-size: 0.9em;
    }

    .text-section.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .inhale-section {
      box-shadow: 0 4px 15px -5px rgba(255, 255, 255, 0.1), 0 0 10px rgba(0, 99, 156, 0.2);
      animation: inhaleSectionGlow 6s infinite;
    }

    .exhale-section {
      box-shadow: 0 4px 15px -5px rgba(255, 255, 255, 0.1), 0 0 10px rgba(162, 111, 25, 0.2);
      animation: exhaleSectionGlow 6s infinite;
      animation-delay: 3s;
    }

    @keyframes inhaleSectionGlow {
      0%, 100% {
        border-left-color: rgba(255, 255, 255, 0.3);
      }
      50% {
        border-left-color: rgba(0, 99, 156, 1);
        box-shadow: 0 4px 20px -5px rgba(0, 99, 156, 0.7), 0 0 15px rgba(255, 255, 255, 0.3);
      }
    }

    @keyframes exhaleSectionGlow {
      0%, 100% {
        border-left-color: rgba(255, 255, 255, 0.3);
      }
      50% {
        border-left-color: rgba(162, 111, 25, 1);
        box-shadow: 0 4px 20px -5px rgba(162, 111, 25, 0.7), 0 0 15px rgba(255, 255, 255, 0.3);
      }
    }

    .inhale-term {
      color: #fff;
      font-weight: bold;
      animation: inhaleTermPulse 6s infinite;
    }

    .exhale-term {
      color: #fff;
      font-weight: bold;
      animation: exhaleTermPulse 6s infinite;
      animation-delay: 3s;
    }

    @keyframes inhaleTermPulse {
      0%, 100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
      }
      50% {
        text-shadow: 0 0 10px rgba(0, 99, 156, 0.8), 0 0 15px rgba(255, 255, 255, 0.5);
        color: rgba(0, 99, 156, 1);
      }
    }

    @keyframes exhaleTermPulse {
      0%, 100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
      }
      50% {
        text-shadow: 0 0 10px rgba(162, 111, 25, 0.8), 0 0 15px rgba(255, 255, 255, 0.5);
        color: rgba(162, 111, 25, 1);
      }
    }

    /* Other sections styling */
    h2 {
      font-size: 2.5em;
      margin-bottom: 30px;
      text-align: center;
      animation: titleGlow 6s infinite;
    }

    @keyframes titleGlow {
      0%, 100% {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
      }
      50% {
        text-shadow: 0 0 20px rgba(0, 99, 156, 0.6), 0 0 30px rgba(255, 255, 255, 0.4);
      }
    }

    .content-box {
      padding: 30px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
    }

    /* Scientific Ingredients Section */
    .ingredients-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .ingredient-card {
      padding: 25px;
      background: rgba(0, 0, 0, 0.7);
      border-radius: 8px;
      border-left: 3px solid rgba(255, 255, 255, 0.5);
      text-shadow: 0 0 2px rgba(255, 255, 255, 0.3);
      transition: transform 0.3s ease;
      text-align: center;
    }

    .ingredient-card:hover {
      transform: translateY(-5px);
    }

    .ingredient-image {
      margin-bottom: 20px;
      border-radius: 8px;
      overflow: hidden;
      background: rgba(0, 0, 0, 0.5);
    }

    .ingredient-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .ingredient-image video {
      width: 100%;
      height: auto;
      display: block;
    }

    .ingredient-card h4 {
      font-size: 1.1em;
      margin-bottom: 10px;
      color: #fff;
      line-height: 1.4;
    }

    .ingredient-card p {
      font-size: 0.95em;
      line-height: 1.6;
    }

    /* ORB VISUALIZATION STYLES */
    .orb-visualization {
      position: relative;
      width: 100%;
      height: 300px;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      background: #000;
      cursor: pointer;
      touch-action: none;
    }

    .orb-container {
      width: 100%;
      height: 100%;
      position: relative;
      transform-style: preserve-3d;
      animation: rotateOrb 40s infinite linear;
      will-change: auto;
    }

    @keyframes rotateOrb {
      from { transform: rotateY(0deg) rotateX(10deg); }
      to { transform: rotateY(360deg) rotateX(10deg); }
    }

    .orb-particle {
      position: absolute;
      border-radius: 50%;
      transform-style: preserve-3d;
      will-change: auto;
      backface-visibility: hidden;
      background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        currentColor 60%,
        currentColor 90%,
        rgba(255, 255, 255, 0) 100%);
    }

    .orb-paused .orb-container {
      animation-play-state: paused;
    }

    .orb-controls {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(0, 0, 0, 0.7);
      padding: 5px 10px;
      border-radius: 5px;
      font-size: 0.8em;
      opacity: 0.6;
      transition: opacity 0.3s;
      pointer-events: none;
    }

    .orb-visualization:hover .orb-controls {
      opacity: 1;
    }

    /* Citation Badge */
    .citation-badge {
      display: inline-block;
      padding: 6px 12px;
      margin-left: 10px;
      background: linear-gradient(135deg, rgba(0, 99, 156, 0.8), rgba(162, 111, 25, 0.8));
      border-radius: 20px;
      font-size: 0.75em;
      text-decoration: none;
      color: white;
      transition: all 0.3s ease;
      box-shadow: 0 0 10px rgba(0, 99, 156, 0.5);
      animation: badgePulse 3s infinite;
      vertical-align: middle;
    }

    .citation-badge:hover {
      transform: translateY(-2px) scale(1.05);
      box-shadow: 0 0 20px rgba(0, 99, 156, 0.8), 0 0 30px rgba(162, 111, 25, 0.6);
    }

    .citation-icon {
      margin-right: 4px;
    }

    @keyframes badgePulse {
      0%, 100% {
        box-shadow: 0 0 10px rgba(0, 99, 156, 0.5);
      }
      50% {
        box-shadow: 0 0 20px rgba(0, 99, 156, 0.8), 0 0 25px rgba(162, 111, 25, 0.6);
      }
    }

    /* Collaborations Section */
    .collaboration-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      margin-top: 30px;
    }

    .collaboration-card {
      padding: 30px;
      background: rgba(0, 0, 0, 0.7);
      border-radius: 8px;
      border-left: 3px solid rgba(255, 255, 255, 0.5);
      text-shadow: 0 0 2px rgba(255, 255, 255, 0.3);
    }

    .collaboration-title {
      font-size: 1.5em;
      margin-bottom: 18px;
      color: #fff;
    }

    .collaboration-copy {
      margin-bottom: 16px;
      line-height: 1.75;
      font-size: 0.98em;
    }

    .collaboration-copy:last-child {
      margin-bottom: 0;
    }

    .collaboration-lead {
      max-width: 720px;
    }

    .collaboration-pathways {
      max-width: none;
      margin-top: 24px;
    }

    .collaboration-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 22px;
      align-items: center;
    }

    .collaboration-actions .gallery-link,
    .collaboration-actions .demo-link {
      margin-top: 0;
    }

    .collaboration-intro {
      margin-bottom: 30px;
      padding-bottom: 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .collaboration-intro p {
      margin-bottom: 15px;
      line-height: 1.7;
      font-size: 0.95em;
    }

    .contributors-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 20px;
    }

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

    .contributor-item h4 {
      font-size: 1.3em;
      margin-bottom: 15px;
      color: #fff;
    }

    .contributor-item p {
      text-align: left;
      line-height: 1.7;
      font-size: 0.95em;
      margin-bottom: 15px;
    }

    .collaboration-header {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 25px;
      flex-wrap: wrap;
    }

    .collaboration-logo {
      flex-shrink: 0;
    }

    .collaboration-logo img {
      width: 120px;
      height: auto;
      filter: brightness(1.1);
    }

    .collaboration-header h3 {
      font-size: 1.6em;
      color: #fff;
      flex: 1;
      min-width: 250px;
    }

    .qri-highlight {
      animation: rgbSpectrum 15s linear infinite;
      font-weight: bold;
    }

    @keyframes rgbSpectrum {
      0% {
        color: rgb(240, 180, 200);
        text-shadow: 0 0 15px rgba(240, 180, 200, 0.6);
      }
      14.28% {
        color: rgb(180, 160, 220);
        text-shadow: 0 0 15px rgba(180, 160, 220, 0.6);
      }
      28.56% {
        color: rgb(160, 200, 230);
        text-shadow: 0 0 15px rgba(160, 200, 230, 0.6);
      }
      42.84% {
        color: rgb(140, 220, 210);
        text-shadow: 0 0 15px rgba(140, 220, 210, 0.6);
      }
      57.12% {
        color: rgb(180, 230, 180);
        text-shadow: 0 0 15px rgba(180, 230, 180, 0.6);
      }
      71.4% {
        color: rgb(255, 240, 150);
        text-shadow: 0 0 15px rgba(255, 240, 150, 0.6);
      }
      85.68% {
        color: rgb(255, 190, 160);
        text-shadow: 0 0 15px rgba(255, 190, 160, 0.6);
      }
      100% {
        color: rgb(240, 180, 200);
        text-shadow: 0 0 15px rgba(240, 180, 200, 0.6);
      }
    }

    .gallery-photo {
      margin: 0 auto 20px;
      width: 120px;
      height: 120px;
      position: relative;
    }

    .gallery-photo::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      padding: 4px;
      background: linear-gradient(45deg, rgba(0, 99, 156, 0.8), rgba(162, 111, 25, 0.8), rgba(0, 99, 156, 0.8));
      background-size: 200% 200%;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      animation: rotateGradient 4s linear infinite;
      z-index: -1;
    }

    .gallery-photo img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
    }

    .gallery-link {
      display: inline-block;
      margin-top: 8px;
      padding: 8px 16px;
      background: rgba(0, 99, 156, 0.2);
      border: 1px solid rgba(0, 99, 156, 0.5);
      border-radius: 5px;
      color: rgba(0, 99, 156, 1);
      text-decoration: none;
      font-size: 0.85em;
      transition: all 0.3s ease;
    }

    .gallery-link:hover {
      background: rgba(0, 99, 156, 0.3);
      border-color: rgba(0, 99, 156, 0.8);
      box-shadow: 0 0 15px rgba(0, 99, 156, 0.5);
      transform: translateY(-2px);
    }

    .heart-icon {
      width: 120px;
      height: auto;
      margin: 0 auto 20px;
      display: block;
      animation: heartPulse 4s ease-in-out infinite;
    }

    @keyframes heartPulse {
      0%, 100% {
        filter: grayscale(100%) brightness(0.8);
        opacity: 0.6;
        transform: scale(1);
      }
      50% {
        filter: grayscale(0%) brightness(1);
        opacity: 1;
        transform: scale(1.05);
      }
    }

    /* Team Section */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .team-member {
      padding: 25px;
      background: rgba(0, 0, 0, 0.7);
      border-radius: 8px;
      border-left: 3px solid rgba(255, 255, 255, 0.5);
      text-shadow: 0 0 2px rgba(255, 255, 255, 0.3);
      transition: transform 0.3s ease;
      text-align: center;
    }

    .team-member:hover {
      transform: translateY(-5px);
    }

    .team-photo {
      margin: 0 auto 20px;
      width: 120px;
      height: 120px;
      position: relative;
    }

    .team-photo::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      padding: 4px;
      background: linear-gradient(45deg, rgba(0, 99, 156, 0.8), rgba(162, 111, 25, 0.8), rgba(0, 99, 156, 0.8));
      background-size: 200% 200%;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      animation: rotateGradient 4s linear infinite;
      z-index: -1;
    }

    @keyframes rotateGradient {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }

    .photo-placeholder {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(0, 99, 156, 0.3), rgba(162, 111, 25, 0.3));
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .team-image {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
    }

    .team-member h3 {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: #fff;
      text-align: center;
    }

    .team-member .role {
      font-size: 0.95em;
      margin-bottom: 15px;
      opacity: 0.9;
      text-align: center;
    }

    .team-member p {
      line-height: 1.6;
      font-size: 0.95em;
      text-align: left;
    }

    .social-links {
      display: flex;
      gap: 12px;
      justify-content: center;
      margin: 15px 0;
      flex-wrap: wrap;
    }

    .social-link {
      width: 40px;
      height: 40px;
      padding: 8px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      position: relative;
    }

    .social-link img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: filter 0.3s ease;
    }

    .social-link:hover img {
      filter: brightness(1.2);
    }

    .social-link.linkedin:hover {
      border-color: rgba(0, 119, 181, 0.8);
      box-shadow: 0 0 15px rgba(0, 119, 181, 0.5);
    }

    .social-link.orcid:hover {
      border-color: rgba(166, 206, 57, 0.8);
      box-shadow: 0 0 15px rgba(166, 206, 57, 0.5);
    }

    .social-link.scholar:hover {
      border-color: rgba(66, 133, 244, 0.8);
      box-shadow: 0 0 15px rgba(66, 133, 244, 0.5);
    }

    .social-link.linktree:hover {
      border-color: rgba(67, 189, 125, 0.8);
      box-shadow: 0 0 15px rgba(67, 189, 125, 0.5);
    }

    .social-link.email:hover {
      border-color: rgba(180, 80, 80, 0.8);
      box-shadow: 0 0 15px rgba(180, 80, 80, 0.5);
    }

    .social-link.github img {
      filter: brightness(1) invert(1);
    }

    .social-link.github:hover {
      border-color: rgba(138, 43, 226, 0.8);
      box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
    }

    .social-link.github:hover img {
      filter: brightness(1.2) invert(1);
    }

    .social-link.mesmerprism img {
      filter: brightness(0) invert(1);
    }

    .social-link.mesmerprism:hover {
      border-color: rgba(255, 255, 255, 0.8);
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    }

    .social-link.mesmerprism:hover img {
      filter: brightness(1.2) invert(1);
    }

    .social-link.website:hover {
      border-color: rgba(100, 200, 255, 0.8);
      box-shadow: 0 0 15px rgba(100, 200, 255, 0.5);
    }

    .social-link.website svg {
      color: rgba(255, 255, 255, 0.8);
      transition: color 0.3s ease;
    }

    .social-link.website:hover svg {
      color: rgba(100, 200, 255, 1);
    }

    .profile-link {
      color: rgba(0, 99, 156, 1);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .profile-link:hover {
      text-shadow: 0 0 10px rgba(0, 99, 156, 0.8);
      color: rgba(0, 99, 156, 1);
    }

    .demo-link {
      display: inline-block;
      padding: 6px 14px;
      margin: 0 4px;
      background: rgba(0, 99, 156, 0.15);
      border: 2px solid rgba(0, 99, 156, 0.6);
      border-radius: 6px;
      text-decoration: none;
      transition: all 0.3s ease;
      font-weight: 600;
      animation: rgbSpectrum 15s linear infinite;
    }

    .demo-link:hover {
      background: rgba(0, 99, 156, 0.25);
      border-color: rgba(0, 99, 156, 1);
      box-shadow: 0 0 15px rgba(0, 99, 156, 0.6);
      transform: translateY(-2px);
    }

    /* Publications Section */
    .publications-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 30px;
    }

    .publication-item {
      padding: 25px;
      background: rgba(0, 0, 0, 0.7);
      border-radius: 8px;
      border-left: 3px solid rgba(255, 255, 255, 0.5);
      text-shadow: 0 0 2px rgba(255, 255, 255, 0.3);
    }

    .publication-item h4 {
      font-size: 1.2em;
      margin-bottom: 15px;
      color: #fff;
      line-height: 1.4;
    }

    .publication-authors {
      font-size: 0.95em;
      margin-bottom: 8px;
      opacity: 0.9;
    }

    .publication-venue {
      font-size: 0.9em;
      margin-bottom: 12px;
      opacity: 0.85;
    }

    .publication-link a {
      color: rgba(0, 99, 156, 1);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .publication-link a:hover {
      text-shadow: 0 0 15px rgba(0, 99, 156, 0.8);
    }

    /* Explainer Videos Section */
    .video-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .explainer-video {
      padding: 20px;
      background: rgba(0, 0, 0, 0.7);
      border-radius: 8px;
      border-left: 3px solid rgba(255, 255, 255, 0.5);
    }

    .video-wrapper {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      border-radius: 5px;
      margin-bottom: 15px;
    }

    .video-wrapper iframe,
    .video-wrapper .youtube-lite {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .video-wrapper iframe {
      border: 0;
    }

    .youtube-lite {
      display: block;
      border: 0;
      padding: 0;
      background: #000;
      cursor: pointer;
      overflow: hidden;
      color: #fff;
    }

    .youtube-lite img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(0.78);
      transition: transform 0.3s ease, filter 0.3s ease;
    }

    .youtube-lite:hover img {
      transform: scale(1.03);
      filter: brightness(0.92);
    }

    .youtube-lite::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.1));
      pointer-events: none;
    }

    .youtube-lite__play {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 72px;
      height: 72px;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      background: rgba(0, 0, 0, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.25);
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
      z-index: 1;
      pointer-events: none;
    }

    .youtube-lite__play::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 55%;
      transform: translate(-50%, -50%);
      width: 0;
      height: 0;
      border-top: 12px solid transparent;
      border-bottom: 12px solid transparent;
      border-left: 20px solid #fff;
    }

    .youtube-lite__label {
      position: absolute;
      left: 18px;
      bottom: 16px;
      z-index: 1;
      font-size: 0.9em;
      letter-spacing: 0.02em;
      pointer-events: none;
    }

    .video-caption {
      text-align: center;
      font-size: 0.95em;
      color: rgba(255, 255, 255, 0.9);
      margin-top: 10px;
    }

    .hero-video,
    .feature-video,
    .ingredient-loop {
      display: block;
      width: 100%;
      background: #000;
    }

    .feature-video {
      height: auto;
      border-radius: 8px;
    }

    .cardiac-copy {
      line-height: 1.7;
      font-size: 0.95em;
      margin-bottom: 30px;
    }

    .cardiac-video-wrapper {
      max-width: 680px;
      margin: 0 auto;
    }

    .cardiac-paper-entry {
      margin-top: 0;
    }

    /* Advisory Section */
    .advisory-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .advisory-member {
      padding: 25px;
      background: rgba(0, 0, 0, 0.7);
      border-radius: 8px;
      border-left: 3px solid rgba(255, 255, 255, 0.5);
      text-shadow: 0 0 2px rgba(255, 255, 255, 0.3);
      transition: transform 0.3s ease;
      text-align: center;
    }

    .advisory-member:hover {
      transform: translateY(-5px);
    }

    .advisory-member h3 {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: #fff;
    }

    .advisory-member p {
      text-align: left;
    }

    /* Funding Section */
    .funding-info {
      max-width: 800px;
      margin: 30px auto;
    }

    .funding-card {
      padding: 30px;
      background: rgba(0, 0, 0, 0.7);
      border-radius: 8px;
      border-left: 3px solid rgba(255, 255, 255, 0.5);
      text-align: center;
      text-shadow: 0 0 2px rgba(255, 255, 255, 0.3);
    }

    .funding-card h3 {
      font-size: 1.6em;
      margin-bottom: 15px;
    }

    .logos-grid {
      margin-top: 40px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      align-items: center;
      justify-items: center;
    }

    .logo-item {
      width: 100%;
      max-width: 250px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 10px;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-item:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateY(-5px);
      box-shadow: 0 5px 20px rgba(0, 99, 156, 0.3);
    }

    .logo-item img {
      width: 100%;
      height: auto;
      max-height: 100px;
      object-fit: contain;
      filter: brightness(1.2);
    }

    .partner-list {
      margin-top: 25px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .partner-item {
      padding: 12px 20px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 5px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }

    .partner-item:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(0, 99, 156, 0.5);
      box-shadow: 0 0 10px rgba(0, 99, 156, 0.3);
    }

    /* Hire Us Section */
    .hire-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 30px;
      margin: 30px auto 0;
      max-width: 1100px;
    }

    .hire-card {
      padding: 30px;
      background: rgba(0, 0, 0, 0.7);
      border-radius: 8px;
      border-left: 3px solid rgba(255, 255, 255, 0.5);
      text-shadow: 0 0 2px rgba(255, 255, 255, 0.3);
    }

    .hire-card h3 {
      font-size: 1.5em;
      margin-bottom: 18px;
      color: #fff;
    }

    .hire-card p {
      margin-bottom: 16px;
      line-height: 1.75;
      font-size: 0.98em;
    }

    .hire-card p:last-child {
      margin-bottom: 0;
    }

    .hire-service-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 14px;
    }

    .hire-service-list li {
      padding-left: 20px;
      position: relative;
      line-height: 1.65;
    }

    .hire-service-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.75em;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(0, 99, 156, 0.9);
      box-shadow: 0 0 10px rgba(0, 99, 156, 0.45);
      transform: translateY(-50%);
    }

    /* Contact Section */
    .contact-info {
      max-width: 600px;
      margin: 30px auto;
    }

    .contact-card {
      padding: 40px;
      background: rgba(0, 0, 0, 0.7);
      border-radius: 8px;
      border-left: 3px solid rgba(255, 255, 255, 0.5);
      text-align: center;
      text-shadow: 0 0 2px rgba(255, 255, 255, 0.3);
    }

    .contact-email {
      font-size: 1.3em;
      margin: 0;
    }

    .email-link {
      color: rgba(0, 99, 156, 1);
      text-decoration: none;
      transition: all 0.3s ease;
      padding: 10px 20px;
      display: inline-block;
      border-radius: 5px;
    }

    .email-link:hover {
      background: rgba(0, 99, 156, 0.15);
      box-shadow: 0 0 20px rgba(0, 99, 156, 0.5);
      text-shadow: 0 0 10px rgba(0, 99, 156, 0.8);
    }

    .reveal-ready {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal-ready.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .contact-card h3 {
      font-size: 1.6em;
      margin-bottom: 15px;
    }

    .contact-details {
      margin-top: 20px;
      line-height: 1.8;
    }

    .subpage section {
      min-height: auto;
      padding: 60px 20px 90px;
    }

    .subpage .section-content {
      max-width: 980px;
    }

    .subpage-intro {
      max-width: 780px;
      margin: 0 auto 24px;
      text-align: center;
    }

    .subpage-title {
      font-size: 3em;
      margin-bottom: 20px;
      text-align: center;
      animation: titleGlow 6s infinite;
    }

    .subpage-actions {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin: 0 auto 40px;
    }

    .subpage-actions .gallery-link,
    .subpage-actions .demo-link {
      margin-top: 0;
    }

    .writing-group-grid {
      max-width: none;
      margin-bottom: 30px;
    }

    /* Background Effects */
    .breath-indicator {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      z-index: 100;
      animation: breathIndicator 6s infinite ease-in-out;
    }

    @keyframes breathIndicator {
      0%, 100% {
        opacity: 0.4;
        height: 2px;
        background: rgba(0, 99, 156, 0.7);
      }
      50% {
        opacity: 1;
        height: 4px;
        background: rgba(162, 111, 25, 0.7);
      }
    }

    .ambient-glow {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
      z-index: -1;
      animation: ambientBreath 6s infinite ease-in-out;
      pointer-events: none;
    }

    @keyframes ambientBreath {
      0%, 100% {
        opacity: 0.3;
        transform: scale(0.9);
        background: radial-gradient(circle at center, rgba(0, 99, 156, 0.03) 0%, transparent 70%);
      }
      50% {
        opacity: 0.6;
        transform: scale(1.1);
        background: radial-gradient(circle at center, rgba(162, 111, 25, 0.03) 0%, transparent 70%);
      }
    }

    html.low-power .side-menu.desktop-menu {
      animation: none;
      backdrop-filter: none;
      background: rgba(0, 0, 0, 0.92);
    }

    html.low-power .inhale-section,
    html.low-power .exhale-section,
    html.low-power .inhale-term,
    html.low-power .exhale-term,
    html.low-power h2,
    html.low-power .citation-badge,
    html.low-power .qri-highlight,
    html.low-power .heart-icon,
    html.low-power .gallery-photo::before,
    html.low-power .breath-indicator,
    html.low-power .ambient-glow,
    html.low-power .breath-wave,
    html.low-power .breath-light {
      animation: none !important;
    }

    html.low-power .inhale-term,
    html.low-power .exhale-term,
    html.low-power h2,
    html.low-power .qri-highlight {
      text-shadow: none;
    }

    html.low-power .inhale-section {
      border-left-color: rgba(0, 99, 156, 0.85);
      box-shadow: 0 4px 16px -6px rgba(0, 99, 156, 0.35);
    }

    html.low-power .exhale-section {
      border-left-color: rgba(162, 111, 25, 0.85);
      box-shadow: 0 4px 16px -6px rgba(162, 111, 25, 0.35);
    }

    html.low-power .citation-badge {
      box-shadow: 0 0 10px rgba(0, 99, 156, 0.35);
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      /* Hide desktop menu, show mobile menu */
      .side-menu.desktop-menu {
        display: none !important;
      }

      .mobile-menu {
        display: block !important;
      }

      .top-banner {
        padding: 10px;
      }

      .top-banner img {
        max-width: 100%;
      }

      .menu-logo {
        display: none;
      }

      .side-menu {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        bottom: 15px;
        top: auto;
        padding: 12px 20px;
        animation: none;
        border-radius: 30px;
        max-width: 90%;
        z-index: 1001;
        background: rgba(0, 0, 0, 0.9);
      }

      .side-menu nav {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
      }

      .side-menu a {
        font-size: 0;
        padding: 0;
        min-width: 12px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        border: 2px solid rgba(255, 255, 255, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
      }

      .side-menu a::before {
        display: none;
      }

      .side-menu a.active {
        background: rgba(0, 99, 156, 0.9);
        border-color: rgba(0, 99, 156, 1);
        box-shadow: 0 0 15px rgba(0, 99, 156, 0.8);
        transform: scale(1.4);
      }

      body {
        padding-bottom: calc(var(--mobile-menu-height, 80px) + 12px);
      }

      .subpage {
        padding-bottom: 0;
      }

      .video-breath-wrapper {
        width: 95%;
      }

      h2 {
        font-size: 1.8em;
      }

      section {
        padding: 60px 15px;
      }

      .team-grid, .advisory-grid, .video-grid, .ingredients-grid, .hire-grid {
        grid-template-columns: 1fr;
      }

      .contributors-grid {
        grid-template-columns: 1fr;
      }

      .collaboration-pathways {
        grid-template-columns: 1fr;
      }

      .collaboration-actions,
      .subpage-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .collaboration-actions .gallery-link,
      .collaboration-actions .demo-link,
      .subpage-actions .gallery-link,
      .subpage-actions .demo-link {
        width: 100%;
        text-align: center;
      }

      .collaboration-logo img {
        width: 100px;
      }

      .collaboration-header {
        flex-direction: column;
        text-align: center;
      }

      .subpage-title {
        font-size: 2.2em;
      }

      .collaboration-logo img {
        width: 100px;
      }

      .orb-visualization {
        height: 250px;
      }
    }
