* {
  padding: 0;
  margin: 0;
}

:root {
  --container-small: 1000px;
  --container-medium: 1000px;

  --cols: 9;
  --container-small-gap: 20px;

  /* Neutrals */

  --surface: #f5f7f7;

  --border: #bdbdbd;

  /* Chip tints */
  --chip-insight-bg: #ffe9e7;
  --chip-insight-fg: #5b0a00;
  --chip-insight-bd: #ffd6d2;
  --chip-evidence-bg: #d2f4f7;
  --chip-evidence-fg: #0a3f48;
  --chip-evidence-bd: #beeaf0;
  --chip-decision-fg: #a80600;
  --chip-impact-fg: #0b0f14;

  /* Type */
  --fs-card-title: clamp(18px, calc(16px + 2 * ((100vw - 1440px) / 480)), 20px);
  --fs-body: clamp(16px, calc(16px + 2 * ((100vw - 1440px) / 480)), 18px);

  /* Radii & shadows */
  --radius-16: 16px;
  --radius-12: 12px;

  --dark-surface: #0b0f14; /* dark base under image */
  --card-bg: rgba(7, 12, 18, 0.78); /* glassy dark card */
  --card-bd: rgba(255, 255, 255, 0.1);
  --card-radius: 20px;

  --img-band: 1200px;

  /* Percent of the image that is initially visible (your “75% open side”) */
  --open: 0.5;

  /* Derived: visible window height and how far to slide the image (the hidden 25%) */
  --window-h: calc(var(--img-band) * var(--open));
  --img-shift: calc(
    var(--img-band) - var(--window-h)
  ); /* 25% of image height */

  /* Grid behavior */
  --grid-lift: -160px; /* how far the grid moves up while scrolling (negative = up) */
  --grid-start: 48px; /* starts slightly below the window (in flow) */

  /* Timing */
  --easing: cubic-bezier(0.2, 0.6, 0.2, 1);

  --img-margin-bottom: 24px;

  --font-head: "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  /* Text colors */
  --color-text-primary: #111111;
}

img {
  max-width: 100%;
  height: auto; /* preserves aspect ratio */
  display: block; /* removes inline gap */
}

img.marginbottom {
  margin-bottom: var(--img-margin-bottom);
}

.container--small {
  max-width: var(--container-small);
  margin-inline: auto;
  padding-top: 76px;
}

.container-medium {
  max-width: var(--container-medium);
  margin-inline: auto;
  padding-top: 96px;
  padding-bottom: 96px;
}

/* Each section fills the viewport height reliably on mobile & desktop */

.grid-9 {
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  column-gap: var(--container-small-gap);
}
/* span helpers */
.span-2 {
  grid-column: span 2;
}
.span-3 {
  grid-column: span 3;
}
.span-4 {
  grid-column: span 4;
}
.span-5 {
  grid-column: span 5;
}
.span-6 {
  grid-column: span 6;
}
.span-7 {
  grid-column: span 7;
}
.span-8 {
  grid-column: span 8;
}
.span-9 {
  grid-column: 1 / -1;
} /* all 9 columns */

.coverimg {
  min-height: 100svh; /* use svh/dvh to handle mobile address bar */
  min-height: 100dvh;
  min-height: 100vh;
}

.coverimg > img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills and crops */
  object-position: center; /* tweak focal point, e.g. 50% 30% */
  display: block;
}

li {
  list-style: none;
  margin: 0 0 4px;
  line-height: 1.45;
  font-size: var(--fs-body);
  font-family: "Roboto", sans-serif;
}

.cs-figure__label {
  display: inline-block;
  margin-bottom: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;

  color: #667085; /* neutral / secondary */
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ===============================
   CARD
================================ */
.card {
  background: var(--surface);
  /*   border: 1.5px solid var(--border); */
  border-radius: var(--radius-16);
  padding: 24px;
  /*  box-shadow: var(--shadow-sm); */
  margin-bottom: 20px;
}

/* Header row: chip + title */
.card__header {
  display: flex;
  align-items: center; /* optical baseline alignment */
  gap: 8px;
  margin-bottom: 12px;
}

/* Card title (keep <h2> semantics but smaller size) */
.card__title {
  font-size: var(--fs-card-title);
  line-height: 1.3;
  font-weight: 600;
  margin: 0;
}

/* Body */
.card__body {
  font-size: var(--fs-body);
  line-height: 1.6;
  margin: 0 !important;
}

/* ===============================
   CHIP (static badge)
================================ */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-12);
  font: 500 14px/20px Roboto, sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
}

