@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&display=swap");

/*
  NeuKidney Site Styles
  Version: 2.5.0

  Purpose:
  - Supports regenerated header.php and home.php.
  - Uses hero image as full hero background, not a right-side card.
  - Uses Cormorant Garamond for the main hero headline.
  - Adds capsule image panel to platform section.
  - Adds real physician image support.
  - Adds hero background to Renal Conduit System region.
  - Adds doctor/lab image to mission quote region.
  - Tightens executive/leadership area.
  - Keeps relative image paths for local, cPanel, and production.
  - Removes :has() for maximum compatibility.
  - Maintains iPhone mini baseline.
*/

/* ============================================
   1. RESET, VARIABLES & TYPOGRAPHY
   ============================================ */

:root {
  --hero-person-image: url("../images/neukidney-bg.jpg");
  --technology-image: url("../images/neukidney-dr.jpg");
  --conduit-image: url("../images/neu-bg-themed.png");

  --white: #ffffff;
  --max: 1200px;

  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;

  --font-primary: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-hero: "Cormorant Garamond", Georgia, "Times New Roman", serif;

  --ink: #061724;
  --ink-soft: #4b6574;
  --midnight: #061724;
  --deep-blue: #0a2d45;
  --ocean: #0d6472;
  --aqua: #23b8ad;
  --aqua-dark: #0b7d77;
  --lime: #b8d96f;
  --ice: #f3fafb;
  --aqua-soft: #e1f7f5;
  --blue-soft: #eaf5f8;
  --line: #d6e5ea;
  --notice: #f4f9ec;

  --shadow: 0 24px 70px rgba(6, 23, 36, 0.14);
  --shadow-soft: 0 14px 35px rgba(6, 23, 36, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--ink);
  background: var(--ice);
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: -0.012em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  overflow: hidden;
}

.container {
  width: min(var(--max), calc(100% - 38px));
  margin: 0 auto;
}

[x-cloak] {
  display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand,
.nav-pill a,
.btn,
.product-lab-btn,
.hero-eyebrow,
.section-kicker,
.product-lab-kicker,
.process-kicker,
.mission-kicker,
.pipeline-kicker,
.leadership-kicker,
.contact-cta-kicker,
.news-card .kicker,
.faq-kicker,
.faq-question,
.article-category {
  font-family: var(--font-heading);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit;
}

p {
  margin-top: 0;
}

/* ============================================
   2. BUTTONS
   ============================================ */

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #061724;
  background: linear-gradient(135deg, #c8f26d, #6ee7d8);
  box-shadow: 0 18px 34px rgba(35, 184, 173, 0.2);
}

.btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

/* ============================================
   3. HERO WRAPPER
   ============================================ */

.hero-wrap {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}

.hero-wrap-background {
  min-height: 620px;
  background:
    linear-gradient(
      90deg,
      rgba(6, 23, 36, 0.94) 0%,
      rgba(6, 23, 36, 0.86) 38%,
      rgba(6, 23, 36, 0.58) 64%,
      rgba(6, 23, 36, 0.34) 100%
    ),
    radial-gradient(circle at 18% 18%, rgba(35, 184, 173, 0.18), transparent 22rem),
    var(--hero-person-image) center right / cover no-repeat;
}

.hero-wrap-background::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 24%, rgba(35, 184, 173, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(6, 23, 36, 0.14), rgba(6, 23, 36, 0.34));
  pointer-events: none;
}

.hero-wrap-background::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.12;
  pointer-events: none;
}

.hero-wrap-simple {
  min-height: auto;
  padding-bottom: 0;
  background: linear-gradient(105deg, #061724 0%, #0a2d45 46%, #3d8aa4 100%);
}

.hero-wrap-simple .hero-inner {
  display: none;
}

.hero-wrap-simple .topbar {
  background: rgba(243, 250, 251, 0.98);
  border-bottom: 1px solid rgba(214, 229, 234, 0.9);
}

/* ============================================
   4. TOPBAR & NAVIGATION
   ============================================ */

.topbar {
  position: relative;
  z-index: 70;
  padding: 14px 0;
  background: rgba(243, 250, 251, 0.92);
  border-bottom: 1px solid rgba(214, 229, 234, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(6, 23, 36, 0.08);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 900;
  font-size: 1.18rem;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.brand-logo {
  width: 180px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-pill {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0;
  background: transparent;
  border: 0;
}

.nav-pill a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: #364a5a;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.nav-pill a:hover,
.nav-pill a.active {
  color: var(--aqua-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.nav-actions .btn {
  min-height: 44px;
  padding: 0 22px;
  box-shadow: none;
}

.nav-actions .btn-secondary {
  color: var(--deep-blue);
  background: #ffffff;
  border-color: rgba(214, 229, 234, 0.95);
}

.nav-actions .btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--aqua-dark), var(--deep-blue));
}

/* ============================================
   5. MOBILE NAVIGATION
   ============================================ */

.mobile-menu-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(3, 14, 24, 0.86);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-menu-button:hover {
  background: rgba(3, 14, 24, 0.96);
  transform: scale(0.98);
}

.mobile-menu-icon,
.mobile-menu-icon::before,
.mobile-menu-icon::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: 180ms ease;
  position: relative;
  margin: 0 auto;
}

.mobile-menu-icon::before {
  position: absolute;
  top: -7px;
}

.mobile-menu-icon::after {
  position: absolute;
  top: 7px;
}

.mobile-menu-button[aria-expanded="true"] .mobile-menu-icon {
  background: transparent;
}

.mobile-menu-button[aria-expanded="true"] .mobile-menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-button[aria-expanded="true"] .mobile-menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(243, 250, 251, 0.98);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-panel {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 80px 24px 40px;
  gap: 8px;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(214, 229, 234, 0.5);
  transition: all 0.2s ease;
}

.mobile-menu a:hover {
  background: var(--aqua-soft);
  transform: translateX(4px);
  border-color: var(--aqua);
}

.mobile-menu .mobile-cta {
  margin-top: 20px;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--aqua-dark), var(--deep-blue));
  border: none;
}

