:root {
  --bg: #f8f8f8;
  --ink: #11110f;
  --muted: #6c6962;
  --line: rgba(17, 17, 15, 0.14);
  --paper: #fffefa;
  --dark: #11110f;
  --dark-soft: #1b1b18;
  --brand-orange: #ffb20e;
  --gold: #c8912f;
  --blue: #2278ff;
  --red: #ff3b30;
  --font:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC",
    "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

/* Top navigation */
.topbar {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 0 52px;
  background: rgba(255, 254, 250, 0.48);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px);
}

.topbar__left,
.topbar__right,
.topnav {
  display: flex;
  align-items: center;
}

.topbar__left {
  gap: 30px;
}

.topbar__right {
  margin-left: auto;
  justify-content: flex-end;
  gap: 20px;
}

.topnav {
  gap: 24px;
  color: var(--muted);
}

.topbar a,
.menu-button {
  font-size: 14px;
  line-height: 28px;
  font-weight: 600;
  font-synthesis: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.topbar a:hover,
.topnav a.active {
  color: var(--ink);
}
.box-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* background-color: #000; */
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--dark);
}

.brand-mark img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button__arrow {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.topbar__cta,
.button,
.mini-button {
  border-radius: 8px;
}

.topbar__phone {
  height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.topbar__phone:hover {
  color: var(--ink);
}

.topbar__locale {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.topbar__cta {
  height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  background: var(--dark);
  color: #fff;
}

.language-switcher {
  position: relative;
}

.language-switcher__button {
  height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.58);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  line-height: 1;
  font-weight: 650;
  cursor: pointer;
}

.language-switcher__flag {
  font-size: 16px;
  line-height: 1;
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 55;
  min-width: 158px;
  padding: 6px;
  border: 1px solid rgba(17, 17, 15, 0.12);
  border-radius: 12px;
  background: rgba(255, 254, 250, 0.94);
  box-shadow: 0 18px 50px rgba(17, 17, 15, 0.16);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.language-switcher.is-open .language-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-switcher__menu button {
  width: 100%;
  min-height: 38px;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  align-items: center;
  padding: 7px 9px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.language-switcher__menu button:hover,
.language-switcher__menu button.is-active {
  background: var(--brand-orange);
}

.language-switcher__menu span {
  font-size: 17px;
}

.language-switcher__menu strong {
  font-size: 13px;
  line-height: 1.1;
}

.language-switcher__menu em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  white-space: nowrap;
}

/* Explore menu */
.mega-menu {
  position: fixed;
  z-index: 35;
  top: 72px;
  left: 52px;
  right: 52px;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms ease;
}

.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0;
  overflow: hidden;
  min-height: 320px;
  padding: 0 clamp(26px, 4vw, 72px) 0 102px;
  border: 1px solid var(--line);
  border-radius: 0 0 18px 18px;
  background: rgba(255, 254, 250, 0.48);
  backdrop-filter: blur(22px);
  box-shadow: 0 28px 80px rgba(17, 17, 15, 0.18);
}

.mega-menu__rail {
  padding: 16px 0;
  border-right: 1px solid var(--line);
}

.mega-menu__rail a {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.mega-menu__rail a:hover {
  color: var(--ink);
  background: rgba(17, 17, 15, 0.04);
}

.mega-menu__content {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: transparent;
}

.mega-menu__column {
  min-height: 320px;
  padding: 26px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: transparent;
}

.mega-menu__column .eyebrow {
  margin-bottom: 8px;
  position: relative;
  width: fit-content;
  padding: 0 0 8px;
  color: rgba(17, 17, 15, 0.42);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.2;
  font-weight: 820;
  text-transform: none;
}

.mega-menu__column .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 260ms cubic-bezier(0.19, 1, 0.22, 1);
}

.mega-menu__column:hover .eyebrow::after,
.mega-menu__column:focus-within .eyebrow::after,
.mega-menu__column.is-active .eyebrow::after {
  transform: scaleX(1);
}

.mega-menu__column a {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  margin-left: -12px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--ink);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.32;
  font-weight: 650;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.mega-menu__column a:hover,
.mega-menu__column a.is-active {
  background: var(--brand-orange);
  color: var(--ink);
}

.mega-menu__column a.mega-menu__link--muted {
  color: rgba(17, 17, 15, 0.42);
}

.mega-menu__column a.mega-menu__link--muted:hover,
.mega-menu__column a.mega-menu__link--muted.is-active {
  background: var(--brand-orange);
  color: var(--ink);
}

.mega-menu__coming {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: -12px;
  padding: 0 12px;
  border-radius: 8px;
  color: rgba(17, 17, 15, 0.42);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.32;
  font-weight: 650;
  cursor: default;
}

.mega-menu__coming em {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 7px;
  border-radius: 5px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  line-height: 1;
  font-style: normal;
  font-weight: 820;
  white-space: nowrap;
}

.mega-menu__column--social {
  position: relative;
}

.mega-menu__social-link {
  position: static;
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-left: -12px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--ink);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.32;
  font-weight: 650;
  cursor: default;
  outline: none;
}

.mega-menu__social-link:hover,
.mega-menu__social-link:focus-visible {
  background: var(--brand-orange);
  color: var(--ink);
}

.social-qr {
  position: absolute;
  z-index: 4;
  top: 135px;
  right: -10px;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 10px;
  background: rgba(255, 254, 250, 0.94);
  box-shadow: 0 18px 42px rgba(17, 17, 15, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(6px, -50%) scale(0.98);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.19, 1, 0.22, 1);
}

.mega-menu__social-link:hover .social-qr,
.mega-menu__social-link:focus-within .social-qr {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}

.qr-placeholder {
  width: 86px;
  height: 86px;
  display: block;
  background: #fff url("assets/qrsample.png") center / 112% 112% no-repeat;
}

@media (min-width: 1440px) {
  .social-qr {
    left: var(--social-qr-left, auto);
    right: var(--social-qr-right, -10px);
  }
}

/* Shared layout */
main {
  padding-top: 72px;
}

.section {
  min-height: auto;
  padding: clamp(48px, 4.8vw, 64px) clamp(96px, 9vw, 152px);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 72px;
}

.section--dark {
  background: var(--dark);
  color: #fff;
}

.section--product-lineup {
  min-height: auto;
  padding-bottom: clamp(56px, 5.2vw, 86px);
  background: var(--paper);
  color: var(--ink);
}

.section--product-lineup .section-heading p {
  max-width: none;
  white-space: nowrap;
}

.section--product {
  position: relative;
  background: var(--bg);
  padding: 0;
}

.section--product-value {
  position: relative;
  background: var(--bg);
  padding-bottom: clamp(80px, 8vh, 120px);
}

.eyebrow,
.hero__bar,
.showcase-card > span,
.course-card > span,
.support-card > span {
  color: var(--muted);
  font-size: 14px;
  line-height: 28px;
  font-weight: 650;
  text-transform: uppercase;
}

.eyebrow--gold {
  color: var(--gold);
}

.button {
  min-width: 138px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--ink);
  font-size: 14px;
  line-height: 28px;
  font-weight: 650;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button--dark {
  background: var(--dark);
  color: #fff;
}

.button--light {
  background: transparent;
}

.hero-button:hover {
  background: var(--dark);
  color: #fff;
}

.button--light-filled {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

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

.hero__copy .actions {
  margin-top: 24px;
}

/* Hero */
.section--hero {
  min-height: calc(100vh - 72px);
  padding-top: 33px;
  padding-left: clamp(72px, 7vw, 118px);
  padding-right: clamp(72px, 7vw, 118px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero__bar {
  display: flex;
  gap: 12px;
}

.hero__bar {
  justify-content: flex-end;
  align-items: center;
  padding-right: 18px;
  padding-bottom: 0;
  border-bottom: 0;
  color: var(--ink);
  text-align: right;
  text-transform: none;
}

.hero-time {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(17, 17, 15, 0.08);
  font-weight: 700;
}

.hero-ticker {
  position: relative;
  width: 128px;
  height: 28px;
  display: inline-block;
  overflow: hidden;
  text-align: right;
}

.hero-ticker__track {
  display: flex;
  flex-direction: column;
  animation: heroTickerSlide 7.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  will-change: transform;
}

.hero-ticker__track span {
  height: 28px;
  line-height: 28px;
  white-space: nowrap;
}

@keyframes heroTickerSlide {
  0%,
  36% {
    transform: translateY(0);
  }

  50%,
  86% {
    transform: translateY(-28px);
  }

  100% {
    transform: translateY(-56px);
  }
}

.hero__layout {
  flex: 1;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(560px, 1.35fr);
  gap: 34px;
  align-items: stretch;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding-right: 2vw;
}

h1 {
  max-width: 850px;

      font-size: clamp(52px, 5.65vw, 86px);
    line-height: 1.1;
    font-weight: 650;
}

h1 span {
  display: block;
}

.hero__lead {
  max-width: 650px;
  padding-top: 12px;
  color: #34322d;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 600;
}

.hero__media {
  position: relative;
  min-height: 580px;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.18), rgba(10, 10, 10, 0)),
    #d1d0cb;
}

.hero__media img {
  position: relative;
  z-index: 2;
  width: 108%;
  max-width: none;
  height: 108%;
  object-fit: cover;
}

.hero__orbit {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  transform: translateX(-50%) rotateX(65deg);
  pointer-events: none;
}

.hero__orbit--red {
  left: 48%;
  bottom: 10%;
  width: 58%;
  height: 23%;
  border: 2px solid rgba(255, 59, 48, 0.62);
  box-shadow: 0 0 34px rgba(255, 59, 48, 0.28);
}

.hero__orbit--blue {
  left: 42%;
  bottom: 20%;
  width: 44%;
  height: 17%;
  border: 2px solid rgba(34, 120, 255, 0.38);
  box-shadow: 0 0 30px rgba(34, 120, 255, 0.18);
}

/* Section headings */
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 44px;
}

.section-heading > span {
  color: var(--muted);
  font-size: 14px;
  line-height: 28px;
  font-weight: 600;
}

.section-heading h2 {
  max-width: 1050px;
  /* font-size: clamp(50px, 6.2vw, 88px);
  line-height: 1;
  font-weight: 650; */
  font-size: clamp(48px, 5.65vw, 82px);
  line-height: 1.1;
  font-weight: 500;
}

.section-heading p {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.section-heading--product,
.section-heading--compact {
  margin-bottom: 34px;
}

#scenes .section-heading h2 span {
  display: block;
}

#scenes .section-heading p {
  max-width: none;
  width: 100%;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.45;
  white-space: nowrap;
}

