/* ============================================================
   ORAILIX 2026 refresh layer
   Loaded after new_styles1.css. Only overrides what we change.
   Author: redesign-2026-neural-hero
   ============================================================ */

:root {
  --orx-bg-deep:    #03051a;
  --orx-bg-navy:    #050719;
  --orx-bg-navy-2:  #0a0e2e;
  --orx-blue:       #0066ff;
  --orx-blue-soft:  #5b8dff;
  --orx-cyan:       #41d3ff;
  --orx-violet:     #6a4bff;
  --orx-pink:       #ff5fb6;
  --orx-magenta:    #d447ff;
  --orx-amber:      #ffb454;
  --orx-text-on-dark: rgba(255,255,255,0.92);
  --orx-text-on-dark-soft: rgba(255,255,255,0.66);
  --orx-card-stroke: rgba(255,255,255,0.08);
  --orx-easing:      cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------------------------------------------
   1.  KILL THE FLICKER
   ------------------------------------------------------------ */
html { background: var(--orx-bg-navy); }
body { background: var(--neutral--100, #fff); }

body.is-ready [style*="opacity:0"],
body.is-ready [style*="opacity: 0"] {
  opacity: 1 !important;
  transform: none !important;
  transition:
    opacity 0.7s var(--orx-easing),
    transform 0.7s var(--orx-easing);
}
body:not(.is-ready) [style*="opacity:0"],
body:not(.is-ready) [style*="opacity: 0"] {
  transition: none !important;
}

.header-wrapper,
.header-logo-link img,
.header-nav-menu-list,
.header-nav-link {
  opacity: 1 !important;
  visibility: visible !important;
}

body { opacity: 0; transition: opacity 0.35s ease-out; }
body.is-ready { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  body, body.is-ready [style*="opacity:0"], body.is-ready [style*="opacity: 0"] {
    transition: none !important;
  }
}

/* ------------------------------------------------------------
   2.  HERO — plasma-interference shader background
   ------------------------------------------------------------ */
.section.hero-section---home-page {
  background-color: var(--orx-bg-navy) !important;
  background-image: none !important;
  color: var(--orx-text-on-dark);
  padding-top: 196px;
  padding-bottom: 120px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

/* Shader hosts share the same positioning. Each carries
   data-shader="..." which neural-hero.js routes to a factory.
   pointer-events: none everywhere — neural-hero.js listens on
   window for mouse/click and projects coords into the host, so
   the shader stays interactive even with text/menus on top, and
   any overlaid links remain clickable. */
.orx-shader {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.orx-shader.orx-hero-plasma { z-index: 0; }
.orx-shader canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Soft white fade-out at the bottom into the next section */
.section.hero-section---home-page::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, var(--neutral--100, #fff) 100%);
  z-index: 1;
  pointer-events: none;
}
/* Subtle horizontal vignette so the text gets a calmer area to land on */
.section.hero-section---home-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 70% at 25% 50%, rgba(5,7,25,0.45) 0%, rgba(5,7,25,0) 70%);
  z-index: 1;
  pointer-events: none;
}

.section.hero-section---home-page .container-default { position: relative; z-index: 2; }

/* Hero text in white, with soft halo for legibility against plasma */
.section.hero-section---home-page .display-1,
.section.hero-section---home-page .display-2,
.section.hero-section---home-page h1,
.section.hero-section---home-page p {
  color: var(--orx-text-on-dark) !important;
  text-shadow: 0 1px 22px rgba(5,7,25,0.55), 0 1px 4px rgba(5,7,25,0.35);
}
.section.hero-section---home-page a { color: var(--orx-cyan); }
.section.hero-section---home-page a:hover { color: #b9ecff; }

.section.hero-section---home-page .display-1 .orx-grad {
  background: linear-gradient(110deg, #ffffff 0%, var(--orx-cyan) 25%, var(--orx-pink) 55%, var(--orx-blue-soft) 80%, #ffffff 100%);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: orxShine 9s ease-in-out infinite;
}
@keyframes orxShine {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}

/* Hero entry animation, gated on .is-ready */
.section.hero-section---home-page .display-1,
.section.hero-section---home-page .inner-container {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 0.9s var(--orx-easing),
    transform 0.9s var(--orx-easing);
}
.section.hero-section---home-page .orx-shader.orx-hero-plasma {
  opacity: 0;
  transition: opacity 1.4s var(--orx-easing);
}
body.is-ready .section.hero-section---home-page .display-1 {
  opacity: 1; transform: none; transition-delay: 0.15s;
}
body.is-ready .section.hero-section---home-page .inner-container {
  opacity: 1; transform: none; transition-delay: 0.30s;
}
body.is-ready .section.hero-section---home-page .orx-shader.orx-hero-plasma {
  opacity: 1; transition-delay: 0.10s;
}

/* ------------------------------------------------------------
   3.  HERO LAYOUT — single column, plasma fills behind
   ------------------------------------------------------------ */
.grid-2-columns.hero-section---home-page {
  grid-template-columns: 1fr;
  align-items: center;
}
.section.hero-section---home-page .inner-container._574px {
  max-width: 720px;
}
/* Hide the legacy team-picture grid */
.grid-2-columns.hero-section---home-page .grid-1-columns.hero-section---home-page---image-grid {
  display: none !important;
}

/* ------------------------------------------------------------
   3b. FOOTER NEURAL-NETWORK BACKGROUND
   ------------------------------------------------------------ */
.footer-wrapper { position: relative; isolation: isolate; }
.footer-wrapper > * { position: relative; z-index: 1; }
.orx-shader.orx-footer-nn {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  filter: blur(1.6px) saturate(1.05);
  -webkit-mask-image:
    radial-gradient(120% 120% at 50% 60%, #000 40%, transparent 100%);
          mask-image:
    radial-gradient(120% 120% at 50% 60%, #000 40%, transparent 100%);
  transition: opacity 1.6s var(--orx-easing);
}
body.is-ready .orx-shader.orx-footer-nn { opacity: 0.55; }

/* ------------------------------------------------------------
   3c. POSITIONS PAGE — aurora-ribbons hero
        Only the hero is dark; everything below stays white so the
        listing of roles is readable.
   ------------------------------------------------------------ */
body.orx-positions .section.hero-section---home-page {
  background-color: var(--orx-bg-deep) !important;
  background-image: none !important;
  color: var(--orx-text-on-dark);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-bottom: 140px;
}
body.orx-positions .orx-shader.orx-positions-ribbons {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.95;
  filter: saturate(1.05);
  -webkit-mask-image:
    linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
          mask-image:
    linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
}
body.orx-positions .section.hero-section---home-page::before {
  background:
    radial-gradient(60% 70% at 25% 50%, rgba(5,7,25,0.50) 0%, rgba(5,7,25,0) 65%);
}
body.orx-positions .section.hero-section---home-page .container-default { position: relative; z-index: 2; }

/* Text colours scoped to the dark hero only — everything below
   keeps the default site colours (dark text on white). */
body.orx-positions .section.hero-section---home-page .display-1,
body.orx-positions .section.hero-section---home-page .display-2,
body.orx-positions .section.hero-section---home-page h1,
body.orx-positions .section.hero-section---home-page h2,
body.orx-positions .section.hero-section---home-page p,
body.orx-positions .section.hero-section---home-page a {
  color: var(--orx-text-on-dark) !important;
  text-shadow: 0 1px 22px rgba(5,7,25,0.45);
}
body.orx-positions .section.hero-section---home-page a { color: var(--orx-cyan) !important; }
body.orx-positions .section.hero-section---home-page a:hover { color: #b9ecff !important; }

/* The "Open positions" listing section gets a subtle gradient
   background so it doesn't feel too plain after the dark hero. */
body.orx-positions #positions {
  background: linear-gradient(180deg, #ffffff 0%, #f5f6fb 100%);
}
body.orx-positions .career-link-horizontal {
  border-radius: 18px;
  transition: transform 0.35s var(--orx-easing), box-shadow 0.35s var(--orx-easing), border-color 0.35s var(--orx-easing);
}
body.orx-positions .career-link-horizontal:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px rgba(0,102,255,0.22);
}

/* ------------------------------------------------------------
   4.  GENERAL CARD POLISH
   ------------------------------------------------------------ */
.card.feature-card-image-bottom {
  border: 1px solid rgba(5,7,25,0.06);
  border-radius: 22px;
  transition:
    transform 0.45s var(--orx-easing),
    box-shadow 0.45s var(--orx-easing),
    border-color 0.45s var(--orx-easing);
  background: #fff;
  padding: 24px;
}
.card.feature-card-image-bottom .image-wrapper {
  border-radius: 16px;
  overflow: hidden;
}
.card.feature-card-image-bottom:hover {
  transform: translate3d(0, -6px, 0);
  box-shadow:
    0 22px 50px -22px rgba(0,102,255,0.25),
    0 8px 24px -12px rgba(5,7,25,0.18);
  border-color: rgba(0,102,255,0.18);
}
.card.feature-card-image-bottom .feature-card---bottom-gradient {
  background: linear-gradient(180deg, rgba(0,102,255,0) 0%, rgba(0,102,255,0.06) 100%);
}

.top-features-grid .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}
.top-features-grid .image-wrapper::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,102,255,0) 0%, rgba(0,102,255,0.35) 100%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.4s var(--orx-easing);
  pointer-events: none;
}
.top-features-grid .image-wrapper:hover::after { opacity: 1; }
.top-features-grid .image-wrapper img {
  transition: transform 0.7s var(--orx-easing);
}
.top-features-grid .image-wrapper:hover img { transform: scale(1.04); }

/* ------------------------------------------------------------
   5.  TEAM BLOCK  (new — re-injects the team picture)
   ------------------------------------------------------------ */
.orx-team-block {
  position: relative;
  margin: 96px auto 0;
  padding: 60px 56px;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  background:
    radial-gradient(60% 70% at 90% 20%, rgba(0,102,255,0.10) 0%, rgba(0,102,255,0) 65%),
    radial-gradient(60% 70% at 10% 80%, rgba(255,95,182,0.08) 0%, rgba(255,95,182,0) 65%),
    linear-gradient(180deg, #f5f6fb 0%, #ffffff 100%);
  border: 1px solid rgba(5,7,25,0.05);
}
.orx-team-block .orx-team-copy h2 {
  font-size: 38px;
  margin: 0 0 12px;
  line-height: 1.1;
  background: linear-gradient(110deg, #050719 0%, var(--orx-blue) 60%, var(--orx-violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.orx-team-block .orx-team-copy p {
  color: #4a4c5b;
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 24px;
}
.orx-team-block .orx-team-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--orx-blue) 0%, var(--orx-violet) 100%);
  box-shadow: 0 12px 28px -10px rgba(0,102,255,0.5);
  transition: transform 0.3s var(--orx-easing), box-shadow 0.3s var(--orx-easing);
  font-weight: 600;
}
.orx-team-block .orx-team-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(0,102,255,0.65); }
.orx-team-block .orx-team-cta svg { width: 16px; height: 16px; }

.orx-team-block .orx-team-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: 0 30px 60px -28px rgba(5,7,25,0.30);
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.6s var(--orx-easing);
}
.orx-team-block .orx-team-photo:hover { transform: perspective(1200px) rotateY(0deg) rotateX(0deg); }
.orx-team-block .orx-team-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s var(--orx-easing);
}
.orx-team-block .orx-team-photo:hover img { transform: scale(1.04); }
.orx-team-block .orx-team-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,7,25,0) 50%, rgba(5,7,25,0.20) 100%);
  pointer-events: none;
}