/* ============================================
   6. HERO CONTENT
   ============================================ */

.hero-inner-background {
  min-height: 540px;
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 68px 0 68px;
}

.hero-copy-wide {
  width: 100%;
  max-width: 980px;
  min-width: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  margin-bottom: 18px;
  color: #c9fff8;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(184, 217, 111, 0.14);
}

.hero-title-line {
  width: 100%;
  max-width: 980px;
  margin: 0 0 20px;
  color: #d8f1ff;
  font-family: var(--font-hero);
  font-size: clamp(2.7rem, 4.7vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 700;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.hero-copy-wide p {
  max-width: 680px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.62;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-inline-note {
  display: inline-grid;
  gap: 3px;
  margin-top: 24px;
  padding: 15px 18px;
  border-radius: 18px;
  background: rgba(3, 14, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.hero-inline-note span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-inline-note strong {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.25;
}

.hero-inline-note small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

/* Defensive: hide removed old hero elements if cached markup remains */
.hero-media,
.hero-note {
  display: none !important;
}

/* ============================================
   7. NEWS STRIP
   ============================================ */

.news-strip {
  position: relative;
  z-index: 10;
  margin-top: -34px;
}

.news-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(214, 229, 234, 0.9);
  box-shadow: var(--shadow);
}

.news-card .kicker {
  margin-bottom: 4px;
  color: var(--aqua-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.news-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.news-card .btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--aqua-dark), var(--deep-blue));
}

/* ============================================
   8. SHARED SECTION ELEMENTS
   ============================================ */

.section-kicker,
.product-lab-kicker,
.process-kicker,
.mission-kicker,
.pipeline-kicker,
.leadership-kicker,
.contact-cta-kicker,
.faq-kicker,
.articles-kicker,
.article-detail-kicker,
.product-detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--aqua-dark);
  background: rgba(35, 184, 173, 0.11);
  border: 1px solid rgba(35, 184, 173, 0.18);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-lab-kicker::before,
.process-kicker::before,
.mission-kicker::before,
.pipeline-kicker::before,
.leadership-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(184, 217, 111, 0.18);
}

h2 {
  margin: 0 0 12px;
  color: var(--deep-blue);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 900;
}

/* ============================================
   9. PLATFORM / PRODUCT SECTION
   ============================================ */

.product-lab-section {
  position: relative;
  padding: 58px 0 66px;
  background:
    radial-gradient(circle at 12% 10%, rgba(35, 184, 173, 0.13), transparent 22rem),
    linear-gradient(180deg, #f3fafb 0%, #ffffff 52%, #f3fafb 100%);
  overflow: hidden;
}

.product-lab-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 23, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 23, 36, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
}

.product-lab-header {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto 28px;
  text-align: center;
}

.product-lab-header h2 {
  font-size: clamp(2.05rem, 4.5vw, 3.85rem);
  background: linear-gradient(135deg, var(--deep-blue), var(--aqua-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-lab-header p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  line-height: 1.62;
}

/* Platform cards + capsule panel */
.platform-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 30px;
}

.platform-program-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 0;
}

.platform-program-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(214, 229, 234, 0.96);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.platform-program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(35, 184, 173, 0.14), transparent 13rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(243, 250, 251, 0.42));
  pointer-events: none;
}

.platform-program-card > * {
  position: relative;
  z-index: 1;
}

.platform-program-card:hover {
  transform: translateY(-5px);
  border-color: rgba(35, 184, 173, 0.34);
  box-shadow: var(--shadow);
}

.platform-program-card-featured {
  background:
    radial-gradient(circle at 82% 10%, rgba(184, 217, 111, 0.18), transparent 14rem),
    linear-gradient(135deg, #ffffff, #f2fbfa);
}

.platform-program-topline {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
}

.platform-program-topline span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--aqua-dark);
  background: rgba(35, 184, 173, 0.11);
  border: 1px solid rgba(35, 184, 173, 0.18);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-program-topline strong {
  color: var(--deep-blue);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.platform-program-card h3 {
  margin: 0 0 14px;
  color: var(--deep-blue);
  font-size: clamp(1.32rem, 2vw, 1.8rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.platform-program-card p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.62;
}

.platform-program-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-program-card li {
  position: relative;
  padding-left: 23px;
  color: #243847;
  font-size: 0.9rem;
  line-height: 1.48;
}

.platform-program-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--aqua);
  box-shadow: 0 0 0 5px rgba(35, 184, 173, 0.12);
}

.platform-image-panel {
  position: relative;
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(214, 229, 234, 0.96);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.platform-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.platform-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 23, 36, 0.02), rgba(6, 23, 36, 0.34)),
    radial-gradient(circle at 20% 20%, rgba(35, 184, 173, 0.18), transparent 16rem);
  pointer-events: none;
}

.platform-image-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 16px 18px;
  border-radius: 18px;
  color: #ffffff;
  background: rgba(3, 14, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.platform-image-caption span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.platform-image-caption strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 900;
}

/* Compact featured product card */
.product-lab-showcase {
  position: relative;
  z-index: 1;
  margin-top: 32px;
}

.product-lab-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(35, 184, 173, 0.11), transparent 18rem),
    linear-gradient(135deg, #ffffff 0%, #f7fcfd 100%);
  border: 1px solid rgba(214, 229, 234, 0.96);
  box-shadow: 0 26px 64px rgba(6, 23, 36, 0.1);
}

.product-lab-card-hero-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(6, 23, 36, 0.94) 0%,
      rgba(6, 23, 36, 0.84) 48%,
      rgba(6, 23, 36, 0.56) 100%
    ),
    var(--hero-person-image) center right / cover no-repeat;
}