#product .section-heading h2 span {
  display: block;
}

#product .section-heading p {
  max-width: none;
  width: 100%;
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 1.45;
  white-space: nowrap;
}

.section--dark .section-heading > span,
.section--dark .section-heading p {
  color: rgba(255, 255, 255, 0.58);
}

/* Product */
.product-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: stretch;
}

.product-intro > div,
.product-intro figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  overflow: hidden;
}

.product-intro > div {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-intro h3 {
  margin-top: 18px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  font-weight: 650;
}

.product-intro p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.product-actions {
  margin-top: 30px;
}

.product-intro img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #d1d0cb;
}

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

.plus-grid article {
  min-height: 210px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.plus-grid span {
  color: var(--brand-orange);
  font-size: 42px;
  line-height: 1;
  font-weight: 760;
}

.plus-grid strong {
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.05;
}

.plus-grid p {
  margin-top: auto;
  color: var(--muted);
}

.product-value-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.product-value-detail {
  width: 100%;
}

.product-efficiency-screen {
  min-height: auto;
  padding: clamp(52px, 5.4vw, 72px) clamp(96px, 9vw, 152px);
  scroll-margin-top: 72px;
  scroll-snap-align: start;
}

.product-efficiency-screen--intro {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-efficiency-screen--details {
  position: relative;
  height: auto;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(38px, 5vh, 62px);
  padding-bottom: clamp(64px, 7vw, 104px);
  overflow: visible;
}

.product-efficiency-screen--details .product-value-board {
  margin-bottom: clamp(40px, 4vw, 64px);
}

.product-value-visual {
  aspect-ratio: 2.1 / 1;
  min-height: 0;
  max-height: 460px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #d1d0cb;
}

.product-value-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 52%;
}

.value-panel {
  min-height: 500px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.value-panel__head {
  display: grid;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.value-panel__head h3 {
  max-width: 680px;
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1;
  font-weight: 650;
}

.value-list {
  border-top: 0;
}

.value-list p,
.value-item summary {
  min-height: 74px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 24px;
  align-items: center;
  margin: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.value-item {
  border-bottom: 1px solid var(--line);
}

.value-item summary {
  cursor: pointer;
  list-style: none;
  border-bottom: 0;
}

.value-item summary::-webkit-details-marker {
  display: none;
}

.value-item__body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  will-change: max-height, opacity, transform;
  transition:
    max-height 920ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 520ms ease,
    transform 820ms cubic-bezier(0.19, 1, 0.22, 1);
}

.value-item__body p {
  min-height: 0;
  display: block;
  margin: -4px 0 24px 70px;
  border-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.value-item:hover .value-item__body,
.value-item:focus-within .value-item__body {
  max-height: 112px;
  opacity: 1;
  transform: translateY(0);
}

.value-item .list-row__index--plus {
  transition: transform 820ms cubic-bezier(0.19, 1, 0.22, 1);
}

.value-item:hover .list-row__index--plus,
.value-item:focus-within .list-row__index--plus {
  transform: rotate(45deg);
}

.value-list strong {
  font-size: clamp(19px, 1.7vw, 28px);
  line-height: 1.12;
  font-weight: 650;
}

.product-cta-row {
  position: static;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-cta-row p {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

/* Solutions list */
.list {
  border-top: 1px solid var(--line);
}

.list-row {
  min-height: 132px;
  display: grid;
  grid-template-columns: 80px minmax(280px, 0.9fr) 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.list--abilities .list-row {
  grid-template-columns: 64px minmax(280px, 0.9fr) 1fr auto;
}

.list-row__index {
  color: var(--muted);
  font-size: 18px;
}

.list-row__index--plus {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  color: var(--brand-orange);
  font-size: 42px;
  line-height: 1;
  font-weight: 760;
}

.list-row h3 {
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.1;
  font-weight: 650;
}

.list-row p {
  color: var(--muted);
}

.mini-button {
  min-width: 112px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  font-weight: 650;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

/* Cards */
.card-grid,
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.showcase-card,
.course-card,
.support-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 18px;
}

.showcase-card {
  overflow: hidden;
  background: var(--paper);
}

.showcase-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.showcase-card > span,
.showcase-card h3,
.showcase-card p {
  display: block;
  margin-left: 22px;
  margin-right: 22px;
}

.showcase-card > span {
  margin-top: 22px;
}

.showcase-card h3 {
  margin-top: clamp(24px, 3.1vw, 46px);
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: 1.08;
  font-weight: 650;
}

.showcase-card p {
  margin-top: 16px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.course-card {
  min-height: 390px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--dark-soft);
  border-color: rgba(255, 255, 255, 0.14);
}

.course-card > span {
  color: var(--gold);
  font-weight: 800;
}

.course-card h3 {
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1;
  font-weight: 650;
}

.course-card p,
.course-card small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 28px;
}

.product-lineup {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
  align-items: stretch;
}

.product-card {
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: var(--ink);
}

.product-card figure {
  position: relative;
  height: clamp(250px, 20vw, 322px);
  margin: 0 0 clamp(16px, 1.8vw, 26px);
  display: grid;
  place-items: end center;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
}

.product-card figure > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.product-card h3,
.product-card h4,
.product-card p,
.product-card__button {
  width: min(100%, 88%);
}

.product-card h3 {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  color: var(--brand-orange);
  font-size: clamp(34px, 3vw, 50px);
  line-height: 1;
  font-weight: 760;
}

.product-card__code {
  color: var(--brand-orange);
}

.product-card__series {
  padding-bottom: 3px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1;
  font-weight: 760;
}

.product-card h4 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.12;
  font-weight: 650;
}

.product-card p {
  margin-top: 14px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.42;
}

.product-card__button {
  min-height: 48px;
  margin-top: auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--brand-orange);
  color: var(--ink);
  font-size: 16px;
  font-weight: 760;
}

/* Metis directory */
.directory {
  min-height: 480px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.directory__map {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(17, 17, 15, 0.08) 1px, transparent 1px), #e5e2da;
  background-size: 58px 58px;
}

.node {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark);
  box-shadow: 0 0 0 10px rgba(34, 120, 255, 0.12);
}

.node--a {
  left: 18%;
  top: 28%;
}
.node--b {
  left: 58%;
  top: 22%;
}
.node--c {
  left: 72%;
  top: 64%;
}
.node--d {
  left: 32%;
  top: 70%;
}

.route {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(34, 120, 255, 0.54);
}

.route--a {
  left: 21%;
  top: 32%;
  width: 39%;
  transform: rotate(-8deg);
}
.route--b {
  left: 60%;
  top: 27%;
  width: 35%;
  transform: rotate(72deg);
}
.route--c {
  left: 34%;
  top: 72%;
  width: 40%;
  transform: rotate(-8deg);
}

.directory__stats {
  display: grid;
  align-content: stretch;
  border-left: 1px solid var(--line);
}

.directory__stats div {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.directory__stats div:last-child {
  border-bottom: 0;
}

.directory__stats span {
  color: var(--muted);
}

.directory__stats strong {
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.08;
}

.directory--dark {
  margin-top: 28px;
  border-color: rgba(255, 255, 255, 0.14);
  background: var(--dark-soft);
}

.directory--dark .directory__map {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), #191916;
  background-size: 58px 58px;
}

.directory--dark .directory__stats {
  border-left-color: rgba(255, 255, 255, 0.14);
}

.directory--dark .directory__stats div {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.directory--dark .directory__stats span {
  color: rgba(255, 255, 255, 0.52);
}

.directory--dark .directory__stats strong {
  color: #fff;
}

/* Platform overview */
.platform-section {
  display: grid;
  gap: clamp(52px, 5.2vw, 86px);
  padding-top: clamp(64px, 6.2vw, 96px);
  padding-bottom: clamp(72px, 6.8vw, 108px);
}

.platform-hero {
  display: grid;
  grid-template-columns: minmax(420px, 1.18fr) minmax(360px, 0.82fr);
  gap: clamp(44px, 5vw, 82px);
  align-items: stretch;
}

.platform-hero__copy {
  order: 2;
}

.platform-hero__visual {
  order: 1;
}

.platform-hero__copy {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(26px, 2.8vw, 42px);
}

.platform-hero__copy h2 {
  max-width: 780px;
  color: #fff;
  /* font-size: clamp(48px, 5.1vw, 86px);
  line-height: 0.96;
  font-weight: 760; */
  font-size: clamp(48px, 5.65vw, 82px);
  line-height: 1.1;
  font-weight: 500;
}

.platform-hero__lead {
  color: var(--brand-orange);
  font-size: clamp(24px, 2.3vw, 38px);
  line-height: 1.14;
  font-weight: 720;
}

.platform-hero__copy p:not(.platform-hero__lead) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.66;
}

.platform-hero__visual {
  min-height: clamp(380px, 39vw, 570px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #151512;
}

.platform-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: clamp(380px, 39vw, 570px);
  object-fit: cover;
  object-position: center 26%;
}

.platform-value {
  position: relative;
  display: grid;
  grid-template-columns: minmax(540px, 1.2fr) minmax(420px, 0.8fr);
  column-gap: clamp(48px, 6vw, 104px);
  row-gap: clamp(30px, 3.5vw, 54px);
  align-items: center;
  padding: clamp(48px, 5vw, 76px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 42%, rgba(255, 178, 14, 0.1), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.045);
  background-size: auto, 68px 68px, 68px 68px, auto;
}

.platform-value::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 58%, rgba(255, 178, 14, 0.06) 58% 59%, transparent 59%),
    radial-gradient(circle at 78% 26%, rgba(54, 118, 182, 0.18), transparent 28%);
  pointer-events: none;
}

.platform-value h3 {
  position: relative;
  max-width: 880px;
  color: #fff;
  font-size: clamp(42px, 4.9vw, 76px);
  line-height: 1.02;
  font-weight: 720;
}

.platform-value p {
  position: relative;
  max-width: 620px;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.18vw, 20px);
  line-height: 1.68;
  font-weight: 560;
}

