.cib-home {
  --green: #3d8b2f;
  --green-bright: #55a546;
  --navy: #05234b;
  --gold: #c8961a;
  --ink: #0f1f0a;
  --deep: #021126;
  --slate: #4a5a40;
  --gray: #666b73;
  --paper: #f6f7f2;
  --mist: #eef0eb;
  --white: #ffffff;
  --line-light: rgba(15, 31, 10, 0.12);
  --line-dark: rgba(255, 255, 255, 0.13);
  --shadow: 0 28px 80px rgba(2, 17, 38, 0.18);
  --radius-lg: 30px;
  --radius-md: 18px;
  --container: 1400px;
  --header-height: 84px;
}

.cib-home,
.cib-home *,
.cib-home *::before,
.cib-home *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
}

.cib-home {
  min-width: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Space Grotesk", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow: clip;
}

html.cib-menu-open,
body.cib-menu-open {
  overflow: hidden;
}

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

.cib-home a {
  color: inherit;
}

.cib-home button,
.cib-home input,
.cib-home a {
  -webkit-tap-highlight-color: transparent;
}

.cib-home :focus-visible {
  outline: 3px solid #e8b334;
  outline-offset: 4px;
}

.cib-container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

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

.cib-skip-link:focus {
  z-index: 200;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  margin: 0;
  clip: auto;
  color: var(--deep);
  background: var(--white);
  border-radius: 8px;
}

.cib-section-dark {
  color: var(--white);
  background: var(--deep);
}

.cib-section-light {
  background: var(--paper);
}

.cib-section-paper {
  background: var(--mist);
}

.cib-section-kicker,
.cib-eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cib-section-kicker-light {
  color: #8bc77f;
}

.cib-home h1,
.cib-home h2,
.cib-home h3,
.cib-home p {
  overflow-wrap: break-word;
}

.cib-home h1,
.cib-home h2,
.cib-home h3 {
  font-family: "Poppins", system-ui, sans-serif;
}

.cib-home h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.cib-home h2 em {
  color: var(--green);
  font-style: normal;
}

.cib-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cib-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 25px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.cib-button svg,
.cib-nav-login svg {
  width: 20px;
  margin-left: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.cib-button:hover svg,
.cib-nav-login:hover svg {
  transform: translateX(4px);
}

.cib-button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 36px rgba(61, 139, 47, 0.25);
}

.cib-button-primary:hover {
  background: var(--green-bright);
  box-shadow: 0 18px 42px rgba(61, 139, 47, 0.33);
}

.cib-button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.22);
}

.cib-button-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.42);
}

.cib-button-large {
  min-height: 64px;
  padding-inline: 32px;
  font-size: 1rem;
}

.cib-site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  transform: translateY(0);
  transition: background 220ms ease, box-shadow 220ms ease, transform 240ms ease;
}

.cib-site-header.is-scrolled {
  background: rgba(2, 17, 38, 0.9);
  box-shadow: 0 8px 32px rgba(0, 7, 19, 0.18);
  backdrop-filter: blur(16px);
}

.cib-site-header.is-hidden {
  transform: translateY(-110%);
}

.cib-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 64px), var(--container));
  height: 100%;
  margin-inline: auto;
  border-bottom: 1px solid var(--line-dark);
}

.cib-site-header.is-scrolled .cib-header-inner {
  border-color: transparent;
}

.cib-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.cib-brand img {
  width: 200px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.cib-main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.65vw, 30px);
  font-size: clamp(0.73rem, 0.78vw, 0.86rem);
  font-weight: 600;
}

.cib-main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.73);
  text-decoration: none;
  transition: color 180ms ease;
}

.cib-main-nav a:not(.cib-nav-login)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.cib-main-nav a:hover {
  color: var(--white);
}

.cib-main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.cib-nav-login {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.cib-nav-login svg {
  width: 17px;
  margin-left: 9px;
}

.cib-menu-toggle {
  display: none;
}

.cib-hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-height);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(61, 139, 47, 0.18), transparent 25%),
    radial-gradient(circle at 6% 92%, rgba(200, 150, 26, 0.09), transparent 24%),
    linear-gradient(135deg, #031833 0%, var(--deep) 52%, #020b18 100%);
}

