:root {
  --navy: #06172f;
  --navy-2: #0b2342;
  --green: #087443;
  --green-2: #0b8f52;
  --text: #0a1830;
  --muted: #566175;
  --line: #dce2e9;
  --soft: #f4f7f9;
  --blue: #1261c9;
  --font: "Manrope", system-ui, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
.vm-header {
  min-height: 82px;
  padding: 0 clamp(24px, 3.2vw, 58px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid #edf0f3;
  position: relative;
  z-index: 4;
  background: rgba(255, 255, 255, 0.96);
}
.vm-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  white-space: nowrap;
}
.vm-mark {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.08em;
  color: var(--navy);
  position: relative;
}
.vm-mark:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: var(--green);
  right: -8px;
  top: 3px;
  transform: skew(-15deg);
}
.vm-nav {
  display: flex;
  gap: 42px;
}
.vm-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.vm-nav a:hover {
  color: var(--green);
}
.vm-header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  align-items: center;
}
.vm-language {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 3px;
}
.vm-language button {
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  padding: 6px 8px;
  font: 700 11px var(--font);
  cursor: pointer;
}
.vm-language button.active {
  background: var(--navy);
  color: #fff;
}
.vm-button {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 0.2s,
    background 0.2s,
    color 0.2s;
}
.vm-button:hover {
  transform: translateY(-2px);
}
.vm-button-outline {
  border-color: #9ba7b5;
  background: #fff;
}
.vm-button-outline:hover {
  border-color: var(--navy);
}
.vm-button-dark {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 9px 20px rgba(6, 23, 47, 0.12);
}
.vm-button-dark:hover {
  background: var(--navy-2);
}
.vm-button-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 9px 20px rgba(8, 116, 67, 0.14);
}
.vm-button-green:hover {
  background: var(--green-2);
}
.vm-hero {
  min-height: 540px;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  padding-left: clamp(26px, 3.2vw, 64px);
  overflow: hidden;
}
.vm-hero-copy {
  max-width: 840px;
  position: relative;
  z-index: 2;
}
.vm-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(42px, 3.2vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.055em;
}
.vm-hero p {
  max-width: 590px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}
