@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap");

:root {
  --paper: #fefaf4;
  --paper-soft: #f7f2eb;
  --mist: #e6e4e9;
  --ink: #2f2f2f;
  --muted: #6e6e6e;
  --line: #c2c2c2;
  --blue: #4169e1;
  --blue-hot: #137dff;
  --blue-deep: #1439a8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgb(47 47 47 / 0.12);
  --soft-shadow: 0 14px 38px rgb(47 47 47 / 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--mist);
  color: var(--ink);
  font-family: Poppins, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: calc(100% - 48px);
  min-height: 58px;
  margin: 24px auto 24px;
  padding: 10px 24px;
  background: rgb(254 250 244 / 0.96);
  border: 0;
  border-radius: 999px;
  backdrop-filter: blur(18px);
}

.brand,
.monogram {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  position: relative;
  padding-left: 22px;
}

.brand::before,
.brand::after,
.monogram::before,
.monogram::after {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  content: "";
  border-radius: 50%;
  transform: translateY(-50%);
}

.brand::before,
.monogram::before {
  left: 0;
  background: var(--ink);
}

.brand::after,
.monogram::after {
  right: -44px;
  background: var(--blue-deep);
  box-shadow: -22px 0 0 #42548d;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 32px);
  color: var(--muted);
  font-size: 1rem;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue-hot);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.section {
  width: min(var(--max), calc(100% - clamp(36px, 7vw, 96px)));
  margin: 0 auto;
  padding: clamp(68px, 9vw, 112px) 0;
}

.compact-top {
  padding-top: 0;
}

.page-panel {
  border-bottom: 1px solid rgb(194 194 194 / 0.7);
}

.hero,
.page-hero {
  min-height: min(760px, calc(100vh - 72px));
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.page-hero {
  display: grid;
  align-items: center;
  padding-top: clamp(56px, 8vw, 112px);
  padding-bottom: clamp(64px, 8vw, 112px);
}

.blue-hero {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: clamp(28px, 6vw, 82px);
  padding-right: max(clamp(18px, 4vw, 54px), calc((100vw - var(--max)) / 2));
  padding-left: max(clamp(18px, 4vw, 54px), calc((100vw - var(--max)) / 2));
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
}

.hero h1,
.page-hero h1,
h2 {
  margin: 0;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(4.1rem, 11vw, 9.5rem);
}

.title-mobile {
  display: none;
}

.original-card,
.footer-original {
  width: calc(100% - 56px);
  max-width: 1360px;
  margin-inline: auto;
  background: var(--paper);
  border-radius: 22px;
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1fr);
  min-height: 548px;
  padding: clamp(34px, 5vw, 58px);
  overflow: hidden;
}

.home-hero h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(3.2rem, 5.2vw, 5.25rem);
  line-height: 0.96;
}

.home-hero .lead {
  margin-top: 26px;
  color: var(--blue);
  line-height: 1.45;
}

.pill-button {
  min-width: 220px;
  border-radius: 999px;
}

.hero-dots span {
  position: absolute;
  display: block;
  width: clamp(120px, 12vw, 155px);
  height: clamp(120px, 12vw, 155px);
  border-radius: 50%;
  translate: var(--dot-play-x, 0) 0;
  animation: float-soft 6s ease-in-out infinite;
}

.hero-dots span:nth-child(1) {
  top: 30px;
  right: 24%;
  background: var(--blue-deep);
}

.hero-dots span:nth-child(2) {
  top: 200px;
  right: 12%;
  background: var(--ink);
  animation-delay: 600ms;
}

.hero-dots span:nth-child(3) {
  right: 24%;
  bottom: 32px;
  background: #42548d;
  animation-delay: 1200ms;
}

.about-original {
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
  padding-top: 48px;
}

.polaroid-card {
  width: min(520px, 100%);
  margin: 0 auto;
  padding: 10px 10px 50px;
  background: var(--paper);
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
  transform: rotate(-4deg);
}

.polaroid-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}

.polaroid-card figcaption {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.polaroid-card figcaption span,
.mini-dots span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  translate: var(--dot-play-x, 0) 0;
}

.polaroid-card figcaption span:nth-child(1),
.mini-dots span:nth-child(1) {
  background: var(--ink);
}

.polaroid-card figcaption span:nth-child(2),
.mini-dots span:nth-child(2) {
  background: #42548d;
}

