/* Base Reset & Typography */
      :root {
        --neon-red: #ff4444;
        --neon-blue: #00ffcc;
        --border-dim: rgba(255, 255, 255, 0.1);
        --bg-panel: rgba(10, 10, 10, 0.95);
        --text-subtle: #ffffff;
        --text-muted: #ffffff;
        --focus-ring: #00ffcc;
        --focus-shadow: rgba(0, 255, 204, 0.2);
      }

      body {
        font-family: "Barlow", sans-serif;
        background-color: #000000;
        color: #ffffff;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
        overscroll-behavior-y: none;
        text-rendering: optimizeLegibility;
      }

      body > :not([data-modal-host]):not(script) :where(
          h1,
          h2,
          h3,
          h4,
          h5,
          h6,
          p,
          a,
          button,
          label,
          span,
          small,
          strong,
          em,
          li,
          ul,
          ol,
          dl,
          dt,
          dd,
          blockquote,
          figcaption,
          table,
          thead,
          tbody,
          tfoot,
          tr,
          th,
          td,
          caption,
          input,
          textarea,
          select,
          option,
          code,
          pre
        ) {
        font-family: "Barlow", sans-serif;
      }

      body > :not([data-modal-host]):not(script) :is(
          .font-mono,
          code,
          pre,
          .clinical-ledger-meta,
          .clinical-ledger-endpoint,
          .clinical-ledger-evidence,
          .clinical-ledger thead th,
          .clinical-ledger td:last-child,
          .citation-ref
        ) {
        font-family: "Barlow", sans-serif !important;
        letter-spacing: normal;
      }

      body > :not([data-modal-host]):not(script) .font-mono {
        font-family: "Barlow", sans-serif !important;
        letter-spacing: normal !important;
      }

      [data-modal-host] {
        color: var(--text-main, #f4f4f5);
        font-family: "Barlow", sans-serif;
        text-rendering: auto;
      }

      body[data-modal-backdrop-open="true"] {
        background: #000 !important;
      }

      body[data-modal-backdrop-open="true"] > :not([data-modal-host]):not(script) {
        display: none !important;
      }

      header :where(a, span, button),
      #home-scroll-container .snap-section :where(
          h1,
          h2,
          h3,
          h4,
          h5,
          h6,
          p,
          li,
          td,
          th,
          span,
          label,
          a,
          strong,
          em,
          b,
          small,
          button
        ),
      #page-mechanics :where(
          h1,
          h2,
          h3,
          h4,
          h5,
          h6,
          p,
          li,
          td,
          th,
          span,
          label,
          a,
          strong,
          em,
          b,
          small,
          button
        ),
      #page-zones :where(
          h1,
          h2,
          h3,
          h4,
          h5,
          h6,
          p,
          li,
          td,
          th,
          span,
          label,
          a,
          strong,
          em,
          b,
          small,
          button
        ),
      #page-clinical :where(
          h1,
          h2,
          h3,
          h4,
          h5,
          h6,
          p,
          li,
          td,
          th,
          span,
          label,
          a,
          strong,
          em,
          b,
          small,
          button
        ) {
        font-family: "Barlow", sans-serif !important;
      }

      .archive-footer :where(
          h1,
          h2,
          h3,
          h4,
          h5,
          h6,
          p,
          li,
          td,
          th,
          span,
          label,
          a,
          strong,
          em,
          b,
          small,
          button
        ) {
        font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif !important;
      }

      #page-mechanics svg text,
      #page-zones svg text,
      #page-clinical svg text {
        fill: #ffffff !important;
        font-family: "Barlow", sans-serif !important;
      }

      .archive-footer svg text {
        fill: #ffffff !important;
        font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif !important;
      }

      #home-scroll-container .snap-section p,
      #home-scroll-container .snap-section li,
      #page-mechanics p,
      #page-mechanics li,
      #page-mechanics td,
      #page-mechanics th,
      #page-zones p,
      #page-zones li,
      #page-zones td,
      #page-zones th,
      #page-clinical p,
      #page-clinical li,
      #page-clinical td,
      #page-clinical th,
      .citation-ref,
      code,
      pre {
        color: #ffffff !important;
      }

      #home-scroll-container .snap-section p {
        font-weight: 500;
        line-height: 1.72;
      }

      #page-mechanics p,
      #page-zones p,
      #page-clinical p {
        line-height: 1.72;
      }

      .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
      }

      /* Smooth Hide/Show for SPA Routing */
      .page-view {
        display: none;
        opacity: 0;
        transition: opacity 0.4s ease-in-out;
      }
      .page-view.active {
        display: block;
        opacity: 1;
      }

      /* Home Scroll Container */
      .scroll-container {
        height: 100vh;
        overflow-y: scroll;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
      }
      .scroll-container::-webkit-scrollbar {
        display: none;
      }

      .snap-section {
        height: 100vh;
        width: 100%;
        position: relative;
        overflow: hidden;
      }
      .snap-footer {
        position: relative;
        background-color: #000;
      }

      /* Video Backgrounds & Cinematic Overlays */
      .bg-video,
      .bg-image-cover,
      .slider-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        object-fit: cover;
        object-position: var(--media-desktop-object-position, 50% 50%);
        transform: scale(var(--media-desktop-scale, 1));
        transform-origin: center;
        will-change: transform;
      }

      .managed-video-stage {
        position: absolute;
        inset: 0;
        overflow: hidden;
        z-index: 0;
        background-color: #060606;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        contain: paint;
        isolation: isolate;
      }

      .managed-video-stage[data-art-direction] {
        background-position: var(--media-desktop-object-position, 50% 50%);
      }

      .video-poster-layer {
        position: absolute;
        inset: 0;
        z-index: 0;
        opacity: 1;
        transition: opacity 220ms ease;
      }

      .video-poster-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: var(--media-desktop-object-position, 50% 50%);
        transform: scale(var(--media-desktop-scale, 1));
        transform-origin: center;
        will-change: transform;
        display: block;
      }

      .sx-card[data-art-direction] {
        background-position: var(--media-desktop-object-position, 50% 50%);
        background-size: cover;
      }

      .managed-video-stage .bg-video {
        opacity: 0;
        transition: opacity 220ms ease;
      }

      .managed-video-stage.is-video-visible .bg-video {
        opacity: 1;
      }

      .managed-video-stage.is-video-visible .video-poster-layer {
        opacity: 0;
        pointer-events: none;
      }

      #section-1 .video-wrapper {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        -webkit-mask-image: none;
        mask-image: none;
      }

      #section-1::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background:
          radial-gradient(
            88% 110% at 18% 42%,
            rgba(0, 0, 0, 0.16) 0%,
            rgba(0, 0, 0, 0.1) 36%,
            rgba(0, 0, 0, 0.04) 58%,
            rgba(0, 0, 0, 0) 80%
          ),
          linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.68) 0%,
            rgba(0, 0, 0, 0.64) 14%,
            rgba(0, 0, 0, 0.56) 30%,
            rgba(0, 0, 0, 0.42) 48%,
            rgba(0, 0, 0, 0.2) 68%,
            rgba(0, 0, 0, 0.06) 84%,
            rgba(0, 0, 0, 0) 96%
          );
      }

      .overlay,
      .overlay-s2,
      .overlay-dark,
      .overlay-gradient-bottom,
      .hero-scrim {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: transparent;
        pointer-events: none;
      }
      .overlay {
        background:
          radial-gradient(
            84% 110% at 22% 42%,
            rgba(0, 0, 0, 0.12) 0%,
            rgba(0, 0, 0, 0.08) 36%,
            rgba(0, 0, 0, 0.03) 58%,
            rgba(0, 0, 0, 0) 80%
          ),
          linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.56) 0%,
            rgba(0, 0, 0, 0.52) 14%,
            rgba(0, 0, 0, 0.44) 30%,
            rgba(0, 0, 0, 0.3) 48%,
            rgba(0, 0, 0, 0.14) 68%,
            rgba(0, 0, 0, 0.03) 82%,
            rgba(0, 0, 0, 0) 94%
          );
      }
      .overlay-s2 {
        background:
          radial-gradient(
            84% 110% at 78% 42%,
            rgba(0, 0, 0, 0.12) 0%,
            rgba(0, 0, 0, 0.08) 36%,
            rgba(0, 0, 0, 0.03) 58%,
            rgba(0, 0, 0, 0) 80%
          ),
          linear-gradient(
            270deg,
            rgba(0, 0, 0, 0.56) 0%,
            rgba(0, 0, 0, 0.52) 14%,
            rgba(0, 0, 0, 0.44) 30%,
            rgba(0, 0, 0, 0.3) 48%,
            rgba(0, 0, 0, 0.14) 68%,
            rgba(0, 0, 0, 0.03) 82%,
            rgba(0, 0, 0, 0) 94%
          );
      }
      .overlay-dark {
        background: rgba(0, 0, 0, 0.52);
      }
      .overlay-gradient-bottom {
        background: linear-gradient(
          0deg,
          rgba(0, 0, 0, 0.68) 0%,
          rgba(0, 0, 0, 0.46) 22%,
          rgba(0, 0, 0, 0.22) 50%,
          rgba(0, 0, 0, 0.06) 74%,
          rgba(0, 0, 0, 0) 100%
        );
      }
      .scrim-left {
        background:
          radial-gradient(
            88% 110% at 22% 42%,
            rgba(0, 0, 0, 0.14) 0%,
            rgba(0, 0, 0, 0.09) 36%,
            rgba(0, 0, 0, 0.03) 58%,
            rgba(0, 0, 0, 0) 80%
          ),
          linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.62) 0%,
            rgba(0, 0, 0, 0.58) 14%,
            rgba(0, 0, 0, 0.5) 30%,
            rgba(0, 0, 0, 0.36) 48%,
            rgba(0, 0, 0, 0.16) 68%,
            rgba(0, 0, 0, 0.04) 82%,
            rgba(0, 0, 0, 0) 94%
          );
      }
      .scrim-right {
        background:
          radial-gradient(
            88% 110% at 78% 42%,
            rgba(0, 0, 0, 0.14) 0%,
            rgba(0, 0, 0, 0.09) 36%,
            rgba(0, 0, 0, 0.03) 58%,
            rgba(0, 0, 0, 0) 80%
          ),
          linear-gradient(
            270deg,
            rgba(0, 0, 0, 0.62) 0%,
            rgba(0, 0, 0, 0.58) 14%,
            rgba(0, 0, 0, 0.5) 30%,
            rgba(0, 0, 0, 0.36) 48%,
            rgba(0, 0, 0, 0.16) 68%,
            rgba(0, 0, 0, 0.04) 82%,
            rgba(0, 0, 0, 0) 94%
          );
      }
      .scrim-bottom {
        background: linear-gradient(
          0deg,
          rgba(0, 0, 0, 0.96) 0%,
          rgba(0, 0, 0, 0.78) 24%,
          rgba(0, 0, 0, 0.44) 50%,
          rgba(0, 0, 0, 0.16) 74%,
          rgba(0, 0, 0, 0) 100%
        );
      }

      .observer-target h1,
      .observer-target h2,
      .observer-target h3 {
        text-shadow:
          0 2px 16px rgba(0, 0, 0, 0.82),
          0 1px 1px rgba(0, 0, 0, 0.96);
      }
      .observer-target p {
        color: #ffffff !important;
        text-shadow:
          0 1px 10px rgba(0, 0, 0, 0.7),
          0 1px 1px rgba(0, 0, 0, 0.9);
      }

      .media-copy-shell {
        position: relative;
        z-index: 3;
      }
      .media-copy-shell::before {
        content: none;
      }
      .media-copy-shell h1,
      .media-copy-shell h2 {
        color: #fff !important;
        font-family: "Barlow", sans-serif !important;
        font-size: clamp(1.875rem, 3.4vw, 3rem) !important;
        font-weight: 700 !important;
        line-height: 1.08 !important;
        letter-spacing: 0.01em !important;
        text-shadow:
          0 2px 16px rgba(0, 0, 0, 0.82),
          0 1px 1px rgba(0, 0, 0, 0.96);
      }
      .media-copy-shell h3,
      .media-copy-shell h4 {
        color: #fff !important;
        font-family: "Barlow", sans-serif !important;
        text-shadow:
          0 2px 16px rgba(0, 0, 0, 0.82),
          0 1px 1px rgba(0, 0, 0, 0.96);
      }
      .media-copy-shell p,
      .media-copy-shell li {
        color: #ffffff !important;
        font-family: "Barlow", sans-serif !important;
        font-size: clamp(0.95rem, 1.05vw, 1.05rem) !important;
        font-weight: 500 !important;
        letter-spacing: 0.01em !important;
        line-height: 1.7 !important;
        text-shadow:
          0 1px 10px rgba(0, 0, 0, 0.7),
          0 1px 1px rgba(0, 0, 0, 0.9);
      }
      .media-copy-shell .media-copy-kicker,
      .media-copy-shell .mechanics-hero-eyebrow,
      .media-copy-shell .mechanics-closing-eyebrow,
      .zones-hero-eyebrow,
      .zones-slide-eyebrow,
      .zones-story-eyebrow,
      .mega-footer-kicker,
      .clinical-ledger-kicker {
        display: none !important;
      }

      #protocol-slider .slide h1,
      #protocol-slider .slide h2,
      #protocol-slider .slide p {
        color: #ffffff !important;
        text-shadow:
          0 1px 10px rgba(0, 0, 0, 0.52),
          0 1px 1px rgba(0, 0, 0, 0.68);
      }
      #protocol-slider .slide p {
        color: #ffffff !important;
        font-family: "Barlow", sans-serif !important;
        font-size: clamp(0.95rem, 1.05vw, 1.05rem) !important;
        font-weight: 500;
        letter-spacing: 0.01em;
        max-width: 31rem;
        line-height: 1.7;
      }
      #protocol-slider .slide h2 {
        font-size: clamp(0.68rem, 0.7vw, 0.78rem) !important;
        letter-spacing: 0.22em;
        text-shadow:
          0 1px 8px rgba(0, 0, 0, 0.44),
          0 1px 1px rgba(0, 0, 0, 0.6);
      }
      #protocol-slider .slide {
        justify-content: flex-start;
        padding: 8.25rem 7% 8%;
      }
      #protocol-slider .slide .media-copy-shell {
        max-width: min(34rem, 39vw);
        margin-top: clamp(0.5rem, 1.4vh, 1rem);
      }
      #protocol-slider .overlay.scrim-left {
        background:
          radial-gradient(
            94% 118% at 22% 26%,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.14) 34%,
            rgba(0, 0, 0, 0.06) 58%,
            rgba(0, 0, 0, 0) 82%
          ),
          linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.46) 0%,
            rgba(0, 0, 0, 0.45) 22%,
            rgba(0, 0, 0, 0.4) 38%,
            rgba(0, 0, 0, 0.28) 56%,
            rgba(0, 0, 0, 0.13) 74%,
            rgba(0, 0, 0, 0.03) 88%,
            rgba(0, 0, 0, 0) 96%
          ),
          linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.22) 0%,
            rgba(0, 0, 0, 0.1) 22%,
            rgba(0, 0, 0, 0) 48%
          );
      }

      /* Header Styles */
      header {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }
      body[data-mobile-menu-open="true"] header {
        z-index: 70 !important;
      }
      .header-scrolled {
        background-color: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-dim);
      }

      .nav-link {
        position: relative;
        text-transform: uppercase;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.15em;
        padding-bottom: 6px;
        color: #ffffff;
        text-decoration: none;
        cursor: pointer;
        opacity: 0.6;
        transition: opacity 0.3s ease;
      }
      .nav-link--long {
        font-size: 0.65rem;
        letter-spacing: 0.08em;
        line-height: 1.25;
        max-width: 13rem;
        text-align: center;
        white-space: normal;
      }
      .nav-link:hover,
      .nav-link.active-nav {
        opacity: 1;
      }
      .nav-link::after {
        content: "";
        position: absolute;
        width: 0;
        height: 1px;
        bottom: 0;
        left: 0;
        background-color: #ffffff;
        transition: width 0.3s ease;
      }
      .nav-link:hover::after,
      .nav-link.active-nav::after {
        width: 100%;
      }
      .nav-link[aria-current="page"] {
        opacity: 1;
      }

      /* Mobile Menu Setup */
      .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 65;
        background-color: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
      }
      .mobile-menu.open {
        opacity: 1;
        pointer-events: auto;
      }
      .mobile-nav-link {
        font-size: 1.25rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: #fff;
        text-decoration: none;
        opacity: 0.6;
        transition: all 0.3s ease;
      }
      .mobile-nav-link--long {
        max-width: 18rem;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.3;
        text-align: center;
      }
      .mobile-nav-link:hover,
      .mobile-nav-link.active-nav {
        opacity: 1;
        color: #ffffff;
      }
      .mobile-nav-link[aria-current="page"] {
        opacity: 1;
        color: #ffffff;
      }

      #mobile-menu-btn {
        position: relative;
        width: 3rem;
        height: 3rem;
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: 999px;
        background: rgba(5, 5, 5, 0.26);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
      }
      #mobile-menu-btn svg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition:
          opacity 180ms ease,
          transform 180ms ease;
        pointer-events: none;
      }
      #mobile-menu-btn[data-menu-state="closed"] #hamburger-icon {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
      }
      #mobile-menu-btn[data-menu-state="closed"] #close-icon {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8) rotate(-18deg);
      }
      #mobile-menu-btn[data-menu-state="open"] #hamburger-icon {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8) rotate(18deg);
      }
      #mobile-menu-btn[data-menu-state="open"] #close-icon {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
      }

      .text-gray-300,
      .text-gray-400,
      .text-gray-500,
      .text-gray-600,
      .text-\[\#cccccc\],
      .text-\[var\(--neon-blue\)\],
      .text-\[var\(--neon-red\)\],
      .text-white\/90,
      .text-white\/70,
      .text-white\/60,
      .text-white\/50,
      .text-white\/40 {
        color: #ffffff !important;
      }
      .text-gray-500 {
        color: #ffffff !important;
      }
      .text-gray-600 {
        color: #ffffff !important;
      }
      .citation-ref,
      .spec-label {
        color: #ffffff !important;
      }
      .citation-ref {
        color: #ffffff !important;
        text-decoration: underline;
        text-decoration-color: rgba(255, 255, 255, 0.28);
        text-decoration-thickness: 1px;
        text-underline-offset: 0.14em;
        transition:
          color 0.2s ease,
          text-decoration-color 0.2s ease;
      }
      .citation-ref:hover {
        color: #ffffff !important;
        text-decoration-color: rgba(0, 255, 204, 0.72);
      }

      a[href]:focus-visible,
      button:focus-visible,
      input:focus-visible,
      [role="button"]:focus-visible,
      [tabindex]:focus-visible {
        outline: 2px solid var(--focus-ring);
        outline-offset: 4px;
        box-shadow: 0 0 0 4px var(--focus-shadow);
      }
      .nav-link:focus-visible,
      .mobile-nav-link:focus-visible,
      .action-btn:focus-visible,
      .arc-doc-link:focus-visible,
      .arc-citation-item a:focus-visible,
      .arc-action-btn:focus-visible {
        opacity: 1;
      }

      /* Utilities */
      .no-scrollbar::-webkit-scrollbar {
        display: none;
      }
      .no-scrollbar {
        -ms-overflow-style: none;
        scrollbar-width: none;
      }

      /* Action Button */
      .action-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 1rem 2.5rem;
        text-transform: uppercase;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.15em;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(4px);
        z-index: 1;
        color: #ffffff;
        cursor: pointer;
        min-width: 240px;
      }
      .action-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #ffffff;
        z-index: -1;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
      }
      .action-btn:hover {
        color: #000000;
        border-color: #ffffff;
      }
      .action-btn:hover::before {
        transform: translateY(0);
      }
      .action-btn svg {
        transition: stroke 0.4s ease;
      }
      .action-btn:hover svg path {
        stroke: #000000;
      }

      #home-scroll-container .home-cta-btn {
        border: 2px solid #ffffff;
        padding: 14px 40px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.1em;
        gap: 16px;
        min-width: 0;
        width: fit-content;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
      }
      #home-scroll-container .home-cta-btn::before {
        display: none;
      }
      #home-scroll-container .home-cta-btn:hover {
        background: #ffffff;
        color: #000000;
        border-color: #ffffff;
      }
      #home-scroll-container .home-cta-btn svg {
        width: 12px;
        height: 12px;
        transition: transform 0.3s ease;
      }
      #home-scroll-container .home-cta-btn svg path {
        stroke: currentColor;
      }
      #home-scroll-container .home-cta-btn:hover svg {
        transform: translateX(4px);
      }

      /* Scroll Animations */
      .fade-up-element {
        opacity: 0;
        transform: translateY(40px);
        transition:
          opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1),
          transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
      }
      .is-visible .fade-up-element {
        opacity: 1;
        transform: translateY(0);
      }
      .delay-1 {
        transition-delay: 0.15s;
      }
      .delay-2 {
        transition-delay: 0.3s;
      }

      /* Legacy modal system archived in archive/legacy-modals */
      /* Cards */
      .card-carousel {
        display: flex;
        gap: 1.5rem;
        overflow-x: auto;
        padding-bottom: 2rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
      }
      .card-carousel::-webkit-scrollbar {
        display: none;
      }
      .sx-card {
        min-width: 320px;
        flex: 1;
        height: 420px;
        position: relative;
        scroll-snap-align: start;
        background-size: cover;
        background-position: center;
        border: 1px solid var(--border-dim);
      }
      .sx-card-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 2.5rem 2rem;
        background: linear-gradient(
          to top,
          rgba(0, 0, 0, 1) 0%,
          rgba(0, 0, 0, 0.6) 60%,
          transparent 100%
        );
      }
      .card-carousel.is-embla-ready {
        display: block;
        overflow: hidden;
        padding-bottom: 0;
      }
      .clinical-cards-embla__container {
        display: flex;
        gap: 1.5rem;
      }
      .clinical-cards-embla__slide {
        flex: 0 0 calc(33.333% - 1rem);
        min-width: 0;
      }
      .card-carousel.is-embla-ready .sx-card {
        min-width: 0;
        width: 100%;
      }

      /* Engineering SVG Animations & Lines */
      .diagram-path {
        stroke-dasharray: 2500;
        stroke-dashoffset: 2500;
        animation: drawPath 4s forwards cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
      }
      @keyframes drawPath {
        to {
          stroke-dashoffset: 0;
        }
      }
      .diagram-node {
        opacity: 0;
        transform: translateY(10px);
        animation: popNode 0.8s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }
      .delay-n1 {
        animation-delay: 0.8s;
      }
      .delay-n2 {
        animation-delay: 1.4s;
      }
      .delay-n3 {
        animation-delay: 2s;
      }
      .delay-n4 {
        animation-delay: 2.6s;
      }
      .delay-n5 {
        animation-delay: 3.2s;
      }
      @keyframes popNode {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .eng-line {
        fill: none;
        stroke: rgba(255, 255, 255, 0.4);
        stroke-width: 1;
      }
      .eng-dot {
        fill: #fff;
      }
      .eng-text-bg {
        fill: rgba(5, 5, 5, 0.9);
        stroke: rgba(255, 255, 255, 0.15);
        stroke-width: 1;
      }
      .eng-text-title {
        fill: #ffffff;
        font-size: 11px;
        font-weight: 700;
        font-family: "Barlow", sans-serif;
        letter-spacing: 0.15em;
        text-transform: uppercase;
      }
      .eng-text-sub {
        fill: #ffffff;
        font-size: 9px;
        font-family: ui-monospace, SFMono-Regular, monospace;
        letter-spacing: 0.05em;
      }
      .eng-text-data {
        fill: #ffffff;
        font-size: 9px;
        font-family: ui-monospace, SFMono-Regular, monospace;
        font-weight: bold;
      }

      /* Fullscreen Content Slider (Page 3) */
      .slider-container {
        position: relative;
        height: 100vh;
        width: 100%;
        overflow: hidden;
        background: #000;
      }
      .slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 0.8s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 10% 8%;
        z-index: 1;
      }
      .slide.active-slide {
        opacity: 1;
        z-index: 2;
      }
      .slider-bg {
        z-index: -1;
      }

      .landing-carousel-embla,
      .protocol-embla-viewport {
        position: absolute;
        inset: 0;
        overflow: hidden;
        touch-action: pan-y pinch-zoom;
      }
      .landing-carousel-embla__container,
      .protocol-embla-container {
        display: flex;
        height: 100%;
      }
      .landing-carousel-embla__slide,
      .protocol-embla-slide {
        position: relative;
        flex: 0 0 100%;
        min-width: 0;
        height: 100%;
        overflow: hidden;
      }
      .landing-carousel-embla__slide > .bg-image-cover,
      .landing-carousel-embla__slide > .managed-video-stage {
        z-index: 0;
      }
      #section-hero-3 > .relative.z-20 {
        pointer-events: none;
      }
      #section-hero-3 .media-copy-shell,
      #section-hero-3 .media-copy-shell :is(a, button),
      #section-hero-3 .carousel-nav-btn,
      #section-hero-3 .carousel-pagination {
        pointer-events: auto;
      }
      .protocol-embla-container .slide {
        position: relative;
        inset: auto;
        opacity: 1;
        transition: none;
        flex: 0 0 100%;
        height: 100%;
        min-height: 100%;
        min-width: 0;
        z-index: 1;
      }
      .protocol-embla-container .slide.active-slide {
        z-index: 1;
      }

      .carousel-nav-btn,
      .slider-arrow {
        position: absolute;
        top: auto !important;
        bottom: 2.15rem;
        transform: none !important;
        width: 72px;
        height: 72px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        color: #fff;
        cursor: pointer;
        z-index: 30;
        opacity: 1;
        transition:
          opacity 180ms ease,
          color 180ms ease,
          transform 180ms ease;
      }
      .carousel-nav-btn:hover,
      .slider-arrow:hover {
        color: #fff;
        opacity: 1;
      }
      .carousel-nav-btn:focus-visible,
      .slider-arrow:focus-visible {
        outline: 1px solid rgba(255, 255, 255, 0.65);
        outline-offset: 4px;
      }
      .carousel-nav-btn.prev,
      .slider-arrow.prev {
        left: 1.45rem;
      }
      .carousel-nav-btn.next,
      .slider-arrow.next {
        right: 1.45rem;
      }
      .carousel-nav-btn.prev:hover,
      .slider-arrow.prev:hover {
        transform: translateX(-2px) !important;
      }
      .carousel-nav-btn.next:hover,
      .slider-arrow.next:hover {
        transform: translateX(2px) !important;
      }
      .carousel-nav-btn svg,
      .slider-arrow svg {
        width: 28px;
        height: 50px;
        stroke: currentColor;
        stroke-width: 4.4;
        stroke-linecap: square;
        stroke-linejoin: bevel;
        fill: none;
        overflow: visible;
        filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.58));
      }

      .carousel-pagination,
      #slider-dots {
        position: absolute;
        left: 50%;
        bottom: 2.45rem;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.65rem;
        z-index: 30;
      }
      .carousel-pagination-dot,
      .slider-nav-dot {
        width: 6px;
        height: 6px;
        background-color: rgba(255, 255, 255, 0.28);
        border-radius: 9999px;
        cursor: pointer;
        transition:
          transform 180ms ease,
          background-color 180ms ease,
          opacity 180ms ease;
      }
      .carousel-pagination-dot:hover,
      .slider-nav-dot:hover {
        background-color: rgba(255, 255, 255, 0.72);
      }
      .carousel-pagination-dot.is-active,
      .slider-nav-dot.active {
        background-color: #fff;
        transform: scale(1.55);
      }

      /* Archive Footer */
      .archive-footer {
        --arc-bg: #050505;
        --arc-hairline: rgba(255, 255, 255, 0.08);
        --arc-hairline-strong: rgba(255, 255, 255, 0.15);
        --arc-text-pure: #ffffff;
        --arc-text-primary: #d1d5db;
        --arc-text-muted: #8b8f98;
        --arc-text-micro: #5c5f66;
        background: var(--arc-bg);
        border-top: 1px solid var(--arc-hairline-strong);
        padding: 4rem 1.5rem;
        position: relative;
        z-index: 20;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }
      .archive-footer-inner {
        max-width: 1720px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 4rem;
      }
      .arc-sidebar,
      .arc-matrix {
        min-width: 0;
      }
      .arc-sidebar {
        display: flex;
        flex-direction: column;
        height: 100%;
      }
      .arc-sidebar-sticky {
        display: flex;
        flex-direction: column;
        gap: 4rem;
        position: sticky;
        top: 4rem;
        margin-bottom: 4rem;
      }
      .arc-brand-block {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
      }
      .arc-brand {
        display: inline-block;
        color: var(--arc-text-pure) !important;
        text-decoration: none;
        font-size: 1.25rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        line-height: 1;
      }
      .arc-brand-desc {
        margin: 0;
        color: var(--arc-text-muted) !important;
        font-size: 0.8125rem;
        font-weight: 300;
        line-height: 1.65;
      }
      .arc-docs-group {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }
      .arc-label {
        margin: 0;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid var(--arc-hairline);
        color: var(--arc-text-micro) !important;
        font-size: 0.625rem;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
      }
      .arc-doc-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.875rem;
      }
      .arc-doc-link {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 1rem;
        color: var(--arc-text-primary) !important;
        text-decoration: none;
        font-size: 0.8125rem;
        font-weight: 400;
        transition: color 0.2s ease;
      }
      .arc-doc-link:hover {
        color: var(--arc-text-pure) !important;
      }
      .arc-doc-meta {
        color: var(--arc-text-micro) !important;
        font-size: 0.625rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        font-variant-numeric: tabular-nums;
        flex-shrink: 0;
      }
      .arc-action-btn {
        margin-top: 0.5rem;
        background: transparent;
        border: 1px solid var(--arc-hairline-strong);
        color: var(--arc-text-primary) !important;
        padding: 0.875rem 1.25rem;
        font-size: 0.6875rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.9rem;
        transition: all 0.3s ease;
        font-family: inherit;
      }
      .arc-action-btn:hover {
        border-color: var(--arc-text-micro);
        color: var(--arc-text-pure) !important;
      }
      .arc-legal {
        margin-top: auto;
        color: var(--arc-text-micro) !important;
        font-size: 0.6875rem;
        font-weight: 300;
        line-height: 1.6;
      }
      .arc-matrix {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
      }
      .arc-matrix-header {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid var(--arc-hairline);
      }
      .arc-matrix-title {
        margin: 0;
        color: var(--arc-text-pure) !important;
        font-size: 1.5rem;
        font-weight: 300;
        letter-spacing: -0.01em;
      }
      .arc-matrix-meta {
        color: var(--arc-text-micro) !important;
        font-size: 0.6875rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        font-variant-numeric: tabular-nums;
      }
      .arc-journal-flow {
        column-count: 1;
        column-gap: 3.5rem;
      }
      .arc-journal-paragraph {
        margin: 0 0 1.5rem;
        color: var(--arc-text-muted) !important;
        font-size: 0.75rem;
        font-weight: 300;
        line-height: 1.7;
        text-align: justify;
        hyphens: auto;
        break-inside: avoid;
        page-break-inside: avoid;
      }
      .arc-category-inline-title {
        color: var(--arc-text-pure) !important;
        font-weight: 600;
        letter-spacing: 0.08em;
        margin-right: 0.5rem;
      }
      .arc-category-count-inline {
        color: var(--arc-bg) !important;
        background-color: var(--arc-text-micro);
        padding: 0.1rem 0.35rem;
        border-radius: 2px;
        font-size: 0.625rem;
        font-weight: 600;
        vertical-align: baseline;
        font-variant-numeric: tabular-nums;
        margin-right: 0.5rem;
      }
      .arc-citation-item {
        display: inline;
      }
      .arc-citation-item a {
        display: inline;
        color: var(--arc-text-muted) !important;
        text-decoration: none;
        transition: color 0.15s ease;
      }
      .arc-citation-item a:hover {
        color: var(--arc-text-pure) !important;
        text-decoration: underline;
        text-decoration-color: var(--arc-hairline-strong);
        text-underline-offset: 3px;
      }
      .arc-cite-num {
        color: var(--arc-text-micro) !important;
        font-variant-numeric: tabular-nums;
        font-weight: 500;
        margin-right: 0.1rem;
      }
      .arc-cite-year {
        color: var(--arc-text-micro) !important;
        font-size: 0.65rem;
        margin-left: 0.2rem;
      }
      .arc-cite-sep {
        color: var(--arc-text-micro) !important;
        font-weight: 300;
        margin: 0 0.35rem;
        opacity: 0.6;
      }
      .arc-cite-sep--intro {
        margin-left: 0;
        margin-right: 0.5rem;
      }
      .arc-citation-item:last-child .arc-cite-sep {
        display: none;
      }

      #page-clinical > .max-w-6xl {
        max-width: 82rem;
      }
      #page-clinical > .max-w-6xl > .mb-20 h2 {
        color: #ffffff;
        font-family: "Barlow", sans-serif;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.18em;
        line-height: 1.25;
        text-transform: uppercase;
      }
      #page-clinical > .max-w-6xl > .mb-20 h1 {
        max-width: 11ch;
        margin-left: auto;
        margin-right: auto;
        color: #ffffff;
        font-family: "Barlow", sans-serif;
        font-size: clamp(2.5rem, 5vw, 4.85rem);
        font-weight: 700;
        letter-spacing: 0.06em;
        line-height: 0.92;
      }
      #page-clinical > .max-w-6xl > .mb-20 p {
        max-width: 54rem;
        color: rgba(255, 255, 255, 0.9);
        font-family: "Barlow", sans-serif;
        font-size: 0.98rem;
        line-height: 1.72;
      }
      #page-clinical .clinical-ledger-kicker {
        max-width: 56rem;
        margin: 0 0 1.25rem;
        color: #ffffff;
        font-family: "Barlow", sans-serif;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.02em;
        line-height: 1.45;
      }
      #page-clinical .clinical-ledger-shell {
        overflow-x: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.22);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: transparent;
        padding: 0;
      }
      #page-clinical .clinical-ledger {
        width: 100%;
        border-collapse: collapse;
        table-layout: fixed;
      }
      #page-clinical .clinical-ledger thead th {
        padding: 0 0 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        color: #ffffff;
        font-family: "Barlow", sans-serif;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        line-height: 1.45;
        text-transform: uppercase;
        white-space: normal;
      }
      #page-clinical .clinical-ledger tbody td {
        position: relative;
        padding: 1.35rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.11);
        color: #ffffff;
        font-family: "Barlow", sans-serif;
        font-size: 0.98rem;
        font-weight: 500;
        line-height: 1.62;
        vertical-align: top;
      }
      #page-clinical .clinical-ledger tbody tr:last-child td {
        border-bottom: 0;
      }
      #page-clinical .clinical-ledger tbody tr:nth-child(3) td,
      #page-clinical .clinical-ledger tbody tr:nth-child(6) td,
      #page-clinical .clinical-ledger tbody tr:nth-child(9) td {
        padding-top: 1.9rem;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
      }
      #page-clinical .clinical-ledger th + th,
      #page-clinical .clinical-ledger td + td {
        padding-left: 1.7rem;
      }
      #page-clinical .clinical-ledger col:first-child {
        width: 29%;
      }
      #page-clinical .clinical-ledger col:nth-child(2) {
        width: 19%;
      }
      #page-clinical .clinical-ledger col:nth-child(3) {
        width: 37%;
      }
      #page-clinical .clinical-ledger col:nth-child(4) {
        width: 15%;
      }
      #page-clinical .clinical-ledger tbody tr:first-child td:first-child::before,
      #page-clinical .clinical-ledger tbody tr:nth-child(3) td:first-child::before,
      #page-clinical .clinical-ledger tbody tr:nth-child(6) td:first-child::before,
      #page-clinical .clinical-ledger tbody tr:nth-child(9) td:first-child::before {
        display: block;
        margin: 0 0 0.78rem;
        color: #ffffff;
        font-family: "Barlow", sans-serif;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.12em;
        line-height: 1.25;
        text-transform: uppercase;
      }
      #page-clinical .clinical-ledger tbody tr:first-child td:first-child::before {
        content: "Nowotwory wieku dziecięcego";
      }
      #page-clinical .clinical-ledger tbody tr:nth-child(3) td:first-child::before {
        content: "Rozwój płodowy";
      }
      #page-clinical .clinical-ledger tbody tr:nth-child(6) td:first-child::before {
        content: "Oddech i neurorozwój";
      }
      #page-clinical .clinical-ledger tbody tr:nth-child(9) td:first-child::before {
        content: "Standard ochrony";
      }
      #page-clinical .clinical-ledger-endpoint {
        display: block;
        margin: 0 0 0.3rem;
        color: #ffffff;
        font-family: "Barlow", sans-serif;
        font-size: 0.98rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        line-height: 1.28;
      }
      #page-clinical .clinical-ledger-note {
        display: block;
        color: #ffffff;
        font-family: "Barlow", sans-serif;
        font-size: 0.8rem;
        line-height: 1.48;
      }
      #page-clinical .clinical-ledger-evidence {
        display: block;
        margin: 0 0 0.28rem;
        color: #ffffff;
        font-family: "Barlow", sans-serif;
        font-size: 0.86rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        line-height: 1.3;
      }
      #page-clinical .clinical-ledger-subline {
        display: block;
        color: #ffffff;
        font-family: "Barlow", sans-serif;
        font-size: 0.78rem;
        line-height: 1.48;
      }
      #page-clinical .clinical-ledger-copy {
        display: block;
        max-width: 34ch;
        color: #ffffff;
      }
      #page-clinical .clinical-ledger td:last-child,
      #page-clinical .clinical-ledger th:last-child {
        text-align: right;
      }
      #page-clinical .clinical-ledger td:last-child {
        font-family: "Barlow", sans-serif;
        font-size: 0.86rem;
        letter-spacing: 0.04em;
        white-space: nowrap;
      }
      #page-clinical .clinical-ledger .citation-ref {
        color: #ffffff;
        font-size: 0.86rem;
      }
      #page-clinical .clinical-ledger-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.95rem 1.5rem;
        color: #ffffff;
        font-family: "Barlow", sans-serif;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        line-height: 1.6;
        text-transform: uppercase;
      }
      #page-clinical .clinical-ledger-meta span {
        display: inline-flex;
        align-items: center;
      }

      /* Mobile Polish Specifics */
      @media (max-width: 768px) {
        :root {
          --mobile-header-clearance: calc(
            max(env(safe-area-inset-top), 0px) + 5.65rem
          );
          --mobile-media-safe-bottom: calc(
            max(env(safe-area-inset-bottom), 1rem) + 0.9rem
          );
          --mobile-upper-half-copy-offset: calc(
            var(--mobile-header-clearance) + clamp(1rem, 3vh, 1.85rem)
          );
          --mobile-upper-half-copy-offset-hero-2: calc(
            var(--mobile-header-clearance) + clamp(0.25rem, 1vh, 0.5rem)
          );
          --mobile-carousel-control-clearance: clamp(7rem, 14vh, 7.5rem);
        }
        .bg-video,
        .bg-image-cover,
        .slider-bg,
        .video-poster-image {
          object-position: var(
            --media-mobile-object-position,
            var(--media-desktop-object-position, 50% 50%)
          );
          transform: scale(
            var(--media-mobile-scale, var(--media-desktop-scale, 1))
          );
        }
        .managed-video-stage[data-art-direction] {
          background-position: var(
            --media-mobile-object-position,
            var(--media-desktop-object-position, 50% 50%)
          );
        }
        .sx-card[data-art-direction] {
          background-position: var(
            --media-mobile-object-position,
            var(--media-desktop-object-position, 50% 50%)
          );
        }
        #page-clinical > .max-w-6xl > .mb-20 h1 {
          max-width: 12ch;
          font-size: clamp(2rem, 9vw, 3.25rem);
        }
        #page-clinical > .max-w-6xl > .mb-20 p {
          max-width: 100%;
          font-size: 0.92rem;
        }
        #page-clinical .clinical-ledger-kicker {
          font-size: 0.84rem;
          line-height: 1.5;
          letter-spacing: 0.06em;
        }
        #page-clinical .clinical-ledger thead th,
        #page-clinical .clinical-ledger tbody td {
          padding-top: 1rem;
          padding-bottom: 1rem;
        }
        #page-clinical .clinical-ledger th + th,
        #page-clinical .clinical-ledger td + td {
          padding-left: 0.95rem;
        }
        #page-clinical .clinical-ledger-endpoint {
          font-size: 0.84rem;
        }
        #page-clinical .clinical-ledger-note,
        #page-clinical .clinical-ledger-subline {
          font-size: 0.7rem;
        }
        .archive-footer {
          padding: 3rem 1.25rem;
        }
        .archive-footer-inner {
          gap: 3rem;
        }
        .arc-sidebar-sticky {
          gap: 3rem;
          margin-bottom: 3rem;
        }
        .hero-scrim,
        .overlay,
        .overlay-s2,
        .overlay-dark {
          background:
            radial-gradient(
              110% 76% at 50% 112%,
              rgba(11, 14, 18, 0.42) 0%,
              rgba(11, 14, 18, 0.16) 46%,
              rgba(11, 14, 18, 0) 76%
            ),
            linear-gradient(
              180deg,
              rgba(6, 8, 11, 0.14) 0%,
              rgba(6, 8, 11, 0.2) 18%,
              rgba(6, 8, 11, 0.36) 42%,
              rgba(6, 8, 11, 0.68) 68%,
              rgba(6, 8, 11, 0.92) 100%
            );
        }
        .scrim-left {
          background:
            radial-gradient(
              92% 118% at 16% 72%,
              rgba(7, 10, 12, 0.54) 0%,
              rgba(7, 10, 12, 0.28) 34%,
              rgba(7, 10, 12, 0.08) 58%,
              rgba(7, 10, 12, 0) 82%
            ),
            linear-gradient(
              90deg,
              rgba(6, 8, 11, 0.74) 0%,
              rgba(6, 8, 11, 0.5) 30%,
              rgba(6, 8, 11, 0.22) 58%,
              rgba(6, 8, 11, 0) 88%
            ),
            linear-gradient(
              180deg,
              rgba(6, 8, 11, 0.12) 0%,
              rgba(6, 8, 11, 0.2) 18%,
              rgba(6, 8, 11, 0.38) 46%,
              rgba(6, 8, 11, 0.72) 74%,
              rgba(6, 8, 11, 0.94) 100%
            );
        }
        .scrim-right {
          background:
            radial-gradient(
              92% 118% at 84% 72%,
              rgba(7, 10, 12, 0.54) 0%,
              rgba(7, 10, 12, 0.28) 34%,
              rgba(7, 10, 12, 0.08) 58%,
              rgba(7, 10, 12, 0) 82%
            ),
            linear-gradient(
              270deg,
              rgba(6, 8, 11, 0.74) 0%,
              rgba(6, 8, 11, 0.5) 30%,
              rgba(6, 8, 11, 0.22) 58%,
              rgba(6, 8, 11, 0) 88%
            ),
            linear-gradient(
              180deg,
              rgba(6, 8, 11, 0.12) 0%,
              rgba(6, 8, 11, 0.2) 18%,
              rgba(6, 8, 11, 0.38) 46%,
              rgba(6, 8, 11, 0.72) 74%,
              rgba(6, 8, 11, 0.94) 100%
            );
        }
        #section-hero-1 .hero-scrim.scrim-left {
          background:
            radial-gradient(
              94% 116% at 18% 34%,
              rgba(7, 10, 12, 0.62) 0%,
              rgba(7, 10, 12, 0.34) 28%,
              rgba(7, 10, 12, 0.12) 54%,
              rgba(7, 10, 12, 0) 80%
            ),
            linear-gradient(
              90deg,
              rgba(6, 8, 11, 0.82) 0%,
              rgba(6, 8, 11, 0.6) 24%,
              rgba(6, 8, 11, 0.28) 54%,
              rgba(6, 8, 11, 0.08) 78%,
              rgba(6, 8, 11, 0) 96%
            ),
            linear-gradient(
              180deg,
              rgba(6, 8, 11, 0.36) 0%,
              rgba(6, 8, 11, 0.28) 18%,
              rgba(6, 8, 11, 0.18) 36%,
              rgba(6, 8, 11, 0.1) 56%,
              rgba(6, 8, 11, 0.02) 76%,
              rgba(6, 8, 11, 0) 100%
            );
        }
        #section-hero-2 .hero-scrim.scrim-right {
          background:
            radial-gradient(
              96% 118% at 82% 32%,
              rgba(7, 10, 12, 0.68) 0%,
              rgba(7, 10, 12, 0.4) 26%,
              rgba(7, 10, 12, 0.14) 52%,
              rgba(7, 10, 12, 0) 80%
            ),
            linear-gradient(
              270deg,
              rgba(6, 8, 11, 0.86) 0%,
              rgba(6, 8, 11, 0.66) 24%,
              rgba(6, 8, 11, 0.32) 54%,
              rgba(6, 8, 11, 0.1) 78%,
              rgba(6, 8, 11, 0) 96%
            ),
            linear-gradient(
              180deg,
              rgba(6, 8, 11, 0.44) 0%,
              rgba(6, 8, 11, 0.34) 18%,
              rgba(6, 8, 11, 0.22) 38%,
              rgba(6, 8, 11, 0.12) 58%,
              rgba(6, 8, 11, 0.03) 78%,
              rgba(6, 8, 11, 0) 100%
            );
        }
        #mechanics-hero .hero-scrim.scrim-left {
          background:
            radial-gradient(
              94% 116% at 18% 34%,
              rgba(7, 10, 12, 0.62) 0%,
              rgba(7, 10, 12, 0.34) 28%,
              rgba(7, 10, 12, 0.12) 54%,
              rgba(7, 10, 12, 0) 80%
            ),
            linear-gradient(
              90deg,
              rgba(6, 8, 11, 0.82) 0%,
              rgba(6, 8, 11, 0.6) 24%,
              rgba(6, 8, 11, 0.28) 54%,
              rgba(6, 8, 11, 0.08) 78%,
              rgba(6, 8, 11, 0) 96%
            ),
            linear-gradient(
              180deg,
              rgba(6, 8, 11, 0.36) 0%,
              rgba(6, 8, 11, 0.28) 18%,
              rgba(6, 8, 11, 0.18) 36%,
              rgba(6, 8, 11, 0.1) 56%,
              rgba(6, 8, 11, 0.02) 76%,
              rgba(6, 8, 11, 0) 100%
            );
        }
        .media-copy-shell {
          align-self: flex-end;
          width: min(100%, 23.75rem);
          max-width: none !important;
          max-height: none;
          overflow: visible;
          margin-bottom: max(env(safe-area-inset-bottom), 1.3rem);
          padding: 0;
          border: 0;
          border-radius: 0;
          background: none;
          box-shadow: none;
          backdrop-filter: none;
          -webkit-backdrop-filter: none;
        }
        .media-copy-shell::before {
          content: none;
        }
        .media-copy-shell > :last-child {
          margin-bottom: 0 !important;
        }
        .media-copy-shell--wide {
          width: min(100%, 24.75rem);
        }
        .media-copy-shell--compact {
          width: min(100%, 21.5rem);
        }
        .media-copy-shell h1,
        .media-copy-shell h2 {
          font-size: clamp(1.64rem, 7vw, 2.24rem) !important;
          line-height: 1.03 !important;
          margin-bottom: 0.72rem !important;
        }
        .media-copy-shell p,
        .media-copy-shell li {
          font-size: 0.89rem !important;
          line-height: 1.46 !important;
        }
        .media-copy-shell p {
          margin-bottom: 0.72rem !important;
        }
        .media-copy-shell .fade-up-element:last-child {
          margin-top: 0.82rem;
        }
        #section-hero-1 > .relative.z-20,
        #section-1 > .relative.z-10,
        #mechanics-hero > .relative.z-20 {
          align-items: flex-start;
          padding-top: var(--mobile-upper-half-copy-offset);
          padding-bottom: max(env(safe-area-inset-bottom), 1.2rem);
        }
        #section-hero-2 > .relative.z-20 {
          align-items: flex-start;
          padding-top: var(--mobile-upper-half-copy-offset-hero-2);
          padding-bottom: max(env(safe-area-inset-bottom), 1.2rem);
        }
        #section-hero-1 .media-copy-shell,
        #section-hero-2 .media-copy-shell,
        #section-1 .media-copy-shell,
        #mechanics-hero .media-copy-shell {
          align-self: flex-start;
          margin-top: 0;
          margin-bottom: 0;
        }
        #section-1::before {
          background:
            radial-gradient(
              92% 114% at 18% 34%,
              rgba(0, 0, 0, 0.28) 0%,
              rgba(0, 0, 0, 0.18) 30%,
              rgba(0, 0, 0, 0.08) 54%,
              rgba(0, 0, 0, 0) 80%
            ),
            linear-gradient(
              90deg,
              rgba(0, 0, 0, 0.78) 0%,
              rgba(0, 0, 0, 0.62) 22%,
              rgba(0, 0, 0, 0.34) 50%,
              rgba(0, 0, 0, 0.12) 76%,
              rgba(0, 0, 0, 0) 96%
            ),
            linear-gradient(
              180deg,
              rgba(0, 0, 0, 0.3) 0%,
              rgba(0, 0, 0, 0.22) 18%,
              rgba(0, 0, 0, 0.14) 38%,
              rgba(0, 0, 0, 0.08) 58%,
              rgba(0, 0, 0, 0.02) 78%,
              rgba(0, 0, 0, 0) 100%
            );
        }
        #section-hero-4 > .flex {
          justify-content: flex-start;
        }
        #section-hero-4 > .flex > div:last-child {
          justify-content: flex-start;
          padding-top: clamp(1.2rem, 3.8vh, 2.1rem);
          padding-bottom: calc(var(--mobile-media-safe-bottom) + 1.4rem);
        }
        .card-carousel.is-embla-ready .clinical-cards-embla__slide {
          flex: 0 0 84%;
        }
        #protocol-slider {
          height: 100svh;
          min-height: 100svh;
        }
        #protocol-slider .protocol-embla-viewport,
        #protocol-slider .protocol-embla-container,
        #protocol-slider .protocol-embla-slide,
        #protocol-slider .slide {
          height: 100%;
          min-height: 100%;
        }
        .carousel-nav-btn,
        .slider-arrow {
          width: 56px;
          height: 56px;
          bottom: 1.2rem;
          color: rgba(255, 255, 255, 0.62);
          opacity: 0.88;
        }
        .carousel-pagination,
        #slider-dots {
          bottom: 1.45rem;
          gap: 0.5rem;
        }
        .carousel-nav-btn:hover,
        .slider-arrow:hover {
          color: rgba(255, 255, 255, 0.82);
        }
        .carousel-nav-btn svg,
        .slider-arrow svg {
          width: 22px;
          height: 40px;
          stroke-width: 3.2;
          filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.42));
        }
        .carousel-pagination-dot,
        .slider-nav-dot {
          width: 5px;
          height: 5px;
          background-color: rgba(255, 255, 255, 0.2);
        }
        .carousel-pagination-dot:hover,
        .slider-nav-dot:hover {
          background-color: rgba(255, 255, 255, 0.52);
        }
        .carousel-pagination-dot.is-active,
        .slider-nav-dot.active {
          background-color: rgba(255, 255, 255, 0.82);
          transform: scale(1.35);
        }
        #section-hero-3 > .relative.z-20 {
          padding-bottom: var(--mobile-carousel-control-clearance);
        }
        #section-hero-3 .media-copy-shell {
          margin-bottom: 0;
        }
        #protocol-slider .slide {
          justify-content: flex-end;
          padding:
            var(--mobile-header-clearance)
            1.25rem
            calc(
              var(--mobile-media-safe-bottom) +
              var(--mobile-carousel-control-clearance)
            );
        }
        #protocol-slider .slide .media-copy-shell {
          width: min(100%, 24rem);
          max-width: none;
          margin-top: 0;
          margin-bottom: 0;
        }
        #mobile-menu-btn {
          width: 3.25rem;
          height: 3.25rem;
          border-color: rgba(255, 255, 255, 0.28);
          background: rgba(5, 5, 5, 0.42);
        }
      }

      @media (min-width: 768px) {
        .arc-matrix-header {
          flex-direction: row;
          justify-content: space-between;
          align-items: flex-end;
        }
        .arc-journal-flow {
          column-count: 2;
        }
      }

      @media (min-width: 1024px) {
        .archive-footer-inner {
          grid-template-columns: 280px 1fr;
          gap: 0;
        }
        .arc-sidebar {
          padding-right: 3rem;
          border-right: 1px solid var(--arc-hairline);
        }
        .arc-matrix {
          padding-left: 3rem;
        }
      }

      @media (min-width: 1280px) {
        .arc-journal-flow {
          column-count: 3;
        }
      }

      @media (min-width: 1440px) {
        .archive-footer-inner {
          grid-template-columns: 340px 1fr;
        }
        .arc-sidebar {
          padding-right: 5rem;
        }
        .arc-matrix {
          padding-left: 5rem;
        }
      }

      /* Print Styles */
      @media print {
        body {
          background: white;
          color: black;
          overflow: visible !important;
        }
        header,
        .scroll-indicator,
        .action-btn,
        .archive-footer,
        .bg-video,
        .snap-footer,
        .slider-arrow,
        .slider-nav-dot,
        #mobile-menu-btn {
          display: none !important;
        }
        .scroll-container,
        .page-view,
        .slider-container,
        .slide {
          overflow: visible !important;
          height: auto !important;
          display: block !important;
          opacity: 1 !important;
          position: static !important;
        }
        .snap-section {
          display: none !important;
        }
        .slider-bg {
          display: none;
        }
        table {
          border-collapse: collapse;
          width: 100%;
          margin-bottom: 20px;
        }
        th,
        td {
          border: 1px solid #ddd;
          padding: 8px;
          text-align: left;
        }
        body::before {
          content: "MATERIAŁ INFORMACYJNY: STREFA DRYFU";
          display: block;
          font-size: 20px;
          font-weight: bold;
          text-align: left;
          margin-bottom: 30px;
          padding-bottom: 10px;
          border-bottom: 2px solid black;
        }
      }

      /* Modal reference styles are generated into /assets/css/modal.reference.generated.css. */

      .mechanics-hero-cta-group {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
      }

      .action-btn.action-btn-secondary {
        background: rgba(9, 9, 11, 0.78);
        border-color: rgba(255, 255, 255, 0.18);
        color: #d4d4d8;
      }

      .action-btn.action-btn-secondary:hover {
        border-color: rgba(255, 255, 255, 0.38);
        background: rgba(24, 24, 27, 0.94);
        color: #ffffff;
      }

      @media (max-width: 767px) {
        .mechanics-hero-cta-group {
          flex-direction: column;
          align-items: stretch;
        }
      }