/* Variants */
.chip--insight {
  background: var(--chip-insight-bg);
  color: var(--chip-insight-fg);
  border-color: var(--chip-insight-bd);
}
.chip--evidence {
  background: var(--chip-evidence-bg);
  color: var(--chip-evidence-fg);
  border-color: var(--chip-evidence-bd);
}
.chip--decision {
  background: #fff;
  color: var(--chip-decision-fg);
  border-color: var(--chip-decision-fg);
}
.chip--impact {
  background: #fff;
  color: var(--chip-impact-fg);
  border-color: var(--chip-impact-fg);
}

/* Section scaffold */
.process {
  position: relative;
  background: #0b0f14; /* dark base below the crop */
  color: #fff;
  isolation: isolate; /* ensure correct z-index layering */
}

/* 1) Make the section the timeline source */
.process {
  view-timeline-name: --process; /* named view timeline */
  view-timeline-axis: block;
  position: relative;
  /* COMPENSATE the reserved space caused by transform */
}
/* ----- Crop window (fixed height) ----- */
.process__viewport {
  position: relative;
  height: var(--window-h); /* only show top 75% initially */
  overflow: hidden; /* crop the taller image */
  z-index: 0;
}

/* Image is taller than the window and slides up within it */
.process__media,
.process__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: var(--img-band);
}

.process__img {
  object-fit: cover;
  object-position: 50% 0%;
  transform-origin: top center; /* <— scaling grows downward only */

  transform: translateY(0);
  will-change: transform;
}

/* ----- Foreground content (on top) ----- */
.process__inner {
  position: relative;
  z-index: 2; /* above image & scrim */
  max-width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
  padding: 24px 0 96px;
}

.process__title {
  font: 700 clamp(28px, 3.2vw, 40px) / 1.2 Inter, system-ui, sans-serif;
  margin: 16px 0;
}

.process-card {
  background-color: #0a231c;
  border-radius: var(--radius-16);
  padding: 24px;
  position: relative;
}

/* Number sitting on the open band */
.process-card__step {
  position: absolute;
  top: 24px;
  left: 24px;
  font: 800 28px/1 Inter, system-ui, sans-serif;
  color: #fff;
  letter-spacing: 0.02em;
}
/* The actual card body starts AFTER the open band */
.process-card__body {
  margin-top: 100px; /* creates the “cut-out” */
}

.process-card-header {
  color: var(--surface) !important;
  margin-bottom: 8px;
}

.process-card__body.h4 {
  margin-bottom: 8px;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: var(--grid-start); /* below the crop in normal flow */
  transform: translateY(0);
  will-change: transform;
  position: relative;
  z-index: 3; /* stays above everything */
  align-items: start;

  /* one knob for all vertical spacing */
  --step: 140px; /* increase/decrease to change the stagger */
}

/* Place each number (desktop ≥1200px) */
.process-card:nth-child(1) {
  grid-column: 1;
  margin-top: calc(var(--step) * 0);
} /* 01 */
.process-card:nth-child(2) {
  grid-column: 3;
  margin-top: calc(var(--step) * 0);
} /* 02 */
.process-card:nth-child(3) {
  grid-column: 2;
} /* 03 */
.process-card:nth-child(4) {
  grid-column: 4;
} /* 04 */
.process-card:nth-child(5) {
  grid-column: 3;
} /* 05 */
.process-card:nth-child(6) {
  grid-column: 4;
  margin-top: calc(var(--step) * 2);
} /* 06 */

/* crop window just shows part of the image */
.process__viewport {
  position: relative;
  overflow: hidden;
  height: 70vh;
}
.process__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: 50% 0%;
  transform-origin: top center;
  transform: translateY(0); /* start at 0 */
  will-change: transform;
}

/* 2) Animate the img using the section’s timeline */
@supports (animation-timeline: view()) {
  .process__img {
    animation-name: slideUp;
    animation-timeline: --process; /* <-- use the section timeline */
    animation-range: entry 0% exit 100%; /* progress while section is on screen */
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-duration: 1s; /* formal; timeline controls progress */
  }
  @keyframes slideUp {
    from {
      transform: translateY(0);
    }
    to {
      transform: translateY(-800px);
    }
  }
}

