@charset "UTF-8";
/* ============================================================
   Fusion Rollout Navigator – style.css
   Prefix: micro_
   ============================================================ */
* {
  font-synthesis: none;
}
/* ── CSS Variables ── */
:root {
  --micro-dark: #1a2233;
  --micro-darker: #111827;
  --micro-navy: #1e2d45;
  --micro-blue: #41b6e6;
  --micro-blue-mid: #41b6e6;
  --micro-blue-dark: #1565a8;
  --micro-phase-1: #d6ecf8;
  --micro-phase-2: #b8dff3;
  --micro-phase-3: #5ec8ef;
  --micro-phase-4: #38b6e8;
  --micro-text: #383e4d;
  --micro-text-light: #383e4d;
  --micro-bg-light: #f6fcff;
  --micro-white: #ffffff;
  --micro-border: #d6ecf8;
  --micro-resource-bg: #eefaff;
  --micro-highlight-bg: #0f1d2e;
  --micro-radius: 0.8rem;
  --micro-shadow: 0 0.2rem 1.5rem rgba(26, 34, 51, 0.08);
}

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

img {
  max-width: 100%;
  display: block;
}
   /* Safari fix: prevent entire site from rendering as italic - Variable Font Issue */
    html, body {
        font-style: normal;
        font-synthesis: none;
        font-variation-settings: "slnt" 0;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
 
    body * {
        font-style: normal;
        font-variation-settings: "slnt" 0;
    }
 
    em, i, .italic, .font-italic,
    [style*="font-style: italic"],
    [style*="font-style:italic"] {
        font-style: italic !important;
        font-variation-settings: "slnt" 10 !important;
    }
 
    .allow-italic {
        font-style: italic !important;
        font-variation-settings: "slnt" 10 !important;
    }
/* ============================================================
   HERO SECTION
   ============================================================ */
.micro_hero {
  position: relative;
  min-height: 700px;
  background: var(--micro-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* SVG background treatment */
.micro_hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.micro_hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Radial glow */
.micro_hero__glow {
  position: absolute;
  width: 43.8rem;
  height: 43.8rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(56, 182, 232, 0.12) 0%,
    transparent 70%
  );
  top: -6.2rem;
  left: -6.2rem;
  z-index: 0;
}

.micro_hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3.8rem;
  min-height:700px;
}

/* ── Hero Left ── */
.micro_hero__left {
  padding: 5rem 0;
}

.micro_hero__logo {
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(-1.2rem);
  animation: micro_fadeUp 0.6s ease 0.1s forwards;
}

.header-logo {
  position: absolute;
  top: 3.1rem;
  z-index: 3;
}

.micro_hero__title-wrap {
  opacity: 0;
  transform: translateY(1.9rem);
  animation: micro_fadeUp 0.7s ease 0.35s forwards;
}
.micro_hero__title-wrap h1 {
  margin-bottom: 0px;
}
.micro_hero__title-line1 {
  display: block;
  font-size: clamp(3.8rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--micro-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.micro_hero__title-line2 {
  display: block;
  font-size: clamp(3.8rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--micro-blue);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.micro_hero__subtitle {
  margin-top: 1.8rem;
  font-size: 1.2rem;
  color: #fff;
  opacity: 1;
  transform: translateY(1.2rem);
  animation: micro_fadeUp 0.6s ease 0.65s forwards;
  position: relative;
  display: inline-block;
  font-weight: 400;
}

/* ── Hero Right – 3-column infinite scroll conveyor ── */
.micro_hero__right {
  position: relative;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  animation: micro_fadeIn 0.9s ease 0.4s forwards;
}

.micro_hero__doc-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

/* Each column is an independent scroll track */
.micro_hero__col {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: absolute;
  width: calc((100% - 1.2rem) / 3);
  will-change: transform;
}

.micro_hero__col--1 {
  left: 0;
  animation: micro_scrollUp 3s linear;
}

.micro_hero__col--2 {
  left: calc((100% - 1.2rem) / 3 + 0.6rem);
  animation: micro_scrollDown 3s linear;
}

.micro_hero__col--3 {
  left: calc(2 * (100% - 1.2rem) / 3 + 1.2rem);
  animation: micro_scrollUp 3s linear;
}

/* Pause on hover for usability */
.micro_hero__right:hover .micro_hero__col {
  animation-play-state: paused;
}

/* ── Keyframes for columns ── */
@keyframes micro_scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20%);
  }
}
@keyframes micro_scrollDown {
  0% {
    transform: translateY(-20%);
  }
  100% {
    transform: translateY(0);
  }
}
/* ── Doc card ── */
.micro_hero__doc {
  overflow: hidden;
  flex-shrink: 0;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.micro_hero__doc:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(56, 182, 232, 0.35);
}

/* ── Keyframes ── */
@keyframes micro_fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes micro_fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes micro_lineGrow {
  to {
    width: 100%;
  }
}
/* micro_docPop removed – replaced by column scroll animations */
/* ============================================================
   INTRO / MEDIA SECTION
   ============================================================ */
.micro_intro {
  background: var(--micro-bg-light);
  padding: 6.2rem 5rem;
}

.micro_intro__inner {
  max-width: 82.5rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.micro_intro__text-lead {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 800;
  color: var(--micro-text);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.micro_intro__text-body {
  font-size: 1.2rem;
  color: #667085;
  line-height: 1.25;
}

/* Scroll reveal */
.micro_reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.micro_reveal.micro_visible {
  opacity: 1;
  transform: translateY(0);
}

.micro_reveal--delay1 {
  transition-delay: 0.15s;
}

.micro_reveal--delay2 {
  transition-delay: 0.3s;
}

/* ── Media Block ── */
.micro_media {
  position: relative;
}

.micro_media__frame {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--micro-shadow);
}

.micro_media__img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  background: #b0bec5;
}

/* Static image placeholder */
.micro_media__placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #b0bec5 0%, #90a4ae 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.micro_media__play-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  height: 53px;
  width: 177px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--micro-white);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.9rem 1.6rem;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
  white-space: nowrap;
  z-index: 2;
  border-radius: 3.2rem;
  background: rgba(0, 0, 0, 0.41);
  backdrop-filter: blur(0.7rem);
}