.cib-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.cib-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  align-items: center;
  gap: clamp(48px, 6vw, 104px);
  min-height: calc(88vh - var(--header-height));
  padding-block: 62px 68px;
}

.cib-hero-copy {
  max-width: 690px;
}

.cib-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d0d8df;
}

.cib-eyebrow span {
  width: 31px;
  height: 1px;
  background: var(--gold);
}

.cib-hero h1 {
  margin: 0;
  font-size: clamp(4.5rem, 7.4vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.cib-hero h1 span,
.cib-hero h1 strong {
  display: block;
}

.cib-hero h1 strong {
  margin-top: 0.2em;
  color: transparent;
  font-weight: 900;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.87);
}

.cib-hero-lead {
  max-width: 660px;
  margin: 34px 0 0;
  color: #bec8d1;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.74;
}

.cib-hero .cib-button-row {
  margin-top: 34px;
}

.cib-microcopy {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 23px 0 0;
  color: #8e9ba8;
  font-size: 0.77rem;
  line-height: 1.5;
}

.cib-microcopy svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  padding: 3px;
  color: #8ac17f;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  border: 1px solid rgba(61, 139, 47, 0.55);
  border-radius: 50%;
}

.cib-hero-stage {
  position: relative;
  width: 100%;
  max-width: 700px;
  min-height: 600px;
  justify-self: end;
}

.cib-parallax-layer {
  transform: translate3d(0, var(--parallax-y, 0), 0);
}

.cib-hero-image-wrap {
  position: absolute;
  inset: 0 0 26px 60px;
  overflow: hidden;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 36px 100px rgba(0, 7, 19, 0.48);
}

.cib-hero-image-wrap::after {
  position: absolute;
  inset: 16px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
}

.cib-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cib-hero-image-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.cib-hero-image-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 17, 38, 0.08), rgba(2, 17, 38, 0.65)),
    linear-gradient(90deg, rgba(2, 17, 38, 0.28), transparent 58%);
}

.cib-platform-card {
  position: absolute;
  z-index: 4;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.cib-platform-card-main {
  right: 28px;
  bottom: 0;
  width: min(400px, 67%);
  padding: 20px;
  border-radius: var(--radius-md);
}

.cib-card-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.cib-card-brand img {
  width: 44px;
  height: 44px;
  padding: 5px;
  object-fit: contain;
  background: var(--paper);
  border: 1px solid #dde3da;
  border-radius: 11px;
}

.cib-card-brand span {
  display: grid;
  gap: 2px;
}

.cib-card-brand small,
.cib-field-card small,
.cib-access-chip small {
  color: #6f7c75;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cib-card-brand strong {
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
}

.cib-course-preview {
  margin-top: 17px;
}

.cib-course-preview > span {
  color: #69736c;
  font-size: 0.71rem;
}

.cib-progress {
  height: 4px;
  margin: 10px 0 14px;
  overflow: hidden;
  background: #dde4da;
  border-radius: 99px;
}

.cib-progress i {
  display: block;
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), #75b564);
}

.cib-course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.cib-course-tags b {
  padding: 6px 9px;
  color: #516056;
  font-size: 0.64rem;
  background: #edf0e9;
  border-radius: 6px;
}

.cib-field-card {
  top: 104px;
  left: 5px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 235px;
  padding: 14px;
  border-left: 3px solid var(--gold);
  border-radius: 11px;
}

.cib-field-card > span:last-child {
  display: grid;
  gap: 3px;
}

.cib-field-card strong {
  font-size: 0.75rem;
}

.cib-field-card-icon {
  display: grid;
  flex: 0 0 auto;
  width: 33px;
  height: 33px;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  place-items: center;
}

.cib-field-card-icon svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.cib-science-orbit {
  position: absolute;
  z-index: 3;
  top: 30px;
  right: -36px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(200, 150, 26, 0.34);
  border-radius: 50%;
}

.cib-science-orbit::before {
  position: absolute;
  inset: 23px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.cib-science-orbit i {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(200, 150, 26, 0.12);
}

.cib-science-orbit i:nth-child(1) { top: 7px; left: 58px; }
.cib-science-orbit i:nth-child(2) { right: 10px; bottom: 28px; }
.cib-science-orbit i:nth-child(3) { bottom: 20px; left: 17px; }

.cib-hero-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0 29px;
  color: #929faa;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-top: 1px solid var(--line-dark);
}

