@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");

:root {
  --c-orange: #FF610A;
  --c-blue: #0B2B3D;
  --c-white: #F2F6F8;
  --c-gray: #BCCAD2;

  --ink: var(--c-white);
  --ink-soft: var(--c-gray);
  --line: rgba(188, 202, 210, 0.2);
  --card: rgba(188, 202, 210, 0.08);
  --card-line: rgba(242, 246, 248, 0.12);
  --shadow: 0 22px 60px rgba(11, 43, 61, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background: var(--c-blue);
  min-height: 100vh;
}

body::before,
body::after {
  display: none;
}

.wrap {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-header .wrap {
  width: min(1300px, 92%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  height: 56px;
  padding-top: 0;
  background: transparent;
  backdrop-filter: none;
}

.home-page .site-header {
  z-index: 220;
}

.header-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  min-height: 56px;
  align-items: center;
  gap: 0.72rem;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: 56px;
  height: 56px;
  border-radius: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.brand-mark img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.mobile-brand,
.menu-toggle,
.umu-link-mobile {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

.site-header.header-blue-mode .brand-mark img {
  /* Approximate #0B2B3D for monochrome svg/icon assets */
  filter: brightness(0) saturate(100%) invert(13%) sepia(34%) saturate(1282%) hue-rotate(165deg) brightness(92%) contrast(95%);
}

.nav-shell {
  background: transparent;
  border: 0;
  border-radius: 0;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 0;
  box-shadow: none;
  overflow: visible;
}

.main-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
  overflow: visible;
  scrollbar-width: none;
  align-items: center;
  justify-content: center;
  width: auto;
}

.main-nav > a {
  text-decoration: none;
  color: #F2F6F8;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 400;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 0.24rem 0.42rem;
  white-space: nowrap;
}

.main-nav > a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.56);
}

.main-nav > a.active {
  color: #FF610A;
  border-bottom-color: rgba(255, 97, 10, 0.86);
}

.nav-group {
  position: relative;
}

.nav-group summary {
  list-style: none;
  cursor: pointer;
  text-decoration: none;
  color: #F2F6F8;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 400;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 0.24rem 0.42rem;
  white-space: nowrap;
  user-select: none;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.56);
}

.nav-group.is-active summary {
  color: #FF610A;
  border-bottom-color: rgba(255, 97, 10, 0.86);
}

.nav-drop {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  padding: 0.55rem 0.4rem 0.45rem;
  border: 1px solid rgba(242, 246, 248, 0.95);
  background: transparent;
  backdrop-filter: none;
  display: none;
  z-index: 50;
}

.nav-drop a {
  display: block;
  text-decoration: none;
  color: #F2F6F8;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 400;
  border-radius: 0;
  border: 0;
  border-left: 2px solid transparent;
  padding: 0.34rem 0.45rem;
}

.nav-drop a:hover {
  color: #FF610A;
  border-left-color: rgba(255, 97, 10, 0.9);
  background: transparent;
}

.nav-drop a.active {
  color: #FF610A;
  border-left-color: rgba(255, 97, 10, 0.86);
}

.nav-group[open] .nav-drop,
.nav-group:hover .nav-drop,
.nav-group:focus-within .nav-drop {
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .nav-group:hover > summary {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.56);
  }
}

.umu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 0.25rem;
  height: 34px;
  min-width: 72px;
  border-radius: 0;
  border: 0;
  background: transparent;
  padding: 0.1rem 0.25rem;
  text-decoration: none;
  color: #F2F6F8;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.umu-link span {
  font-size: 0.8rem;
  line-height: 1;
}

.umu-link:hover {
  transform: scale(1.06);
  border-color: transparent;
  background: transparent;
  color: #FF610A;
}

.site-header.header-blue-mode .main-nav > a,
.site-header.header-blue-mode .nav-group summary,
.site-header.header-blue-mode .nav-drop a,
.site-header.header-blue-mode .umu-link {
  color: #0B2B3D;
}

.site-header.header-blue-mode .main-nav > a:hover,
.site-header.header-blue-mode .nav-group summary:hover,
.site-header.header-blue-mode .nav-drop a:hover,
.site-header.header-blue-mode .umu-link:hover {
  color: #0B2B3D;
  border-bottom-color: rgba(11, 43, 61, 0.6);
  border-left-color: rgba(11, 43, 61, 0.6);
}

.site-header.header-blue-mode .main-nav > a.active,
.site-header.header-blue-mode .nav-group.is-active summary,
.site-header.header-blue-mode .nav-drop a.active {
  color: #0B2B3D;
  border-bottom-color: rgba(11, 43, 61, 0.92);
  border-left-color: rgba(11, 43, 61, 0.92);
}

.content {
  padding: 1.2rem 0 3.2rem;
}

.content-tight-top {
  padding-top: 0;
}

.hero-stage {
  position: relative;
  min-height: 100svh;
  border: 0;
  border-radius: 0;
  padding: clamp(1rem, 2.2vw, 1.7rem);
  margin-bottom: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, #0B2B3D 0%, #0B2B3D 46%, #0B2B3D 100%);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-stage-home {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  padding-top: 0;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
  will-change: transform, z-index;
}

.hero-stage::before {
  width: min(1320px, 116vw);
  height: min(980px, 92vh);
  top: -6vh;
  right: -18vw;
  background: radial-gradient(76% 64% at 88% 12%, rgba(255, 97, 10, 0.99) 0%, rgba(216, 61, 14, 0.9) 34%, rgba(120, 28, 14, 0.58) 56%, rgba(110, 24, 12, 0.26) 72%, rgba(110, 24, 12, 0) 88%);
  filter: blur(1px);
  z-index: 1;
}

.hero-stage::after {
  width: min(1380px, 122vw);
  height: min(1040px, 98vh);
  left: -24vw;
  bottom: -8vh;
  background: radial-gradient(78% 74% at 10% 90%, rgba(242, 246, 248, 0.99) 0%, rgba(210, 223, 230, 0.86) 34%, rgba(124, 154, 167, 0.52) 56%, rgba(11, 43, 61, 0.22) 74%, rgba(9, 31, 48, 0) 90%);
  filter: blur(1px);
  z-index: 0;
}

.hero-stage-home::before {
  animation: hero-orange-vibe 7s ease-in-out infinite;
}

.hero-stage-home::after {
  animation: hero-white-vibe 8.5s ease-in-out infinite;
}