.micro_media__play-btn:hover {
  background: #003DA5;
  backdrop-filter: blur(0.7rem);
}

/* Decorative chevrons (bottom-right of media) */
.micro_media__deco {
  position: absolute;
  right: -4.6rem;
  bottom: -3.8rem;
  pointer-events: none;
}

/* ── Lightbox ── */
.micro_lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.micro_lightbox.micro_open {
  display: flex;
}

.micro_lightbox__inner {
  position: relative;
  width: 90%;
  max-width: 56.2rem;
}

.micro_lightbox__close {
  position: absolute;
  top: -2.8rem;
  right: 0;
  background: none;
  border: none;
  color: var(--micro-white);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.5rem;
}

.micro_lightbox__video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #000;
}

.micro_lightbox__video iframe,
.micro_lightbox__video video {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   FOUR FOCUSED PHASES SECTION
   ============================================================ */
.micro_phases {
  margin: 8.12rem 5rem;
  background: var(--micro-white);
  text-align: center;
}

.micro_phases__inner {
  max-width: 82.5rem;
  margin: 0 auto;
}

.micro_phases__heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--micro-text);
  margin-bottom: 3.8rem;
  letter-spacing: -0.02em;
}

.y0327-maturity__bar {
  display: flex;
  align-items: stretch;
  margin-bottom: 3.8rem;
  border-radius: 0.4rem;
  overflow: visible;
}

.y0327-maturity__step {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 3.8rem 1.8rem 4.2rem 1.2rem;
  justify-content: center;
}

/* Overlap so arrows connect flush */
.y0327-maturity__step + .y0327-maturity__step {
  margin-left: -1.8rem;
  padding-left: 2.5rem;
}