.platform-value p + p {
  margin-top: 14px;
}

.platform-entry-links {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
  margin-top: 0;
}

.platform-entry-links a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  column-gap: 18px;
  row-gap: 12px;
  align-content: space-between;
  min-height: clamp(138px, 11vw, 172px);
  padding: clamp(20px, 2vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 178, 14, 0.1), transparent 46%),
    rgba(255, 255, 255, 0.045);
  color: #fff;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.platform-entry-links a::after {
  content: "";
  width: 9px;
  height: 9px;
  justify-self: end;
  border-top: 2px solid var(--brand-orange);
  border-right: 2px solid var(--brand-orange);
  transform: rotate(45deg);
}

.platform-entry-links a:hover {
  border-color: rgba(255, 178, 14, 0.58);
  background:
    linear-gradient(90deg, rgba(255, 178, 14, 0.18), transparent 58%),
    rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
}

.platform-entry-links span {
  grid-column: 1 / -1;
  grid-row: auto;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 178, 14, 0.12);
  color: var(--brand-orange);
  font-size: 12px;
  line-height: 1;
  font-weight: 820;
  white-space: nowrap;
}

.platform-entry-links strong {
  grid-column: 1;
  grid-row: auto;
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.16;
  font-weight: 760;
  min-width: 0;
}

