@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --lp-bg: #070b14;
  --lp-bg-2: #0e1524;
  --lp-bg-3: #151d30;
  --lp-ink: #eef2ff;
  --lp-muted: #9aa3b8;
  --lp-faint: #6b7388;
  --lp-line: rgba(139, 156, 255, 0.16);
  --lp-accent: #8b9cff;
  --lp-lime: #d4f34a;
  --lp-lime-ink: #10140a;
  --lp-glass: rgba(7, 11, 20, 0.72);
  --lp-radius: 22px;
  --lp-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --lp-font: Manrope, "Segoe UI", system-ui, sans-serif;
  --lp-display: Sora, Manrope, system-ui, sans-serif;
}

.lp-body, .st-body, .st-login {
  margin: 0;
  color: var(--lp-ink);
  background:
    radial-gradient(1100px 520px at 8% -10%, rgba(139, 156, 255, 0.16), transparent 54%),
    radial-gradient(900px 480px at 100% 0%, rgba(212, 243, 74, 0.06), transparent 46%),
    var(--lp-bg);
  font-family: var(--lp-font);
  letter-spacing: 0.01em;
}
.lp-body, .st-body, .st-login,
.lp-body *, .st-body *, .st-login * { box-sizing: border-box; }
.st-body.is-nav { overflow: hidden; }

a { color: var(--lp-accent); }
img { max-width: 100%; height: auto; display: block; }
[hide="any"], [hide="hide"], [hide="true"], [hide="1"] { display: none !important; }

.lp-ribbon, .st-lock {
  background: linear-gradient(90deg, #312e81, #8b9cff 52%, #d4f34a);
  color: #10140a;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.st-lock { background: linear-gradient(90deg, #1e1b4b, #8b9cff 60%, #d4f34a); }

.lp-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--lp-lime);
  color: var(--lp-lime-ink);
  padding: 0.5rem 1rem;
  z-index: 80;
  font-weight: 800;
}
.lp-skip:focus { left: 1rem; top: 1rem; }

.lp-top {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1.4rem;
  border-bottom: 1px solid var(--lp-line);
  background: var(--lp-glass);
  backdrop-filter: blur(18px);
}

.lp-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--lp-ink);
  min-width: 0;
}
.lp-logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--lp-line);
}
.lp-logo-type {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-family: var(--lp-display);
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 0.92rem;
}
.lp-logo-type span {
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  color: var(--lp-lime);
  font-weight: 700;
}

.lp-example-tag {
  display: inline-block;
  margin-left: 0.15rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-lime-ink);
  background: var(--lp-lime);
  padding: 0.14rem 0.42rem;
  border-radius: 999px;
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex: 1;
  justify-content: center;
}
.lp-nav a, .lp-drop-link {
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}
.lp-nav > a.is-active, .lp-nav > a:hover,
.lp-drop.is-active > .lp-drop-link, .lp-drop-link:hover {
  color: var(--lp-ink);
  background: rgba(139, 156, 255, 0.1);
}

.lp-drop { position: relative; display: flex; align-items: center; }
.lp-drop-caret {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--lp-muted);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  padding: 0;
}
.lp-drop-caret::before { content: "▾"; font-size: 0.7rem; }
.lp-drop-panel {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  min-width: 280px;
  max-width: 22rem;
  padding: 0.55rem;
  border-radius: 18px;
  background: #10182a;
  border: 1px solid var(--lp-line);
  box-shadow: var(--lp-shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 30;
}
.lp-drop:hover .lp-drop-panel,
.lp-drop:focus-within .lp-drop-panel,
.lp-drop.is-open .lp-drop-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.lp-drop-panel a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  color: var(--lp-ink);
}
.lp-drop-panel a:hover { background: rgba(139, 156, 255, 0.12); color: var(--lp-ink); }
.lp-drop-panel strong { display: block; font-size: 0.92rem; }
.lp-drop-panel span { display: block; color: var(--lp-faint); font-size: 0.75rem; font-weight: 500; margin-top: 0.15rem; }

