@charset "UTF-8";
:root {
  --box-shadow: 0px 0px 2px 0px #8f8f8f;
  --topBarHeight: $topBarHeight;
  --sidebarWidth: $sidebarWidth;
}

.lp-page {
  --lp-vc: #2360a3;
  --lp-sc: #2360a3;
  margin: 0;
  background: #f2f7f9;
  color: #26333f;
  font-family: "Kanit", "Leelawadee UI", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.lp-page *,
.lp-page *::before,
.lp-page *::after {
  box-sizing: border-box;
}
.lp-page h1,
.lp-page h2,
.lp-page h3,
.lp-page h4 {
  text-wrap: balance;
  margin: 0;
  line-height: 1.15;
  font-weight: 700;
}
.lp-page p,
.lp-page ul {
  margin: 0;
}
.lp-page a {
  color: inherit;
}
.lp-page img {
  display: block;
  max-width: 100%;
}
.lp-page :where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid #e67e22;
  outline-offset: 3px;
  border-radius: 2px;
}

.lp-wrap {
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3.5rem);
}

.lp-eyebrow {
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Kanit", monospace;
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #93a8b6;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lp-eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  flex: none;
}

.lp-num {
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  font-variant-numeric: tabular-nums;
}

.lp-beam {
  position: relative;
  isolation: isolate;
}
.lp-beam::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: linear-gradient(114deg, transparent 0 43%, rgba(255, 255, 255, 0.28) 43% 43.5%, rgba(233, 244, 241, 0.4) 43.5% 77%, rgba(255, 255, 255, 0.55) 77% 77.6%, transparent 77.6%);
}
.lp-beam > * {
  position: relative;
  z-index: 2;
}

.lp-rv {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp-rv.in {
  opacity: 1;
  transform: none;
}

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(242, 247, 249, 0.82);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
          backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid #d5e4ea;
}
.lp-nav .lp-nav-in {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2.5vw, 2rem);
  height: 70px;
}

.lp-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: none;
}
.lp-brand img {
  height: 30px;
  width: auto;
}

.lp-nav-links {
  display: flex;
  gap: 1.4rem;
  margin-inline-start: auto;
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
}
.lp-nav-links a {
  text-decoration: none;
  color: #5d7386;
  padding-block: 0.35rem;
  position: relative;
  white-space: nowrap;
  transition: color 0.18s;
}
.lp-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: #2360a3;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp-nav-links a:hover {
  color: #26333f;
}
.lp-nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
@media (max-width: 1060px) {
  .lp-nav-links {
    display: none;
  }
}

.lp-nav-cta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
@media (max-width: 1060px) {
  .lp-nav-cta {
    margin-inline-start: auto;
  }
}
.lp-nav-cta.is-solo {
  margin-inline-start: auto;
}

.lp-aim {
  height: 24px;
  width: 57.5px;
  flex: none;
}

.lp-lang {
  display: flex;
  border: 1px solid #d5e4ea;
  border-radius: 4px;
  overflow: hidden;
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}
.lp-lang button {
  border: none;
  background: none;
  color: #5d7386;
  cursor: pointer;
  padding: 0.4rem 0.55rem;
  font: inherit;
  transition: background 0.15s, color 0.15s;
}
.lp-lang button[aria-pressed=true] {
  background: #2360a3;
  color: #fff;
  font-weight: 700;
}

.lp-btn {
  font-family: "Kanit", "Leelawadee UI", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  font-weight: 600;
  padding: 0.62rem 1.15rem;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  background: none;
  color: inherit;
  transition: transform 0.16s cubic-bezier(0.22, 1, 0.36, 1), background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s;
}
.lp-btn:active {
  transform: translateY(1px);
}

.lp-btn-primary {
  background: #e67e22;
  color: #fff;
  border-color: #e67e22;
  font-weight: 600;
  box-shadow: 0 6px 16px -8px rgba(194, 99, 46, 0.8);
}
.lp-btn-primary:hover {
  background: #c2632e;
  border-color: #c2632e;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -8px rgba(194, 99, 46, 0.9);
}

.lp-btn-ghost {
  border-color: #d5e4ea;
  color: #26333f;
  background: #ffffff;
}
.lp-btn-ghost:hover {
  border-color: #2e7ca8;
  color: #1d6491;
  transform: translateY(-1px);
  box-shadow: 0 1px 2px rgba(38, 51, 63, 0.04), 0 2px 8px rgba(38, 51, 63, 0.04);
}

.lp-btn-onsky {
  border-color: rgba(38, 51, 63, 0.28);
  color: #26333f;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}
.lp-btn-onsky:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: #26333f;
  transform: translateY(-1px);
}

.lp-btn-lg {
  padding: 0.88rem 1.6rem;
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
}

.lp-btn-block {
  width: 100%;
  justify-content: center;
  background: #2360a3;
  color: #fff;
  border-color: #2360a3;
  font-weight: 700;
  box-shadow: 0 8px 22px -8px rgba(35, 96, 163, 0.8);
}
.lp-btn-block:hover {
  background: #3a7cc4;
  border-color: #3a7cc4;
  transform: translateY(-1px);
}

.lp-btn.is-loading {
  opacity: 0.78;
  cursor: default;
}
.lp-btn.is-loading::before {
  content: "";
  flex: none;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: lp-spin 0.6s linear infinite;
}
.lp-btn.is-loading:hover {
  transform: none;
}

