/* =============================================================
   Tulyp Medical — Website Styles
   Converted from Figma (desktop 1160 / mobile 360 / privacy)
   -------------------------------------------------------------
   Structure:
   1.  Design tokens (CSS custom properties)
   2.  Reset & base
   3.  Typography helpers
   4.  Layout primitives (container, section)
   5.  Buttons, links, form controls
   6.  Header / navigation (desktop + mobile drawer)
   7.  Page sections (hero, mission, opportunity, technology,
       leadership, publications, contact, disclaimer)
   8.  Footer
   9.  Privacy page
   10. Utilities, media placeholders, back-to-top
   11. Responsive breakpoints (tablet ≤980px, mobile ≤640px)
   12. Reduced-motion & focus accessibility
   13. CookieYes consent banner & preference center
   ============================================================= */

/* ----------------------------------------------------------------
   1. DESIGN TOKENS
   ---------------------------------------------------------------- */
:root {
  /* Brand palette (pulled from Figma variables) */
  --red: #c81d25;
  --red-dark: #a81720;
  --dark-gray: #575757;
  --light-gray: #f7f7f7;
  --medium-gray: #e6e4e4;
  --teal: #0a7e8b;
  --teal-dark: #086571;
  --gray: #cacaca;
  --white: #ffffff;
  --dark-blue: #0b3954;
  --ink: #141414;
  --muted: #a3a3a3;

  /* Typography */
  --font-sans: "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  /* Fluid type scale (mobile min → desktop max) */
  --fs-display: clamp(2.25rem, 1.4rem + 3.6vw, 3.75rem); /* 36 → 60 */
  --fs-h2: clamp(2rem, 1rem + 4.4vw, 3.75rem);           /* 32 → 60 (hits 60 by ~1000px) */
  --fs-eyebrow: clamp(1.05rem, 0.85rem + 0.9vw, 1.5rem); /* 17 → 24 */
  --fs-lead: clamp(1.25rem, 1rem + 1vw, 1.75rem);        /* 20 → 28 */
  --fs-body: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);     /* 16 → 18 */
  --fs-sm: 0.875rem;                                     /* 14 */
  --fs-card-title: 1.25rem;                              /* 20 */

  /* Spacing */
  --space-section: clamp(2.5rem, 1.5rem + 4vw, 3.75rem); /* section padding-block */
  --gap: 2.5rem;          /* 40px primary stack gap */
  --radius: 10px;
  --radius-sm: 6px;

  /* Layout */
  --content-max: 840px;   /* inner content width (1160 − 2×160 gutter) */
  --nav-max: 1160px;
  --header-h: 69px;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(11, 57, 84, 0.08);
  --shadow-md: 0 10px 30px rgba(11, 57, 84, 0.12);
  --shadow-stat: 6px 6px 8px rgba(0, 0, 0, 0.25);
  --transition: 200ms ease;
}

/* ----------------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* offset anchor targets so the sticky header doesn't cover them */
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
  /* crisp typography */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Lock scroll when the mobile menu is open */
body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--red);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
p,
ul,
figure {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

button {
  font: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ----------------------------------------------------------------
   3. TYPOGRAPHY HELPERS
   ---------------------------------------------------------------- */
.eyebrow {
  font-weight: 800;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.125em; /* ≈3px at 24px, matching Figma */
  text-transform: uppercase;
  line-height: 1.2;
}

.section__title {
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.2;
  color: var(--red);
}

.section__copy{
  font-weight: 600;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.3;
  font-weight: 400;
}

/* ----------------------------------------------------------------
   4. LAYOUT PRIMITIVES
   ---------------------------------------------------------------- */
.container {
  width: min(var(--content-max), 100% - 40px);
  margin-inline: auto;
}

/* full-bleed colored section, content centered inside */
.section {
  padding-block: var(--space-section);
}

.section__inner {
  width: min(var(--content-max), 100% - 40px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 200;
}
.skip-link:focus {
  left: 0;
}

/* ----------------------------------------------------------------
   5. BUTTONS, LINKS, FORM CONTROLS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: var(--fs-sm);
  line-height: 1.25rem;
  padding: 10px 20px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--red);
  color: var(--white);
  transition: background var(--transition), transform var(--transition),
    box-shadow var(--transition);
}
.btn:hover {
  background: var(--red-dark);
}
.btn:active {
  transform: translateY(1px);
}
.btn--lg {
  font-size: 1rem;
  padding: 13px 26px;
}

.link-underline {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition), opacity var(--transition);
}
.link-underline:hover {
  color: var(--red-dark);
  opacity: 0.85;
}

/* ----------------------------------------------------------------
   6. HEADER / NAVIGATION
   ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  /* border-bottom: 1px solid var(--medium-gray); */
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
  width: min(var(--nav-max), 100%);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  padding-block: 8px;
  background: none;
  border: 0;
}

.site-header .nav__logo{
  margin-right: auto;
}

.brand-logo {
  height: 39px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: stretch;
  height: var(--header-h);
}

.nav__link {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 18px;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--dark-gray);
  border-bottom: 1px solid var(--gray);
  transition: color var(--transition), border-color var(--transition),
    background var(--transition);
}
.nav__link:hover {
  color: var(--red);
  border-bottom-color: var(--red);
  padding-top: 5px;
  border-bottom: 5px solid var(--red);
}
.nav__link.is-active {
  color: var(--red);
  padding-top: 5px;
  border-bottom: 5px solid var(--red);
}

/* Hamburger button (hidden on desktop) */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
}
.nav__toggle .bar {
  display: block;
  width: 24px;
  height: 4px;
  border-radius: 2px;
  background: var(--red);
  transform-origin: center;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle.is-open{
  transform: translateX(-15px);
}

/* hamburger morphs into an X while the menu is open */
.nav__toggle.is-open .bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.nav__toggle.is-open .bar:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}