.product-lab-card-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 15%, rgba(35, 184, 173, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(6, 23, 36, 0.12), rgba(6, 23, 36, 0.38));
  pointer-events: none;
}

.product-lab-content {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 4vw, 46px);
  display: flex;
  flex-direction: column;
}

.product-lab-card-hero-bg .product-lab-content {
  max-width: 760px;
}

.product-lab-icon-wrap {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(35, 184, 173, 0.16), rgba(184, 217, 111, 0.14));
  border: 1px solid rgba(35, 184, 173, 0.16);
  box-shadow: 0 16px 35px rgba(35, 184, 173, 0.12);
}

.product-lab-icon {
  color: var(--aqua-dark);
  font-size: 1.75rem;
  font-weight: 900;
}

.product-lab-label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.product-lab-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--aqua-dark);
  background: rgba(35, 184, 173, 0.11);
  border: 1px solid rgba(35, 184, 173, 0.18);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.product-lab-pill-soft {
  color: #66751c;
  background: rgba(184, 217, 111, 0.16);
  border-color: rgba(184, 217, 111, 0.26);
}

.product-lab-content h3 {
  margin: 0 0 10px;
  color: var(--deep-blue);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.product-lab-card-hero-bg h3,
.product-lab-card-hero-bg .product-lab-feature strong {
  color: #ffffff;
}

.product-lab-tagline {
  margin: 0 0 18px;
  color: var(--aqua-dark);
  font-size: 1.02rem;
  font-weight: 850;
}

.product-lab-card-hero-bg .product-lab-tagline {
  color: #8ff4e8;
}

.product-lab-description {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.68;
}

.product-lab-card-hero-bg .product-lab-description,
.product-lab-card-hero-bg .product-lab-note,
.product-lab-card-hero-bg .product-lab-feature p {
  color: rgba(255, 255, 255, 0.78);
}

.product-lab-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 26px;
}

.product-lab-feature {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start;
  padding: 15px;
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(214, 229, 234, 0.82);
  box-shadow: 0 10px 24px rgba(6, 23, 36, 0.04);
  font-size: 0.94rem;
}

.product-lab-card-hero-bg .product-lab-feature {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.product-lab-feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--aqua-dark);
  background: var(--aqua-soft);
  font-size: 1rem;
  font-weight: 900;
}

.product-lab-feature strong {
  display: block;
  margin-bottom: 3px;
  color: var(--deep-blue);
  font-weight: 900;
}

.product-lab-feature p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.product-lab-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(214, 229, 234, 0.82);
}

.product-lab-card-hero-bg .product-lab-footer {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.product-lab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--aqua-dark), var(--deep-blue));
  font-size: 0.95rem;
  font-weight: 900;
  box-shadow: 0 15px 30px rgba(35, 184, 173, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-lab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(35, 184, 173, 0.24);
}

.product-lab-note {
  flex: 1 1 230px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

/* Defensive: remove old empty product visual block */
.product-lab-visual,
.product-lab-floating-card,
.product-lab-image-frame,
.product-lab-image {
  display: none !important;
}

/* ============================================
   10. PIPELINE SECTION
   ============================================ */

.pipeline-section {
  position: relative;
  padding: 58px 0 66px;
  background:
    radial-gradient(circle at 12% 14%, rgba(35, 184, 173, 0.14), transparent 23rem),
    radial-gradient(circle at 86% 22%, rgba(184, 217, 111, 0.12), transparent 20rem),
    linear-gradient(180deg, #ffffff 0%, var(--ice) 100%);
  overflow: hidden;
}

.pipeline-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 23, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 23, 36, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.pipeline-header {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto 28px;
  text-align: center;
}

.pipeline-header h2,
.leadership-header h2 {
  color: var(--deep-blue);
  font-size: clamp(2.05rem, 4.5vw, 3.85rem);
}

.pipeline-header p,
.leadership-header p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.62;
}

.pipeline-table-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(214, 229, 234, 0.95);
  box-shadow: var(--shadow-soft);
}

.pipeline-table {
  width: 100%;
}

.pipeline-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1.45fr;
  gap: 18px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(214, 229, 234, 0.85);
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.48;
}

.pipeline-row:last-child {
  border-bottom: 0;
}

.pipeline-row strong {
  color: var(--deep-blue);
  font-weight: 900;
}

.pipeline-row-head {
  background:
    radial-gradient(circle at 92% 20%, rgba(184, 217, 111, 0.18), transparent 12rem),
    linear-gradient(135deg, var(--deep-blue), var(--aqua-dark));
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pipeline-row-head div {
  color: rgba(255, 255, 255, 0.86);
}

/* ============================================
   11. PROCESS / HOW IT WORKS
   ============================================ */

.process-section {
  position: relative;
  padding: 58px 0 66px;
  background:
    radial-gradient(circle at 14% 12%, rgba(35, 184, 173, 0.12), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, var(--ice) 100%);
  overflow: hidden;
}

.process-header {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}

.process-header h2 {
  color: var(--deep-blue);
  font-size: clamp(2.05rem, 4.5vw, 3.85rem);
}

.process-header p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.62;
}

.process-showcase {
  display: grid;
  grid-template-columns: 1fr;
}

.process-content-card {
  padding: clamp(28px, 4vw, 44px);
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(214, 229, 234, 0.9);
  box-shadow: var(--shadow-soft);
}

