:root {
  color-scheme: dark;
  --mp-bg: #03070b;
  --mp-panel: #071018;
  --mp-panel-soft: rgba(255, 255, 255, 0.05);
  --mp-panel-strong: rgba(255, 255, 255, 0.08);
  --mp-line: rgba(255, 255, 255, 0.1);
  --mp-line-strong: rgba(255, 255, 255, 0.16);
  --mp-text: #f2f7fb;
  --mp-muted: rgba(230, 238, 244, 0.68);
  --mp-soft: rgba(230, 238, 244, 0.44);
  --mp-accent: #46d3a4;
  --mp-accent-deep: #17342d;
  --mp-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(70, 211, 164, 0.1), transparent 26%),
    linear-gradient(180deg, #03070b 0%, #050b10 100%);
  color: var(--mp-text);
  line-height: 1.7;
  font-family:
    "SF Pro Display",
    "Avenir Next",
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    sans-serif;
}

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

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

.mp-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.mp-header-shell {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 8;
  width: min(1240px, calc(100vw - 32px));
  padding-top: 18px;
  transform: translateX(-50%);
}

.mp-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  width: 100%;
  min-height: 48px;
  padding: 0 14px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(230, 245, 235, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 12px 24px rgba(4, 12, 9, 0.12);
  backdrop-filter: blur(18px) saturate(1.08);
}

.mp-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.mp-brand img {
  height: 28px;
  width: auto;
  max-width: 168px;
}

.mp-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mp-brand-copy strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mp-brand-copy span {
  color: var(--mp-soft);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mp-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  margin-right: 0;
}

.mp-nav a {
  position: relative;
  color: var(--mp-muted);
  font-size: 0.78rem;
  line-height: 1;
  transition: color 160ms ease;
}

.mp-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--mp-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.mp-nav a:hover,
.mp-nav a:focus-visible,
.mp-nav a.is-active {
  color: var(--mp-text);
}

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

.mp-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  margin-left: 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(5, 16, 11, 0.18);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    background-color 160ms ease,
    border-color 160ms ease;
}

.mp-header-cta:hover,
.mp-header-cta:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(5, 16, 11, 0.24);
  border-color: rgba(255, 255, 255, 0.16);
}

.mp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 600;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

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

.mp-button-primary {
  background: var(--mp-accent);
  color: #081116;
}

.mp-button-secondary {
  border-color: var(--mp-line-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--mp-text);
}

.mp-main {
  padding-top: 0;
}

.mp-hero {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 1px solid var(--mp-line);
  border-radius: 0 0 40px 40px;
  background:
    linear-gradient(90deg, rgba(5, 10, 15, 0.82) 0%, rgba(6, 11, 16, 0.78) 30%, rgba(6, 11, 16, 0.58) 50%, rgba(6, 11, 16, 0.24) 68%, rgba(6, 11, 16, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 10, 15, 0.18) 0%, rgba(5, 10, 15, 0.14) 40%, rgba(5, 10, 15, 0.42) 100%),
    linear-gradient(135deg, rgba(70, 211, 164, 0.1), transparent 38%),
    url("./assets/linkmine-unit-minerpower-install.png") center / cover no-repeat;
  box-shadow: var(--mp-shadow);
}

.mp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 110px 110px;
  opacity: 0.14;
  pointer-events: none;
}

.mp-hero-stage {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  min-height: 592px;
  margin: 0 auto;
}

.mp-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
  min-height: 592px;
  width: min(760px, 64%);
  padding: 174px 0 118px;
}

