/* ==========================================================================
   NuCIT Consulting Corp. — Design System
   Deep clinical navy + imaging-tech cyan. Precise, technical, credible.
   ========================================================================== */

:root {
  /* Color */
  --navy-950: #060f24;
  --navy-900: #0a1834;
  --navy-800: #0f2246;
  --navy-700: #163257;
  --navy-600: #1f4270;
  --cyan-500: #14b8c9;
  --cyan-400: #3ecfdd;
  --cyan-300: #7fe0ea;
  --cyan-050: #eafcfd;
  --white: #ffffff;
  --gray-050: #f5f7fa;
  --gray-100: #eceff3;
  --gray-200: #dde2e9;
  --gray-400: #97a2b3;
  --gray-600: #5c6779;
  --gray-800: #2a3242;
  --ink: #0d1420;

  /* Type */
  --font-head: "Manrope", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  /* Spacing / layout */
  --maxw: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-md: 0 12px 32px -12px rgba(6, 15, 36, 0.25);
  --shadow-lg: 0 24px 64px -20px rgba(6, 15, 36, 0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

section { position: relative; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 4.2vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }

p { color: var(--gray-600); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-500);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--cyan-500);
  display: inline-block;
}

.lede {
  font-size: 1.15rem;
  color: var(--gray-600);
  max-width: 640px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--cyan-500);
  color: var(--navy-950);
}
.btn-primary:hover { background: var(--cyan-400); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--cyan-400); color: var(--cyan-300); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--navy-700);
  color: var(--navy-900);
}
.btn-outline-dark:hover { border-color: var(--cyan-500); color: var(--cyan-500); }

.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 15, 36, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
}
.logo-img {
  height: 34px;
  width: auto;
  max-width: none;
  flex: 0 0 auto;
  display: block;
  mix-blend-mode: screen;
}
.footer-about .logo-img { height: 30px; }
.logo .mark {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--cyan-400), var(--navy-600));
  position: relative;
  flex-shrink: 0;
}
.logo .mark::before, .logo .mark::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.85);
}
.logo .mark::before { top: 9px; left: 6px; right: 6px; height: 2px; }
.logo .mark::after { top: 15px; left: 6px; right: 12px; height: 2px; }
.logo small {
  display: block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--cyan-300);
  text-transform: uppercase;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.nav-main > li { position: relative; list-style: none; flex-shrink: 0; }

.nav-main a.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 13px;
  font-size: 0.89rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-main a.nav-link:hover,
.nav-main li.active > a.nav-link { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-main li.active > a.nav-link { color: var(--cyan-300); }
.nav-main ul { list-style: none; }

.nav-flex {
  display: flex;
  align-items: center;
  gap: 28px;
}

.caret { font-size: 0.6rem; opacity: 0.6; transform: translateY(1px); }

.mega {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 460px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.18s ease;
}
.nav-main li:hover .mega { opacity: 1; visibility: visible; transform: translateY(0); }

.mega a {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  align-items: flex-start;
}
.mega a:hover { background: var(--gray-050); }
.mega .mega-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 8px;
  background: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  color: var(--cyan-400);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.72rem;
}
.mega strong { display: block; color: var(--navy-950); font-size: 0.95rem; margin-bottom: 3px; }
.mega span { font-size: 0.82rem; color: var(--gray-600); line-height: 1.4; }

.header-cta { display: flex; align-items: center; gap: 18px; }

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(20,184,201,0.28), transparent 60%),
    linear-gradient(100deg, rgba(6,15,36,0.97) 0%, rgba(6,15,36,0.9) 32%, rgba(10,24,52,0.55) 55%, rgba(15,34,70,0.22) 100%),
    url('../images/hero-bg.png');
  background-size: auto, auto, cover;
  background-position: center, center, center 35%;
  color: var(--white);
  padding: 96px 0 110px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.7) 25%, transparent 85%);
  pointer-events: none;
}

.hero .wrap { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero .lede { color: rgba(255,255,255,0.72); font-size: 1.18rem; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stats .stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--cyan-300);
}
.hero-stats .stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.scan-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
  position: relative;
}
.scan-panel .panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--cyan-300);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.dot-row { display: flex; gap: 6px; }
.dot-row span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.dot-row span:first-child { background: var(--cyan-400); }

.scan-lines { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.scan-lines .bar { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.08); overflow: hidden; }
.scan-lines .bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--cyan-500), var(--cyan-300)); border-radius: 4px; }

