/* ============================================================
   ONCOSIA SCIENTIFIC GmbH — Complete Design System
   Version 2.0 — All styles consolidated here.
   No inline CSS should exist in any template.
   ============================================================

   TABLE OF CONTENTS
   -----------------
   1.  Google Fonts Import
   2.  CSS Custom Properties (Design Tokens)
   3.  Global Reset & Base
   4.  Container
   5.  Typography Scale
   6.  Color Utilities
   7.  Section System
   8.  Navigation Bar
   9.  Buttons
   10. Tag Badges
   11. Cards
   12. Geometric Grid Overlay
   13. Scroll Animations
   14. Dividers & Misc Utilities
   15. Footer
   ---- HOMEPAGE SECTIONS ----
   16. Hero
   17. Solution Tracks
   18. Why Oncosia
   19. How We Work
   20. PLANET® Dose
   21. CTA Strip
   ---- CLINICAL TRIALS PAGE ----
   23. CT Hero
   24. CT Intro & Credibility
   25. CT Who We Serve
   26. CT Services Grid
   27. CT Managed Rental Equipment
   28. CT Full Dosimetry Analysis
   29. CT How We Differ
   30. CT Process Steps
   31. CT Dosimetry Feature (Axial)
   32. CT Testimonials
   33. CT CTA
   ---- RESPONSIVE ----
   22. Responsive / Media Queries
   34. CT Page Responsive
   ---- CLINICAL ROUTINE PAGE ----
   35. CR Hero
   36. CR Delivery Models
   37. CR DaaS Deep-dive
   38. CR PLANET® Dose + Setup
   39. CR Supported Therapies
   40. CR Deliverables
   41. CR Why Oncosia
   42. CR Process
   43. CR CTA
   44. CR Responsive
   ---- ABOUT PAGE ----
   45. AB Page Header
   46. AB What We Are + Position
   47. AB History & Timeline
   48. AB Team Tiles
   49. AB Location & Partners
   50. AB Responsive
   ============================================================ */


/* ============================================================
   1. GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@500;600;700&family=Plus+Jakarta+Sans:wght@200;300;400;500&family=DM+Mono:wght@300;400&display=swap');


/* ============================================================
   2. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  /* --- Color Palette --- */
  --color-ink:        #1A1F2E;
  --color-ink-mid:    #252B3A;
  --color-ink-lift:   #1E2635;
  --color-slate:      #3D4A5C;
  --color-mist:       #8A97A8;
  --color-silver:     #D4D9E0;
  --color-warm-linen: #EDE8E1;
  --color-warm-frost: #F5F3F0;
  --color-white:      #FAFAF8;
  --color-teal:       #1A7B6E;
  --color-teal-deep:  #0F5246;
  --color-teal-light: #2EA898;
  --color-teal-glow:  rgba(26, 123, 110, 0.09);
  --color-amber:      #B87D0E;

  /* --- Border Radius --- */
  --radius-sm:   6px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-pill: 9999px;

  /* --- Layout --- */
  --section-padding-y: 108px;
  --container-max:     1180px;
  --container-px:      52px;
  --navbar-height:     64px;
}


/* ============================================================
   3. GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  background-color: var(--color-warm-frost);
  color: var(--color-slate);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* ============================================================
   4. CONTAINER
   ============================================================ */
.oncosia-container {
  max-width: var(--container-max);
  padding-left: var(--container-px);
  padding-right: var(--container-px);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Page section — same as container but with vertical padding */
.page-section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-padding-y) var(--container-px);
}

/* Prevent double vertical padding when page-section is nested inside
   a .section wrapper (which already provides its own vertical padding) */
.section > .page-section,
.ab-page-header .page-section {
  padding-top: 0;
  padding-bottom: 0;
}


/* ============================================================
   5. TYPOGRAPHY SCALE
   ============================================================ */
h1, .h1-display {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
h2, .h2-section {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h3, .h3-card {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
h4, .h4-card {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.35;
}

.body-large {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.78;
}
.body-small {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.68;
}
.caption {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
}

/* Eyebrow / section label */
.eyebrow,
.section-label {
  font-family: 'DM Mono', monospace;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-teal);
  display: block;
  margin-bottom: 12px;
}

/* Label small */
.label-small {
  font-family: 'DM Mono', monospace;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Data large */
.data-large {
  font-family: 'DM Mono', monospace;
  font-weight: 300;
  font-size: clamp(28px, 2.5vw, 32px);
  line-height: 1;
}

/* Shared section heading helpers */
.section-h {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.section-sub {
  color: var(--color-slate);
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 60px;
  max-width: 560px;
  line-height: 1.78;
}


/* ============================================================
   6. COLOR UTILITIES
   ============================================================ */
.text-ink        { color: var(--color-ink) !important; }
.text-slate      { color: var(--color-slate) !important; }
.text-mist       { color: var(--color-mist) !important; }
.text-silver     { color: var(--color-silver) !important; }
.text-teal       { color: var(--color-teal) !important; }
.text-teal-light { color: var(--color-teal-light) !important; }
.text-amber      { color: var(--color-amber) !important; }
.text-white      { color: var(--color-white) !important; }

.bg-ink          { background-color: var(--color-ink) !important; }
.bg-ink-mid      { background-color: var(--color-ink-mid) !important; }
.bg-warm-frost   { background-color: var(--color-warm-frost) !important; }
.bg-warm-linen   { background-color: var(--color-warm-linen) !important; }
.bg-white-card   { background-color: var(--color-white) !important; }


/* ============================================================
   7. SECTION SYSTEM
   ============================================================ */
.section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}
.section-light    { background-color: var(--color-white); }
.section-frost    { background-color: var(--color-warm-frost); }
.section-linen    { background-color: var(--color-warm-linen); }
.section-dark     { background-color: var(--color-ink); }
.section-dark-mid { background-color: var(--color-ink-mid); }

/* Auto-invert headings and body text inside dark sections */
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4,
.section-dark-mid h1, .section-dark-mid h2, .section-dark-mid h3, .section-dark-mid h4 {
  color: var(--color-white);
}
.section-dark p, .section-dark-mid p {
  color: rgba(255, 255, 255, 0.70);
}
.section-dark .eyebrow, .section-dark .section-label,
.section-dark-mid .eyebrow, .section-dark-mid .section-label {
  color: var(--color-teal-light);
}


/* ============================================================
   8. NAVIGATION BAR
   ============================================================ */
.oncosia-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1030;
  height: var(--navbar-height);
  background-color: rgba(26, 31, 46, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  padding: 0 var(--container-px);
}

.oncosia-navbar .navbar-inner {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 40px;
}

/* Brand */
.oncosia-brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  flex-shrink: 0;
}
.oncosia-brand .brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
  letter-spacing: -0.01em;
}
.oncosia-brand .brand-dot {
  color: var(--color-teal-light);
}
.oncosia-brand .brand-sub {
  font-family: 'DM Mono', monospace;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--color-mist);
  margin-top: 1px;
}

/* Nav links */
.oncosia-nav-links {
  display: flex;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}
.oncosia-nav-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  padding: 0 16px;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.oncosia-nav-links a:hover {
  color: rgba(255, 255, 255, 0.85);
}
.oncosia-nav-links a.active {
  color: var(--color-teal-light);
  border-bottom-color: var(--color-teal-light);
}

/* Nav dropdown */
.oncosia-nav-links .has-dropdown {
  position: relative;
}
.oncosia-nav-links .has-dropdown > a {
  gap: 5px;
}
.oncosia-nav-links .has-dropdown > a .nav-caret {
  display: inline-block;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(var(--navbar-height) - 4px);
  left: -16px;
  min-width: 240px;
  background: rgba(26, 31, 46, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 1100;
}
.has-dropdown:hover .nav-dropdown-menu,
.has-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.has-dropdown:hover > a .nav-caret,
.has-dropdown:focus-within > a .nav-caret {
  transform: rotate(180deg);
}
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown-menu a {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.15s;
  height: auto;
  border-bottom: none;
}
.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
}
.nav-dropdown-menu a.active {
  color: var(--color-teal-light);
  border-bottom: none;
  background: rgba(46, 168, 152, 0.08);
}
.nav-dropdown-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}
.nav-dropdown-sub {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 300;
  color: rgba(195, 210, 222, 0.45);
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.nav-dropdown-menu a:hover .nav-dropdown-label { color: var(--color-white); }
.nav-dropdown-menu a:hover .nav-dropdown-sub   { color: rgba(195, 210, 222, 0.65); }
.nav-dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 6px 8px;
}

/* Mobile Solutions sub-links */
.oncosia-mobile-menu .mobile-sub-links {
  display: none;
  padding-left: 12px;
  margin-top: 4px;
  margin-bottom: 4px;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.oncosia-mobile-menu .mobile-sub-links.open { display: flex; }
.oncosia-mobile-menu .mobile-sub-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  padding: 8px 8px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.oncosia-mobile-menu .mobile-sub-links a:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
}
.mobile-solutions-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}
.mobile-solutions-toggle:hover { color: var(--color-white); }
.mobile-solutions-toggle .nav-caret {
  width: 10px; height: 10px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.mobile-solutions-toggle.open .nav-caret { transform: rotate(180deg); }
.mobile-solutions-toggle.open { color: rgba(255, 255, 255, 0.85); }

/* Navbar CTA */
.oncosia-navbar-cta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white);
  background: var(--color-teal);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  flex-shrink: 0;
  margin-left: auto;
  transition: background 0.2s;
}
.oncosia-navbar-cta:hover {
  background: var(--color-teal-deep);
  color: var(--color-white);
}

/* Mobile hamburger */
.oncosia-hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 3px;
  margin-left: auto;
}
.oncosia-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.7);
}

/* Mobile dropdown menu */
.oncosia-mobile-menu {
  display: none;
  background-color: var(--color-ink);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.oncosia-mobile-menu.open { display: block; }
.oncosia-mobile-menu ul {
  list-style: none;
  padding: 0; margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.oncosia-mobile-menu ul > li > a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: block;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}
.oncosia-mobile-menu ul > li > a:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
}
.oncosia-mobile-menu .btn-mobile-cta {
  width: 100%;
  justify-content: center;
}

/* Offset body content below fixed navbar */
body { padding-top: var(--navbar-height); }


/* ============================================================
   9. BUTTONS
   ============================================================ */
.btn-oncosia {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  border: 1px solid transparent;
  line-height: 1;
  white-space: nowrap;
}
.btn-oncosia:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 123, 110, 0.35);
}

/* Primary */
.btn-primary-oncosia {
  background-color: var(--color-teal);
  color: var(--color-white) !important;
  border-color: var(--color-teal);
}
.btn-primary-oncosia:hover {
  background-color: var(--color-teal-deep);
  border-color: var(--color-teal-deep);
}

/* Outline */
.btn-outline-oncosia {
  background-color: transparent;
  color: var(--color-teal) !important;
  border-color: var(--color-teal);
}
.btn-outline-oncosia:hover {
  background-color: var(--color-teal-glow);
}

/* Ghost Light — for dark backgrounds */
.btn-ghost-light-oncosia {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.6) !important;
  border-color: rgba(255, 255, 255, 0.16);
}
.btn-ghost-light-oncosia:hover {
  color: var(--color-white) !important;
  border-color: rgba(255, 255, 255, 0.35);
}

/* Ghost — for light backgrounds */
.btn-ghost-oncosia {
  background-color: transparent;
  color: var(--color-slate) !important;
  border-color: var(--color-silver);
}
.btn-ghost-oncosia:hover {
  border-color: var(--color-slate);
  color: var(--color-ink) !important;
}

/* Larger variant */
.btn-lg-oncosia {
  padding: 14px 32px;
  font-size: 16px;
}
.btn-sm-oncosia {
  padding: 10px 22px;
  font-size: 15px;
}

/* Navbar CTA — compact size to fit the nav bar height */
.btn-nav-cta {
  padding: 8px 18px;
  font-size: 14px;
}


/* ============================================================
   10. TAG BADGES
   ============================================================ */
.tag {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Mono', monospace;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  line-height: 1.4;
}
.tag-teal {
  background-color: var(--color-teal-glow);
  color: var(--color-teal);
  border-color: rgba(26, 123, 110, 0.18);
}
.tag-grey {
  background-color: var(--color-warm-frost);
  color: var(--color-mist);
  border-color: var(--color-silver);
}


/* ============================================================
   11. CARDS
   ============================================================ */
.oncosia-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-silver);
  border-radius: var(--radius-md);
  padding: 28px 28px 32px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
  height: 100%;
}
.oncosia-card:hover {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 4px var(--color-teal-glow);
}

.oncosia-card-dark {
  background-color: var(--color-ink-mid);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 28px 28px 32px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
  height: 100%;
}
.oncosia-card-dark:hover {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 4px var(--color-teal-glow);
}
.oncosia-card-dark h3,
.oncosia-card-dark h4 { color: var(--color-white); }
.oncosia-card-dark p  { color: rgba(255, 255, 255, 0.60); }


