:root {
  color-scheme: dark;
  --lc-bg: #eef2f5;
  --lc-panel: #071018;
  --lc-line: rgba(255, 255, 255, 0.1);
  --lc-line-strong: rgba(255, 255, 255, 0.16);
  --lc-text: #f2f7fb;
  --lc-text-dark: #0f1720;
  --lc-muted-dark: #66727d;
  --lc-soft-dark: #6b7280;
  --lc-accent: #46d3a4;
  --lc-warm: #f7b14a;
  --lc-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

* {
  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.08), transparent 24%),
    linear-gradient(180deg, #eef2f5 0%, #e9eef2 100%);
  color: var(--lc-text-dark);
  line-height: 1.72;
  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%;
}

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

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

.lc-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);
}

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

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

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

.lc-brand-copy strong {
  color: var(--lc-text);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lc-brand-copy span {
  color: rgba(230, 238, 244, 0.44);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

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

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

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

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

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

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

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

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

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

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

.lc-button-light {
  background: #ffffff;
  color: #102034;
}

.lc-button-ghost {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--lc-text);
}

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

.lc-section {
  margin-top: 22px;
}

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

.lc-eyebrow-warm {
  color: var(--lc-warm);
}

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

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

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

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

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

.lc-hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  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%);
}

.lc-hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
}

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

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

.lc-hero-top {
  display: block;
}

.lc-hero-subline {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.lc-hero-badge {
  display: none;
}

.lc-hero-content {
  max-width: 760px;
}

.lc-hero h1,
.lc-section-head h2,
.lc-definition-copy h2,
.lc-project-copy h2,
.lc-endline-surface h2 {
  margin: 0;
  letter-spacing: -0.045em;
  font-weight: 700;
}

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

.lc-hero p,
.lc-definition-copy p,
.lc-project-copy p,
.lc-endline-surface p {
  margin: 14px 0 0;
  font-size: 0.96rem;
  line-height: 1.72;
}

.lc-hero p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.7);
}

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

.lc-surface {
  padding: 28px 28px;
  border: 1px solid rgba(216, 224, 230, 0.96);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 36px rgba(15, 23, 32, 0.05);
}

.lc-section-head {
  display: grid;
  gap: 18px;
  align-items: end;
}

#capabilities .lc-section-head {
  gap: 0;
  margin-bottom: 18px;
}

.lc-section-head h2,
.lc-definition-copy h2,
.lc-project-copy h2,
.lc-endline-surface h2 {
  margin-top: 14px;
  font-size: clamp(1.72rem, 3vw, 2.6rem);
  line-height: 1.12;
  color: var(--lc-text-dark);
}

.lc-capability-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.lc-boundary-card {
  min-height: 186px;
  padding: 24px;
  border: 1px solid rgba(216, 224, 230, 0.96);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 36px rgba(15, 23, 32, 0.05);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.lc-boundary-card:hover,
.lc-boundary-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(70, 211, 164, 0.32);
  box-shadow: 0 18px 42px rgba(15, 23, 32, 0.08);
}

.lc-boundary-card h2 {
  margin: 14px 0 0;
  color: var(--lc-text-dark);
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

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

.lc-capability-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid rgba(216, 224, 230, 0.96);
  border-radius: 24px;
  background: #f7f9fb;
  box-shadow: 0 12px 36px rgba(15, 23, 32, 0.05);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.lc-capability-light {
  background: #f7f9fb;
}

.lc-capability-dark {
  background: #f7f9fb;
  color: var(--lc-text-dark);
  box-shadow: 0 12px 36px rgba(15, 23, 32, 0.05);
}

.lc-capability-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lc-capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
}

.lc-capability-icon {
  border: 1px solid #d9e3ea;
  background: #ffffff;
  color: #0f1720;
}

.lc-capability-icon svg {
  width: 20px;
  height: 20px;
}