.lp-desk-link, .lp-btn, .lp-btn-sm {
  background: var(--lp-lime);
  color: var(--lp-lime-ink);
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 1.05rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(212, 243, 74, 0.18);
}
.lp-btn-sm { padding: 0.28rem 0.62rem; font-size: 0.78rem; margin-right: 0.2rem; }
.lp-btn-ghost, .lp-ghost {
  background: transparent;
  color: var(--lp-ink);
  border: 1px solid var(--lp-line);
  box-shadow: none;
}

.lp-burger, .lp-nav-close {
  display: none;
  appearance: none;
  border: 1px solid var(--lp-line);
  background: transparent;
  color: var(--lp-ink);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}
.lp-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 12, 0.55);
  z-index: 35;
}

.lp-main { max-width: 1180px; margin: 0 auto; padding: 0 1.3rem 4rem; }

.lp-hero {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: min(72vh, 640px);
  margin: 1.3rem 0 2rem;
  display: grid;
  align-items: end;
  padding: 2.4rem;
  background:
    linear-gradient(180deg, rgba(7, 11, 20, 0.12), rgba(7, 11, 20, 0.82)),
    url("/assets/modules/Studio/img/lumen-hero.jpg") center / cover no-repeat;
  box-shadow: var(--lp-shadow);
  border: 1px solid var(--lp-line);
}
.lp-hero h1, .lp-pagehead h1, .lp-story h1 {
  font-family: var(--lp-display);
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0.25rem 0 0.8rem;
  max-width: 16ch;
}
.lp-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--lp-lime);
  margin: 0;
}
.lp-lead { font-size: 1.12rem; color: var(--lp-muted); max-width: 38rem; line-height: 1.55; }
.lp-hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.3rem; }

.lp-hero-sm, .lp-pagehead {
  min-height: 280px;
  margin: 1.3rem 0 1.6rem;
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid var(--lp-line);
  background:
    linear-gradient(180deg, rgba(7, 11, 20, 0.2), rgba(7, 11, 20, 0.78)),
    var(--lp-page-image, url("/assets/modules/Studio/img/about-studio.jpg")) center / cover no-repeat;
}
.lp-pagehead h1 { font-size: clamp(2rem, 4vw, 3.4rem); max-width: 18ch; }