/* ----- Mobile nav panel: drops in below the sticky header ----- */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99; /* sits below the header (z 100) so the toggle stays clickable */
  background: var(--white);
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: transform 250ms ease, opacity 250ms ease, visibility 250ms ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--dark-gray);
  border-bottom: 1px solid var(--muted);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav__link:hover,
.mobile-nav__link:focus-visible {
  color: var(--red);
  background: var(--light-gray);
}
.mobile-nav__link.is-active {
  color: var(--red);
  border-bottom: 4px solid var(--red);
}

/* ----------------------------------------------------------------
   7. PAGE SECTIONS
   ---------------------------------------------------------------- */

/* ----- HERO ----- */
.hero {
  position: relative;
  background: var(--red);
  color: var(--white);
  overflow: hidden;
  padding-block: var(--space-section);
  animation: heroFadeIn 650ms ease-out both; /* fade in on page load */
}
.hero__inner {
  position: relative;
  z-index: 2;
  align-items: flex-start;
}
.hero__header {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.hero__headline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero__eyebrow {
  color: rgba(255, 255, 255, 0.6);
}
.hero__title {
  font-size: var(--fs-display);
  font-weight: 800;
  line-height: 1.1;
}
.hero__points {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  color: var(--light-gray);
}
.hero__points li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__points li::before {
  content: "";
  flex: none;
  width: 19px;
  height: 19px;
  background: url("../images/Tulyp%20Website%20Bullet%20Icon.svg") center / contain
    no-repeat;
}
/* hero swoosh image (people / limb photo in the brand swoosh shape) */
.hero__swoosh {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(67%, 900px);
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.page-template-template-investor .hero__swoosh {
  width: min(58%, 760px);
}

/* The image always fills the hero height (no odd top/bottom gaps). As the
   viewport narrows past ~1130px it can no longer fit at full width, so it
   keeps its height and is simply cropped on the right — the curve + feet on
   the left stay anchored while the excess slides off-screen. */
.hero__swoosh img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}

/* ----- On-load intro animations (hero fades in, mission fades up) ----- */
@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes introFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* mission + opportunity content rise in just after the hero — a gentle,
   sequenced intro down the top of the page */
.mission .section__title {
  animation: introFadeUp 650ms ease-out 150ms both;
}
.mission__body {
  animation: introFadeUp 650ms ease-out 300ms both;
}
.opportunity .section__inner {
  animation: introFadeUp 650ms ease-out 450ms both;
}

/* ----- MISSION ----- */
.mission {
  background: var(--medium-gray);
}
.mission__body {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.mission__icon {
  flex: none;
  width: 74px;
  height: 74px;
  color: var(--red);
}
.mission__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mission__text {
  font-size: var(--fs-lead);
  line-height: 1.3;
  color: #000;
}

/* ----- OPPORTUNITY ----- */
.opportunity {
  background: var(--light-gray);
}
.panel-teal {
  background: var(--teal);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.panel-teal__illustration {
  width: 100%;
  max-width: 406px;
  margin-inline: auto;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}
.info-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-card__icon {
  flex: none;
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
}
.info-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info-card__title {
  font-weight: 800;
  font-size: var(--fs-card-title);
  line-height: 1.2;
  color: var(--red);
}
.info-card__body {
  font-weight: 500;
  line-height: 1.3;
  color: #000;
}

.divider {
  height: 3px;
  width: 100%;
  background: var(--gray);
  border: 0;
}

/* Stats card (Deadly & costly) */
.stats-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  gap: 30px;
  align-items: stretch;
  box-shadow: var(--shadow-sm);
}
.stats-card__col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.stats-card__divider {
  width: 1px;
  background: var(--gray);
  align-self: stretch;
}
.infographic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.stat-circle {
  display: grid;
  place-items: center;
  width: 114px;
  height: 114px;
  border-radius: 50%;
  background: var(--teal); /* small left-column stats are teal */
  color: var(--white);
  font-weight: 900;
  font-size: 2.875rem;
  line-height: 1;
  box-shadow: var(--shadow-stat);
}
.stat-circle--sm {
  font-size: 1.375rem;
}
.stat-circle--xl {
  width: 252px;
  height: 252px;
  font-size: 3.25rem;
  background: var(--red); /* the headline 300K+ stat is red */
  box-shadow: var(--shadow-stat);
}
.infographic__label {
  line-height: 1.3;
  font-weight: 500;
  max-width: 440px;
}
.infographic__label strong {
  display: block;
  font-weight: 800;
  color: var(--teal);
  font-size: 1.5rem;
}
.stats-card__col--right .infographic__label strong {
  color: var(--red);
  font-size: 2.25rem;
  line-height: 1.2;
}
.infographic__note {
  font-style: italic;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.4;
}

/* Cases Per Year — hero stat on top, divider, 2×2 grid of teal stats */
.stats-card--cases {
  flex-direction: column;
  align-items: stretch;
  gap: 30px;
}
.stats-card__hero {
  display: flex;
  justify-content: center;
}
.stats-card__hero .infographic__label strong {
  color: var(--red);
  font-size: 2.25rem;
  line-height: 1.2;
}
.stats-card__rule {
  width: 100%;
  height: 1px;
  margin: 0;
  border: 0;
  background: var(--gray);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.stats-grid .infographic {
  gap: 8px;
}
.stats-grid .infographic__label {
  font-size: 1.125rem;
}
.footnote {
  font-size: var(--fs-body);
  line-height: 1.3;
}

.footnote a{
  color: #000000;
  text-decoration: underline;
  font-weight: 500
}

/* ----- OPPORTUNITY: added blocks (Quote / Impella / Prevalence) ----- */

/* Quote */
.quote-block {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  background: var(--dark-gray);
  color: var(--white);
  border-radius: var(--radius);
  padding: 30px;
}
.quote-block__mark {
  flex: none;
  font-weight: 900;
  font-size: 8rem;
  line-height: 0.5;
  /* the glyph hangs from the top of its line box; pull it onto the cap line */
  margin-top: 0.2em;
  color: var(--white);
  filter: drop-shadow(6px 6px 8px rgba(0, 0, 0, 0.25));
}
.quote-block__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.quote-block__text {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.5rem, 1rem + 2vw, 2.25rem);
  line-height: 1.2;
}
.quote-block__cite {
  font-weight: 500;
  font-size: var(--fs-body);
  line-height: 1.3;
}

/* Impella cases — reuses .stats-card; big red circle + label left, study text right */
.stats-card--impella {
  align-items: center;
}
.stats-card--impella .stats-card__col--text {
  justify-content: center;
}
.impella__label {
  margin-top: 4px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 2.25rem;
  line-height: 1.2;
  color: var(--red);
  text-align: center;
}
.impella__text {
  line-height: 1.3;
}
.impella__text--lead {
  font-weight: 700;
  font-size: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  color: var(--teal);
}
.impella__text--secondary {
  font-weight: 500;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  color: var(--dark-blue);
}

/* Prevalence of ALI — image-based chart in a white card + legend */
.prevalence {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.prevalence__card {
  background: var(--white);
  border-radius: var(--radius);
  /*padding: 30px;*/
  box-shadow: var(--shadow-sm);
}
.prevalence__picture {
  display: block;
  width: 100%;
}
.prevalence__img {
  display: block;
  width: 100%;
  height: auto;
}

/* ----- TECHNOLOGY ----- */
.technology {
  background: var(--dark-gray);
  color: var(--white);
}
.technology .section__title {
  color: var(--white);
}
.device-inset {
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.device-inset .media {
  flex: 1 1 auto;
}
.tech__body {
  font-weight: 500;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tech__body strong {
  font-weight: 700;
}

/* First-in-Human Results card — red bullet list + banner photo that
   bleeds to the card edge and blends into the white via a feathered PNG */
.fih-card {
  position: relative;
  width: 100%;
  min-height: 200px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  overflow: hidden;
}
.fih-card__list {
  position: relative;
  z-index: 2;
  width: 50%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--red);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
}
.fih-card__list li {
  position: relative;
  padding-left: 1.6em;
}
.fih-card__list li::before {
  content: "\29BF"; /* ⦿ */
  position: absolute;
  left: 0;
  top: 0;
}
.fih-card__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  pointer-events: none;
}
.fih-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* soft fade blending the photo's left edge into the white card */
.fih-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0) 42%);
}
.gif-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
/* the graph export has transparent margins, so give it the light panel
   it sits on in the design */