@media (max-width: 991px) {
  .orx-team-block { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; }
  .orx-team-block .orx-team-photo { transform: none; }
}

/* ------------------------------------------------------------
   6.  LATEST POSTS  — gravity-grid background
   ------------------------------------------------------------ */
.section.top.position-relative {
  background: linear-gradient(180deg, var(--orx-bg-navy) 0%, var(--orx-bg-deep) 100%);
  color: var(--orx-text-on-dark);
  position: relative;
  overflow: hidden;
}
.section.top.position-relative .orx-gravity-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 80% 30%, rgba(0,102,255,0.20) 0%, rgba(0,102,255,0) 60%),
    radial-gradient(50% 50% at 15% 80%, rgba(106,75,255,0.18) 0%, rgba(106,75,255,0) 60%);
}
.section.top.position-relative > *:not(.orx-shader):not(.orx-gravity-canvas) { position: relative; z-index: 1; }

.section.top.position-relative .display-1,
.section.top.position-relative p { color: var(--orx-text-on-dark); }
.section.top.position-relative h1.display-1,
.section.top.position-relative h1.color-neutral-100,
.section.top.position-relative h1.color-neutral-600,
.section.top.position-relative .display-1.color-neutral-100 {
  background: linear-gradient(110deg, #ffffff 0%, var(--orx-cyan) 50%, var(--orx-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 22px rgba(5,7,25,0.45);
}
.section.top.position-relative p {
  text-shadow: 0 1px 18px rgba(5,7,25,0.4);
}

.section.top.position-relative .category-badge {
  color: rgba(255,255,255,0.7);
  border-bottom-color: rgba(255,255,255,0.18) !important;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.section.top.position-relative .category-badge:hover,
.section.top.position-relative .category-badge.w--current {
  color: #fff !important;
  border-bottom-color: var(--orx-cyan) !important;
}
.section.top.position-relative .hero-section---blog-category-page---bg-wrapper {
  display: none;
}

.section.top.position-relative .blog-grid .image-wrapper {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}
.section.top.position-relative .blog-grid .image-wrapper::after {
  content:"";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,5,26,0) 40%, rgba(3,5,26,0.55) 100%);
  pointer-events: none;
}
.section.top.position-relative .blog-grid .image {
  transition: transform 0.8s var(--orx-easing);
}
.section.top.position-relative .blog-grid .blur-sibling-item:hover .image {
  transform: scale(1.05);
}
.section.top.position-relative .blog-grid h3,
.section.top.position-relative .heading-h2-size,
.section.top.position-relative .heading-h3-size,
.section.top.position-relative h2,
.section.top.position-relative h3 {
  color: var(--orx-text-on-dark) !important;
  transition: color 0.25s ease;
}
.section.top.position-relative .blog-grid .text-200,
.section.top.position-relative .blog-grid .color-neutral-600,
.section.top.position-relative .blog-grid .color-neutral-900,
.section.top.position-relative .text-900,
.section.top.position-relative .color-neutral-900,
.section.top.position-relative .color-neutral-700,
.section.top.position-relative .color-neutral-600,
.section.top.position-relative .link-text {
  color: var(--orx-text-on-dark-soft) !important;
}
.section.top.position-relative .divider-details,
.section.top.position-relative .divider {
  background: rgba(255,255,255,0.25) !important;
}
.section.top.position-relative .blog-link:hover h2,
.section.top.position-relative .blog-link:hover h3,
.section.top.position-relative .blog-grid .blur-sibling-item:hover h3 {
  color: var(--orx-cyan) !important;
}
.section.top.position-relative .blog-link:hover .link-text {
  color: var(--orx-cyan) !important;
}