.mp-eyebrow {
  color: var(--mp-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.mp-hero h1,
.mp-section-head h2,
.mp-open-copy h2,
.mp-contact-copy h2 {
  margin: 0;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.mp-hero h1 {
  margin-top: 18px;
  font-size: clamp(2.28rem, 4.15vw, 4rem);
  line-height: 1.02;
  max-width: 820px;
}

.mp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.mp-card-label {
  color: var(--mp-accent);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mp-section {
  margin-top: 22px;
  padding: 18px 0;
}

#definition.mp-section {
  position: relative;
  z-index: 3;
  margin-top: -74px;
  padding-top: 0;
}

.mp-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.72fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.mp-section-head-tight {
  margin-bottom: 24px;
}

.mp-section-head h2,
.mp-open-copy h2,
.mp-contact-copy h2 {
  margin-top: 14px;
  font-size: clamp(1.72rem, 3vw, 2.6rem);
  line-height: 1.12;
}

.mp-section-head p,
.mp-open-copy p,
.mp-contact-copy p,
.mp-card p,
.mp-product-copy p,
.mp-module-card p,
.mp-contact-row strong {
  color: var(--mp-muted);
  line-height: 1.72;
}

.mp-card-grid {
  display: grid;
  gap: 20px;
}

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

.mp-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100%;
  padding: 22px 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07)),
    rgba(10, 18, 27, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px) saturate(1.08);
}