.lp-marquee {
  overflow: hidden;
  border: 1px solid var(--lp-line);
  border-radius: 999px;
  margin: 0 0 2.2rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.lp-marquee-track {
  display: flex;
  gap: 2.4rem;
  padding: 0.85rem 0;
  width: max-content;
  animation: lp-slide 28s linear infinite;
  color: var(--lp-faint);
  font-family: var(--lp-display);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
@keyframes lp-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.lp-section-h {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin: 0.4rem 0 1.1rem;
}
.lp-section-h h2 {
  font-family: var(--lp-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: -0.03em;
  margin: 0.2rem 0 0;
}
.lp-section-h p, .lp-muted { color: var(--lp-muted); }
.lp-more { font-weight: 800; color: var(--lp-lime); text-decoration: none; }

.lp-services, .lp-grid, .lp-team {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.lp-services { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.lp-services article:first-child { grid-column: span 3; }
.lp-services article:nth-child(2) { grid-column: span 3; }
.lp-services article { grid-column: span 2; }

.lp-card, .lp-feature, .lp-story, .lp-related, .lp-note, .st-panel, .st-login-card {
  background: var(--lp-bg-2);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  overflow: hidden;
}
fo-rm, form {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.lp-story fo-rm, .lp-story form,
.st-login-card fo-rm, .st-login-card form,
.st-panel fo-rm, .st-panel form,
#settingsWrap fo-rm, #settingsWrap form,
#pageWrap fo-rm, #pageWrap form,
#articleWrap fo-rm, #articleWrap form,
#contactWrap fo-rm, #contactWrap form,
#loginWrap fo-rm, #loginWrap form {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  padding: 0;
  margin: 0;
  box-shadow: none;
}
.lp-card, .lp-feature, .lp-story, .lp-related, .lp-note, .st-panel, .st-login-card {
  text-decoration: none;
  color: inherit;
}
.lp-card a, .lp-feature h2 a, .lp-story a { color: var(--lp-ink); text-decoration: none; }
.lp-card a:hover, .lp-feature h2 a:hover { color: var(--lp-lime); }

.lp-card-media, .lp-feature-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a1020;
}
.lp-card-media img, .lp-feature-media img, .lp-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}
.lp-card:hover .lp-card-media img, .lp-feature:hover img { transform: scale(1.06); }
.lp-card-body, .lp-feature-body, .lp-story-body, .lp-note, .lp-related, .st-panel {
  padding: 1.15rem 1.2rem 1.25rem;
}
.lp-feature { display: grid; grid-template-columns: 1.15fr 0.85fr; margin: 0 0 1.2rem; }
.lp-feature-body { display: flex; flex-direction: column; justify-content: center; }
.lp-feature h2 { font-family: var(--lp-display); font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.03em; margin: 0.3rem 0 0.7rem; }
.lp-card h2 { font-family: var(--lp-display); font-size: 1.25rem; letter-spacing: -0.02em; margin: 0.25rem 0 0.45rem; }
.lp-meta { color: var(--lp-faint); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.lp-meta a { color: var(--lp-accent); }

.lp-team { grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0 0 2rem; }
.lp-person { background: var(--lp-bg-2); border: 1px solid var(--lp-line); border-radius: var(--lp-radius); overflow: hidden; }
.lp-person img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.lp-person div { padding: 0.9rem 1rem 1.1rem; }
.lp-person strong { display: block; font-family: var(--lp-display); }
.lp-person span { color: var(--lp-muted); font-size: 0.85rem; }

.lp-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 1.8rem;
  border-radius: 28px;
  border: 1px solid var(--lp-line);
  background:
    linear-gradient(120deg, rgba(139, 156, 255, 0.16), rgba(212, 243, 74, 0.08)),
    var(--lp-bg-2);
  margin: 1.5rem 0 0;
}
.lp-cta h2 { font-family: var(--lp-display); margin: 0 0 0.35rem; font-size: 1.8rem; }

.lp-story { margin: 1.3rem 0; }
.lp-story-media { aspect-ratio: 16 / 7; }
.lp-bodytext { padding: 0 1.3rem 1.5rem; }
.lp-bodytext p, .lp-story .lp-lead { font-size: 1.08rem; line-height: 1.75; color: #d5dbea; }
.lp-story > .lp-kicker, .lp-story > .lp-meta, .lp-story > h1, .lp-story > .lp-lead { padding: 0 1.3rem; }
.lp-story > .lp-kicker { padding-top: 1.3rem; }
.lp-related { margin: 1rem 0; }
.lp-related h2 { font-family: var(--lp-display); padding: 1.1rem 1.2rem 0; margin: 0; }
.lp-related ul { list-style: none; padding: 0.4rem 0 0.8rem; margin: 0; }
.lp-related li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.75rem 1.2rem; border-top: 1px solid var(--lp-line); }
.lp-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 1rem; align-items: start; }
.lp-split-photo {
  min-height: 420px;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-line);
  background: url("/assets/modules/Studio/img/contact-room.jpg") center / cover no-repeat;
}

.lp-foot {
  border-top: 1px solid var(--lp-line);
  background: #05070f;
  padding: 2.4rem 1.3rem 2.8rem;
  color: var(--lp-muted);
  font-size: 0.92rem;
}
.lp-foot-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
}
.lp-foot a { color: var(--lp-ink); text-decoration: none; }
.lp-foot a:hover { color: var(--lp-lime); }
.lp-foot h3 { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lp-faint); margin: 0 0 0.7rem; }
.lp-foot ul { list-style: none; padding: 0; margin: 0; }
.lp-foot li { margin: 0.35rem 0; }
.lp-foot-copy { max-width: 1180px; margin: 1.6rem auto 0; color: var(--lp-faint); font-size: 0.8rem; }