.polaroid-card figcaption span:nth-child(3),
.mini-dots span:nth-child(3) {
  background: var(--blue-deep);
}

.about-copy h2,
.school-original h2 {
  color: var(--blue);
}

.about-copy .body-large {
  margin: 16px 0 26px;
  color: var(--blue);
}

.center-heading {
  text-align: center;
  place-items: center;
}

.school-original {
  padding-top: 28px;
}

.school-original .timeline {
  align-items: start;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: clamp(36px, 7vw, 88px);
}

.school-card {
  min-height: 360px;
  border: 0 !important;
  border-radius: 22px !important;
  box-shadow: none !important;
}

.school-card h3,
.school-card p,
.school-card .meta {
  color: var(--blue);
}

.card-blue {
  background: #42548d !important;
}

.card-light {
  background: #ccdcff !important;
  transform: rotate(-9deg);
}

.card-dark {
  background: var(--ink) !important;
}

.school-card::after {
  content: '"';
  display: block;
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
}

.sisar-band {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
  color: #42548d;
  background: var(--ink);
  font-size: 1.2rem;
  white-space: nowrap;
}

.sisar-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: sisar-scroll 18s linear infinite;
}

.sisar-band:hover .sisar-track {
  animation-play-state: paused;
}

.sisar-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
  gap: 18px;
  min-width: 100vw;
}

.sisar-group span,
.sisar-group i {
  flex: 0 0 auto;
}

.page-title {
  display: grid;
  min-height: 108px;
  margin-top: 0;
  place-items: center;
}

.page-title h1 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.deco-strip {
  display: grid;
  min-height: 230px;
  margin-top: 24px;
  place-items: center;
  background: var(--ink);
}

.deco-strip span {
  width: 178px;
  height: 178px;
  background: var(--blue);
  border-radius: 50%;
  translate: var(--dot-play-x, 0) 0;
}

.enterprise-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  width: calc(100% - 56px);
  max-width: 1360px;
  padding-top: 24px;
}

.cyam-logo-block,
.cream-panel {
  display: grid;
  min-height: 345px;
  align-content: center;
  padding: clamp(32px, 5vw, 72px);
  background: var(--paper);
  border-radius: 22px;
}

.cyam-logo-block {
  place-items: center;
  background: var(--blue);
}

.cyam-logo-block img {
  width: min(560px, 88%);
}

.cream-panel h2,
.full-panel h2 {
  color: var(--blue);
  font-size: clamp(2.3rem, 4.5vw, 4.2rem);
}

.cream-panel p {
  max-width: 680px;
  color: var(--blue);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.65;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
  color: var(--blue);
}

.legend span,
.role {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.legend i,
.role::before {
  width: 16px;
  height: 16px;
  content: "";
  background: var(--blue);
  border-radius: 50%;
}

.legend span:nth-child(1) i {
  background: #42548d;
}

.legend span:nth-child(2) i {
  background: var(--ink);
}

.legend span:nth-child(3) i {
  background: var(--blue-deep);
}

.team-list {
  padding: 18px 44px;
  box-shadow: var(--shadow);
}

.team-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px 172px;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  min-height: 178px;
  color: var(--blue);
}

.team-list article + article {
  border-top: 1px solid rgb(65 105 225 / 0.12);
}

.team-list h3 {
  color: var(--blue);
  font-weight: 800;
}

.team-list p {
  max-width: 680px;
  color: var(--blue);
}

.team-list img {
  width: 118px;
  height: 118px;
  object-fit: cover;
  border-radius: 50%;
  justify-self: center;
}

.color-rail {
  width: 58px;
  height: 178px;
  background: var(--blue);
  border-radius: 0 20px 20px 0;
}

.color-rail.deep {
  background: var(--blue-deep);
}

.color-rail.dark {
  background: var(--ink);
}

.color-rail.muted {
  background: #42548d;
}

.role {
  margin-top: 14px;
}

.role.deep::before {
  background: var(--blue-deep);
}

.role.dark::before {
  background: var(--ink);
}

.role.muted::before {
  background: #42548d;
}

.full-panel {
  min-height: auto;
}

.why-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.why-columns p {
  padding: 24px;
  border: 1px solid rgb(65 105 225 / 0.18);
  border-radius: 18px;
}