.y0327-maturity__step--1 {
  z-index: 1;
  background-color: #d9f0fa;
  padding-left: 1.8rem;
  clip-path: polygon(
    0 0,
    calc(100% - 1.8rem) 0,
    100% 50%,
    calc(100% - 1.8rem) 100%,
    0 100%
  );
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

/* Steps 2–4 — left notch in, arrow point on right */
.y0327-maturity__step--2 {
  z-index: 2;
  background-color: #c0e7f7;
  clip-path: polygon(
    0 0,
    1.8rem 0,
    calc(100% - 1.8rem) 0,
    100% 50%,
    calc(100% - 1.8rem) 100%,
    1.8rem 100%,
    0 100%,
    1.8rem 50%
  );
}

.y0327-maturity__step--3 {
  z-index: 3;
  background-color: #80ceee;
  clip-path: polygon(
    0 0,
    1.8rem 0,
    calc(100% - 1.8rem) 0,
    100% 50%,
    calc(100% - 1.8rem) 100%,
    1.8rem 100%,
    0 100%,
    1.8rem 50%
  );
}

.y0327-maturity__step--4 {
  z-index: 4;
  background-color: #41b6e6;
  clip-path: polygon(
    0 0,
    1.8rem 0,
    calc(100% - 1.8rem) 0,
    100% 50%,
    calc(100% - 1.8rem) 100%,
    1.8rem 100%,
    0 100%,
    1.8rem 50%
  );
}

.y0327-maturity__chevron-arrow {
  display: none;
}

/* Arrow shape: same color as the step, pointing right */
.y0327-maturity__step--1 .y0327-maturity__chevron-arrow {
  background-color: #d9f0fa;
}

.y0327-maturity__step--2 .y0327-maturity__chevron-arrow {
  background-color: #c0e7f7;
}

.y0327-maturity__step--3 .y0327-maturity__chevron-arrow {
  background-color: #80ceee;
}

.y0327-maturity__step--4 .y0327-maturity__chevron-arrow {
  background-color: #41b6e6;
}

.y0327-maturity__chevron-arrow::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: inherit;
  clip-path: polygon(0 0, 50% 0, 100% 50%, 50% 100%, 0 100%);
}

/* ---- Step text ---- */
.y0327-maturity__step-inner {
  position: relative;
  z-index: 2;
}

.y0327-maturity__step-inner a {
  text-decoration: none;
}

.y0327-maturity__step-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0rem;
}

.y0327-maturity__step--1 .y0327-maturity__step-title,
.y0327-maturity__step--2 .y0327-maturity__step-title {
  color: #383e4d;
}

.y0327-maturity__step--3 .y0327-maturity__step-title,
.y0327-maturity__step--4 .y0327-maturity__step-title {
  color: #ffffff;
}

.y0327-maturity__step--5 .y0327-maturity__step-title {
  color: #ffffff;
}

.micro_phase-step:hover {
  filter: brightness(0.94);
}