@keyframes lp-spin {
  to {
    transform: rotate(360deg);
  }
}
.lp-hero {
  background: linear-gradient(180deg, #a9ccd8 0%, #c5dde4 62%, #edf4f6 100%);
  color: #26333f;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.lp-hero .lp-eyebrow {
  color: #c2632e;
}
.lp-hero .lp-hero-brand {
  font-size: clamp(3.4rem, 2rem + 5.4vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #2360a3;
  margin-block: 0.9rem 0.5rem;
}
.lp-hero .lp-hero-brand-desc {
  display: block;
  margin-top: 0.45rem;
  font-family: "Kanit", "Leelawadee UI", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(0.92rem, 1.4vw, 1.15rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}
.lp-hero .lp-hero-tagline {
  font-size: clamp(1.35rem, .95rem + 1.5vw, 2.05rem);
  font-weight: 500;
  line-height: 1.3;
  color: #26333f;
  margin-block-end: 1.1rem;
}
.lp-hero .lp-hero-tagline em {
  font-style: normal;
  font-weight: 600;
  color: #c2632e;
}

.lp-skyline {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.lp-skyline .lp-sky-far {
  fill: #cfe3ea;
}
.lp-skyline .lp-sky-white {
  fill: #edf4f6;
}
.lp-skyline .lp-sky-mid {
  fill: #9cc2d3;
}
.lp-skyline .lp-sky-near {
  fill: #2e7ca8;
}
.lp-skyline .lp-sky-deep {
  fill: #1d6491;
}
.lp-skyline .lp-sky-win {
  fill: #fff;
  opacity: 0.45;
}
.lp-skyline .lp-sky-tree {
  fill: #4e9b47;
}
.lp-skyline .lp-sky-tree2 {
  fill: #67b356;
}
.lp-skyline .lp-sky-trunk {
  fill: #3d7f3c;
}
.lp-skyline .lp-sky-plaza {
  fill: #e4eff2;
}
.lp-skyline .lp-sky-line {
  stroke: #fff;
  stroke-width: 2;
  opacity: 0.75;
}
.lp-skyline .lp-sky-person {
  fill: #26333f;
}

.lp-hero-in {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(0, 370px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-block: clamp(3.25rem, 6.5vw, 5.25rem) max(11rem, 23vw);
}
@media (max-width: 1120px) {
  .lp-hero-in {
    grid-template-columns: 1fr;
    padding-block-end: clamp(7rem, 24vw, 10rem);
  }
}

@media (min-width: 1121px) {
  .lp-hero {
    min-height: calc(100vh - 71px);
    display: flex;
  }
  .lp-hero-in {
    width: 100%;
    align-content: safe center;
    padding-block-end: 18vw;
  }
}
.lp-hero-sub {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
  color: rgba(38, 51, 63, 0.78);
  max-width: 47ch;
  line-height: 1.6;
}

ul.lp-hero-points {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  margin-block-start: 2.2rem;
}
ul.lp-hero-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: start;
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  color: rgba(38, 51, 63, 0.86);
  line-height: 1.5;
}
ul.lp-hero-points li::before {
  content: "✓";
  font-weight: 700;
  color: #c2632e;
  line-height: 1.5;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-block-start: 1.6rem;
}

.lp-hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-block-start: 1.6rem;
  text-decoration: none;
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  color: #5d7386;
  transition: color 0.18s;
}
.lp-hero-scroll i.material-icons {
  font-size: 17px;
  animation: lp-nudge 1.8s ease-in-out infinite;
}
.lp-hero-scroll:hover {
  color: #c2632e;
}
.lp-hero-scroll:hover i.material-icons {
  animation-play-state: paused;
}

@keyframes lp-nudge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}
.lp-demo {
  background: #ffffff;
  color: #26333f;
  border-radius: 14px;
  border: 1px solid #d5e4ea;
  box-shadow: 0 12px 26px -12px rgba(38, 51, 63, 0.1), 0 30px 60px -20px rgba(38, 51, 63, 0.16);
  overflow: hidden;
  position: relative;
  container-type: inline-size;
}

.lp-demo-bar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 0.95rem;
  background: #e4eff2;
  border-block-end: 1px solid #d5e4ea;
}

.lp-demo-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Kanit", "Leelawadee UI", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0;
  color: #c2632e;
  border: 1px solid rgba(230, 126, 34, 0.5);
  background: rgba(230, 126, 34, 0.12);
  border-radius: 99px;
  padding: 0.22rem 0.3rem 0.22rem 0.62rem;
}
.lp-demo-live b {
  font-weight: 500;
  color: #fff;
  background: #e67e22;
  border-radius: 99px;
  padding: 0.1rem 0.5rem;
}
.lp-demo-live:not(:has(b)) {
  padding-inline-end: 0.62rem;
}