.gif-block .media--ratio-gif:not(.is-failed) {
  background: var(--light-gray);
  padding: 18px;
}
.gif-block .media--ratio-gif img {
  position: static;
  width: 100%;
  height: auto;
  display: block;
}
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.legend__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.legend__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex: none;
}
.legend__dot--1 { background: var(--red); }
.legend__dot--2 { background: var(--teal); }
.legend__dot--3 { background: #6cc4cf; }

/* ----- LEADERSHIP ----- */
.leadership {
  background: var(--white);
}
.leadership__intro {
  font-weight: 700;
  font-size: var(--fs-eyebrow);
  line-height: 1.2;
  color: var(--dark-blue);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.team-card__photo {
  aspect-ratio: 213 / 170;
  border-radius: var(--radius-sm);
}
.team-card__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}
.team-card__name {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--red);
}
.team-card__role {
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: 700;
  margin-top: -4px;
  color: #000;
}
.team-card__exp {
  display: none;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #000;
}
.team-card__linkedin {
  display: inline-grid;
  place-items: center;
  width: 29px;
  height: 29px;
  color: var(--teal);
  transition: color var(--transition), transform var(--transition);
}
.team-card__linkedin:hover {
  color: var(--teal-dark);
  transform: scale(1.1);
}

/* ----- PUBLICATIONS ----- */
.publications {
  background: var(--dark-blue);
  color: var(--white);
}
.publications .section__title {
  color: var(--white);
}
.pub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.pub-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--ink);
}
.pub-card__title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--teal);
}
.pub-card__authors {
  font-weight: 500;
  font-size: var(--fs-sm);
  line-height: 1.3;
  flex: 1 1 auto;
}
.pub-card .btn {
  align-self: flex-start;
}