/* ============================================================
   12. GEOMETRIC GRID OVERLAY
   Used as decorative background in dark sections.
   Wrapper must be position:relative; overflow:hidden.
   ============================================================ */
.geometric-grid-wrapper {
  position: relative;
  overflow: hidden;
}
.geometric-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 0.5px, transparent 0.5px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0.5px, transparent 0.5px);
  background-size: 64px 64px;
}
.geometric-grid-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 1.1px, transparent 1.1px);
  background-size: 64px 64px;
  opacity: 0.5;
}
/* All direct children of wrapper sit above the overlay */
.geometric-grid-wrapper > *:not(.geometric-grid-overlay) {
  position: relative;
  z-index: 2;
}


/* ============================================================
   13. SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid children */
.stagger-children > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children > *:nth-child(2) { transition-delay: 80ms; }
.stagger-children > *:nth-child(3) { transition-delay: 160ms; }
.stagger-children > *:nth-child(4) { transition-delay: 240ms; }
.stagger-children > *:nth-child(5) { transition-delay: 320ms; }
.stagger-children > *:nth-child(6) { transition-delay: 400ms; }

/* Hero entrance stagger (runs immediately, not on scroll) */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   14. DIVIDERS & MISC UTILITIES
   ============================================================ */
.divider      { border: none; border-top: 1px solid var(--color-silver); margin: 0; }
.divider-dark { border-top-color: rgba(255, 255, 255, 0.08); }

.font-syne    { font-family: 'Syne', sans-serif !important; }
.font-jakarta { font-family: 'Plus Jakarta Sans', sans-serif !important; }
.font-mono    { font-family: 'DM Mono', monospace !important; }

.teal-rule {
  display: block;
  width: 36px; height: 2px;
  background-color: var(--color-teal);
  margin-bottom: 20px;
  border-radius: 2px;
}
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background-color: var(--color-teal-glow);
  color: var(--color-teal);
  flex-shrink: 0;
}
.step-number {
  font-family: 'DM Mono', monospace;
  font-weight: 300;
  font-size: 28px;
  line-height: 1;
  color: var(--color-teal);
  opacity: 0.35;
  display: block;
  margin-bottom: 12px;
}


/* ============================================================
   15. FOOTER
   ============================================================ */
.oncosia-footer {
  background-color: var(--color-ink);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 100px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 3px;
}
.footer-brand-name span { color: var(--color-teal-light); }

.footer-brand-sub {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--color-mist);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 210px;
}

.footer-col-title {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-mist);
  margin-bottom: 16px;
  display: block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255, 255, 255, 0.8); }

.footer-location {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 64px;
  padding: 24px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-legal {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.50);
  letter-spacing: 0.08em;
}
.footer-legal-links {
  display: flex;
  gap: 20px;
}
.footer-legal-links a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.50);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: rgba(255, 255, 255, 0.65); }


/* ============================================================
   16. HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* Left (text) panel */
.hero-left {
  background: var(--color-ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 52px 88px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.hero-left-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  z-index: 1;
}
.hero-left-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(ellipse 70% 50% at 10% 20%, rgba(26, 123, 110, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 80% 90%, rgba(26, 123, 110, 0.08) 0%, transparent 50%);
}
.hero-left-inner { position: relative; z-index: 3; }

/* Hero typography — individual entrance animations */
.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-teal-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.2s;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--color-teal-light);
  flex-shrink: 0;
}
.hero-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4.8vw, 62px);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.07;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.35s;
}
.hero-h1 mark {
  background: none;
  color: var(--color-teal-light);
}
.hero-body {
  font-size: 16px;
  font-weight: 300;
  color: rgba(195, 210, 222, 0.78);
  line-height: 1.78;
  max-width: 460px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.5s;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.65s;
}
.hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  opacity: 0;
  animation: fadeUp 0.5s ease forwards 0.8s;
}
.hero-tag-item {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
}

/* Right (photo) panel */
.hero-right {
  position: relative;
  overflow: hidden;
  background: #0A1520;
}
/* The editorial photograph — covers the full right panel */
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
/* Gradient overlays: left edge bleeds into dark left panel,
   bottom darkens for the data annotation panels */
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to right,  rgba(26, 31, 46, 0.82) 0%, rgba(26, 31, 46, 0.18) 28%, transparent 55%),
    linear-gradient(to top,    rgba(10, 15, 24, 0.72) 0%, transparent 42%),
    linear-gradient(to bottom, rgba(10, 15, 24, 0.38) 0%, transparent 25%);
}
/* Teal-tinted scrim to keep the brand palette connected to the warm photo */
.hero-photo-tint {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: radial-gradient(ellipse 60% 55% at 75% 35%, rgba(26,123,110,0.14) 0%, transparent 60%);
  pointer-events: none;
}
/* Data annotation layer — floats above photo */
.hero-data-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
}
/* Keep old .hero-overlay name working if referenced elsewhere */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right, rgba(26, 31, 46, 0.5) 0%, transparent 40%);
}

/* ── Why-card photo strips (Proposal B) ── */
.why-item-photo {
  height: 80px;
  border-radius: calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) 0 0;
  margin: -30px -30px 20px -30px;   /* pull to card edges, sits above padding */
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.why-item-photo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* Teal accent bar at bottom of photo strip */
.why-item-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-teal) 0%, var(--color-teal-light) 100%);
}
/* Each card strip has its own warm colour gradient */
.why-item-photo-amber {
  background: linear-gradient(135deg, #2D1A08 0%, #6B3E12 40%, #A06020 70%, #7B4A18 100%);
}
.why-item-photo-teal {
  background: linear-gradient(135deg, #0A2820 0%, #1A5C4E 45%, #2A8870 70%, #1A6858 100%);
}
.why-item-photo-ochre {
  background: linear-gradient(135deg, #221408 0%, #5C3810 45%, #8B5820 70%, #6A3E14 100%);
}
.why-item-photo-slate {
  background: linear-gradient(135deg, #14102A 0%, #2E2850 45%, #46408A 70%, #382E6C 100%);
}
/* Subtle light orb inside each strip — warmth effect */
.why-item-photo-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 60px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
/* Horizontal texture lines across strip */
.why-item-photo-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 7px,
    rgba(255,255,255,0.025) 7px,
    rgba(255,255,255,0.025) 8px
  );
}

/* ── Process portrait nodes (Proposal D) ── */
.how-step-portrait {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--color-teal);
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  flex-shrink: 0;
}
/* Warm gradient fill inside circle — editorial placeholder until real photo */
.how-step-portrait-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 0;
}
.how-step-portrait-img {
  position: absolute;
  width: 72px;
  height: 72px;
  top: 0;
  left: 0;
  object-fit: contain;
  object-position: center center;
  z-index: 1;
}
.how-step-portrait-amber { background: radial-gradient(ellipse at 40% 35%, #7A4018 0%, #2E1408 100%); }
.how-step-portrait-teal  { background: radial-gradient(ellipse at 40% 35%, #1E6850 0%, #0A2820 100%); }
.how-step-portrait-ochre { background: radial-gradient(ellipse at 40% 35%, #8A5010 0%, #2A1808 100%); }
/* Abstract face silhouette inside circle */
.how-step-portrait-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.how-step-portrait-face svg {
  width: 44px;
  height: 44px;
  opacity: 0.55;
}
/* Teal ring pulse */
.how-step-portrait::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(46,168,152,0.25);
}

/* Scroll indicator */
.scroll-ind {
  position: absolute;
  bottom: 36px;
  left: 52px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.5s ease forwards 1s;
}
.scroll-line {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}
.scroll-txt {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}


/* ============================================================
   17. SOLUTION TRACKS
   ============================================================ */
.solutions-strip { background: var(--color-white); }

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sol-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-silver);
  transition: border-color 0.22s, box-shadow 0.22s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.sol-card:hover {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 4px var(--color-teal-glow);
}

.sol-card-top {
  padding: 48px 44px 40px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Routine card */
.sol-card-routine .sol-card-top { background: var(--color-ink); }
.sol-card-routine .sol-card-top::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 20% 20%, rgba(26, 123, 110, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

/* Trials card */
.sol-card-trials .sol-card-top { background: var(--color-ink-mid); }
.sol-card-trials .sol-card-top::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 60% at 80% 20%, rgba(26, 123, 110, 0.2) 0%, transparent 55%);
  pointer-events: none;
}

.sol-card-grid {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.055;
}
.sol-card-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-teal-light);
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 2;
}
.sol-card-h {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 2.3vw, 28px);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}
.sol-card-xray {
  position: absolute;
  right: 24px; top: 24px;
  opacity: 0.14;
  z-index: 1;
}
.sol-card-bottom {
  padding: 30px 44px;
  background: var(--color-warm-frost);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sol-card-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-slate);
  line-height: 1.65;
  max-width: 380px;
}
.sol-card-cta {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal);
  white-space: nowrap;
  margin-left: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.sol-card-cta::after { content: '→'; }


/* ============================================================
   18. WHY ONCOSIA
   ============================================================ */
.why-strip {
  background: var(--color-warm-frost);
  position: relative;
  overflow: hidden;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* 2×2 card grid inside the Why column */
.why-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-pull {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.why-pull em {
  font-style: normal;
  color: var(--color-teal);
}

.why-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-slate);
  line-height: 1.82;
  margin-bottom: 20px;
}

.why-quality-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(26, 123, 110, 0.07);
  border: 1px solid rgba(26, 123, 110, 0.2);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  margin-bottom: 8px;
}
.why-quality-badge-icon {
  width: 28px; height: 28px;
  background: var(--color-teal);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-quality-badge-icon svg {
  width: 14px; height: 14px;
  stroke: white; fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-quality-badge-text {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal);
  line-height: 1.6;
}
.why-quality-badge-text strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
}

/* Right column — feature items */
.why-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.why-item {
  background: var(--color-white);
  border: 1px solid var(--color-silver);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.why-item:hover {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 4px var(--color-teal-glow);
}

.why-item-h {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-item-dot {
  width: 6px; height: 6px;
  background: var(--color-teal);
  border-radius: 50%;
  flex-shrink: 0;
}
.why-item-p {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-slate);
  line-height: 1.7;
}

/* Dark quality item */
.why-item-quality {
  background: var(--color-ink);
  border-color: rgba(26, 123, 110, 0.3);
}
.why-item-quality:hover { border-color: var(--color-teal-light); }
.why-item-quality .why-item-h { color: var(--color-white); }
.why-item-quality .why-item-dot { background: var(--color-teal-light); }
.why-item-quality .why-item-p { color: var(--color-mist); }

/* QM compliance tags */
.qm-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.qm-tag {
  font-family: 'DM Mono', monospace;
  font-size: 8.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(46, 168, 152, 0.1);
  border: 1px solid rgba(46, 168, 152, 0.22);
  color: var(--color-teal-light);
}


/* ============================================================
   19. HOW WE WORK
   ============================================================ */
.how-strip {
  background: var(--color-ink-lift);
  position: relative;
  overflow: hidden;
}
.how-grid-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
}
.how-glow {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(ellipse 50% 60% at 85% 50%, rgba(26, 123, 110, 0.12) 0%, transparent 55%);
}
.how-inner { position: relative; z-index: 3; }

.how-unified-wrap { margin-top: 56px; }

.how-unified-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

/* 5-step process row used on the homepage */
.how-steps-grid {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr 32px 1fr;
  align-items: start;
  margin-top: 60px;
}
.how-step-unified {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  transition: border-color 0.2s;
}
.how-step-unified:hover { border-color: rgba(46, 168, 152, 0.28); }

.how-arr {
  font-family: 'DM Mono', monospace;
  font-size: 18px;
  color: rgba(46, 168, 152, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  flex-shrink: 0;
}

.how-step-num-u {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--color-teal-light);
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.how-step-h-u {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.how-step-p-u {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-mist);
  line-height: 1.68;
}

/* Turn arrow between rows */
.how-unified-row-gap {
  display: flex;
  justify-content: flex-end;
  padding: 0 calc(100% / 6);
}
.how-row-down-arrow {
  font-family: 'DM Mono', monospace;
  font-size: 20px;
  color: rgba(46, 168, 152, 0.35);
  padding: 10px 0;
  text-align: center;
  width: 50px;
}

/* Reverse row direction for snake layout */
.how-unified-row-rev { direction: rtl; }
.how-unified-row-rev > * { direction: ltr; }


/* ============================================================
   20. PLANET® DOSE
   ============================================================ */
.planet-strip { background: var(--color-warm-linen); }

.planet-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: center;
}

/* Dark feature panel */
.planet-panel {
  background: var(--color-ink);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.planet-panel-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 60% 30%, rgba(26, 123, 110, 0.28) 0%, transparent 55%);
  pointer-events: none;
}
.planet-panel-grid {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.05;
}
.planet-panel-inner { position: relative; z-index: 2; }

.planet-ring {
  position: absolute;
  top: 28px; right: 28px;
  opacity: 0.2;
}