.panel-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.panel-rows div {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 14px;
}
.panel-rows div b { display: block; font-size: 1.15rem; color: var(--white); font-family: var(--font-head); }
.panel-rows div span { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.bg-light { background: var(--gray-050); }
.bg-navy { background: var(--navy-950); color: var(--white); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.65); }

.section-head { max-width: 700px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Pillars / four business lines ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--cyan-400); }
.pillar-card .num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan-500);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  display: block;
}
.pillar-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.pillar-card p { font-size: 0.92rem; margin-bottom: 18px; }
.pillar-card .tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.pillar-card a.card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-900);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pillar-card a.card-link:hover { color: var(--cyan-500); }

/* ---------- Two-column feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }

.split-media {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  min-height: 380px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(20,184,201,0.35), transparent 45%),
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: auto, 40px 40px, 40px 40px;
}

.split-media-photo { padding: 0; }
.split-media-photo img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: 68% center;
  display: block;
  position: relative;
  z-index: 1;
}
.photo-stat-chip {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(6,15,36,0.82);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 10px 16px;
  font-family: var(--font-mono);
}
.photo-stat-chip span { font-size: 0.68rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; }
.photo-stat-chip b { color: var(--cyan-300); font-size: 1.05rem; font-family: var(--font-head); }

.device-frame {
  position: relative;
  z-index: 2;
  width: 82%;
  background: var(--navy-950);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 18px;
  box-shadow: var(--shadow-lg);
}
.device-frame .device-bar { display: flex; gap: 5px; margin-bottom: 14px; }
.device-frame .device-bar span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.device-frame .device-body { display: grid; gap: 8px; }
.device-frame .device-body .row { display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.05); border-radius: 6px; padding: 10px 12px; font-family: var(--font-mono); font-size: 0.7rem; color: rgba(255,255,255,0.75); }
.device-frame .device-body .row b { color: var(--cyan-300); font-weight: 600; }
.pill-status { font-size: 0.62rem; padding: 3px 8px; border-radius: 20px; background: rgba(20,184,201,0.18); color: var(--cyan-300); font-family: var(--font-mono); }

.checklist { list-style: none; display: grid; gap: 14px; margin: 26px 0 30px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.96rem; color: var(--gray-800); }
.checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 3px;
  border-radius: 5px;
  background: var(--cyan-050);
  border: 1px solid var(--cyan-400);
  position: relative;
}
.checklist li::after {
  content: "";
  position: absolute;
}

/* ---------- Workflow strip ---------- */
.workflow {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.workflow-step {
  flex: 1;
  min-width: 150px;
  padding: 26px 22px;
  background: var(--white);
  border-right: 1px solid var(--gray-200);
  position: relative;
}
.workflow-step:last-child { border-right: none; }
.workflow-step .step-index {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--cyan-500);
  margin-bottom: 10px;
  display: block;
}
.workflow-step h4 { margin-bottom: 8px; font-size: 0.98rem; }
.workflow-step p { font-size: 0.83rem; }
.workflow-step:nth-child(even) { background: var(--gray-050); }

/* ---------- Capability grid ---------- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cap-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-900);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cap-item::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 1px;
  background: var(--cyan-500);
  flex-shrink: 0;
}

/* ---------- Logic bar / key message ---------- */
.statement {
  text-align: center;
  padding: 88px 0;
  background: var(--navy-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.statement::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 300px at 50% 0%, rgba(20,184,201,0.22), transparent 70%);
}
.statement .wrap { position: relative; z-index: 2; }
.statement p.big {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  color: var(--white);
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.35;
}
.statement .eyebrow { justify-content: center; }

.statement.statement-home {
  background:
    linear-gradient(rgba(6,15,36,0.86), rgba(6,15,36,0.82)),
    url('../images/statement-home.png');
  background-size: cover;
  background-position: center 40%;
}

.statement.statement-photo {
  background:
    linear-gradient(rgba(6,15,36,0.86), rgba(6,15,36,0.82)),
    var(--statement-photo);
  background-size: cover;
  background-position: center 45%;
}
.statement-consulting { --statement-photo: url('../images/statement-consulting.png'); }
.statement-cti { --statement-photo: url('../images/statement-clinical-trial-imaging.png'); }
.statement-about { --statement-photo: url('../images/statement-about.png'); }

/* ---------- Logos / partner strip ---------- */
.partner-strip {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 28px 0;
}
.partner-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gray-600);
  border: 1px dashed var(--gray-200);
  padding: 10px 16px;
  border-radius: 6px;
}

