:root {
  --emko-wm2-blue: #0079c1;
  --emko-wm2-blue-dark: #005f98;
  --emko-wm2-ink: #111827;
  --emko-wm2-muted: #5e6978;
  --emko-wm2-soft: #f5f8fb;
  --emko-wm2-line: #e7edf3;
  --emko-wm2-white: #ffffff;
  --emko-wm2-radius-lg: 28px;
  --emko-wm2-radius-md: 18px;
  --emko-wm2-max: 1180px;
}

* { box-sizing: border-box; }

.emko-wm2-page {
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--emko-wm2-ink);
  background: #fff;
  line-height: 1.6;
  overflow: clip;
}
.emko-wm2-page img { display: block; max-width: 100%; }
.emko-wm2-page a { color: inherit; text-decoration: none; }
.emko-wm2-page h1,
.emko-wm2-page h2,
.emko-wm2-page h3,
.emko-wm2-page p { margin-top: 0; }
.emko-wm2-page h1,
.emko-wm2-page h2,
.emko-wm2-page h3 { line-height: 1.1; letter-spacing: -.035em; }

.emko-wm2-container {
  width: min(var(--emko-wm2-max), calc(100% - 48px));
  margin-inline: auto;
}
.emko-wm2-eyebrow {
  margin: 0 0 14px;
  color: var(--emko-wm2-blue-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.emko-wm2-eyebrow--light { color: #d9f1ff; }

.emko-wm2-hero {
  padding: 82px 0 88px;
  background: #f7fafc;
}
.emko-wm2-hero__grid {
  min-height: 600px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 68px;
  align-items: center;
}
.emko-wm2-hero__copy h1 {
  margin-bottom: 14px;
  color: var(--emko-wm2-blue);
  font-size: clamp(58px, 7vw, 88px);
}
.emko-wm2-hero__copy h2 {
  max-width: 610px;
  margin-bottom: 22px;
  font-size: clamp(31px, 3.4vw, 46px);
}
.emko-wm2-hero__lead {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--emko-wm2-muted);
  font-size: 18px;
}
.emko-wm2-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 34px;
}
.emko-wm2-actions--center { justify-content: center; }
.emko-wm2-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 9px;
  background: var(--emko-wm2-blue);
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  transition: background-color .18s ease, transform .18s ease;
}
.emko-wm2-btn:hover {
  background: var(--emko-wm2-blue-dark);
  transform: translateY(-1px);
}
.emko-wm2-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--emko-wm2-ink);
  font-size: 14px;
  font-weight: 800;
}
.emko-wm2-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 21px;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.emko-wm2-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.emko-wm2-link--light { color: #fff !important; }
.emko-wm2-hero__meta {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--emko-wm2-line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: #707d8f;
  font-size: 12px;
  font-weight: 700;
}
.emko-wm2-hero__meta span:not(:last-child)::after {
  content: "·";
  margin-left: 24px;
  color: #b5c0cc;
}
.emko-wm2-hero__product { margin: 0; }
.emko-wm2-hero__product-stage {
  min-height: 500px;
  padding: 16px 0 8px;
  display: grid;
  place-items: center;
  border-radius: var(--emko-wm2-radius-lg);
  background: transparent;
}
.emko-wm2-hero__product-stage img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}
.emko-wm2-hero__product figcaption {
  padding: 8px 4px 0;
  color: #778394;
  font-size: 12px;
  font-weight: 700;
}

.emko-wm2-section { padding: 92px 0; }
.emko-wm2-section--soft { background: var(--emko-wm2-soft); }

.emko-wm2-intro {
  border-top: 1px solid var(--emko-wm2-line);
}
.emko-wm2-intro__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 92px;
  align-items: start;
}
.emko-wm2-intro h2,
.emko-wm2-sectionhead h2,
.emko-wm2-final h2,
.emko-wm2-orientation h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 48px);
}
.emko-wm2-prose p {
  color: var(--emko-wm2-muted);
  font-size: 17px;
}
.emko-wm2-prose p:last-child { margin-bottom: 0; }
.emko-wm2-intro__media {
  margin-top: 54px;
  overflow: hidden;
  border-radius: var(--emko-wm2-radius-lg);
}
.emko-wm2-intro__media img {
  width: 100%;
  aspect-ratio: 16 / 7.7;
  object-fit: cover;
}

.emko-wm2-sectionhead {
  max-width: 790px;
  margin: 0 auto 44px;
  text-align: center;
}
.emko-wm2-sectionhead--left {
  max-width: 760px;
  margin-left: 0;
  text-align: left;
}
.emko-wm2-sectionhead > p:last-child {
  margin-bottom: 0;
  color: var(--emko-wm2-muted);
  font-size: 15px;
}

.emko-wm2-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
.emko-wm2-feature {
  min-height: 230px;
  padding: 26px;
  border-radius: 22px;
  background: #fff;
}
.emko-wm2-feature__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.emko-wm2-feature__icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.emko-wm2-feature h3 {
  margin-bottom: 9px;
  font-size: 18px;
}
.emko-wm2-feature p {
  margin-bottom: 0;
  color: var(--emko-wm2-muted);
  font-size: 13px;
  line-height: 1.65;
}