.lp-demo-loc {
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  font-size: 0.6rem;
  color: #93a8b6;
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.lp-demo-loc.is-ok {
  color: #4e9b47;
}

.lp-qr {
  width: 13px;
  height: 13px;
  flex: none;
  background: linear-gradient(#5d7386 0 0) 0 0/5px 5px no-repeat, linear-gradient(#5d7386 0 0) 100% 0/5px 5px no-repeat, linear-gradient(#5d7386 0 0) 0 100%/5px 5px no-repeat, linear-gradient(#5d7386 0 0) 100% 100%/3px 3px no-repeat;
}

.lp-fe-head {
  display: none;
}

.lp-fe-back {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #7d7f81;
  color: #fff;
  display: grid;
  place-items: center;
  flex: none;
}
.lp-fe-back i.material-icons {
  font-size: 22px;
}

.lp-fe-title {
  font-size: 20px;
  font-weight: 600;
  color: #2360a3;
  line-height: 1.2;
}

.lp-fe-subtitle {
  font-size: 13px;
  color: #58595b;
  margin-top: 2px;
}

.lp-demo-body {
  padding: 14px;
  display: block;
}
@container (max-width: 480px) {
  .lp-demo-body {
    padding: 10px;
  }
}

.lp-fe-section {
  background: rgba(35, 96, 163, 0.025);
  border: 1px solid rgba(35, 96, 163, 0.1);
  border-radius: 8px;
  padding: 11px 13px;
  margin-bottom: 10px;
}
@container (max-width: 480px) {
  .lp-fe-section {
    padding: 9px 11px;
  }
}

.lp-fe-section-title {
  font-size: 13px;
  font-weight: 600;
  color: #2360a3;
  margin: 0 0 7px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.3;
}
.lp-fe-section-title i.material-icons {
  font-size: 17px;
  color: #2360a3;
}
.lp-fe-section-title .lp-req {
  color: #f44336;
}
.lp-fe-section-title .lp-opt {
  color: #58595b;
  font-size: 12px;
  font-weight: 400;
}

.lp-fe-sub-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #58595b;
  margin-bottom: 4px;
}
.lp-fe-sub-label .lp-req {
  color: #f44336;
}

.lp-fe-select {
  font-family: "Kanit", "Leelawadee UI", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 12.5px;
  color: #26333f;
  background: #fff;
  border: 1px solid #9d9e9f;
  border-radius: 4px;
  padding: 7px 26px 7px 9px;
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #58595b 50%), linear-gradient(135deg, #58595b 50%, transparent 50%);
  background-position: calc(100% - 17px) 55%, calc(100% - 12px) 55%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.lp-fe-select:focus {
  border-color: #2360a3;
  outline: none;
}

input.lp-fe-select {
  background-image: none;
  padding-inline-end: 9px;
  cursor: text;
}

.lp-form-line {
  flex-grow: 1;
  border-bottom: 1px solid #9d9e9f;
  transition: border-color 0.2s;
}
.lp-form-line input {
  font-family: "Kanit", "Leelawadee UI", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 12.5px;
  color: #26333f;
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  padding: 5px 2px;
}
.lp-form-line input::-moz-placeholder {
  color: #7d7f81;
}
.lp-form-line input::placeholder {
  color: #7d7f81;
}
.lp-form-line:focus-within {
  border-bottom-color: #2360a3;
  border-bottom-width: 2px;
}

.lp-input-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-input-group > i.material-icons {
  font-size: 17px;
  color: #58595b;
  flex: none;
}

.lp-fe-machine {
  font-family: "Kanit", "Leelawadee UI", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 12px;
  color: #26333f;
  background: #fff;
  border: 1px solid #9d9e9f;
  border-radius: 4px;
  padding: 7px 9px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-fe-machine span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-box-184 {
  border: solid 1px #7d7f81;
  border-radius: 4px;
  background: #fff;
  min-height: 96px;
  height: 100%;
}
.lp-box-184 textarea {
  font-family: "Kanit", "Leelawadee UI", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 12.5px;
  color: #26333f;
  background: transparent;
  border: none;
  outline: none;
  resize: none;
  width: 100%;
  height: 100%;
  padding: 7px;
  overflow-y: auto;
}
.lp-box-184 textarea::-moz-placeholder {
  color: #7d7f81;
}
.lp-box-184 textarea::placeholder {
  color: #7d7f81;
}

.lp-upload-zone {
  border: 2px dashed #a9a9a9;
  border-radius: 6px;
  padding: 9px;
  background-color: #b4b4b4;
  min-height: 96px;
  transition: border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.lp-upload-zone:hover {
  border-color: #2360a3;
}

.lp-fm-triggers {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.lp-fm-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Kanit", "Leelawadee UI", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: #fff;
  background: #2360a3;
  border: none;
  border-radius: 4px;
  padding: 5px 9px;
  cursor: pointer;
  transition: background 0.15s;
}
.lp-fm-trigger i.material-icons {
  font-size: 15px;
}
.lp-fm-trigger:hover {
  background: rgb(27.7878787879, 76.2181818182, 129.4121212121);
}
.lp-fm-trigger.is-video {
  background: #fff;
  color: #2360a3;
  border: 1px solid rgba(35, 96, 163, 0.4);
}
.lp-fm-trigger.is-video i.material-icons {
  color: #2360a3;
}
.lp-fm-trigger.is-video:hover {
  background: rgba(35, 96, 163, 0.07);
}
.is-full .lp-fm-trigger {
  opacity: 0.45;
  cursor: not-allowed;
}
.is-full .lp-fm-trigger:hover {
  background: #2360a3;
}
.is-full .lp-fm-trigger.is-video:hover {
  background: #fff;
}

.lp-fm-full {
  font-size: 10.5px;
  color: #58595b;
  align-self: center;
}

.lp-err {
  font-size: 11px;
  color: #f44336;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.lp-err::before {
  content: "!";
  font-weight: 700;
}

.is-err {
  border-color: #f44336 !important;
}
.is-err.lp-input-group .lp-form-line {
  border-bottom-color: #f44336;
}
.is-err.lp-upload-zone {
  background-color: rgba(244, 67, 54, 0.04);
}

.lp-file-x {
  position: absolute;
  inset-block-start: 2px;
  inset-inline-end: 2px;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 9px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}
.lp-file-x:hover {
  background: rgba(0, 0, 0, 0.78);
}

.lp-file-previews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(48px, 1fr));
  gap: 5px;
  width: 100%;
}

.lp-file-slot {
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid #a9a9a9;
  border-radius: 4px;
  background: #fff;
  display: grid;
  place-items: center;
  gap: 1px;
  color: #7d7f81;
  font-family: "Kanit", "Leelawadee UI", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 9.5px;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.lp-file-slot i.material-icons {
  font-size: 16px;
  color: #9d9e9f;
}
.lp-file-slot.has {
  border-color: #28a745;
  background: rgba(40, 167, 69, 0.07);
  color: #28a745;
  overflow: hidden;
  padding: 0;
}
.lp-file-slot.has img,
.lp-file-slot.has video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.lp-fe-split {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 10px;
  align-items: stretch;
}
.lp-fe-split > div {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
}
@container (max-width: 520px) {
  .lp-fe-split {
    grid-template-columns: 1fr;
  }
}

.lp-fe-row3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
@container (max-width: 520px) {
  .lp-fe-row3 {
    grid-template-columns: 1fr;
  }
}

.lp-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  line-height: 1.4;
  font-size: 12px;
  font-family: "Kanit", "Leelawadee UI", system-ui, -apple-system, "Segoe UI", sans-serif;
  border-radius: 6px;
  cursor: pointer;
  border: 1.5px solid #c8d6e5;
  background: #fff;
  color: #26333f;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.lp-chip .lp-chip-icon {
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  color: #c8d6e5;
}
.lp-chip:hover {
  border-color: #2360a3;
  background: rgba(35, 96, 163, 0.08);
}
.lp-chip[aria-pressed=true] {
  background: #2360a3;
  color: #fff;
  border-color: #2360a3;
}
.lp-chip[aria-pressed=true] .lp-chip-icon {
  color: #fff;
}
.lp-chip[aria-pressed=true]:hover {
  background: #2360a3;
}

.lp-other-in {
  margin-top: 6px;
  font-family: "Kanit", "Leelawadee UI", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 12.5px;
  color: #26333f;
  background: #fff;
  border: 1px solid #9d9e9f;
  border-radius: 4px;
  padding: 8px 10px;
  width: 100%;
}
.lp-other-in:focus {
  border-color: #2360a3;
  outline: none;
}
.lp-other-in[hidden] {
  display: none;
}

.lp-fe-actions {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 11px;
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.lp-btn-cancel,
.lp-btn-success {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: "Kanit", "Leelawadee UI", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
  transition: background 0.15s, transform 0.12s;
}
.lp-btn-cancel i.material-icons,
.lp-btn-success i.material-icons {
  font-size: 16px;
}
.lp-btn-cancel:active,
.lp-btn-success:active {
  transform: translateY(1px);
}
.lp-btn-cancel[disabled],
.lp-btn-success[disabled] {
  background: #9d9e9f;
  color: #58595b;
  cursor: not-allowed;
}
.lp-btn-cancel[disabled]:active,
.lp-btn-success[disabled]:active {
  transform: none;
}

.lp-btn-cancel {
  background: #9e9e9e;
}
.lp-btn-cancel:hover {
  background: rgb(137.6, 137.6, 137.6);
}

.lp-btn-success {
  background: #28a745;
  min-width: 150px;
}
.lp-btn-success:hover {
  background: rgb(32.115942029, 134.084057971, 55.4);
}

.lp-demo-scan {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 8px 10px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(35, 96, 163, 0.25);
  font-size: 12.5px;
}
.lp-demo-scan b {
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  font-size: 0.62rem;
  color: #2360a3;
  flex: none;
}
.lp-demo-scan.is-line {
  background: rgba(78, 155, 71, 0.1);
  border-color: rgba(78, 155, 71, 0.32);
  margin-block: 0.75rem;
}
.lp-demo-scan.is-line b {
  color: #4e9b47;
}

.lp-hint-count {
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  text-transform: none;
  letter-spacing: 0;
  color: #93a8b6;
  font-weight: 400;
  font-size: 11px;
  margin-inline-start: auto;
}

.lp-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  border-radius: 99px;
  padding: 0.05rem 0.55rem;
  color: #fff;
}
.lp-tag.is-normal {
  background: #4e9b47;
}
.lp-tag.is-urgent {
  background: #d99a2b;
}
.lp-tag.is-emergency {
  background: #c0392b;
}
.lp-tag.is-shutdown {
  background: #7d2321;
}

.lp-refs {
  padding-block: clamp(3rem, 5vw, 4.25rem);
  border-bottom: 1px solid #d5e4ea;
  background: #ffffff;
}

.lp-refs-title {
  font-size: clamp(1.85rem, 1.45rem + 1.9vw, 2.75rem);
  letter-spacing: 0;
  color: #26333f;
  text-align: center;
  margin-block-end: 2rem;
}

.lp-map-grid {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
@media (max-width: 820px) {
  .lp-map-grid {
    grid-template-columns: 1fr;
  }
}

.lp-map-canvas {
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lp-map {
  width: 100%;
  max-width: 300px;
  height: auto;
}
.lp-map .lp-map-land {
  fill: #d3e6ee;
  stroke: #2e7ca8;
  stroke-width: 1.5;
  stroke-linejoin: round;
  stroke-opacity: 0.55;
}
.lp-map .lp-map-sg line {
  stroke: #9cc2d3;
  stroke-width: 1.5;
  stroke-dasharray: 3 5;
  opacity: 0.8;
}
.lp-map .lp-dot {
  stroke: #fff;
  stroke-width: 1.2;
}
.lp-map .lp-dot.is-orange {
  fill: #e67e22;
}
.lp-map .lp-dot.is-blue {
  fill: #2e7ca8;
}
.lp-map .lp-dot.is-green {
  fill: #4e9b47;
}
.lp-map .lp-dot-in {
  opacity: 0;
}
.lp-map .lp-map-sg-label {
  font-family: "Kanit", "Leelawadee UI", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 500;
  fill: #5d7386;
}

@keyframes lp-pop {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.lp-rv.in .lp-dot-in {
  animation: lp-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.lp-map-total {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  flex-wrap: wrap;
}
.lp-map-total b {
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  font-variant-numeric: tabular-nums;
  font-size: clamp(2.2rem, 1.5rem + 2.6vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #c2632e;
}
.lp-map-total i {
  font-style: normal;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
  font-weight: 500;
  color: #26333f;
}

p.lp-map-note {
  color: #5d7386;
  margin-block-start: 0.6rem;
  max-width: 44ch;
}

.lp-map-legend {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1px;
  margin-block-start: 1.5rem;
  background: #d5e4ea;
  border: 1px solid #d5e4ea;
  border-radius: 8px;
  overflow: hidden;
}
.lp-map-legend li {
  display: grid;
  gap: 0.5rem;
  padding: 0.6rem 0.85rem;
  background: #ffffff;
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  transition: background 0.18s;
}
.lp-map-legend li:hover {
  background: #e4eff2;
}
.lp-map-legend .lp-legend-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.lp-map-legend .lp-legend-logo-inline {
  height: 22px;
  width: auto;
  max-width: 64px;
  -o-object-fit: contain;
     object-fit: contain;
  flex: none;
}
.lp-map-legend .lp-legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: none;
}
.lp-map-legend .lp-legend-dot.is-orange {
  background: #e67e22;
}
.lp-map-legend .lp-legend-dot.is-blue {
  background: #2e7ca8;
}
.lp-map-legend .lp-legend-dot.is-green {
  background: #4e9b47;
}
.lp-map-legend .lp-legend-name {
  color: #26333f;
  flex: 1;
}
.lp-map-legend .lp-legend-count {
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  font-variant-numeric: tabular-nums;
  font-size: 0.78rem;
  color: #5d7386;
  white-space: nowrap;
  flex: none;
}
.lp-map-legend .lp-legend-count b {
  color: #26333f;
  font-weight: 600;
}
.lp-map-legend .lp-legend-note {
  font-size: 0.74rem;
  line-height: 1.5;
  color: #5d7386;
  padding-inline-start: calc(9px + 0.8rem);
}
.lp-map-legend .lp-legend-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  padding-inline-start: calc(9px + 0.8rem);
}
.lp-map-legend .lp-legend-logos img {
  height: 24px;
  width: auto;
  max-width: 68px;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
  border: 1px solid #d5e4ea;
  border-radius: 4px;
  padding: 2px 4px;
  transition: transform 0.18s, border-color 0.18s;
}
.lp-map-legend .lp-legend-logos img:hover {
  transform: translateY(-2px);
  border-color: #2360a3;
}

.lp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  margin-block-start: 2.5rem;
  background: #d5e4ea;
  border: 1px solid #d5e4ea;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(38, 51, 63, 0.04), 0 2px 8px rgba(38, 51, 63, 0.04);
}

.lp-stat {
  background: #ffffff;
  padding: 1.35rem 1.4rem;
  transition: background 0.2s;
}
.lp-stat:hover {
  background: #e4eff2;
}
.lp-stat b {
  display: block;
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.85rem, 1.45rem + 1.9vw, 2.75rem);
  line-height: 1;
  letter-spacing: -0.045em;
  background: linear-gradient(160deg, #3a7cc4, #2360a3);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-stat i {
  font-style: normal;
  display: block;
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  color: #5d7386;
  margin-block-start: 0.6rem;
}

.lp-sec {
  padding-block: clamp(2rem, 4vw, 3.25rem);
  border-bottom: 1px solid #d5e4ea;
}
.lp-sec.lp-sec-alt {
  background: #ffffff;
}

.lp-sec-head {
  margin-block-end: clamp(2rem, 4vw, 3rem);
}
.lp-sec-head h2 {
  font-size: clamp(1.85rem, 1.45rem + 1.9vw, 2.75rem);
  letter-spacing: 0;
  margin-block: 1.1rem 0.9rem;
}
.lp-sec-head h2:first-child {
  margin-block-start: 0;
}
.lp-sec-head h2 em {
  font-style: normal;
  color: #c2632e;
}
.lp-sec-head p {
  color: #5d7386;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
}
.lp-sec-head .lp-head-1line {
  max-width: none;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  text-wrap: nowrap;
}
@media (max-width: 760px) {
  .lp-sec-head .lp-head-1line {
    text-wrap: balance;
    width: auto;
  }
}

#lp-gallery-sec .lp-sec-head,
#lp-feats .lp-sec-head {
  max-width: none;
}
#lp-gallery-sec .lp-sec-head p,
#lp-feats .lp-sec-head p {
  text-wrap: nowrap;
}

@media (max-width: 820px) {
  #lp-gallery-sec .lp-sec-head p {
    text-wrap: balance;
  }
}
@media (max-width: 1000px) {
  #lp-feats .lp-sec-head p {
    text-wrap: balance;
  }
}
.lp-ind {
  display: grid;
}