.platform-entry-links em {
  grid-column: 1;
  grid-row: auto;
  color: rgba(255, 255, 255, 0.54);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.5;
  font-style: normal;
  font-weight: 620;
  min-width: 0;
}

.platform-entry-links a::after {
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: end;
}

.platform-flow {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns:
    minmax(160px, 1fr) minmax(44px, 0.24fr) minmax(160px, 1fr)
    minmax(44px, 0.24fr) minmax(160px, 1fr) minmax(44px, 0.24fr)
    minmax(160px, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
  align-items: start;
  min-height: auto;
  padding: clamp(16px, 1.8vw, 24px) clamp(16px, 2vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045), transparent 32%, rgba(80, 148, 212, 0.08) 72%, transparent),
    rgba(255, 255, 255, 0.035);
  counter-reset: platform-flow;
}

.platform-flow::before {
  content: none;
}

.platform-flow::after {
  content: none;
}

.platform-flow span {
  position: relative;
  z-index: 1;
  min-height: 76px;
  display: grid;
  grid-template-rows: 32px auto;
  align-items: start;
  justify-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.32;
  font-weight: 680;
  text-align: center;
  counter-increment: platform-flow;
}

.platform-flow span::before {
  content: counter(platform-flow, decimal-leading-zero);
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 178, 14, 0.62);
  border-radius: 999px;
  background: rgba(20, 18, 14, 0.92);
  color: var(--brand-orange);
  font-size: 11px;
  line-height: 1;
  font-weight: 820;
  box-shadow:
    0 0 0 7px rgba(255, 178, 14, 0.055),
    0 0 20px rgba(255, 178, 14, 0.14);
}