.cib-hero-footer span:not(:first-child)::before {
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 clamp(16px, 3vw, 45px) 2px 0;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.cib-audience {
  padding: clamp(100px, 11vw, 170px) 0;
}

.cib-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 70px;
}

.cib-section-intro .cib-section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -48px;
}

.cib-section-intro > p:last-child {
  margin: 0 0 8px;
  color: var(--gray);
  font-size: 1.03rem;
  line-height: 1.75;
}

.cib-audience-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
  gap: clamp(46px, 7vw, 105px);
}

.cib-audience-photo,
.cib-manifesto-image,
.cib-about-media {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.cib-audience-photo {
  min-height: 660px;
  border-radius: var(--radius-lg);
}

.cib-audience-photo img,
.cib-manifesto-image img,
.cib-about-media img,
.cib-parallax-break > img {
  width: 100%;
  height: calc(100% + 110px);
  margin-top: -55px;
  object-fit: cover;
}

.cib-photo-label {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  gap: 4px;
  padding: 17px 19px;
  color: var(--white);
  background: rgba(2, 17, 38, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  backdrop-filter: blur(12px);
}

.cib-photo-label span {
  color: #91c787;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cib-photo-label strong {
  font-family: "Poppins", sans-serif;
}

.cib-audience-content {
  align-self: center;
}

.cib-profile-groups {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 18px;
}

.cib-profile-groups article {
  padding: clamp(26px, 3vw, 38px);
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
}

.cib-profile-groups .cib-not-for {
  background: transparent;
}

.cib-profile-groups h3 {
  margin: 0 0 23px;
  color: var(--deep);
  font-size: 1.2rem;
}

.cib-profile-groups ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  color: #4f5c53;
  list-style: none;
}

.cib-profile-groups li {
  position: relative;
  padding-left: 22px;
  font-size: 0.91rem;
  line-height: 1.4;
}

.cib-profile-groups li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(61, 139, 47, 0.1);
}

.cib-not-for li::before {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 150, 26, 0.1);
}

.cib-problem-note {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 20px;
  margin-top: 28px;
  padding: 27px 0 0;
  border-top: 1px solid var(--line-light);
}

.cib-problem-note-number,
.cib-editorial-number {
  color: var(--gold);
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
}

.cib-problem-note p {
  margin: 0;
  color: var(--gray);
  line-height: 1.75;
}