/* Article-card image hover scale on the featured news cards */
.section.top.position-relative .blog-featured-v1 .image-wrapper {
  border-radius: 18px; overflow: hidden; position: relative;
}
.section.top.position-relative .blog-featured-v1 .image {
  transition: transform 0.8s var(--orx-easing);
}
.section.top.position-relative .blog-featured-v1 .blog-link:hover .image {
  transform: scale(1.04);
}

/* Hide entire latest-posts section if grid is empty (set by JS) */
.section.top.position-relative.orx-empty { display: none; }

/* News hero — curl-flow shader stays prominent behind the title
   then fades out before the featured article cards start. */
.orx-shader.orx-news-flow {
  opacity: 0.9;
  -webkit-mask-image:
    linear-gradient(180deg, #000 0%, #000 45%, transparent 85%);
          mask-image:
    linear-gradient(180deg, #000 0%, #000 45%, transparent 85%);
}

/* Centered hero block on /news/ — mirrors the article-page hero
   treatment: eyebrow + big title + lede, with a soft vignette
   so the curl-flow shader stays visible without fighting the type. */
.section.top.position-relative .orx-news-hero {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 24px 60px;
}
.section.top.position-relative .orx-news-hero::before {
  content: "";
  position: absolute;
  inset: -10% -20%;
  z-index: -1;
  background: radial-gradient(50% 70% at 50% 60%, rgba(5,7,25,0.45) 0%, rgba(5,7,25,0) 75%);
  pointer-events: none;
}
.orx-news-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
}
.orx-news-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orx-cyan), var(--orx-pink));
}
.section.top.position-relative .orx-news-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  background: linear-gradient(110deg, #ffffff 0%, var(--orx-cyan) 50%, var(--orx-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 28px rgba(5,7,25,0.55), 0 1px 4px rgba(5,7,25,0.35);
}
.section.top.position-relative .orx-news-hero p {
  margin: 0;
  color: var(--orx-text-on-dark-soft);
  font-size: 16px;
  text-shadow: 0 1px 18px rgba(5,7,25,0.4);
}