label { display: block; margin: 0.7rem 0 0.35rem; font-weight: 700; }
input, textarea, select {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  font: inherit;
  font-size: 16px;
  margin: 0 0 0.65rem;
  background: #0a101c;
  color: var(--lp-ink);
}
.lp-error, .lp-status { padding: 0.65rem 0.8rem; border-radius: 10px; margin: 0.6rem 0; }
.lp-error { background: #3a1518; color: #fecaca; }
.lp-status { background: #14301c; color: #bbf7d0; }
.lp-error:empty, .lp-status:empty { display: none; }
.lp-empty { color: var(--lp-muted); padding: 1rem; }
.lp_busy { position: relative; }
.lp_busy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 20, 0.55);
  z-index: 2;
}
#contactWrap, #loginWrap, #articleWrap, #pageWrap, #settingsWrap, .st-listwrap, #menuTable { position: relative; }

.st-login {
  min-height: 100vh;
  padding: 0 1.2rem 2.4rem;
}
.st-login-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 440px;
  margin: 0 auto;
  padding: 1.1rem 0.1rem 0.55rem;
}
.st-login-bar a {
  color: var(--lp-lime);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
}
.st-login-card {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 1.55rem 1.4rem 1.45rem;
  background:
    linear-gradient(180deg, rgba(7, 11, 20, 0.55), rgba(7, 11, 20, 0.92)),
    url("/assets/modules/Studio/img/lumen-hero.jpg") center / cover no-repeat;
}
.st-login-card h1 { font-family: var(--lp-display); margin: 0 0 0.4rem; }
.st-login-card .lp-lead { margin: 0 0 1.05rem; }
.st-login-card .lp-btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.45rem;
}
.st-login-links { font-size: 0.9rem; padding: 1rem 0 0; margin: 0; }
.st-login-links a { color: var(--lp-lime); }