.lp-ind-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
  padding-block: clamp(2.75rem, 5vw, 4.25rem);
  border-block-start: 1px solid #d5e4ea;
}
.lp-ind-row:first-child {
  padding-block-start: 0;
  border-block-start: none;
}
.lp-ind-row:last-child {
  padding-block-end: 0;
}
@media (max-width: 920px) {
  .lp-ind-row {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 921px) {
  .lp-ind-row:nth-child(odd) .lp-ind-text {
    order: 2;
  }
  .lp-ind-row:nth-child(odd) .lp-ind-card {
    order: 1;
  }
}
.lp-ind-row[data-accent=facility] {
  --lp-vc: #2e7ca8;
}
.lp-ind-row[data-accent=hotel] {
  --lp-vc: #3f9c9c;
}
.lp-ind-row[data-accent=transport] {
  --lp-vc: #4e9b47;
}
.lp-ind-row[data-accent=factory] {
  --lp-vc: #6d8aa8;
}

.lp-nb {
  white-space: nowrap;
}

.lp-ind-text .lp-eyebrow {
  color: var(--lp-vc);
}
.lp-ind-text h3 {
  font-size: clamp(1.4rem, 1.2rem + 0.9vw, 1.85rem);
  letter-spacing: 0;
  line-height: 1.4;
  margin-block: 0.8rem 0.9rem;
}
@media (max-width: 560px) {
  .lp-ind-text .lp-nb {
    white-space: normal;
  }
}

.lp-ind-lede {
  color: #5d7386;
  margin-block-end: 1.6rem;
}

.lp-plist {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.lp-plist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}
.lp-plist li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--lp-vc);
  margin-block-start: 0.55rem;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0);
  outline: 3px solid transparent;
}
.lp-plist b {
  display: block;
  font-weight: 600;
}
.lp-plist span {
  color: #5d7386;
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  line-height: 1.55;
}

.lp-card {
  background: #ffffff;
  border: 1px solid #d5e4ea;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 26px -12px rgba(38, 51, 63, 0.1), 0 30px 60px -20px rgba(38, 51, 63, 0.16);
}
.lp-sec-alt .lp-card {
  background: #f2f7f9;
}
.lp-card.is-flat {
  box-shadow: none;
}

.lp-card-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-block-end: 1px solid #d5e4ea;
  background: #e4eff2;
}