@media (max-width: 600px) {
  .section.top.position-relative .orx-news-hero { padding: 96px 20px 44px; }
}

/* ------------------------------------------------------------
   7.  RESEARCH NETWORK SECTION  (relocated partner graph)
   ------------------------------------------------------------ */
.orx-partner-section {
  position: relative;
  padding: 120px 0 140px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(50% 50% at 80% 20%, rgba(0,102,255,0.18) 0%, rgba(0,102,255,0) 60%),
    radial-gradient(50% 50% at 20% 80%, rgba(255,95,182,0.16) 0%, rgba(255,95,182,0) 60%),
    radial-gradient(70% 50% at 50% 50%, rgba(106,75,255,0.10) 0%, rgba(106,75,255,0) 70%),
    linear-gradient(180deg, var(--orx-bg-deep) 0%, var(--orx-bg-navy-2) 100%);
  color: var(--orx-text-on-dark);
}
.orx-partner-section .orx-partner-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 2;
}
.orx-partner-section h2 {
  font-size: 44px;
  line-height: 1.05;
  margin: 0 0 14px;
  background: linear-gradient(110deg, #ffffff 0%, var(--orx-cyan) 45%, var(--orx-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.orx-partner-section p {
  color: var(--orx-text-on-dark-soft);
  font-size: 16px;
  margin: 0;
}
.orx-partner-graph {
  position: relative;
  width: min(920px, 95%);
  aspect-ratio: 920 / 720;
  margin: 0 auto;
  border-radius: 22px;
  background:
    radial-gradient(60% 60% at 50% 50%, rgba(0,102,255,0.14) 0%, rgba(0,102,255,0) 70%),
    linear-gradient(140deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--orx-card-stroke);
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.orx-partner-graph svg { width: 100%; height: 100%; display: block; }
.orx-partner-graph .ring {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  pointer-events: none;
  background: conic-gradient(from var(--a, 0deg),
    rgba(0,102,255,0) 0deg,
    rgba(65,211,255,0.6) 40deg,
    rgba(255,95,182,0.55) 120deg,
    rgba(106,75,255,0.5) 200deg,
    rgba(0,102,255,0) 300deg,
    rgba(0,102,255,0) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  padding: 1px;
  animation: orxRing 14s linear infinite;
}
@property --a { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes orxRing { to { --a: 360deg; } }

/* Legend below graph */
.orx-partner-legend {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 28px;
  flex-wrap: wrap;
  color: var(--orx-text-on-dark-soft);
  font-size: 13px;
  letter-spacing: 0.05em;
}
.orx-partner-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.orx-partner-legend i {
  width: 10px; height: 10px; border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.0);
}

/* ------------------------------------------------------------
   8.  IN THE PRESS — featured coverage cards
   ------------------------------------------------------------ */
.orx-coverage-section {
  position: relative;
  padding: 110px 0 130px;
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(0,102,255,0.18) 0%, rgba(0,102,255,0) 60%),
    radial-gradient(50% 50% at 15% 90%, rgba(255,95,182,0.14) 0%, rgba(255,95,182,0) 60%),
    linear-gradient(180deg, var(--orx-bg-navy-2) 0%, var(--orx-bg-navy) 100%);
  color: var(--orx-text-on-dark);
  overflow: hidden;
  isolation: isolate;
}
.orx-coverage-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}
.orx-coverage-intro h2 {
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 12px;
  background: linear-gradient(110deg, #ffffff 0%, var(--orx-cyan) 50%, var(--orx-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.orx-coverage-intro p {
  color: var(--orx-text-on-dark-soft);
  font-size: 16px;
  margin: 0;
}

/* Flex grid so the trailing card on the last row centers
   intentionally instead of leaving an awkward gap. */
.orx-coverage-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.orx-coverage-card {
  flex: 1 1 300px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 220px;
  padding: 26px 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  color: var(--orx-text-on-dark);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s var(--orx-easing),
    border-color 0.4s var(--orx-easing),
    background 0.4s var(--orx-easing),
    box-shadow 0.4s var(--orx-easing);
}
@media (max-width: 560px) {
  .orx-coverage-card { max-width: none; }
}
/* Gradient ring on hover (same recipe as member cards) */
.orx-coverage-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(140deg, var(--orx-blue) 0%, var(--orx-pink) 50%, var(--orx-cyan) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--orx-easing);
  pointer-events: none;
}
.orx-coverage-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
  border-color: transparent;
  box-shadow: 0 22px 50px -24px rgba(0,102,255,0.30);
}
.orx-coverage-card:hover::before { opacity: 1; }