.vm-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.vm-hero-art {
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}
.vm-hero-art img {
  width: min(910px, 118%);
  height: auto;
  display: block;
  transform: translateX(1%);
}
.vm-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.vm-product {
  min-height: 330px;
  padding: 0 0 0 clamp(28px, 4vw, 66px);
  display: grid;
  grid-template-columns: minmax(245px, 0.78fr) minmax(330px, 1.22fr);
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .25s ease, transform .25s ease;
}
.vm-product:hover,
.vm-product:focus-visible {
  position: relative;
  z-index: 2;
  outline: none;
  box-shadow: 0 24px 60px rgba(6, 23, 47, .12);
  transform: translateY(-3px);
}
.vm-product + .vm-product {
  border-left: 1px solid var(--line);
}
.vm-product-listo {
  background: linear-gradient(105deg, #f8fffb, #edf9f3);
}
.vm-product-kreaton {
  background: linear-gradient(105deg, #f8fbff, #eef5ff);
}
.vm-product-listokds {
  grid-column: 1 / -1;
  grid-template-columns: minmax(300px, .72fr) minmax(520px, 1.28fr);
  border-top: 1px solid var(--line);
  border-left: 0 !important;
  background: linear-gradient(105deg, #f8fffb, #edf9f3);
}
.vm-product-listokds a { color: var(--green); }
.vm-product-kds-visual {
  box-sizing: border-box;
  padding: 18px clamp(24px, 4vw, 64px);
  background: transparent;
}
.vm-product-kds-visual img {
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  transform: scale(.88);
}
.vm-product h2 {
  font-size: 38px;
  letter-spacing: -0.045em;
  margin: 0;
}
.vm-product p {
  max-width: 400px;
  min-height: 54px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.vm-product a {
  display: inline-flex;
  gap: 18px;
  text-decoration: none;
  font-weight: 700;
  color: var(--green);
}
.vm-product-kreaton a {
  color: var(--blue);
}
.vm-product-visual {
  height: 330px;
  margin: 0;
  overflow: hidden;
}
.vm-product-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}
.vm-access {
  min-height: 250px;
  padding: 42px clamp(28px, 3.2vw, 62px);
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  align-items: center;
}
.vm-access-heading h2 {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.045em;
  margin: 0;
}
.vm-access-path {
  min-height: 150px;
  padding: 14px 44px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: center;
}
.vm-access-path + .vm-access-path {
  border-left: 1px solid var(--line);
}
.vm-access-icon,
.access-round-icon {
  width: 96px;
  height: 96px;
  border: 1px solid #bdd5c8;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 48px;
  color: var(--green);
}
.vm-access-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.vm-access-internal .vm-access-icon {
  border-color: #c3d5ed;
  color: var(--navy);
}
.vm-access h3 {
  font-size: 22px;
  margin: 0 0 5px;
}
.vm-access p {
  color: var(--muted);
  margin: 0 0 16px;
}
.vm-footer {
  min-height: 92px;
  padding: 0 clamp(28px, 3.2vw, 62px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.vm-footer div {
  display: flex;
  gap: 28px;
}
.vm-footer a {
  text-decoration: none;
}
.access-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.access-header {
  min-height: 82px;
  padding: 0 clamp(24px, 3.2vw, 58px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.access-header > a:last-child {
  font-size: 13px;
}
.access-main {
  flex: 1;
  padding: 42px clamp(28px, 10vw, 170px) 34px;
}
.access-title {
  text-align: center;
  margin-bottom: 38px;
}
.access-title h1 {
  font-size: 52px;
  letter-spacing: -0.05em;
  margin: 0 0 8px;
}
.access-title p {
  color: var(--muted);
  margin: 0;
}
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.access-choice {
  padding: 0 7% 12px;
}
.access-choice + .access-choice {
  border-left: 1px solid var(--line);
}
.access-preview {
  height: 240px;
  border: 1px solid #a8cbb8;
  margin-bottom: 28px;
  padding: 66px 30px 20px;
}
.timeline {
  display: flex;
  align-items: center;
}
.timeline span {
  width: 38px;
  height: 38px;
  border: 2px solid #aeb7c2;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
}
.timeline span.done,
.timeline span.active {
  border-color: var(--green);
  color: var(--green);
}
.timeline i {
  flex: 1;
  height: 2px;
  background: #bcc4cc;
}
.timeline-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  font-size: 11px;
  text-align: center;
  margin-top: 13px;
}
.staff-preview {
  border-color: #c8d6e8;
  padding: 0;
  background: #fff;
}
.staff-bar {
  height: 30px;
  background: var(--navy);
}
.staff-table {
  padding: 30px;
  display: grid;
  gap: 16px;
}
.staff-table span {
  height: 22px;
  border-bottom: 1px solid #d7dee6;
  position: relative;
}
.staff-table span:after {
  content: "";
  position: absolute;
  right: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
}
.access-choice-copy {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
}
.access-choice-copy .access-round-icon {
  width: 72px;
  height: 72px;
  font-size: 36px;
}
.access-choice h2 {
  font-size: 30px;
  letter-spacing: -0.04em;
  margin: 0 0 7px;
}
.access-choice p {
  max-width: 500px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 20px;
}
.access-choice .vm-button {
  width: 100%;
  max-width: 410px;
}
.access-secondary {
  display: block;
  margin: 18px 12px 0;
  color: var(--green);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.access-choice small {
  display: block;
  margin-top: 20px;
  color: var(--muted);
}
.access-footer {
  min-height: 76px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  font-size: 13px;
}
.access-footer a {
  font-weight: 700;
}
.access-staff .access-round-icon {
  color: var(--navy);
  border-color: #cad6e5;
}
@media (max-width: 980px) {
  .vm-header {
    grid-template-columns: 1fr auto;
  }
  .vm-nav {
    display: none;
  }
  .vm-header-actions .vm-button-outline {
    display: none;
  }
  .vm-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 74px 26px 0;
  }
  .vm-hero-art {
    height: 360px;
  }
  .vm-hero-art img {
    width: 780px;
    max-width: none;
  }
  .vm-products {
    grid-template-columns: 1fr;
  }
  .vm-product + .vm-product {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .vm-product-listokds {
    grid-template-columns: minmax(245px, .78fr) minmax(330px, 1.22fr);
  }
  .vm-access {
    grid-template-columns: 1fr 1fr;
  }
  .vm-access-heading {
    grid-column: 1/-1;
    margin-bottom: 24px;
  }
  .vm-access-path {
    padding-left: 0;
  }
  .access-main {
    padding-left: 28px;
    padding-right: 28px;
  }
}
@media (max-width: 680px) {
  .vm-header {
    min-height: 68px;
    padding: 0 18px;
  }
  .vm-brand {
    font-size: 13px;
  }
  .vm-brand > span:last-child {
    display: none;
  }
  .vm-mark {
    font-size: 25px;
  }
  .vm-header-actions .vm-button {
    min-height: 38px;
    padding: 0 12px;
    font-size: 11px;
  }
  .vm-header-actions { gap: 6px; }
  .vm-language button { padding: 5px 6px; font-size: 10px; }
  .vm-hero {
    padding-top: 52px;
  }
  .vm-hero h1 {
    font-size: 39px;
  }
  .vm-hero p {
    font-size: 15px;
  }
  .vm-actions .vm-button {
    width: 100%;
  }
  .vm-hero-art {
    height: 270px;
  }
  .vm-hero-art img {
    width: 610px;
    transform: translateX(20%);
  }
  .vm-product {
    grid-template-columns: 1fr;
    min-height: 540px;
    padding: 34px 0 0 26px;
  }
  .vm-product-listokds { grid-template-columns: 1fr; }
  .vm-product-kds-visual { padding: 0; }
  .vm-product-kds-visual img { transform: none; }
  .vm-product h2 {
    font-size: 31px;
  }
  .vm-product-visual {
    height: 310px;
    margin-top: 22px;
  }
  .vm-access {
    grid-template-columns: 1fr;
    padding: 44px 26px;
  }
  .vm-access-heading h2 {
    font-size: 34px;
  }
  .vm-access-path {
    grid-template-columns: 66px 1fr;
    padding: 26px 0;
  }
  .vm-access-path + .vm-access-path {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .vm-access-icon {
    width: 58px;
    height: 58px;
    font-size: 30px;
  }
  .vm-footer {
    padding: 26px;
    display: grid;
    gap: 16px;
  }
  .vm-footer div {
    flex-wrap: wrap;
    gap: 16px;
  }
  .access-header {
    padding: 0 18px;
  }
  .access-main {
    padding: 38px 20px;
  }
  .access-title h1 {
    font-size: 39px;
  }
  .access-grid {
    grid-template-columns: 1fr;
  }
  .access-choice {
    padding: 0 0 34px;
  }
  .access-choice + .access-choice {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 34px;
  }
  .access-preview {
    height: 190px;
    padding-top: 48px;
  }
  .access-choice-copy {
    grid-template-columns: 1fr;
  }
  .access-round-icon {
    display: none;
  }
  .access-footer {
    padding: 22px;
    flex-wrap: wrap;
    gap: 18px;
  }
}