.real-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.45fr);
  gap: clamp(28px, 6vw, 82px);
  min-height: clamp(360px, 45vw, 520px);
  padding: clamp(38px, 6vw, 76px);
  overflow: hidden;
}

.real-hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  content: "";
  background: linear-gradient(180deg, rgb(65 105 225 / 0), rgb(65 105 225 / 0.12));
  pointer-events: none;
}

.real-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
}

.real-hero h1 {
  max-width: 800px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.real-hero .lead {
  max-width: 690px;
  color: var(--blue);
}

.real-hero-mark {
  position: relative;
  min-height: 300px;
}

.real-hero-mark span {
  position: absolute;
  display: block;
  border-radius: 50%;
  animation: float-soft 6s ease-in-out infinite;
}

.real-hero-mark span:nth-child(1) {
  top: 10%;
  right: 16%;
  width: clamp(118px, 13vw, 178px);
  height: clamp(118px, 13vw, 178px);
  background: var(--blue);
}

.real-hero-mark span:nth-child(2) {
  top: 45%;
  right: 44%;
  width: clamp(92px, 10vw, 138px);
  height: clamp(92px, 10vw, 138px);
  background: var(--ink);
  animation-delay: 700ms;
}

.real-hero-mark span:nth-child(3) {
  right: 4%;
  bottom: 8%;
  width: clamp(126px, 15vw, 210px);
  height: clamp(126px, 15vw, 210px);
  background: #42548d;
  animation-delay: 1400ms;
}

.real-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(20px, 4vw, 38px);
  padding-bottom: clamp(46px, 7vw, 84px);
}

.real-overview article {
  display: grid;
  min-height: 150px;
  align-content: center;
  gap: 8px;
  padding: 28px;
  color: var(--blue);
  background: var(--paper);
  border: 1px solid rgb(65 105 225 / 0.18);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

.real-overview span {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
}

.real-overview p {
  color: var(--muted);
  font-weight: 700;
}

.real-work {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 44px);
  align-items: stretch;
  max-width: 1180px;
  padding-bottom: clamp(78px, 10vw, 128px);
}

.real-column {
  display: grid;
  grid-template-rows: 300px minmax(0, 1fr);
  gap: 18px;
  height: 100%;
}