/* Real logos rendered as white silhouettes — seamless on the
   dark card, consistent vertical rhythm. The brightness(0)+invert(1)
   filter neutralises whatever colours the logo has natively. */
.orx-coverage-logo {
  display: flex;
  align-items: center;
  height: 44px;
  align-self: flex-start;
  max-width: 100%;
}
.orx-coverage-logo img {
  display: block;
  height: 36px;            /* explicit height — bigger, readable */
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.35s ease, filter 0.35s ease;
}
.orx-coverage-card:hover .orx-coverage-logo img { opacity: 1; }

/* Some assets don't survive the silhouette filter cleanly —
   logos that use SVG <pattern> fills, embedded raster data, or
   internal <style> with white fills. Render those as-is. */
.orx-coverage-logo.orx-natural img {
  filter: none;
  opacity: 1;
  height: 38px;
}

/* Publisher tag — used when we don't have a real logo file.
   Same vertical box (44px) so card layouts stay aligned. */
.orx-coverage-publisher {
  display: flex;
  align-items: center;
  height: 44px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.92);
}

.orx-coverage-card h3 {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 500;
  margin: 0;
  color: var(--orx-text-on-dark);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.orx-coverage-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orx-text-on-dark-soft);
}
.orx-coverage-card .cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orx-cyan);
  transition: color 0.25s ease, transform 0.3s var(--orx-easing);
}
.orx-coverage-card:hover .cta { transform: translateX(3px); }
.orx-coverage-card .cta svg {
  width: 13px;
  height: 13px;
}