.micro_phase-step.micro_active {
  filter: brightness(0.9);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .y0327-maturity__bar {
    flex-direction: column;
    overflow: visible;
    /* critical — allows chevron point to show outside bar bounds */
  }
  .y0327-maturity__step + .y0327-maturity__step {
    padding-left: 1.2rem;
  }
  .y0327-maturity__step {
    margin-left: 0 !important;
    margin-bottom: -1.8rem;
    /* increased to match point depth */
    padding: 1.8rem 1.2rem 3.5rem;
    /* extra bottom padding so text clears the point */
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 1.8rem),
      50% 100%,
      0 calc(100% - 1.8rem)
    ) !important;
  }
  .y0327-maturity__step--1 {
    border-radius: 0.4rem 0.4rem 0 0;
    z-index: 10;
  }
  .y0327-maturity__step--2 {
    z-index: 9;
  }
  .y0327-maturity__step--3 {
    z-index: 8;
  }
  .y0327-maturity__step--4 {
    z-index: 7;
  }
  .y0327-maturity__step--5 {
    z-index: 6;
  }
  .y0327-maturity__step--5 {
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 1.8rem),
      50% 100%,
      0 calc(100% - 1.8rem)
    ) !important;
    margin-bottom: 0;
    padding-bottom: 3.5rem;
    border-radius: 0 0 0.4rem 0.4rem;
  }
}
@media (max-width: 767px) {
  .y0327-maturity__step {
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 16.2rem;
  }
  .y0327-maturity {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .y0327-maturity__actions {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .y0327-btn--outline-dark {
    justify-content: center;
  }
  .y0327-slope {
    margin-bottom: -0.1rem;
    height: 3.2rem;
  }
  .y0327-maturity__step {
    padding: 3.5rem 1.2rem 3.5rem;
  }
}
/* ============================================================
   RESOURCES SECTION
   ============================================================ */
.micro_resources {
  margin: 3.8rem 5rem 7.5rem;
  background: var(--micro-white);
}

.micro_resources__inner {
  max-width: 82.5rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 16.2rem 1fr;
  gap: 3.8rem;
  align-items: start;
}

.micro_resources__nav {
  position: sticky;
  top: 2.5rem;
}

.micro_resources__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.micro_resources__nav-item {
  font-size: 1.2rem;
  font-weight: 800 !important;
  color: var(--micro-text-light);
  cursor: pointer;
  padding: 0.4rem 0;
  border-left: 0.2rem solid transparent;
  padding-left: 0.8rem;
  transition:
    color 0.2s,
    border-color 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.micro_resources__nav-item::before {
  content: unset;
}

.micro_resources__nav-item:hover {
  color: #667085;
}

.micro_resources__nav-item.micro_active {
  color: #41b6e6;
}

/* ── Phase Panels ── */
.micro_resources__panels {
  display: flex;
  flex-direction: column;
  gap: 4.6rem;
  position: relative;
}
.micro_resources__panels::after {
  content: '';
  width: 0.1rem;
  height: 100%;
  background-color: #d9f0fa;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  z-index: 0;
}

.micro_phase-panel {
  background: #f6fcff;
  border: 0.1rem solid #d9f0fa;
  border-radius: 0.6rem;
  padding: 1.9rem 2.5rem;
  position: relative;
  z-index: 2;
}

.micro_phase-badge {
  display: inline-flex;
  align-items: center;
  background: var(--micro-phase-3);
  color: var(--micro-white);
  font-size: 1rem;
  font-weight: 800;
  padding: 0.3rem 0.9rem;
  border-radius: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.micro_phase-badge--1 {
  background: #d9f0fa;
  color: #344054;
}

.micro_phase-badge--2 {
  background: #c0e7f7;
  color: #344054;
}

.micro_phase-badge--3 {
  background: #80ceee;
  color: var(--micro-white);
}

.micro_phase-badge--4 {
  background: #41b6e6;
  color: var(--micro-white);
}

.micro_phase-panel__title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--micro-text);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.micro_phase-panel__desc {
  font-size: 1.1rem;
  color: var(--micro-text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.micro_phase-panel__resources-heading {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--micro-text);
  margin-bottom: 0.9rem;
}

/* ── Resource List ── */
.micro_resource-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.micro_resource-item {
  display: flex;
  align-items: center;
  background: var(--micro-resource-bg);
  border-radius: 0.5rem;
  padding: 0.9rem 1.1rem;
  gap: 0.9rem;
  transition: background 0.2s;
}

.micro_resource-item::before {
  content: unset;
}

.micro_resource-item:hover {
  background: #d6ecf8;
}

.micro_resource-item__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.micro_resource-item__name {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--micro-text);
  line-height: 1.4;
}

.micro_resource-item__download {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--micro-blue-mid);
  white-space: nowrap;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
}
.micro_resource-item__download:hover{
	color:#003DA5;
}
.micro_resource-item__download:hover svg path{
	stroke:#003DA5;
}
/* Resource with bullet list beneath */
.micro_resource-item--has-bullets {
  flex-direction: column;
  align-items: flex-start;
}

.micro_resource-item--has-bullets .micro_resource-item__top {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.9rem;
}

.micro_resource-item__bullets {
  margin-top: 0.6rem;
  padding-left: 2.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 100%;
  border-top: 0.1rem solid #b9bcc6;
  padding-top: 1.6rem;
}

.micro_resource-item__bullets li {
  font-size: 1rem;
  color: var(--micro-text-light);
  position: relative;
  padding-left: 0.9rem;
}

.micro_resource-item__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--micro-blue);
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: #41b6e6;
  top: 0.6rem;
}
.micro_resource-item__content {
  border-top: 1px solid rgba(185, 188, 198, 0.3);
  width: 100%;
}
.micro_resource-item__content ul {
  margin: 14px 0px;
  padding-left: 40px;
}
.micro_resource-item__content ul li {
  font-size: 1rem;
  color: var(--micro-text-light);
  position: relative;
  padding-left: 1.4rem;
}
.micro_resource-item__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--micro-blue);
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: #41b6e6;
  top: 0.6rem;
}
/* ── Working Session Highlight ── */
.micro_working-session {
  background: #111323;
  border-radius: 0.3rem;
  padding: 3.7rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  overflow: hidden;
  position: relative;
}

.micro_working-session__text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--micro-white);
  line-height: 1.4;
  margin-bottom: 0px;
}

.micro_working-session__text span {
  color: var(--micro-blue);
}