.lp-card-id {
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.lp-card-tag {
  margin-inline-start: auto;
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: #93a8b6;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lp-card-body {
  padding: 1.05rem;
  display: grid;
  gap: 0.9rem;
}

.lp-card-title {
  font-weight: 700;
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
}

.lp-chip {
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 99px;
  background: color-mix(in srgb, var(--lp-sc) 16%, transparent);
  color: var(--lp-sc);
  border: 1px solid color-mix(in srgb, var(--lp-sc) 38%, transparent);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.lp-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.32rem 0.9rem;
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
}
.lp-meta dt {
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  font-size: 0.63rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #93a8b6;
  align-self: center;
  white-space: nowrap;
}
.lp-meta dd {
  margin: 0;
}

.lp-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.lp-photos figure {
  margin: 0;
  display: grid;
  gap: 0.3rem;
}
.lp-photos img {
  border-radius: 4px;
  border: 1px solid #d5e4ea;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.lp-photos figcaption {
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  color: #93a8b6;
  text-transform: uppercase;
}

.lp-rail {
  border-block-start: 1px solid #d5e4ea;
  padding: 1rem;
}

.lp-rail-track,
.lp-rail-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
}

.lp-rail-track {
  margin-block-end: 0.65rem;
}

.lp-rail-seg {
  height: 4px;
  border-radius: 99px;
  background: #e4eff2;
  overflow: hidden;
  position: relative;
}
.lp-rail-seg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--lp-sc);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp-rail-seg.is-done::after {
  transform: scaleX(1);
}

.lp-rail-steps {
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  color: #93a8b6;
}
.lp-rail-steps span.is-on {
  color: var(--lp-sc);
  font-weight: 700;
}

.lp-check {
  background: #ffffff;
  color: #26333f;
  border-radius: 14px;
  border: 1px solid #d5e4ea;
  box-shadow: 0 12px 26px -12px rgba(38, 51, 63, 0.1), 0 30px 60px -20px rgba(38, 51, 63, 0.16);
  overflow: hidden;
  position: relative;
  container-type: inline-size;
}

.lp-ck-asset {
  font-size: 12px;
  line-height: 1.75;
  color: #5d7386;
  border: 1px solid #d5e4ea;
  border-radius: 8px;
  padding: 8px 11px;
  margin-bottom: 10px;
}
.lp-ck-asset b {
  color: #26333f;
  font-weight: 600;
  margin-inline-end: 5px;
}
.lp-ck-asset b:not(:first-child) {
  margin-inline-start: 14px;
}

.lp-ck-at {
  color: #2360a3;
  margin-inline-start: 10px;
}

.lp-ck-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e67e22;
  margin-inline-end: 6px;
}

.lp-ck-scroll {
  overflow-x: auto;
}

.lp-ck-tb {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.lp-ck-tb th {
  text-align: start;
  font-size: 11px;
  font-weight: 600;
  color: #5d7386;
  background: #e4eff2;
  padding: 7px 8px;
  border-block: 1px solid #d5e4ea;
  white-space: nowrap;
}
.lp-ck-tb td {
  padding: 9px 8px;
  border-block-end: 1px solid #d5e4ea;
  vertical-align: top;
}
.lp-ck-tb tbody tr:nth-child(odd) td {
  background: rgba(35, 96, 163, 0.022);
}
.lp-ck-tb tr.is-fail td:first-child {
  box-shadow: inset 3px 0 0 #b4544a;
}
.lp-ck-tb tr.is-fail td {
  background: rgba(180, 84, 74, 0.05);
}

.lp-ck-n {
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  color: #93a8b6;
  width: 1%;
  white-space: nowrap;
}

.lp-ck-item {
  font-weight: 600;
  line-height: 1.4;
}

.lp-ck-method {
  font-size: 11px;
  color: #5d7386;
  margin-top: 3px;
  line-height: 1.45;
}

.lp-ck-eq {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  font-size: 11px;
  color: #5d7386;
  margin-top: 5px;
  padding: 4px 6px;
  border: 1px solid #d5e4ea;
  border-radius: 5px;
}
.lp-ck-eq i.material-icons {
  font-size: 13px;
  color: #93a8b6;
}
.lp-ck-eq b {
  color: #26333f;
}

.lp-ck-badge {
  display: inline-block;
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  background: rgba(35, 96, 163, 0.1);
  color: #2360a3;
}

.lp-ck-sel {
  min-width: 96px;
}

.lp-ck-numwrap {
  display: flex;
  align-items: center;
  gap: 5px;
}
.lp-ck-numwrap .lp-ck-in {
  width: 72px;
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
}

.lp-ck-unit {
  font-size: 11px;
  color: #5d7386;
}

.lp-ck-std {
  font-size: 10.5px;
  color: #93a8b6;
  margin-top: 4px;
}

.lp-ck-file {
  white-space: nowrap;
}
.lp-ck-file .lp-req {
  color: #f44336;
  margin-inline-start: 3px;
}

.lp-ck-cam {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "Kanit", "Leelawadee UI", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(35, 96, 163, 0.35);
  background: #fff;
  color: #2360a3;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.lp-ck-cam i.material-icons {
  font-size: 14px;
}
.lp-ck-cam:hover {
  background: rgba(35, 96, 163, 0.07);
}
.lp-ck-cam.has {
  background: rgba(40, 167, 69, 0.1);
  border-color: rgba(40, 167, 69, 0.45);
  color: #28a745;
}

.lp-ck-thumb {
  display: block;
  width: 62px;
  height: 44px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #d5e4ea;
  border-radius: 4px;
  margin-top: 5px;
}

.lp-ck-notes {
  margin-top: 10px;
}

.lp-ck-spares {
  font-size: 11.5px;
  color: #5d7386;
  padding: 7px 9px;
  border: 1px solid #d5e4ea;
  border-radius: 4px;
}
.lp-ck-spares b {
  color: #26333f;
}

.lp-ck-lock {
  font-size: 11px;
  color: #93a8b6;
  text-align: center;
  margin-top: 6px;
}

.lp-crew {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #d5e4ea;
  border: 1px solid #d5e4ea;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}
@container (max-width: 420px) {
  .lp-crew {
    grid-template-columns: 1fr;
  }
}
.lp-crew > div {
  background: #ffffff;
  padding: 7px 9px;
}

.lp-crew-k {
  display: block;
  font-size: 10.5px;
  color: #93a8b6;
  margin-bottom: 2px;
}

.lp-crew-n {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
}
.lp-crew-n.is-warn {
  color: #c2632e;
}

.lp-ck-sign {
  text-align: center;
  margin-top: 12px;
  padding-top: 10px;
}

.lp-ck-sign-k {
  font-size: 11.5px;
  color: #5d7386;
}

.lp-ck-ink {
  display: block;
  height: 46px;
  width: auto;
  max-width: 100%;
  margin: 2px auto 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.lp-ck-sign-n {
  font-size: 11.5px;
  font-weight: 600;
  border-top: 1px solid #d5e4ea;
  display: inline-block;
  padding: 4px 34px 0;
}

.lp-ck-sign-d {
  font-size: 10.5px;
  color: #93a8b6;
}

dialog.lp-sign-dlg {
  border: none;
  border-radius: 14px;
  padding: clamp(1.3rem, 3vw, 1.8rem);
  background: #ffffff;
  color: #26333f;
  width: min(92vw, 430px);
  max-width: none;
  box-shadow: 0 40px 90px -25px rgba(0, 0, 0, 0.55);
}
dialog.lp-sign-dlg::backdrop {
  background: rgba(38, 51, 63, 0.62);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
dialog.lp-sign-dlg .lp-fe-actions {
  margin-top: 0.9rem;
}

.lp-sign-h {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
  letter-spacing: 0;
  padding-inline-end: 1.5rem;
}

.lp-sign-sub {
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  color: #5d7386;
  margin-block: 0.4rem 1rem;
}

.lp-sign-pad {
  display: block;
  width: 100%;
  height: 170px;
  border: 2px dashed #9d9e9f;
  border-radius: 8px;
  background: #fff;
  cursor: crosshair;
  touch-action: none;
  transition: border-color 0.2s;
}
.lp-sign-pad.has-ink {
  border-style: solid;
  border-color: rgba(35, 96, 163, 0.45);
}

.lp-sign-name {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 11.5px;
  color: #5d7386;
  border-top: 1px solid #d5e4ea;
  margin-top: 0.55rem;
  padding-top: 0.45rem;
}
.lp-sign-name .lp-num {
  color: #93a8b6;
  font-size: 10.5px;
}

.lp-spawn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.62rem 0.8rem;
  border-radius: 8px;
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  background: rgba(180, 84, 74, 0.09);
  border: 1px solid rgba(180, 84, 74, 0.28);
}
.lp-spawn::before {
  content: "↳";
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  color: #b4544a;
  font-weight: 700;
  flex: none;
}
.lp-spawn b {
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  font-size: 0.66rem;
  color: #b4544a;
}
.lp-spawn.is-accent {
  background: color-mix(in srgb, var(--lp-vc) 10%, transparent);
  border-color: color-mix(in srgb, var(--lp-vc) 32%, transparent);
}
.lp-spawn.is-accent::before {
  color: var(--lp-vc);
}

.lp-kpi-wrap {
  background: #ffffff;
  border: 1px solid #d5e4ea;
  border-radius: 14px;
  box-shadow: 0 12px 26px -12px rgba(38, 51, 63, 0.1), 0 30px 60px -20px rgba(38, 51, 63, 0.16);
  padding: 14px;
  container-type: inline-size;
}

.lp-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@container (max-width: 380px) {
  .lp-kpi-grid {
    grid-template-columns: 1fr;
  }
}

.lp-kpi-card {
  background: #f5f6fa;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 10px 11px;
}

.lp-kpi-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lp-kpi-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.15;
  padding: 3px;
}
.lp-kpi-icon.is-blue {
  background: #2d8cff;
}
.lp-kpi-icon.is-green {
  background: #27ae60;
}
.lp-kpi-icon.is-orange {
  background: #f39c12;
}
.lp-kpi-icon.is-purple {
  background: #8e44ad;
}

.lp-kpi-val {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}
.lp-kpi-val small {
  font-size: 11px;
  font-weight: 400;
  color: #5d7386;
}

.lp-kpi-target {
  font-size: 10.5px;
  color: #777;
  margin-top: 3px;
}

.lp-kpi-change {
  font-size: 10.5px;
  margin-top: 7px;
}
.lp-kpi-change.is-up {
  color: #27ae60;
}
.lp-kpi-change.is-down {
  color: #e74c3c;
}

.lp-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}
@container (max-width: 380px) {
  .lp-mini-grid {
    grid-template-columns: 1fr;
  }
}

.lp-mini {
  border: 1px solid #d5e4ea;
  border-radius: 8px;
  padding: 8px 9px 4px;
}

.lp-mini-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem;
  font-size: 10.5px;
  color: #5d7386;
  margin-bottom: 4px;
}
.lp-mini-head b {
  font-size: 14px;
  font-weight: 700;
}
.lp-mini-head b.is-blue {
  color: #2d8cff;
}
.lp-mini-head b.is-green {
  color: #27ae60;
}
.lp-mini-head b.is-orange {
  color: #e67e22;
}
.lp-mini-head b.is-red {
  color: #e74c3c;
}