/* Panel typography */
.planet-name {
  font-family: 'Syne', sans-serif;
  font-size: 23px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}
.planet-name span { color: var(--color-teal-light); }

.planet-name-sub {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--color-mist);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Content side typography */
.planet-h {
  font-family: 'Syne', sans-serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.planet-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-slate);
  line-height: 1.82;
  margin-bottom: 24px;
}

/* Planet feature tags */
.planet-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.ptag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.ptag-t {
  background: var(--color-teal-glow);
  color: var(--color-teal);
  border: 1px solid rgba(26, 123, 110, 0.18);
}
.ptag-g {
  background: rgba(0, 0, 0, 0.05);
  color: var(--color-mist);
  border: 1px solid var(--color-silver);
}


/* ============================================================
   21. CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--color-ink);
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 70% at 50% 50%, rgba(26, 123, 110, 0.14) 0%, transparent 60%);
}
.cta-grid-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
}
.cta-inner { position: relative; z-index: 2; }

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-h {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.13;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}
.cta-h mark {
  background: none;
  color: var(--color-teal-light);
}
.cta-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-mist);
  line-height: 1.78;
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 30px 28px 26px;
  transition: border-color 0.2s;
}
.cta-card:hover { border-color: rgba(46, 168, 152, 0.3); }

.cta-card-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-teal-light);
  margin-bottom: 10px;
  display: block;
}
.cta-card-h {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 8px;
}
.cta-card-p {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-mist);
  line-height: 1.65;
  margin-bottom: 18px;
}

/* Consultation button variant (teal-border on dark) */
.btn-consultation {
  border-color: rgba(46, 168, 152, 0.5);
  color: var(--color-teal-light) !important;
}
.btn-consultation:hover {
  border-color: var(--color-teal-light);
  background-color: rgba(46, 168, 152, 0.08);
}


/* ============================================================
   22. RESPONSIVE / MEDIA QUERIES
   ============================================================ */

/* Tablet and below */
@media (max-width: 960px) {
  :root {
    --section-padding-y: 72px;
    --container-px: 28px;
  }

  /* Nav */
  .oncosia-navbar { padding: 0 24px; }
  .oncosia-hamburger { display: flex; }
  .oncosia-nav-links { display: none; }
  .oncosia-navbar-cta { display: none; }
  .oncosia-navbar {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0;
  }
  .oncosia-navbar .navbar-inner { padding: 0 24px; }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 120px 28px 72px; }
  .hero-right { min-height: 380px; }

  /* Solution cards */
  .solutions-grid { grid-template-columns: 1fr; gap: 20px; }
  .sol-card-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .sol-card-cta { margin-left: 0; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-cards-grid { grid-template-columns: 1fr; row-gap: 20px; }

  /* How we work */
  .how-unified-row,
  .how-unified-row-rev { grid-template-columns: 1fr; }
  .how-steps-grid { grid-template-columns: 1fr; }
  .how-arr { display: none; }
  .how-unified-row-gap { display: none; }
  .how-step-unified { margin-bottom: 12px; }

  /* Planet */
  .planet-grid { grid-template-columns: 1fr; gap: 32px; }

  /* CTA */
  .cta-split { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* Mobile */
@media (max-width: 576px) {
  :root {
    --section-padding-y: 56px;
    --container-px: 20px;
  }
  .hero-left { padding: 100px 20px 56px; }
  .sol-card-top { padding: 32px 28px 28px; }
  .sol-card-bottom { padding: 24px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   CLINICAL TRIALS PAGE — PAGE-SPECIFIC STYLES
   All styles for /solutions/clinical-trials/
   ============================================================ */

/* ---- CT Hero (overrides shared .hero for this page variant) ---- */
.hero-ct { min-height: 100vh; background: var(--color-ink); position: relative; overflow: hidden; display: flex; align-items: flex-end; padding-bottom: 88px; padding-top: var(--navbar-height); }
.hero-ct .hero-grid-bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.055; z-index: 1; }
.hero-ct .hero-atmo { position: absolute; inset: 0; pointer-events: none; z-index: 2; background: radial-gradient(ellipse 55% 60% at 72% 30%, rgba(26,123,110,0.20) 0%, transparent 58%), radial-gradient(ellipse 30% 40% at 10% 80%, rgba(26,123,110,0.07) 0%, transparent 50%), radial-gradient(ellipse 80% 30% at 50% 100%, rgba(10,15,25,0.6) 0%, transparent 60%); }
.hero-ct .hero-xray { position: absolute; right: 0; top: 0; bottom: 0; width: 55%; z-index: 3; opacity: 0.28; }
.hero-ct .hero-xray svg { width: 100%; height: 100%; }
.hero-ct .hero-inner { max-width: var(--container-max); width: 100%; margin: 0 auto; padding: 0 var(--container-px); position: relative; z-index: 5; }
.hero-ct .hero-eyebrow { font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-teal-light); margin-bottom: 24px; display: flex; align-items: center; gap: 14px; opacity: 0; animation: fadeUpCT 0.6s ease forwards 0.15s; }
.hero-ct .hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--color-teal-light); flex-shrink: 0; }
.hero-ct .hero-h1 { font-family: 'Syne', sans-serif; font-size: clamp(36px, 5.5vw, 68px); font-weight: 600; color: var(--color-white); line-height: 1.08; letter-spacing: -0.025em; max-width: 620px; margin-bottom: 28px; opacity: 0; animation: fadeUpCT 0.7s ease forwards 0.3s; }
.hero-ct .hero-h1 .accent { color: var(--color-teal-light); }
.hero-ct .hero-body { font-size: 16px; font-weight: 300; color: rgba(195,210,222,0.78); line-height: 1.78; max-width: 500px; margin-bottom: 44px; opacity: 0; animation: fadeUpCT 0.7s ease forwards 0.45s; }
.hero-ct .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; opacity: 0; animation: fadeUpCT 0.6s ease forwards 0.6s; }
.hero-ct .scroll-ind { position: absolute; bottom: 36px; left: var(--container-px); z-index: 6; display: flex; align-items: center; gap: 12px; opacity: 0; animation: fadeUpCT 0.5s ease forwards 0.9s; }
.hero-ct .scroll-line { width: 36px; height: 1px; background: rgba(255,255,255,0.15); }
.hero-ct .scroll-txt { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); }

@keyframes fadeUpCT { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }

/* ---- Intro / Credibility (Section 2) ---- */
.ct-intro-strip { background: var(--color-white); }
.ct-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.ct-intro-pull { font-family: 'Syne', sans-serif; font-size: clamp(20px,2.6vw,30px); font-weight: 600; color: var(--color-ink); line-height: 1.35; letter-spacing: -0.02em; margin-bottom: 32px; }
.ct-intro-pull .teal { color: var(--color-teal); }
.ct-intro-body p { font-size: 14px; font-weight: 300; color: var(--color-slate); line-height: 1.82; margin-bottom: 16px; }
.ct-pharma-badge { display: flex; align-items: flex-start; gap: 14px; margin-top: 36px; padding: 18px 20px; background: var(--color-warm-frost); border: 1px solid var(--color-silver); border-radius: var(--radius-md); }
.ct-pharma-badge-icon { width: 36px; height: 36px; background: var(--color-teal-glow); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ct-pharma-badge-icon svg { width: 18px; height: 18px; stroke: var(--color-teal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ct-pharma-badge-text { font-size: 15px; font-weight: 300; color: var(--color-slate); line-height: 1.65; }
.ct-pharma-badge-text strong { font-weight: 500; color: var(--color-ink); display: block; margin-bottom: 3px; font-family: 'Syne', sans-serif; font-size: 14px; }
.ct-nuclide-block { margin-top: 24px; background: rgba(26,123,110,0.05); border: 1px solid rgba(26,123,110,0.15); border-radius: var(--radius-md); padding: 18px 20px; }
.ct-nuclide-label { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-teal); display: block; margin-bottom: 10px; }
.ct-nuclide-list { display: flex; flex-wrap: wrap; gap: 7px; }
.ct-nuclide-pill { font-family: 'DM Mono', monospace; font-size: 9.5px; color: var(--color-teal); background: rgba(26,123,110,0.09); border: 1px solid rgba(26,123,110,0.2); border-radius: var(--radius-pill); padding: 4px 11px; letter-spacing: 0.06em; white-space: nowrap; }
.ct-intro-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--color-silver); }
.ct-stat-item { padding-right: 20px; }
.ct-stat-item:not(:last-child) { border-right: 1px solid var(--color-silver); margin-right: 20px; }
.ct-stat-val { font-family: 'DM Mono', monospace; font-size: 26px; font-weight: 300; color: var(--color-teal); line-height: 1; display: block; margin-bottom: 7px; }
.ct-stat-val-sm { font-size: 18px; }
.ct-stat-label { font-family: 'DM Mono', monospace; font-size: 8.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-mist); line-height: 1.5; }

/* ---- Who We Serve (Section 3) ---- */
.ct-serve-strip { background: var(--color-warm-frost); }
.ct-serve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ct-serve-card { background: var(--color-white); border: 1px solid var(--color-silver); border-radius: var(--radius-lg); padding: 32px 28px; transition: border-color 0.22s, box-shadow 0.22s; }
.ct-serve-card:hover { border-color: var(--color-teal); box-shadow: 0 0 0 4px var(--color-teal-glow); }
.ct-serve-icon { width: 40px; height: 40px; background: var(--color-teal-glow); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.ct-serve-icon svg { width: 20px; height: 20px; stroke: var(--color-teal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ct-serve-h { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; color: var(--color-ink); margin-bottom: 10px; }
.ct-serve-p { font-size: 15px; font-weight: 300; color: var(--color-slate); line-height: 1.72; }
.ct-serve-sub-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.ct-serve-sub-tag { font-family: 'DM Mono', monospace; font-size: 8.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-mist); background: var(--color-warm-frost); border: 1px solid var(--color-silver); border-radius: var(--radius-pill); padding: 3px 9px; }

/* ---- Services Grid (Section 4) ---- */
.ct-services-strip { background: var(--color-white); position: relative; overflow: hidden; }
.ct-services-dot-bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.06; }
.ct-services-outer { border: 1px solid var(--color-silver); border-radius: var(--radius-lg); overflow: hidden; position: relative; z-index: 2; }
.ct-services-grid { display: grid; grid-template-columns: 1fr 1fr; }
.ct-svc { padding: 44px 40px; background: var(--color-white); border-right: 1px solid var(--color-silver); border-bottom: 1px solid var(--color-silver); transition: background 0.2s; }
.ct-svc:hover { background: var(--color-warm-frost); }
.ct-svc:nth-child(2n) { border-right: none; }
.ct-svc:nth-child(5), .ct-svc:nth-child(6) { border-bottom: none; }
.ct-svc-num { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--color-teal-light); letter-spacing: 0.16em; display: block; margin-bottom: 14px; }
.ct-svc-h { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 600; color: var(--color-ink); margin-bottom: 10px; line-height: 1.3; }
.ct-svc-p { font-size: 15px; font-weight: 300; color: var(--color-slate); line-height: 1.72; margin-bottom: 16px; }
.ct-svc-tags { display: flex; flex-wrap: wrap; gap: 7px; }