.micro_working-session__graphic {
  flex-shrink: 0;
  position: absolute;
  right: 1.6rem;
  top: 0;
  bottom: 0;
}

.micro_working-session__graphic svg {
  display: block;
  height: 100%;
}

/* ============================================================
   FOOTER
   ============================================================ */
.micro_footer {
  background: var(--micro-darker);
  padding: 2.2rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.micro_footer .col {
  display: flex;
  justify-content: space-between;
}

.micro_footer-logo {
  max-width: 8.4rem;
}

.micro_footer-content {
  display: flex;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  align-items: center;
}

.micro_footer__links {
  display: flex;
  gap: 2rem;
}

.micro_footer-links {
  display: flex;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  margin-bottom: 0rem;
}
.micro_footer-links a {
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1rem;
  color: #687086;
  display: block;
}

.micro_footer-text {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  color: #72798e;
  margin-bottom: 0rem;
}

.micro_footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.micro_footer__links a:hover {
  color: var(--micro-white);
}

.micro_footer__copy {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   UTILITIES & RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .micro_hero__inner,
  .micro_intro__inner {
    grid-template-columns: 1fr;
    padding: 3.8rem 2.5rem;
  }
	.micro_hero,.micro_hero__inner{
		min-height:unset;
		padding-bottom: 0px;
	}
	.header-logo{
		left:45px;
	}
  .micro_hero__right {
    height: 20rem;
  }
  .micro_resources__inner {
    grid-template-columns: 1fr;
  }
  .micro_resources__nav {
    position: relative;
    top: 0;
  }
  .micro_resources__nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.8rem;
  }
  .micro_resources__nav-item {
    border-left: none;
    border-bottom: 0.2rem solid transparent;
    padding-left: 0;
    padding-bottom: 0.2rem;
  }
  .micro_resources__nav-item.micro_active {
    border-bottom-color: var(--micro-blue);
  }
  .micro_intro {
    overflow: hidden;
  }
}
@media (max-width: 991px) {
  .micro_footer .col {
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
  }
  .micro_footer-content {
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
  }
  .micro_hero__left {
    padding-bottom: 0rem;
  }
  .micro_phase-panel {
    padding: 2.5rem 1.2rem;
  }
}
@media (max-width: 767px) {
  .micro_hero,
  .micro_intro,
  .micro_phases,
  .micro_resources {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .micro_resources {
    margin: 5.8rem 0 4rem 0;
  }
  .micro_phases {
    margin: 4rem 0 5.8rem 0;
  }
  .micro_hero__inner {
    min-height: auto;
    padding: 5rem 1.5rem 3.8rem;
  }
  .micro_phases__bar {
    flex-direction: column;
  }
  .micro_phase-step {
    clip-path: none !important;
    margin-left: 0 !important;
    border-radius: 0.4rem;
    margin-bottom: 0.2rem;
  }
  .micro_footer {
    flex-direction: column;
    text-align: center;
    padding: 1.8rem 1rem;
  }
  .micro_resources__nav-list {
    flex-direction: column;
  }
  .micro_resource-item,
  .micro_resource-item--has-bullets .micro_resource-item__top {
    flex-wrap: wrap;
  }
  .micro_resource-item__download {
    width: 100%;
    padding-left: 3.1rem;
  }
  .micro_hero__inner,
  .micro_intro__inner {
    padding: 0rem;
  }
  .micro_hero,
  .micro_phases,
  .micro_resources {
    padding: 0 1rem;
  }
  .micro_intro {
    padding: 4rem 1;
  }
  .micro_working-session__text {
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .micro_working-session__graphic::before {
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
  }
  .micro_working-session__graphic svg {
    width: 100%;
  }
  .micro_working-session__graphic {
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .micro_working-session {
    padding: 1.6rem 2.2rem;
  }
  .micro_resources__nav {
    display: none;
  }
  .micro_hero__left {
    padding: 10rem 0 0 0;
  }
  .micro_hero {
    min-height: unset;
  }
  .micro_hero__right {
    margin-left: -16px;
    margin-right: -16px;
  }
	    .header-logo {
        left: 20px;
    }
}
@media (min-width: 1024px) {
  .y0327-maturity__step {
    padding: 3.8rem 0.8rem 4.2rem 1.2rem;
  }
  .header-logo,
  .micro_hero__left {
    padding-left: 15.2vw;
  }
}