.process-content-card h3 {
  margin: 0 0 14px;
  color: var(--deep-blue);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.process-content-card > p {
  margin: 0 0 26px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.62;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.process-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(243, 250, 251, 0.94), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(214, 229, 234, 0.86);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.process-step:hover {
  transform: translateY(-3px);
  border-color: rgba(35, 184, 173, 0.35);
  box-shadow: 0 14px 30px rgba(6, 23, 36, 0.08);
}

.process-step-number {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--aqua-soft), #ffffff);
  color: var(--aqua-dark);
  font-weight: 900;
  border: 1px solid rgba(35, 184, 173, 0.16);
}

.process-step h4 {
  margin: 0 0 4px;
  color: var(--deep-blue);
  font-size: 1.02rem;
  line-height: 1.25;
  font-weight: 900;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.54;
}

/* Defensive: remove old empty process visual block */
.process-visual-card,
.process-floating-card,
.process-image-panel {
  display: none !important;
}

/* ============================================
   12. MISSION
   ============================================ */

.mission-section {
  position: relative;
  padding: 70px 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(35, 184, 173, 0.22), transparent 24rem),
    linear-gradient(135deg, var(--midnight), var(--deep-blue));
  color: #ffffff;
  overflow: hidden;
}

.mission-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.22;
  pointer-events: none;
}

.mission-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.mission-content {
  padding: clamp(28px, 4vw, 46px);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.18);
}

.mission-kicker {
  color: #c9fff8;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
}

.mission-content h2 {
  max-width: 820px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(1.85rem, 3.45vw, 3.05rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.mission-content > p {
  max-width: 720px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
  line-height: 1.68;
}

.mission-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}

.mission-points article {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mission-points span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--lime);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.mission-points strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 900;
}

.mission-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.5;
}

.mission-quote {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: auto;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 74% 24%, rgba(184, 217, 111, 0.22), transparent 14rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.mission-quote-image {
  background:
    linear-gradient(
      180deg,
      rgba(6, 23, 36, 0.42) 0%,
      rgba(6, 23, 36, 0.72) 55%,
      rgba(6, 23, 36, 0.9) 100%
    ),
    url("../images/neukidney-dr.jpg") center center / cover no-repeat;
}

.mission-quote-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 15%, rgba(184, 217, 111, 0.22), transparent 15rem),
    radial-gradient(circle at 15% 85%, rgba(35, 184, 173, 0.22), transparent 14rem);
  pointer-events: none;
}

.quote-mark {
  position: absolute;
  top: 20px;
  left: 28px;
  color: rgba(255, 255, 255, 0.14);
  font-size: 8rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.12em;
}

.mission-quote strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.mission-quote span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.62;
}

/* ============================================
   13. LEADERSHIP
   ============================================ */

.leadership-section {
  position: relative;
  padding: 44px 0 50px;
  background:
    radial-gradient(circle at 18% 20%, rgba(35, 184, 173, 0.14), transparent 22rem),
    linear-gradient(180deg, var(--ice) 0%, #ffffff 100%);
  overflow: hidden;
}

.leadership-header {
  max-width: 740px;
  margin: 0 auto 22px;
  text-align: center;
}

.leadership-header h2 {
  color: var(--deep-blue);
  font-size: clamp(1.7rem, 3.1vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.052em;
}

.leadership-header p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}

.leadership-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.leadership-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(214, 229, 234, 0.95);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.leadership-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.leadership-photo {
  height: 230px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 18%, rgba(184, 217, 111, 0.22), transparent 12rem),
    linear-gradient(135deg, var(--deep-blue), var(--aqua-dark));
}

.leadership-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leadership-photo-placeholder {
  position: relative;
}

.leadership-photo-placeholder img {
  opacity: 0;
}

.leadership-photo-placeholder::before {
  content: "Physician Photo";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leadership-body {
  padding: 20px;
}

.leadership-body span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--aqua-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.leadership-body h3 {
  margin: 0 0 8px;
  color: var(--deep-blue);
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.leadership-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ============================================
   14. FAQ
   ============================================ */

.faq-section {
  position: relative;
  padding: 70px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(35, 184, 173, 0.18), transparent 24rem),
    radial-gradient(circle at 88% 24%, rgba(184, 217, 111, 0.12), transparent 22rem),
    linear-gradient(135deg, #030b13, #061724 58%, #0a2d45);
  color: #ffffff;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.2;
  pointer-events: none;
}

.faq-clean-header {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.faq-kicker {
  color: #c9fff8;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
}

.faq-clean-header h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(2.05rem, 4.5vw, 3.85rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.faq-clean-header p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.62;
}

.faq-clean-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: 28px;
  align-items: start;
}

.faq-clean-intro {
  position: sticky;
  top: 110px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.faq-clean-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(184, 217, 111, 0.16);
  color: #d8ff8f;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-clean-intro h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  line-height: 1.06;
  letter-spacing: -0.052em;
  font-weight: 900;
}

.faq-clean-intro p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.62;
}

.faq-clean-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #6ee7d8;
  font-weight: 850;
}

.faq-clean-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.faq-question {
  width: 100%;
  min-height: 72px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: rgba(255, 255, 255, 0.94);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 850;
}

.faq-question:hover {
  color: #d8ff8f;
}

.faq-question .chevron {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.78);
  transition: transform 180ms ease;
}

.faq-item.is-open .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.68);
  transition: max-height 220ms ease;
}

.faq-answer p {
  max-width: 820px;
  margin: 0;
  padding: 0 54px 26px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.66;
}

.faq-answer a {
  color: #d8ff8f;
  font-weight: 800;
}

/* ============================================
   15. CONTACT CTA
   ============================================ */

.contact-cta-section {
  position: relative;
  padding: 58px 0 76px;
  background:
    radial-gradient(circle at 82% 18%, rgba(35, 184, 173, 0.16), transparent 22rem),
    linear-gradient(180deg, var(--ice), #ffffff);
}

.contact-cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: clamp(30px, 5vw, 54px);
  border-radius: 36px;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 18%, rgba(184, 217, 111, 0.22), transparent 18rem),
    linear-gradient(135deg, var(--aqua-dark), var(--deep-blue));
  box-shadow: var(--shadow);
}

.contact-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.18;
  pointer-events: none;
}

.contact-cta-content,
.contact-cta-actions {
  position: relative;
  z-index: 1;
}