/* ---- Managed Rental Equipment (Section 5) ---- */
.ct-rental-strip { background: var(--color-ink); position: relative; overflow: hidden; }
.ct-rental-bg { position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0.05; }
.ct-rental-glow { position: absolute; inset: 0; pointer-events: none; z-index: 2; background: radial-gradient(ellipse 50% 65% at 15% 50%, rgba(26,123,110,0.18) 0%, transparent 55%); }
.ct-rental-inner { position: relative; z-index: 3; }
.ct-rental-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.ct-rental-intro { font-size: 14px; font-weight: 300; color: rgba(195,210,222,0.65); line-height: 1.82; margin-top: 16px; margin-bottom: 8px; }
.ct-equip-list { display: flex; flex-direction: column; gap: 12px; margin-top: 36px; }
.ct-equip-item { display: flex; align-items: flex-start; gap: 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-md); padding: 20px 22px; transition: border-color 0.2s; }
.ct-equip-item:hover { border-color: rgba(46,168,152,0.28); }
.ct-equip-icon { width: 36px; height: 36px; background: rgba(26,123,110,0.14); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.ct-equip-icon svg { width: 18px; height: 18px; stroke: var(--color-teal-light); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ct-equip-h { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 600; color: var(--color-white); margin-bottom: 4px; }
.ct-equip-p { font-size: 14px; font-weight: 300; color: var(--color-mist); line-height: 1.65; }
.ct-territory-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.ct-territory-badge { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--radius-pill); background: rgba(46,168,152,0.1); border: 1px solid rgba(46,168,152,0.2); color: var(--color-teal-light); }
.ct-rental-pillars-label { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(46,168,152,0.7); margin-bottom: 20px; display: block; }
.ct-rental-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ct-pillar { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-md); padding: 24px 22px; transition: border-color 0.2s; }
.ct-pillar:hover { border-color: rgba(46,168,152,0.3); }
.ct-pillar-icon { width: 32px; height: 32px; background: rgba(26,123,110,0.14); border-radius: 7px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.ct-pillar-icon svg { width: 15px; height: 15px; stroke: var(--color-teal-light); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ct-pillar-h { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 600; color: var(--color-white); margin-bottom: 7px; line-height: 1.3; }
.ct-pillar-p { font-size: 14px; font-weight: 300; color: var(--color-mist); line-height: 1.65; }
.ct-rental-cta-block { margin-top: 24px; background: rgba(26,123,110,0.08); border: 1px solid rgba(26,123,110,0.2); border-radius: var(--radius-md); padding: 20px 22px; }
.ct-rental-cta-block p { font-size: 15px; font-weight: 300; color: rgba(195,210,222,0.65); line-height: 1.72; margin-bottom: 14px; }

/* ---- Full Dosimetry Analysis (Section 6) ---- */
.ct-analysis-strip { background: var(--color-warm-frost); }
.ct-analysis-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 72px; align-items: start; }
.ct-analysis-panel { background: var(--color-ink); border-radius: var(--radius-lg); padding: 44px 40px; position: relative; overflow: hidden; }
.ct-analysis-panel-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 55% at 30% 20%, rgba(26,123,110,0.22) 0%, transparent 55%); pointer-events: none; }
.ct-analysis-panel-bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.045; }
.ct-analysis-panel-inner { position: relative; z-index: 2; }
.ct-analysis-panel-label { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-teal-light); display: block; margin-bottom: 16px; }
.ct-analysis-panel-h { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 600; color: var(--color-white); margin-bottom: 20px; line-height: 1.3; }
.ct-compliance-badges { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.ct-comp-badge { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); padding: 10px 14px; }
.ct-comp-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-teal-light); flex-shrink: 0; }
.ct-comp-badge-text { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); text-transform: uppercase; }
.ct-comp-badge-text strong { color: var(--color-teal-light); font-weight: 400; }
.ct-qm-block { margin-top: 20px; background: rgba(26,123,110,0.08); border: 1px solid rgba(26,123,110,0.22); border-radius: var(--radius-sm); padding: 14px 16px; }
.ct-qm-block-label { font-family: 'DM Mono', monospace; font-size: 8.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-teal-light); display: block; margin-bottom: 10px; }
.ct-qm-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ct-qm-tag { font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 9px; border-radius: var(--radius-pill); background: rgba(46,168,152,0.1); border: 1px solid rgba(46,168,152,0.22); color: var(--color-teal-light); }
.ct-analysis-list { display: flex; flex-direction: column; }
.ct-analysis-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--color-silver); }
.ct-analysis-item:last-child { border-bottom: none; }
.ct-analysis-bullet { width: 20px; height: 20px; border-radius: 50%; background: var(--color-teal-glow); border: 1px solid rgba(26,123,110,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.ct-analysis-bullet::after { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--color-teal); }
.ct-analysis-item-text { font-size: 15px; font-weight: 300; color: var(--color-slate); line-height: 1.65; }
.ct-analysis-item-text strong { font-weight: 500; color: var(--color-ink); font-family: 'Syne', sans-serif; font-size: 15px; display: block; margin-bottom: 2px; }
.ct-nuclide-exp-row { margin-top: 32px; background: var(--color-white); border: 1px solid var(--color-silver); border-radius: var(--radius-md); padding: 20px 22px; }
.ct-nuclide-exp-label { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-teal); display: block; margin-bottom: 12px; }
.ct-nuclide-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.ct-nuclide-pill-sm { font-family: 'DM Mono', monospace; font-size: 9.5px; color: var(--color-teal); background: rgba(26,123,110,0.09); border: 1px solid rgba(26,123,110,0.2); border-radius: var(--radius-pill); padding: 4px 11px; letter-spacing: 0.04em; }
.ct-analysis-intro { font-size: 14px; font-weight: 300; color: var(--color-slate); line-height: 1.82; margin-bottom: 28px; }
.ct-analysis-note { font-size: 15px; font-weight: 300; color: var(--color-slate); line-height: 1.75; margin-top: 28px; padding: 20px 22px; background: var(--color-white); border-radius: var(--radius-md); border-left: 3px solid var(--color-teal); }

/* ---- How We Differ (Section 7) ---- */
.ct-differ-strip { background: var(--color-ink-mid); position: relative; overflow: hidden; }
.ct-differ-bg { position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0.04; }
.ct-differ-glow { position: absolute; inset: 0; pointer-events: none; z-index: 2; background: radial-gradient(ellipse 55% 65% at 85% 30%, rgba(26,123,110,0.16) 0%, transparent 55%); }
.ct-differ-inner { position: relative; z-index: 3; }
.ct-differ-layout { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
.ct-differ-h { font-family: 'Syne', sans-serif; font-size: clamp(22px,3vw,36px); font-weight: 600; color: var(--color-white); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 20px; }
.ct-differ-h .accent { color: var(--color-teal-light); }
.ct-differ-p { font-size: 14px; font-weight: 300; color: rgba(195,210,222,0.65); line-height: 1.82; margin-bottom: 28px; }
.ct-vs-block { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-lg); padding: 28px; margin-top: 8px; }
.ct-vs-label { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-mist); margin-bottom: 16px; display: block; }
.ct-vs-row { display: grid; grid-template-columns: 1fr 1px 1fr; }
.ct-vs-divider { background: rgba(255,255,255,0.08); }
.ct-vs-col { padding: 0 20px; }
.ct-vs-col:first-child { padding-left: 0; }
.ct-vs-col:last-child { padding-right: 0; }
.ct-vs-col-label { font-family: 'DM Mono', monospace; font-size: 8.5px; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.ct-vs-col-label.bad { color: rgba(255,255,255,0.25); }
.ct-vs-col-label.good { color: var(--color-teal-light); }
.ct-vs-item { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.ct-vs-item.good { color: rgba(200,220,215,0.75); }
.ct-vs-item::before { content: '—'; font-family: 'DM Mono', monospace; font-size: 12px; flex-shrink: 0; margin-top: 1px; opacity: 0.4; }
.ct-vs-item.good::before { content: '✓'; color: var(--color-teal-light); opacity: 1; font-size: 11px; }
.ct-differ-cards { display: flex; flex-direction: column; gap: 14px; }
.ct-differ-card { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-lg); padding: 28px; transition: border-color 0.2s; }
.ct-differ-card:hover { border-color: rgba(46,168,152,0.3); }
.ct-differ-card-num { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--color-teal-light); letter-spacing: 0.16em; display: block; margin-bottom: 10px; }
.ct-differ-card-h { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; color: var(--color-white); margin-bottom: 8px; line-height: 1.3; }
.ct-differ-card-p { font-size: 14px; font-weight: 300; color: var(--color-mist); line-height: 1.68; }

/* ---- Process Steps (Section 8) ---- */
.ct-process-strip { background: var(--color-ink); position: relative; overflow: hidden; }
.ct-process-bg { position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0.05; }
.ct-process-glow { position: absolute; inset: 0; pointer-events: none; z-index: 2; background: radial-gradient(ellipse 55% 65% at 85% 40%, rgba(26,123,110,0.16) 0%, transparent 55%); }
.ct-process-xray { position: absolute; right: -20px; top: 50%; transform: translateY(-50%); opacity: 0.12; pointer-events: none; z-index: 3; }
.ct-process-inner { position: relative; z-index: 4; }
.ct-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 60px; }
.ct-process-step { padding-right: 36px; position: relative; }
.ct-process-step:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 28px; width: 1px; height: 40px; background: rgba(255,255,255,0.08); }
.ct-process-step:not(:first-child) { padding-left: 36px; padding-right: 24px; }
.ct-step-num { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--color-teal-light); letter-spacing: 0.16em; display: block; margin-bottom: 16px; }
.ct-step-tag { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--color-teal); letter-spacing: 0.12em; text-transform: uppercase; background: rgba(26,123,110,0.12); border: 1px solid rgba(26,123,110,0.22); border-radius: var(--radius-pill); padding: 3px 10px; display: inline-block; margin-bottom: 10px; }
.ct-step-h { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; color: var(--color-white); line-height: 1.35; margin-bottom: 10px; }
.ct-step-p { font-size: 14px; font-weight: 300; color: var(--color-mist); line-height: 1.72; }

/* ---- Dosimetry Feature / Axial View (Section 9) ---- */
.ct-dose-strip { background: var(--color-ink-mid); position: relative; overflow: hidden; }
.ct-dose-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(26,123,110,0.18) 0%, transparent 55%); }
.ct-dose-bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.04; }
.ct-dose-inner { position: relative; z-index: 2; }
.ct-dose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.ct-dose-viz { width: 100%; max-width: 380px; margin: 0 auto; }
.ct-dose-body { font-size: 14px; font-weight: 300; color: rgba(200,212,224,0.75); line-height: 1.82; margin-bottom: 28px; }
.ct-dose-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.ct-dose-feature { display: flex; gap: 14px; align-items: flex-start; }
.ct-dose-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--color-teal-light); flex-shrink: 0; margin-top: 8px; }
.ct-dose-feature-text { font-size: 15px; font-weight: 300; color: rgba(200,212,224,0.7); line-height: 1.65; }

/* ---- Testimonials (Section 10) ---- */
/* ---- Pre-clinical dosimetry publication grid ---- */
.ct-preclinical-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 20px;
  align-items: start;
}
/* Desktop: explicit placement so image+finding sit in right col,
   meta card spans both rows in the left col */
.ct-preclinical-img     { grid-column: 2; grid-row: 1; }
.ct-preclinical-meta    { grid-column: 1; grid-row: 1 / span 2; }
.ct-preclinical-finding { grid-column: 2; grid-row: 2; }

.ct-testi-strip { background: var(--color-white); }
.ct-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ct-testi-card { background: var(--color-warm-frost); border: 1px solid var(--color-silver); border-radius: var(--radius-lg); padding: 32px 28px; }
.ct-testi-bar { width: 28px; height: 2px; background: var(--color-teal); border-radius: 1px; margin-bottom: 18px; }
.ct-testi-quote { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 500; font-style: italic; color: var(--color-ink); line-height: 1.68; margin-bottom: 20px; }
.ct-testi-source { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--color-mist); letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.8; }

/* ---- CTA (Section 11) ---- */
.ct-cta-strip { background: var(--color-ink-mid); position: relative; overflow: hidden; text-align: center; }
.ct-cta-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 55% 70% at 50% 50%, rgba(26,123,110,0.14) 0%, transparent 60%); }
.ct-cta-bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.05; z-index: 1; }
.ct-cta-inner { position: relative; z-index: 2; }
.ct-cta-h { font-family: 'Syne', sans-serif; font-size: clamp(26px,4vw,48px); font-weight: 600; color: var(--color-white); line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 20px; }
.ct-cta-h .accent { color: var(--color-teal-light); }
.ct-cta-sub { font-size: 15px; font-weight: 300; color: var(--color-mist); line-height: 1.78; max-width: 460px; margin: 0 auto 40px; }
.ct-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- CT Page Responsive ---- */
@media (max-width: 960px) {
  .ct-intro-grid,
  .ct-rental-grid,
  .ct-analysis-grid,
  .ct-differ-layout,
  .ct-dose-grid { grid-template-columns: 1fr; gap: 36px; }
  .ct-intro-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ct-stat-item:not(:last-child) { border-right: none; margin-right: 0; }
  .ct-serve-grid { grid-template-columns: 1fr; }
  .ct-process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ct-process-step::after { display: none; }
  .ct-testi-grid { grid-template-columns: 1fr; }
  /* Pre-clinical grid: collapse to single column; reset explicit placement
     so elements stack in DOM order: image → meta → finding */
  .ct-preclinical-grid { grid-template-columns: 1fr; row-gap: 20px; }
  .ct-preclinical-img,
  .ct-preclinical-meta,
  .ct-preclinical-finding { grid-column: 1; grid-row: auto; }
  .ct-rental-pillars { grid-template-columns: 1fr; }
  .ct-vs-row { grid-template-columns: 1fr; }
  .ct-vs-divider { display: none; }
}
@media (max-width: 600px) {
  .ct-services-grid { grid-template-columns: 1fr; }
  .ct-svc:nth-child(n) { border-bottom: 1px solid var(--color-silver); border-right: none; }
  .ct-svc:last-child { border-bottom: none; }
  .ct-process-steps { grid-template-columns: 1fr; }
  .ct-intro-stats { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CLINICAL ROUTINE PAGE — PAGE-SPECIFIC STYLES
   Prefix: .cr-
   Route: /solutions/clinical-routine/
   ============================================================ */

/* ---- CR Hero ---- */
.cr-hero { min-height: 100vh; background: var(--color-ink); position: relative; overflow: hidden; display: flex; align-items: flex-end; padding-bottom: 88px; padding-top: var(--navbar-height); }
.cr-hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0.055; }
.cr-hero-atmo { position: absolute; inset: 0; pointer-events: none; z-index: 2; background: radial-gradient(ellipse 60% 55% at 70% 35%, rgba(26,123,110,0.22) 0%, transparent 60%), radial-gradient(ellipse 35% 45% at 8% 75%, rgba(26,123,110,0.08) 0%, transparent 50%), radial-gradient(ellipse 80% 25% at 50% 100%, rgba(10,15,25,0.55) 0%, transparent 60%); }
.cr-hero-viz { position: absolute; right: 0; top: 0; bottom: 0; width: 52%; z-index: 3; }
.cr-hero-inner { max-width: var(--container-max); width: 100%; margin: 0 auto; padding: 0 var(--container-px); position: relative; z-index: 5; }
.cr-hero-eyebrow { font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-teal-light); margin-bottom: 24px; display: flex; align-items: center; gap: 14px; opacity: 0; animation: crFadeUp 0.6s ease forwards 0.15s; }
.cr-hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--color-teal-light); flex-shrink: 0; }
.cr-hero-h1 { font-family: 'Syne', sans-serif; font-size: clamp(36px, 5.2vw, 64px); font-weight: 600; color: var(--color-white); line-height: 1.08; letter-spacing: -0.025em; max-width: 580px; margin-bottom: 28px; opacity: 0; animation: crFadeUp 0.7s ease forwards 0.3s; }
.cr-hero-h1 .accent { color: var(--color-teal-light); }
.cr-hero-body { font-size: 16px; font-weight: 300; color: rgba(195,210,222,0.78); line-height: 1.78; max-width: 480px; margin-bottom: 44px; opacity: 0; animation: crFadeUp 0.7s ease forwards 0.45s; }
.cr-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; opacity: 0; animation: crFadeUp 0.6s ease forwards 0.6s; }
.cr-hero-scroll { position: absolute; bottom: 36px; left: var(--container-px); z-index: 6; display: flex; align-items: center; gap: 12px; opacity: 0; animation: crFadeUp 0.5s ease forwards 0.9s; }
.cr-hero-scroll-line { width: 36px; height: 1px; background: rgba(255,255,255,0.15); }
.cr-hero-scroll-txt { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.2); }