.cib-fit-test {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1.4fr);
  gap: clamp(42px, 7vw, 100px);
  margin-top: clamp(80px, 9vw, 130px);
  padding: clamp(34px, 5vw, 64px);
  background: var(--deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.cib-fit-test-heading {
  color: var(--white);
}

.cib-fit-test-heading h3 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.cib-fit-test-heading > p:last-child {
  margin: 22px 0 0;
  color: #9eabb6;
  line-height: 1.7;
}

.cib-test-form fieldset {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0;
  margin: 0;
  border: 0;
}

.cib-test-option {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-height: 82px;
  padding: 17px;
  color: #cbd3da;
  font-size: 0.84rem;
  line-height: 1.45;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.cib-test-option:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.cib-test-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.cib-test-option:has(input:focus-visible) {
  outline: 3px solid #e8b334;
  outline-offset: 3px;
}

.cib-custom-check {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 1px solid #73808c;
  border-radius: 5px;
  transition: background 180ms ease, border-color 180ms ease;
}

.cib-custom-check::after {
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  content: "";
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  opacity: 0;
  transform: rotate(45deg) scale(0.7);
  transition: opacity 150ms ease, transform 150ms ease;
}

.cib-test-option:has(input:checked) {
  color: var(--white);
  background: rgba(61, 139, 47, 0.15);
  border-color: rgba(91, 170, 75, 0.55);
}

.cib-test-option input:checked + .cib-custom-check {
  background: var(--green);
  border-color: var(--green);
}

.cib-test-option input:checked + .cib-custom-check::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.cib-test-result {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
  padding: 18px;
  color: var(--white);
  background: rgba(200, 150, 26, 0.1);
  border: 1px solid rgba(200, 150, 26, 0.26);
  border-radius: 12px;
  transition: background 180ms ease, border-color 180ms ease;
}

.cib-test-result[data-level="high"] {
  background: rgba(61, 139, 47, 0.11);
  border-color: rgba(61, 139, 47, 0.38);
}

.cib-test-result[data-level="complete"] {
  background: rgba(61, 139, 47, 0.19);
  border-color: rgba(117, 181, 100, 0.58);
}

.cib-result-count {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  gap: 5px;
  min-width: 68px;
  color: #d8e2d5;
}

.cib-result-count strong {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.cib-result-count small {
  margin-bottom: 3px;
  font-size: 0.67rem;
}

.cib-test-result > div {
  display: grid;
  gap: 3px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.cib-test-result p {
  margin: 0;
  color: #97a5b1;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cib-test-result > div strong {
  font-size: 0.88rem;
  line-height: 1.45;
}

.cib-manifesto {
  padding: clamp(105px, 11vw, 180px) 0;
}

.cib-manifesto-head {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.55fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 78px;
}

.cib-manifesto-head > p {
  margin: 0 0 8px;
  color: var(--gray);
  font-size: 1.02rem;
  line-height: 1.74;
}

.cib-manifesto-editorial {
  display: grid;
  grid-template-columns: 0.78fr 1.1fr;
  gap: clamp(50px, 7vw, 110px);
}

.cib-manifesto-copy {
  max-width: 600px;
  align-self: center;
}

.cib-manifesto-copy h3 {
  margin: 15px 0 25px;
  color: var(--deep);
  font-size: clamp(1.7rem, 2.7vw, 2.65rem);
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.cib-manifesto-copy p {
  margin: 0 0 18px;
  color: var(--gray);
  line-height: 1.8;
}

.cib-manifesto-image {
  min-height: 600px;
  margin: 0;
  border-radius: var(--radius-lg);
}

.cib-manifesto-image figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 16px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
  background: rgba(2, 17, 38, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.cib-manifesto-problem {
  grid-column: 2;
  padding: 30px 0 0 clamp(25px, 5vw, 80px);
  border-left: 1px solid var(--line-light);
}

.cib-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 100px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.cib-values article {
  min-height: 160px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.3);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: color 180ms ease, background 180ms ease;
}

.cib-values article:hover {
  color: var(--white);
  background: var(--navy);
}

.cib-values span {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
}

.cib-values h3 {
  max-width: 170px;
  margin: 45px 0 0;
  font-size: 1rem;
}

.cib-parallax-break {
  position: relative;
  display: grid;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  place-items: center;
}

.cib-parallax-break > img {
  position: absolute;
  inset: -55px 0 auto;
  height: calc(100% + 110px);
}

.cib-parallax-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 17, 38, 0.86), rgba(2, 17, 38, 0.36)),
    linear-gradient(180deg, rgba(2, 17, 38, 0.2), rgba(2, 17, 38, 0.74));
}

.cib-parallax-break blockquote {
  position: relative;
  z-index: 2;
  margin-block: 0;
}

.cib-parallax-break blockquote p {
  max-width: 920px;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.cib-parallax-break blockquote span {
  display: block;
  margin-top: 30px;
  color: #c3ccd4;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cib-about {
  padding: clamp(105px, 11vw, 180px) 0;
}

.cib-about-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(60px, 9vw, 135px);
}

.cib-about-media {
  min-height: 700px;
  border-radius: var(--radius-lg);
}

.cib-about-stamp {
  position: absolute;
  right: 25px;
  bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  color: var(--white);
  background: rgba(2, 17, 38, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(12px);
}

.cib-about-stamp span {
  position: absolute;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cib-about-stamp span:first-child { top: 35px; }
.cib-about-stamp span:last-child { bottom: 35px; }
.cib-about-stamp strong { color: var(--gold); font-size: 2rem; }

.cib-about-copy {
  max-width: 670px;
}

.cib-about-lead {
  margin: 34px 0 25px !important;
  color: var(--deep) !important;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.4 !important;
}

.cib-about-copy > p:not(.cib-section-kicker) {
  margin: 0 0 19px;
  color: var(--gray);
  line-height: 1.8;
}

.cib-about-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.cib-about-pillars span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: #4b594f;
  font-size: 0.74rem;
  font-weight: 700;
  background: var(--mist);
  border-radius: 7px;
}

.cib-about-pillars i {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.cib-academy {
  position: relative;
  padding: clamp(105px, 11vw, 180px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 20%, rgba(61, 139, 47, 0.16), transparent 28%),
    linear-gradient(135deg, #031833, var(--deep) 58%);
}

.cib-academy::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 58px 58px;
}

.cib-academy-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.cib-academy-copy h2 {
  color: var(--white);
  font-size: clamp(2.8rem, 4.7vw, 5rem);
}

.cib-academy-copy h2 em {
  color: #82bd77;
}

.cib-academy-copy > p:not(.cib-section-kicker) {
  margin: 30px 0 0;
  color: #aab6c0;
  line-height: 1.8;
}

.cib-academy-copy .cib-button-row {
  margin-top: 34px;
}

.cib-academy-interface {
  position: relative;
  padding: 28px 0 40px 28px;
}

.cib-interface-window {
  overflow: hidden;
  color: var(--deep);
  background: #f9faf7;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 22px;
  box-shadow: 0 35px 90px rgba(0, 4, 12, 0.46);
}

.cib-interface-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 58px;
  padding: 0 18px;
  background: var(--white);
  border-bottom: 1px solid #e3e7e0;
}

.cib-window-dots {
  display: flex;
  gap: 6px;
}

.cib-window-dots i {
  width: 7px;
  height: 7px;
  background: #cfd5ce;
  border-radius: 50%;
}

.cib-window-dots i:first-child { background: var(--gold); }
.cib-window-dots i:last-child { background: var(--green); }

.cib-interface-bar > span {
  flex: 1;
  color: #778179;
  font-size: 0.69rem;
  text-align: center;
}

.cib-interface-bar img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.cib-interface-body {
  display: grid;
  grid-template-columns: 62px 1fr;
  min-height: 430px;
}

.cib-interface-sidebar {
  display: grid;
  align-content: start;
  justify-content: center;
  gap: 20px;
  padding-top: 30px;
  background: #edf0eb;
  border-right: 1px solid #dde2da;
}

.cib-interface-sidebar i {
  width: 21px;
  height: 21px;
  border: 2px solid #acb6ad;
  border-radius: 6px;
}

.cib-interface-sidebar i:first-child {
  background: var(--green);
  border-color: var(--green);
}

.cib-benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 28px;
  background: #dfe4dd;
}

.cib-benefit-grid article {
  min-height: 175px;
  padding: 23px;
  background: var(--white);
}

.cib-benefit-grid span {
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 800;
}

.cib-benefit-grid h3 {
  margin: 27px 0 8px;
  font-size: 1rem;
}

.cib-benefit-grid p {
  margin: 0;
  color: #6e7871;
  font-size: 0.78rem;
  line-height: 1.5;
}

.cib-access-chip {
  position: absolute;
  right: -25px;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 255px;
  padding: 15px;
  color: var(--deep);
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.cib-access-chip svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  color: var(--white);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  background: var(--green);
  border-radius: 50%;
}

.cib-access-chip span {
  display: grid;
  gap: 3px;
}

.cib-access-chip strong {
  font-size: 0.82rem;
}

.cib-final-cta {
  position: relative;
  padding: clamp(100px, 11vw, 170px) 0;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(61, 139, 47, 0.12), transparent 32%),
    var(--paper);
}

.cib-final-cta::before,
.cib-final-cta::after {
  position: absolute;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(61, 139, 47, 0.12);
  border-radius: 50%;
}

.cib-final-cta::before { top: -180px; left: -110px; }
.cib-final-cta::after { right: -140px; bottom: -200px; }

.cib-final-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cib-cta-mark {
  width: 72px;
  height: 72px;
  margin-bottom: 30px;
  object-fit: contain;
}

.cib-final-cta h2 {
  max-width: 920px;
  margin: 0 auto 38px;
}

.cib-cta-microcopy {
  margin: 19px 0 0;
  color: var(--gray);
  font-size: 0.78rem;
}

.cib-site-footer {
  color: #9ba7b1;
  background: #010b18;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.cib-site-footer .cib-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 118px;
}

.cib-footer-brand img {
  width: 180px;
  height: 45px;
  object-fit: contain;
  object-position: left center;
}

.cib-site-footer p,
.cib-site-footer > div > a:last-child {
  margin: 0;
  font-size: 0.75rem;
}

.cib-site-footer > div > a:last-child {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.cib-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cib-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .cib-main-nav {
    gap: 18px;
  }

  .cib-main-nav a:nth-child(3),
  .cib-main-nav a:nth-child(4) {
    display: none;
  }

  .cib-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
    gap: 50px;
  }

  .cib-hero-stage {
    min-height: 550px;
  }

  .cib-science-orbit {
    right: -15px;
  }

  .cib-values {
    grid-template-columns: repeat(2, 1fr);
  }

  .cib-academy-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 55px;
  }
}