/* ----- CONTACT ----- */
.contact {
  background: var(--teal);
  color: var(--white);
}
.contact .section__title {
  color: var(--white);
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.contact__intro {
  font-weight: 500;
  line-height: 1.3;
}
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 0;
  margin: 0;
  padding: 0;
  min-inline-size: 0;
}
.radio {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  cursor: pointer;
}
.radio input {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: var(--white); /* white circle */
  display: grid;
  place-items: center;
  transition: box-shadow var(--transition);
}
.radio input::after {
  content: "";
  width: 11.8px;
  height: 11.2px;
  border-radius: 50%;
  background: var(--red); /* red dot for the selected option */
  transform: scale(0);
  transition: transform var(--transition);
}
.radio input:checked::after {
  transform: scale(1);
}
.radio input:focus-visible {
  outline-offset: 3px;
}
.fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.field input,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  padding: 14px 12px;
  border: 2px solid transparent;
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--dark-blue);
  box-shadow: 0 0 0 3px rgba(11, 57, 84, 0.25);
}
.form-status {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}
.form-status[hidden] {
  display: none;
}

.contact__form .btn{
  width: fit-content;
}
/* CF7 form inside the contact section — maps CF7 wrapper classes to existing
   custom styles so the design stays consistent without touching CF7 markup. */
.contact .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.contact .wpcf7-form .radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* CF7 radio list items → .radio style */
.contact .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 0;
}
.contact .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  cursor: pointer;
}
.contact .wpcf7-list-item input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  transition: box-shadow var(--transition);
  flex-shrink: 0;
}
.contact .wpcf7-list-item input[type="radio"]::after {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red);
  transform: scale(0);
  transition: transform var(--transition);
}
.contact .wpcf7-list-item input[type="radio"]:checked::after {
  transform: scale(1);
}
.contact .wpcf7-list-item input[type="radio"]:focus-visible {
  outline-offset: 3px;
}
/* CF7 text/email/textarea inputs */
.contact .wpcf7-form input[type="text"],
.contact .wpcf7-form input[type="email"],
.contact .wpcf7-form textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  padding: 14px 12px;
  border: 2px solid transparent;
  border-radius: 2px;
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact .wpcf7-form textarea {
  min-height: 120px;
  resize: vertical;
}
.contact .wpcf7-form input::placeholder,
.contact .wpcf7-form textarea::placeholder {
  color: var(--muted);
}
.contact .wpcf7-form input:focus,
.contact .wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--dark-blue);
  box-shadow: 0 0 0 3px rgba(11, 57, 84, 0.25);
}
/* CF7 validation tip & response output */
.contact .wpcf7-not-valid-tip {
  color: #ffe2e2;
  font-size: var(--fs-sm);
  margin-top: 4px;
}
.contact-confirmation {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-sm);
  padding: 32px 24px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
}
.contact .wpcf7-response-output {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  margin: 0 !important;
}

/* ----- DISCLAIMER ----- */
.disclaimer {
  background: var(--dark-gray);
}
.disclaimer p {
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--light-gray);
}

/* ----------------------------------------------------------------
   8. FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--medium-gray);
  padding-block: 20px;
}
.site-footer__inner {
  width: min(var(--content-max), 100% - 40px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer .brand-logo {
  height: 28px;
}
.site-footer__copy {
  font-size: var(--fs-sm);
  color: #000;
}

.site-footer .link-underline{
  font-size: small;
}
/* ----------------------------------------------------------------
   9. PRIVACY PAGE
   ---------------------------------------------------------------- */
.legal {
  background: var(--light-gray);
}
.legal__inner {
  width: min(var(--content-max), 100% - 40px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.legal h2 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--dark-blue);
  margin-top: 18px;
}
.legal h2:first-child {
  margin-top: 0;
}
.legal p {
  font-size: var(--fs-body);
  line-height: 1.5;
}

/* ----------------------------------------------------------------
   10. MEDIA PLACEHOLDERS, BACK-TO-TOP
   ---------------------------------------------------------------- */
/* Image slot. When the real image loads it fills the slot; only if the
   image is missing/broken does the branded placeholder (gradient + label)
   appear (JS adds .is-failed on error). */
.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: transparent;
  isolation: isolate;
}
.media.is-failed {
  background: linear-gradient(135deg, var(--medium-gray), var(--gray));
}
.media::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none; /* shown only on failure */
  place-items: center;
  padding: 16px;
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--dark-gray);
}
.media.is-failed::after {
  display: grid;
}
.media img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media img.is-broken {
  opacity: 0;
}
/* product renders / diagrams: show the whole asset, don't crop */
.media--contain img {
  object-fit: contain;
}
.media--ratio-illustration { aspect-ratio: 1218 / 750; }
.media--ratio-device { aspect-ratio: 840 / 357; }   /* Technology inset #1 */
.media--ratio-device2 { aspect-ratio: 840 / 221; }  /* Technology inset #2 */
.media--ratio-device-tall { aspect-ratio: 2310 / 2883; max-width: 770px; margin-inline: auto; width: 100%; }
.media--ratio-gif { aspect-ratio: 840 / 546; width: 100%; }
.media--photo.is-failed { background: linear-gradient(135deg, #d7dbe0, var(--gray)); }

/* Back to top */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition),
    visibility var(--transition);
  z-index: 90;
}
.back-to-top img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
  transition: transform var(--transition);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover img {
  transform: scale(1.08);
}