/* ------------------------------------------------------------
   9.  MEMBERS PAGE  — gravity grid v2 hero + polished cards
   ------------------------------------------------------------ */
body.orx-members .section.hero-section---home-page {
  padding-bottom: 140px;
  background: linear-gradient(180deg, var(--orx-bg-deep) 0%, var(--orx-bg-navy) 100%) !important;
}
body.orx-members .section.hero-section---home-page .orx-shader.orx-hero-plasma { display: none; }
body.orx-members .grid-2-columns.hero-section---home-page,
body.orx-members .grid-1-columns.hero-section---home-page {
  grid-template-columns: 1fr;
}
body.orx-members .orx-shader.orx-hero-plasma { display: none; }
body.orx-members .orx-gravity-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

body.orx-members .team-member-grid { margin-top: 0; }

body.orx-members .team-member-grid > .w-dyn-item > div {
  background: #fff;
  border-radius: 24px;
  padding: 28px 28px 22px !important;
  border: 1px solid rgba(5,7,25,0.06);
  transition:
    transform 0.45s var(--orx-easing),
    box-shadow 0.45s var(--orx-easing),
    border-color 0.45s var(--orx-easing);
  position: relative;
  overflow: hidden;
}
body.orx-members .team-member-grid > .w-dyn-item > div::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(140deg, var(--orx-blue) 0%, var(--orx-pink) 50%, var(--orx-cyan) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s var(--orx-easing);
  pointer-events: none;
}
body.orx-members .team-member-grid > .w-dyn-item > div:hover {
  transform: translate3d(0, -6px, 0);
  box-shadow:
    0 26px 60px -28px rgba(0,102,255,0.30),
    0 10px 30px -16px rgba(5,7,25,0.16);
  border-color: transparent;
}
body.orx-members .team-member-grid > .w-dyn-item > div:hover::before { opacity: 1; }