.contact-cta-kicker {
  color: #d8ff8f;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-cta-content h2 {
  max-width: 780px;
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(2rem, 4.4vw, 3.75rem);
  line-height: 1.03;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.contact-cta-content p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
  line-height: 1.66;
}

.contact-details {
  display: grid;
  gap: 5px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-details strong {
  color: #ffffff;
  font-weight: 900;
}

.contact-details a {
  color: #d8ff8f;
  font-weight: 850;
}

.contact-cta-actions {
  display: grid;
  gap: 12px;
  min-width: 230px;
}

.contact-cta-actions .btn {
  width: 100%;
}

.contact-cta-actions .btn-primary {
  color: var(--midnight);
  background: linear-gradient(135deg, #d8ff8f, #6ee7d8);
}

.contact-cta-actions .btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

/* ============================================
   16. ARTICLES LISTING
   ============================================ */

.articles-page,
.category-page {
  padding: 70px 0 86px;
  background:
    radial-gradient(circle at 12% 10%, rgba(35, 184, 173, 0.12), transparent 22rem),
    linear-gradient(180deg, var(--ice), #ffffff);
}

.articles-header,
.category-header {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.articles-header h1,
.category-header h1 {
  margin: 0 0 16px;
  color: var(--deep-blue);
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.articles-header p,
.category-header p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.62;
}

.articles-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.article-card {
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(214, 229, 234, 0.95);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.article-card-image {
  display: block;
  height: 220px;
  background:
    radial-gradient(circle at 80% 20%, rgba(184, 217, 111, 0.25), transparent 12rem),
    linear-gradient(135deg, var(--deep-blue), var(--aqua-dark));
  overflow: hidden;
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card-image-placeholder {
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card-body {
  padding: 24px;
}

.article-card-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.article-card-category {
  color: var(--aqua-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card-date {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.article-card h2 {
  margin: 0 0 12px;
  color: var(--deep-blue);
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.article-card p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

.article-card-link {
  color: var(--aqua-dark);
  font-weight: 900;
}

.articles-empty-card,
.article-detail-empty-card,
.product-detail-empty-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(214, 229, 234, 0.95);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

/* ============================================
   17. ARTICLE DETAIL & PRODUCT DETAIL
   ============================================ */

.article-detail-page,
.product-detail-page {
  padding: 70px 0 96px;
  background:
    radial-gradient(circle at 12% 8%, rgba(35, 184, 173, 0.12), transparent 22rem),
    linear-gradient(180deg, var(--ice), #ffffff);
}

.article-detail-back,
.product-detail-back,
.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 11px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(214, 229, 234, 0.95);
  color: var(--deep-blue);
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(6, 23, 36, 0.04);
}

.article-detail-shell {
  border-radius: 38px;
  background: #ffffff;
  border: 1px solid rgba(214, 229, 234, 0.95);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.article-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  background:
    radial-gradient(circle at 12% 12%, rgba(35, 184, 173, 0.12), transparent 18rem),
    linear-gradient(135deg, #ffffff, var(--ice));
}

.article-detail-hero-content {
  padding: clamp(32px, 5vw, 58px);
}

.article-detail-hero h1 {
  margin: 0;
  color: var(--deep-blue);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.article-detail-meta {
  margin-top: 18px;
  color: var(--ink-soft);
  font-weight: 700;
}

.article-detail-image {
  min-height: 380px;
  overflow: hidden;
}

.article-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  padding: clamp(28px, 5vw, 54px);
}

.article-detail-content,
.product-detail-content {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.8;
}

.article-detail-content h2,
.article-detail-content h3,
.product-detail-content h2,
.product-detail-content h3 {
  color: var(--deep-blue);
  margin-top: 1.55em;
  margin-bottom: 0.55em;
  line-height: 1.15;
}

.article-detail-content p,
.product-detail-content p {
  color: #1a2a3a;
  margin-bottom: 1.35em;
}

.article-detail-content ul,
.article-detail-content ol,
.product-detail-content ul,
.product-detail-content ol {
  color: #1a2a3a;
  padding-left: 1.4em;
}

.article-detail-content a,
.product-detail-content a {
  color: var(--aqua-dark);
  text-decoration: underline;
}

.article-detail-sidebar,
.product-detail-sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
}

.article-detail-summary-card,
.article-detail-cta-card,
.product-detail-summary-card,
.product-status-notice {
  padding: 22px;
  border-radius: 24px;
  background: var(--ice);
  border: 1px solid rgba(214, 229, 234, 0.95);
}

.article-detail-summary-card span,
.article-detail-cta-card span,
.product-detail-summary-card span,
.product-status-notice strong {
  display: block;
  margin-bottom: 8px;
  color: var(--aqua-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-detail-summary-card strong,
.article-detail-cta-card strong,
.product-detail-summary-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--deep-blue);
  font-size: 1.15rem;
  line-height: 1.25;
  font-weight: 900;
}

.article-detail-summary-card p,
.article-detail-cta-card p,
.product-detail-summary-card p,
.product-status-notice p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
}

.product-detail-hero-content {
  padding: clamp(32px, 5vw, 58px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 15% 10%, rgba(35, 184, 173, 0.16), transparent 16rem),
    linear-gradient(135deg, #ffffff, var(--ice));
  border: 1px solid rgba(214, 229, 234, 0.95);
  box-shadow: var(--shadow-soft);
}

.product-detail-hero h1 {
  margin: 0 0 18px;
  color: var(--deep-blue);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.product-detail-hero p {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}

.product-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-detail-badges span {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--aqua-dark);
  background: rgba(35, 184, 173, 0.1);
  border: 1px solid rgba(35, 184, 173, 0.18);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-detail-visual {
  min-height: 430px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 75% 18%, rgba(184, 217, 111, 0.22), transparent 16rem),
    linear-gradient(135deg, var(--blue-soft), #ffffff),
    var(--conduit-image) center / contain no-repeat;
  border: 1px solid rgba(214, 229, 234, 0.95);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.product-detail-main {
  padding: clamp(28px, 4vw, 44px);
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(214, 229, 234, 0.95);
  box-shadow: var(--shadow-soft);
}

.product-cta-buttons {
  display: grid;
  gap: 12px;
}

.product-cta-buttons .btn {
  width: 100%;
}

/* ============================================
   18. FOOTER
   ============================================ */

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--aqua-dark);
}

/* ============================================
   19. RESPONSIVE
   ============================================ */

@media (min-width: 981px) {
  .mobile-menu-button {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
}

@media (max-width: 1080px) {
  .hero-copy-wide {
    max-width: 820px;
  }

  .hero-title-line {
    max-width: 820px;
    white-space: normal;
  }

  .platform-showcase-grid,
  .mission-card,
  .faq-clean-layout,
  .contact-cta-card,
  .article-detail-hero,
  .article-detail-layout,
  .product-detail-hero,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .platform-program-grid,
  .product-lab-feature-grid,
  .process-steps,
  .mission-points {
    grid-template-columns: 1fr;
  }

  .platform-image-panel img {
    min-height: 320px;
  }

  .contact-cta-actions {
    display: flex;
    flex-wrap: wrap;
    min-width: 0;
  }
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-pill,
  .nav-actions {
    display: none;
  }

  .mobile-menu-button {
    display: inline-grid;
  }

  .hero-wrap-background {
    min-height: 600px;
    background:
      linear-gradient(
        180deg,
        rgba(6, 23, 36, 0.92) 0%,
        rgba(6, 23, 36, 0.8) 55%,
        rgba(6, 23, 36, 0.62) 100%
      ),
      var(--hero-person-image) center center / cover no-repeat;
  }

  .hero-inner-background {
    min-height: 520px;
    padding: 64px 0 58px;
  }

  .hero-copy-wide {
    max-width: 760px;
    text-align: left;
  }

  .hero-title-line {
    max-width: 760px;
    font-size: clamp(2.35rem, 7.2vw, 3.75rem);
    white-space: normal;
  }

  .product-lab-card-hero-bg {
    background:
      linear-gradient(
        180deg,
        rgba(6, 23, 36, 0.92) 0%,
        rgba(6, 23, 36, 0.82) 60%,
        rgba(6, 23, 36, 0.72) 100%
      ),
      var(--hero-person-image) center center / cover no-repeat;
  }

  .pipeline-row {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 20px;
  }

  .pipeline-row-head {
    display: none;
  }

  .pipeline-row > div:nth-child(1)::before,
  .pipeline-row > div:nth-child(2)::before,
  .pipeline-row > div:nth-child(3)::before,
  .pipeline-row > div:nth-child(4)::before {
    display: block;
    margin-bottom: 4px;
    color: var(--aqua-dark);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .pipeline-row > div:nth-child(1)::before {
    content: "Program";
  }

  .pipeline-row > div:nth-child(2)::before {
    content: "Indication";
  }

  .pipeline-row > div:nth-child(3)::before {
    content: "Current Stage";
  }

  .pipeline-row > div:nth-child(4)::before {
    content: "Core Value Proposition";
  }

  .leadership-grid,
  .articles-grid,
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .leadership-photo {
    height: 260px;
  }

  .faq-clean-intro {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .brand-logo {
    width: 155px;
  }

  .hero-wrap-background {
    min-height: 560px;
  }

  .hero-inner-background {
    min-height: 500px;
    padding: 52px 0 50px;
  }

  .hero-title-line {
    max-width: 100%;
    font-size: 2.35rem;
    line-height: 1;
    letter-spacing: -0.035em;
    white-space: normal;
  }

  .hero-copy-wide p {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .hero-actions .btn,
  .news-card .btn,
  .contact-cta-actions .btn {
    width: 100%;
  }

  .hero-inline-note {
    width: 100%;
  }

  .news-strip {
    margin-top: -24px;
  }

  .news-card {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 22px;
  }

  .product-lab-section,
  .pipeline-section,
  .process-section,
  .mission-section,
  .leadership-section,
  .faq-section,
  .contact-cta-section,
  .articles-page,
  .category-page,
  .article-detail-page,
  .product-detail-page {
    padding-top: 46px;
    padding-bottom: 54px;
  }

  .product-lab-header,
  .pipeline-header,
  .process-header,
  .leadership-header,
  .faq-clean-header,
  .articles-header,
  .category-header {
    margin-bottom: 22px;
    text-align: left;
  }

  .product-lab-header h2,
  .pipeline-header h2,
  .process-header h2,
  .leadership-header h2,
  .faq-clean-header h2,
  .contact-cta-content h2,
  .articles-header h1,
  .category-header h1,
  .article-detail-hero h1,
  .product-detail-hero h1 {
    font-size: 2.05rem;
    letter-spacing: -0.052em;
  }

  .mission-content h2 {
    font-size: 1.95rem;
  }

  .platform-showcase-grid {
    gap: 18px;
  }

  .platform-program-grid,
  .product-lab-feature-grid,
  .process-steps,
  .mission-points,
  .leadership-grid,
  .articles-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .platform-image-panel {
    border-radius: 24px;
  }

  .platform-image-panel img {
    min-height: 240px;
  }

  .platform-image-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .platform-program-card,
  .product-lab-card,
  .pipeline-table-card,
  .process-content-card,
  .mission-content,
  .mission-quote,
  .leadership-card,
  .faq-clean-intro,
  .contact-cta-card,
  .article-detail-shell,
  .product-detail-hero-content,
  .product-detail-visual,
  .product-detail-main {
    border-radius: 24px;
  }

  .platform-program-card,
  .product-lab-content,
  .process-content-card,
  .mission-content,
  .mission-quote,
  .leadership-body,
  .faq-clean-intro,
  .contact-cta-card,
  .article-detail-hero-content,
  .article-detail-layout,
  .product-detail-hero-content,
  .product-detail-main {
    padding: 22px;
  }

  .leadership-section {
    padding-top: 40px;
    padding-bottom: 44px;
  }

  .leadership-header h2 {
    font-size: 1.85rem;
  }

  .leadership-photo {
    height: 240px;
  }

  .faq-question {
    min-height: 70px;
    font-size: 0.96rem;
  }

  .faq-answer p {
    padding-right: 0;
  }

  .article-card-image {
    height: 190px;
  }

  .article-detail-image {
    min-height: 240px;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 390px) {
  .hero-wrap-background {
    min-height: 535px;
  }

  .hero-inner-background {
    min-height: 475px;
    padding: 44px 0 46px;
  }

  .hero-title-line {
    font-size: 2.05rem;
    line-height: 1.05;
    white-space: normal;
  }

  .hero-eyebrow,
  .product-lab-kicker,
  .pipeline-kicker,
  .process-kicker,
  .mission-kicker,
  .leadership-kicker,
  .faq-kicker,
  .articles-kicker,
  .article-detail-kicker,
  .product-detail-kicker {
    font-size: 0.64rem;
    letter-spacing: 0.075em;
  }

  .hero-copy-wide p {
    font-size: 0.94rem;
  }

  .btn {
    min-height: 44px;
    padding: 0 18px;
  }

  .leadership-photo {
    height: 220px;
  }
}/* ============================================
   HOMEPAGE HEADING SIZE NORMALIZATION
   Version: 2.5.1
   Reduces oversized section headings for better visual balance
   ============================================ */

/* 1. Platform heading:
   "A platform targeting high-morbidity, high-cost kidney disease."
*/
.product-lab-header h2 {
  font-size: clamp(1.75rem, 3.1vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* 2. Pipeline heading:
   "Multiple programs. Multiple value inflection points."
*/
.pipeline-header h2 {
  font-size: clamp(1.75rem, 3.1vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

/* 3. FAQ heading:
   "Frequently asked questions"
*/
.faq-clean-header h2 {
  font-size: clamp(1.75rem, 3.1vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

/* 4. Mission heading:
   "Prevent dialysis. Restore function. Reduce morbidity."
*/
.mission-content h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

/* Keep supporting text visually balanced */
.product-lab-header p,
.pipeline-header p,
.faq-clean-header p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Tablet */
@media (max-width: 980px) {
  .product-lab-header h2,
  .pipeline-header h2,
  .faq-clean-header h2 {
    font-size: clamp(1.65rem, 5vw, 2.35rem);
  }

  .mission-content h2 {
    font-size: clamp(1.55rem, 4.8vw, 2.15rem);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .product-lab-header h2,
  .pipeline-header h2,
  .faq-clean-header h2 {
    font-size: 1.75rem;
    line-height: 1.12;
  }

  .mission-content h2 {
    font-size: 1.65rem;
    line-height: 1.12;
  }

  .product-lab-header p,
  .pipeline-header p,
  .faq-clean-header p {
    font-size: 0.95rem;
  }
}

/* iPhone mini */
@media (max-width: 390px) {
  .product-lab-header h2,
  .pipeline-header h2,
  .faq-clean-header h2 {
    font-size: 1.55rem;
  }

  .mission-content h2 {
    font-size: 1.48rem;
  }
}/* ============================================
   ADDITIONAL HOMEPAGE HEADING NORMALIZATION
   Version: 2.5.2
   Adds process and CTA heading sizing
   ============================================ */

/* 5. Process heading:
   "A multi-pathway approach to renal recovery."
*/
.process-header h2 {
  font-size: clamp(1.75rem, 3.1vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

/* 6. CTA heading:
   "Support the next stage of kidney recovery innovation."
*/
.contact-cta-content h2 {
  font-size: clamp(1.75rem, 3.1vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  max-width: 760px;
}

/* Keep supporting text balanced */
.process-header p,
.contact-cta-content p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Tablet */
@media (max-width: 980px) {
  .process-header h2,
  .contact-cta-content h2 {
    font-size: clamp(1.65rem, 5vw, 2.35rem);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .process-header h2,
  .contact-cta-content h2 {
    font-size: 1.75rem;
    line-height: 1.12;
  }

  .process-header p,
  .contact-cta-content p {
    font-size: 0.95rem;
  }
}

/* iPhone mini */
@media (max-width: 390px) {
  .process-header h2,
  .contact-cta-content h2 {
    font-size: 1.55rem;
  }
}/* ============================================
   LEADERSHIP SECTION IMAGE + FONT REFINEMENT
   Version: 2.5.3
   ============================================ */

/* Reduce: "Harvard-trained and clinically experienced leadership." */
.leadership-header h2 {
  font-size: clamp(1.45rem, 2.45vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.leadership-header p {
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 560px;
}

/* Make the entire executive section more compact */
.leadership-section {
  padding-top: 34px;
  padding-bottom: 40px;
}

.leadership-grid {
  max-width: 860px;
  gap: 16px;
}

/* Smaller cards reduce image stretching/blurriness */
.leadership-card {
  border-radius: 20px;
}

/* Reduce image height so low-res photos are not over-enlarged */
.leadership-photo {
  height: 175px;
  background: #eef7f8;
}

/* Better crop for portrait/headshot images */
.leadership-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Smaller card text */
.leadership-body {
  padding: 18px 20px 20px;
}

.leadership-body span {
  font-size: 0.64rem;
  margin-bottom: 7px;
}

.leadership-body h3 {
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  margin-bottom: 7px;
}

.leadership-body p {
  font-size: 0.85rem;
  line-height: 1.45;
}

/* Tablet */
@media (max-width: 980px) {
  .leadership-header h2 {
    font-size: clamp(1.45rem, 4.5vw, 2rem);
  }

  .leadership-grid {
    max-width: 760px;
  }

  .leadership-photo {
    height: 190px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .leadership-section {
    padding-top: 32px;
    padding-bottom: 38px;
  }

  .leadership-header h2 {
    font-size: 1.55rem;
    line-height: 1.14;
  }

  .leadership-header p {
    font-size: 0.88rem;
  }

  .leadership-photo {
    height: 210px;
  }
}

/* iPhone mini */
@media (max-width: 390px) {
  .leadership-header h2 {
    font-size: 1.42rem;
  }

  .leadership-photo {
    height: 190px;
  }
}/* ============================================
   MOBILE HERO PRODUCT IMAGE VISIBILITY FIX
   Version: 2.5.4
   Keeps product image visible on mobile
   ============================================ */

/* Desktop/tablet refinement: keep product clearly visible */
.hero-wrap-background {
  background:
    linear-gradient(
      90deg,
      rgba(6, 23, 36, 0.92) 0%,
      rgba(6, 23, 36, 0.78) 38%,
      rgba(6, 23, 36, 0.36) 68%,
      rgba(6, 23, 36, 0.14) 100%
    ),
    radial-gradient(circle at 18% 18%, rgba(35, 184, 173, 0.16), transparent 22rem),
    var(--hero-person-image) center right / cover no-repeat;
}

/* Mobile: lighter overlay + better image positioning */
@media (max-width: 640px) {
  .hero-wrap-background {
    min-height: 620px;
    background:
      linear-gradient(
        180deg,
        rgba(6, 23, 36, 0.74) 0%,
        rgba(6, 23, 36, 0.64) 45%,
        rgba(6, 23, 36, 0.78) 100%
      ),
      radial-gradient(circle at 18% 22%, rgba(35, 184, 173, 0.18), transparent 15rem),
      var(--hero-person-image) 68% center / cover no-repeat;
  }

  .hero-wrap-background::before {
    background:
      linear-gradient(
        180deg,
        rgba(6, 23, 36, 0.08) 0%,
        rgba(6, 23, 36, 0.18) 55%,
        rgba(6, 23, 36, 0.34) 100%
      );
  }

  .hero-wrap-background::after {
    opacity: 0.06;
  }

  .hero-inner-background {
    min-height: 560px;
  }

  .hero-copy-wide {
    max-width: 100%;
  }

  .hero-title-line {
    max-width: 92%;
  }
}

/* Very small phones: show more of the product image */
@media (max-width: 390px) {
  .hero-wrap-background {
    min-height: 610px;
    background:
      linear-gradient(
        180deg,
        rgba(6, 23, 36, 0.70) 0%,
        rgba(6, 23, 36, 0.60) 42%,
        rgba(6, 23, 36, 0.80) 100%
      ),
      radial-gradient(circle at 18% 22%, rgba(35, 184, 173, 0.16), transparent 14rem),
      var(--hero-person-image) 72% center / cover no-repeat;
  }

  .hero-title-line {
    max-width: 94%;
  }
}/* ============================================
   MOBILE HERO PRODUCT IMAGE VISIBILITY BOOST
   Version: 2.5.5
   Makes product image slightly more visible on mobile
   ============================================ */

@media (max-width: 640px) {
  .hero-wrap-background {
    background:
      linear-gradient(
        180deg,
        rgba(6, 23, 36, 0.62) 0%,
        rgba(6, 23, 36, 0.52) 42%,
        rgba(6, 23, 36, 0.70) 100%
      ),
      radial-gradient(circle at 18% 22%, rgba(35, 184, 173, 0.14), transparent 15rem),
      var(--hero-person-image) 70% center / cover no-repeat;
  }

  .hero-wrap-background::before {
    background:
      linear-gradient(
        180deg,
        rgba(6, 23, 36, 0.04) 0%,
        rgba(6, 23, 36, 0.10) 52%,
        rgba(6, 23, 36, 0.24) 100%
      );
  }
}

@media (max-width: 390px) {
  .hero-wrap-background {
    background:
      linear-gradient(
        180deg,
        rgba(6, 23, 36, 0.58) 0%,
        rgba(6, 23, 36, 0.48) 42%,
        rgba(6, 23, 36, 0.68) 100%
      ),
      radial-gradient(circle at 18% 22%, rgba(35, 184, 173, 0.12), transparent 14rem),
      var(--hero-person-image) 74% center / cover no-repeat;
  }

  .hero-wrap-background::before {
    background:
      linear-gradient(
        180deg,
        rgba(6, 23, 36, 0.03) 0%,
        rgba(6, 23, 36, 0.08) 52%,
        rgba(6, 23, 36, 0.22) 100%
      );
  }
}<!-- Product Visual Spotlight Section -->
<section class="product-spotlight-section" id="renal-conduit-spotlight">
    <div class="container">
        <div class="product-spotlight-card">
            <div class="product-spotlight-copy">
                <span class="product-spotlight-kicker">Product Spotlight</span>

                <h2>Renal Conduit System</h2>

                <p class="product-spotlight-lead">
                    A targeted regenerative renal delivery platform designed to support future
                    therapy delivery directly into kidney tissue.
                </p>

                <p>
                    The NeuKidney conduit concept is being developed to support localized renal
                    parenchymal delivery for investigational regenerative therapy approaches.
                </p>

                <div class="product-spotlight-actions">
                    <a href="<?= e(url('/#products')); ?>" class="btn btn-primary">
                        Explore Platform
                        <span aria-hidden="true">→</span>
                    </a>

                    <a href="<?= e(url('/#pipeline')); ?>" class="btn btn-secondary">
                        View Pipeline
                    </a>
                </div>
            </div>

            <div class="product-spotlight-visual">
                <img
                    src="<?= e(asset('images/neukidney-bg.jpg')); ?>"
                    alt="Renal Conduit System product visual"
                    loading="lazy"
                >

                <div class="product-spotlight-badge">
                    <span>Investigational Platform</span>
                    <strong>Targeted renal therapy delivery</strong>
                </div>
            </div>
        </div>
    </div>
</section>