.platform-flow i {
  position: relative;
  z-index: 1;
  display: block;
  align-self: start;
  margin-top: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
}

.platform-flow i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.46);
  border-right: 1.5px solid rgba(255, 255, 255, 0.46);
  transform: translate(-50%, -50%) rotate(45deg);
}

.platform-modules {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 1.8vw, 28px);
  padding-top: clamp(8px, 1vw, 16px);
}

.platform-module-card {
  position: relative;
  min-height: 372px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.2vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 46%),
    rgba(18, 18, 15, 0.82);
}

.platform-module-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-orange), transparent 68%);
}

.platform-module-card h3 {
  margin-top: 8px;
  color: #fff;
  font-size: clamp(27px, 2.1vw, 36px);
  line-height: 1;
  font-weight: 720;
  white-space: nowrap;
}

.platform-module-card h4 {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 680;
}

.platform-module-card p {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.52;
}

.platform-module-points {
  display: grid;
  gap: 1px;
  margin: auto 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  list-style: none;
  background: rgba(255, 255, 255, 0.12);
}

.platform-module-points li {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 650;
}

/* Contact */
.contact-title {
  display: inline-flex;
  align-items: center;
  gap: 0.28em;
}

.contact-title__divider {
  width: 1px;
  height: 0.82em;
  display: inline-block;
  background: currentColor;
  opacity: 0.72;
  transform: scaleX(0.5);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 22px;
}