/* Tweakables */
.process {
  --inner-start: 0px; /* where the inner content starts */
  --inner-shift: -280px; /* how far it moves up by the end (negative = up) */
  --inner-ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  height: 1998px;
}

/* Foreground wrapper (title + grid/cards) */
.process__inner {
  position: relative;
  z-index: 2; /* stays above the image/scrim */
  transform: translateY(var(--inner-start));
  will-change: transform;
}

/* Scroll-linked animation using the section timeline */
@supports (animation-timeline: view()) {
  .process__inner {
    animation-name: innerFloat;
    animation-timeline: --process; /* <-- same timeline as the img */
    animation-range: entry 0% exit 100%; /* while the section is on screen */
    animation-timing-function: var(--inner-ease);
    animation-fill-mode: both;
    animation-duration: 1s; /* formal; timeline drives progress */
  }
  @keyframes innerFloat {
    from {
      transform: translateY(var(--inner-start));
    }
    to {
      transform: translateY(var(--inner-shift));
    }
  }
}

/* motion safety */
@media (prefers-reduced-motion: reduce) {
  .process__inner {
    animation: none !important;
    transform: none !important;
  }
}

/* shell */
.fidelity {
  --content: min(1200px, calc(100% - 48px));

  margin: 64px auto;
}
.fidelity__head {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: end;
}
.fidelity__head h2 {
  margin: 0;
  font: 700 clamp(24px, 3vw, 32px) / 1.2 Inter, system-ui;
}

/* segmented control */
.seg {
  display: inline-flex;
  background: #fafafa;
  border: 1px solid #ffffff14;
  border-radius: 999px;
  padding: 4px;
  border: 1px solid #e2e8f0;
}
.seg__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: #0a231c;
  padding: 8px 14px;
  border-radius: 999px;
  font: 600 14px/1 Inter, system-ui;
  cursor: pointer;
}
.seg__btn.is-active {
  background: #a80600;
  color: #f5f5f5;
}

/* frames grid */
.frames {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.9fr;
  gap: 16px;
  margin-top: 16px;
}

.frame figcaption {
  font: 600 12px/1 Inter, system-ui;
  color: #a3aec0;
  margin-bottom: 8px;
}
.frame .img {
  width: 100%;
  height: auto;
  display: none;
}

/* show by state */
.fidelity[data-state="low"] .img--low {
  display: block;
}
.fidelity[data-state="mid"] .img--mid {
  display: block;
}

@media (max-width: 640px) {
  .frames {
    grid-template-columns: 1fr;
  }
  .fidelity__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.steps > li {
  counter-increment: step;
  position: relative;
  padding-left: calc(28px + 12px);
  margin: 0 0 10px;
  line-height: 1.45;
  font-size: var(--fs-body);
  font-family: "Roboto", sans-serif;
}
.steps > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.15em; /* tweak top for baseline */
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #a80600;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  display: grid;
  place-items: center;
}

/* =====MAJOR WORK - Testing 1 =====*/
.scrollable-container {
  max-width: 800px;
  height: 500px;
  border: 1px solid #ccc;
  overflow-y: scroll;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px;
}

.scrollable-content {
  height: 400px; /* Make content taller than the container */
}

/* icon | text in a row */
.item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
}

/* normalize spacing and wrapping */
.item i {
  font-size: 22px;
  line-height: 1;
}
.item .text {
  margin: 0;
  line-height: 1.3;
}
.item .text span {
  display: block;
  opacity: 0.85;
}

/* (optional) stack on small screens */
@media (max-width: 640px) {
  .item.span-3 {
    grid-column: 1 / -1;
  }
}

.table-container {
  display: flex;
  gap: 24px;
}

.site-map ul {
  list-style: circle !important;
  list-style-type: circle !important;
  padding-left: 32px;
}