/* ----------------------------------------------------------------
   11. RESPONSIVE BREAKPOINTS
   ---------------------------------------------------------------- */

@media (max-width: 1200px) {
  .page-template-template-investor .hero__swoosh {
    width: min(46%, 860px);
  }
}

/* Tablet — collapse desktop nav into hamburger, soften grids */
@media (max-width: 980px) {

  .page-template-template-investor .hero__swoosh {
    display: none;
  }

  .site-header {
    border-bottom: 1px solid var(--medium-gray);
  }

  .nav__links {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pub-grid {
    grid-template-columns: 1fr;
    /* max-width: 520px; */
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --gap: 1.75rem;
    --header-h: 53px;
  }
  .nav {
    padding-inline: 0;
    width: 100%;
  }

  .nav__logo {
    padding-left: 10px;
  }

  .site-footer  .nav__logo{
    padding-left: 0;
    margin: auto;
  }

  .site-footer  .nav__logo .brand-logo{
    height: 40px;
  }

  /* Mobile hero: text on red at the top, full-width photo band at the bottom */
  .hero {
    display: flex;
    flex-direction: column;
    padding-block: 0;
  }
  .hero__inner {
    order: 1;
    width: 100%;
    margin: 0;
    padding: 32px 20px 0px;
    margin-bottom: -15px;
  }

  .privacy-policy .hero__inner {
    padding: 32px 20px 42px;
  }
  .hero__swoosh {
    position: static;
    order: 2;
    width: 100%;
    max-width: none;
    height: auto;
    opacity: 1;
  }
  .hero__swoosh img {
    width: 100%;
    height: auto;
  }

  .page-template-template-investor  .hero__swoosh{
    display: none;
  }

  .hero__header {
    max-width: 100%;
  }

  /* Website Policy page: hide the decorative hero swoosh on mobile */
  .hero--policy .hero__swoosh {
    display: none;
  }

  /* Mission: float the icon so the paragraph wraps around it */
  .mission__body {
    display: flow-root; /* contains the float */
    gap: 0;
  }
  .mission__icon {
    float: left;
    width: 48px;
    height: 48px;
    margin: 4px 16px 0px 0;
  }
  .mission__text {
    text-align: left;
  }

  .panel-teal {
    padding: 24px 16px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Stats card stacks vertically with a horizontal divider */
  .stats-card {
    flex-direction: column;
    gap: 30px;
  }
  .stats-card__divider {
    width: 100%;
    height: 2px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-circle--xl {
    width: 204px;
    height: 204px;
    font-size: 2.25rem;
  }

  /* Quote: column layout on mobile, clipped mark icon */
  .quote-block {
    flex-direction: column;
    gap: 30px;
    padding: 30px;
  }
  .quote-block__mark {
    font-size: 5.625rem; /* 90px — matches Figma */
    line-height: 1;
    height: 43px;
    overflow: hidden;
    margin-top: 0;
  }
  .quote-block__text {
    font-size: 1.5rem; /* 28px — matches Figma */
  }

  /* Platform detail diagram: full-width, natural height on mobile */
  .media--ratio-device-tall {
    max-width: 100%;
    aspect-ratio: unset;
  }
  .media--ratio-device-tall img {
    position: static;
    width: 100%;
    height: auto;
    display: block;
    max-width: 400px;
    margin: auto;
  }

  /* First-in-Human card: bullets on top, banner bleeds to the bottom edge */
  .fih-card {
    padding: 30px;
    min-height: 0;
  }
  .fih-card__list {
    width: 100%;
    font-size: 1.25rem; /* 20px */
    gap: 12px;
  }
  .fih-card__media {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 24px -30px -30px; /* bleed to the card edges */
  }
  .fih-card__media img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .fih-card__media::before {
    background: linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0) 30%);
  }

  /* Prevalence: tighter card padding and stacked legend on small screens */
  .prevalence__card {
    /*padding: 16px;*/
  }
  .prevalence__legend {
    flex-direction: column;
    gap: 8px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .team-card__photo {
    aspect-ratio: 280 / 170;
  }

  .site-footer__inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* Larger desktops: keep nav comfortably wide */
@media (min-width: 1240px) {
  .nav {
    padding-inline: 60px;
  }
}

/* ----------------------------------------------------------------
   AOS fade-up — keep the rise subtle (smaller than the library default)
   ---------------------------------------------------------------- */
[data-aos="fade-up"] {
  transform: translate3d(0, 24px, 0);
}

/* ----------------------------------------------------------------
   12. REDUCED MOTION
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *:not(img),
  *:not(img)::before,
  *:not(img)::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  /* never leave AOS content hidden when motion is reduced */
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ----------------------------------------------------------------
   13. COOKIEYES CONSENT BANNER & PREFERENCE CENTER
   Overrides for the CookieYes plugin, matched to the Figma design
   (nodes 73-544 & 73-557). Uses the theme design tokens above.
   !important is required because CookieYes writes its colours as
   inline styles on the elements, which only !important can beat.
   ---------------------------------------------------------------- */

/* ----- Banner container ----- */
.cky-consent-container .cky-consent-bar {
  background-color: var(--white) !important;
  border: 1px solid var(--light-gray) !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.1) !important;
  padding: 20px !important;
  font-family: var(--font-sans) !important;
}

.cky-consent-container .cky-notice {
  padding: 0 !important;
}

/* Title — teal, bold, 16px */
.cky-consent-container .cky-title {
  color: var(--teal) !important;
  font-family: var(--font-sans) !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  line-height: 1.3 !important;
  margin-bottom: 20px !important;
}

/* Description — ink, medium, 14px */
.cky-consent-container .cky-notice-des,
.cky-consent-container .cky-notice-des p {
  color: var(--ink) !important;
  font-family: var(--font-sans) !important;
  font-weight: 500 !important;
  font-size: var(--fs-sm) !important;
  line-height: 1.3 !important;
}

/* ----- Buttons (shared base) — bold 14px, radius 6px, 10/20 padding ----- */
.cky-consent-container .cky-btn,
.cky-preference-center .cky-btn {
  font-family: var(--font-sans) !important;
  font-weight: 700 !important;
  font-size: var(--fs-sm) !important;
  line-height: 20px !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm) !important;
  border: 1px solid var(--red) !important;
  transition: background-color 0.15s ease, color 0.15s ease,
    border-color 0.15s ease !important;
}

/* Outline buttons: Customise + Reject all (+ Save My Preferences) */
.cky-consent-container .cky-btn-customize,
.cky-consent-container .cky-btn-reject,
.cky-preference-center .cky-btn-reject,
.cky-preference-center .cky-btn-preferences {
  background-color: transparent !important;
  color: var(--red) !important;
  border-color: var(--red) !important;
}

.cky-consent-container .cky-btn-customize:hover,
.cky-consent-container .cky-btn-reject:hover,
.cky-preference-center .cky-btn-reject:hover,
.cky-preference-center .cky-btn-preferences:hover {
  background-color: var(--red) !important;
  color: var(--white) !important;
  border-color: var(--red) !important;
}

/* Filled primary button: Accept all */
.cky-consent-container .cky-btn-accept,
.cky-preference-center .cky-btn-accept {
  background-color: var(--red) !important;
  color: var(--white) !important;
  border-color: var(--red) !important;
}

.cky-consent-container .cky-btn-accept:hover,
.cky-preference-center .cky-btn-accept:hover {
  background-color: var(--red-dark) !important;
  border-color: var(--red-dark) !important;
}

/* ----- Preference center / modal ----- */
.cky-preference-center {
  background-color: var(--white) !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.1) !important;
  font-family: var(--font-sans) !important;
}