/* Hero stat bar */
.cr-hero-stats { display: flex; gap: 0; margin-top: 52px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); opacity: 0; animation: crFadeUp 0.6s ease forwards 0.75s; }
.cr-hero-stat { padding-right: 32px; }
.cr-hero-stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.08); margin-right: 32px; }
.cr-hero-stat-val { font-family: 'DM Mono', monospace; font-size: 22px; font-weight: 300; color: var(--color-teal-light); line-height: 1; display: block; margin-bottom: 6px; }
.cr-hero-stat-label { font-family: 'DM Mono', monospace; font-size: 8.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.28); line-height: 1.5; }

@keyframes crFadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }

/* ---- Path Selector (Section 2) ---- */
/* Two delivery models side-by-side on warm-frost bg */
.cr-path-strip { background: var(--color-warm-frost); }
.cr-path-intro { max-width: 660px; margin-bottom: 56px; }
.cr-path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cr-path-card { background: var(--color-white); border: 1px solid var(--color-silver); border-radius: var(--radius-lg); padding: 44px 40px; position: relative; overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s; }
.cr-path-card:hover { border-color: var(--color-teal); box-shadow: 0 0 0 4px var(--color-teal-glow); }
.cr-path-card-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--color-teal) 0%, var(--color-teal-light) 100%); }
.cr-path-card.secondary .cr-path-card-accent { background: linear-gradient(90deg, var(--color-teal-deep) 0%, var(--color-teal) 100%); }
.cr-path-num { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.16em; color: var(--color-teal-light); display: block; margin-bottom: 20px; }
.cr-path-icon { width: 48px; height: 48px; background: var(--color-teal-glow); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.cr-path-icon svg { width: 22px; height: 22px; stroke: var(--color-teal); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.cr-path-h { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 600; color: var(--color-ink); margin-bottom: 12px; line-height: 1.2; }
.cr-path-sub { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-teal); margin-bottom: 16px; display: block; }
.cr-path-p { font-size: 14px; font-weight: 300; color: var(--color-slate); line-height: 1.78; margin-bottom: 28px; }
.cr-path-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.cr-path-bullet { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; font-weight: 300; color: var(--color-slate); line-height: 1.6; }
.cr-path-bullet::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--color-teal); flex-shrink: 0; margin-top: 7px; }
.cr-path-ideal { font-family: 'DM Mono', monospace; font-size: 8.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-mist); border-top: 1px solid var(--color-silver); padding-top: 20px; margin-top: 20px; }
.cr-path-ideal span { color: var(--color-slate); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 300; letter-spacing: 0; text-transform: none; display: block; margin-top: 4px; }

/* ---- DaaS deep-dive (Section 3) — dark ink ---- */
.cr-daas-strip { background: var(--color-ink); position: relative; overflow: hidden; }
.cr-daas-bg { position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0.05; }
.cr-daas-glow { position: absolute; inset: 0; pointer-events: none; z-index: 2; background: radial-gradient(ellipse 50% 60% at 80% 30%, rgba(26,123,110,0.18) 0%, transparent 55%); }
.cr-daas-inner { position: relative; z-index: 3; }
.cr-daas-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 80px; align-items: start; }
.cr-daas-steps { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.cr-daas-step { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.cr-daas-step:last-child { border-bottom: none; }
.cr-daas-step-num { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--color-teal-light); letter-spacing: 0.16em; display: block; flex-shrink: 0; width: 28px; padding-top: 2px; }
.cr-daas-step-icon { width: 38px; height: 38px; background: rgba(26,123,110,0.14); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cr-daas-step-icon svg { width: 17px; height: 17px; stroke: var(--color-teal-light); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.cr-daas-step-text { flex: 1; }
.cr-daas-step-h { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; color: var(--color-white); margin-bottom: 6px; }
.cr-daas-step-p { font-size: 14px; font-weight: 300; color: var(--color-mist); line-height: 1.7; }
/* Right side: what you submit / what you receive */
.cr-daas-exchange { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.cr-daas-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-md); padding: 24px; }
.cr-daas-box.highlight { background: rgba(26,123,110,0.08); border-color: rgba(26,123,110,0.25); }
.cr-daas-box-label { font-family: 'DM Mono', monospace; font-size: 8.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-teal-light); display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.cr-daas-box-label::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--color-teal-light); flex-shrink: 0; }
.cr-daas-box-items { display: flex; flex-direction: column; gap: 7px; }
.cr-daas-box-item { font-size: 14px; font-weight: 300; color: rgba(200,215,225,0.7); line-height: 1.55; display: flex; align-items: flex-start; gap: 8px; }
.cr-daas-box-item::before { content: '—'; font-family: 'DM Mono', monospace; font-size: 11px; flex-shrink: 0; opacity: 0.35; margin-top: 1px; }
.cr-daas-box-item.good { color: rgba(180,230,215,0.85); }
.cr-daas-box-item.good::before { content: '→'; color: var(--color-teal-light); opacity: 1; }
.cr-daas-turnaround { margin-top: 16px; background: rgba(26,123,110,0.1); border: 1px solid rgba(26,123,110,0.2); border-radius: var(--radius-sm); padding: 12px 16px; display: flex; align-items: center; gap: 12px; }
.cr-daas-turnaround-icon { width: 28px; height: 28px; background: rgba(26,123,110,0.18); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cr-daas-turnaround-icon svg { width: 13px; height: 13px; stroke: var(--color-teal-light); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cr-daas-turnaround-text { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-teal-light); line-height: 1.6; }

/* ---- PLANET® Dose deep-dive (Section 4) — warm-frost ---- */
.cr-planet-strip { background: var(--color-warm-frost); position: relative; overflow: hidden; }
.cr-planet-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: center; }
/* Left: product feature panel */
.cr-planet-panel { background: var(--color-ink); border-radius: var(--radius-lg); padding: 44px 40px; position: relative; overflow: hidden; }
.cr-planet-panel-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 20% 80%, rgba(26,123,110,0.2) 0%, transparent 55%); pointer-events: none; }
.cr-planet-panel-bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.04; }
.cr-planet-panel-inner { position: relative; z-index: 2; }
.cr-planet-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(46,168,152,0.12); border: 1px solid rgba(46,168,152,0.25); border-radius: var(--radius-pill); padding: 5px 14px; margin-bottom: 20px; }
.cr-planet-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-teal-light); }
.cr-planet-badge-text { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-teal-light); }
.cr-planet-panel-h { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 600; color: var(--color-white); line-height: 1.25; margin-bottom: 8px; }
.cr-planet-panel-sub { font-size: 15px; font-weight: 300; color: var(--color-mist); line-height: 1.7; margin-bottom: 28px; }
.cr-planet-caps { display: flex; flex-direction: column; gap: 10px; }
.cr-planet-cap { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-sm); padding: 12px 14px; }
.cr-planet-cap-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--color-teal-light); flex-shrink: 0; }
.cr-planet-cap-text { font-size: 14px; font-weight: 300; color: rgba(200,215,225,0.75); line-height: 1.5; }
.cr-planet-cap-text strong { font-weight: 500; color: var(--color-white); font-family: 'Syne', sans-serif; }
.cr-planet-certmarks { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.cr-planet-cert { font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--radius-pill); background: rgba(46,168,152,0.1); border: 1px solid rgba(46,168,152,0.22); color: var(--color-teal-light); }
.cr-planet-dosisoft-note { margin-top: 40px; padding: 18px 22px; background: rgba(0,0,0,0.03); border-radius: var(--radius-md); border-left: 2px solid rgba(26,123,110,0.35); font-size: 14px; font-weight: 300; color: var(--color-mist); line-height: 1.75; }
/* Right: feature bullets */
.cr-planet-features { display: flex; flex-direction: column; gap: 28px; }
.cr-planet-feature { display: flex; gap: 18px; align-items: flex-start; }
.cr-planet-feature-icon { width: 42px; height: 42px; background: var(--color-teal-glow); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cr-planet-feature-icon svg { width: 20px; height: 20px; stroke: var(--color-teal); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.cr-planet-feature-h { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; color: var(--color-ink); margin-bottom: 6px; }
.cr-planet-feature-p { font-size: 15px; font-weight: 300; color: var(--color-slate); line-height: 1.7; }
.cr-planet-partner-note { margin-top: 40px; padding: 20px 22px; background: var(--color-white); border-radius: var(--radius-md); border-left: 3px solid var(--color-teal); font-size: 15px; font-weight: 300; color: var(--color-slate); line-height: 1.75; }
.cr-planet-partner-note strong { font-weight: 500; color: var(--color-ink); }

/* ---- Supported Therapies (Section 5) — white ---- */
.cr-therapy-strip { background: var(--color-white); }
.cr-therapy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 8px; }
.cr-therapy-card { border: 1px solid var(--color-silver); border-radius: var(--radius-lg); padding: 40px 36px; transition: border-color 0.22s, box-shadow 0.22s; }
.cr-therapy-card:hover { border-color: var(--color-teal); box-shadow: 0 0 0 4px var(--color-teal-glow); }
.cr-therapy-card-label { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-teal); display: block; margin-bottom: 14px; }
.cr-therapy-card-h { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 600; color: var(--color-ink); margin-bottom: 8px; }
.cr-therapy-card-abbr { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--color-mist); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; display: block; }
.cr-therapy-nuclides { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
.cr-therapy-nuclide { font-family: 'DM Mono', monospace; font-size: 9.5px; color: var(--color-teal); background: rgba(26,123,110,0.07); border: 1px solid rgba(26,123,110,0.18); border-radius: var(--radius-pill); padding: 4px 11px; }
.cr-therapy-phases { display: flex; flex-direction: column; gap: 8px; }
.cr-therapy-phase { font-size: 14px; font-weight: 300; color: var(--color-slate); line-height: 1.6; display: flex; align-items: flex-start; gap: 8px; }
.cr-therapy-phase::before { content: '→'; font-family: 'DM Mono', monospace; font-size: 12px; color: var(--color-teal); flex-shrink: 0; margin-top: 1px; }
/* Protocol options strip under the two cards */
.cr-therapy-protocols { margin-top: 24px; background: var(--color-warm-frost); border: 1px solid var(--color-silver); border-radius: var(--radius-md); padding: 24px 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cr-therapy-protocol-item { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-mist); }
.cr-therapy-protocol-item span { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 300; color: var(--color-slate); display: block; text-transform: none; letter-spacing: 0; margin-top: 5px; line-height: 1.55; }

/* ---- Deliverables (Section 6) — ink-mid ---- */
.cr-deliverables-strip { background: var(--color-ink-mid); position: relative; overflow: hidden; }
.cr-deliverables-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 55% at 20% 60%, rgba(26,123,110,0.16) 0%, transparent 55%); }
.cr-deliverables-bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.04; }
.cr-deliverables-inner { position: relative; z-index: 2; }
.cr-deliverables-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 48px; }
.cr-deliverable { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-lg); padding: 28px 24px; transition: border-color 0.2s; }
.cr-deliverable:hover { border-color: rgba(46,168,152,0.3); }
.cr-deliverable-icon { width: 38px; height: 38px; background: rgba(26,123,110,0.14); border-radius: 9px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.cr-deliverable-icon svg { width: 17px; height: 17px; stroke: var(--color-teal-light); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.cr-deliverable-h { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 600; color: var(--color-white); margin-bottom: 7px; line-height: 1.3; }
.cr-deliverable-p { font-size: 11.5px; font-weight: 300; color: var(--color-mist); line-height: 1.65; }
/* Report format note */
.cr-report-note { margin-top: 24px; display: flex; gap: 16px; align-items: center; background: rgba(26,123,110,0.07); border: 1px solid rgba(26,123,110,0.2); border-radius: var(--radius-md); padding: 18px 22px; }
.cr-report-note-icon { width: 32px; height: 32px; background: rgba(26,123,110,0.16); border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cr-report-note-icon svg { width: 14px; height: 14px; stroke: var(--color-teal-light); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cr-report-note-text { font-size: 15px; font-weight: 300; color: rgba(195,210,222,0.65); line-height: 1.7; }
.cr-report-note-text strong { color: var(--color-teal-light); font-weight: 400; }

/* ---- Why Oncosia for Routine (Section 7) — warm-frost ---- */
.cr-why-strip { background: var(--color-warm-frost); }
.cr-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.cr-why-card { background: var(--color-white); border: 1px solid var(--color-silver); border-radius: var(--radius-lg); padding: 32px 28px; transition: border-color 0.22s, box-shadow 0.22s; }
.cr-why-card:hover { border-color: var(--color-teal); box-shadow: 0 0 0 4px var(--color-teal-glow); }
.cr-why-num { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--color-teal-light); letter-spacing: 0.16em; display: block; margin-bottom: 14px; }
.cr-why-h { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; color: var(--color-ink); margin-bottom: 8px; line-height: 1.3; }
.cr-why-p { font-size: 12.5px; font-weight: 300; color: var(--color-slate); line-height: 1.72; }

/* ---- Process (Section 8) — ink ---- */
.cr-process-strip { background: var(--color-ink); position: relative; overflow: hidden; }
.cr-process-bg { position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0.05; }
.cr-process-glow { position: absolute; inset: 0; pointer-events: none; z-index: 2; background: radial-gradient(ellipse 55% 60% at 80% 40%, rgba(26,123,110,0.16) 0%, transparent 55%); }
.cr-process-inner { position: relative; z-index: 3; }
/* 3-step horizontal flow */
.cr-process-flow { display: grid; grid-template-columns: 1fr 48px 1fr 48px 1fr; align-items: start; margin-top: 60px; gap: 0; }
.cr-process-node { padding: 0 8px; }
.cr-process-arrow { display: flex; align-items: flex-start; padding-top: 38px; justify-content: center; }
.cr-process-arrow svg { width: 24px; height: 24px; stroke: rgba(46,168,152,0.35); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.cr-process-step-num { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--color-teal-light); letter-spacing: 0.16em; display: block; margin-bottom: 16px; }
.cr-process-step-tag { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--color-teal); letter-spacing: 0.12em; text-transform: uppercase; background: rgba(26,123,110,0.12); border: 1px solid rgba(26,123,110,0.22); border-radius: var(--radius-pill); padding: 3px 10px; display: inline-block; margin-bottom: 12px; }
.cr-process-step-h { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 600; color: var(--color-white); line-height: 1.3; margin-bottom: 12px; }
.cr-process-step-p { font-size: 14px; font-weight: 300; color: var(--color-mist); line-height: 1.72; margin-bottom: 16px; }
.cr-process-step-items { display: flex; flex-direction: column; gap: 7px; }
.cr-process-step-item { font-size: 11.5px; font-weight: 300; color: rgba(175,195,210,0.6); line-height: 1.5; display: flex; gap: 7px; align-items: flex-start; }
.cr-process-step-item::before { content: '·'; color: var(--color-teal-light); flex-shrink: 0; font-size: 14px; line-height: 1.1; }

/* ---- CTA (Section 9) ---- */
.cr-cta-strip { background: var(--color-ink-mid); position: relative; overflow: hidden; text-align: center; }
.cr-cta-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 55% 70% at 50% 50%, rgba(26,123,110,0.14) 0%, transparent 60%); }
.cr-cta-bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.05; z-index: 1; }
.cr-cta-inner { position: relative; z-index: 2; }
.cr-cta-h { font-family: 'Syne', sans-serif; font-size: clamp(26px,4vw,48px); font-weight: 600; color: var(--color-white); line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 20px; }
.cr-cta-h .accent { color: var(--color-teal-light); }
.cr-cta-sub { font-size: 15px; font-weight: 300; color: var(--color-mist); line-height: 1.78; max-width: 500px; margin: 0 auto 40px; }
.cr-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- CR Responsive ---- */
@media (max-width: 960px) {
  .cr-hero-stats { flex-wrap: wrap; gap: 16px; }
  .cr-hero-stat:not(:last-child) { border-right: none; margin-right: 0; }
  .cr-path-grid { grid-template-columns: 1fr; }
  .cr-daas-grid { grid-template-columns: 1fr; gap: 40px; }
  .cr-planet-grid { grid-template-columns: 1fr; gap: 40px; }
  .cr-therapy-grid { grid-template-columns: 1fr; }
  .cr-therapy-protocols { grid-template-columns: 1fr 1fr; }
  .cr-deliverables-grid { grid-template-columns: 1fr 1fr; }
  .cr-why-grid { grid-template-columns: 1fr 1fr; }
  .cr-process-flow { grid-template-columns: 1fr; gap: 32px; }
  .cr-process-arrow { display: none; }
}
@media (max-width: 600px) {
  .cr-hero-viz { opacity: 0.15; }
  .cr-deliverables-grid { grid-template-columns: 1fr; }
  .cr-why-grid { grid-template-columns: 1fr; }
  .cr-therapy-protocols { grid-template-columns: 1fr; }
}