.video1 {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* The visible frame */
.portal-screen {
  --frame-h: 600px; /* change this if you want another height */
  height: var(--frame-h);
  max-width: 540px; /* optional, just to control width */

  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  border-radius: 8px;
  border: 1px solid #e2e8f0; /* ← your border */
}

/* The scrolling content */
.portal-screen__inner {
  animation: scrollScreen 18s linear infinite alternate;
}

/* Image just fills horizontally */
.portal-screen img {
  display: block;
  width: 100%;
  height: auto;
}

/* Vertical scroll effect */
@keyframes scrollScreen {
  0% {
    transform: translateY(0);
  }
  100% {
    /* move image up so bottom is visible inside 600px frame */
    transform: translateY(calc(-100% + var(--frame-h)));
  }
}

/* Container */
.phase-carousel {
  position: relative;
  max-width: 1000px;
}

/* Header row */
.phases-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

/* .phases-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
} */

/* Nav buttons on the right */
.phases-nav {
  display: flex;
  gap: 8px;
}

.phases-nav button {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
}

.phases-nav button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.viewport {
  overflow: hidden;
  width: 100%;
}

.track {
  display: flex;
  gap: 8px; /* images stay connected */
  transition: transform 0.4s ease;
}

.slide {
  flex: 0 0 auto; /* width set by JS */
}

.slide img {
  display: block;
  width: 100%;
  height: auto; /* keep aspect ratio */
}

/* Notes under image */
.notes {
  margin-top: 8px;
  display: grid;
  gap: 8px;

  /* LIMIT */
  max-width: 360px; /* change this */
  width: 100%;
}

.note {
  padding: 10px;
  border-radius: 8px;

  width: auto; /* important: don't force 100% */
  max-width: 100%;
}

.note h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.note p {
  margin: 0;
  font-size: 16px;

  overflow-wrap: anywhere; /* breaks very long words/URLs */
  word-break: normal;
  max-width: 60ch; /* nice reading width */
}

/* Colors like your reference */
.note--data {
  background: #f6e8a8;
}
.note--assumption {
  background: #f7d6d6;
}

/* --- POV table card (matches your screenshot style) --- */
.pov-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-16);
  overflow: hidden; /* keeps rounded corners on row borders */
  margin-bottom: 20px;
}

/* each table row */
.pov-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 16px 16px;
  border-top: 1px solid #e2e8f0;
}

.pov-row:first-child {
  border-top: 0;
}

/* left label column */
.pov-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #616161; /* muted */
  padding-top: 2px;
  font-family: "Roboto", sans-serif;
}

.pov-content p {
  margin-bottom: 0px;
}

/* underline highlight like in your screenshot */
.hl {
  box-shadow: inset 0 -0.45em 0 rgba(168, 6, 0, 0.18); /* subtle red highlight */
  padding: 0 0.1em;
}

/* responsive */
@media (max-width: 640px) {
  .pov-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .pov-content {
    font-size: 16px;
  }
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; /* ✅ exact gap */
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 24px;
}

.persona-card {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px; /* optional */
}

@media (max-width: 768px) {
  .persona-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Card wrapper ===== */
.hmw-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 1rem;
}

/* ===== Top header (avatar + name) ===== */
.hmw-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px 6px 14px;
}

.hmw-avatar {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #e5e7eb;
}

.hmw-title h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.hmw-title p {
  margin: 4px 0 0;
  color: #6b7280;
  font-weight: 500;
}

/* ===== Table layout (2 panels) ===== */
.hmw-grid {
  display: grid;
  grid-template-columns: 3fr 1fr; /* left group wider */
  gap: 16px;
}

.hmw-panel {
  border-radius: 16px;
  background: #f5f6f7;
  padding: 16px;
}

/* ===== Heads (column headers) ===== */
.hmw-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 18px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}

.hmw-head--right {
  grid-template-columns: 1fr;
}

/* ===== Rows (same height across panels) ===== */
.hmw-body {
  display: grid;
  gap: 0;
}

/* each row uses min-height to keep alignment nice */
.hmw-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  min-height: 86px; /* ensures consistent row height */
}

.hmw-row:last-child {
  border-bottom: 0;
}

.hmw-row--single {
  grid-template-columns: 1fr;
}

/* cells */
.hmw-cell {
  font-size: 14px;
  line-height: 1.5;
}

.hmwd {
  border-left: 1px solid #e6eaf0;
  padding-left: 12px; /* adjust spacing as needed */
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hmw-grid {
    grid-template-columns: 1fr;
  }

  .hmw-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hmw-row {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: unset;
  }
}

.journey {
  max-width: 1400px;
}

.journey-header {
  max-width: 720px;
  margin-bottom: 64px;
}

.journey-header h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.journey-header p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

/* GRID */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}

/* STEP */
.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.journey-step h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* DOT */
.journey-line {
  position: relative;
  width: 100%;
  height: 1px;
  background: #c7c7c7;
  margin: 0px 4px 16px 0px;
}