.lc-capability-card h3 {
  margin: 18px 0 0;
  font-size: 1.72rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.lc-capability-card p {
  margin: 12px 0 0;
  font-size: 0.92rem;
  line-height: 1.72;
}

.lc-capability-card p {
  color: var(--lc-muted-dark);
}

.lc-capability-media-light,
.lc-capability-media-dark {
  background: linear-gradient(135deg, #eaf0f4 0%, #dce7ef 100%);
}

.lc-capability-card:hover,
.lc-capability-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
  background: #102a4a;
  color: var(--lc-text);
  box-shadow: 0 18px 38px rgba(16, 42, 74, 0.28);
}

.lc-capability-card:hover .lc-capability-icon,
.lc-capability-card:focus-visible .lc-capability-icon {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.lc-capability-card:hover p,
.lc-capability-card:focus-visible p {
  color: rgba(255, 255, 255, 0.72);
}

.lc-capability-media {
  height: 128px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 18px;
  position: relative;
}

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

.lc-process-rail {
  display: grid;
  gap: 24px;
  margin-top: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lc-process-item {
  padding-top: 20px;
  border-top: 1px solid #d9e3ea;
}

.lc-process-no {
  color: #9aa5b1;
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.lc-process-item h3 {
  margin: 14px 0 0;
  font-size: 1.3rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.lc-process-item p {
  margin: 10px 0 0;
  color: var(--lc-muted-dark);
  font-size: 0.92rem;
  line-height: 1.72;
}

.lc-definition-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: stretch;
}

.lc-photo-panel {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border: 1px solid rgba(216, 224, 230, 0.96);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(16, 42, 74, 0.06), rgba(16, 42, 74, 0.02));
  box-shadow: 0 12px 36px rgba(15, 23, 32, 0.05);
}

.lc-photo-panel-media {
  position: absolute;
  inset: 0;
}

.lc-photo-panel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 19, 30, 0.12), rgba(9, 19, 30, 0.38) 34%, rgba(9, 19, 30, 0.72) 100%),
    linear-gradient(135deg, rgba(91, 110, 128, 0.4), rgba(56, 75, 93, 0.18));
}

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

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

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

.lc-photo-panel-copy h3 {
  max-width: 320px;
  margin: 14px 0 0;
  color: #ffffff;
  font-size: clamp(1.72rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.lc-photo-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-top: 18px;
  border-radius: 999px;
  background: #102a4a;
  padding: 8px 14px;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 500;
}

.lc-definition-copy p {
  max-width: 560px;
  color: var(--lc-muted-dark);
}

.lc-check-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lc-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid #e1e8ee;
  border-radius: 16px;
  background: #f8fafb;
}

.lc-check-item svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--lc-accent);
}

.lc-check-item span {
  color: #52606d;
  font-size: 0.9rem;
  line-height: 1.68;
}

.lc-project-panel {
  display: grid;
  gap: 22px;
  align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(135deg, #123056 0%, #0e2745 42%, #0b1c33 100%);
  box-shadow: 0 18px 36px rgba(14, 39, 69, 0.22);
}

.lc-project-copy {
  padding: 24px 28px;
}

.lc-project-copy h2,
.lc-project-copy p {
  color: var(--lc-text);
}

.lc-project-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 18px;
  background: linear-gradient(135deg, #1a466d 0%, #0e2745 100%);
}

.lc-project-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(70, 211, 164, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(9, 19, 30, 0.08), rgba(9, 19, 30, 0.22));
}

.lc-project-visual img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100% - 8px);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
}

.lc-project-actions .lc-button {
  gap: 8px;
}

.lc-project-actions svg {
  width: 16px;
  height: 16px;
}

.lc-endline-surface {
  padding: 32px 28px;
}

.lc-endline-surface .lc-section-cn {
  color: #55616d;
}

.lc-endline-surface h2 {
  color: var(--lc-text-dark);
}

.lc-endline-surface p {
  color: var(--lc-muted-dark);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .lc-capability-grid,
  .lc-boundary-grid,
  .lc-process-rail,
  .lc-definition-grid,
  .lc-project-panel,
  .lc-footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

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

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

  .lc-hero-top {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .lc-check-grid,
  .lc-footer-columns {
    grid-template-columns: 1fr;
  }

  .lc-hero-copy {
    width: 100%;
    min-height: 540px;
    padding: 138px 0 76px;
  }
}

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

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

  .lc-hero h1,
  .lc-section-head h2,
  .lc-definition-copy h2,
  .lc-project-copy h2,
  .lc-endline-surface h2,
  .lc-photo-panel-copy h3 {
    font-size: clamp(1.9rem, 10vw, 3.2rem);
  }

  .lc-hero p,
  .lc-capability-card p,
  .lc-process-item p,
  .lc-definition-copy p,
  .lc-check-item span,
  .lc-project-copy p,
  .lc-endline-surface p,
  .lc-footer-brand-block p {
    font-size: 0.93rem;
  }
}