/* ============================================================
   CR CLINICAL ROUTINE — NEW COMPONENTS
   Added to support sections not covered by original cr-* rules:
   - cr-impl  (Clinical Implementation — photo, timeline, quote)
   - cr-planet additions (bg, glow, inner, wordmark, screenshot etc.)
   - cr-pub   (Publication Reference section)
   - cr-faq   (FAQ accordion)
   ============================================================ */

/* ---- CR Implementation (Section 4) ---- */
.cr-impl-strip { background: var(--color-warm-frost); position: relative; overflow: hidden; }
.cr-impl-inner { position: relative; z-index: 2; }
.cr-impl-layout { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }

.cr-impl-label {
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--color-teal);
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.cr-impl-label::before { content: ''; width: 24px; height: 1px; background: var(--color-teal); }

.cr-impl-h {
  font-family: 'Syne', sans-serif; font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 600; color: var(--color-ink); line-height: 1.25;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.cr-impl-h .accent { color: var(--color-teal); }

.cr-impl-context {
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-mist);
  margin-bottom: 16px; display: flex; gap: 16px;
}
.cr-impl-context-dot { color: var(--color-teal); }

.cr-impl-p { font-size: 14px; font-weight: 300; color: var(--color-slate); line-height: 1.82; margin-bottom: 16px; }

/* On-site photo */
.cr-impl-photo-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16/9; background: var(--color-ink-mid);
}
.cr-impl-photo {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: var(--radius-lg); filter: grayscale(20%) contrast(1.05);
}
.cr-impl-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,31,46,0.55) 0%, transparent 50%);
  border-radius: var(--radius-lg);
}
.cr-impl-photo-caption {
  position: absolute; bottom: 16px; left: 20px;
  font-family: 'DM Mono', monospace; font-size: 8.5px;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4);
}

/* Quote / outcome block */
.cr-impl-outcome {
  margin-top: 28px; padding: 22px 24px;
  background: var(--color-white); border-radius: var(--radius-md);
  border: 1px solid var(--color-silver); border-left: 3px solid var(--color-teal);
}
.cr-impl-outcome-label {
  font-family: 'DM Mono', monospace; font-size: 8.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--color-teal); display: block; margin-bottom: 12px;
}
.cr-impl-outcome-text {
  font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 500;
  color: var(--color-ink); line-height: 1.5; font-style: italic;
}

/* Person attribution */
.cr-impl-person {
  display: flex; align-items: center; gap: 14px;
  margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--color-silver);
}
.cr-impl-person-photo {
  width: 48px; height: 48px; border-radius: 50%; overflow: hidden;
  flex-shrink: 0; background: var(--color-ink-mid);
  border: 2px solid rgba(46,168,152,0.3);
}
.cr-impl-person-photo img { width: 100%; height: 100%; object-fit: cover; }
.cr-impl-person-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
  background: radial-gradient(ellipse at 50% 30%, #2A4A42 0%, #0F2820 100%);
}
.cr-impl-person-photo-placeholder svg { width: 34px; height: 34px; opacity: 0.45; fill: var(--color-teal-light); }
.cr-impl-person-name { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 600; color: var(--color-ink); margin-bottom: 2px; }
.cr-impl-person-role { font-family: 'DM Mono', monospace; font-size: 8.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-mist); }

/* Three-thumbnail strip */
.cr-impl-team-strip { display: flex; gap: 8px; }
.cr-impl-team-photo {
  flex: 1; border-radius: var(--radius-md); overflow: hidden;
  position: relative; background: var(--color-ink-mid);
}
.cr-impl-team-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%); }
.cr-impl-team-photo-label {
  position: absolute; bottom: 8px; left: 10px; right: 10px;
  font-family: 'DM Mono', monospace; font-size: 7.5px;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.cr-impl-team-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 8px;
}
.cr-impl-team-placeholder-bg { position: absolute; inset: 0; }

/* Timeline steps (right column) */
.cr-impl-steps { display: flex; flex-direction: column; }
.cr-impl-step { display: flex; gap: 24px; padding: 24px 0; position: relative; }
.cr-impl-step:not(:last-child) { border-bottom: 1px solid var(--color-silver); }
.cr-impl-step-num-col { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.cr-impl-step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--color-teal-glow); border: 1px solid rgba(26,123,110,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace; font-size: 12px; color: var(--color-teal); flex-shrink: 0;
}
.cr-impl-step-line { width: 1px; flex: 1; background: var(--color-silver); margin-top: 8px; min-height: 20px; }
.cr-impl-step:last-child .cr-impl-step-line { display: none; }
.cr-impl-step-tag {
  font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--color-teal); background: var(--color-teal-glow);
  border: 1px solid rgba(26,123,110,0.18); border-radius: var(--radius-pill);
  padding: 3px 10px; display: inline-block; margin-bottom: 8px;
}
.cr-impl-step-h { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; color: var(--color-ink); margin-bottom: 6px; line-height: 1.3; }
.cr-impl-step-p { font-size: 12.5px; font-weight: 300; color: var(--color-slate); line-height: 1.68; }
.cr-impl-duration { font-family: 'DM Mono', monospace; font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-mist); margin-top: 6px; display: block; }


/* ---- CR Planet additions (Section 3 — dark strip) ---- */
.cr-planet-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0.05;
  background-image: linear-gradient(rgba(255,255,255,0.5) 0.5px, transparent 0.5px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 0.5px, transparent 0.5px);
  background-size: 64px 64px;
}
.cr-planet-glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: radial-gradient(ellipse 55% 65% at 80% 35%, rgba(26,123,110,0.2) 0%, transparent 55%);
}
.cr-planet-inner { position: relative; z-index: 3; }

.cr-planet-wordmark { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--color-white); margin-bottom: 4px; }
.cr-planet-wordmark span { color: var(--color-teal-light); }
.cr-planet-by { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-mist); margin-bottom: 24px; display: block; }
.cr-planet-cert-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }

/* Software screenshot inside panel */
.cr-planet-screenshot {
  width: 100%; border-radius: var(--radius-sm); overflow: hidden;
  margin-bottom: 24px; aspect-ratio: 16/10; position: relative;
  border: 1px solid rgba(46,168,152,0.15);
}
.cr-planet-screenshot img {
  width: 100%; height: 100%; object-fit: cover; object-position: top left;
  display: block; filter: brightness(0.85) saturate(1.1);
}

/* DOSIsoft attribution note */
.cr-planet-dosisoft-note {
  margin-top: 40px; padding: 18px 22px;
  background: rgba(255,255,255,0.03); border-radius: var(--radius-md);
  border-left: 2px solid rgba(46,168,152,0.4);
  font-size: 14px; font-weight: 300; color: rgba(195,210,222,0.70); line-height: 1.75;
}