.journey-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #c7c7c7;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* IMAGES */
.journey-step img {
  width: 100%;
  max-width: 220px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  margin-bottom: 20px;
}

/* SPACING */
/* ===== Page title (H1) ===== */
.cs-h1 {
  margin: 0 0 24px 0;
  line-height: 1.15;
}

/* ===== Major sections (H2 blocks) ===== */
.cs-section {
  margin-bottom: 64px; /* space between H2 sections */
}

.cs-h2 {
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.cs-lead {
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.cs-section p {
  margin: 0 0 16px 0;
  line-height: 1.6;
}

.cs-visual {
  margin-top: 28px;
}

/* Paragraph that follows a visual */
.cs-visual + p {
  margin-top: 24px;
}

.cs-visual + .card {
  margin-top: 24px;
}

/* List immediately after a visual */
.cs-visual + .steps {
  margin-top: 16px;
}

/* ===== Subsections (H3) inside an H2 section ===== */
.cs-subsection {
  margin-top: 44px; /* separation from previous block */
}

.cs-h3 {
  margin: 0 0 12px 0;
  line-height: 1.25;
}

.cs-subsection p {
  margin: 0 0 20px 0;
}

/* component image + notes */
.cs-component {
  margin-top: 20px;
}

.cs-notes {
  margin-top: 14px;
  padding-left: 18px;
}

.cs-notes li + li {
  margin-top: 10px;
}

/* Used for your "Refining the..." headings */
.cs-h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 4px;
}

.cs-figure {
  margin-top: 20px;
  margin-bottom: 8px;
}

.cs-label {
  margin-bottom: 4px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.certifications__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: start;
}

.cert-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cert-item__frame {
  width: 100%;
  max-width: 420px; /* tweak if needed */
  height: 240px; /* KEY: equal visual height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-item__frame img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* prevents cropping */
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  display: block;
}

.cert-item__label {
  margin-top: 16px;
  font-size: 14px;
  color: #374151;
}

.certifications__thanks {
  font-size: 16px;
  color: var(--color-text-primary);
  font-style: italic;
}

/* Mobile */
@media (max-width: 768px) {
  .certifications__grid {
    grid-template-columns: 1fr;
  }
  .cert-item__frame {
    height: 220px;
  }
}

.bullet {
  font-size: 6px;
  padding: 0 8px 0 0;
  color: var(--border);
  vertical-align: middle;
}

/* ---- Parallax hero container ---- */
.parallax-hero {
  /* 70vh as you asked */
  height: 70vh;
  min-height: 420px; /* helps on short viewports */
  position: relative;
  overflow: hidden;
  border-radius: 16px; /* optional */
  background: #f5f7f7; /* fallback */
}

/* ---- Background layer ---- */
.parallax-hero__bg {
  position: absolute;
  inset: 0;
  /* Example: subtle gradient like your screenshot */
  background: radial-gradient(
      900px 400px at 60% 40%,
      rgba(0, 0, 0, 0.05),
      rgba(0, 0, 0, 0) 60%
    ),
    linear-gradient(180deg, #ffffff 0%, #f5f7f7 100%);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

/* Optional: add vignette / fade edges */
.parallax-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    1200px 500px at 50% 45%,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.06) 70%,
    rgba(0, 0, 0, 0.08) 100%
  );
  opacity: 0.25;
}

/* ---- PNG (foreground) ---- */
.parallax-hero__png {
  position: absolute;
  left: 50%;
  top: 65%; /* start lower so bottom is hidden */
  /*  width: min(980px, 85vw); */
  height: auto;
  transform: translate3d(-50%, -50%, 0) rotate(-8deg);
  will-change: transform;
  pointer-events: none;
}

/* ---- Text/content overlay ---- */
.parallax-hero__content {
  position: absolute;
  left: clamp(16px, 4vw, 56px);
  bottom: clamp(16px, 4vw, 56px);
  z-index: 2;
  max-width: 520px;
}

.parallax-hero__title {
  margin: 0 0 8px 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  color: #111827;
  letter-spacing: -0.02em;
}

.parallax-hero__sub {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #667085;
}

/* ---- Accessibility / reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .parallax-hero__bg,
  .parallax-hero__png {
    transform: none !important;
    will-change: auto;
  }
}
