:root {
  color-scheme: dark;
  --lp-bg: #03070b;
  --lp-panel: rgba(7, 15, 22, 0.9);
  --lp-line: rgba(255, 255, 255, 0.1);
  --lp-line-strong: rgba(255, 255, 255, 0.16);
  --lp-text: #f2f7fb;
  --lp-muted: rgba(230, 238, 244, 0.66);
  --lp-soft: rgba(230, 238, 244, 0.44);
  --lp-accent: #46d3a4;
  --lp-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

* {
  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(--lp-text);
  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%;
}

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

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

.lp-header {
  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);
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

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

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

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

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

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

.lp-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1;
  transition: color 160ms ease;
}

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

.lp-nav a:hover,
.lp-nav a:focus-visible,
.lp-nav a.is-active {
  color: #fff;
}

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

.lp-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;
}

.lp-header-cta:hover,
.lp-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);
}

.lp-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;
}

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

.lp-button-primary {
  background: var(--lp-accent);
  color: #07111a;
}

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

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

.lp-section {
  margin-top: 56px;
}

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

.lp-section-cn {
  color: var(--lp-soft);
  font-size: 0.92rem;
}

.lp-section-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-card-label {
  color: var(--lp-accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lp-boundary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lp-boundary-card {
  min-height: 184px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(7, 15, 22, 0.72);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
}

.lp-boundary-card h2 {
  margin: 14px 0 0;
  font-size: clamp(1.32rem, 2vw, 1.78rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.lp-boundary-card p {
  margin: 14px 0 0;
  color: var(--lp-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.lp-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(--lp-line);
  border-radius: 0 0 40px 40px;
  box-shadow: var(--lp-shadow);
}

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

.lp-hero-backdrop,
.lp-hero-grid {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
}

.lp-hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 15, 0.84) 0%, rgba(6, 11, 16, 0.78) 28%, rgba(6, 11, 16, 0.54) 50%, rgba(6, 11, 16, 0.22) 70%, rgba(6, 11, 16, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 10, 15, 0.14) 0%, rgba(5, 10, 15, 0.12) 38%, rgba(5, 10, 15, 0.38) 100%),
    linear-gradient(135deg, rgba(70, 211, 164, 0.12), transparent 38%);
}

.lp-hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transform: scale(1.06);
  transform-origin: center center;
}

.lp-hero-grid {
  opacity: 0.14;
  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;
}

.lp-hero-layout {
  position: relative;
  z-index: 1;
  min-height: 592px;
}

.lp-hero-copy {
  display: flex;
  min-height: 592px;
  width: min(760px, 64%);
  flex-direction: column;
  justify-content: flex-end;
  padding: 170px 0 112px;
}

.lp-hero-copy h1 {
  max-width: 720px;
  margin: 16px 0 0;
  font-size: clamp(2.2rem, 4.1vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.lp-hero-keywords {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.22em;
}

.lp-photo-panel {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0e151b 0%, #132029 44%, #0a1116 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 22px 44px rgba(4, 10, 18, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.lp-photo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 96px 96px;
}

.lp-photo-panel::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  pointer-events: none;
}

.lp-photo-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lp-photo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.lp-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(70, 211, 164, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(3, 7, 11, 0.04), rgba(3, 7, 11, 0.42) 68%, rgba(3, 7, 11, 0.84) 100%);
}

.lp-photo-overlay-secondary {
  background:
    radial-gradient(circle at top left, rgba(70, 211, 164, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(7, 13, 19, 0.08) 0%, rgba(7, 13, 19, 0.22) 38%, rgba(7, 13, 19, 0.64) 100%);
}

.lp-photo-copy {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.lp-photo-label {
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lp-photo-copy h3 {
  margin: 12px 0 0;
  font-size: clamp(1.36rem, 2vw, 1.72rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.lp-photo-panel-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-section-definition {
  margin-top: 46px;
}

.lp-definition-split {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.52fr) minmax(320px, 0.68fr);
  align-items: stretch;
}

.lp-definition-primary,
.lp-definition-secondary {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.lp-definition-primary {
  min-height: 536px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 30% 48%, rgba(70, 211, 164, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(8, 18, 24, 0.96), rgba(7, 14, 20, 0.78) 48%, rgba(13, 28, 38, 0.86)),
    #071016;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.lp-definition-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 11, 0.92) 0%, rgba(4, 10, 13, 0.78) 34%, rgba(4, 10, 13, 0.28) 62%, rgba(4, 10, 13, 0.1) 100%),
    linear-gradient(180deg, rgba(3, 7, 11, 0.04), rgba(3, 7, 11, 0.28) 100%);
  pointer-events: none;
}

.lp-definition-primary-media {
  position: absolute;
  inset: 0;
}

.lp-definition-primary-media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.92;
  filter: saturate(0.98) contrast(1.02);
}

.lp-definition-primary-copy {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  max-width: 58%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 44px 44px;
}

.lp-definition-primary .lp-section-cn {
  color: rgba(230, 238, 235, 0.62);
}

.lp-definition-primary h2 {
  margin: 18px 0 0;
  color: var(--lp-text);
  font-size: clamp(2.08rem, 3.6vw, 3.26rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.36);
}

.lp-definition-primary p {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(230, 238, 235, 0.72);
  font-size: 1.04rem;
  line-height: 1.78;
}

.lp-definition-secondary {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 508px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 28% 10%, rgba(70, 211, 164, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(10, 19, 28, 0.9);
  box-shadow: var(--lp-shadow);
}

.lp-definition-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 96px 96px;
  pointer-events: none;
}

.lp-definition-secondary-copy,
.lp-definition-secondary-media {
  position: relative;
  z-index: 1;
}

.lp-definition-secondary-copy {
  padding: 6px 6px 0;
}

.lp-definition-secondary-copy h3 {
  margin: 14px 0 0;
  font-size: clamp(1.72rem, 2.4vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.lp-definition-secondary-copy p {
  margin: 16px 0 0;
  color: var(--lp-muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

.lp-definition-secondary-media {
  flex: 1;
  overflow: hidden;
  min-height: 0;
  height: auto;
  margin-top: 0;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.lp-definition-secondary-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 92%;
  transform: scale(1.02);
}

.lp-split {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  align-items: end;
}

.lp-split-copy,
.lp-ops-copy {
  max-width: 860px;
}

.lp-split-copy h2,
.lp-ops-copy h2,
.lp-contact-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(1.64rem, 2.6vw, 2.42rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.lp-split-copy p,
.lp-ops-copy p,
.lp-contact-copy p {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--lp-muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

.lp-photo-panel-tall {
  min-height: 500px;
}

.lp-interface-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.52fr) minmax(320px, 0.68fr);
  align-items: stretch;
}

.lp-photo-panel-large {
  min-height: 536px;
}

.lp-interface-side {
  display: grid;
  gap: 24px;
}

.lp-photo-panel-small {
  min-height: 256px;
}

.lp-interface-grid .lp-photo-panel {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.lp-interface-grid .lp-photo-panel-small {
  box-shadow:
    0 28px 56px rgba(4, 10, 18, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.lp-interface-grid .lp-photo-panel-small .lp-photo-copy {
  gap: 10px;
  padding: 18px 18px 18px;
}

.lp-interface-grid .lp-photo-panel-small .lp-photo-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(7, 12, 18, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lp-interface-grid .lp-photo-panel-small .lp-photo-copy h3 {
  display: inline-flex;
  width: fit-content;
  max-width: min(92%, 320px);
  margin-top: 0;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(7, 12, 18, 0.68);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 12px 22px rgba(4, 10, 18, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.lp-surface {
  overflow: hidden;
  padding: 24px 24px 22px;
  border: 1px solid var(--lp-line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(7, 15, 22, 0.88);
  box-shadow: var(--lp-shadow);
}

.lp-surface-head {
  display: grid;
  gap: 16px;
}

.lp-signals-section .lp-surface {
  text-align: center;
}

.lp-signals-section .lp-surface-head {
  justify-items: center;
}

.lp-signals-section .lp-section-label {
  justify-content: center;
}

.lp-signal-rail {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lp-signal-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.026)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.lp-signal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(70, 211, 164, 0.16), transparent 54%),
    linear-gradient(135deg, rgba(70, 211, 164, 0.08), transparent 54%);
  transition: opacity 180ms ease;
  pointer-events: none;
}

.lp-signal-card:hover,
.lp-signal-card:focus-within {
  border-color: rgba(70, 211, 164, 0.38);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(70, 211, 164, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.lp-signal-card:hover::before,
.lp-signal-card:focus-within::before {
  opacity: 1;
}

.lp-signal-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
  color: var(--lp-text);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.lp-signal-card:hover .lp-signal-icon,
.lp-signal-card:focus-within .lp-signal-icon {
  border-color: rgba(70, 211, 164, 0.42);
  background: rgba(70, 211, 164, 0.1);
  color: var(--lp-accent);
  box-shadow: 0 0 18px rgba(70, 211, 164, 0.16);
  transform: scale(1.05);
}

.lp-signal-icon svg {
  width: 18px;
  height: 18px;
}

.lp-signal-card div:last-child {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: color 180ms ease;
}

.lp-signal-card:hover div:last-child,
.lp-signal-card:focus-within div:last-child {
  color: rgba(255, 255, 255, 0.96);
}

@media (prefers-reduced-motion: reduce) {
  .lp-signal-card,
  .lp-signal-card::before,
  .lp-signal-icon,
  .lp-signal-card div:last-child {
    transition: none;
  }

  .lp-signal-card:hover,
  .lp-signal-card:focus-within,
  .lp-signal-card:hover .lp-signal-icon,
  .lp-signal-card:focus-within .lp-signal-icon {
    transform: none;
  }
}

.lp-system-section {
  overflow: hidden;
}

.lp-system-head {
  width: min(780px, 100%);
  margin: 0 auto 24px;
  text-align: center;
}

.lp-system-head .lp-section-label {
  justify-content: center;
}

.lp-system-head h2 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.lp-system-head p {
  margin: 0 auto;
  width: min(680px, 100%);
  color: var(--lp-muted);
  font-size: 1rem;
  line-height: 1.78;
}

.lp-system-map {
  position: relative;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  padding: 22px;
  border: 1px solid var(--lp-line);
  border-radius: 32px;
  background:
    radial-gradient(circle at center, rgba(70, 211, 164, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
    rgba(7, 15, 22, 0.88);
  box-shadow: var(--lp-shadow);
}

.lp-system-card {
  position: relative;
  min-height: 204px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.lp-system-card h3 {
  margin: 0 0 10px;
  color: var(--lp-text);
  font-size: 1.08rem;
  line-height: 1.34;
  letter-spacing: -0.02em;
}

.lp-system-card p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

.lp-illust {
  position: relative;
  height: 112px;
  margin: 14px 0 16px;
  border: 1px solid rgba(70, 211, 164, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 22% 20%, rgba(120, 255, 210, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(70, 211, 164, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 34px rgba(0, 0, 0, 0.16);
}

.lp-illust span {
  position: absolute;
  display: block;
}

.lp-illust-engine .lp-engine-stack {
  left: 24px;
  bottom: 28px;
  width: 42px;
  height: 52px;
  border: 1px solid rgba(10, 83, 61, 0.65);
  border-radius: 8px 8px 4px 4px;
  background:
    repeating-linear-gradient(90deg, rgba(6, 83, 60, 0.9) 0 5px, rgba(38, 174, 126, 0.82) 5px 9px),
    linear-gradient(180deg, #69e1b5, #117854);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.24);
}

.lp-illust-engine .lp-engine-block {
  left: 68px;
  bottom: 26px;
  width: 132px;
  height: 48px;
  border: 1px solid rgba(10, 83, 61, 0.78);
  border-radius: 10px 18px 12px 10px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.25), transparent 22%),
    linear-gradient(180deg, #68dfb3, #12805b);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
}

.lp-illust-engine .lp-engine-block::before {
  content: "";
  position: absolute;
  left: 14px;
  top: -18px;
  width: 76px;
  height: 18px;
  border-radius: 9px 9px 2px 2px;
  background: linear-gradient(180deg, #7bf0c2, #198762);
}

.lp-illust-engine .lp-engine-pipe {
  left: 52px;
  bottom: 76px;
  width: 96px;
  height: 18px;
  border: 5px solid #8df5cf;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  opacity: 0.95;
}

.lp-illust-engine .lp-engine-wheel {
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border: 9px solid #1b8a62;
  border-radius: 50%;
  background: #a9f8da;
  box-shadow: inset 0 0 0 7px #0c4f3b;
}

.lp-illust-cooling .lp-cooling-rack {
  left: 50%;
  top: 19px;
  width: 76px;
  height: 70px;
  transform: translateX(-50%);
  border: 1px solid rgba(91, 215, 180, 0.75);
  border-radius: 12px;
  background:
    repeating-linear-gradient(180deg, #102b36 0 10px, #4ce0b1 10px 14px),
    linear-gradient(180deg, #143945, #06141a);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.lp-illust-cooling .lp-cooling-pump {
  left: 34px;
  bottom: 22px;
  width: 52px;
  height: 38px;
  border: 6px solid #82f0cb;
  border-radius: 18px 18px 10px 10px;
}

.lp-illust-cooling .lp-cooling-pump::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 9px;
  width: 18px;
  height: 18px;
  border: 4px solid #1b8a62;
  border-radius: 50%;
}

.lp-illust-cooling .lp-cooling-tower {
  right: 34px;
  bottom: 20px;
  width: 58px;
  height: 54px;
  clip-path: polygon(16% 100%, 28% 0, 72% 0, 84% 100%);
  background: linear-gradient(180deg, #8af4ce, #167c5c);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.lp-illust-cooling::before,
.lp-illust-cooling::after {
  content: "";
  position: absolute;
  top: 54px;
  width: 70px;
  height: 34px;
  border: 3px solid #47d3a4;
  opacity: 0.8;
}

.lp-illust-cooling::before {
  left: 80px;
  border-right: 0;
  border-bottom: 0;
  border-radius: 16px 0 0 0;
}

.lp-illust-cooling::after {
  right: 80px;
  border-left: 0;
  border-top: 0;
  border-radius: 0 0 16px 0;
}

.lp-illust-camera .lp-camera-arm {
  left: 42px;
  bottom: 24px;
  width: 26px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(180deg, #8af4ce, #147b5a);
}

.lp-illust-camera .lp-camera-body {
  left: 58px;
  top: 26px;
  width: 128px;
  height: 58px;
  transform: skewX(-14deg);
  border: 1px solid rgba(112, 235, 202, 0.78);
  border-radius: 14px;
  background: linear-gradient(135deg, #87eac8, #225f94 52%, #102f52);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.26);
}

.lp-illust-camera .lp-camera-lens {
  right: 44px;
  top: 39px;
  width: 34px;
  height: 34px;
  border: 7px solid #0a2436;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 36%, #ffffff, #63d9ff 25%, #0c355a 64%);
}

.lp-illust-maintenance .lp-calendar-card {
  left: 36px;
  top: 22px;
  width: 94px;
  height: 76px;
  border: 1px solid rgba(126, 240, 205, 0.68);
  border-radius: 14px;
  background:
    linear-gradient(180deg, #47d3a4 0 24%, #f4fff9 24% 100%);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.lp-illust-maintenance .lp-calendar-card::before {
  content: "";
  position: absolute;
  inset: 34px 14px 14px;
  background:
    linear-gradient(90deg, rgba(16, 92, 68, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 92, 68, 0.18) 1px, transparent 1px);
  background-size: 18px 16px;
}

.lp-illust-maintenance .lp-calendar-check {
  left: 78px;
  top: 62px;
  width: 22px;
  height: 12px;
  border-left: 5px solid #0f8a62;
  border-bottom: 5px solid #0f8a62;
  transform: rotate(-45deg);
}

.lp-illust-maintenance .lp-maintenance-gear {
  right: 48px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border: 12px solid #57dcb0;
  border-radius: 50%;
  background: radial-gradient(circle, #0b1a21 0 26%, #147b5a 27% 44%, transparent 45%);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.lp-illust-workorder .lp-work-doc {
  left: 36px;
  top: 20px;
  width: 74px;
  height: 78px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, transparent 0 14px, rgba(255, 255, 255, 0.94) 15px),
    linear-gradient(180deg, #ffffff, #bdf6df);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.lp-illust-workorder .lp-work-doc::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 28px;
  width: 46px;
  height: 30px;
  background:
    linear-gradient(#178b63, #178b63) 0 0 / 42px 4px no-repeat,
    linear-gradient(#178b63, #178b63) 0 13px / 34px 4px no-repeat,
    linear-gradient(#178b63, #178b63) 0 26px / 40px 4px no-repeat;
  opacity: 0.72;
}

.lp-illust-workorder .lp-work-person {
  left: 50%;
  top: 32px;
  width: 54px;
  height: 66px;
  transform: translateX(-50%);
}

.lp-illust-workorder .lp-work-person::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #69e1b5;
}

.lp-illust-workorder .lp-work-person::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 0;
  width: 48px;
  height: 38px;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(180deg, #4fdcb0, #147a5a);
}

.lp-illust-workorder .lp-work-tool {
  right: 44px;
  top: 34px;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffd668, #f4a51d);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
}

.lp-illust-workorder .lp-work-tool::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 12px;
  width: 20px;
  height: 30px;
  border: 5px solid #ffffff;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  transform: rotate(45deg);
}

.lp-illust-inventory .lp-warehouse-roof {
  left: 48px;
  top: 18px;
  width: 112px;
  height: 44px;
  clip-path: polygon(50% 0, 100% 70%, 90% 100%, 10% 100%, 0 70%);
  background: linear-gradient(180deg, #8ff5cf, #18855f);
}

.lp-illust-inventory .lp-warehouse-body {
  left: 60px;
  top: 54px;
  width: 88px;
  height: 46px;
  border: 1px solid rgba(109, 237, 200, 0.7);
  border-radius: 6px 6px 12px 12px;
  background: linear-gradient(180deg, #eafff7, #54cfa5);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
}

.lp-illust-inventory .lp-warehouse-boxes {
  right: 42px;
  bottom: 24px;
  width: 82px;
  height: 58px;
  background:
    linear-gradient(90deg, #ffd668 0 30%, transparent 30% 35%, #ffb33f 35% 65%, transparent 65% 70%, #56d8ac 70%) 0 24px / 100% 34px no-repeat,
    linear-gradient(90deg, #56d8ac 0 48%, transparent 48% 52%, #ffd668 52%) 12px 0 / 58px 28px no-repeat;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.22));
}

.lp-system-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 30px;
  margin-bottom: 16px;
  border: 1px solid rgba(70, 211, 164, 0.34);
  border-radius: 10px;
  background: rgba(70, 211, 164, 0.12);
  color: #73f0c8;
  font-size: 0.82rem;
  font-weight: 800;
}

.lp-system-center {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 3;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 560px;
  padding: 34px 18px;
}

.lp-system-orbit {
  position: absolute;
  inset: 34px -14px;
  border: 1px solid rgba(70, 211, 164, 0.14);
  border-radius: 50%;
}

.lp-system-orbit::before,
.lp-system-orbit::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(70, 211, 164, 0.1);
  border-radius: 50%;
}

.lp-system-orbit::after {
  inset: 58px;
}

.lp-system-device {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(3, 7, 11, 0.72);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lp-system-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.lp-system-brand span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(70, 211, 164, 1), rgba(29, 113, 85, 0.9));
  clip-path: polygon(14% 78%, 14% 48%, 28% 48%, 28% 78%, 42% 78%, 42% 30%, 56% 30%, 56% 78%, 70% 78%, 70% 16%, 84% 16%, 84% 78%);
}

.lp-system-brand strong {
  color: var(--lp-text);
  font-size: 1.65rem;
  letter-spacing: -0.04em;
}

.lp-system-device img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
}

.lp-system-outcomes {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  width: min(100%, 360px);
  margin-top: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-system-outcomes span {
  min-height: 58px;
  padding: 12px 10px;
  border: 1px solid rgba(70, 211, 164, 0.22);
  border-radius: 16px;
  background: rgba(70, 211, 164, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.lp-metric-grid {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-metric-grid div,
.lp-inventory-mini div {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.12);
}

.lp-metric-grid span,
.lp-inventory-mini span {
  display: block;
  color: var(--lp-soft);
  font-size: 0.72rem;
}

.lp-metric-grid strong,
.lp-inventory-mini strong {
  display: block;
  margin-top: 4px;
  color: var(--lp-text);
  font-size: 0.92rem;
}

.lp-flow-diagram,
.lp-workflow-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.lp-flow-diagram span,
.lp-workflow-row span,
.lp-video-zones span,
.lp-maintenance-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(70, 211, 164, 0.18);
  border-radius: 999px;
  background: rgba(70, 211, 164, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
}

.lp-flow-diagram i {
  flex: 1 1 20px;
  height: 1px;
  background: rgba(70, 211, 164, 0.38);
}

.lp-video-zones,
.lp-maintenance-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.lp-workflow-row {
  justify-content: space-between;
}

.lp-inventory-mini {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-system-showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(28px, 4.2vw, 54px);
  border: 1px solid rgba(214, 237, 230, 0.16);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 42%, rgba(70, 211, 164, 0.18), transparent 32%),
    radial-gradient(circle at 18% 14%, rgba(99, 217, 255, 0.13), transparent 28%),
    radial-gradient(circle at 86% 80%, rgba(70, 211, 164, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(13, 26, 34, 0.94), rgba(3, 7, 11, 0.98));
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lp-system-showcase::before,
.lp-system-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.lp-system-showcase::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.8), transparent 72%);
}

.lp-system-showcase::after {
  background:
    linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.048) 48%, transparent 62%),
    radial-gradient(circle at 50% 50%, transparent 0 36%, rgba(70, 211, 164, 0.07) 36.2% 36.6%, transparent 36.8% 100%),
    radial-gradient(circle at 50% 50%, transparent 0 49%, rgba(99, 217, 255, 0.055) 49.2% 49.5%, transparent 49.8% 100%);
  opacity: 0.84;
}

.lp-system-text {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.lp-system-text .lp-section-label {
  justify-content: center;
}

.lp-system-text h2 {
  margin: 16px 0 12px;
  color: var(--lp-text);
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.lp-system-text p {
  margin: 0 auto;
  width: min(720px, 100%);
  color: rgba(230, 238, 235, 0.72);
  font-size: 1rem;
  line-height: 1.82;
}

.lp-system-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(252px, 1fr) minmax(320px, 0.92fr) minmax(252px, 1fr);
  align-items: center;
  margin-top: clamp(28px, 4vw, 46px);
}

.lp-system-bg-grid {
  position: absolute;
  inset: 5% 22%;
  border: 1px solid rgba(70, 211, 164, 0.08);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(70, 211, 164, 0.12), transparent 56%),
    linear-gradient(90deg, transparent 0 49.8%, rgba(70, 211, 164, 0.13) 50%, transparent 50.2% 100%),
    linear-gradient(180deg, transparent 0 49.8%, rgba(99, 217, 255, 0.1) 50%, transparent 50.2% 100%);
  filter: blur(0.2px);
  pointer-events: none;
}

.lp-system-column {
  display: grid;
  gap: 18px;
}

.lp-capability-card,
.lp-core-card-inner {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 237, 230, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.022)),
    rgba(7, 16, 22, 0.76);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.lp-capability-card {
  min-height: 274px;
  padding: 20px;
  border-radius: 26px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.lp-capability-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(99, 217, 255, 0.11), transparent 30%);
  opacity: 0.72;
  pointer-events: none;
}

.lp-capability-card:hover {
  transform: translateY(-4px);
  border-color: rgba(70, 211, 164, 0.34);
  background:
    linear-gradient(145deg, rgba(70, 211, 164, 0.082), rgba(255, 255, 255, 0.025)),
    rgba(7, 16, 22, 0.82);
  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(70, 211, 164, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.lp-card-glow {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(70, 211, 164, 0.13);
  filter: blur(28px);
  opacity: 0.72;
  pointer-events: none;
}

.lp-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.lp-card-index {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 36px;
  border: 1px solid rgba(70, 211, 164, 0.34);
  border-radius: 13px;
  background:
    linear-gradient(180deg, rgba(70, 211, 164, 0.22), rgba(70, 211, 164, 0.08)),
    rgba(2, 10, 13, 0.56);
  color: #90f7d4;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 12px 24px rgba(70, 211, 164, 0.12);
}

.lp-card-head h3 {
  margin: 0;
  color: var(--lp-text);
  font-size: clamp(1.03rem, 1.1vw, 1.18rem);
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.lp-card-head p {
  margin: 8px 0 0;
  color: rgba(230, 238, 235, 0.64);
  font-size: 0.84rem;
  line-height: 1.55;
}

.lp-icon-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 132px;
  margin: 10px 0 14px;
  border: 1px solid rgba(70, 211, 164, 0.09);
  border-radius: 20px;
  background:
    radial-gradient(circle at 48% 36%, rgba(70, 211, 164, 0.16), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01));
}

.lp-vector {
  display: block;
  width: min(100%, 260px);
  height: auto;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.24));
}

.lp-vector-shadow {
  fill: none;
  stroke: rgba(70, 211, 164, 0.22);
  stroke-width: 10;
  stroke-linecap: round;
}

.lp-capability-metrics,
.lp-capability-tags {
  position: relative;
  z-index: 1;
}

.lp-capability-metrics {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-capability-metrics div {
  min-height: 58px;
  padding: 10px 11px;
  border: 1px solid rgba(214, 237, 230, 0.12);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.16);
}

.lp-capability-metrics span {
  display: block;
  color: rgba(230, 238, 235, 0.56);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lp-capability-metrics strong {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.95rem;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.lp-capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-capability-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(70, 211, 164, 0.18);
  border-radius: 999px;
  background: rgba(70, 211, 164, 0.08);
  color: rgba(230, 238, 235, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
}

.lp-core-card {
  position: relative;
  display: grid;
  min-height: 690px;
  align-items: center;
}

.lp-core-orbit {
  position: absolute;
  inset: 16px -30px;
  border: 1px solid rgba(70, 211, 164, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(70, 211, 164, 0.12), transparent 45%),
    radial-gradient(circle at center, transparent 0 61%, rgba(99, 217, 255, 0.07) 61.4% 61.8%, transparent 62.2% 100%);
  box-shadow:
    0 0 64px rgba(70, 211, 164, 0.11),
    inset 0 0 44px rgba(99, 217, 255, 0.08);
  pointer-events: none;
}

.lp-core-orbit::before,
.lp-core-orbit::after {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
}

.lp-core-orbit::after {
  inset: 72px;
  border-color: rgba(70, 211, 164, 0.12);
}

.lp-core-card-inner {
  z-index: 1;
  display: grid;
  justify-items: center;
  padding: 28px 22px 24px;
  border-radius: 30px;
  text-align: center;
}

.lp-core-card-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(70, 211, 164, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 34%);
  pointer-events: none;
}

.lp-core-mark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: end;
  gap: 6px;
  width: 58px;
  height: 48px;
  margin-bottom: 14px;
  padding: 8px;
  border: 1px solid rgba(70, 211, 164, 0.24);
  border-radius: 16px;
  background: rgba(70, 211, 164, 0.09);
}

.lp-core-mark span {
  width: 9px;
  border-radius: 999px 999px 3px 3px;
  background: linear-gradient(180deg, #63d9ff, #45d7a8);
}

.lp-core-mark span:nth-child(1) {
  height: 18px;
}

.lp-core-mark span:nth-child(2) {
  height: 28px;
}

.lp-core-mark span:nth-child(3) {
  height: 36px;
}

.lp-core-card h3,
.lp-core-card p,
.lp-core-subtitle,
.lp-core-visual,
.lp-core-pills {
  position: relative;
  z-index: 1;
}

.lp-core-card h3 {
  margin: 0;
  color: var(--lp-text);
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.lp-core-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.lp-core-subtitle {
  display: block;
  width: min(100%, 320px);
  margin-top: 10px;
  color: rgba(230, 238, 235, 0.64);
  font-size: 0.86rem;
  line-height: 1.66;
}

.lp-core-visual {
  width: min(100%, 420px);
  margin: 18px 0 16px;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.28));
}

.lp-core-pills {
  display: grid;
  gap: 8px;
  width: min(100%, 390px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-core-pills span {
  min-height: 58px;
  padding: 11px 9px;
  border: 1px solid rgba(70, 211, 164, 0.2);
  border-radius: 16px;
  background: rgba(70, 211, 164, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
}

.lp-topology-showcase {
  padding: clamp(30px, 4vw, 52px);
  background:
    linear-gradient(180deg, rgba(10, 18, 22, 0.98), rgba(3, 7, 11, 0.99));
}

.lp-topology-showcase::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.42;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 82%, transparent);
}

.lp-topology-showcase::after {
  display: none;
}

.lp-topology-head {
  width: min(760px, 100%);
}

.lp-topology-head p {
  width: min(620px, 100%);
}

.lp-topology-canvas {
  position: relative;
  min-height: 640px;
  margin-top: clamp(18px, 2.6vw, 30px);
}

.lp-topology-lines {
  position: absolute;
  inset: 4px 0 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.78;
}

.lp-topology-lines path {
  fill: none;
  stroke: rgba(70, 211, 164, 0.46);
  stroke-width: 1.45;
  stroke-dasharray: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-topology-lines circle {
  fill: rgba(70, 211, 164, 0.74);
  filter: none;
}

.lp-topology-core,
.lp-topology-node {
  position: absolute;
  z-index: 2;
}

.lp-topology-core {
  top: 50%;
  left: 50%;
  display: grid;
  justify-items: center;
  width: min(228px, 21vw);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  transform: translate(-50%, -50%);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.lp-topology-core::before,
.lp-topology-core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.lp-topology-core::before {
  display: none;
}

.lp-topology-core::after {
  display: none;
}

.lp-topology-core-glow {
  position: absolute;
  inset: -32px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(70, 211, 164, 0.085), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.lp-topology-core-image {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(100%, 198px);
  margin: 0 0 2px;
}

.lp-topology-core-image img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 16px rgba(0, 0, 0, 0.18));
}

.lp-topology-core-copy,
.lp-topology-core-tags {
  position: relative;
  z-index: 1;
}

.lp-topology-core-copy span,
.lp-topology-node-copy span {
  display: block;
  color: var(--lp-accent);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lp-topology-core-copy h3 {
  margin: 5px 0 0;
  color: var(--lp-text);
  font-size: clamp(1.48rem, 1.8vw, 1.86rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.lp-topology-core-copy p {
  margin: 5px 0 0;
  color: rgba(230, 238, 235, 0.74);
  font-size: 0.84rem;
  font-weight: 700;
}

.lp-topology-core-tags {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}

.lp-topology-core-tags span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(70, 211, 164, 0.16);
  border-radius: 999px;
  background: rgba(70, 211, 164, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.7rem;
  font-weight: 800;
}

.lp-topology-node {
  width: min(190px, 17vw);
  padding: 2px 4px 6px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  text-align: center;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.lp-topology-node:hover {
  filter: brightness(1.04);
  transform: translateY(-4px);
}

.lp-node-coolingSystem {
  top: 24px;
  left: 150px;
}

.lp-node-generator {
  top: 24px;
  left: 150px;
}

.lp-node-thermalManagement {
  top: 0;
  left: 50%;
  width: min(220px, 19vw);
  transform: translateX(-50%);
}

.lp-node-thermalManagement:hover {
  transform: translate(-50%, -4px);
}

.lp-node-video {
  top: 24px;
  right: 150px;
}

.lp-node-maintenance {
  left: 240px;
  bottom: 4px;
  width: min(198px, 18vw);
}

.lp-node-inventory {
  right: 240px;
  bottom: 4px;
  width: min(198px, 18vw);
}

.lp-topology-node-icon {
  display: grid;
  place-items: center;
  min-height: 96px;
}

.lp-topology-node-icon img {
  display: block;
  width: 100%;
  max-width: 168px;
  height: auto;
  filter:
    drop-shadow(0 10px 10px rgba(0, 0, 0, 0.18));
}

.lp-node-thermalManagement .lp-topology-node-icon img {
  max-width: 184px;
  border-radius: 0;
}

.lp-topology-node-copy h3 {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(0.88rem, 0.92vw, 1rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.lp-topology-node-copy p {
  margin: 4px 0 0;
  color: rgba(230, 238, 235, 0.56);
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.45;
}

.lp-ops-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  align-items: stretch;
}

.lp-photo-panel-ops {
  min-height: 620px;
  border-color: rgba(214, 237, 230, 0.16);
  box-shadow:
    0 30px 62px rgba(4, 10, 18, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}

.lp-photo-panel-ops .lp-photo-media img {
  object-position: center center;
  transform: scale(1.02);
}

.lp-photo-panel-ops::after {
  border-color: rgba(214, 237, 230, 0.14);
}

.lp-photo-panel-ops .lp-photo-overlay {
  background:
    radial-gradient(circle at top right, rgba(70, 211, 164, 0.2), transparent 26%),
    linear-gradient(180deg, rgba(3, 7, 11, 0.02), rgba(3, 7, 11, 0.14) 34%, rgba(3, 7, 11, 0.82) 100%);
}

.lp-photo-panel-ops .lp-photo-copy {
  padding: 28px 28px 30px;
}

.lp-photo-panel-ops .lp-photo-copy h3 {
  display: inline-flex;
  width: fit-content;
  max-width: min(90%, 560px);
  margin-top: 0;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(7, 12, 18, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 12px 28px rgba(4, 10, 18, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.48);
}

.lp-ops-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 0 18px;
  --lp-ops-copy-width: 35rem;
}

.lp-ops-copy .lp-section-label {
  gap: 8px;
}

.lp-ops-copy h2 {
  width: min(100%, var(--lp-ops-copy-width));
  max-width: none;
  margin-top: 18px;
  font-size: clamp(1.82rem, 2.45vw, 2.58rem);
  line-height: 1.14;
  text-wrap: pretty;
}

.lp-ops-copy p {
  width: min(100%, var(--lp-ops-copy-width));
  max-width: none;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.88;
  text-wrap: pretty;
}

.lp-ops-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
  padding-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-ops-list div {
  min-height: 76px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.42;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

.lp-ops-note {
  width: min(100%, var(--lp-ops-copy-width));
  max-width: none;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.9;
  text-wrap: pretty;
}

.lp-service-list {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-service-list article {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-service-list article:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.lp-service-list h3 {
  margin: 0;
  font-size: 1.36rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.lp-service-list p {
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.68;
}

.lp-photo-panel-service {
  min-height: 560px;
}

.lp-photo-panel-service .lp-photo-overlay {
  background:
    radial-gradient(circle at top left, rgba(70, 211, 164, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(7, 13, 19, 0.06) 0%, rgba(7, 13, 19, 0.14) 34%, rgba(7, 13, 19, 0.42) 68%, rgba(7, 13, 19, 0.78) 100%);
}

.lp-photo-panel-service .lp-photo-copy {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: auto;
  padding: 0;
  pointer-events: none;
}

.lp-photo-panel-service .lp-photo-copy h3 {
  max-width: 280px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.36rem, 2vw, 1.8rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(7, 13, 19, 0.12), rgba(7, 13, 19, 0.48));
  backdrop-filter: blur(10px);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.36);
}

.lp-contact-surface {
  padding-top: 30px;
  padding-bottom: 30px;
}

.lp-contact-copy {
  max-width: 860px;
}

.lp-contact-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.lp-contact-note {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lp-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(--lp-text);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 20px 48px rgba(8, 15, 14, 0.16);
}

.lp-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;
}

.lp-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;
}

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

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

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

.lp-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;
}

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

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

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

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

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

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

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

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

@media (max-width: 1240px) {
  .lp-section {
    margin-top: 48px;
  }

  .lp-nav {
    gap: 18px;
    margin-right: 0;
  }

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

  .lp-boundary-grid {
    grid-template-columns: 1fr;
  }

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

  .lp-system-center {
    grid-column: 1 / -1;
    grid-row: auto;
    order: -1;
    min-height: 420px;
  }

  .lp-system-shell {
    grid-template-columns: 1fr;
  }

  .lp-system-bg-grid {
    inset: 10% 8%;
  }

  .lp-core-card {
    order: -1;
    min-height: 0;
  }

  .lp-topology-canvas {
    display: grid;
    gap: 18px 22px;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-topology-lines {
    display: none;
  }

  .lp-topology-core,
  .lp-topology-node,
  .lp-node-coolingSystem,
  .lp-node-generator,
  .lp-node-thermalManagement,
  .lp-node-video,
  .lp-node-maintenance,
  .lp-node-inventory {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    transform: none;
  }

  .lp-topology-core {
    grid-column: 1 / -1;
    order: -1;
    width: min(260px, 100%);
    margin: 0 auto 6px;
  }

  .lp-topology-core:hover,
  .lp-node-thermalManagement:hover,
  .lp-topology-node:hover {
    transform: translateY(-2px);
  }

  .lp-topology-core::before,
  .lp-topology-core::after {
    display: none;
  }

  .lp-core-orbit {
    inset: -18px 12%;
    border-radius: 34px;
  }

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

  .lp-interface-grid,
  .lp-definition-split,
  .lp-ops-grid,
  .lp-split,
  .lp-footer-grid {
    grid-template-columns: 1fr;
  }

  .lp-photo-panel-large,
  .lp-interface-side {
    grid-column: span 1;
  }

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

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

@media (max-width: 980px) {
  .lp-section {
    margin-top: 40px;
  }

  .lp-shell {
    width: min(1240px, calc(100% - 18px));
  }

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

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

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

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

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

  .lp-hero-stage,
  .lp-hero-layout,
  .lp-hero-copy {
    min-height: 520px;
  }

  .lp-hero-copy {
    width: min(100%, 640px);
    padding: 138px 0 84px;
  }

  .lp-photo-panel-large {
    min-height: 420px;
  }

  .lp-photo-panel-ops,
  .lp-photo-panel-service {
    min-height: 480px;
  }

  .lp-definition-primary,
  .lp-definition-secondary {
    min-height: 0;
  }

  .lp-definition-primary-copy,
  .lp-definition-secondary-copy {
    padding: 26px 24px;
  }

  .lp-definition-primary-copy {
    max-width: 100%;
    min-height: 420px;
  }

  .lp-definition-primary-media img {
    width: 100%;
    opacity: 0.72;
    object-position: 58% center;
  }

  .lp-definition-secondary-media {
    height: 248px;
  }

  .lp-hero-backdrop img {
    transform: none;
  }

  .lp-surface,
  .lp-contact-surface,
  .lp-site-footer {
    padding: 20px 18px;
  }

  .lp-system-map {
    padding: 18px;
  }

  .lp-system-card {
    min-height: 0;
  }

  .lp-system-showcase {
    padding: 28px;
    border-radius: 24px;
  }

  .lp-capability-card {
    min-height: 250px;
  }

  .lp-core-card-inner {
    padding: 26px 22px;
  }

  .lp-topology-node-icon {
    min-height: 100px;
  }

  .lp-topology-node-icon img {
    max-width: 160px;
  }

  .lp-node-thermalManagement .lp-topology-node-icon img {
    max-width: 174px;
  }

  .lp-ops-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .lp-section {
    margin-top: 34px;
  }

  .lp-brand img {
    height: 28px;
  }

  .lp-brand-copy span,
  .lp-contact-note {
    letter-spacing: 0.12em;
  }

  .lp-hero-copy h1,
  .lp-definition-primary h2,
  .lp-definition-secondary-copy h3,
  .lp-split-copy h2,
  .lp-ops-copy h2,
  .lp-contact-copy h2 {
    font-size: clamp(1.9rem, 9vw, 2.85rem);
  }

  .lp-hero-stage,
  .lp-hero-layout,
  .lp-hero-copy {
    min-height: 468px;
  }

  .lp-hero-copy {
    width: 100%;
    padding: 126px 0 72px;
  }

  .lp-hero-keywords,
  .lp-split-copy p,
  .lp-ops-copy p,
  .lp-contact-copy p,
  .lp-service-list p {
    font-size: 0.94rem;
  }

  .lp-signal-rail {
    grid-template-columns: 1fr;
  }

  .lp-system-head {
    text-align: left;
  }

  .lp-system-head .lp-section-label {
    justify-content: flex-start;
  }

  .lp-system-map {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .lp-system-center {
    min-height: 360px;
    padding: 16px 0;
  }

  .lp-system-orbit {
    inset: 28px 12px;
  }

  .lp-system-outcomes,
  .lp-metric-grid,
  .lp-inventory-mini {
    grid-template-columns: 1fr;
  }

  .lp-flow-diagram,
  .lp-workflow-row {
    align-items: stretch;
    flex-direction: column;
  }

  .lp-flow-diagram i {
    width: 1px;
    min-height: 18px;
    margin-left: 16px;
  }

  .lp-system-showcase {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .lp-system-text {
    text-align: left;
  }

  .lp-system-text .lp-section-label {
    justify-content: flex-start;
  }

  .lp-system-shell {
    gap: 14px;
    margin-top: 24px;
  }

  .lp-system-bg-grid,
  .lp-core-orbit {
    display: none;
  }

  .lp-system-column {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lp-capability-card {
    min-height: 0;
    padding: 18px;
    border-radius: 22px;
  }

  .lp-card-head {
    gap: 12px;
  }

  .lp-card-index {
    min-width: 38px;
    height: 34px;
  }

  .lp-icon-stage {
    min-height: 116px;
  }

  .lp-capability-metrics,
  .lp-core-pills {
    grid-template-columns: 1fr;
  }

  .lp-core-card-inner {
    border-radius: 24px;
  }

  .lp-core-visual {
    margin: 14px 0;
  }

  .lp-topology-canvas {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lp-topology-node {
    padding: 2px 8px 12px;
    border-radius: 18px;
  }

  .lp-topology-node-icon {
    min-height: 92px;
  }

  .lp-topology-node-icon img {
    max-width: 150px;
  }

  .lp-node-thermalManagement .lp-topology-node-icon img {
    max-width: 160px;
  }

  .lp-topology-core-image {
    width: min(100%, 178px);
  }

  .lp-topology-core {
    padding: 14px 12px;
    border-radius: 20px;
  }

  .lp-contact-actions {
    align-items: flex-start;
  }

  .lp-definition-primary-copy,
  .lp-definition-secondary-copy {
    padding: 22px 18px;
  }

  .lp-definition-primary {
    min-height: 420px;
  }

  .lp-definition-primary::after {
    background:
      linear-gradient(180deg, rgba(3, 7, 11, 0.82) 0%, rgba(3, 7, 11, 0.68) 48%, rgba(3, 7, 11, 0.86) 100%);
  }

  .lp-definition-secondary-media {
    height: 216px;
  }
}