.st-desk-bar { display: none; }
.st-scrim { display: none; }
.st-nav-head .st-nav-close { display: none; }
.st-shell { display: grid; grid-template-columns: 230px minmax(0, 1fr); min-height: calc(100vh - 2.2rem); }
.st-side { background: #0a1020; color: #cdd3e6; padding: 1.2rem 1rem; border-right: 1px solid var(--lp-line); }
.st-brand {
  color: #fff;
  font-family: var(--lp-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
  display: block;
  margin-bottom: 1.2rem;
}
.st-burger, .st-nav-close {
  display: none;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.st-burger span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.st-nav-close {
  width: auto;
  height: auto;
  padding: 0.4rem 0.75rem;
  flex-direction: row;
}
.st-side nav a { display: block; color: #cdd3e6; text-decoration: none; padding: 0.45rem 0.6rem; border-radius: 10px; }
.st-side nav a.is-active, .st-side nav a:hover { background: rgba(139, 156, 255, 0.16); color: #fff; }
.st-side-meta a { display: block; color: #8b93a8; font-size: 0.82rem; margin-top: 0.35rem; }
.st-main { padding: 1.4rem 1.5rem 3rem; }
.st-head h1 { font-family: var(--lp-display); margin: 0 0 0.4rem; }
.st-head p { color: var(--lp-muted); max-width: 46rem; }
.st-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.7rem; margin: 1rem 0; }
.st-stats article { background: var(--lp-bg-2); border: 1px solid var(--lp-line); border-radius: 14px; padding: 0.9rem; }
.st-stats strong { display: block; font-size: 1.6rem; color: var(--lp-lime); font-family: var(--lp-display); }
.st-plain { list-style: none; padding: 0; margin: 0; }
.st-plain li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; border-bottom: 1px solid var(--lp-line); }
.st-table-wrap { overflow: auto; background: var(--lp-bg-2); border: 1px solid var(--lp-line); border-radius: 14px; }
.st-table { width: 100%; border-collapse: collapse; }
.st-table th, .st-table td { text-align: left; padding: 0.55rem 0.7rem; border-bottom: 1px solid var(--lp-line); vertical-align: top; }
.st-table thead th { position: sticky; top: 0; background: #151d30; }
.st-table mark { background: #d4f34a; color: #10140a; padding: 0 0.12rem; }
.st-pager { display: flex; gap: 0.3rem; flex-wrap: wrap; margin-top: 0.8rem; }
.st-pager button { border: 1px solid var(--lp-line); background: var(--lp-bg-2); color: var(--lp-ink); border-radius: 8px; padding: 0.3rem 0.55rem; cursor: pointer; }
.st-pager button.is-active { background: var(--lp-lime); color: var(--lp-lime-ink); border-color: var(--lp-lime); }
.st-hint { color: var(--lp-muted); font-size: 0.9rem; }
.st-sr { position: absolute; left: -9999px; }
.st-modal[hidden] { display: none !important; }
.st-modal { position: fixed; inset: 0; background: rgba(4, 6, 12, 0.62); z-index: 40; display: grid; place-items: center; }
.st-modal-card { background: var(--lp-bg-2); padding: 1.2rem; border-radius: 16px; max-width: 420px; width: calc(100% - 2rem); border: 1px solid var(--lp-line); }
code { font-family: ui-monospace, Consolas, monospace; font-size: 0.88em; }

@media (max-width: 1080px) {
  .lp-services { grid-template-columns: 1fr 1fr; }
  .lp-services article, .lp-services article:first-child, .lp-services article:nth-child(2) { grid-column: span 1; }
  .lp-feature, .lp-split, .lp-foot-grid { grid-template-columns: 1fr; }
  .lp-team { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .lp-burger { display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
  .lp-nav-close { display: inline-flex; align-items: center; justify-content: center; position: absolute; top: 1rem; right: 1rem; }
  .lp-nav .lp-desk-link { display: inline-flex; align-self: flex-start; margin-top: 0.8rem; }
  .lp-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(22rem, 92vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.2rem;
    padding: 4.2rem 1rem 2rem;
    background: #0c1220;
    border-left: 1px solid var(--lp-line);
    transform: translateX(110%);
    transition: transform 0.28s ease;
    z-index: 45;
    overflow: auto;
  }
  .lp-body.is-nav .lp-nav { transform: none; }
  .lp-body.is-nav .lp-scrim { display: block; }
  .lp-drop { flex-wrap: wrap; }
  .lp-drop-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transform: none;
    display: none;
    box-shadow: none;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0.25rem 0 0.5rem;
  }
  .lp-drop.is-open .lp-drop-panel { display: block; pointer-events: auto; }
  .lp-grid, .st-stats, .lp-team { grid-template-columns: 1fr; }
  .st-shell { grid-template-columns: 1fr; min-height: 0; }
  .st-desk-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.65rem 0.95rem;
    background: #0a1020;
    border-bottom: 1px solid var(--lp-line);
    position: sticky;
    top: 0;
    z-index: 32;
  }
  .st-desk-bar .st-brand { margin: 0; }
  .st-desk-bar .st-burger { display: inline-flex; }
  .st-body.is-nav .st-scrim {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(4, 6, 12, 0.55);
    z-index: 40;
  }
  .st-side {
    position: fixed;
    top: 0;
    left: 0;
    width: min(22rem, 88vw);
    height: 100vh;
    height: 100dvh;
    z-index: 50;
    transform: translateX(-110%);
    transition: transform 0.28s ease;
    overflow: auto;
    padding-top: 1.1rem;
    pointer-events: none;
    border-right: 1px solid var(--lp-line);
  }
  .st-nav-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 1rem;
  }
  .st-nav-head .st-brand { margin-bottom: 0; }
  .st-nav-head .st-nav-close { display: inline-flex; }
  .st-body.is-nav .st-side {
    transform: none;
    pointer-events: auto;
  }
  .st-side nav a { padding: 0.7rem 0.65rem; font-size: 1rem; }
  .st-main { padding: 1.1rem 0.95rem 2.4rem; }
  .lp-hero, .lp-hero-sm, .lp-pagehead { min-height: 420px; padding: 1.4rem; }
  .lp-cta { flex-direction: column; align-items: flex-start; }
  .lp-logo-type { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-marquee-track { animation: none; }
  .lp-drop-panel, .lp-nav, .lp-card-media img, .st-side { transition: none; }
}