@media (max-width: 980px) {
  .cib-home {
    --header-height: 76px;
  }

  .cib-container,
  .cib-header-inner {
    width: min(calc(100% - 40px), var(--container));
  }

  .cib-brand img {
    width: 174px;
    height: 44px;
  }

  .cib-menu-toggle {
    z-index: 110;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
    place-content: center;
    gap: 6px;
  }

  .cib-menu-toggle span:not(.cib-sr-only) {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--white);
    transition: transform 180ms ease;
  }

  .cib-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .cib-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .cib-main-nav {
    position: fixed;
    z-index: 105;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 90px 10vw;
    visibility: hidden;
    opacity: 0;
    background: rgba(2, 17, 38, 0.985);
    transform: translateY(-10px);
    transition: visibility 220ms, opacity 220ms ease, transform 220ms ease;
  }

  .cib-main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .cib-main-nav a,
  .cib-main-nav a:nth-child(3),
  .cib-main-nav a:nth-child(4) {
    display: inline-flex;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.2rem, 4.5vw, 2rem);
  }

  .cib-main-nav .cib-nav-login {
    min-height: 50px;
    padding-inline: 20px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.95rem;
  }

  .cib-hero-grid {
    grid-template-columns: 1fr;
    gap: 65px;
    min-height: auto;
    padding-block: 85px 75px;
  }

  .cib-hero-copy {
    max-width: 760px;
  }

  .cib-hero h1 {
    font-size: clamp(5rem, 16vw, 8rem);
  }

  .cib-hero-stage {
    width: min(100%, 720px);
    min-height: 620px;
    justify-self: center;
  }

  .cib-hero-footer span:nth-child(4) {
    display: none;
  }

  .cib-section-intro,
  .cib-manifesto-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cib-section-intro .cib-section-kicker {
    margin-bottom: -8px;
  }

  .cib-section-intro > p:last-child,
  .cib-manifesto-head > p {
    max-width: 650px;
  }

  .cib-audience-layout {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 40px;
  }

  .cib-audience-photo {
    min-height: 610px;
  }

  .cib-profile-groups {
    grid-template-columns: 1fr;
  }

  .cib-fit-test {
    grid-template-columns: 1fr;
  }

  .cib-manifesto-editorial {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

  .cib-manifesto-problem {
    padding-left: 30px;
  }

  .cib-about-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
  }

  .cib-about-media {
    min-height: 600px;
  }

  .cib-academy-layout {
    grid-template-columns: 1fr;
  }

  .cib-academy-copy {
    max-width: 760px;
  }

  .cib-academy-interface {
    max-width: 760px;
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .cib-container,
  .cib-header-inner {
    width: min(calc(100% - 32px), var(--container));
  }

  .cib-home h2 {
    font-size: clamp(2.55rem, 13vw, 4.3rem);
  }

  .cib-hero {
    min-height: auto;
  }

  .cib-hero-grid {
    gap: 50px;
    padding-block: 58px 60px;
  }

  .cib-hero h1 {
    font-size: clamp(4rem, 21vw, 6rem);
  }

  .cib-hero h1 strong {
    -webkit-text-stroke-width: 1.5px;
  }

  .cib-hero-lead {
    margin-top: 28px;
    font-size: 0.97rem;
    line-height: 1.65;
  }

  .cib-button-row {
    display: grid;
  }

  .cib-button {
    width: 100%;
  }

  .cib-hero-stage {
    min-height: 530px;
  }

  .cib-hero-image-wrap {
    inset: 0 0 30px;
    border-radius: 22px;
  }

  .cib-field-card {
    top: 28px;
    left: 17px;
    width: 210px;
    color: var(--white);
    background: rgba(2, 17, 38, 0.72);
  }

  .cib-field-card small {
    color: #9cc895;
  }

  .cib-field-card-icon {
    background: var(--green);
  }

  .cib-platform-card-main {
    right: 17px;
    bottom: 0;
    width: calc(100% - 34px);
  }

  .cib-science-orbit {
    top: -20px;
    right: -30px;
    width: 100px;
    height: 100px;
  }

  .cib-hero-footer {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
  }

  .cib-hero-footer span {
    padding: 6px 9px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
  }

  .cib-hero-footer span::before {
    display: none !important;
  }

  .cib-audience-layout,
  .cib-manifesto-editorial,
  .cib-about-layout {
    grid-template-columns: 1fr;
  }

  .cib-audience-photo {
    min-height: 520px;
  }

  .cib-audience-content {
    margin-top: 8px;
  }

  .cib-profile-groups {
    grid-template-columns: 1fr;
  }

  .cib-fit-test {
    width: 100%;
    border-radius: 0;
  }

  .cib-test-form fieldset {
    grid-template-columns: 1fr;
  }

  .cib-test-option {
    min-height: 70px;
  }

  .cib-test-result {
    align-items: start;
  }

  .cib-manifesto-image {
    min-height: 500px;
  }

  .cib-manifesto-problem {
    grid-column: auto;
    padding: 35px 0 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .cib-values {
    grid-template-columns: 1fr 1fr;
    margin-top: 70px;
  }

  .cib-values article {
    min-height: 140px;
    padding: 20px;
  }

  .cib-values h3 {
    margin-top: 34px;
    font-size: 0.88rem;
  }

  .cib-parallax-break {
    min-height: 530px;
  }

  .cib-parallax-break blockquote p {
    font-size: clamp(2.25rem, 11vw, 4rem);
  }

  .cib-about-media {
    min-height: 520px;
  }

  .cib-about-copy {
    margin-top: 18px;
  }

  .cib-academy-layout {
    gap: 55px;
  }

  .cib-academy-interface {
    padding: 0 0 45px;
  }

  .cib-interface-body {
    grid-template-columns: 1fr;
  }

  .cib-interface-sidebar {
    display: none;
  }

  .cib-benefit-grid {
    padding: 14px;
  }

  .cib-benefit-grid article {
    min-height: 165px;
    padding: 18px;
  }

  .cib-benefit-grid h3 {
    margin-top: 21px;
    font-size: 0.88rem;
  }

  .cib-access-chip {
    right: 14px;
    bottom: 0;
  }

  .cib-site-footer .cib-container {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 34px;
  }
}

@media (max-width: 430px) {
  .cib-eyebrow {
    align-items: flex-start;
    font-size: 0.64rem;
    line-height: 1.45;
  }

  .cib-eyebrow span {
    margin-top: 7px;
  }

  .cib-microcopy {
    align-items: flex-start;
  }

  .cib-hero-stage {
    min-height: 510px;
  }

  .cib-platform-card-main {
    padding: 16px;
  }

  .cib-field-card {
    width: calc(100% - 34px);
  }

  .cib-science-orbit {
    display: none;
  }

  .cib-problem-note {
    grid-template-columns: 1fr;
  }

  .cib-fit-test {
    padding: 42px 16px;
  }

  .cib-test-result {
    grid-template-columns: 1fr;
  }

  .cib-test-result > div {
    padding: 14px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .cib-values {
    grid-template-columns: 1fr;
  }

  .cib-about-stamp {
    width: 125px;
    height: 125px;
  }

  .cib-about-stamp span:first-child { top: 27px; }
  .cib-about-stamp span:last-child { bottom: 27px; }

  .cib-benefit-grid {
    grid-template-columns: 1fr;
  }

  .cib-benefit-grid article {
    min-height: 145px;
  }

  .cib-access-chip {
    left: 14px;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .cib-reveal {
    opacity: 1;
    transform: none;
  }

  .cib-parallax-layer {
    transform: none !important;
  }
}

/* Correcciones de integración, navegación y responsive */

.cib-home .cib-hero-grid > *,
.cib-home .cib-hero-copy,
.cib-home .cib-hero-stage {
  min-width: 0;
  max-width: 100%;
}

.cib-home .cib-hero-copy,
.cib-home .cib-hero-stage {
  width: 100%;
}

.cib-home .cib-clinical-problem {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 20px 0 0;
  padding: 9px 12px;
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(200, 150, 26, 0.12);
  border: 1px solid rgba(200, 150, 26, 0.28);
  border-radius: 8px;
}

.cib-home .cib-clinical-problem::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.cib-home .cib-audience-photo {
  width: min(100%, 300px);
  min-height: 0;
  aspect-ratio: 246 / 280;
  justify-self: center;
  background: linear-gradient(145deg, var(--navy), #173b38);
  border: 10px solid var(--white);
  box-shadow: var(--shadow);
}

.cib-home .cib-audience-photo img {
  width: 100%;
  height: calc(100% + 24px);
  margin-top: -12px;
  object-fit: cover;
  object-position: center 38%;
}

.cib-home.is-menu-open .cib-site-header {
  transform: none !important;
}

@media (max-width: 1180px) {
  .cib-home {
    --header-height: 76px;
  }

  .cib-home .cib-menu-toggle {
    z-index: 110;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    color: var(--white);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
    place-content: center;
    gap: 6px;
  }

  .cib-home .cib-menu-toggle span:not(.cib-sr-only) {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .cib-home .cib-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .cib-home .cib-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .cib-home .cib-main-nav {
    position: fixed;
    z-index: 105;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    max-height: calc(100dvh - var(--header-height));
    padding: clamp(28px, 6vh, 56px) 10vw 40px;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background: rgba(2, 17, 38, 0.99);
    transform: none;
    transition: visibility 220ms, opacity 220ms ease;
    overscroll-behavior: contain;
  }

  .cib-home .cib-main-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .cib-home .cib-main-nav a,
  .cib-home .cib-main-nav a:nth-child(3),
  .cib-home .cib-main-nav a:nth-child(4) {
    display: inline-flex;
    flex: 0 0 auto;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.15rem, 3.2vw, 1.8rem);
  }

  .cib-home .cib-main-nav .cib-nav-login {
    min-height: 48px;
    margin-top: 4px;
    padding-inline: 20px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.95rem;
  }
}

@media (max-width: 720px) {
  .cib-home .cib-hero-grid {
    gap: 28px;
    padding-block: 38px 42px;
  }

  .cib-home .cib-hero h1 {
    max-width: 100%;
    font-size: clamp(3.35rem, 16.5vw, 4.55rem);
    letter-spacing: -0.07em;
  }

  .cib-home .cib-hero-lead {
    max-width: 100%;
    margin-top: 22px;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .cib-home .cib-hero .cib-button-row {
    margin-top: 25px;
  }

  .cib-home .cib-hero .cib-button {
    min-height: 52px;
  }

  .cib-home .cib-microcopy {
    max-width: 100%;
    margin-top: 18px;
    font-size: 0.72rem;
  }

  .cib-home .cib-hero-stage {
    min-height: 360px;
  }

  .cib-home .cib-hero-footer {
    display: none;
  }

  .cib-home .cib-field-card {
    top: 18px;
    width: calc(100% - 34px);
    padding: 11px;
  }

  .cib-home .cib-platform-card-main {
    padding: 14px;
  }

  .cib-home .cib-platform-card,
  .cib-home .cib-photo-label,
  .cib-home .cib-about-stamp,
  .cib-home .cib-live-pill {
    backdrop-filter: none;
  }

  .cib-home .cib-audience-photo {
    width: min(100%, 280px);
  }
}

@media (max-width: 430px) {
  .cib-home .cib-hero h1 {
    font-size: clamp(3.2rem, 16vw, 4.1rem);
  }

  .cib-home .cib-hero-stage {
    min-height: 330px;
  }

  .cib-home .cib-card-brand img {
    width: 36px;
    height: 36px;
  }

  .cib-home .cib-course-preview {
    margin-top: 10px;
  }
}