.real-card-group {
  display: grid;
  gap: 18px;
  padding: clamp(16px, 2.2vw, 24px);
  background: var(--paper);
  border: 1px solid rgb(65 105 225 / 0.14);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.real-column-head {
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  background: var(--blue);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

.real-column-enterprise .real-column-head {
  background: var(--ink);
}

.real-column-head .eyebrow {
  color: rgb(255 255 255 / 0.72);
  margin-bottom: 14px;
}

.real-column-head h2 {
  max-width: 410px;
  color: var(--white);
  font-size: clamp(2.15rem, 4.4vw, 4.1rem);
  line-height: 0.95;
}

.real-column-lead {
  max-width: 410px;
  margin-top: 18px;
  color: rgb(255 255 255 / 0.78);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.55;
}

.real-card {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 22px;
  align-content: start;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  border: 1px solid rgb(65 105 225 / 0.18);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.real-card:hover {
  border-color: rgb(65 105 225 / 0.52);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.real-card figure {
  display: grid;
  width: 126px;
  height: 126px;
  margin: 0;
  place-items: center;
  background: rgb(255 255 255 / 0.72);
  border: 1px solid rgb(65 105 225 / 0.12);
  border-radius: 18px;
}

.real-card img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.real-card h3 {
  margin: 4px 0 10px;
  color: var(--blue);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.12;
}

.real-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.real-type {
  color: var(--blue) !important;
  font-size: 0.78rem !important;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.real-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.real-tags span {
  padding: 7px 10px;
  color: var(--blue-deep);
  background: rgb(65 105 225 / 0.1);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.real-card .button {
  grid-column: 2;
  justify-self: start;
  margin-top: auto;
}

.project-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.4fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: clamp(360px, 42vw, 500px);
  padding: clamp(38px, 6vw, 76px);
}

.project-hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(3rem, 6.8vw, 6.2rem);
  line-height: 0.95;
}

.project-hero .lead {
  color: var(--blue);
}

.project-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.project-summary span {
  max-width: 220px;
  padding: 10px 12px;
  color: var(--blue-deep);
  background: rgb(65 105 225 / 0.1);
  border: 1px solid rgb(65 105 225 / 0.12);
  border-radius: 14px;
  font-size: 0.82rem;
  line-height: 1.35;
}

.project-summary strong {
  display: block;
  margin-bottom: 3px;
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-hero figure {
  display: grid;
  width: min(100%, 310px);
  aspect-ratio: 1;
  margin: 0;
  place-items: center;
  justify-self: center;
  background: var(--paper);
  border: 1px solid rgb(65 105 225 / 0.14);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.project-hero img {
  width: 58%;
  height: 58%;
  object-fit: contain;
}

.project-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(20px, 4vw, 38px);
  padding-bottom: clamp(42px, 7vw, 78px);
}

.project-kpis article,
.project-panel,
.project-step {
  background: var(--paper);
  border: 1px solid rgb(65 105 225 / 0.18);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

.project-kpis article {
  min-height: 132px;
  padding: 26px;
}

.project-kpis span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-kpis p {
  color: var(--muted);
  font-weight: 700;
}

.project-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
  margin-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(72px, 10vw, 120px);
}

.project-panel {
  padding: clamp(26px, 4vw, 42px);
}

.project-panel h2,
.project-steps h2 {
  max-width: 100%;
  color: var(--blue);
  font-size: clamp(1.65rem, 2.35vw, 2.05rem);
  line-height: 1.05;
  overflow-wrap: normal;
}

.project-panel p,
.project-step p {
  max-width: 100%;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: break-word;
}

.skill-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.skill-list span {
  padding: 12px 14px;
  color: var(--blue-deep);
  background: rgb(65 105 225 / 0.1);
  border-radius: 999px;
  font-weight: 700;
}

.competency-codes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.competency-codes span {
  padding: 7px 10px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgb(65 105 225 / 0.22);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.project-steps {
  display: grid;
  gap: 0;
  padding: clamp(26px, 4vw, 42px);
  background: var(--paper);
  border: 1px solid rgb(65 105 225 / 0.18);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

.project-step {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgb(65 105 225 / 0.12);
  border-radius: 0;
  box-shadow: none;
}

.method-intro {
  padding-bottom: 18px;
}

.method-intro h2 {
  color: var(--blue);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.method-intro p {
  max-width: 760px;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.project-step span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 800;
}

.project-step h3 {
  color: var(--blue);
}

.project-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.watch-intro {
  max-width: 950px;
  margin-top: 26px;
  padding: clamp(48px, 7vw, 78px);
  text-align: center;
}

.watch-intro h1,
.watch-intro h3,
.watch-intro p {
  color: var(--blue);
}

.watch-intro h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
}

.watch-intro p {
  max-width: 650px;
  margin: 20px auto 0;
}

.watch-intro img {
  width: min(560px, 94%);
  margin: 30px auto 0;
}

.articles-title {
  width: min(540px, calc(100% - 56px));
  margin: 96px auto 120px;
  padding: 62px 34px;
  text-align: center;
  background: var(--paper);
  border-radius: 24px;
  transform: rotate(4deg);
}

.articles-title h2 {
  color: var(--blue);
}

.article-list {
  display: grid;
  gap: clamp(54px, 7vw, 92px);
  padding-bottom: 76px;
  background: var(--paper);
}

.article-list article {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.62fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  width: min(1080px, calc(100% - 96px));
  margin: 0 auto;
}

.article-list article:nth-child(even) {
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 0.8fr);
}

.article-list h2 {
  color: var(--blue);
}

.article-list p {
  max-width: 650px;
  margin: 16px 0 22px;
  color: var(--blue);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
}

.article-list .article-opinion {
  margin-top: -6px;
  padding-left: 18px;
  color: var(--blue-deep);
  border-left: 4px solid var(--blue);
  font-weight: 600;
}

.article-list figure {
  margin: 0;
}

.article-list figure img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
  border-radius: 32px;
}

.article-list article:nth-child(2) figure img {
  transform: rotate(-5deg);
}

.mini-dots {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.competence-page {
  background: var(--mist);
}

.competence-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.42fr);
  gap: clamp(28px, 6vw, 82px);
  min-height: clamp(360px, 44vw, 510px);
  padding: clamp(38px, 6vw, 76px);
  overflow: hidden;
}

.competence-hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  content: "";
  background: linear-gradient(180deg, rgb(65 105 225 / 0), rgb(65 105 225 / 0.12));
  pointer-events: none;
}

.competence-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
}

.competence-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.95;
}

.competence-hero .lead {
  max-width: 700px;
  color: var(--blue);
}

.competence-hero-mark {
  position: relative;
  min-height: 290px;
}

.competence-hero-mark span {
  position: absolute;
  display: block;
  border-radius: 50%;
  translate: var(--dot-play-x, 0) 0;
  animation: float-soft 6s ease-in-out infinite;
}

.competence-hero-mark span:nth-child(1) {
  top: 8%;
  right: 16%;
  width: clamp(112px, 13vw, 176px);
  height: clamp(112px, 13vw, 176px);
  background: var(--blue);
}

.competence-hero-mark span:nth-child(2) {
  top: 46%;
  right: 46%;
  width: clamp(86px, 9vw, 132px);
  height: clamp(86px, 9vw, 132px);
  background: var(--ink);
  animation-delay: 700ms;
}

.competence-hero-mark span:nth-child(3) {
  right: 4%;
  bottom: 8%;
  width: clamp(120px, 14vw, 204px);
  height: clamp(120px, 14vw, 204px);
  background: #42548d;
  animation-delay: 1400ms;
}

.competence-layout {
  display: grid;
  gap: clamp(24px, 4vw, 38px);
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(78px, 10vw, 128px);
}

.competence-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.competence-stats article {
  display: grid;
  min-height: 145px;
  align-content: center;
  gap: 8px;
  padding: 28px;
  color: var(--blue);
  background: var(--paper);
  border: 1px solid rgb(65 105 225 / 0.18);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

.competence-stats span {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
}

.competence-stats p {
  color: var(--muted);
  font-weight: 700;
}

.synthesis-panel {
  margin: 0;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
  border: 1px solid rgb(65 105 225 / 0.18);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.synthesis-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: clamp(20px, 3vw, 30px);
}

.synthesis-panel h2 {
  max-width: 760px;
  color: var(--blue);
  font-size: clamp(1.9rem, 3.8vw, 3.7rem);
}

.synthesis-frame {
  overflow: auto;
  background: var(--white);
  border: 1px solid rgb(65 105 225 / 0.14);
  border-radius: 14px;
}

.synthesis-frame img {
  width: 100%;
  min-width: 760px;
}

.sisar-band i {
  width: 20px;
  height: 20px;
  background: var(--blue);
  border-radius: 5px;
}

@keyframes float-soft {
  50% {
    transform: translateY(-12px);
  }
}

@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .hero-dots span,
  .deco-strip span,
  .competence-hero-mark span,
  .polaroid-card figcaption span,
  .mini-dots span {
    transition: translate 260ms ease-out;
    will-change: translate;
  }
}

.page-hero h1 {
  max-width: 960px;
  font-size: clamp(3.8rem, 8.8vw, 7.8rem);
}

.blue-hero h1 {
  max-width: 620px;
  font-size: clamp(3.4rem, 5.4vw, 4.75rem);
}

h2 {
  max-width: 900px;
  font-size: clamp(2.55rem, 5.4vw, 5.4rem);
}

h3 {
  margin: 0 0 10px;
  font-size: clamp(1.18rem, 1.5vw, 1.5rem);
  line-height: 1.18;
  overflow-wrap: break-word;
}

p {
  margin: 0;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blue-hero .eyebrow,
.blue-hero .lead {
  color: rgb(255 255 255 / 0.78);
}

.lead,
.body-large,
.section-heading p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.72;
}

.lead {
  margin-top: 32px;
}

.offset {
  margin-top: 22px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  color: var(--blue);
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button.primary,
.button:hover,
.button:focus-visible {
  color: var(--white);
  background: var(--blue);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.hero-visual {
  margin: 0;
}

.hero-visual img {
  width: min(100%, 430px);
  margin-inline: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--mist);
}

.marquee span {
  min-width: 100%;
  padding: 18px 0;
  color: var(--blue);
  font-size: clamp(1.7rem, 4vw, 4rem);
  font-weight: 800;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
}

.split {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  border-bottom: 1px solid rgb(194 194 194 / 0.5);
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.timeline,
.services-grid,
.project-grid,
.article-grid,
.team-grid,
.quote-grid {
  display: grid;
  gap: 18px;
}

.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-grid,
.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.timeline article,
.services-grid article,
.project-card,
.article-grid article,
.team-grid article,
.quote-grid article,
.level-strip,
.tabs {
  min-height: 100%;
  padding: clamp(22px, 2.5vw, 30px);
  background: var(--white);
  border: 1px solid rgb(194 194 194 / 0.65);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.timeline article:hover,
.services-grid article:hover,
.project-card:hover,
.article-grid article:hover,
.team-grid article:hover {
  border-color: rgb(65 105 225 / 0.55);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.team-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
}

.team-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.timeline article {
  display: grid;
  align-content: start;
  gap: 12px;
}

.timeline article p,
.services-grid article p,
.project-card p,
.article-grid article p,
.team-grid article p {
  color: var(--muted);
  line-height: 1.62;
}

.meta {
  color: var(--blue);
  font-weight: 700;
}

.logo-panel {
  display: grid;
  min-height: 320px;
  padding: 36px;
  place-items: center;
  background: var(--blue-deep);
  border-radius: var(--radius);
}

.logo-panel img {
  width: min(420px, 90%);
}

.quote-grid article {
  color: var(--blue-deep);
  font-size: clamp(1.14rem, 1.65vw, 1.48rem);
  line-height: 1.48;
  font-weight: 700;
}

.services-grid article h3 {
  color: var(--blue);
}

.service-heading .eyebrow {
  margin-bottom: 0;
}

.services-panel {
  width: 100%;
  max-width: none;
  padding: clamp(18px, 3vw, 30px);
  box-shadow: var(--shadow);
}

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

.refined-services article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 250px;
  padding: 26px;
  background: var(--paper);
  border-color: rgb(65 105 225 / 0.16);
  border-radius: 18px;
}

.service-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.refined-services article h3 {
  margin: 0;
  color: var(--blue);
}

.refined-services ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.refined-services li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.refined-services li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--blue);
  border-radius: 50%;
}

.project-grid {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
}

.project-grid.large {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
}

.project-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.project-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.tabs {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 28px;
  padding: 8px;
}

.tabs span {
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
  font-weight: 700;
}

.workflow {
  width: min(840px, 100%);
  margin: 0 auto clamp(32px, 5vw, 58px);
}

.article-grid {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
}

.article-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
  padding: 0;
  overflow: hidden;
}