.mp-card-soft {
  background:
    linear-gradient(180deg, rgba(70, 211, 164, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(7, 16, 24, 0.86);
}

.mp-card h3,
.mp-product-copy h3,
.mp-module-card h3 {
  margin: 12px 0 0;
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  line-height: 1.24;
  letter-spacing: -0.04em;
}

.mp-card p {
  margin: 14px 0 0;
  font-size: 0.94rem;
}

.mp-definition-card {
  padding-right: 92px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.mp-definition-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(70, 211, 164, 0.12), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 58%);
  transition: opacity 180ms ease;
  pointer-events: none;
}

.mp-definition-card > * {
  position: relative;
  z-index: 1;
}

.mp-definition-watermark,
.mp-definition-icon {
  position: absolute;
  color: rgba(255, 255, 255, 0.045);
  pointer-events: none;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.mp-definition-watermark {
  right: 10px;
  bottom: 10px;
  width: 112px;
  height: 112px;
  opacity: 0.3;
}

.mp-definition-icon {
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.032);
  color: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(8px);
}

.mp-definition-watermark svg,
.mp-definition-icon svg {
  width: 100%;
  height: 100%;
}

.mp-definition-icon svg {
  width: 18px;
  height: 18px;
}

.mp-definition-card:hover,
.mp-definition-card:focus-visible {
  border-color: rgba(70, 211, 164, 0.28);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(70, 211, 164, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  outline: none;
  transform: translateY(-4px);
}

.mp-definition-card:hover::before,
.mp-definition-card:focus-visible::before {
  opacity: 1;
}

.mp-definition-card:hover .mp-definition-icon,
.mp-definition-card:focus-visible .mp-definition-icon {
  border-color: rgba(70, 211, 164, 0.3);
  background: rgba(70, 211, 164, 0.075);
  color: var(--mp-accent);
  box-shadow:
    0 12px 26px rgba(70, 211, 164, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.mp-definition-card:hover .mp-definition-watermark,
.mp-definition-card:focus-visible .mp-definition-watermark {
  color: rgba(70, 211, 164, 0.055);
  opacity: 0.58;
  transform: translate(-3px, -3px) scale(1.02);
}

.mp-definition-card:hover p,
.mp-definition-card:focus-visible p {
  color: rgba(229, 237, 244, 0.84);
}

@media (prefers-reduced-motion: reduce) {
  .mp-definition-card,
  .mp-definition-card::before,
  .mp-definition-watermark,
  .mp-definition-icon {
    transition: none;
  }

  .mp-definition-card:hover,
  .mp-definition-card:focus-visible,
  .mp-definition-card:hover .mp-definition-icon,
  .mp-definition-card:focus-visible .mp-definition-icon,
  .mp-definition-card:hover .mp-definition-watermark,
  .mp-definition-card:focus-visible .mp-definition-watermark {
    transform: none;
  }
}

.mp-definition-theme-0 {
  background:
    radial-gradient(circle at top right, rgba(70, 211, 164, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(10, 18, 27, 0.28);
}

.mp-definition-theme-1 {
  background:
    radial-gradient(circle at top right, rgba(109, 199, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(10, 18, 27, 0.28);
}

.mp-definition-theme-2 {
  background:
    radial-gradient(circle at top right, rgba(82, 230, 185, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(10, 18, 27, 0.28);
}

.mp-product-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.mp-product-section-head {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 20px;
}

.mp-product-section-cn {
  margin-top: 8px;
  color: var(--mp-muted);
  font-size: 0.96rem;
}

.mp-product-section-line {
  flex: 1 1 auto;
  height: 1px;
  margin-top: 17px;
  background: rgba(255, 255, 255, 0.12);
}

.mp-product-card {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 26px 26px 24px;
  border: 1px solid var(--mp-line);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 30%),
    rgba(8, 16, 22, 0.9);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.mp-product-card-wide {
  grid-column: span 7;
}

.mp-product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.mp-product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.mp-product-badge svg {
  width: 20px;
  height: 20px;
}

.mp-product-media {
  position: relative;
  aspect-ratio: 2.08;
  overflow: hidden;
  border-radius: 28px;
}

.mp-product-media-row-one {
  aspect-ratio: auto;
  height: 386px;
}

.mp-product-media-row-two {
  aspect-ratio: auto;
  height: 386px;
}

.mp-product-media-shell {
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(3, 7, 11, 0.46);
}

.mp-product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 15, 0.16), rgba(5, 10, 15, 0.38)),
    radial-gradient(circle at center, rgba(70, 211, 164, 0.08), transparent 55%);
  opacity: 1;
  transition: opacity 220ms ease;
}

.mp-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transform: scale(1.02);
  transition:
    opacity 220ms ease,
    transform 260ms ease;
}

.mp-product-en {
  margin-top: 8px;
  color: var(--mp-soft);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.4;
}

.mp-product-card h3 {
  margin-top: 10px;
}

.mp-product-desc {
  margin: 0;
  color: var(--mp-muted);
  font-size: 0.94rem;
  line-height: 1.74;
  transition: color 220ms ease;
}

.mp-product-card:hover,
.mp-product-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(70, 211, 164, 0.16);
  box-shadow:
    0 28px 62px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mp-product-card:hover .mp-product-media img,
.mp-product-card:focus-visible .mp-product-media img {
  opacity: 0.92;
  transform: scale(1.04);
}

.mp-product-card:hover .mp-product-badge,
.mp-product-card:focus-visible .mp-product-badge {
  border-color: rgba(70, 211, 164, 0.28);
  background: rgba(70, 211, 164, 0.08);
  box-shadow:
    0 12px 28px rgba(70, 211, 164, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-2px) scale(1.02);
}

.mp-product-card:hover .mp-product-media-shell,
.mp-product-card:focus-visible .mp-product-media-shell {
  border-color: rgba(70, 211, 164, 0.16);
}

.mp-product-card:hover .mp-product-media::after,
.mp-product-card:focus-visible .mp-product-media::after {
  opacity: 0.78;
}

.mp-product-card:hover .mp-product-desc,
.mp-product-card:focus-visible .mp-product-desc {
  color: rgba(229, 237, 244, 0.82);
}

.mp-unit-shell,
.mp-open-shell,
.mp-contact-shell {
  padding: 28px;
  border: 1px solid var(--mp-line);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(7, 15, 22, 0.88);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.mp-unit-head {
  margin-bottom: 20px;
}

.mp-unit-title-block h2 {
  margin-top: 14px;
  font-size: clamp(1.72rem, 2.8vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.mp-unit-subtitle {
  max-width: 980px;
  margin: 14px 0 0;
  color: var(--mp-muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.mp-module-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.mp-module-card {
  grid-column: span 4;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  overflow: hidden;
  isolation: isolate;
  padding: 24px;
  border: 1px solid var(--mp-line);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 30%),
    rgba(8, 16, 22, 0.9);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.mp-module-card > * {
  position: relative;
  z-index: 1;
}

.mp-module-card:nth-child(4),
.mp-module-card:nth-child(5) {
  grid-column: span 6;
}

.mp-module-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.mp-module-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.mp-module-icon svg {
  width: 20px;
  height: 20px;
}

.mp-module-card h3 {
  margin-top: 10px;
}

.mp-module-card p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--mp-muted);
  line-height: 1.74;
  transition: color 220ms ease;
}

.mp-module-theme-0 {
  background:
    radial-gradient(circle at top right, rgba(70, 211, 164, 0.12), transparent 34%),
    rgba(8, 16, 22, 0.9);
}

.mp-module-theme-1 {
  background:
    radial-gradient(circle at top right, rgba(109, 199, 255, 0.12), transparent 34%),
    rgba(8, 16, 22, 0.9);
}

.mp-module-theme-2 {
  background:
    radial-gradient(circle at top right, rgba(88, 160, 255, 0.1), transparent 34%),
    rgba(8, 16, 22, 0.9);
}

.mp-module-theme-3 {
  background:
    radial-gradient(circle at top right, rgba(82, 230, 185, 0.1), transparent 34%),
    rgba(8, 16, 22, 0.9);
}

.mp-module-theme-4 {
  background:
    radial-gradient(circle at top right, rgba(138, 206, 255, 0.1), transparent 34%),
    rgba(8, 16, 22, 0.9);
}

.mp-module-media {
  position: relative;
  height: 234px;
  overflow: hidden;
  border-radius: 28px;
}

.mp-module-media-shell {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(92, 218, 255, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(8, 15, 22, 0.96), rgba(5, 10, 16, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 34px rgba(0, 0, 0, 0.22);
}

.mp-module-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 15, 0.02), rgba(5, 10, 15, 0.12)),
    radial-gradient(circle at center, rgba(70, 211, 164, 0.04), transparent 55%);
  opacity: 1;
  transition: opacity 220ms ease;
}

.mp-module-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition:
    opacity 220ms ease,
    transform 260ms ease;
}

.mp-module-card:hover,
.mp-module-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(70, 211, 164, 0.16);
  box-shadow:
    0 28px 62px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.mp-module-card:hover .mp-module-icon,
.mp-module-card:focus-visible .mp-module-icon {
  border-color: rgba(70, 211, 164, 0.28);
  background: rgba(70, 211, 164, 0.08);
  box-shadow:
    0 12px 28px rgba(70, 211, 164, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-2px) scale(1.02);
}

.mp-module-card:hover .mp-module-media::after,
.mp-module-card:focus-visible .mp-module-media::after {
  opacity: 0.7;
}

.mp-module-card:hover .mp-module-media img,
.mp-module-card:focus-visible .mp-module-media img {
  transform: scale(1.11);
}

.mp-module-card:hover p,
.mp-module-card:focus-visible p {
  color: rgba(229, 237, 244, 0.82);
}

.mp-engine-shell {
  padding: 28px;
  border: 1px solid var(--mp-line);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(70, 211, 164, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(7, 15, 22, 0.9);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.mp-engine-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.mp-engine-section-head {
  flex: 1;
  align-items: center;
  gap: 18px;
  margin-bottom: 0;
}

.mp-engine-copy {
  max-width: 760px;
}

.mp-engine-copy h2 {
  margin: 14px 0 0;
  font-size: clamp(1.72rem, 2.8vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.mp-engine-copy p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--mp-muted);
  line-height: 1.72;
}

.mp-engine-controls {
  display: flex;
  gap: 12px;
}

.mp-engine-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--mp-line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--mp-text);
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.mp-engine-nav:hover,
.mp-engine-nav:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(70, 211, 164, 0.42);
  background: rgba(70, 211, 164, 0.08);
}

.mp-engine-nav svg {
  width: 18px;
  height: 18px;
}

.mp-engine-carousel {
  position: relative;
  min-height: 520px;
}

.mp-engine-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.mp-engine-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.mp-engine-media {
  overflow: hidden;
  border: 1px solid var(--mp-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  min-height: 520px;
}

.mp-engine-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mp-engine-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 0;
}

.mp-engine-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mp-engine-count {
  color: var(--mp-soft);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mp-engine-content h3 {
  margin: 0;
  font-size: clamp(1.72rem, 2.7vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.mp-engine-summary {
  margin: 0;
  color: var(--mp-muted);
  line-height: 1.72;
}

.mp-engine-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 6px;
}

.mp-engine-spec {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(0, 0, 0, 0.16);
}

.mp-engine-spec span {
  display: block;
  color: var(--mp-soft);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.35;
}

.mp-engine-spec strong {
  display: block;
  margin-top: 8px;
  font-size: 1.02rem;
  line-height: 1.5;
}

.mp-engine-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.mp-document-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}

.mp-document-meta {
  color: var(--mp-soft);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mp-download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(70, 211, 164, 0.36);
  border-radius: 999px;
  background: rgba(70, 211, 164, 0.1);
  color: #dffcf2;
  font-size: 0.86rem;
  font-weight: 700;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.mp-download-link:hover,
.mp-download-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(70, 211, 164, 0.62);
  background: rgba(70, 211, 164, 0.16);
}

.mp-open-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.66fr);
  gap: 32px;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(70, 211, 164, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(70, 211, 164, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(7, 15, 22, 0.9);
}

.mp-open-copy {
  max-width: 760px;
}

.mp-open-copy h2 {
  max-width: 640px;
  font-size: clamp(1.58rem, 2.4vw, 2.3rem);
  line-height: 1.12;
}

.mp-open-copy p {
  max-width: 640px;
  margin-top: 18px;
}

.mp-open-panel {
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(6, 12, 18, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.mp-open-list {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mp-open-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.68;
}

.mp-open-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mp-accent);
  box-shadow: 0 0 0 4px rgba(70, 211, 164, 0.08);
}

.mp-open-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.mp-open-download {
  width: fit-content;
}

.mp-contact-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(70, 211, 164, 0.22), transparent 34%),
    radial-gradient(circle at bottom left, rgba(70, 211, 164, 0.1), transparent 40%),
    linear-gradient(135deg, rgba(70, 211, 164, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(7, 15, 22, 0.92);
}

.mp-contact-copy {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.mp-contact-copy h2 {
  max-width: 760px;
}

.mp-contact-copy p {
  max-width: 720px;
  margin-top: 16px;
}

.mp-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.mp-site-footer {
  display: grid;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 36px;
  padding: 26px max(46px, calc((100vw - 1240px) / 2 + 30px));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(104, 219, 170, 0.18), transparent 22%),
    radial-gradient(circle at 36% 56%, rgba(20, 90, 57, 0.24), transparent 44%),
    linear-gradient(90deg, #0b1512 0%, #0d2219 36%, #114329 72%, #2a7c4d 100%);
  color: var(--mp-text);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 20px 48px rgba(8, 15, 14, 0.16);
}

.mp-site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(117deg, transparent 0%, transparent 77%, rgba(179, 255, 217, 0.08) 77%, rgba(179, 255, 217, 0.08) 83%, transparent 83%);
  opacity: 0.9;
  pointer-events: none;
}

.mp-site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 74px 74px;
  opacity: 0.18;
  pointer-events: none;
}

.mp-site-footer > * {
  position: relative;
  z-index: 1;
}

.mp-footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(220px, 1.15fr) minmax(0, 1.8fr) auto;
}

.mp-footer-brand img {
  height: 34px;
  width: auto;
}

.mp-footer-brand-block p {
  max-width: 340px;
  margin: 18px 0 0;
  color: rgba(230, 238, 235, 0.74);
  font-size: 0.92rem;
  line-height: 1.9;
}

.mp-footer-columns {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mp-footer-column-title {
  color: var(--mp-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mp-footer-column ul {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.mp-footer-column li,
.mp-footer-column a {
  color: rgba(230, 238, 235, 0.74);
  font-size: 0.9rem;
  line-height: 1.65;
}

.mp-footer-column a:hover,
.mp-footer-column a:focus-visible {
  color: var(--mp-text);
}

.mp-footer-top-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  justify-self: end;
}

.mp-top-link {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 600;
}

.mp-top-link svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 1220px) {
  .mp-nav {
    gap: 20px;
    margin-right: 0;
  }

  .mp-engine-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .mp-engine-carousel {
    min-height: 0;
  }

  .mp-engine-slide {
    position: relative;
    display: none;
    opacity: 1;
    pointer-events: none;
    transform: none;
  }

  .mp-engine-slide.is-active {
    display: grid;
    pointer-events: auto;
  }

  .mp-engine-slide,
  .mp-section-head,
  .mp-open-shell,
  .mp-contact-shell,
  .mp-footer-grid {
    grid-template-columns: 1fr;
  }

  .mp-product-section-head {
    flex-direction: column;
    gap: 14px;
  }

  .mp-engine-section-head {
    width: 100%;
  }

  .mp-product-section-line {
    width: 100%;
    margin-top: 0;
  }

  .mp-card-grid-3 {
    grid-template-columns: 1fr;
  }

  .mp-footer-top-link {
    justify-self: start;
  }

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

  .mp-product-card,
  .mp-product-card-wide {
    grid-column: span 6;
  }

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

  .mp-module-card,
  .mp-module-card:nth-child(4),
  .mp-module-card:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 920px) {
  .mp-shell {
    width: min(1240px, calc(100% - 18px));
    padding-top: 0;
  }

  .mp-header-shell {
    width: min(1240px, calc(100vw - 18px));
    padding-top: 12px;
  }

  .mp-header {
    flex-wrap: wrap;
    justify-content: center;
    min-height: 50px;
    padding: 0 10px 0 12px;
  }

  .mp-brand {
    width: 100%;
    justify-content: center;
  }

  .mp-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-left: 0;
    flex-wrap: wrap;
  }

  .mp-header-cta {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .mp-hero-metrics,
  .mp-module-grid {
    grid-template-columns: 1fr;
  }

  .mp-module-card,
  .mp-module-card:nth-child(4),
  .mp-module-card:nth-child(5) {
    grid-column: span 1;
  }

  .mp-product-grid {
    grid-template-columns: 1fr;
  }

  .mp-product-card,
  .mp-product-card-wide {
    grid-column: span 1;
  }

  .mp-product-media-row-one {
    height: auto;
    aspect-ratio: 2.08;
  }

  .mp-product-media-row-two {
    height: auto;
    aspect-ratio: 2.08;
  }

  .mp-unit-shell,
  .mp-engine-shell,
  .mp-open-shell,
  .mp-contact-shell,
  .mp-site-footer {
    padding: 22px 20px;
  }

  .mp-engine-slide {
    gap: 22px;
  }

  .mp-engine-media {
    min-height: 340px;
  }

  .mp-engine-content h3 {
    font-size: clamp(1.7rem, 5vw, 2.4rem);
  }

  .mp-engine-spec-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mp-unit-title-block h2 {
    white-space: normal;
  }

  .mp-hero-stage {
    width: min(1240px, calc(100% - 18px));
    min-height: 480px;
  }

  .mp-hero-copy {
    min-height: 480px;
    width: min(100%, 680px);
    padding: 106px 0 28px;
  }

  #definition.mp-section {
    margin-top: 22px;
    padding-top: 18px;
  }

  .mp-hero-shape-circle {
    right: 64px;
    bottom: 100px;
  }

  .mp-hero {
    background:
      linear-gradient(180deg, rgba(5, 10, 15, 0.74) 0%, rgba(5, 10, 15, 0.56) 34%, rgba(5, 10, 15, 0.22) 56%, rgba(5, 10, 15, 0.42) 100%),
      linear-gradient(135deg, rgba(70, 211, 164, 0.1), transparent 38%),
      url("./assets/linkmine-unit-minerpower-install.png") center / cover no-repeat;
  }
}

@media (max-width: 640px) {
  .mp-brand img {
    height: 28px;
  }

  .mp-brand-copy span {
    letter-spacing: 0.12em;
  }

  .mp-hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.75rem);
  }

  .mp-hero-keywords,
  .mp-section-head p,
  .mp-card p,
  .mp-product-copy p,
  .mp-module-card p,
  .mp-engine-copy p,
  .mp-engine-summary,
  .mp-open-copy p,
  .mp-contact-copy p,
  .mp-footer-brand-block p {
    font-size: 0.93rem;
  }

  .mp-footer-columns {
    grid-template-columns: 1fr;
  }

  .mp-engine-spec-grid {
    grid-template-columns: 1fr;
  }

  .mp-engine-media {
    min-height: 280px;
  }

  .mp-hero-shape-circle {
    display: none;
  }

  .mp-hero-keywords {
    gap: 16px;
  }

  .mp-hero-rule {
    width: 100%;
  }
}