@keyframes hero-orange-vibe {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-2.4vw, 3.2vh) scale(1.02);
  }
  50% {
    transform: translate(1.8vw, -2.4vh) scale(0.99);
  }
  75% {
    transform: translate(-1.6vw, 2vh) scale(1.015);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes hero-white-vibe {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(2.6vw, -3.4vh) scale(0.99);
  }
  50% {
    transform: translate(-2vw, 2.6vh) scale(1.02);
  }
  75% {
    transform: translate(1.5vw, -1.9vh) scale(1.01);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

.hero-brand {
  position: relative;
  z-index: 2;
  width: min(860px, 88%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  text-align: center;
}

.hero-brand img {
  width: min(360px, 68%);
  margin: 0 auto;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.4));
}

.hero-brand p {
  margin: 0;
  max-width: 900px;
  color: rgba(234, 238, 242, 0.9);
  font-size: clamp(0.6rem, 1.15vw, 0.8rem);
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0 0;
  padding: 0.62rem 1rem;
  border: 1px solid #F2F6F8;
  border-radius: 8px;
  color: #F2F6F8;
  background: transparent;
  text-decoration: none;
  font-size: clamp(0.7rem, 0.95vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.hero-cta:hover {
  background: #FF610A;
  border-color: transparent;
  color: #F2F6F8;
}

.hero-stage-subpage {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  padding-top: 0;
}

.hero-center-title {
  position: relative;
  z-index: 2;
  width: min(1300px, 92%);
  margin: 0 auto;
  text-align: center;
}

.hero-center-title h1 {
  margin: 0;
  margin-left: 0;
  max-width: 48%;
  display: inline-block;
  text-align: center;
  color: #F2F6F8;
  font-size: clamp(2rem, 5.4vw, 5.2rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-wrap: normal;
}

.hero-year-light {
  font-weight: 300;
  opacity: 0.72;
}

.areas-page .hero-center-title h1 {
  max-width: none;
}

.hero-title-line {
  display: inline-flex;
  align-items: center;
  gap: 0.22em;
}

.hero-title-icon {
  width: 1em;
  height: 1em;
  object-fit: contain;
}

.mobile-line-break {
  display: none;
}


.intico-summary-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  background: #FF610A;
  padding: clamp(5rem, 11vw, 8.8rem) clamp(1rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.7rem;
}

body:not(.home-page) .intico-summary-band {
  padding: clamp(3.6rem, 8.4vw, 5.9rem) clamp(1rem, 4vw, 3rem);
  gap: 1rem;
}

.intico-summary-band p {
  margin: 0;
  max-width: 62ch;
  color: #F2F6F8;
  background: linear-gradient(90deg, #FFFFFF, #BCCAD2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(1.55rem, 2.65vw, 2.2rem);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
  text-wrap: balance;
}

.summary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.68rem 1.08rem;
  border: 1px solid #F2F6F8;
  border-radius: 8px;
  color: #F2F6F8;
  background: transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(0.72rem, 0.95vw, 0.84rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.summary-cta:hover {
  background: #0B2B3D;
  border-color: transparent;
  color: #F2F6F8;
}

.intico-research-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--c-blue);
  padding: clamp(5rem, 11vh, 8rem) 0 clamp(5rem, 10vh, 7rem);
}

.intico-research-head {
  width: min(1300px, 96%);
  margin: 0 auto;
}

.intico-research-band h2 {
  margin: 0 0 clamp(2.2rem, 5vh, 3.3rem);
  padding-bottom: 0;
  border-bottom: 0;
  width: 40%;
  text-align: left;
  text-transform: none;
  font-size: clamp(1.8rem, 3.6vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: 0.01em;
  font-weight: 500;
  background: linear-gradient(90deg, #FFFFFF, #BCCAD2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intico-research-grid {
  width: min(1300px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.8vw, 2.8rem);
}

.intico-research-grid article {
  padding: clamp(0.9rem, 2vw, 1.4rem) 0 0;
  border-top: 1px solid rgba(188, 202, 210, 0.3);
}

.intico-research-grid h3 {
  margin: 0 0 0.8rem;
  color: #F2F6F8;
  font-size: clamp(1rem, 1.65vw, 1.35rem);
  font-weight: 500;
  line-height: 1.2;
}

.intico-research-grid p {
  margin: 0;
  max-width: none;
  color: #BCCAD2;
  font-size: clamp(0.92rem, 1.1vw, 1.04rem);
  line-height: 1.66;
}

.structure-plan-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #0B2B3D;
  padding: clamp(5rem, 11vh, 8rem) 0 clamp(5rem, 10vh, 7.2rem);
}

.structure-plan-wrap {
  width: min(1300px, 92%);
  margin: 0 auto;
}

.structure-plan-wrap h2 {
  margin: 0 0 clamp(2.2rem, 5vh, 3.3rem);
  padding-bottom: 43px;
  border-bottom: 1px solid rgba(188, 202, 210, 0.35);
  width: 40%;
  color: #F2F6F8;
  font-size: clamp(1.9rem, 3.7vw, 3.2rem);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.structure-plan-wrap p {
  margin: 0 0 0.9rem;
  max-width: 116ch;
  color: #BCCAD2;
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
  line-height: 1.65;
}

.structure-plan-wrap ul {
  margin: 0.5rem 0 1rem 1.15rem;
  padding: 0;
  max-width: 116ch;
}

.structure-plan-wrap li {
  margin: 0 0 0.46rem;
  color: #BCCAD2;
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
  line-height: 1.62;
}

.structure-plan-note {
  margin-top: 2.7rem !important;
}

.structure-plan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  padding: 0.66rem 1.06rem;
  border: 1px solid #F2F6F8;
  border-radius: 8px;
  color: #F2F6F8;
  background: transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(0.72rem, 0.95vw, 0.84rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.structure-plan-cta:hover {
  background: #FF610A;
  border-color: transparent;
  color: #F2F6F8;
}

.structure-services-band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #F2F6F8;
  padding: clamp(5rem, 11vh, 8rem) 0 clamp(5rem, 10vh, 7.5rem);
  overflow: hidden;
}

.structure-services-band::before {
  content: "";
  position: absolute;
  width: min(1560px, 116vw);
  height: min(1240px, 98vh);
  right: -30vw;
  top: -30vh;
  background: radial-gradient(76% 64% at 88% 12%, rgba(11, 43, 61, 0.96) 0%, rgba(11, 43, 61, 0.56) 38%, rgba(11, 43, 61, 0.18) 66%, rgba(11, 43, 61, 0) 86%);
  filter: blur(1px);
  pointer-events: none;
}

.structure-services-band::after {
  content: "";
  position: absolute;
  width: min(1560px, 116vw);
  height: min(1240px, 98vh);
  left: -30vw;
  bottom: -30vh;
  background: radial-gradient(76% 64% at 12% 88%, rgba(11, 43, 61, 0.96) 0%, rgba(11, 43, 61, 0.56) 38%, rgba(11, 43, 61, 0.18) 66%, rgba(11, 43, 61, 0) 86%);
  filter: blur(1px);
  pointer-events: none;
}

.structure-services-wrap {
  width: min(1300px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.structure-services-wrap h2 {
  margin: 0 0 clamp(2.2rem, 5vh, 3.3rem);
  padding-bottom: 43px;
  border-bottom: 1px solid rgba(11, 43, 61, 0.35);
  width: 40%;
  color: #0B2B3D;
  font-size: clamp(1.9rem, 3.7vw, 3.2rem);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.structure-services-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.8vw, 2.8rem);
  align-items: start;
}

.structure-services-columns > div {
  min-width: 0;
}

.structure-services-wrap p {
  margin: 0 0 0.9rem;
  max-width: 116ch;
  color: #0B2B3D;
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
  line-height: 1.65;
}

.structure-services-wrap ul {
  margin: 0.5rem 0 1rem 1.15rem;
  padding: 0;
  max-width: 116ch;
}

.structure-services-wrap li {
  margin: 0 0 0.46rem;
  color: #0B2B3D;
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
  line-height: 1.62;
}

.structure-governance-band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #FF610A;
  padding: clamp(5rem, 11vh, 8rem) 0 clamp(5rem, 10vh, 7.5rem);
  overflow: hidden;
}

.structure-governance-band::before {
  content: "";
  position: absolute;
  width: min(1120px, 82vw);
  height: min(920px, 74vh);
  left: -22vw;
  top: -20vh;
  background: radial-gradient(76% 64% at 12% 12%, rgba(242, 246, 248, 0.98) 0%, rgba(210, 223, 230, 0.56) 38%, rgba(188, 202, 210, 0.15) 66%, rgba(188, 202, 210, 0) 86%);
  filter: blur(1px);
  pointer-events: none;
}

.structure-governance-band::after {
  content: "";
  position: absolute;
  width: min(1120px, 82vw);
  height: min(920px, 74vh);
  right: -22vw;
  bottom: -20vh;
  background: radial-gradient(76% 64% at 88% 88%, rgba(242, 246, 248, 0.98) 0%, rgba(210, 223, 230, 0.56) 38%, rgba(188, 202, 210, 0.15) 66%, rgba(188, 202, 210, 0) 86%);
  filter: blur(1px);
  pointer-events: none;
}

.structure-governance-wrap {
  width: min(1300px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.structure-governance-wrap h2 {
  margin: 0 0 clamp(2.2rem, 5vh, 3.3rem);
  padding-bottom: 0;
  border-bottom: 0;
  width: 40%;
  color: #F2F6F8;
  font-size: clamp(1.9rem, 3.7vw, 3.2rem);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.structure-governance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.8vw, 2.8rem);
}

.structure-governance-grid article {
  padding-top: clamp(0.9rem, 2vw, 1.4rem);
  border-top: 1px solid rgba(242, 246, 248, 0.35);
}

.structure-governance-grid h3 {
  margin: 0 0 0.8rem;
  color: #F2F6F8;
  font-size: clamp(1rem, 1.65vw, 1.35rem);
  font-weight: 500;
  line-height: 1.2;
}

.structure-governance-grid p {
  margin: 0 0 0.9rem;
  max-width: none;
  color: #F2F6F8;
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
  line-height: 1.65;
}

.structure-governance-cta-wrap {
  margin: 0 0 0.9rem !important;
  padding-top: 2rem;
  text-align: center;
}

.structure-governance-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.66rem 1.06rem;
  border: 1px solid #F2F6F8;
  border-radius: 8px;
  color: #F2F6F8;
  background: transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(0.72rem, 0.95vw, 0.84rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.structure-governance-cta:hover {
  background: #0B2B3D;
  border-color: transparent;
  color: #F2F6F8;
}

.groups-overview-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #0B2B3D;
  padding: clamp(5rem, 11vh, 8rem) 0 clamp(5rem, 10vh, 7.2rem);
}

.groups-overview-wrap {
  width: min(1300px, 92%);
  margin: 0 auto;
}

.groups-overview-wrap h2 {
  margin: 0 0 clamp(2.2rem, 5vh, 3.3rem);
  padding-bottom: 43px;
  border-bottom: 1px solid rgba(188, 202, 210, 0.35);
  width: 40%;
  color: #F2F6F8;
  font-size: clamp(1.9rem, 3.7vw, 3.2rem);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.groups-overview-wrap p {
  margin: 0 0 0.9rem;
  max-width: 116ch;
  color: #BCCAD2;
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
  line-height: 1.65;
}

.groups-overview-cta-wrap {
  margin: 1.5rem 0 1.8rem !important;
  text-align: center;
}

.groups-overview-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.66rem 1.06rem;
  border: 1px solid #F2F6F8;
  border-radius: 8px;
  color: #F2F6F8;
  background: transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(0.72rem, 0.95vw, 0.84rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.groups-overview-cta:hover {
  background: #FF610A;
  border-color: transparent;
  color: #F2F6F8;
}

.groups-duo-band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #F2F6F8;
  padding: clamp(5rem, 11vh, 8rem) 0 clamp(5rem, 10vh, 7.2rem);
  overflow: hidden;
}

.groups-duo-band::before {
  content: "";
  position: absolute;
  width: min(1560px, 116vw);
  height: min(1240px, 98vh);
  right: -30vw;
  top: -30vh;
  background: radial-gradient(76% 64% at 88% 12%, rgba(11, 43, 61, 0.96) 0%, rgba(11, 43, 61, 0.56) 38%, rgba(11, 43, 61, 0.18) 66%, rgba(11, 43, 61, 0) 86%);
  filter: blur(1px);
  pointer-events: none;
}

.groups-duo-band::after {
  content: "";
  position: absolute;
  width: min(1560px, 116vw);
  height: min(1240px, 98vh);
  left: -30vw;
  bottom: -30vh;
  background: radial-gradient(76% 64% at 12% 88%, rgba(11, 43, 61, 0.96) 0%, rgba(11, 43, 61, 0.56) 38%, rgba(11, 43, 61, 0.18) 66%, rgba(11, 43, 61, 0) 86%);
  filter: blur(1px);
  pointer-events: none;
}

.groups-duo-wrap {
  width: min(1300px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.groups-duo-wrap h2 {
  margin: 0 0 clamp(2.2rem, 5vh, 3.3rem);
  padding-bottom: 0;
  border-bottom: 0;
  width: 58%;
  color: #0B2B3D;
  font-size: clamp(1.9rem, 3.7vw, 3.2rem);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.groups-duo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.8vw, 2.8rem);
}

.groups-duo-grid article {
  padding-top: clamp(0.9rem, 2vw, 1.4rem);
  border-top: 1px solid rgba(11, 43, 61, 0.28);
  display: flex;
  flex-direction: column;
}

.groups-duo-grid h3 {
  margin: 0 0 0.8rem;
  color: #0B2B3D;
  font-size: clamp(1rem, 1.55vw, 1.26rem);
  font-weight: 600;
  line-height: 1.26;
  letter-spacing: 0.01em;
}

.groups-duo-grid p {
  margin: 0 0 0.9rem;
  max-width: none;
  color: #0B2B3D;
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
  line-height: 1.65;
}

.groups-card-cta-wrap {
  margin: 1.5rem 0 1.2rem !important;
  margin-top: auto !important;
  padding-top: 1.5rem;
  text-align: center;
}

.groups-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.66rem 1.06rem;
  border: 1px solid #0B2B3D;
  border-radius: 8px;
  color: #0B2B3D;
  background: transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(0.72rem, 0.95vw, 0.84rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.groups-card-cta:hover {
  background: #0B2B3D;
  border-color: transparent;
  color: #F2F6F8;
}

.activities-module {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(4.2rem, 9vh, 6.4rem) 0;
}

.activities-module-wrap {
  width: min(1300px, 92%);
  margin: 0 auto;
}

.activities-module-wrap h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 2.9vw, 2.4rem);
  line-height: 1.08;
  font-weight: 500;
  text-transform: none;
}

.activities-module-wrap p {
  margin: 0;
  max-width: 112ch;
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
  line-height: 1.68;
}

.activities-module-gray {
  background: #BCCAD2;
}

.activities-module-gray .activities-module-wrap h2,
.activities-module-gray .activities-module-wrap p {
  color: #0B2B3D;
}

.activities-module-orange {
  background: #FF610A;
}

.activities-module-orange .activities-module-wrap h2,
.activities-module-orange .activities-module-wrap p {
  color: #F2F6F8;
}

.activities-module-white {
  background: #F2F6F8;
}

.activities-module-white .activities-module-wrap h2,
.activities-module-white .activities-module-wrap p {
  color: #0B2B3D;
}

.activities-module-blue {
  background: #0B2B3D;
}

.activities-module-blue .activities-module-wrap h2,
.activities-module-blue .activities-module-wrap p {
  color: #F2F6F8;
}

.activities-mini-band {
  padding: clamp(3.2rem, 7.2vh, 5rem) 0 clamp(3.4rem, 7.6vh, 5.2rem);
}

.activities-mini-wrap {
  width: min(980px, 92%);
  margin: 0 auto;
  text-align: center;
}

.activities-mini-wrap p {
  margin: 0 auto;
  max-width: 96ch;
  color: #0B2B3D;
  font-size: clamp(0.84rem, 0.95vw, 0.92rem);
  line-height: 1.6;
}

.activities-mini-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.66rem 1.06rem;
  border: 1px solid #0B2B3D;
  border-radius: 8px;
  color: #0B2B3D;
  background: transparent;
  text-decoration: none;
  font-size: clamp(0.72rem, 0.95vw, 0.84rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.activities-mini-cta:hover {
  background: #FF610A;
  border-color: transparent;
  color: #F2F6F8;
}

.areas-basic-band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #0B2B3D;
  padding: clamp(5rem, 11vh, 8rem) 0 clamp(5rem, 10vh, 7.5rem);
  overflow: hidden;
}

.areas-basic-band::before {
  content: "";
  position: absolute;
  width: min(1120px, 82vw);
  height: min(920px, 74vh);
  right: -22vw;
  top: -20vh;
  background: radial-gradient(76% 64% at 88% 12%, rgba(242, 246, 248, 0.98) 0%, rgba(210, 223, 230, 0.56) 38%, rgba(188, 202, 210, 0.15) 66%, rgba(188, 202, 210, 0) 86%);
  filter: blur(1px);
  pointer-events: none;
}

.areas-basic-band::after {
  content: "";
  position: absolute;
  width: min(1120px, 82vw);
  height: min(920px, 74vh);
  left: -22vw;
  bottom: -20vh;
  background: radial-gradient(76% 64% at 12% 88%, rgba(242, 246, 248, 0.98) 0%, rgba(210, 223, 230, 0.56) 38%, rgba(188, 202, 210, 0.15) 66%, rgba(188, 202, 210, 0) 86%);
  filter: blur(1px);
  pointer-events: none;
}

.areas-basic-wrap {
  width: min(1300px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.areas-basic-wrap h2 {
  margin: 0 0 clamp(2.2rem, 5vh, 3.3rem);
  padding-bottom: 43px;
  border-bottom: 1px solid rgba(242, 246, 248, 0.35);
  width: 40%;
  color: #F2F6F8;
  font-size: clamp(1.9rem, 3.7vw, 3.2rem);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.areas-basic-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.2rem, 2.8vw, 2.8rem);
  align-items: start;
}

.areas-basic-copy p {
  margin: 0 0 0.9rem;
  max-width: none;
  color: #BCCAD2;
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
  line-height: 1.65;
}

.areas-basic-figure {
  margin: 0;
  height: 330px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: visible;
}

.areas-basic-diagram {
  --areas-basic-scale: 0.7728;
  width: min(450px, 100%);
  margin-left: auto;
  border: 1px solid rgba(242, 246, 248, 0.72);
  background: transparent;
  border-radius: 36px;
  padding: clamp(1rem, 1.7vw, 1.4rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.58rem, 1vw, 0.82rem);
  transform: scale(var(--areas-basic-scale));
  transform-origin: top right;
  translate: -90px 0;
}

.areas-basic-node {
  min-height: clamp(104px, 13.5vw, 146px);
  border-radius: 24px;
  background: #F2F6F8;
  color: var(--c-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(0.95rem, 1.3vw, 1.34rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  font-weight: 500;
  padding: 0.8rem;
  text-wrap: balance;
}

.areas-basic-caption {
  grid-column: 1 / -1;
  margin: clamp(0.55rem, 1.2vw, 0.9rem) 0 0;
  text-align: center;
  color: #F2F6F8;
  font-size: clamp(0.9rem, 1.35vw, 1.28rem);
  line-height: 1.2;
  letter-spacing: 0.035em;
  font-weight: 500;
}

.areas-basic-caption span {
  font-weight: 300;
  opacity: 0.72;
}

.areas-basic-diagram--oriented {
  position: relative;
  display: block;
  width: 640px;
  max-width: none;
  translate: 0 0;
}

.areas-oriented-core {
  width: min(422px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.58rem, 1vw, 0.82rem);
}

.areas-oriented-band .areas-basic-figure {
  width: 640px;
  max-width: none;
  transform: translateX(-145px);
}

.areas-oriented-prospecting {
  position: absolute;
  right: clamp(1rem, 1.7vw, 1.4rem);
  top: clamp(1rem, 1.7vw, 1.4rem);
  width: auto;
  min-width: 138px;
  max-width: 152px;
  height: calc((clamp(104px, 13.5vw, 146px) * 2) + clamp(0.58rem, 1vw, 0.82rem));
  border: 2px dashed rgba(242, 246, 248, 0.95);
  border-radius: 22px;
  background: rgba(242, 246, 248, 0.75);
  color: #FF610A;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(0.84rem, 1.18vw, 1.2rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  font-weight: 500;
  text-wrap: balance;
  padding: 0.65rem;
}

.areas-basic-diagram--oriented .areas-basic-node,
.areas-basic-diagram--oriented .areas-oriented-prospecting {
  color: #FF610A;
}

.areas-basic-diagram--oriented .areas-basic-caption {
  margin-top: clamp(0.7rem, 1.3vw, 1rem);
}

.areas-oriented-band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #FF610A;
  padding: clamp(5rem, 11vh, 8rem) 0 clamp(5rem, 10vh, 7.5rem);
  overflow: hidden;
}

.areas-oriented-band::before {
  content: "";
  position: absolute;
  width: min(1120px, 82vw);
  height: min(920px, 74vh);
  left: -22vw;
  top: -20vh;
  background: radial-gradient(76% 64% at 12% 12%, rgba(242, 246, 248, 0.98) 0%, rgba(210, 223, 230, 0.56) 38%, rgba(188, 202, 210, 0.15) 66%, rgba(188, 202, 210, 0) 86%);
  filter: blur(1px);
  pointer-events: none;
}

.areas-oriented-band::after {
  content: "";
  position: absolute;
  width: min(1120px, 82vw);
  height: min(920px, 74vh);
  right: -22vw;
  bottom: -20vh;
  background: radial-gradient(76% 64% at 88% 88%, rgba(242, 246, 248, 0.98) 0%, rgba(210, 223, 230, 0.56) 38%, rgba(188, 202, 210, 0.15) 66%, rgba(188, 202, 210, 0) 86%);
  filter: blur(1px);
  pointer-events: none;
}

.areas-oriented-band .areas-basic-wrap {
  position: relative;
  z-index: 1;
}

.areas-oriented-band .areas-basic-wrap h2 {
  color: #F2F6F8;
  border-bottom-color: rgba(242, 246, 248, 0.35);
}

.areas-oriented-copy p {
  color: #F2F6F8;
}

.areas-oriented-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.9rem;
  padding: 0.66rem 1.06rem;
  border: 1px solid #F2F6F8;
  border-radius: 8px;
  color: #F2F6F8;
  background: transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(0.72rem, 0.95vw, 0.84rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.areas-oriented-cta:hover {
  background: #0B2B3D;
  border-color: transparent;
  color: #F2F6F8;
}

.areas-applied-band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #F2F6F8;
  padding: clamp(5rem, 11vh, 8rem) 0 clamp(5rem, 10vh, 7.5rem);
  overflow: hidden;
}

.areas-applied-band::before {
  content: "";
  position: absolute;
  width: min(1560px, 116vw);
  height: min(1240px, 98vh);
  right: -30vw;
  top: -30vh;
  background: radial-gradient(76% 64% at 88% 12%, rgba(11, 43, 61, 0.96) 0%, rgba(11, 43, 61, 0.56) 38%, rgba(11, 43, 61, 0.18) 66%, rgba(11, 43, 61, 0) 86%);
  filter: blur(1px);
  pointer-events: none;
}

.areas-applied-band::after {
  content: "";
  position: absolute;
  width: min(1560px, 116vw);
  height: min(1240px, 98vh);
  left: -30vw;
  bottom: -30vh;
  background: radial-gradient(76% 64% at 12% 88%, rgba(11, 43, 61, 0.96) 0%, rgba(11, 43, 61, 0.56) 38%, rgba(11, 43, 61, 0.18) 66%, rgba(11, 43, 61, 0) 86%);
  filter: blur(1px);
  pointer-events: none;
}

.areas-applied-wrap {
  width: min(1300px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.areas-applied-wrap h2 {
  margin: 0 0 clamp(2.2rem, 5vh, 3.3rem);
  padding-bottom: 43px;
  border-bottom: 1px solid rgba(11, 43, 61, 0.35);
  width: 40%;
  color: #0B2B3D;
  font-size: clamp(1.9rem, 3.7vw, 3.2rem);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.areas-applied-wrap > p {
  margin: 0 0 0.9rem;
  max-width: 116ch;
  color: #0B2B3D;
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
  line-height: 1.65;
}

.areas-applied-feature {
  margin-top: clamp(2rem, 4.5vh, 3rem);
}

.areas-applied-feature h3 {
  margin: clamp(2.8rem, 5.6vh, 4rem) 0 1.1rem;
  padding-top: clamp(2.4rem, 4.4vh, 3.2rem);
  border-top: 1px solid rgba(11, 43, 61, 0.35);
  color: #0B2B3D;
  font-size: clamp(1rem, 1.65vw, 1.35rem);
  font-weight: 500;
  line-height: 1.2;
}

.areas-applied-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.3vw, 2rem);
}

.areas-applied-feature-grid p {
  margin: 0;
  color: #0B2B3D;
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
  line-height: 1.65;
}

.areas-applied-feature-figure {
  margin: clamp(1.8rem, 3.8vh, 2.8rem) auto 0;
  max-width: min(1320px, 98%);
}

.areas-applied-trio {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: max-content max-content 220px;
  gap: clamp(0.7rem, 1.2vw, 1rem);
  align-items: stretch;
  justify-content: center;
  isolation: isolate;
  z-index: 0;
  transform: translateX(-45px);
  --applied-arrow-color: #2F4F63;
  --applied-arrow-shaft-height: 164px;
  --applied-arrow-head-height: 228px;
  --applied-arrow-head-width: 96px;
  --applied-arrow-left-overhang: 52px;
}

.areas-applied-trio::before {
  content: "";
  position: absolute;
  left: calc(var(--applied-arrow-left-overhang) * -1);
  right: var(--applied-arrow-head-width);
  top: 50%;
  height: var(--applied-arrow-shaft-height);
  background: var(--applied-arrow-color);
  border-radius: 0;
  transform: translateY(-50%);
  z-index: -1;
  pointer-events: none;
}

.areas-applied-trio::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: var(--applied-arrow-head-width);
  height: var(--applied-arrow-head-height);
  background: var(--applied-arrow-color);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
  z-index: -1;
  pointer-events: none;
}

.areas-applied-pill {
  position: relative;
  z-index: 4;
  border-radius: 28px;
  background: #2F4F63;
  padding: clamp(0.56rem, 0.9vw, 0.74rem);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.areas-applied-pill--short {
  width: min(220px, 100%);
  max-width: 220px;
  justify-self: start;
}

.areas-applied-pill--oriented {
  padding-right: clamp(0.8rem, 1.25vw, 1.05rem);
}

.areas-applied-pill--oriented .areas-applied-pill-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(124px, 0.78fr);
}

.areas-applied-pill--oriented .areas-applied-pill-node {
  min-height: clamp(78px, 8.1vw, 102px);
}

.areas-applied-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.48rem, 0.86vw, 0.72rem);
}

.areas-applied-pill-short-grid {
  display: grid;
  grid-template-columns: minmax(132px, 1fr);
  justify-content: center;
  gap: clamp(0.5rem, 0.9vw, 0.74rem);
}

.areas-applied-pill-node {
  min-height: clamp(80px, 8.5vw, 108px);
  border-radius: 16px;
  background: rgba(11, 43, 61, 0.72);
  color: #F2F6F8;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(0.78rem, 0.92vw, 1rem);
  line-height: 1.14;
  letter-spacing: 0.02em;
  font-weight: 500;
  text-wrap: balance;
  padding: 0.52rem;
}

.areas-applied-pill-node--outline {
  background: transparent;
  border: 3px solid #0B2B3D;
}

.areas-applied-pill-node--outline-dashed {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: stretch;
  width: 100%;
  min-height: auto;
  border-radius: 16px;
  background: transparent;
  border: 3px dashed #0B2B3D;
  color: #F2F6F8;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(0.72rem, 0.8vw, 0.86rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  font-weight: 500;
  text-wrap: balance;
  padding: 0.52rem 0.66rem;
  z-index: 4;
}

.areas-applied-pill-caption {
  margin: clamp(0.58rem, 1vw, 0.85rem) 0 0;
  text-align: center;
  color: #F2F6F8;
  font-size: clamp(0.84rem, 1vw, 1.06rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.areas-applied-pill-caption span {
  opacity: 0.72;
  font-weight: 300;
}

.catedra-band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #F2F6F8;
  padding: clamp(5rem, 11vh, 8rem) 0 clamp(5rem, 10vh, 7.5rem);
  overflow: hidden;
}

.catedra-band::before {
  content: "";
  position: absolute;
  width: min(1120px, 82vw);
  height: min(920px, 74vh);
  right: -22vw;
  top: -20vh;
  background: radial-gradient(76% 64% at 88% 12%, rgba(11, 43, 61, 0.96) 0%, rgba(11, 43, 61, 0.56) 38%, rgba(11, 43, 61, 0.18) 66%, rgba(11, 43, 61, 0) 86%);
  filter: blur(1px);
  pointer-events: none;
}

.catedra-band::after {
  content: "";
  position: absolute;
  width: min(1120px, 82vw);
  height: min(920px, 74vh);
  left: -22vw;
  bottom: -20vh;
  background: radial-gradient(76% 64% at 12% 88%, rgba(11, 43, 61, 0.96) 0%, rgba(11, 43, 61, 0.56) 38%, rgba(11, 43, 61, 0.18) 66%, rgba(11, 43, 61, 0) 86%);
  filter: blur(1px);
  pointer-events: none;
}

.catedra-wrap {
  width: min(1300px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.catedra-wrap h2 {
  margin: 0 0 clamp(2.2rem, 5vh, 3.3rem);
  padding-bottom: 43px;
  border-bottom: 1px solid rgba(11, 43, 61, 0.35);
  width: 40%;
  color: #0B2B3D;
  font-size: clamp(1.9rem, 3.7vw, 3.2rem);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.catedra-wrap h3 {
  margin: 0 0 1rem;
  color: #0B2B3D;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.3;
  font-weight: 500;
}

.catedra-wrap p {
  margin: 0 0 0.9rem;
  max-width: 108ch;
  color: #0B2B3D;
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
  line-height: 1.65;
}

.catedra-cta-wrap {
  margin-top: 1.2rem !important;
}

.catedra-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.66rem 1.06rem;
  border: 1px solid #0B2B3D;
  border-radius: 8px;
  color: #0B2B3D;
  background: transparent;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(0.72rem, 0.95vw, 0.84rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.catedra-cta:hover {
  background: #FF610A;
  border-color: transparent;
  color: #F2F6F8;
}

.catedra-contact,
.catedra-contact a {
  color: #FF610A !important;
}

.worklines-band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #F2F6F8;
  padding: clamp(5rem, 11vh, 8rem) 0 clamp(5.2rem, 12vh, 8.4rem);
  overflow: hidden;
}

.worklines-band::before {
  content: "";
  position: absolute;
  width: min(1120px, 82vw);
  height: min(920px, 74vh);
  right: -22vw;
  top: -20vh;
  background: radial-gradient(76% 64% at 88% 12%, rgba(255, 97, 10, 0.94) 0%, rgba(216, 61, 14, 0.58) 38%, rgba(110, 24, 12, 0.18) 66%, rgba(110, 24, 12, 0) 86%);
  filter: blur(1px);
  pointer-events: none;
}

.worklines-band::after {
  content: "";
  position: absolute;
  width: min(1120px, 82vw);
  height: min(920px, 74vh);
  left: -22vw;
  bottom: -20vh;
  background: radial-gradient(76% 64% at 12% 88%, rgba(255, 97, 10, 0.94) 0%, rgba(216, 61, 14, 0.58) 38%, rgba(110, 24, 12, 0.18) 66%, rgba(110, 24, 12, 0) 86%);
  filter: blur(1px);
  pointer-events: none;
}

.worklines-wrap {
  width: min(1300px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.worklines-layout {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: clamp(1.1rem, 2.4vw, 2rem);
  align-items: start;
}

.worklines-wrap h2 {
  margin: 0 0 clamp(2.2rem, 5vh, 3.3rem);
  padding-bottom: 43px;
  border-bottom: 1px solid rgba(11, 43, 61, 0.35);
  max-width: none;
  color: #0B2B3D;
  font-size: clamp(1.9rem, 3.7vw, 3.2rem);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.worklines-left p {
  margin: 0.55rem 0;
  max-width: 96ch;
  color: #0B2B3D;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.65;
}

.worklines-intro {
  margin-bottom: 1.15rem;
  font-weight: 600;
}

.worklines-right .worklines-grid {
  margin-top: 0;
}

.worklines-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.9fr);
  gap: 0.46rem;
  margin-top: 1.15rem;
}

.wcard {
  border-radius: 12px;
  border: 1px solid rgba(11, 43, 61, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.78rem, 0.96vw, 1rem);
  line-height: 1.12;
  font-weight: 500;
  padding: clamp(0.42rem, 0.78vw, 0.6rem) clamp(0.58rem, 0.9vw, 0.78rem);
  text-align: center;
  text-wrap: balance;
}

.wcard-solid {
  background: #0B2B3D;
  color: #F2F6F8;
  font-weight: 400;
}

.wcard-outline {
  background: rgba(242, 246, 248, 0.35);
  color: #0B2B3D;
  font-weight: 300;
}

.wcard-title {
  display: grid;
  place-items: center;
}

.wcard-group {
  display: grid;
  gap: 0.46rem;
}

.wcard-row {
  display: grid;
  gap: 0.46rem;
}

.wcard-row-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wcard-row-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wcard-wide {
  grid-column: 1 / -1;
}

.wcard-services {
  text-align: center;
  font-size: clamp(0.78rem, 0.96vw, 1rem);
  padding: clamp(0.56rem, 0.9vw, 0.8rem);
}

.worklines-close {
  margin-top: clamp(1.2rem, 2.8vw, 2.1rem);
  max-width: 108ch;
  color: #0B2B3D;
  font-size: clamp(0.98rem, 1.12vw, 1.06rem);
  line-height: 1.62;
}

.activity-memos-band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #FF610A;
  padding: clamp(5rem, 11vh, 8rem) 0 clamp(5rem, 10vh, 7.5rem);
  overflow: hidden;
}

.activity-memos-band::before {
  content: "";
  position: absolute;
  width: min(1120px, 82vw);
  height: min(920px, 74vh);
  left: -22vw;
  top: -20vh;
  background: radial-gradient(76% 64% at 12% 12%, rgba(242, 246, 248, 0.98) 0%, rgba(210, 223, 230, 0.56) 38%, rgba(188, 202, 210, 0.15) 66%, rgba(188, 202, 210, 0) 86%);
  filter: blur(1px);
  pointer-events: none;
}

.activity-memos-band::after {
  content: "";
  position: absolute;
  width: min(1120px, 82vw);
  height: min(920px, 74vh);
  right: -22vw;
  bottom: -20vh;
  background: radial-gradient(76% 64% at 88% 88%, rgba(242, 246, 248, 0.98) 0%, rgba(210, 223, 230, 0.56) 38%, rgba(188, 202, 210, 0.15) 66%, rgba(188, 202, 210, 0) 86%);
  filter: blur(1px);
  pointer-events: none;
}

.activity-memos-wrap {
  width: min(1300px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.activity-memos-wrap h2 {
  margin: 0 0 clamp(2.2rem, 5vh, 3.3rem);
  padding-bottom: 43px;
  border-bottom: 1px solid rgba(242, 246, 248, 0.45);
  max-width: 40%;
  color: #F2F6F8;
  font-size: clamp(1.9rem, 3.7vw, 3.2rem);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.activity-memos-intro {
  margin: 0 0 1.3rem;
  color: #F2F6F8;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.55;
  font-weight: 600;
}

.activity-memos-grid {
  --memo-row: clamp(74px, 8.8vh, 102px);
  --memo-row-head: calc(var(--memo-row) * 0.85);
  --memo-row-item: calc(var(--memo-row) * 0.6);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
  align-items: stretch;
}

.memo-col {
  display: grid;
  grid-template-rows: var(--memo-row-head) repeat(5, var(--memo-row-item));
  gap: 0.62rem;
}

.memo-pill {
  border-radius: 14px;
  border: 1px solid rgba(242, 246, 248, 0.25);
  background: transparent;
  color: #F2F6F8;
  min-height: 0;
  height: 100%;
  padding: clamp(0.56rem, 0.92vw, 0.74rem) clamp(0.7rem, 1.05vw, 0.95rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-wrap: balance;
  font-size: clamp(0.8rem, 1vw, 1.04rem);
  line-height: 1.15;
  font-weight: 400;
}

.memo-pill-head {
  background: rgba(242, 246, 248, 0.95);
  border: 0;
  color: #FF610A;
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.memo-pill-left {
  background: rgba(242, 246, 248, 0.15);
  border: 0;
  color: #F2F6F8;
}

.memo-pill-right {
  background: rgba(242, 246, 248, 0.4);
  border: 0;
  color: #F2F6F8;
}

.funding-band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #F2F6F8;
  padding: clamp(5rem, 11vh, 8rem) 0 clamp(5rem, 10vh, 7.5rem);
  overflow: hidden;
}

.funding-band::before {
  content: "";
  position: absolute;
  width: min(1560px, 116vw);
  height: min(1240px, 98vh);
  right: -30vw;
  top: -30vh;
  background: radial-gradient(76% 64% at 88% 12%, rgba(11, 43, 61, 0.96) 0%, rgba(11, 43, 61, 0.56) 38%, rgba(11, 43, 61, 0.18) 66%, rgba(11, 43, 61, 0) 86%);
  filter: blur(1px);
  pointer-events: none;
}

.funding-band::after {
  content: "";
  position: absolute;
  width: min(1560px, 116vw);
  height: min(1240px, 98vh);
  left: -30vw;
  bottom: -30vh;
  background: radial-gradient(76% 64% at 12% 88%, rgba(11, 43, 61, 0.96) 0%, rgba(11, 43, 61, 0.56) 38%, rgba(11, 43, 61, 0.18) 66%, rgba(11, 43, 61, 0) 86%);
  filter: blur(1px);
  pointer-events: none;
}

.funding-wrap {
  width: min(1300px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.funding-wrap h2 {
  margin: 0 0 clamp(2.2rem, 5vh, 3.3rem);
  padding-bottom: 43px;
  border-bottom: 1px solid rgba(11, 43, 61, 0.35);
  width: 40%;
  color: #0B2B3D;
  font-size: clamp(1.9rem, 3.7vw, 3.2rem);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.funding-wrap > p {
  margin: 0 0 2.1rem;
  max-width: 110ch;
  color: #0B2B3D;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.65;
}

.funding-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

.funding-cell {
  border-radius: 14px;
  border: 0;
  background: #0B2B3D;
  color: #F2F6F8;
  min-height: clamp(58px, 7.2vh, 82px);
  padding: clamp(0.56rem, 0.92vw, 0.74rem) clamp(0.7rem, 1.05vw, 0.95rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-wrap: balance;
  font-size: clamp(0.96rem, 1.25vw, 1.34rem);
  line-height: 1.12;
  font-weight: 400;
}

.funding-head {
  font-size: clamp(1rem, 1.65vw, 1.6rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.funding-total {
  font-size: clamp(0.96rem, 1.35vw, 1.26rem);
  letter-spacing: 0.02em;
  font-weight: 400;
}

.funding-25 {
  background: rgba(11, 43, 61, 0.25);
}

.funding-50 {
  background: rgba(11, 43, 61, 0.5);
}

.funding-75 {
  background: rgba(11, 43, 61, 0.75);
}

.funding-close {
  margin: 0;
  padding-top: clamp(2.4rem, 4.2vw, 3.2rem);
  max-width: 100ch;
  color: #0B2B3D;
  font-size: clamp(1rem, 1.15vw, 1.06rem);
  line-height: 1.6;
}

.network-map-band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #F2F6F8;
  padding: clamp(4.2rem, 9vh, 6.6rem) 0;
  overflow: hidden;
}

.network-map-band::before,
.network-map-band::after {
  content: "";
  position: absolute;
  width: min(1560px, 116vw);
  height: min(1240px, 98vh);
  filter: blur(1px);
  pointer-events: none;
}

.network-map-band::before {
  right: -30vw;
  top: -30vh;
  background: radial-gradient(76% 64% at 88% 12%, rgba(11, 43, 61, 0.96) 0%, rgba(11, 43, 61, 0.56) 38%, rgba(11, 43, 61, 0.18) 66%, rgba(11, 43, 61, 0) 86%);
}

.network-map-band::after {
  left: -30vw;
  bottom: -30vh;
  background: radial-gradient(76% 64% at 12% 88%, rgba(11, 43, 61, 0.96) 0%, rgba(11, 43, 61, 0.56) 38%, rgba(11, 43, 61, 0.18) 66%, rgba(11, 43, 61, 0) 86%);
}

.network-map-wrap {
  width: min(1300px, 96%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.network-map-title {
  margin: 0 0 clamp(2.2rem, 5vh, 3.3rem);
  padding-bottom: 43px;
  border-bottom: 1px solid rgba(11, 43, 61, 0.35);
  width: 40%;
  color: #0B2B3D;
  font-size: clamp(1.9rem, 3.7vw, 3.2rem);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.network-svg {
  width: 100%;
  min-width: 0;
  height: auto;
  display: block;
  margin: 0 auto;
}

.map-pill {
  fill: #0B2B3D;
  transform-box: fill-box;
  transform-origin: center;
}

.map-pill-main {
  fill: #0B2B3D;
}

.map-pill-group1 {
  opacity: 1;
  transform: scale(0.86);
}

.map-pill-group2 {
  opacity: 0.85;
  transform: scale(0.78);
}

.map-pill-group3 {
  opacity: 0.75;
  transform: scale(0.69);
}

.map-pill-group4 {
  opacity: 0.5;
  transform: scale(0.6);
}

.map-text {
  fill: #F2F6F8;
  font-family: "Sora", sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-anchor: middle;
  dominant-baseline: middle;
  alignment-baseline: middle;
}

.map-text-small {
  font-size: 7px;
}

.map-text-compact {
  font-size: 6.5px;
}

.map-text-main {
  font-size: 8.5px;
  font-weight: 600;
}

.map-text-g1 { font-size: 20px; }
.map-text-g2 { font-size: 18px; }
.map-text-g3 { font-size: 15px; }
.map-text-g4 { font-size: 12px; }

.map-connector {
  stroke: rgba(255, 97, 10, 0.9);
  stroke-width: 1.6;
  fill: none;
}

.map-connector-dashed {
  stroke: rgba(255, 97, 10, 0.9);
  stroke-width: 1.6;
  stroke-dasharray: 7 7;
  fill: none;
}

p,
li {
  line-height: 1.73;
  color: #BCCAD2;
}

p {
  margin: 0.88rem 0;
  max-width: 92ch;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  color: #F2F6F8;
  line-height: 1.2;
}

button,
input,
select,
textarea {
  font-family: "Sora", sans-serif;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  margin: 1.7rem 0 0.8rem;
}

a {
  color: #FF610A;
  text-underline-offset: 0.2em;
}

a:hover {
  color: #BCCAD2;
}

figure {
  margin: 1.1rem 0;
  border-radius: 0;
  border: 0;
  overflow: hidden;
  box-shadow: none;
  background: transparent;
}

.content > figure:first-of-type {
  margin-top: 0;
  border-radius: 0;
}

.content > figure:first-of-type img {
  aspect-ratio: 16/7;
  object-fit: cover;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

ul {
  margin: 0.62rem 0 1rem 1.2rem;
}

li {
  margin: 0.28rem 0;
}

.main-footer {
  margin-top: 0;
  background: #0B2B3D;
  width: 100%;
}

.main-footer-inner {
  width: min(1300px, 92%);
  min-height: 419px;
  margin: 0 auto;
  padding: 3.2rem 0 2.6rem;
  display: grid;
  grid-template-columns: 1.25fr 1fr auto;
  grid-template-rows: auto auto;
  grid-template-areas:
    "left brand top"
    "items social top";
  gap: 2rem;
  align-items: start;
}

.footer-left {
  grid-area: left;
}

.main-footer,
.main-footer p,
.main-footer h2,
.main-footer a,
.main-footer li {
  color: #F2F6F8 !important;
}

.footer-title {
  margin: 0 0 1.4rem 0;
  font-size: clamp(1.4rem, 2.35vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  font-weight: 500;
}

.footer-items {
  list-style: none;
  grid-area: items;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 0.08rem 3.1rem;
  align-self: start;
}

.footer-items a {
  text-decoration: none;
  font-size: 0.89rem;
  font-weight: 300;
  text-transform: capitalize;
  line-height: 1.15;
  opacity: 0.95;
  display: inline-block;
  transform-origin: left center;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.footer-items li:nth-child(n + 4) {
  transform: translateY(-0.32rem);
}

.footer-items a:hover {
  opacity: 1;
  color: #FF610A !important;
  transform: scale(1.05);
}

.footer-brand {
  grid-area: brand;
  display: grid;
  width: min(420px, 100%);
  justify-items: end;
  justify-self: end;
  align-content: start;
  gap: 1.2rem;
  text-align: right;
}

.footer-umu-link {
  display: block;
  text-decoration: none;
  width: 100%;
  justify-self: end;
}

.footer-umu-logo {
  display: block;
  width: min(400px, 100%);
  height: auto;
  margin-left: auto;
  transition: transform 0.15s ease;
}

.footer-umu-link:hover .footer-umu-logo {
  transform: scale(1.05);
}

.footer-intico-logo {
  display: block;
  width: min(168px, 42%);
  height: auto;
  margin-left: auto;
  margin-top: 0.1rem;
}

.footer-social {
  grid-area: social;
  margin-top: 0;
  display: grid;
  gap: 0.35rem;
  width: auto;
  justify-items: end;
  text-align: right;
  align-self: start;
}

.footer-brand-link {
  text-decoration: none;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  line-height: 1.15;
  display: inline-block;
  transform-origin: right center;
  transition: transform 0.18s ease, opacity 0.18s ease;
  will-change: transform;
}

.footer-brand-link:hover {
  transform: scale(1.1);
  color: #FF610A !important;
  opacity: 1;
}

.footer-top {
  grid-area: top;
  align-self: end;
  justify-self: end;
}

.footer-top-link {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: 1px solid #FF610A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 2rem;
  line-height: 1;
  color: #FF610A !important;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.footer-top-link:link,
.footer-top-link:visited,
.footer-top-link:hover,
.footer-top-link:active {
  color: #FF610A !important;
}

.footer-top-link:hover {
  transform: scale(1.05);
  border-color: #FF610A;
}

@media (max-width: 960px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    background: rgba(11, 43, 61, 0.88);
    backdrop-filter: blur(6px);
  }

  .header-grid {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .umu-link {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .hero-stage {
    min-height: 88svh;
  }

  .hero-stage-home {
    margin-top: 0;
    padding-top: 0;
  }

  .areas-basic-figure {
    height: auto;
    justify-content: center;
  }

  .areas-basic-diagram {
    transform: none;
    translate: 0 0;
    width: min(460px, 100%);
    margin-inline: auto;
  }

  .areas-basic-diagram--oriented {
    width: min(560px, 100%);
  }

  .areas-oriented-band .areas-basic-figure {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .network-map-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.45rem;
  }

  .network-svg {
    min-width: 980px;
  }
}

@media (max-width: 720px) {
  .site-header .wrap {
    width: min(1300px, 94%);
  }

  .site-header {
    height: 56px;
    padding: 0;
    overflow: visible;
    backdrop-filter: none;
  }

  .header-grid {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "brand title toggle"
      "nav nav nav";
    min-height: 56px;
    gap: 0.36rem;
  }

  .brand-mark {
    grid-area: brand;
    justify-self: start;
    width: 44px;
    height: 44px;
  }

  .brand-mark img {
    width: 30px;
    height: 30px;
  }

  .mobile-brand {
    grid-area: title;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    color: #F2F6F8;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .menu-toggle {
    grid-area: toggle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: auto;
    min-width: 66px;
    height: 34px;
    border: 1px solid rgba(242, 246, 248, 0.42);
    background: rgba(11, 43, 61, 0.28);
    color: #F2F6F8;
    border-radius: 8px;
    font-size: 0;
    letter-spacing: 0;
    font-weight: 600;
    text-transform: none;
    padding: 0 0.72rem;
    cursor: pointer;
    position: relative;
    z-index: 1002;
  }

  .menu-toggle::before {
    content: "MENÚ";
    color: #F2F6F8;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
  }

  .menu-label-open,
  .menu-label-close {
    display: none !important;
  }

  .site-header.menu-open .menu-toggle::before {
    content: "×";
    color: #FF610A;
    font-size: 1.4rem;
    letter-spacing: 0;
    font-weight: 500;
    text-transform: none;
  }

  .site-header.menu-open .menu-toggle {
    border-color: rgba(255, 97, 10, 0.86);
    background: rgba(11, 43, 61, 0.68);
    position: fixed;
    top: 11px;
    right: 3%;
    z-index: 1004;
  }

  .site-header.menu-open .brand-mark,
  .site-header.menu-open .mobile-brand {
    position: relative;
    z-index: 1003;
  }

  .main-nav {
    grid-area: nav;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.28rem;
    overflow: visible;
  }

  .nav-shell {
    grid-area: nav;
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(11, 43, 61, 0.98);
    border-top: 0;
    padding: calc(56px + 0.88rem) 1rem 1.35rem;
    min-height: 100dvh;
    overflow-y: auto;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .site-header.menu-open .nav-shell {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav > a,
  .nav-group summary {
    width: 100%;
    padding: 0.58rem 0.2rem;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(242, 246, 248, 0.16);
  }

  .nav-group {
    width: 100%;
  }

  .nav-group summary {
    padding-right: 0.32rem;
  }

  .nav-drop {
    position: static;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 0.14rem 0 0.42rem 0.82rem;
    display: block;
  }

  .nav-group:not([open]) .nav-drop {
    display: none;
  }

  .nav-drop a {
    font-size: 0.84rem;
    padding: 0.42rem 0.2rem;
  }

  .umu-link {
    display: none;
  }

  .umu-link-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    color: #F2F6F8;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0.55rem;
    padding: 0.62rem 0.2rem;
    border-bottom: 1px solid rgba(242, 246, 248, 0.16);
  }

  .content > figure:first-of-type img {
    aspect-ratio: 16/9;
  }

  .hero-brand p {
    letter-spacing: 0.06em;
  }

  .hero-brand img {
    width: min(320px, 82%);
  }

  .hero-center-title {
    width: min(1300px, 94%);
    text-align: center;
  }

  .hero-center-title h1 {
    display: block;
    max-width: none;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .mobile-line-break {
    display: inline;
  }

  .intico-research-grid {
    grid-template-columns: 1fr;
  }

  .intico-research-band h2 {
    width: 100%;
  }

  .structure-plan-wrap h2,
  .structure-services-wrap h2,
  .structure-governance-wrap h2,
  .groups-overview-wrap h2,
  .groups-duo-wrap h2,
  .areas-basic-wrap h2,
  .areas-applied-wrap h2 {
    width: 100%;
  }

  .structure-services-columns {
    grid-template-columns: 1fr;
  }

  .structure-governance-grid {
    grid-template-columns: 1fr;
  }

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

  .areas-basic-grid {
    grid-template-columns: 1fr;
  }

  .areas-applied-feature-grid {
    grid-template-columns: 1fr;
  }

  .areas-applied-trio {
    grid-template-columns: 1fr;
    transform: none;
    justify-content: stretch;
  }

  .areas-applied-trio::before,
  .areas-applied-trio::after {
    display: none;
  }

  .areas-applied-pill {
    height: auto;
  }

  .areas-applied-pill--short {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .areas-applied-pill--oriented .areas-applied-pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .areas-applied-pill-node--outline-dashed {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: clamp(72px, 16vw, 94px);
  }

  .areas-applied-pill-node {
    min-height: clamp(72px, 17vw, 96px);
  }

  .areas-oriented-prospecting {
    position: static;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: clamp(76px, 18vw, 102px);
    margin-top: clamp(0.46rem, 1.7vw, 0.7rem);
  }

  .worklines-wrap h2 {
    max-width: 100%;
  }

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

  .worklines-grid {
    grid-template-columns: 1fr;
  }

  .wcard-row-2,
  .wcard-row-4 {
    grid-template-columns: 1fr 1fr;
  }

  .activity-memos-wrap h2 {
    max-width: 100%;
  }

  .activity-memos-grid {
    grid-template-columns: 1fr;
  }

  .funding-wrap h2 {
    width: 100%;
  }

  .funding-table {
    grid-template-columns: 1fr;
  }

  .main-footer-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "left"
      "items"
      "brand"
      "social"
      "top";
    gap: 1.6rem;
    min-height: 0;
  }

  .footer-brand,
  .footer-social,
  .footer-top {
    justify-self: start;
    text-align: left;
    justify-items: start;
    align-self: start;
  }

  .footer-items {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .footer-items li:nth-child(n + 4) {
    transform: none;
  }

  .footer-umu-logo {
    width: min(300px, 100%);
  }

  .footer-top-link {
    width: 60px;
    height: 60px;
    font-size: 1.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage-home::before,
  .hero-stage-home::after {
    animation: none;
  }
}