/* Modal title — teal bold 16px */
.cky-preference-center .cky-preference-title {
  color: var(--teal) !important;
  font-family: var(--font-sans) !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  line-height: 1.3 !important;
}

/* Modal body copy */
.cky-preference-center .cky-preference-content-wrapper,
.cky-preference-center .cky-preference-content-wrapper p,
.cky-preference-center .cky-notice-des,
.cky-preference-center .cky-notice-des p {
  color: var(--ink) !important;
  font-family: var(--font-sans) !important;
  font-weight: 500 !important;
  font-size: var(--fs-sm) !important;
  line-height: 1.3 !important;
}

/* "Show more / Show less" inline link — red, bold, underlined */
.cky-preference-center .cky-show-desc-btn,
.cky-show-desc-btn {
  color: var(--red) !important;
  font-family: var(--font-sans) !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
}

/* Category titles (Necessary, Functional, …) — bold ink */
.cky-preference-center .cky-accordion-btn,
.cky-accordion-header-wrapper .cky-accordion-btn {
  color: var(--ink) !important;
  font-family: var(--font-sans) !important;
  font-weight: 700 !important;
}

/* Category descriptions */
.cky-accordion-body .cky-gpc-wrapper p,
.cky-accordion .cky-accordion-body p {
  color: var(--ink) !important;
  font-family: var(--font-sans) !important;
  font-weight: 500 !important;
  font-size: var(--fs-sm) !important;
  line-height: 1.3 !important;
}

/* Accordion expand chevrons — teal accent */
.cky-preference-center .cky-accordion-chevron i::before {
  border-color: var(--teal) !important;
}

/* "Always Active" label — teal to match brand (CookieYes default is green) */
.cky-always-active {
  color: var(--teal) !important;
  font-family: var(--font-sans) !important;
  font-weight: 700 !important;
}

/* Toggle switches — active state uses brand teal */
.cky-preference-center .cky-switch input:checked + label::before,
.cky-switch input:checked + label::before {
  background-color: var(--teal) !important;
}

/* Close (X) button in modal header */
.cky-preference-center .cky-btn-close span {
  color: var(--ink) !important;
}

/* "Powered by" footer link — keep subtle */
.cky-consent-container [data-cky-tag="powered-by"] {
  color: var(--dark-gray) !important;
}

/* Floating revisit badge (small icon that reopens settings) */
.cky-revisit-bottom-left .cky-revisit-img,
.cky-btn-revisit-wrapper .cky-revisit-img {
  background-color: var(--red) !important;
}