body.orx-members .team-member-grid .image-wrapper {
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
body.orx-members .team-member-grid .image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,1), inset 0 0 0 4px rgba(0,102,255,0.0);
  transition: box-shadow 0.45s var(--orx-easing);
  pointer-events: none;
}
body.orx-members .team-member-grid > .w-dyn-item > div:hover .image-wrapper::after {
  box-shadow: inset 0 0 0 3px rgba(255,255,255,1), inset 0 0 0 6px rgba(0,102,255,0.45);
}
body.orx-members .team-member-grid .image {
  transition: transform 0.7s var(--orx-easing), filter 0.45s var(--orx-easing);
  filter: saturate(0.95);
}
body.orx-members .team-member-grid > .w-dyn-item > div:hover .image {
  transform: scale(1.03);
  filter: saturate(1.08);
}

body.orx-members h2 {
  font-size: 36px;
  background: linear-gradient(110deg, #050719 0%, #0066ff 60%, #6a4bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 90px !important;
  margin-bottom: 40px !important;
}

body.orx-members .team-member-grid > .w-dyn-item {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity 0.7s var(--orx-easing),
    transform 0.7s var(--orx-easing);
}
body.orx-members.is-ready .team-member-grid > .w-dyn-item { opacity: 1; transform: none; }
body.orx-members.is-ready .team-member-grid > .w-dyn-item:nth-child(2) { transition-delay: 0.06s; }
body.orx-members.is-ready .team-member-grid > .w-dyn-item:nth-child(3) { transition-delay: 0.12s; }
body.orx-members.is-ready .team-member-grid > .w-dyn-item:nth-child(4) { transition-delay: 0.18s; }
body.orx-members.is-ready .team-member-grid > .w-dyn-item:nth-child(5) { transition-delay: 0.24s; }
body.orx-members.is-ready .team-member-grid > .w-dyn-item:nth-child(6) { transition-delay: 0.30s; }
body.orx-members.is-ready .team-member-grid > .w-dyn-item:nth-child(n+7) { transition-delay: 0.36s; }

/* ------------------------------------------------------------
   10. HEADER POLISH
   ------------------------------------------------------------ */
.header-wrapper {
  background: rgba(255,255,255,0.78);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
          backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(5,7,25,0.05);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.header-nav-link {
  position: relative;
  transition: color 0.25s ease;
}
.header-nav-link::after {
  content:"";
  position: absolute;
  left: 8px; right: 8px; bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, var(--orx-blue), var(--orx-pink));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--orx-easing);
}
.header-nav-link:hover { color: var(--orx-blue) !important; }
.header-nav-link:hover::after { transform: scaleX(1); }

body.orx-dark-hero:not(.orx-scrolled) .header-wrapper {
  background: rgba(5,7,25,0.0);
  border-bottom-color: transparent;
}
body.orx-dark-hero:not(.orx-scrolled) .header-nav-link {
  color: rgba(255,255,255,0.9) !important;
}
body.orx-dark-hero:not(.orx-scrolled) .header-nav-link:hover {
  color: var(--orx-cyan) !important;
}
body.orx-dark-hero:not(.orx-scrolled) .header-logo-link img {
  filter: brightness(0) invert(1);
}
body.orx-dark-hero.orx-scrolled .header-wrapper {
  box-shadow: 0 6px 24px -10px rgba(5,7,25,0.18);
}

/* ------------------------------------------------------------
   11. FOOTER
   ------------------------------------------------------------ */
.footer-wrapper {
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(0,102,255,0.18) 0%, rgba(0,102,255,0) 70%),
    linear-gradient(180deg, var(--orx-bg-deep) 0%, #000 100%);
  position: relative;
  overflow: hidden;
}
.footer-floating-item---top-right img,
.footer-floating-item---bottom-left img { display: none; }
.footer-wrapper::after {
  content: "";
  position: absolute;
  left: -10%; right: -10%;
  bottom: -60%;
  height: 120%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255,95,182,0.18) 0%, rgba(255,95,182,0) 70%);
  pointer-events: none;
}
.social-icon { transition: transform 0.3s var(--orx-easing), color 0.3s ease; }
.social-icon:hover { transform: translateY(-3px); }