.lp-spark {
  display: block;
  width: 100%;
  height: 54px;
}
.lp-spark .lp-spark-line {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.lp-spark .lp-spark-area {
  stroke: none;
}
.lp-spark .lp-spark-dot {
  stroke: #fff;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}
.lp-spark.is-blue .lp-spark-line,
.lp-spark.is-blue .lp-spark-dot {
  stroke: #2d8cff;
}
.lp-spark.is-blue .lp-spark-dot {
  fill: #2d8cff;
}
.lp-spark.is-blue .lp-spark-area {
  fill: rgba(45, 140, 255, 0.1);
}
.lp-spark.is-green .lp-spark-line,
.lp-spark.is-green .lp-spark-dot {
  stroke: #27ae60;
}
.lp-spark.is-green .lp-spark-dot {
  fill: #27ae60;
}
.lp-spark.is-green .lp-spark-area {
  fill: rgba(39, 174, 96, 0.1);
}
.lp-spark.is-orange .lp-spark-line,
.lp-spark.is-orange .lp-spark-dot {
  stroke: #e67e22;
}
.lp-spark.is-orange .lp-spark-dot {
  fill: #e67e22;
}
.lp-spark.is-orange .lp-spark-area {
  fill: rgba(230, 126, 34, 0.1);
}
.lp-spark.is-red .lp-spark-bar {
  fill: #e74c3c;
}

.lp-pm-shell {
  border: 1px solid #d5e4ea;
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 12px 26px -12px rgba(38, 51, 63, 0.1), 0 30px 60px -20px rgba(38, 51, 63, 0.16);
}

.lp-pm-bar {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  padding: 0.8rem 1rem;
  background: #e4eff2;
  border-block-end: 1px solid #d5e4ea;
}
.lp-pm-bar .lp-demo-live {
  margin-inline-start: auto;
}

.lp-pm-hint {
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  color: #5d7386;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lp-pm-hint kbd {
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  font-size: 0.6rem;
  border: 1px solid #d5e4ea;
  border-radius: 4px;
  padding: 0.12rem 0.4rem;
  background: #ffffff;
  color: #93a8b6;
  box-shadow: 0 1px 0 #d5e4ea;
}

.lp-pm-scroll {
  overflow-x: auto;
}

table.lp-pm {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
}
table.lp-pm th,
table.lp-pm td {
  border-block-end: 1px solid #d5e4ea;
  border-inline-end: 1px solid #d5e4ea;
  padding: 0.42rem 0.5rem;
  text-align: center;
  white-space: nowrap;
}
table.lp-pm thead th {
  background: #1d6491;
  color: #fff;
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 2;
}
table.lp-pm th.lp-pm-name {
  position: sticky;
  left: 0;
  z-index: 3;
  text-align: left;
  min-width: 214px;
  background: #1d6491;
}
table.lp-pm td.lp-pm-name {
  position: sticky;
  left: 0;
  z-index: 1;
  text-align: left;
  background: #ffffff;
  font-weight: 400;
}
table.lp-pm th.lp-pm-year {
  background: #2360a3;
}
table.lp-pm td.lp-pm-year {
  background: rgb(239.6, 243.87, 248.56);
}

.lp-pm-mo {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background 0.15s;
}
.lp-pm-mo:hover {
  background: rgb(38.35, 113.2, 157.65);
}
.lp-pm-mo .lp-caret {
  display: inline-block;
  font-size: 0.55rem;
  opacity: 0.65;
  transition: transform 0.22s;
}
.lp-pm-mo.is-open .lp-caret {
  transform: rotate(90deg);
  opacity: 1;
}

th.lp-pm-wk {
  background: rgb(33.76, 106.72, 151.44);
  font-size: 0.55rem;
  min-width: 40px;
}
th.lp-pm-wk .lp-wr {
  display: block;
  font-size: 0.5rem;
  opacity: 0.6;
  font-weight: 400;
}

tr.lp-pm-sys {
  cursor: pointer;
}
tr.lp-pm-sys td {
  background: rgb(241.8, 245.46, 249.48);
  font-weight: 600;
}
tr.lp-pm-sys:hover td {
  background: rgb(228.6, 235.92, 243.96);
}
tr.lp-pm-sys .lp-toggle {
  display: inline-block;
  font-size: 0.6rem;
  color: #93a8b6;
  width: 0.9rem;
  transition: transform 0.22s;
}
tr.lp-pm-sys.is-collapsed .lp-toggle {
  transform: rotate(-90deg);
}
tr.lp-pm-sys small {
  color: #93a8b6;
  font-weight: 400;
}

tr.lp-pm-mc td.lp-pm-name {
  padding-inline-start: 1.7rem;
  color: #5d7386;
}
tr.lp-pm-mc:hover td {
  background: rgb(246.2, 248.64, 251.32);
}

.lp-badge {
  display: inline-block;
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  font-size: 0.66rem;
  font-weight: 700;
  color: #fff;
  background: #e67e22;
  border-radius: 4px;
  padding: 0.06rem 0.34rem;
  min-width: 1.2rem;
}
.lp-badge.is-year {
  background: #2980b9;
}

.lp-pct {
  font-size: 0.58rem;
  font-weight: 700;
  margin-block-start: 1px;
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
}
.lp-pct.is-good {
  color: #27ae60;
}
.lp-pct.is-fair {
  color: #e67e22;
}
.lp-pct.is-poor {
  color: #c0392b;
}

.lp-pm-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  padding: 0.8rem 1rem;
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  color: #5d7386;
  border-block-start: 1px solid #d5e4ea;
  background: #e4eff2;
}
.lp-pm-legend span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lp-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex: none;
}
.lp-dot.is-plan {
  background: #e67e22;
}
.lp-dot.is-year {
  background: #2980b9;
}
.lp-dot.is-good {
  background: #27ae60;
}
.lp-dot.is-fair {
  background: #e67e22;
}
.lp-dot.is-poor {
  background: #c0392b;
}