.contact-form,
.support-card {
  padding: 28px;
  background: var(--dark-soft);
  border-color: rgba(255, 255, 255, 0.14);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-form__full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select {
  width: 100%;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: none;
}

.scenario-select {
  position: relative;
  display: block;
}

.scenario-select__trigger {
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 0 18px 0 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.scenario-select__chevron {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-right: 2px;
  border-right: 2px solid rgba(255, 255, 255, 0.72);
  border-bottom: 2px solid rgba(255, 255, 255, 0.72);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.scenario-select.is-open .scenario-select__chevron {
  transform: translateY(2px) rotate(225deg);
}

.scenario-select__menu {
  position: absolute;
  z-index: 8;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: grid;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(26, 26, 24, 0.98);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.scenario-select.is-open .scenario-select__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scenario-select__menu button {
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  padding: 0 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.scenario-select__menu button:hover,
.scenario-select__menu button.is-active {
  background: var(--brand-orange);
  color: var(--ink);
}

.contact-form select option {
  color: var(--ink);
}

.form-note {
  min-height: 22px;
  color: var(--gold);
}

.support-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.support-card h3 {
  margin: 0;
  font-size: clamp(50px, 6.2vw, 88px);
  line-height: 0.98;
  font-weight: 650;
  letter-spacing: 0;
}

.support-card p {
  color: rgba(255, 255, 255, 0.66);
}

.support-card a {
  color: var(--gold);
  font-weight: 760;
}

/* Footer */
.site-footer {
  padding: 72px clamp(28px, 8vw, 132px) 112px;
  background: #070707;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__brand {
  display: grid;
  grid-template-columns: 72px minmax(0, 620px);
  align-items: center;
  gap: 22px;
  margin-bottom: 52px;
}

.site-footer__logo {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
}

.site-footer__logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.site-footer__brand p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.7vw, 28px);
  line-height: 1.25;
  font-weight: 650;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.45fr) minmax(180px, 0.7fr) minmax(280px, 1fr);
  gap: clamp(36px, 6vw, 96px);
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer h3 {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
  line-height: 1;
  font-weight: 820;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.site-footer a:hover {
  color: var(--brand-orange);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

/* Floating navigation */
.float-nav {
  position: fixed;
  z-index: 42;
  left: 50%;
  bottom: 30px;
  width: 620px;
  height: 72px;
  transform: translateX(-50%);
}

.float-nav__inner {
  width: 100%;
  height: 72px;
  display: flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(17, 17, 15, 0.14);
  border-radius: 12px;
  background: rgba(255, 254, 250, 0.48);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 60px rgba(17, 17, 15, 0.14);
}

.float-nav__logo,
.float-nav__links,
.float-nav__visit {
  height: 60px;
  border-radius: 8px;
}

.float-nav__logo {
  width: 60px;
  flex: 0 0 60px;
  display: grid;
  place-items: center;
  background: var(--dark);
}

.float-nav__logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 178, 14, 0.18));
}

.float-nav__links {
  width: 446px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  background: rgba(255, 254, 250, 0.34);
}

.float-nav__links a {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.float-nav__links a {
  flex: 1 1 0;
}

.float-nav__links a.active,
.float-nav__links a:hover {
  background: var(--brand-orange);
  color: var(--ink);
}

.float-nav__visit {
  width: 91px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 12px;
  font-weight: 720;
  white-space: nowrap;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.reveal.in,
.section--hero .reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .topnav,
  .topbar__right a:not(.topbar__cta) {
    display: none;
  }

  .hero__layout,
  .section-heading,
  .directory,
  .contact-grid,
  .product-intro,
  .product-value-board,
  .platform-hero,
  .platform-value {
    grid-template-columns: 1fr;
  }

  .hero__layout {
    min-height: auto;
  }

  .hero__media {
    min-height: 420px;
  }

  .section--product {
    padding: 0;
  }

  .product-efficiency-screen {
    min-height: auto;
    padding: 72px clamp(28px, 7vw, 72px);
  }

  .product-efficiency-screen--details {
    height: auto;
    min-height: auto;
    padding-bottom: 72px;
  }

  .product-efficiency-screen--details .product-value-board {
    margin-bottom: 0;
    transform: none;
  }

  #product .section-heading p {
    white-space: normal;
  }

  #scenes .section-heading p {
    white-space: normal;
  }

  .section--product-lineup .section-heading p {
    white-space: normal;
  }

  .list-row {
    grid-template-columns: 56px 1fr;
  }

  .list-row p,
  .list-row .mini-button {
    grid-column: 2;
  }

  .card-grid,
  .course-grid,
  .plus-grid,
  .product-lineup,
  .platform-modules {
    grid-template-columns: 1fr;
  }

  .platform-flow {
    grid-template-columns:
      minmax(130px, 1fr) minmax(28px, 0.18fr) minmax(130px, 1fr)
      minmax(28px, 0.18fr) minmax(130px, 1fr) minmax(28px, 0.18fr)
      minmax(130px, 1fr);
    gap: 10px;
    padding-inline: 18px;
  }

  .product-cta-row {
    position: static;
    margin-top: 48px;
    align-items: flex-start;
    flex-direction: column;
  }

  .directory__stats {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .directory--dark .directory__stats {
    border-top-color: rgba(255, 255, 255, 0.14);
  }

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

  .site-footer__bottom {
    flex-direction: column;
  }
}

@media (min-width: 721px) and (max-width: 1300px) {
  .platform-hero,
  .platform-value {
    grid-template-columns: 1fr;
  }

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

  .platform-value p {
    max-width: 720px;
  }

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

  .platform-entry-links a {
    grid-template-columns: minmax(0, 1fr) 18px;
    align-content: start;
    min-height: 136px;
  }

  .platform-entry-links span {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: start;
  }

  .platform-entry-links strong,
  .platform-entry-links em {
    grid-column: 1;
  }

  .platform-entry-links a::after {
    grid-column: 2;
    grid-row: 2 / 4;
    align-self: center;
  }

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

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

  .platform-flow {
    grid-template-columns:
      minmax(130px, 1fr) minmax(28px, 0.18fr) minmax(130px, 1fr)
      minmax(28px, 0.18fr) minmax(130px, 1fr) minmax(28px, 0.18fr)
      minmax(130px, 1fr);
    gap: 10px;
    padding-inline: 18px;
  }
}

@media (max-width: 720px) {
  .topbar {
    height: 62px;
    padding: 0 16px;
    gap: 28px;
  }

  main {
    padding-top: 62px;
  }

  .section {
    min-height: auto;
    padding: 62px 16px;
    scroll-margin-top: 62px;
  }

  .site-footer {
    padding: 56px 16px 96px;
  }

  .site-footer__brand,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    align-items: start;
  }

  .section--product {
    padding: 0;
  }

  .product-efficiency-screen {
    min-height: auto;
    padding: 62px 16px;
    scroll-margin-top: 62px;
  }

  .product-value-visual,
  .product-value-visual img {
    min-height: 0;
  }

  .product-value-visual {
    aspect-ratio: 16 / 9;
    max-height: none;
  }

  .product-value-visual img {
    aspect-ratio: auto;
    object-position: 42% 52%;
  }

  .section--hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .topbar__right {
    gap: 6px;
  }

  .language-switcher__button {
    height: 34px;
    gap: 5px;
    padding: 0 10px;
    font-size: 12px;
  }

  .topbar__phone {
    display: none;
  }

  .topbar__cta {
    height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

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

  .hero__bar {
    flex-direction: column;
  }

  h1 {
    font-size: 50px;
  }

  .hero__lead {
    font-size: 20px;
    line-height: 1.45;
  }

  .hero__media {
    min-height: 310px;
    border-radius: 16px;
  }

  .platform-section {
    gap: 28px;
    padding-top: 62px;
  }

  .platform-hero__copy,
  .platform-hero__visual {
    order: initial;
  }

  .platform-hero__copy {
    gap: 16px;
  }

  .platform-hero__copy h2 {
    font-size: 44px;
    line-height: 0.98;
  }

  .platform-hero__lead {
    font-size: 22px;
  }

  .platform-hero__copy p:not(.platform-hero__lead),
  .platform-value p {
    font-size: 15px;
    line-height: 1.62;
  }

  .platform-hero__visual,
  .platform-hero__visual img {
    min-height: 240px;
  }

  .platform-value {
    padding: 20px;
  }

  .platform-value h3 {
    font-size: 32px;
  }

  .platform-entry-links {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .platform-entry-links a {
    grid-template-columns: minmax(0, 1fr) 18px;
    min-height: auto;
    padding: 14px;
  }

  .platform-entry-links span {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: start;
  }

  .platform-entry-links strong,
  .platform-entry-links em {
    grid-column: 1;
  }

  .platform-entry-links a::after {
    grid-column: 2;
    grid-row: 2 / 4;
    align-self: center;
  }

  .platform-flow {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding: 16px 16px 16px 28px;
  }

	  .platform-flow::before {
	    content: "";
	    left: 28px;
	    right: auto;
    top: 30px;
    bottom: 30px;
	    width: 2px;
	    height: auto;
	    background:
	      linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.24) 14%, rgba(255, 255, 255, 0.16) 50%, rgba(255, 255, 255, 0.24) 86%, transparent);
	    transform: none;
	  }

  .platform-flow::after {
    content: none;
  }

	  .platform-flow span {
	    min-height: 56px;
	    display: flex;
	    align-items: center;
	    justify-items: initial;
	    gap: 12px;
	    padding: 8px 0;
	    font-size: 15px;
	    text-align: left;
	  }

  .platform-flow span::before {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }

	  .platform-flow i {
	    display: block;
	    align-self: auto;
	    width: 1px;
	    height: 12px;
	    margin-top: 0;
	    margin-left: 13px;
	    background: rgba(255, 255, 255, 0.22);
	  }

  .platform-flow i::after {
    display: none;
  }

  .platform-module-card {
    min-height: auto;
  }

  .product-intro > div {
    padding: 24px;
  }

  .product-intro h3 {
    font-size: 42px;
  }

  .section-heading {
    gap: 16px;
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 46px;
  }

  .section-heading p {
    font-size: 16px;
    line-height: 1.55;
  }

  #scenes .section-heading p {
    font-size: 15px;
    white-space: normal;
  }

  .mega-menu {
    left: 16px;
    right: 16px;
    top: 62px;
    padding: 0;
  }

  .mega-menu__grid {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 90px);
    overflow: auto;
  }

  .mega-menu__rail {
    display: none;
  }

  .mega-menu__content {
    grid-template-columns: 1fr;
  }

  .mega-menu__column {
    min-height: 0;
  }

  .mega-menu__column a {
    font-size: 16px;
    line-height: 1.28;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .float-nav {
    left: 16px;
    right: 16px;
    bottom: 10px;
    width: auto;
    transform: none;
  }

  .float-nav__inner {
    overflow: hidden;
  }

  .float-nav__links {
    display: none;
  }

  .float-nav__visit {
    flex: 1 1 auto;
    min-width: 0;
  }
}