/* ------------------------------------------------------------
   12. PUBLICATIONS LIST
   ------------------------------------------------------------ */
section.top-150px ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
section.top-150px ul li {
  padding: 16px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,102,255,0.04) 0%, rgba(255,95,182,0.04) 100%);
  border: 1px solid rgba(5,7,25,0.06);
  transition:
    transform 0.35s var(--orx-easing),
    border-color 0.35s var(--orx-easing),
    background 0.35s var(--orx-easing);
}
section.top-150px ul li:hover {
  transform: translateX(4px);
  border-color: rgba(0,102,255,0.25);
  background: linear-gradient(135deg, rgba(0,102,255,0.08) 0%, rgba(255,95,182,0.08) 100%);
}
section.top-150px ul li a { color: #050719; text-decoration: none; }
section.top-150px ul li a:hover { color: var(--orx-blue); }

/* Section gradient headings */
section.top-150px h2 {
  background: linear-gradient(110deg, #050719 0%, var(--orx-blue) 60%, var(--orx-violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ------------------------------------------------------------
   13. MOBILE
   ------------------------------------------------------------ */
@media (max-width: 991px) {
  .grid-2-columns.hero-section---home-page { grid-template-columns: 1fr; }
  .orx-shader.orx-hero-plasma { /* full-bleed already */ }
  .orx-partner-section { padding: 80px 0 100px; }
  .orx-partner-section h2 { font-size: 32px; }
  body.orx-dark-hero:not(.orx-scrolled) .header-wrapper {
    background: rgba(5,7,25,0.45);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
  }
}
@media (max-width: 600px) {
  .section.hero-section---home-page { padding-top: 156px; padding-bottom: 90px; }
  body.orx-members h2 { font-size: 28px; margin-top: 60px !important; }
}

/* ------------------------------------------------------------
   14. 404 PAGE
   ------------------------------------------------------------ */
body.orx-404 {
  min-height: 100vh;
  background:
    radial-gradient(60% 60% at 50% 30%, rgba(0,102,255,0.30) 0%, rgba(0,102,255,0) 60%),
    radial-gradient(70% 60% at 50% 90%, rgba(255,95,182,0.25) 0%, rgba(255,95,182,0) 60%),
    linear-gradient(180deg, var(--orx-bg-deep) 0%, #000 100%);
  color: var(--orx-text-on-dark);
}
.orx-404-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 200px 24px 120px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.orx-404-wrap h1 {
  font-size: clamp(80px, 16vw, 200px);
  line-height: 1;
  font-weight: 800;
  background: linear-gradient(110deg, #ffffff 0%, var(--orx-cyan) 45%, var(--orx-pink) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 16px;
  letter-spacing: -0.04em;
}
.orx-404-wrap p { color: var(--orx-text-on-dark-soft); font-size: 18px; }
.orx-404-wrap a.btn {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 28px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--orx-blue) 0%, var(--orx-pink) 100%);
  box-shadow: 0 12px 30px -10px rgba(0,102,255,0.6);
  transition: transform 0.3s var(--orx-easing), box-shadow 0.3s var(--orx-easing);
}
.orx-404-wrap a.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(0,102,255,0.75);
}

/* ---- "nexus" nav entry point: gradient text + soft pulsing glow ---- */
.header-nav-link.orx-nexus-link {
  position: relative;
  background: linear-gradient(110deg, var(--orx-cyan) 0%, var(--orx-violet) 50%, var(--orx-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
  text-shadow: 0 0 18px rgba(65, 211, 255, 0.25);
}
.header-nav-link.orx-nexus-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--orx-cyan);
  box-shadow: 0 0 10px var(--orx-cyan);
  animation: orx-nexus-pulse 2.4s var(--orx-easing) infinite;
}
@keyframes orx-nexus-pulse {
  0%, 100% { opacity: 0.4; transform: translateY(-50%) scale(0.8); }
  50%      { opacity: 1;   transform: translateY(-50%) scale(1.15); }
}