div[data-cky-tag="powered-by"], div[style="padding-bottom:12px"],div.cky-btn-revisit-wrapper.cky-revisit-bottom-left, div[data-cky-tag="detail-powered-by"],div[style="padding-bottom:12px;display:flex;justify-content:center;align-items:center"]{
  display: none !important;
  opacity: 0 !important;
}

#tech-title-2, #technology h2:not(#tech-title-1){
  padding-top: 40px;
  border-top: 3px solid #CACACA;
}

@media (max-width: 768px) {
  #tech-title-2, #technology h2:not(#tech-title-1){
    padding-top: 30px;
  }

  .infographic__label strong, .impella__label{
    font-size: 1.8rem;
  }

  .infographic__note{
    font-size: 1.1rem;
  }

}

/* ----------------------------------------------------------------
   14. INVESTOR PAGE SECTIONS
   ---------------------------------------------------------------- */

/* ----- INVESTOR HERO ----- */
.hero__header--wide {
  max-width: 648px;
}
.investor-hero .hero__header {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hero__subhead {
  font-size: clamp(1.25rem, 1rem + 1vw, 1.5rem); /* 24px */
  font-weight: 700;
  line-height: 1.3;
  color: #f7f7f7;
}
.investor-hero .hero__swoosh::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: #dc575f;
  z-index: 1;
}
.investor-hero .hero__swoosh img {
  position: relative;
  z-index: 1;
  object-fit: fill;
  filter: drop-shadow(-12px 8px 30px rgba(0, 0, 0, 0.28));
}

/* ----- INVESTOR INFO STRIP ----- */
.investor-info {
  background: var(--medium-gray);
  padding-block: 28px;
}
.investor-info__inner {
  width: min(var(--content-max), 100% - 40px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.investor-info__item {
  font-size: 1.375rem; /* 22px */
  font-weight: 400;
  line-height: 1.3;
  color: #000;
  margin-bottom: 12px;
}
.investor-info__item:last-child {
  margin-bottom: 0;
}
.investor-info__dot {
  font-weight: 700;
  color: var(--red);
}

/* ----- INVESTOR PROBLEM ----- */
.investor-problem {
  background: var(--white);
}
.inv-problem__body {
  font-size: clamp(1.25rem, 1rem + 1vw, 1.5rem); /* 24px on desktop */
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-blue);
}

/* Shared card shell (light-gray bg, rounded, 30px padding) */
.inv-prob-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 30px;
}

/* Card 1: infographic image | vertical divider | text */
.inv-prob-card--row {
  display: flex;
  gap: 30px;
  align-items: center;
}
.inv-prob-card__graphic {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-width: 0;
}
.inv-prob-card__graphic img {
  width: 100%;
  height: auto;
  max-width: 320px;
  display: block;
}
.inv-prob-card__vdivider {
  width: 2px;
  align-self: stretch;
  background: var(--gray);
  flex: none;
}
.inv-prob-card__text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  min-width: 0;
}
.inv-prob-card__lead {
  font-size: clamp(1.125rem, 0.9rem + 1vw, 1.5rem); /* ~24px */
  font-weight: 700;
  line-height: 1.3;
  color: var(--teal);
}
.inv-prob-card__sub {
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
}

/* Card 2: two stat bubble columns */
.inv-prob-card--stats {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
}
.inv-prob-stat {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
/* Teal circle bubble */
.inv-prob-bubble {
  display: grid;
  place-items: center;
  width: 114px;
  height: 114px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
  font-size: 2.875rem; /* 46px */
  line-height: 1;
  box-shadow: var(--shadow-stat);
  flex: none;
}
/* "+" bubble is larger text */
.inv-prob-bubble--lg {
  font-size: 5.625rem; /* 90px */
  font-weight: 700;
  line-height: 0.9; /* optically centre the + */
}
.inv-prob-stat__label {
  font-size: clamp(1.125rem, 0.9rem + 1vw, 1.5rem); /* 24px */
  font-weight: 700;
  line-height: 1.3;
  color: var(--teal);
  text-align: center;
}
.inv-prob-stat__cite {
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  text-align: center;
}

/* Why now grid — 2-column */
.inv-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
/* Why now card: light-gray, 20px padding, rounded */
.inv-why-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.inv-why-card p {
  margin: 0;
  font-size: var(--fs-card-title); /* 20px */
  font-weight: 800;
  line-height: 1.2;
  color: var(--red);
}
/* Circle icon: outer ring + inner dot (matches Figma "radio" icon) */
.inv-why-icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid var(--red);
  position: relative;
}
.inv-why-icon__dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ----- INVESTOR DEVICE ----- */
.investor-device {
  background: var(--teal);
  color: var(--white);
}
.investor-device .section__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.investor-device .section__title {
  color: var(--white);
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}
.investor-device__text-block,
.investor-device__ev-block {
  display: flex;
  flex-direction: column;
}
.investor-device__subhead {
  font-size: clamp(1.25rem, 1rem + 1vw, 1.5rem); /* 24px */
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 24px;
}
.investor-device__body {
  font-size: var(--fs-body); /* 18px */
  font-weight: 500;
  line-height: 1.3;
  color: var(--white);
  margin: 0;
}
.investor-device__diagram {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  overflow: hidden;
}
.investor-device__diagram img {
  width: 100%;
  height: auto;
  display: block;
}
.investor-device__ev-subhead {
  font-size: clamp(1.25rem, 1rem + 1vw, 1.5rem); /* 24px */
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 24px;
}
.investor-device__ev-items {
  display: flex;
  flex-direction: column;
}
.investor-device__ev-item {
  font-size: var(--fs-body); /* 18px */
  font-weight: 500;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 12px;
}
.investor-device__ev-item:last-child {
  margin-bottom: 0;
}
.investor-device__ev-dot {
  font-weight: 700;
}
.investor-device__graph {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 20px;
  overflow: hidden;
}
.investor-device__graph img {
  width: 100%;
  height: auto;
  display: block;
}