/* ---------- Testimonial / quote ---------- */
.quote-card {
  background: var(--white);
  border-left: 3px solid var(--cyan-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 34px 38px;
  box-shadow: var(--shadow-md);
}
.quote-card p { font-size: 1.15rem; color: var(--navy-900); font-style: italic; margin-bottom: 18px; }
.quote-card .who { font-size: 0.85rem; color: var(--gray-600); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,184,201,0.35), transparent 70%);
}
.cta-band h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,0.7); margin: 0; }
.cta-band .cta-actions { display: flex; gap: 14px; position: relative; z-index: 2; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--navy-900); }
.field input, .field select, .field textarea {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(20,184,201,0.15);
}
.field textarea { resize: vertical; min-height: 120px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.6);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer-grid ul { list-style: none; display: grid; gap: 11px; }
.footer-grid a { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer-grid a:hover { color: var(--cyan-300); }
.footer-about p { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin: 16px 0 20px; max-width: 320px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--cyan-300); }

/* ---------- Breadcrumb / page hero (sub pages) ---------- */
.page-hero {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--white);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, black 30%, transparent 90%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.breadcrumb { font-family: var(--font-mono); font-size: 0.75rem; color: var(--gray-400); margin-bottom: 20px; letter-spacing: 0.03em; }
.breadcrumb a:hover { color: var(--cyan-300); }
.page-hero h1 { color: var(--white); max-width: 780px; }
.page-hero .lede { color: rgba(255,255,255,0.72); }

.page-hero.page-hero-photo {
  background:
    radial-gradient(ellipse 700px 400px at 90% -10%, rgba(20,184,201,0.22), transparent 60%),
    linear-gradient(100deg, rgba(6,15,36,0.95) 0%, rgba(6,15,36,0.88) 30%, rgba(10,24,52,0.55) 55%, rgba(15,34,70,0.25) 100%),
    var(--hero-photo);
  background-size: auto, auto, cover;
  background-position: center, center, center 40%;
}
.page-hero-radiopharma { --hero-photo: url('../images/hero-radiopharma.png'); }
.page-hero-consulting { --hero-photo: url('../images/hero-consulting.png'); }
.page-hero-cti { --hero-photo: url('../images/hero-clinical-trial-imaging.png'); }
.page-hero-about { --hero-photo: url('../images/hero-about.png'); }
.page-hero-contact { --hero-photo: url('../images/hero-contact.png'); }
.page-hero-purview { --hero-photo: url('../images/hero-purview-image.png'); }

.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.tag-pill {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 7px 13px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
}

/* ---------- Product screenshot placeholder ---------- */
.screenshot-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
}
.screenshot-placeholder {
  aspect-ratio: 16/9.5;
  background: linear-gradient(150deg, var(--navy-900), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-align: center;
  padding: 20px;
}
.screenshot-placeholder svg { width: 46px; height: 46px; opacity: 0.5; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0 !important; }
.two-col-text { columns: 2; column-gap: 48px; }
.center-text { text-align: center; }
.small-caps { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; font-weight: 600; color: var(--gray-400); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-main, .header-cta .btn-outline, .header-cta .btn-primary { display: none; }
  .header-cta .rwm-login-button { display: inline-flex; padding: 9px 12px; }
  .nav-toggle { display: block; background: none; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; padding: 4px; flex-shrink: 0; }
  .header-cta { gap: 10px; }
  .logo small { display: none; }
  .logo { font-size: 1.02rem; gap: 8px; }
  .logo .mark { width: 28px; height: 28px; }
  .site-header .wrap { height: 64px; }
  .nav-main.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--navy-950);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 12px 20px 24px;
    gap: 2px;
  }
  .nav-main.mobile-open .mega {
    position: static; opacity: 1; visibility: visible; transform: none;
    width: 100%; box-shadow: none; margin-top: 4px;
  }
  .header-cta.mobile-open .btn-outline { display: none; }
  .hero { padding: 64px 0 72px; }
  .pillars, .cap-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .two-col-text { columns: 1; }
  .workflow { flex-direction: column; }
  .workflow-step { border-right: none; border-bottom: 1px solid var(--gray-200); }
}

@media (max-width: 540px) {
  .wrap { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
.mega-icon img { width: 100%; height: 100%; object-fit: cover; }
.product-logo-img { height: 48px; width: auto; margin-bottom: 22px; mix-blend-mode: screen; }

.product-shot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.shot-caption { margin-top: 14px; font-size: 0.85rem; color: var(--gray-600); text-align: center; }
@media (max-width: 860px) { .product-shot-grid { grid-template-columns: 1fr; } }


/* Contact form anti-spam honeypot */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