/* ---- CR Publication Reference (Section 6) ---- */
.cr-pub-strip { background: var(--color-ink-mid); position: relative; overflow: hidden; }
.cr-pub-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 15% 50%, rgba(26,123,110,0.16) 0%, transparent 55%);
}
.cr-pub-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,0.5) 0.5px, transparent 0.5px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 0.5px, transparent 0.5px);
  background-size: 64px 64px;
}
.cr-pub-inner { position: relative; z-index: 2; }
.cr-pub-layout { display: grid; grid-template-columns: 7fr 5fr; gap: 80px; align-items: center; }

.cr-pub-eyebrow { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-teal-light); display: block; margin-bottom: 16px; }
.cr-pub-quote { font-family: 'Syne', sans-serif; font-size: clamp(16px, 1.8vw, 22px); font-weight: 500; color: var(--color-white); line-height: 1.5; font-style: italic; margin-bottom: 24px; }
.cr-pub-citation { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.06em; color: rgba(255,255,255,0.50); line-height: 1.8; }
.cr-pub-citation strong { color: rgba(255,255,255,0.70); font-weight: 400; }

.cr-pub-metrics { display: flex; flex-direction: column; gap: 14px; }

/* Image banner card */
.cr-pub-banner {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/2; background: var(--color-ink);
}
.cr-pub-banner img {
  width: 100%; height: 100%; object-fit: cover;
}
.cr-pub-banner-overlay {
  display: none;
}
.cr-pub-banner-data { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.cr-pub-banner-row {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px;
}
.cr-pub-banner-stat { flex: 1; padding-right: 16px; }
.cr-pub-banner-stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.08); margin-right: 16px; }
.cr-pub-banner-val { font-family: 'DM Mono', monospace; font-size: 20px; font-weight: 300; color: var(--color-teal-light); line-height: 1; display: block; margin-bottom: 4px; }
.cr-pub-banner-lbl { font-family: 'DM Mono', monospace; font-size: 7.5px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.25); line-height: 1.5; }

/* Placeholder state for banner */
.cr-pub-banner-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0A1520 0%, #12253A 40%, #0F1E2E 100%);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.cr-pub-banner-placeholder-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(255,255,255,0.5) 0.5px, transparent 0.5px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 0.5px, transparent 0.5px);
  background-size: 32px 32px;
}


/* ---- CR FAQ Accordion (Section 7) ---- */
.cr-faq-strip { background: var(--color-warm-frost); }
.cr-faq-layout { display: grid; grid-template-columns: 4fr 8fr; gap: 80px; align-items: start; }

.cr-faq-intro-h { font-family: 'Syne', sans-serif; font-size: clamp(22px, 2.6vw, 32px); font-weight: 600; color: var(--color-ink); line-height: 1.25; letter-spacing: -0.02em; margin-bottom: 16px; }
.cr-faq-intro-p { font-size: 14px; font-weight: 300; color: var(--color-slate); line-height: 1.78; }

.cr-faq-list { display: flex; flex-direction: column; }
.cr-faq-item { border-bottom: 1px solid var(--color-silver); }
.cr-faq-item:first-child { border-top: 1px solid var(--color-silver); }

.cr-faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  text-align: left; gap: 20px;
}
.cr-faq-q-text { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; color: var(--color-ink); line-height: 1.4; }

.cr-faq-icon {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1px solid var(--color-silver);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: border-color 0.2s, background 0.2s;
}
.cr-faq-icon svg {
  width: 10px; height: 10px; stroke: var(--color-mist);
  fill: none; stroke-width: 2; stroke-linecap: round; transition: transform 0.3s;
}
.cr-faq-item.open .cr-faq-icon { border-color: var(--color-teal); background: var(--color-teal-glow); }
.cr-faq-item.open .cr-faq-icon svg { stroke: var(--color-teal); transform: rotate(45deg); }

.cr-faq-a {
  font-size: 15px; font-weight: 300; color: var(--color-slate);
  line-height: 1.78; padding: 0 0 22px; display: none; max-width: 560px;
}
.cr-faq-item.open .cr-faq-a { display: block; }


/* ---- CR New Components — Responsive ---- */
@media (max-width: 960px) {
  .cr-impl-layout { grid-template-columns: 1fr; gap: 40px; }
  .cr-pub-layout { grid-template-columns: 1fr; gap: 40px; }
  .cr-faq-layout { grid-template-columns: 1fr; gap: 36px; }
}


/* ============================================================
   ABOUT PAGE
   Prefix: .ab-
   Route:  /about/

   Reused from this file — not redefined here:
   .section, .section-dark, .section-light, .section-frost,
   .section-linen, .page-section, .eyebrow, .section-h,
   .geometric-grid-overlay, .animate-on-scroll, .stagger-children,
   .ct-nuclide-pill, .ct-step-tag, .cr-impl-step-line,
   .label-small, .body-small
   ============================================================ */


/* ============================================================
   45. AB Page Header
   ============================================================ */
.ab-page-header {
  background: var(--color-ink);
  position: relative; overflow: hidden;
  padding-top: calc(var(--navbar-height) + 64px);
  padding-bottom: 80px;
}
.ab-page-header-glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background:
    radial-gradient(ellipse 50% 60% at 70% 40%, rgba(26,123,110,0.18) 0%, transparent 58%),
    radial-gradient(ellipse 30% 40% at 5%  80%, rgba(26,123,110,0.07) 0%, transparent 50%);
}
.ab-page-header .page-section { position: relative; z-index: 3; }

.ab-page-header-inner {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px; align-items: end;
}
.ab-page-header-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--color-teal-light);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: abFadeUp 0.6s ease forwards 0.15s;
}
.ab-page-header-eyebrow::before {
  content: ''; width: 32px; height: 1px;
  background: var(--color-teal-light); flex-shrink: 0;
}
.ab-page-header-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 4vw, 50px); font-weight: 600;
  color: var(--color-white); line-height: 1.1; letter-spacing: -0.025em;
  max-width: 560px;
  opacity: 0; animation: abFadeUp 0.7s ease forwards 0.3s;
}
.ab-page-header-h1 .accent { color: var(--color-teal-light); }
.ab-page-header-right {
  opacity: 0; animation: abFadeUp 0.7s ease forwards 0.45s;
}
.ab-page-header-body {
  font-size: 15px; font-weight: 300;
  color: rgba(195,210,222,0.72); line-height: 1.82;
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,0.1);
}
@keyframes abFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   46. AB What We Are + Position
   ============================================================ */
.ab-what-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px; align-items: start;
}
.ab-body-p {
  font-size: 15px; font-weight: 300;
  color: var(--color-slate); line-height: 1.82; margin-bottom: 18px;
}
.ab-independence-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(26,123,110,0.07);
  border: 1px solid rgba(26,123,110,0.2);
  border-radius: var(--radius-md);
  padding: 12px 18px; margin-top: 8px;
}
.ab-independence-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-teal); flex-shrink: 0;
}
.ab-independence-badge-text {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-teal);
}
.ab-position-list { display: flex; flex-direction: column; }
.ab-position-item {
  display: flex; gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-silver);
}
.ab-position-item:first-child { border-top: 1px solid var(--color-silver); }
.ab-position-num {
  font-family: 'DM Mono', monospace;
  font-size: 12px; color: var(--color-teal-light);
  letter-spacing: 0.16em; flex-shrink: 0;
  width: 24px; padding-top: 2px;
}


/* ============================================================
   47. AB History & Timeline
   ============================================================ */
.ab-history-layout {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 80px; align-items: start;
}
.ab-nuclide-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 28px; }

.ab-timeline { display: flex; flex-direction: column; }
.ab-timeline-item {
  display: flex; gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ab-timeline-item:last-child { border-bottom: none; }
.ab-timeline-year-col { flex-shrink: 0; width: 52px; }
.ab-timeline-year {
  font-family: 'DM Mono', monospace;
  font-size: 12px; color: var(--color-teal-light);
  letter-spacing: 0.1em; display: block; padding-top: 3px;
}
.ab-timeline-dot-col {
  display: flex; flex-direction: column;
  align-items: center; flex-shrink: 0;
}
.ab-timeline-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-teal);
  border: 2px solid rgba(26,123,110,0.3);
  box-shadow: 0 0 0 3px rgba(26,123,110,0.1);
  flex-shrink: 0; margin-top: 5px;
}
.ab-timeline-dot--active {
  background: var(--color-teal-light);
  border-color: rgba(46,168,152,0.4);
  box-shadow: 0 0 0 5px rgba(46,168,152,0.12);
}
/* Vertical connector: use existing .cr-impl-step-line in HTML */
/* h4 / p inside .section-dark auto-invert via global rules */


/* ============================================================
   48. AB Team Tiles
   ============================================================ */
.ab-team-intro { max-width: 620px; margin-bottom: 52px; }

.ab-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ab-team-tile {
  background: var(--color-warm-frost);
  border: 1px solid var(--color-silver);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.22s, box-shadow 0.22s;
}
.ab-team-tile:hover {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 4px var(--color-teal-glow);
}
.ab-tile-photo {
  height: 220px;
  position: relative; overflow: hidden;
}
/* Per-person gradient fallbacks — visible when photo is absent or loading */
.ab-tp-1 { background: linear-gradient(160deg, #0A2820 0%, #1A5C4E 60%, #2A7865 100%); }
.ab-tp-2 { background: linear-gradient(160deg, #1A1208 0%, #4A3010 55%, #6B4520 100%); }
.ab-tp-3 { background: linear-gradient(160deg, #101828 0%, #2A3848 55%, #3A4A60 100%); }
.ab-tp-4 { background: linear-gradient(160deg, #180A24 0%, #3A2055 55%, #524070 100%); }
.ab-tp-5 { background: linear-gradient(160deg, #081820 0%, #183040 55%, #284858 100%); }
.ab-tp-6 { background: linear-gradient(160deg, #1A0A08 0%, #4A2015 55%, #643028 100%); }
.ab-tp-7 { background: linear-gradient(160deg, #0A1A08 0%, #1A4A18 55%, #286028 100%); }
.ab-tp-8 { background: linear-gradient(160deg, #1A1408 0%, #484018 55%, #605A28 100%); }
.ab-tile-photo-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
  display: block; z-index: 2;
}
.ab-tile-photo-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(to top, rgba(245,243,240,0.95) 0%, rgba(245,243,240,0.0) 45%, transparent 60%);
}
.ab-tile-body { padding: 14px 18px 20px; }
.ab-tile-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--color-ink); margin-bottom: 4px;
}
.ab-tile-role {
  font-family: 'DM Mono', monospace;
  font-size: 8.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--color-teal); display: block;
}


/* ============================================================
   49. AB Location & Partners
   ============================================================ */
.ab-location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.ab-location-card {
  background: var(--color-white);
  border: 1px solid var(--color-silver);
  border-radius: var(--radius-lg);
  padding: 32px; margin-bottom: 20px;
}
.ab-location-name {
  font-family: 'Syne', sans-serif;
  font-size: 18px; font-weight: 600;
  color: var(--color-ink); margin-bottom: 6px;
}
.ab-location-name span { color: var(--color-teal-light); }
.ab-location-address {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em;
  color: var(--color-mist); line-height: 1.9; margin-bottom: 20px;
}
.ab-location-contact-row { display: flex; gap: 14px; flex-wrap: wrap; }
.ab-location-contact-item {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-teal); text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  transition: color 0.2s;
}
.ab-location-contact-item:hover { color: var(--color-teal-deep); }

.ab-partners-list { display: flex; flex-direction: column; }
.ab-partner-row {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-silver);
}
.ab-partner-row:first-of-type { border-top: 1px solid var(--color-silver); }
.ab-partner-index {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--color-teal-light); flex-shrink: 0;
  width: 20px; padding-top: 2px;
}
.ab-partner-name {
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 600;
  color: var(--color-ink); margin-bottom: 3px;
}


/* ============================================================
   50. AB Responsive
   ============================================================ */
@media (max-width: 960px) {
  .ab-page-header-inner { grid-template-columns: 1fr; gap: 28px; }
  .ab-page-header-body  { padding-left: 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
  .ab-what-layout       { grid-template-columns: 1fr; gap: 40px; }
  .ab-history-layout    { grid-template-columns: 1fr; gap: 36px; }
  .ab-team-grid         { grid-template-columns: repeat(2, 1fr); }
  .ab-location-layout   { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 576px) {
  .ab-team-grid         { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}


/* ============================================================
   51. CONTACT PAGE
   ============================================================ */

/* --- Direct contact cards --- */
.co-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.co-contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 28px 28px;
}

.co-contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-warm-frost);
  color: var(--color-slate);
  margin-bottom: 6px;
  flex-shrink: 0;
}

.co-contact-card-icon--teal {
  background: rgba(26, 123, 110, 0.09);
  color: var(--color-teal);
}

.co-contact-card-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-mist);
}

.co-contact-card-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-ink);
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.2s;
}
.co-contact-card-value:hover { color: var(--color-teal); }

.co-contact-card-heading {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1.3;
  margin: 0;
}

.co-contact-card-note {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-mist);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.co-contact-card--booking { border-color: rgba(26, 123, 110, 0.22); }
.co-contact-card--booking:hover { border-color: var(--color-teal); }

.co-contact-card-action { margin-top: 8px; }


/* --- Form section layout --- */
.co-form-section-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.co-form-intro { padding-top: 8px; }

.co-form-trust-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.co-form-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(195, 210, 222, 0.82);
}

.co-form-trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-teal-light);
  flex-shrink: 0;
}


/* --- Form wrapper (card on dark bg) --- */
.co-form-wrapper {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px 36px 44px;
}


/* --- Inquiry type selector --- */
.co-inquiry-group {
  margin-bottom: 28px;
}

.co-inquiry-label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(195, 210, 222, 0.82);
  margin-bottom: 10px;
}