.lp-tour {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.lp-tour figure {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}
.lp-tour figcaption {
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  color: #5d7386;
  display: flex;
  gap: 0.65rem;
  align-items: baseline;
}
.lp-tour figcaption b {
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  font-size: 0.64rem;
  color: #2360a3;
  flex: none;
}

.lp-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d5e4ea;
  background: #ffffff;
  box-shadow: 0 4px 12px -2px rgba(38, 51, 63, 0.06), 0 14px 34px -12px rgba(38, 51, 63, 0.1);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s;
}
.lp-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 26px -12px rgba(38, 51, 63, 0.1), 0 30px 60px -20px rgba(38, 51, 63, 0.16);
}
.lp-frame img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.lp-frame-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.75rem;
  background: #e4eff2;
  border-block-end: 1px solid #d5e4ea;
}
.lp-frame-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d5e4ea;
  flex: none;
}
.lp-frame-bar span {
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  color: #93a8b6;
  margin-inline-start: 0.5rem;
}

.lp-feats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 1px;
  background: #d5e4ea;
  border: 1px solid #d5e4ea;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(38, 51, 63, 0.04), 0 2px 8px rgba(38, 51, 63, 0.04);
}

.lp-feat {
  background: #ffffff;
  padding: clamp(1.35rem, 2.4vw, 1.85rem);
  display: grid;
  gap: 0.55rem;
  align-content: start;
  transition: background 0.22s;
}
.lp-sec-alt .lp-feat {
  background: #f2f7f9;
}
.lp-feat:hover {
  background: #e4eff2;
}
.lp-feat h3 {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
  letter-spacing: 0;
}
.lp-feat p {
  color: #5d7386;
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  line-height: 1.6;
}

.lp-feat-k {
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.13em;
  color: #93a8b6;
}