.article-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-grid h3,
.article-grid p {
  padding-inline: 24px;
}

.article-grid p {
  padding-bottom: 24px;
}

.competencies {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.competencies .section-heading {
  position: sticky;
  top: 108px;
  margin-bottom: 0;
}

.synthesis {
  margin: 0;
  overflow: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.synthesis img {
  width: 100%;
  min-width: 620px;
}

.level-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.level-strip span {
  padding: 12px 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
  font-weight: 700;
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.certification-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 260px;
  padding: clamp(24px, 4vw, 38px);
  color: var(--blue);
  background: var(--paper);
  border: 1px solid rgb(65 105 225 / 0.18);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

.certification-card h3,
.certification-card p {
  margin: 0;
}

.certification-card h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.14;
}

.certification-card p:not(.eyebrow) {
  color: var(--muted);
}

.certification-card .button {
  justify-self: start;
  margin-top: auto;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 54px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reveal-ready [data-reveal] {
  opacity: 1;
  transform: translateY(24px);
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes sisar-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% / 3));
  }
}

@media (max-width: 1100px) {
  .services-grid,
  .team-grid,
  .project-grid,
  .project-grid.large,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero,
  .blue-hero,
  .split,
  .competencies,
  .home-hero,
  .about-original,
  .competence-hero,
  .real-hero,
  .project-hero,
  .project-layout,
  .enterprise-intro,
  .article-list article,
  .article-list article:nth-child(even),
  .team-list article,
  .why-columns {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    min-height: auto;
  }

  .timeline,
  .quote-grid,
  .school-original .timeline,
  .competence-stats,
  .real-overview,
  .real-work,
  .project-kpis {
    grid-template-columns: 1fr;
  }

  .competencies .section-heading {
    position: static;
  }

  .hero-dots {
    display: none;
  }

  .team-list article {
    text-align: center;
  }

  .color-rail {
    display: none;
  }

  .team-list img {
    order: -1;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 4px;
    padding: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    padding: 10px;
  }

  .section {
    width: min(100% - 32px, var(--max));
    padding: 64px 0;
  }

  .site-header {
    top: 0;
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .brand::after,
  .monogram::after {
    display: none;
  }

  .original-card {
    width: calc(100% - 24px);
    border-radius: 18px;
  }

  .home-hero {
    min-height: auto;
    padding: 34px 28px;
  }

  .compact-top {
    padding-top: 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.8rem, 13vw, 3.6rem);
    line-height: 1.04;
  }

  .home-hero h1 {
    font-size: clamp(2.7rem, 12vw, 3.45rem);
  }

  .title-desktop {
    display: none;
  }

  .title-mobile {
    display: inline;
  }

  h2 {
    font-size: clamp(2.3rem, 10vw, 3.8rem);
  }

  .hero-visual img {
    width: min(100%, 320px);
    transform: none;
  }

  .polaroid-card {
    transform: none;
  }

  .card-light {
    transform: none;
  }

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

  .real-hero-mark {
    display: none;
  }

  .competence-hero-mark {
    display: none;
  }

  .synthesis-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .real-work {
    gap: 24px;
  }

  .real-column {
    grid-template-rows: auto;
  }

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

  .article-list {
    padding-top: 44px;
  }

  .article-list article {
    width: min(100% - 32px, var(--max));
  }

  .watch-intro {
    padding: 42px 22px;
  }

  .watch-intro h1,
  .articles-title h2,
  .article-list h2,
  .page-title h1,
  .team-original h2 {
    font-size: clamp(2.25rem, 12vw, 3.1rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .watch-intro h3,
  .watch-intro p,
  .article-list p,
  .article-list .article-opinion {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .article-list article:nth-child(2) figure img {
    transform: rotate(-2deg);
  }

  .article-list figure img {
    border-radius: 20px;
  }

  .articles-title {
    margin: 60px auto;
    transform: none;
  }

  .team-list {
    padding: 22px;
  }

  .lead,
  .body-large,
  .section-heading p {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .about-copy,
  .hero-copy,
  .section-heading,
  .cream-panel,
  .article-list div {
    width: 100%;
    max-width: 100%;
  }

  .about-copy h2,
  .school-original h2,
  .article-list h2,
  .real-hero h1,
  .project-hero h1 {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .school-original h2 {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .marquee span {
    font-size: clamp(1.25rem, 8vw, 2rem);
  }

  .services-grid,
  .team-grid,
  .project-grid,
  .project-grid.large,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .logo-panel {
    min-height: 240px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

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

  .section,
  .about-original,
  .school-original,
  .enterprise-intro,
  .real-overview,
  .real-work,
  .project-kpis,
  .project-layout,
  .article-list article {
    width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
    margin-right: auto;
    margin-left: auto;
  }

  .original-card,
  .home-hero,
  .real-hero,
  .project-hero,
  .page-title,
  .deco-strip {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }

  .page-title h1 {
    font-size: clamp(1.85rem, 8vw, 2.85rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .about-copy h2,
  .school-original h2 {
    font-size: clamp(2rem, 9vw, 2.85rem);
  }

  .real-overview,
  .real-work {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }

  .real-hero {
    padding: 34px 22px 42px;
  }

  .real-hero-copy {
    width: 100%;
    max-width: min(100%, 280px);
  }

  .real-hero h1 {
    font-size: clamp(1.7rem, 6.7vw, 2.1rem);
    overflow-wrap: anywhere;
  }

  .real-overview article,
  .real-column-head {
    border-radius: 18px;
  }

  .real-card {
    grid-template-columns: 1fr;
    min-height: 390px;
    padding: 28px 22px;
  }

  .real-card figure {
    width: 104px;
    height: 104px;
  }

  .real-card img {
    width: 72px;
    height: 72px;
  }

  .real-card .button {
    grid-column: 1;
  }

  .real-card > div {
    max-width: min(100%, 280px);
  }

  .real-column-head {
    padding: 32px 24px;
    overflow: hidden;
  }

  .real-column-head h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
    max-width: 260px;
    overflow-wrap: break-word;
  }

  .real-column-lead {
    max-width: 260px;
    overflow-wrap: break-word;
  }

  .project-hero {
    padding: 34px 22px 42px;
  }

  .project-hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .project-hero > div,
  .project-panel,
  .project-step {
    width: 100%;
    max-width: 100%;
  }

  .project-panel h2 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    overflow-wrap: break-word;
  }

  .project-panel p,
  .project-step p,
  .project-hero .lead {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .project-hero figure {
    width: min(100%, 220px);
    justify-self: start;
  }

  .project-step {
    grid-template-columns: 1fr;
  }

  .polaroid-card,
  .cyam-logo-block,
  .cream-panel,
  .team-list,
  .real-card,
  .article-list figure {
    width: 100%;
    max-width: 100%;
  }

  .polaroid-card img,
  .article-list figure img {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  main {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .section,
  .original-card,
  .home-hero,
  .real-hero,
  .project-hero,
  .about-original,
  .school-original,
  .enterprise-intro,
  .page-title,
  .deco-strip,
  .real-overview,
  .real-work,
  .project-kpis,
  .project-layout,
  .article-list article {
    width: calc(100vw - 48px) !important;
    max-width: calc(100vw - 48px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .home-hero {
    padding: 42px 28px 28px;
  }

  .home-hero h1 {
    font-size: clamp(2.55rem, 11vw, 3.25rem);
  }

  .about-copy,
  .hero-copy,
  .section-heading,
  .polaroid-card,
  .school-card,
  .real-overview article,
  .real-column-head,
  .real-card,
  .certification-card {
    width: calc(100vw - 48px) !important;
    max-width: calc(100vw - 48px) !important;
    justify-self: start;
  }

  .about-copy h2,
  .section-heading h2 {
    font-size: clamp(2rem, 8.5vw, 2.7rem);
  }

  .about-copy p,
  .real-hero p,
  .real-card p,
  .school-card p,
  .certification-card p {
    max-width: calc(100vw - 96px);
    margin-right: auto;
    margin-left: auto;
    overflow-wrap: break-word;
  }

  .real-card h3,
  .school-card h3,
  .certification-card h3 {
    max-width: calc(100vw - 96px);
  }

  .pill-button {
    min-width: min(220px, 100%);
  }

  .real-hero,
  .real-overview,
  .real-work,
  .project-hero,
  .project-kpis,
  .project-layout {
    width: auto !important;
    max-width: none !important;
    margin-right: 24px !important;
    margin-left: 24px !important;
  }

  .real-overview article,
  .real-column-head,
  .real-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .real-work {
    width: calc(100vw - 96px) !important;
    max-width: calc(100vw - 96px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
    justify-items: stretch;
  }

  .real-column,
  .real-column-head {
    width: 100% !important;
    max-width: 100% !important;
  }

  .real-card-group {
    width: 100%;
    max-width: 100%;
    padding: 16px;
  }

  .real-card-group .real-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .real-hero p,
  .real-card h3,
  .real-card p {
    max-width: 100%;
  }

  .project-panel,
  .project-step,
  .project-steps,
  .project-kpis article {
    width: calc(100vw - 96px) !important;
    max-width: calc(100vw - 96px) !important;
    min-width: 0;
  }

  .project-steps .project-step {
    width: 100% !important;
    max-width: 100% !important;
  }

  .project-hero {
    width: calc(100vw - 96px) !important;
    max-width: calc(100vw - 96px) !important;
  }

  .project-panel *,
  .project-step *,
  .project-hero * {
    max-width: 100%;
  }

  .project-panel p,
  .project-step p,
  .method-intro p,
  .project-hero p {
    overflow-wrap: anywhere;
  }

  .project-summary span {
    flex: 1 1 100%;
    max-width: none;
  }

  .watch-intro h1,
  .articles-title h2,
  .article-list h2,
  .team-original h2,
  .page-title h1 {
    font-size: clamp(1.9rem, 9vw, 2.15rem) !important;
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .watch-intro,
  .articles-title,
  .article-list article {
    width: min(342px, calc(100vw - 48px)) !important;
    max-width: min(342px, calc(100vw - 48px)) !important;
    margin-left: 24px !important;
    margin-right: auto !important;
  }

  .watch-intro *,
  .article-list article > div,
  .article-list p,
  .article-list .article-opinion {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .article-list .article-opinion {
    padding-left: 14px;
    font-size: 0.96rem;
  }
}