.emko-wm2-feature-row {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.emko-wm2-feature-row--reverse .emko-wm2-feature-row__copy { order: 2; }
.emko-wm2-feature-row--reverse .emko-wm2-feature-row__media { order: 1; }
.emko-wm2-feature-row__copy h2,
.emko-wm2-library__copy h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 3.6vw, 45px);
}
.emko-wm2-feature-row__copy > p,
.emko-wm2-library__copy > p {
  color: var(--emko-wm2-muted);
  font-size: 16px;
}
.emko-wm2-number {
  display: inline-block;
  margin-bottom: 20px;
  color: #a6b2bf;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.emko-wm2-number--light { color: #cbeaff; }
.emko-wm2-feature-row__media {
  margin: 0;
  min-height: 390px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--emko-wm2-soft);
}
.emko-wm2-feature-row__media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}
.emko-wm2-feature-row__media--wide img {
  object-position: center 54%;
}

.emko-wm2-performance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
}
.emko-wm2-performance article {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--emko-wm2-line);
}
.emko-wm2-performance__media {
  aspect-ratio: 1.45 / 1;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 20px;
}
.emko-wm2-performance__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.emko-wm2-performance h3 {
  margin-bottom: 8px;
  font-size: 21px;
}
.emko-wm2-performance p {
  margin-bottom: 0;
  color: var(--emko-wm2-muted);
  font-size: 14px;
}

.emko-wm2-blue {
  padding: 96px 0;
  background: var(--emko-wm2-blue);
  color: #fff;
}
.emko-wm2-blue__grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 70px;
  align-items: center;
}
.emko-wm2-blue__copy h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(32px, 4vw, 46px);
}
.emko-wm2-blue__copy > p {
  color: #e4f4fd;
  font-size: 16px;
}
.emko-wm2-blue__list {
  list-style: none;
  margin: 26px 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px 20px;
  font-size: 13px;
}
.emko-wm2-blue__list li {
  position: relative;
  padding-left: 19px;
}
.emko-wm2-blue__list li::before {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  left: 0;
  top: .62em;
  border-radius: 50%;
  background: #d8f1ff;
}
.emko-wm2-cms {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
}
.emko-wm2-cms__logo {
  width: 210px;
  height: auto;
  margin: 0 0 20px;
}
.emko-wm2-cms__screen {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.emko-wm2-orientation {
  padding: 94px 0 0;
  background: var(--emko-wm2-soft);
}
.emko-wm2-orientation__head {
  max-width: 820px;
  margin-bottom: 44px;
  text-align: center;
}
.emko-wm2-orientation__head p:last-child {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--emko-wm2-muted);
  font-size: 17px;
}
.emko-wm2-orientation__media {
  width: 100%;
  overflow: hidden;
}
.emko-wm2-orientation__media img {
  width: 100%;
  min-height: 400px;
  object-fit: cover;
}

.emko-wm2-library {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 68px;
  align-items: center;
}
.emko-wm2-library__media {
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  background: var(--emko-wm2-soft);
}
.emko-wm2-library__media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}
.emko-wm2-usecases {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--emko-wm2-line);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: #5d6877;
  font-size: 12px;
  font-weight: 700;
}
.emko-wm2-usecases span:not(:last-child)::after {
  content: "·";
  margin-left: 18px;
  color: #aab5c1;
}

.emko-wm2-final {
  padding: 104px 0;
  text-align: center;
}
.emko-wm2-final__inner { max-width: 840px; }
.emko-wm2-final p:not(.emko-wm2-eyebrow) {
  max-width: 700px;
  margin: 16px auto 0;
  color: var(--emko-wm2-muted);
  font-size: 17px;
}

@media (max-width: 980px) {
  .emko-wm2-hero__grid,
  .emko-wm2-intro__grid,
  .emko-wm2-feature-row,
  .emko-wm2-blue__grid,
  .emko-wm2-library {
    gap: 44px;
  }
  .emko-wm2-features {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 820px) {
  .emko-wm2-section { padding: 74px 0; }
  .emko-wm2-hero { padding: 62px 0 72px; }
  .emko-wm2-hero__grid,
  .emko-wm2-intro__grid,
  .emko-wm2-feature-row,
  .emko-wm2-blue__grid,
  .emko-wm2-library {
    grid-template-columns: 1fr;
  }
  .emko-wm2-feature-row--reverse .emko-wm2-feature-row__copy,
  .emko-wm2-feature-row--reverse .emko-wm2-feature-row__media {
    order: initial;
  }
  .emko-wm2-hero__product-stage {
    min-height: 390px;
  }
  .emko-wm2-feature-row__media,
  .emko-wm2-feature-row__media img {
    min-height: 330px;
  }
  .emko-wm2-library__media,
  .emko-wm2-library__media img {
    min-height: 360px;
  }
}

@media (max-width: 580px) {
  .emko-wm2-container {
    width: min(var(--emko-wm2-max), calc(100% - 32px));
  }
  .emko-wm2-hero__copy h1 { font-size: 52px; }
  .emko-wm2-hero__copy h2,
  .emko-wm2-intro h2,
  .emko-wm2-sectionhead h2,
  .emko-wm2-final h2,
  .emko-wm2-orientation h2 {
    font-size: 31px;
  }
  .emko-wm2-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .emko-wm2-actions--center { align-items: center; }
  .emko-wm2-hero__meta span::after,
  .emko-wm2-usecases span::after {
    display: none;
  }
  .emko-wm2-hero__product-stage {
    min-height: 300px;
    padding: 24px;
  }
  .emko-wm2-features,
  .emko-wm2-performance,
  .emko-wm2-blue__list {
    grid-template-columns: 1fr;
  }
  .emko-wm2-feature-row__media,
  .emko-wm2-feature-row__media img {
    min-height: 280px;
  }
  .emko-wm2-orientation__media img {
    min-height: 300px;
  }
  .emko-wm2-library__media,
  .emko-wm2-library__media img {
    min-height: 300px;
  }
}