.lp-contact {
  background: linear-gradient(180deg, #edf4f6 0%, #c5dde4 55%, #a9ccd8 100%);
  color: #26333f;
  border-bottom: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.lp-contact h2 {
  font-size: clamp(1.85rem, 1.45rem + 1.9vw, 2.75rem);
  letter-spacing: 0;
  margin-block: 1.1rem;
}
.lp-contact .lp-eyebrow {
  color: #c2632e;
}

.lp-contact-in {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: start;
}
@media (max-width: 880px) {
  .lp-contact-in {
    grid-template-columns: 1fr;
  }
}

.lp-contact-lede {
  color: rgba(38, 51, 63, 0.74);
  max-width: 40ch;
}

.lp-channels {
  display: grid;
  gap: 0.1rem;
  margin-block-start: 2rem;
}
.lp-channels a {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding: 0.75rem 0;
  border-block-end: 1px solid rgba(38, 51, 63, 0.12);
  text-decoration: none;
  color: #26333f;
  transition: padding-inline-start 0.2s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s;
}
.lp-channels a:hover {
  padding-inline-start: 0.6rem;
  background: rgba(255, 255, 255, 0.5);
}
.lp-channels em {
  font-family: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, "Courier New", monospace;
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(38, 51, 63, 0.45);
  width: 4.5rem;
  flex: none;
}
.lp-channels b {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.lp-channels .lp-ch-name {
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  color: rgba(38, 51, 63, 0.5);
  margin-inline-start: -0.4rem;
}

.lp-contact-by {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-block-start: 2rem;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.18s;
}
.lp-contact-by:hover {
  opacity: 0.7;
}
.lp-contact-by > span {
  font-size: 0.66rem;
  color: rgba(38, 51, 63, 0.45);
}
.lp-contact-by .lp-aim {
  height: 28px;
  width: 67px;
}

.lp-form-card {
  background: #ffffff;
  color: #26333f;
  border-radius: 14px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: 0 12px 26px -12px rgba(38, 51, 63, 0.1), 0 30px 60px -20px rgba(38, 51, 63, 0.16);
  border: 1px solid #d5e4ea;
}
.lp-form-card h3 {
  font-size: clamp(1.4rem, 1.2rem + 0.9vw, 1.85rem);
  letter-spacing: 0;
}
.lp-form-card > p {
  color: #5d7386;
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  margin-block-start: 0.5rem;
}

.lp-contact-done {
  text-align: center;
  padding-block: clamp(1.5rem, 4vw, 3rem);
}
.lp-contact-done .lp-contact-done-i {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #4e9b47;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
}
.lp-contact-done h3 {
  font-size: clamp(1.4rem, 1.2rem + 0.9vw, 1.85rem);
  letter-spacing: 0;
}
.lp-contact-done p {
  color: #5d7386;
  margin-block-start: 0.5rem;
}

.lp-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-block-start: 1.6rem;
}
@media (max-width: 520px) {
  .lp-grid2 {
    grid-template-columns: 1fr;
  }
}

.lp-field {
  display: grid;
  gap: 0.35rem;
}
.lp-field.is-full {
  grid-column: 1/-1;
}
.lp-field label {
  font-family: "Kanit", "Leelawadee UI", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #5d7386;
}
.lp-field label s {
  color: #b4544a;
  text-decoration: none;
}
.lp-field input,
.lp-field textarea,
.lp-field select {
  font-family: "Kanit", "Leelawadee UI", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  color: #26333f;
  background: #f2f7f9;
  border: 1px solid #d5e4ea;
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  width: 100%;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}
.lp-field input:focus,
.lp-field textarea:focus,
.lp-field select:focus {
  border-color: #2360a3;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(35, 96, 163, 0.16);
}
.lp-field textarea {
  resize: vertical;
  min-height: 4.5rem;
}

.lp-hero-login {
  background: #ffffff;
  border: 1px solid #d5e4ea;
  border-radius: 14px;
  padding: clamp(1.2rem, 2.2vw, 1.6rem);
  box-shadow: 0 12px 26px -12px rgba(38, 51, 63, 0.1), 0 30px 60px -20px rgba(38, 51, 63, 0.16);
  margin-block-start: 2.3rem;
}
@media (max-width: 1120px) {
  .lp-hero-login {
    margin-block-start: 0;
  }
}

.lp-hero-login-h {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
  letter-spacing: 0;
  color: #26333f;
}

.lp-hero-login-sub {
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  color: #5d7386;
  margin-block: 0.25rem 1rem;
}

.lp-hero-login-form {
  display: grid;
  gap: 0.75rem;
}
.lp-hero-login-form .lp-field:first-child {
  margin-block-start: 0.5rem;
}
.lp-hero-login-form .lp-btn-block {
  margin-block-start: 0.5rem;
}

.lp-pass {
  position: relative;
}
.lp-pass input {
  padding-right: 2.5rem;
}

.lp-pass-eye {
  position: absolute;
  top: 50%;
  right: 0.25rem;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: none;
  color: #5d7386;
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.lp-pass-eye:hover {
  color: #26333f;
  background: rgba(93, 115, 134, 0.1);
}
.lp-pass-eye:focus-visible {
  outline: 2px solid #2360a3;
  outline-offset: 1px;
}
.lp-pass-eye .material-icons {
  font-size: 1.2rem;
}

.lp-login-err {
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  line-height: 1.5;
  color: #f44336;
  background: rgba(244, 67, 54, 0.07);
  border: 1px solid rgba(244, 67, 54, 0.35);
  border-radius: 4px;
  padding: 0.55rem 0.7rem;
}
.lp-login-err[hidden] {
  display: none;
}

.lp-login-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.lp-login-row a {
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  color: #2360a3;
  text-decoration: none;
}
.lp-login-row a:hover {
  text-decoration: underline;
}

.lp-auth {
  background: linear-gradient(180deg, #a9ccd8 0%, #c5dde4 62%, #edf4f6 100%);
  min-height: calc(100vh - 70px);
  display: grid;
  place-items: center;
  padding: clamp(2rem, 6vh, 4rem) clamp(1.25rem, 4vw, 3.5rem);
}

.lp-auth-card {
  width: min(430px, 100%);
  background: #ffffff;
  border: 1px solid #d5e4ea;
  border-radius: 14px;
  padding: clamp(1.4rem, 2.6vw, 1.9rem);
  box-shadow: 0 12px 26px -12px rgba(38, 51, 63, 0.1), 0 30px 60px -20px rgba(38, 51, 63, 0.16);
}

.lp-auth-done {
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  text-align: center;
  padding-block: 0.5rem;
}
.lp-auth-done[hidden] {
  display: none;
}
.lp-auth-done svg {
  width: 52px;
  height: 52px;
  color: #4e9b47;
  background: rgba(78, 155, 71, 0.12);
  border-radius: 50%;
  padding: 13px;
  margin-block-end: 0.35rem;
}
.lp-auth-done b {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
  line-height: 1.3;
}
.lp-auth-done p {
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  color: #5d7386;
  line-height: 1.6;
}
.lp-auth-done p b {
  font-size: inherit;
  color: #26333f;
  overflow-wrap: anywhere;
}
.lp-auth-done .lp-btn-block {
  margin-block-start: 0.9rem;
}

.lp-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-block-start: 0.75rem;
}
@container (max-width: 420px) {
  .lp-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lp-gallery-wide {
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-block-start: 0;
}
@media (max-width: 900px) {
  .lp-gallery-wide {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .lp-gallery-wide {
    grid-template-columns: repeat(2, 1fr);
  }
}
.lp-gallery-wide .lp-gallery-cell {
  width: 100%;
}
.lp-gallery-wide .lp-gallery-cell img {
  -o-object-position: center;
     object-position: center;
}

.lp-gallery-portrait {
  grid-template-columns: repeat(3, 1fr);
  max-width: 460px;
  gap: 10px;
}
.lp-gallery-portrait .lp-gallery-cell {
  aspect-ratio: 3/4;
}
.lp-gallery-portrait .lp-gallery-cell img {
  -o-object-position: top;
     object-position: top;
}
@media (max-width: 600px) {
  .lp-gallery-portrait {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lp-gallery-cell {
  position: relative;
  aspect-ratio: 16/10;
  border: 1px solid #d5e4ea;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.2s, box-shadow 0.2s;
}
.lp-gallery-cell img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.lp-gallery-cell:hover {
  border-color: #2360a3;
  box-shadow: 0 4px 12px -2px rgba(38, 51, 63, 0.06), 0 14px 34px -12px rgba(38, 51, 63, 0.1);
  transform: translateY(-2px);
}
.lp-gallery-cell:hover img {
  transform: scale(1.05);
}
.lp-gallery-cell:hover .lp-gallery-play {
  transform: translate(-50%, -50%) scale(1.1);
}

.lp-gallery-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 34px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
  pointer-events: none;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

dialog.lp-lightbox {
  border: none;
  border-radius: 14px;
  padding: 0;
  background: #26333f;
  color: #fff;
  width: min(94vw, 1100px);
  max-width: none;
  max-height: 92vh;
  overflow: visible;
  box-shadow: 0 40px 90px -25px rgba(0, 0, 0, 0.8);
}
dialog.lp-lightbox::backdrop {
  background: rgba(38, 51, 63, 0.82);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
dialog.lp-lightbox .lp-x {
  inset-block-start: -2.4rem;
  inset-inline-end: 0;
  color: rgba(255, 255, 255, 0.8);
}
dialog.lp-lightbox .lp-x:hover {
  color: #fff;
}

.lp-lightbox-body {
  display: grid;
  place-items: center;
  background: #000;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}
.lp-lightbox-body img,
.lp-lightbox-body video {
  display: block;
  width: 100%;
  max-height: 78vh;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.lp-lightbox-cap {
  padding: 0.8rem 1.1rem;
  font-size: clamp(0.78rem, 0.75rem + 0.15vw, 0.86rem);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.lp-x {
  position: absolute;
  inset-block-start: 0.6rem;
  inset-inline-end: 0.6rem;
  border: none;
  background: none;
  color: #93a8b6;
  cursor: pointer;
  font-size: 1.05rem;
  line-height: 1;
  padding: 0.35rem;
  z-index: 2;
}
.lp-x:hover {
  color: #26333f;
}

.lp-lb-nav {
  position: absolute;
  inset-block-start: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  transition: background 0.15s ease;
}
.lp-lb-nav:hover {
  background: rgba(0, 0, 0, 0.74);
}
.lp-lb-nav[hidden] {
  display: none;
}

.lp-lb-prev {
  inset-inline-start: 0.8rem;
}

.lp-lb-next {
  inset-inline-end: 0.8rem;
}

@media (max-width: 640px) {
  .lp-lb-nav {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1rem;
  }
}
@keyframes lp-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.lp-rise {
  animation: lp-rise 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .lp-page *,
  .lp-page *::before,
  .lp-page *::after {
    animation: none !important;
    transition: none !important;
  }
  .lp-page .lp-rv {
    opacity: 1;
    transform: none;
  }
}