.co-inquiry-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.co-inquiry-option { cursor: pointer; }

.co-inquiry-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.co-inquiry-btn {
  display: block;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(195, 210, 222, 0.88);
  line-height: 1.3;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
}

.co-inquiry-btn-sub {
  display: block;
  font-weight: 300;
  font-size: 14px;
  color: rgba(195, 210, 222, 0.62);
  margin-top: 2px;
  transition: color 0.2s;
}

.co-inquiry-option:hover .co-inquiry-btn {
  border-color: rgba(46, 168, 152, 0.4);
  color: rgba(195, 210, 222, 0.9);
}

.co-inquiry-option input[type="radio"]:checked + .co-inquiry-btn {
  border-color: var(--color-teal-light);
  background: rgba(46, 168, 152, 0.1);
  color: var(--color-white);
}
.co-inquiry-option input[type="radio"]:checked + .co-inquiry-btn .co-inquiry-btn-sub {
  color: rgba(46, 168, 152, 0.75);
}
.co-inquiry-option input[type="radio"]:focus-visible + .co-inquiry-btn {
  outline: 2px solid var(--color-teal-light);
  outline-offset: 2px;
}


/* --- Form grid & fields --- */
.co-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-bottom: 16px;
}

.co-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.co-form-group--full {
  grid-column: 1 / -1;
  margin-bottom: 16px;
}

.co-form-group label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(195, 210, 222, 0.82);
}

.co-form-optional {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(195, 210, 222, 0.55);
  font-weight: 300;
}

.co-required {
  color: var(--color-teal-light);
}

.co-form-group input,
.co-form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--color-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  outline: none;
  -webkit-appearance: none;
}

.co-form-group input::placeholder,
.co-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.co-form-group input:focus,
.co-form-group textarea:focus {
  border-color: var(--color-teal-light);
  box-shadow: 0 0 0 3px rgba(46, 168, 152, 0.15);
}

.co-form-group textarea {
  resize: vertical;
  min-height: 120px;
}


/* --- Privacy consent --- */
.co-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
  margin-top: 4px;
}

.co-form-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px; height: 16px;
  min-width: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  margin-top: 2px;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.co-form-consent input[type="checkbox"]:checked {
  background: var(--color-teal);
  border-color: var(--color-teal);
}

.co-form-consent input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 5px; height: 9px;
  border: 2px solid #fff;
  border-left: none; border-top: none;
  transform: rotate(45deg);
}

.co-form-consent input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--color-teal-light);
  outline-offset: 2px;
}

.co-form-consent label {
  font-size: 14px;
  font-weight: 300;
  color: rgba(195, 210, 222, 0.78);
  line-height: 1.65;
  cursor: pointer;
}

.co-form-consent label a {
  color: rgba(46, 168, 152, 0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(46, 168, 152, 0.3);
}
.co-form-consent label a:hover { color: var(--color-teal-light); }


/* --- Submit button --- */
.co-form-submit {
  width: 100%;
  justify-content: center;
}


/* --- Success banner --- */
.co-form-success {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(26, 123, 110, 0.12);
  border: 1px solid rgba(46, 168, 152, 0.3);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 48px;
  color: rgba(195, 210, 222, 0.9);
}

.co-form-success strong {
  display: block;
  font-weight: 500;
  color: var(--color-teal-light);
  margin-bottom: 4px;
  font-size: 14px;
}

.co-form-success p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(195, 210, 222, 0.82);
  margin: 0;
}

.co-form-success-icon {
  color: var(--color-teal-light);
  flex-shrink: 0;
  margin-top: 2px;
}


/* --- Validation states --- */
.co-field-error {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #f07070;
  margin-top: 6px;
  line-height: 1.4;
}

.co-field-error::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23f07070' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='12'/%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.co-form-group input.is-invalid,
.co-form-group textarea.is-invalid {
  border-color: rgba(240, 80, 80, 0.8);
  box-shadow: 0 0 0 3px rgba(240, 80, 80, 0.18);
  background-color: rgba(240, 80, 80, 0.06);
}

.co-inquiry-options.is-invalid .co-inquiry-btn {
  border-color: rgba(240, 80, 80, 0.7);
  box-shadow: 0 0 0 2px rgba(240, 80, 80, 0.15);
}

.co-form-consent.is-invalid {
  border-left: 3px solid rgba(240, 80, 80, 0.7);
  padding-left: 10px;
}

.co-form-consent.is-invalid input[type="checkbox"] {
  border-color: rgba(240, 80, 80, 0.8);
  box-shadow: 0 0 0 3px rgba(240, 80, 80, 0.18);
}


/* --- Contact page responsive --- */
@media (max-width: 960px) {
  .co-contact-cards       { grid-template-columns: 1fr; max-width: 480px; }
  .co-form-section-layout { grid-template-columns: 1fr; gap: 40px; }
  .co-form-wrapper        { padding: 28px 24px 32px; }
}

@media (max-width: 576px) {
  .co-contact-cards   { max-width: none; }
  .co-form-grid       { grid-template-columns: 1fr; }
  .co-inquiry-options { grid-template-columns: 1fr; }
}



/* ============================================================
   UPCOMING EVENTS SECTION
   ============================================================ */

.ev-section { padding-top: 96px; padding-bottom: 100px; }

.ev-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
  max-width: 720px;
}
.ev-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  color: var(--color-ink);
  margin: 0;
}
.ev-intro {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-slate);
  line-height: 1.72;
  margin: 0;
}

/* Grid — single column, capped width */
.ev-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
}

/* Card — horizontal: image left, content right */
.ev-card {
  background: var(--color-white);
  border: 1px solid var(--color-silver);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
}
.ev-card:hover {
  border-color: var(--color-teal-light);
  box-shadow: 0 4px 24px rgba(26, 123, 110, 0.1);
  transform: translateY(-2px);
}

/* Thumbnail — fixed small column on the left */
.ev-thumb {
  width: 180px;
  min-width: 180px;
  overflow: hidden;
  background: var(--color-warm-frost);
  flex-shrink: 0;
}
.ev-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.ev-card:hover .ev-thumb img { transform: scale(1.04); }
.ev-thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-mist);
  height: 100%;
}

/* Body — fills remaining width; info left, button right */
.ev-card-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex: 1;
}

/* Left side of body */
.ev-card-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

/* Meta row */
.ev-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.ev-date, .ev-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--color-mist);
  white-space: nowrap;
}
.ev-badge {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 9999px;
}
.ev-badge--live {
  background: rgba(26, 123, 110, 0.1);
  color: var(--color-teal);
  border: 1px solid rgba(26, 123, 110, 0.25);
}

/* Name */
.ev-name {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1.3;
  margin: 0;
}

/* Description */
.ev-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-slate);
  line-height: 1.65;
  margin: 0;
}

/* Book button — right side, vertically centred */
.ev-book-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Responsive — stack on mobile */
@media (max-width: 600px) {
  .ev-card      { flex-direction: column; }
  .ev-thumb     { width: 100%; min-width: unset; height: 140px; }
  .ev-card-body { flex-direction: column; align-items: flex-start; gap: 14px; }
}


/* ============================================================
   PRESS RELEASES — INDEX PAGE
   ============================================================ */

.pr-index-section {
  padding-top: 96px;
  padding-bottom: 100px;
}

.pr-index-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 52px;
  max-width: 720px;
}

.pr-index-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 600;
  color: var(--color-ink);
  margin: 0;
}

.pr-index-intro {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-slate);
  line-height: 1.72;
  margin: 0;
}

/* Card grid */
.pr-card-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 820px;
}

.pr-card {
  display: flex;
  gap: 0;
  background: var(--color-white);
  border: 1px solid rgba(26,31,46,.09);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
  text-decoration: none;
  color: inherit;
}

.pr-card:hover {
  box-shadow: 0 6px 28px rgba(26,31,46,.10);
  border-color: rgba(26,123,110,.25);
  text-decoration: none;
  color: inherit;
}

.pr-card-accent {
  width: 5px;
  flex-shrink: 0;
  background: var(--color-teal);
  border-radius: 0;
}

.pr-card-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pr-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 300;
  color: var(--color-slate);
  letter-spacing: .03em;
}

.pr-card-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-slate);
  opacity: .5;
  flex-shrink: 0;
}

.pr-card-tag {
  background: rgba(26,123,110,.08);
  color: var(--color-teal);
  font-size: 10px;
  font-family: 'DM Mono', monospace;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.pr-card-headline {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1.35;
  margin: 0;
}

.pr-card-excerpt {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-slate);
  line-height: 1.65;
  margin: 0;
}

.pr-card-read {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-teal);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pr-card-read svg {
  transition: transform .2s;
}

.pr-card:hover .pr-card-read svg {
  transform: translateX(3px);
}


/* ============================================================
   PRESS RELEASES — ARTICLE PAGE
   ============================================================ */

/* Page header — dark band */
.pr-page-header {
  position: relative;
  background: var(--color-ink);
  padding: 80px 0 64px;
  overflow: hidden;
}

.pr-page-header .geometric-grid-overlay {
  opacity: .07;
}

.pr-header-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.pr-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-teal-light);
  margin-bottom: 20px;
}

.pr-header-tag a {
  color: var(--color-teal-light);
  text-decoration: none;
  opacity: .8;
  transition: opacity .2s;
}

.pr-header-tag a:hover { opacity: 1; }

.pr-header-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 24px;
}

.pr-header-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,.45);
  letter-spacing: .02em;
}

.pr-header-meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  flex-shrink: 0;
}

/* Article layout */
.pr-article-section {
  padding-top: 64px;
  padding-bottom: 100px;
}

.pr-article-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 60px;
  align-items: start;
  max-width: 1020px;
}

.pr-article-body {
  min-width: 0;
}

/* Body typography */
.pr-lede {
  font-size: 17px;
  font-weight: 300;
  color: var(--color-ink);
  line-height: 1.75;
  margin: 0 0 28px;
}

.pr-body p {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-slate);
  line-height: 1.8;
  margin: 0 0 20px;
}

.pr-body p:last-child { margin-bottom: 0; }

/* Blockquote */
.pr-quote {
  border-left: 3px solid var(--color-teal);
  margin: 36px 0;
  padding: 4px 0 4px 28px;
}

.pr-quote p {
  font-size: 15px !important;
  font-weight: 400 !important;
  color: var(--color-ink) !important;
  line-height: 1.72 !important;
  font-style: italic;
  margin: 0 0 12px !important;
}

.pr-quote-author {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  color: var(--color-teal);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Divider between body and about sections */
.pr-section-divider {
  border: none;
  border-top: 1px solid rgba(26,31,46,.1);
  margin: 52px 0;
}

/* About blocks */
.pr-about-blocks {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pr-about-block {
  padding: 24px 28px;
  background: rgba(26,31,46,.03);
  border-radius: 8px;
  border: 1px solid rgba(26,31,46,.07);
}

.pr-about-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 6px;
}

.pr-about-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 10px;
}

.pr-about-block p {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-slate);
  line-height: 1.72;
  margin: 0;
}

.pr-about-block a {
  color: var(--color-teal);
  text-decoration: none;
}

.pr-about-block a:hover { text-decoration: underline; }

/* Sidebar */
.pr-article-sidebar {
  position: sticky;
  top: 100px;
}

.pr-sidebar-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-slate);
  text-decoration: none;
  transition: color .2s;
  margin-bottom: 28px;
}

.pr-sidebar-back:hover { color: var(--color-teal); }

.pr-sidebar-box {
  border: 1px solid rgba(26,31,46,.09);
  border-radius: 8px;
  padding: 22px 22px;
}

.pr-sidebar-box-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-slate);
  margin-bottom: 14px;
}

.pr-sidebar-box p {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-slate);
  line-height: 1.65;
  margin: 0 0 14px;
}

.pr-sidebar-box p:last-child { margin: 0; }

/* Responsive */
@media (max-width: 860px) {
  .pr-article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pr-article-sidebar {
    position: static;
    order: -1;
  }
  .pr-sidebar-back { display: inline-flex; }
  .pr-sidebar-box { display: none; }
}

@media (max-width: 600px) {
  .pr-page-header { padding: 60px 0 48px; }
  .pr-card-body { padding: 22px 20px; }
}