/* ----- INVESTOR GOAL STRIP ----- */
.investor-goal {
  background: var(--medium-gray);
  padding-block: var(--space-section);
}
.investor-goal__inner {
  width: min(var(--content-max), 100% - 40px);
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.investor-goal__icon {
  flex: none;
  width: 74px;
  height: 74px;
  padding: 8px;
  box-sizing: content-box;
}
.investor-goal__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.investor-goal__text {
  font-size: 1.75rem; /* 28px */
  font-weight: 400;
  line-height: 1.3;
  color: #000;
  margin: 0;
}

/* ----- INVESTOR DEFENSIBILITY ----- */
.investor-defensibility {
  background: var(--white);
}
.investor-defensibility .section__title {
  color: var(--red);
}
.investor-market-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.investor-market-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.investor-market-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* Radio icon — same shape as .inv-why-icon */
.investor-market-card__icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid var(--red);
  position: relative;
}
.investor-market-card__icon-dot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.investor-market-card__title {
  font-weight: 800;
  font-size: var(--fs-card-title); /* 20px */
  line-height: 1.2;
  color: var(--red);
  margin: 0;
}
.investor-market-card__body {
  font-size: var(--fs-body); /* 18px */
  font-weight: 500;
  line-height: 1.3;
  color: #000;
  margin: 0;
}
.investor-defensibility__body {
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 1.5;
}
.investor-defensibility__body p {
  margin: 0;
}

/* Comparison table */
.investor-compare {
  border: 1px solid #cacaca;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
}
.investor-compare__col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.investor-compare__col--existing {
  border-right: 1px solid #cacaca;
}
.investor-compare__head {
  padding: 14px;
  font-weight: 700;
  font-size: var(--fs-body); /* 18px */
  line-height: 1.3;
  color: var(--white);
  background: var(--dark-gray);
}
.investor-compare__head--tulyp {
  background: var(--red);
}
.investor-compare__list {
  padding: 14px;
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
}
.investor-compare__list li {
  font-size: var(--fs-body); /* 18px */
  font-weight: 500;
  line-height: 1.3;
  color: #000;
  margin-bottom: 18px;
  padding: 0;
}
.investor-compare__list li:last-child {
  margin-bottom: 0;
}
.investor-compare__dot {
  font-weight: 700;
}
.investor-compare__col--existing .investor-compare__dot {
  color: var(--dark-gray); /* #575757 */
}
.investor-compare__col--tulyp .investor-compare__dot {
  color: var(--red);
}

/* ----- INVESTOR FUNDS ----- */
.investor-funds {
  background: var(--red);
  color: var(--white);
}
.investor-funds__heading {
  font-size: 1.5rem; /* 24px */
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin: 0;
}
.investor-funds__card {
  background: var(--light-gray); /* #f7f7f7 solid */
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.investor-funds__label {
  font-size: 1.5rem; /* 24px */
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-blue);
  margin: 0;
}
.investor-funds__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.investor-funds__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}
.investor-funds__list li {
  font-size: var(--fs-body); /* 18px */
  font-weight: 500;
  line-height: 1.3;
  color: #000;
  margin-bottom: 12px;
  padding: 0;
}
.investor-funds__list li:last-child {
  margin-bottom: 0;
}
.investor-funds__dot {
  font-weight: 700;
  color: var(--red);
}

/* ----------------------------------------------------------------
   INVESTOR RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 980px) {
  .investor-market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .investor-compare {
    flex-direction: column;
  }
  .investor-compare__col--existing {
    border-right: none;
    border-bottom: 1px solid #cacaca;
  }
  .inv-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  /* Problem: infographic card stacks vertically */
  .inv-prob-card--row {
    flex-direction: column;
    gap: 20px;
  }
  .inv-prob-card__vdivider {
    width: 100%;
    height: 2px;
    align-self: auto;
  }
  .inv-prob-card__graphic img {
    max-width: 220px;
  }
  /* Stats bubbles: stack on mobile */
  .inv-prob-card--stats {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .inv-prob-stat {
    width: 100%;
  }
  .inv-why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .investor-device .section__inner {
    gap: 24px;
  }
  .investor-goal__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .investor-market-grid {
    grid-template-columns: 1fr;
  }
  .investor-funds__cols {
    grid-template-columns: 1fr;
  }
  .hero__header--wide {
    max-width: 100%;
  }

  /* Investor hero mobile: compact inner padding */
  .investor-hero .hero__inner {
    padding: 32px 20px 42px;
  }
}

/* Investor page: hide desktop nav links and mobile hamburger */
.page-template-template-investor .nav__links,
.page-template-template-investor .nav__toggle {
  display: none;
}

/* Investor page: team section sits between red Funds and teal Contact — use light gray */
.page-template-template-investor .leadership {
  background: var(--light-gray);
}
