:root {
  --lvc-bg: #061017;
  --lvc-bg-deep: #03090e;
  --lvc-surface: #0b1821;
  --lvc-surface-2: #10232d;
  --lvc-surface-3: #15313b;
  --lvc-line: rgba(172, 215, 226, 0.16);
  --lvc-line-strong: rgba(70, 228, 255, 0.35);
  --lvc-text: #f2f8fa;
  --lvc-muted: #a8bec6;
  --lvc-muted-2: #78929d;
  --lvc-cyan: #43e7ff;
  --lvc-cyan-dark: #09b7d3;
  --lvc-blue: #4b8dff;
  --lvc-green: #5ff0bd;
  --lvc-amber: #ffc76a;
  --lvc-red: #ff747d;
  --lvc-purple: #ad8cff;
  --lvc-white: #ffffff;
  --lvc-ink: #071016;
  --lvc-radius-sm: 10px;
  --lvc-radius: 18px;
  --lvc-radius-lg: 28px;
  --lvc-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --lvc-shell: 1240px;
  --lvc-header-height: 74px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--lvc-text);
  background: var(--lvc-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.lvc-nav-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--lvc-cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--lvc-white);
}

:focus-visible {
  outline: 3px solid var(--lvc-cyan);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--lvc-white);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.25rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

code {
  padding: 0.15em 0.4em;
  border: 1px solid var(--lvc-line);
  border-radius: 6px;
  color: var(--lvc-cyan);
  background: var(--lvc-bg-deep);
}

.lvc-shell {
  width: min(calc(100% - 40px), var(--lvc-shell));
  margin-right: auto;
  margin-left: auto;
}

.lvc-narrow {
  max-width: 900px;
}

.lvc-prose {
  max-width: 820px;
}

.lvc-prose > * + * {
  margin-top: 1.25em;
}

.lvc-prose p,
.lvc-prose li {
  color: var(--lvc-muted);
  font-size: 1.075rem;
}

.lvc-prose h2,
.lvc-prose h3 {
  margin-top: 1.7em;
}

.lvc-kicker {
  margin-bottom: 0.85rem;
  color: var(--lvc-cyan);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.lvc-lead {
  color: var(--lvc-muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.lvc-center {
  margin-top: 28px;
  text-align: center;
}

.lvc-icon {
  width: 24px;
  height: 24px;
  overflow: visible;
}

.lvc-skip-link {
  position: fixed;
  z-index: 99999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--lvc-ink);
  background: var(--lvc-cyan);
  font-weight: 800;
  transform: translateY(-160%);
}

.lvc-skip-link:focus {
  transform: translateY(0);
}

.lvc-announcement {
  position: relative;
  z-index: 102;
  color: #d9f9ff;
  background: linear-gradient(90deg, #063949, #0b5863 48%, #063949);
  border-bottom: 1px solid rgba(121, 239, 255, 0.2);
  font-size: 0.83rem;
}

.lvc-announcement .lvc-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  gap: 18px;
}

.lvc-announcement a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--lvc-white);
  font-weight: 800;
  white-space: nowrap;
}

.lvc-announcement .lvc-icon {
  width: 15px;
}

.lvc-site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(6, 16, 23, 0.9);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.lvc-site-header.is-scrolled {
  border-color: var(--lvc-line);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.admin-bar .lvc-site-header {
  top: 32px;
}

.lvc-header-inner {
  display: flex;
  align-items: center;
  min-height: var(--lvc-header-height);
  gap: 24px;
}

.lvc-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
  color: var(--lvc-white);
  text-decoration: none;
}

.lvc-brand:hover {
  color: var(--lvc-white);
}

.lvc-brand-mark {
  position: relative;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(67, 231, 255, 0.45);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(67, 231, 255, 0.15), rgba(75, 141, 255, 0.04));
  box-shadow: inset 0 0 20px rgba(67, 231, 255, 0.08);
}

.lvc-brand-mark span {
  position: absolute;
  width: 3px;
  border-radius: 3px;
  background: var(--lvc-cyan);
  transform: rotate(35deg);
  box-shadow: 0 0 9px rgba(67, 231, 255, 0.55);
}

.lvc-brand-mark span:nth-child(1) {
  height: 14px;
  margin: -11px 0 0 -12px;
}

.lvc-brand-mark span:nth-child(2) {
  height: 25px;
}

.lvc-brand-mark span:nth-child(3) {
  height: 14px;
  margin: 11px -12px 0 0;
}

.lvc-brand-name {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}

.lvc-brand-name strong {
  font-size: 1.03rem;
  letter-spacing: 0.08em;
}

.lvc-brand-name em {
  margin-top: 4px;
  color: var(--lvc-cyan);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.32em;
}

.lvc-custom-logo {
  display: block;
  width: auto;
  max-width: 220px;
  height: 48px;
}

.lvc-header-navigation {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-between;
  min-width: 0;
  gap: 18px;
}

.lvc-primary-nav {
  margin-left: auto;
}

.lvc-primary-nav .menu,
.lvc-primary-nav .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lvc-primary-nav > .menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.lvc-primary-nav li {
  position: relative;
}

.lvc-primary-nav a {
  display: block;
  padding: 11px 9px;
  border-radius: 8px;
  color: #bed0d6;
  font-size: 0.82rem;
  font-weight: 670;
  text-decoration: none;
  white-space: nowrap;
}

.lvc-primary-nav a:hover,
.lvc-primary-nav .current-menu-item > a,
.lvc-primary-nav .current-menu-ancestor > a {
  color: var(--lvc-white);
  background: rgba(255, 255, 255, 0.055);
}

.lvc-primary-nav .sub-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  display: none;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--lvc-line);
  border-radius: 12px;
  background: #0a1820;
  box-shadow: var(--lvc-shadow);
}

.lvc-primary-nav li:hover > .sub-menu,
.lvc-primary-nav li:focus-within > .sub-menu {
  display: block;
}

.lvc-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lvc-sign-in,
.lvc-cart-link {
  color: var(--lvc-text);
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.lvc-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.lvc-cart-count {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  place-items: center;
  border-radius: 999px;
  color: var(--lvc-ink);
  background: var(--lvc-cyan);
  font-size: 0.7rem;
}

.lvc-nav-toggle {
  display: none;
  align-items: center;
  margin-left: auto;
  padding: 9px 10px;
  border: 1px solid var(--lvc-line);
  border-radius: 9px;
  color: var(--lvc-text);
  background: transparent;
  cursor: pointer;
  gap: 9px;
}

.lvc-nav-toggle-label {
  font-size: 0.8rem;
  font-weight: 750;
}

.lvc-nav-toggle-lines {
  display: grid;
  width: 20px;
  gap: 4px;
}

.lvc-nav-toggle-lines span {
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.lvc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.lvc-button:hover {
  transform: translateY(-2px);
}

.lvc-button-primary,
button.lvc-button-primary {
  color: #031016;
  background: linear-gradient(135deg, #70edff, var(--lvc-cyan));
  border-color: var(--lvc-cyan);
  box-shadow: 0 10px 28px rgba(67, 231, 255, 0.15);
}

.lvc-button-primary:hover {
  color: #031016;
  background: #9df4ff;
  box-shadow: 0 13px 34px rgba(67, 231, 255, 0.24);
}

.lvc-button-secondary {
  color: var(--lvc-white);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(180, 221, 231, 0.26);
}

.lvc-button-secondary:hover {
  color: var(--lvc-white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(67, 231, 255, 0.48);
}

.lvc-button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.lvc-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(16, 190, 220, 0.13), transparent 31%),
    radial-gradient(circle at 5% 60%, rgba(75, 141, 255, 0.08), transparent 30%),
    linear-gradient(180deg, var(--lvc-bg-deep), var(--lvc-bg));
}

.lvc-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(67, 231, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(67, 231, 255, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  pointer-events: none;
}

.lvc-hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, 0.98fr);
  gap: clamp(50px, 7vw, 100px);
}

.lvc-hero-copy h1 {
  max-width: 790px;
  margin-bottom: 25px;
  font-size: clamp(3rem, 5.7vw, 5.45rem);
}

.lvc-hero-copy h1::after {
  display: inline-block;
  width: 0.22em;
  height: 0.22em;
  margin-left: 0.05em;
  border-radius: 50%;
  background: var(--lvc-cyan);
  box-shadow: 0 0 24px rgba(67, 231, 255, 0.65);
  content: "";
}

.lvc-hero-copy .lvc-lead {
  max-width: 660px;
  margin-bottom: 32px;
}

.lvc-hero-proof {
  display: flex;
  flex-wrap: wrap;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  gap: 10px 18px;
}

.lvc-hero-proof li {
  display: flex;
  align-items: center;
  color: var(--lvc-muted);
  font-size: 0.84rem;
  gap: 7px;
}

.lvc-hero-proof .lvc-icon {
  width: 17px;
  color: var(--lvc-green);
}

.lvc-hero-system {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--lvc-line-strong);
  border-radius: var(--lvc-radius-lg);
  background: #07131a;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.5), 0 0 80px rgba(67, 231, 255, 0.06);
  transform: perspective(1400px) rotateY(-3deg) rotateX(1.5deg);
}

.lvc-hero-system::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 60px rgba(67, 231, 255, 0.035);
  content: "";
  pointer-events: none;
}

.lvc-system-topbar {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 20px;
  border-bottom: 1px solid var(--lvc-line);
  gap: 10px;
}

.lvc-system-topbar > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lvc-cyan);
  box-shadow: 0 0 10px rgba(67, 231, 255, 0.7);
}

.lvc-system-topbar strong {
  overflow: hidden;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lvc-system-topbar em {
  margin-left: auto;
  padding: 4px 8px;
  border: 1px solid rgba(95, 240, 189, 0.25);
  border-radius: 999px;
  color: var(--lvc-green);
  background: rgba(95, 240, 189, 0.07);
  font-size: 0.65rem;
  font-style: normal;
}

.lvc-system-body {
  display: grid;
  min-height: 365px;
  grid-template-columns: 54px 1fr;
}

.lvc-system-nav {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 24px;
  border-right: 1px solid var(--lvc-line);
  gap: 21px;
}

.lvc-system-nav i {
  width: 19px;
  height: 19px;
  border: 1px solid rgba(172, 215, 226, 0.22);
  border-radius: 5px;
}

.lvc-system-nav i:first-child {
  border-color: var(--lvc-cyan);
  background: rgba(67, 231, 255, 0.12);
}

.lvc-system-content {
  padding: 28px;
}

.lvc-system-label {
  color: var(--lvc-muted-2);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lvc-system-stages {
  display: grid;
  align-items: center;
  margin-top: 28px;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
}

.lvc-system-stages > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 145px;
  padding: 21px 12px;
  border: 1px solid var(--lvc-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.lvc-system-stages > div.is-active {
  border-color: var(--lvc-line-strong);
  background: linear-gradient(160deg, rgba(67, 231, 255, 0.1), rgba(67, 231, 255, 0.025));
}

.lvc-system-stages > div.is-complete .lvc-icon {
  color: var(--lvc-green);
}

.lvc-system-stages .lvc-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 15px;
  color: var(--lvc-cyan);
}

.lvc-system-stages strong {
  font-size: 0.78rem;
}

.lvc-system-stages span {
  margin-top: 5px;
  color: var(--lvc-muted-2);
  font-size: 0.63rem;
}

.lvc-system-stages b {
  color: var(--lvc-muted-2);
  font-weight: 400;
}

.lvc-system-metrics {
  display: grid;
  margin-top: 22px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.lvc-system-metrics div {
  padding: 13px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.lvc-system-metrics span,
.lvc-system-metrics strong {
  display: block;
}

.lvc-system-metrics span {
  color: var(--lvc-muted-2);
  font-size: 0.62rem;
}

.lvc-system-metrics strong {
  margin-top: 3px;
  color: var(--lvc-white);
  font-size: 0.8rem;
}

.lvc-discipline-ribbon {
  position: relative;
  display: grid;
  margin-top: 82px;
  border-top: 1px solid var(--lvc-line);
  grid-template-columns: repeat(11, minmax(92px, 1fr));
}

.lvc-discipline-ribbon a {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 126px;
  padding: 25px 9px 18px;
  border-right: 1px solid var(--lvc-line);
  color: var(--lvc-muted);
  font-size: 0.67rem;
  font-weight: 720;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
  gap: 11px;
}

.lvc-discipline-ribbon a:last-child {
  border-right: 0;
}

.lvc-discipline-ribbon a:hover {
  color: var(--lvc-white);
  background: rgba(67, 231, 255, 0.055);
}

.lvc-discipline-ribbon .lvc-icon {
  width: 29px;
  height: 29px;
  color: var(--lvc-cyan);
}

.lvc-section {
  position: relative;
  padding: 112px 0;
}

.lvc-section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 48px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: 60px;
}

.lvc-section-heading h2 {
  max-width: 790px;
  margin-bottom: 0;
}

.lvc-section-heading > p {
  margin-bottom: 4px;
  color: var(--lvc-muted);
  font-size: 1.03rem;
}

.lvc-page-hero {
  padding: 96px 0 82px;
  border-bottom: 1px solid var(--lvc-line);
  background:
    radial-gradient(circle at 72% 15%, rgba(67, 231, 255, 0.11), transparent 27%),
    linear-gradient(180deg, var(--lvc-bg-deep), var(--lvc-bg));
}

.lvc-page-hero h1 {
  max-width: 990px;
  margin-bottom: 23px;
}

.lvc-page-hero .lvc-lead {
  max-width: 840px;
  margin-bottom: 30px;
}

.lvc-plan-section {
  background: #08151d;
}

.lvc-plan-lab {
  overflow: hidden;
  border: 1px solid var(--lvc-line);
  border-radius: var(--lvc-radius-lg);
  background: var(--lvc-bg-deep);
  box-shadow: var(--lvc-shadow);
}

.lvc-plan-tabs {
  display: flex;
  padding: 10px;
  border-bottom: 1px solid var(--lvc-line);
  gap: 8px;
}

.lvc-plan-tabs button {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: var(--lvc-muted);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.lvc-plan-tabs button[aria-selected="true"] {
  color: var(--lvc-white);
  border-color: var(--lvc-line-strong);
  background: rgba(67, 231, 255, 0.08);
}

.lvc-plan-tabs button span {
  font-weight: 800;
}

.lvc-plan-tabs button small {
  color: var(--lvc-muted-2);
  font-size: 0.68rem;
}

.lvc-plan-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
}

.lvc-plan-canvas {
  min-width: 0;
  padding: 25px;
  background: #dbe3e4;
}

.lvc-plan-scene {
  display: block;
  width: 100%;
  height: auto;
  min-height: 440px;
  color: #192b32;
  background-color: #edf2f1;
  background-image: linear-gradient(#d8e1e0 1px, transparent 1px), linear-gradient(90deg, #d8e1e0 1px, transparent 1px);
  background-size: 20px 20px;
  border-radius: 5px;
}

.lvc-plan-scene[hidden] {
  display: none;
}

.lvc-floor-walls {
  fill: rgba(255, 255, 255, 0.32);
  stroke: #1a3037;
  stroke-width: 5;
  stroke-linejoin: round;
}

.lvc-floor-walls .lvc-door {
  fill: none;
  stroke: #76898d;
  stroke-width: 2;
}

.lvc-room-labels {
  fill: #718286;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.lvc-routes path {
  fill: none;
  stroke-width: 3;
  stroke-dasharray: 6 5;
  stroke-linecap: round;
  opacity: 0.8;
}

.route-data {
  stroke: #1677dc;
}

.route-security {
  stroke: #d22d52;
}

.route-fire {
  stroke: #e7751a;
}

.route-audio {
  stroke: #7e4ed4;
}

.route-control {
  stroke: #219e70;
}

.lvc-plan-device {
  color: #071016;
  cursor: pointer;
  outline: none;
}

.lvc-plan-device > circle:first-of-type {
  fill: #ffffff;
  stroke: #172d34;
  stroke-width: 2;
  transition: fill 150ms ease, stroke 150ms ease, stroke-width 150ms ease;
}

.lvc-plan-device > :not(circle:first-of-type) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lvc-plan-device:hover > circle:first-of-type,
.lvc-plan-device:focus > circle:first-of-type,
.lvc-plan-device.is-selected > circle:first-of-type {
  fill: #c8f8ff;
  stroke: #008aa0;
  stroke-width: 4;
}

.lvc-plan-device:focus > circle:first-of-type {
  stroke: #005ccb;
}

.lvc-plan-inspector {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  padding: 30px;
  border-left: 1px solid var(--lvc-line);
  background: #09171f;
}

.lvc-plan-inspector h3 {
  margin-bottom: 20px;
}

.lvc-plan-inspector dl {
  margin: 0 0 25px;
}

.lvc-plan-inspector dl div {
  padding: 10px 0;
  border-bottom: 1px solid var(--lvc-line);
}

.lvc-plan-inspector dt {
  color: var(--lvc-muted-2);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lvc-plan-inspector dd {
  margin: 3px 0 0;
  color: var(--lvc-text);
  font-size: 0.86rem;
}

.lvc-plan-note {
  color: var(--lvc-muted);
  font-size: 0.76rem;
}

.lvc-plan-inspector .lvc-button {
  margin-top: auto;
}

.lvc-plan-legend {
  display: flex;
  flex-wrap: wrap;
  padding: 15px 22px;
  border-top: 1px solid var(--lvc-line);
  color: var(--lvc-muted);
  font-size: 0.72rem;
  gap: 18px;
}

.lvc-plan-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.lvc-plan-legend i {
  display: block;
  width: 24px;
  height: 2px;
}

.lvc-plan-legend i.route-data {
  background: #1677dc;
}

.lvc-plan-legend i.route-security {
  background: #d22d52;
}

.lvc-plan-legend i.route-fire {
  background: #e7751a;
}

.lvc-plan-legend i.route-audio {
  background: #7e4ed4;
}

.lvc-workflow-section {
  overflow: hidden;
  background: var(--lvc-bg-deep);
}

.lvc-workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.lvc-workflow-grid article {
  position: relative;
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--lvc-line);
  border-radius: var(--lvc-radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
}

.lvc-workflow-grid article:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 48px;
  right: -24px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--lvc-line);
  border-radius: 50%;
  color: var(--lvc-cyan);
  background: var(--lvc-bg-deep);
  content: "→";
}

.lvc-workflow-grid article > span {
  color: var(--lvc-muted-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
}

.lvc-workflow-grid .lvc-icon {
  display: block;
  width: 37px;
  height: 37px;
  margin: 30px 0 24px;
  color: var(--lvc-cyan);
}

.lvc-workflow-grid h2,
.lvc-workflow-grid h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.lvc-workflow-grid p {
  margin: 0;
  color: var(--lvc-muted);
  font-size: 0.9rem;
}

.lvc-apps-section {
  background: linear-gradient(180deg, #07131a, var(--lvc-bg));
}

.lvc-app-panels {
  display: grid;
  border-top: 1px solid var(--lvc-line);
  border-left: 1px solid var(--lvc-line);
  grid-template-columns: repeat(3, 1fr);
}

.lvc-app-panels article {
  position: relative;
  min-height: 430px;
  padding: 40px;
  border-right: 1px solid var(--lvc-line);
  border-bottom: 1px solid var(--lvc-line);
  background: rgba(255, 255, 255, 0.012);
  transition: background 180ms ease;
}

.lvc-app-panels article:hover {
  background: rgba(67, 231, 255, 0.035);
}

.lvc-app-number {
  color: var(--lvc-muted-2);
  font-size: 0.72rem;
  font-weight: 800;
}

.lvc-app-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 70px 0 28px;
  place-items: center;
  border: 1px solid var(--lvc-line-strong);
  border-radius: 19px;
  color: var(--lvc-cyan);
  background: rgba(67, 231, 255, 0.055);
}

.lvc-app-icon .lvc-icon {
  width: 36px;
  height: 36px;
}

.lvc-app-panels h3 {
  margin-bottom: 13px;
  font-size: 1.55rem;
}

.lvc-app-panels p {
  color: var(--lvc-muted);
}

.lvc-app-panels a {
  position: absolute;
  bottom: 36px;
  color: var(--lvc-cyan);
  font-weight: 800;
  text-decoration: none;
}

.lvc-two-column {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(50px, 8vw, 110px);
}

.lvc-check-list {
  display: grid;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
  gap: 14px;
}

.lvc-check-list li {
  display: flex;
  align-items: flex-start;
  color: var(--lvc-muted);
  gap: 11px;
}

.lvc-check-list .lvc-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--lvc-green);
}

.lvc-field-section {
  overflow: hidden;
}

.lvc-device-stack {
  position: relative;
  min-height: 490px;
}

.lvc-device-desktop {
  position: absolute;
  inset: 20px 20px 90px 0;
  overflow: hidden;
  border: 7px solid #1e343d;
  border-radius: 20px;
  background: #0c1b23;
  box-shadow: var(--lvc-shadow);
}

.lvc-device-desktop > span {
  display: block;
  height: 38px;
  border-bottom: 1px solid var(--lvc-line);
}

.lvc-device-desktop > span::before {
  display: block;
  width: 8px;
  height: 8px;
  margin: 14px;
  border-radius: 50%;
  background: var(--lvc-cyan);
  box-shadow: 15px 0 #38545e, 30px 0 #38545e;
  content: "";
}

.lvc-device-desktop > div {
  display: grid;
  padding: 28px;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.lvc-device-desktop b {
  height: 110px;
  border: 1px solid var(--lvc-line);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(67, 231, 255, 0.1), rgba(255, 255, 255, 0.015));
}

.lvc-device-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 180px;
  height: 350px;
  padding: 38px 15px 18px;
  border: 7px solid #29424b;
  border-radius: 31px;
  background: #0a1921;
  box-shadow: var(--lvc-shadow);
}

.lvc-device-phone > span {
  position: absolute;
  top: 10px;
  left: calc(50% - 28px);
  width: 56px;
  height: 7px;
  border-radius: 99px;
  background: #29424b;
}

.lvc-device-phone i {
  display: block;
  height: 73px;
  margin-bottom: 12px;
  border: 1px solid var(--lvc-line);
  border-radius: 9px;
  background: rgba(67, 231, 255, 0.055);
}

.lvc-white-label-section {
  background: var(--lvc-bg-deep);
}

.lvc-customer-document {
  max-width: 475px;
  padding: 38px;
  border-radius: 18px;
  color: #263940;
  background: #f2f5f4;
  box-shadow: var(--lvc-shadow);
  transform: rotate(-1deg);
}

.lvc-document-brand {
  display: flex;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #cfd9da;
  gap: 12px;
}

.lvc-document-brand > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 9px;
  color: #ffffff;
  background: #123a55;
  font-weight: 800;
}

.lvc-document-brand strong,
.lvc-document-brand small {
  display: block;
}

.lvc-document-brand strong {
  color: #14272e;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.lvc-document-brand small {
  color: #668087;
  font-size: 0.68rem;
}

.lvc-document-lines {
  display: grid;
  padding: 34px 0;
  gap: 13px;
}

.lvc-document-lines i {
  height: 10px;
  border-radius: 3px;
  background: #d9e1e1;
}

.lvc-document-lines i:nth-child(2) {
  width: 82%;
}

.lvc-document-lines i:nth-child(3) {
  width: 61%;
}

.lvc-document-total {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid #cfd9da;
  font-size: 0.86rem;
}

.lvc-document-total strong {
  color: #102c36;
}

.lvc-document-accept {
  padding: 12px;
  border-radius: 7px;
  color: #ffffff;
  background: #136a7a;
  font-size: 0.76rem;
  font-weight: 800;
  text-align: center;
}

.lvc-customer-document > small {
  display: block;
  margin-top: 21px;
  color: #82959a;
  font-size: 0.58rem;
  text-align: center;
}

.lvc-compliance-note,
.lvc-price-truth,
.lvc-tax-note {
  padding: 14px 17px;
  border: 1px solid var(--lvc-line);
  border-radius: 10px;
  color: var(--lvc-muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.82rem;
}

.lvc-demo-section {
  background: linear-gradient(180deg, #061017, #091923);
}

.lvc-card-grid {
  display: grid;
  gap: 18px;
}

.lvc-card-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.lvc-card-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.lvc-card {
  padding: 29px;
  border: 1px solid var(--lvc-line);
  border-radius: var(--lvc-radius);
  background: rgba(255, 255, 255, 0.025);
}

.lvc-card > .lvc-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 33px;
  color: var(--lvc-cyan);
}

.lvc-card h2,
.lvc-card h3 {
  margin-bottom: 13px;
  font-size: 1.35rem;
}

.lvc-card p {
  color: var(--lvc-muted);
}

.lvc-link-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.lvc-link-card:hover {
  color: inherit;
  border-color: var(--lvc-line-strong);
  background: rgba(67, 231, 255, 0.05);
  transform: translateY(-4px);
}

.lvc-link-card > span {
  color: var(--lvc-cyan);
  font-size: 0.85rem;
  font-weight: 800;
}

.lvc-home-pricing,
.lvc-pricing-page-section {
  background: #07131a;
}

.lvc-pricing-controls {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 22px;
}

.lvc-segmented {
  display: flex;
  margin: 0;
  padding: 5px;
  border: 1px solid var(--lvc-line);
  border-radius: 12px;
  background: var(--lvc-bg-deep);
  gap: 4px;
}

.lvc-segmented legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.lvc-segmented button {
  padding: 9px 13px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--lvc-muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.77rem;
  font-weight: 750;
}

.lvc-segmented button[aria-pressed="true"] {
  color: var(--lvc-white);
  border-color: var(--lvc-line-strong);
  background: rgba(67, 231, 255, 0.1);
}

.lvc-price-truth {
  margin-bottom: 20px;
  border-color: rgba(95, 240, 189, 0.2);
  color: #c6ebdf;
  background: rgba(95, 240, 189, 0.04);
}

.lvc-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.lvc-price-card {
  position: relative;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  min-height: 440px;
  padding: 29px;
  border: 1px solid var(--lvc-line);
  border-radius: var(--lvc-radius);
  background: var(--lvc-surface);
}

.lvc-price-card.is-featured {
  border-color: var(--lvc-line-strong);
  background: linear-gradient(165deg, rgba(67, 231, 255, 0.09), var(--lvc-surface) 48%);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

.lvc-price-card.is-requested {
  border-color: var(--lvc-green);
  box-shadow: 0 0 0 2px rgba(95, 240, 189, 0.12), 0 20px 55px rgba(0, 0, 0, 0.28);
}

.lvc-selected-plan-label {
  position: absolute;
  top: 13px;
  right: 13px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #062117;
  background: var(--lvc-green);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.lvc-selected-plan-label[hidden] {
  display: none;
}

.lvc-price-card h3 {
  margin-bottom: 22px;
}

.lvc-price {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  min-height: 83px;
  margin-bottom: 19px;
}

.lvc-price > span {
  color: var(--lvc-white);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 780;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.lvc-price small {
  margin-top: 4px;
  color: var(--lvc-muted-2);
  font-size: 0.73rem;
}

.lvc-price-card > p:not(.lvc-price):not(.lvc-kicker) {
  color: var(--lvc-muted);
  font-size: 0.86rem;
}

.lvc-card-detail {
  padding-top: 14px;
  border-top: 1px solid var(--lvc-line);
}

.lvc-price-card .lvc-button {
  margin-top: auto;
}

.lvc-tax-note {
  margin-top: 16px;
}

.lvc-commerce-truth-grid {
  display: grid;
  margin-top: 55px;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lvc-commerce-truth-grid > div {
  padding: 30px;
  border-left: 3px solid var(--lvc-cyan);
  background: rgba(255, 255, 255, 0.025);
}

.lvc-commerce-truth-grid h2 {
  font-size: 1.35rem;
}

.lvc-commerce-truth-grid p:last-child {
  color: var(--lvc-muted);
}

.lvc-training-section {
  background: var(--lvc-bg-deep);
}

.lvc-renewal-boundary,
.lvc-regional-status {
  margin-bottom: 28px;
  padding: 24px;
  border: 1px solid rgba(255, 199, 106, 0.3);
  border-radius: var(--lvc-radius);
  background: rgba(255, 199, 106, 0.045);
}

.lvc-renewal-boundary h2 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.lvc-renewal-boundary p,
.lvc-regional-status p:last-child,
.lvc-renewal-help p {
  color: var(--lvc-muted);
}

.lvc-renewal-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--lvc-line);
  gap: 30px;
}

.lvc-renewal-help p {
  max-width: 820px;
  margin: 0;
}

.lvc-regional-status {
  border-color: var(--lvc-line-strong);
  background: rgba(67, 231, 255, 0.045);
}

.lvc-region-detail-grid h2 {
  font-size: 1.12rem;
  line-height: 1.35;
}

.lvc-region-prices {
  margin-top: 70px;
}

.lvc-tutorial-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 24px;
  border: 1px solid var(--lvc-line);
  border-radius: var(--lvc-radius);
  background: rgba(255, 255, 255, 0.025);
  gap: 30px;
}

.lvc-tutorial-heading p {
  max-width: 780px;
  margin: 0;
  color: var(--lvc-muted);
}

.lvc-tutorial-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--lvc-line);
  list-style: none;
}

.lvc-tutorial-list li {
  display: grid;
  align-items: center;
  padding: 24px 18px;
  border-bottom: 1px solid var(--lvc-line);
  grid-template-columns: 55px minmax(0, 1fr) auto;
  gap: 18px;
}

.lvc-tutorial-list li > span {
  color: var(--lvc-cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8rem;
}

.lvc-tutorial-list h2 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.lvc-tutorial-list p {
  margin: 0;
  color: var(--lvc-muted-2);
  font-size: 0.82rem;
}

.lvc-tutorial-list a {
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.lvc-training-stack {
  display: grid;
  gap: 13px;
}

.lvc-training-stack > div {
  display: flex;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--lvc-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  gap: 17px;
}

.lvc-training-stack .lvc-icon {
  width: 36px;
  height: 36px;
  color: var(--lvc-cyan);
}

.lvc-training-stack strong,
.lvc-training-stack small {
  display: block;
}

.lvc-training-stack small {
  margin-top: 3px;
  color: var(--lvc-muted-2);
}

.lvc-regions-section {
  background: linear-gradient(180deg, #08151d, var(--lvc-bg));
}

.lvc-region-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.lvc-region-row a {
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--lvc-line);
  border-radius: 14px;
  color: var(--lvc-white);
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.lvc-region-row a:hover {
  border-color: var(--lvc-line-strong);
  background: rgba(67, 231, 255, 0.04);
}

.lvc-region-row span {
  margin-top: 8px;
  color: var(--lvc-muted);
  font-size: 0.76rem;
}

.lvc-final-cta {
  padding: 85px 0;
  border-top: 1px solid var(--lvc-line-strong);
  border-bottom: 1px solid var(--lvc-line);
  background:
    radial-gradient(circle at 78% 50%, rgba(67, 231, 255, 0.14), transparent 29%),
    #07151d;
}

.lvc-final-cta-inner {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
}

.lvc-final-cta h2 {
  max-width: 830px;
  margin-bottom: 15px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.lvc-final-cta p:not(.lvc-kicker) {
  margin-bottom: 0;
  color: var(--lvc-muted);
}

.lvc-feature-visual,
.lvc-discipline-focus {
  display: grid;
  min-height: 420px;
  place-items: center;
  border: 1px solid var(--lvc-line);
  border-radius: var(--lvc-radius-lg);
  background:
    radial-gradient(circle, rgba(67, 231, 255, 0.12), transparent 44%),
    var(--lvc-bg-deep);
}

.lvc-feature-visual .lvc-icon,
.lvc-discipline-focus > .lvc-icon {
  width: 150px;
  height: 150px;
  color: var(--lvc-cyan);
  filter: drop-shadow(0 0 35px rgba(67, 231, 255, 0.2));
}

.lvc-discipline-focus {
  align-content: center;
  text-align: center;
  gap: 13px;
}

.lvc-discipline-focus strong {
  font-size: 1.4rem;
}

.lvc-discipline-focus span {
  max-width: 280px;
  color: var(--lvc-muted);
}

.lvc-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lvc-demo-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 35px;
  border: 1px solid var(--lvc-line);
  border-radius: var(--lvc-radius);
  background: var(--lvc-surface);
}

.lvc-demo-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin-bottom: 50px;
  place-items: center;
  border: 1px solid var(--lvc-line-strong);
  border-radius: 17px;
  color: var(--lvc-cyan);
  background: rgba(67, 231, 255, 0.06);
}

.lvc-demo-icon .lvc-icon {
  width: 35px;
  height: 35px;
}

.lvc-demo-card p:not(.lvc-kicker) {
  color: var(--lvc-muted);
}

.lvc-demo-card .lvc-button {
  margin-top: auto;
}

.lvc-demo-boundary {
  margin-top: 24px;
  padding: 27px;
  border: 1px solid rgba(255, 199, 106, 0.25);
  border-radius: var(--lvc-radius);
  background: rgba(255, 199, 106, 0.045);
}

.lvc-demo-boundary > strong {
  color: var(--lvc-amber);
}

.lvc-demo-boundary p {
  max-width: 900px;
  margin: 8px 0 20px;
  color: var(--lvc-muted);
}

.lvc-trial-card,
.lvc-intake-surface {
  padding: 36px;
  border: 1px solid var(--lvc-line-strong);
  border-radius: var(--lvc-radius);
  background: linear-gradient(155deg, rgba(67, 231, 255, 0.075), var(--lvc-surface));
}

.lvc-trial-card > p:not(.lvc-kicker) {
  color: var(--lvc-muted);
}

.lvc-trial-card small {
  display: block;
  margin-top: 18px;
  color: var(--lvc-muted-2);
}

.lvc-trial-card .lvc-icon {
  width: 18px;
  margin-left: 5px;
}

.lvc-soft-section {
  border-top: 1px solid var(--lvc-line);
  background: var(--lvc-bg-deep);
}

.lvc-contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 65px;
}

.lvc-numbered-list {
  display: grid;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  gap: 22px;
}

.lvc-numbered-list li {
  display: flex;
  gap: 13px;
}

.lvc-numbered-list li > span {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--lvc-line-strong);
  border-radius: 50%;
  color: var(--lvc-cyan);
  font-size: 0.75rem;
  font-weight: 800;
}

.lvc-numbered-list strong {
  color: var(--lvc-white);
}

.lvc-numbered-list p {
  margin: 4px 0 0;
  color: var(--lvc-muted);
  font-size: 0.9rem;
}

.lvc-configuration-state {
  padding: 25px;
  border: 1px dashed rgba(255, 199, 106, 0.4);
  border-radius: 12px;
  background: rgba(255, 199, 106, 0.04);
}

.lvc-configuration-state h2 {
  font-size: 1.45rem;
}

.lvc-configuration-state p {
  color: var(--lvc-muted);
}

.lvc-search-form {
  margin-top: 30px;
}

.lvc-search-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--lvc-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.lvc-search-form > div {
  display: flex;
  max-width: 650px;
  gap: 9px;
}

.lvc-search-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 15px;
  border: 1px solid var(--lvc-line);
  border-radius: 9px;
  color: var(--lvc-text);
  background: var(--lvc-bg-deep);
}

.lvc-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lvc-post-card img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 11px;
}

.lvc-post-card h2 a {
  color: var(--lvc-white);
  text-decoration: none;
}

.lvc-single-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: var(--lvc-radius);
}

.lvc-pagination {
  margin-top: 30px;
}

.lvc-managed-compare {
  background: var(--lvc-bg-deep);
}

.lvc-table-scroll {
  overflow-x: auto;
  border: 1px solid var(--lvc-line);
  border-radius: var(--lvc-radius);
}

.lvc-compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.lvc-compare-table th,
.lvc-compare-table td {
  padding: 17px 20px;
  border-right: 1px solid var(--lvc-line);
  border-bottom: 1px solid var(--lvc-line);
  text-align: left;
  vertical-align: top;
}

.lvc-compare-table thead th {
  color: var(--lvc-white);
  background: var(--lvc-surface-2);
}

.lvc-compare-table tbody th {
  width: 20%;
  color: var(--lvc-cyan);
}

.lvc-compare-table td {
  color: var(--lvc-muted);
}

.lvc-compare-table tr:last-child > * {
  border-bottom: 0;
}

.lvc-compare-table tr > *:last-child {
  border-right: 0;
}

.lvc-site-footer {
  padding: 74px 0 0;
  background: var(--lvc-bg-deep);
}

.lvc-footer-grid {
  display: grid;
  padding-bottom: 55px;
  grid-template-columns: 1.55fr repeat(3, 0.75fr);
  gap: 50px;
}

.lvc-footer-brand > p {
  max-width: 330px;
  margin-top: 22px;
  color: var(--lvc-muted);
}

.lvc-footer-brand .lvc-footer-truth {
  color: var(--lvc-muted-2);
  font-size: 0.75rem;
}

.lvc-site-footer nav h2 {
  margin-bottom: 18px;
  color: var(--lvc-muted-2);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lvc-site-footer nav ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 9px;
}

.lvc-site-footer nav a {
  color: var(--lvc-muted);
  font-size: 0.84rem;
  text-decoration: none;
}

.lvc-site-footer nav a:hover {
  color: var(--lvc-white);
}

.lvc-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  border-top: 1px solid var(--lvc-line);
  color: var(--lvc-muted-2);
  font-size: 0.72rem;
  gap: 30px;
}

.lvc-footer-bottom p {
  margin: 0;
}

.lvc-footer-bottom a {
  flex: 0 0 auto;
  color: var(--lvc-muted);
}

/* Forms supplied by the commerce bridge and standard WordPress controls. */
.lvc-intake-surface form,
.woocommerce form,
.woocommerce-account .woocommerce-MyAccount-content form {
  display: grid;
  gap: 17px;
}

.lvc-intake-surface label,
.woocommerce form label {
  color: var(--lvc-text);
  font-size: 0.84rem;
  font-weight: 700;
}

.lvc-intake-surface input:not([type="checkbox"]):not([type="radio"]),
.lvc-intake-surface select,
.lvc-intake-surface textarea,
.woocommerce form input.input-text,
.woocommerce form select,
.woocommerce form textarea,
.select2-container--default .select2-selection--single {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid rgba(172, 215, 226, 0.24);
  border-radius: 9px;
  color: var(--lvc-text);
  background: #061017;
}

.lvc-intake-surface textarea,
.woocommerce form textarea {
  min-height: 130px;
  resize: vertical;
}

.lvc-intake-surface input:focus,
.lvc-intake-surface select:focus,
.lvc-intake-surface textarea:focus,
.woocommerce form input.input-text:focus,
.woocommerce form select:focus,
.woocommerce form textarea:focus {
  border-color: var(--lvc-cyan);
  outline: 3px solid rgba(67, 231, 255, 0.16);
  outline-offset: 0;
}

/* WooCommerce classic and block storefront presentation. */
.lvc-commerce-main {
  min-height: 65vh;
  padding: 70px 0 110px;
  background: linear-gradient(180deg, var(--lvc-bg-deep), var(--lvc-bg));
}

.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 30px;
  color: var(--lvc-muted-2);
}

.woocommerce .woocommerce-breadcrumb a {
  color: var(--lvc-muted);
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering,
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
  color: var(--lvc-cyan);
}

.woocommerce .woocommerce-ordering select {
  padding: 8px 10px;
  border: 1px solid var(--lvc-line);
  border-radius: 8px;
  color: var(--lvc-text);
  background: var(--lvc-surface);
}

.woocommerce ul.products {
  display: grid;
  clear: both;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none;
  width: auto;
  min-height: 380px;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--lvc-line);
  border-radius: var(--lvc-radius);
  background: var(--lvc-surface);
}

.woocommerce ul.products li.product a img {
  border-radius: 10px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--lvc-white);
  font-size: 1.2rem;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.wc-block-components-button,
.wp-block-button__link {
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--lvc-cyan);
  border-radius: 9px;
  color: var(--lvc-ink);
  background: var(--lvc-cyan);
  font-size: 0.85rem;
  font-weight: 800;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.wc-block-components-button:hover,
.wp-block-button__link:hover {
  color: var(--lvc-ink);
  background: #9df4ff;
}

.woocommerce div.product {
  display: flow-root;
}

.woocommerce div.product div.images img {
  border-radius: var(--lvc-radius);
}

.woocommerce div.product .product_title {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.lvc-purchase-truth,
.lvc-checkout-truth {
  display: flex;
  align-items: flex-start;
  margin: 20px 0;
  padding: 15px;
  border: 1px solid rgba(95, 240, 189, 0.25);
  border-radius: 10px;
  color: var(--lvc-muted);
  background: rgba(95, 240, 189, 0.045);
  gap: 10px;
}

.lvc-purchase-truth .lvc-icon {
  flex: 0 0 21px;
  color: var(--lvc-green);
}

.lvc-purchase-truth p {
  margin: 0;
}

.lvc-purchase-truth strong,
.lvc-checkout-truth strong {
  color: var(--lvc-white);
}

.woocommerce table.shop_table,
.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
  border-color: var(--lvc-line);
}

.woocommerce table.shop_table {
  border-radius: 12px;
  background: var(--lvc-surface);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 15px;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals,
.woocommerce-checkout #payment,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register,
.wc-block-components-sidebar,
.wc-block-components-totals-wrapper {
  padding: 22px;
  border: 1px solid var(--lvc-line);
  border-radius: var(--lvc-radius);
  background: var(--lvc-surface);
}

.woocommerce-checkout #payment div.payment_box {
  color: var(--lvc-muted);
  background: var(--lvc-surface-2);
}

.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: var(--lvc-surface-2);
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  border-top-color: var(--lvc-cyan);
  color: var(--lvc-text);
  background: var(--lvc-surface);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--lvc-cyan);
}

.woocommerce-error {
  border-top-color: var(--lvc-red);
}

.woocommerce-error::before {
  color: var(--lvc-red);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  border: 1px solid var(--lvc-line);
  border-radius: 12px;
  list-style: none;
  overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 12px 15px;
  border-bottom: 1px solid var(--lvc-line);
  color: var(--lvc-muted);
  text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  color: var(--lvc-white);
  background: rgba(67, 231, 255, 0.08);
}

.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-textarea {
  color: #071016 !important;
}

@media (max-width: 1180px) {
  .lvc-nav-toggle {
    display: inline-flex;
  }

  .lvc-header-navigation {
    position: fixed;
    z-index: 100;
    top: var(--lvc-header-height);
    right: 0;
    bottom: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    width: min(430px, 100%);
    padding: 24px;
    border-left: 1px solid var(--lvc-line);
    background: #07131a;
    box-shadow: -30px 20px 70px rgba(0, 0, 0, 0.45);
    overflow-y: auto;
  }

  .lvc-header-navigation.is-open {
    display: flex;
  }

  .admin-bar .lvc-header-navigation {
    top: calc(var(--lvc-header-height) + 32px);
  }

  .lvc-primary-nav {
    width: 100%;
    margin: 0;
  }

  .lvc-primary-nav > .menu {
    display: grid;
  }

  .lvc-primary-nav a {
    padding: 12px;
    font-size: 0.95rem;
  }

  .lvc-primary-nav .sub-menu {
    position: static;
    display: block;
    padding: 0 0 0 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .lvc-header-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid var(--lvc-line);
  }

  .lvc-sign-in,
  .lvc-cart-link {
    padding: 10px 0;
  }

  .lvc-hero-grid {
    grid-template-columns: 1fr;
  }

  .lvc-hero-copy {
    max-width: 870px;
  }

  .lvc-hero-system {
    max-width: 760px;
    transform: none;
  }

  .lvc-discipline-ribbon {
    overflow-x: auto;
    grid-template-columns: repeat(11, 110px);
  }

  .lvc-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lvc-price-card {
    min-height: 390px;
  }
}

@media (max-width: 900px) {
  .lvc-section {
    padding: 82px 0;
  }

  .lvc-section-heading,
  .lvc-two-column,
  .lvc-contact-layout,
  .lvc-final-cta-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .lvc-workflow-grid,
  .lvc-card-grid-four,
  .lvc-region-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .lvc-card-grid-three,
  .lvc-demo-grid,
  .lvc-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lvc-app-panels {
    grid-template-columns: 1fr;
  }

  .lvc-app-panels article {
    min-height: 360px;
  }

  .lvc-app-icon {
    margin-top: 45px;
  }

  .lvc-plan-workspace {
    grid-template-columns: 1fr;
  }

  .lvc-plan-inspector {
    border-top: 1px solid var(--lvc-line);
    border-left: 0;
  }

  .lvc-plan-inspector .lvc-button {
    margin-top: 8px;
  }

  .lvc-footer-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }

  .lvc-footer-grid nav:last-child {
    grid-column: 2 / 4;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }

  .lvc-renewal-help,
  .lvc-tutorial-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .lvc-shell {
    width: min(calc(100% - 28px), var(--lvc-shell));
  }

  .lvc-announcement .lvc-shell {
    justify-content: space-between;
  }

  .lvc-announcement span {
    max-width: 230px;
    padding: 6px 0;
    line-height: 1.35;
  }

  .lvc-header-inner {
    min-height: 65px;
  }

  .lvc-header-navigation {
    top: 65px;
  }

  .lvc-brand-name strong {
    font-size: 0.9rem;
  }

  .lvc-brand-name em {
    font-size: 0.58rem;
  }

  .lvc-brand-mark {
    width: 36px;
    height: 36px;
  }

  .lvc-nav-toggle-label {
    display: none;
  }

  .lvc-hero {
    padding-top: 62px;
  }

  .lvc-hero-copy h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .lvc-button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .lvc-button-row .lvc-button {
    width: 100%;
  }

  .lvc-system-content {
    padding: 20px 15px;
  }

  .lvc-system-body {
    grid-template-columns: 38px 1fr;
  }

  .lvc-system-stages {
    grid-template-columns: 1fr;
  }

  .lvc-system-stages > b {
    transform: rotate(90deg);
  }

  .lvc-system-metrics {
    grid-template-columns: 1fr;
  }

  .lvc-section-heading {
    margin-bottom: 34px;
  }

  .lvc-workflow-grid,
  .lvc-card-grid-three,
  .lvc-card-grid-four,
  .lvc-demo-grid,
  .lvc-post-grid,
  .lvc-region-row,
  .lvc-pricing-grid,
  .lvc-commerce-truth-grid {
    grid-template-columns: 1fr;
  }

  .lvc-workflow-grid article:not(:last-child)::after {
    top: auto;
    right: calc(50% - 15px);
    bottom: -24px;
    content: "↓";
  }

  .lvc-plan-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .lvc-plan-tabs button {
    padding: 9px;
  }

  .lvc-plan-canvas {
    padding: 9px;
    overflow-x: auto;
  }

  .lvc-plan-scene {
    width: 680px;
    max-width: none;
    min-height: auto;
  }

  .lvc-plan-inspector {
    padding: 23px;
  }

  .lvc-pricing-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .lvc-segmented {
    overflow-x: auto;
  }

  .lvc-segmented button {
    flex: 0 0 auto;
  }

  .lvc-device-stack {
    min-height: 390px;
  }

  .lvc-device-desktop {
    right: 0;
    bottom: 100px;
  }

  .lvc-device-phone {
    width: 145px;
    height: 285px;
  }

  .lvc-customer-document {
    padding: 25px;
  }

  .lvc-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lvc-footer-brand {
    grid-column: 1 / -1;
  }

  .lvc-footer-grid nav:last-child {
    grid-column: 1 / -1;
  }

  .lvc-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 0;
  }

  .lvc-search-form > div {
    flex-direction: column;
  }

  .lvc-tutorial-list li {
    align-items: start;
    grid-template-columns: 38px 1fr;
  }

  .lvc-tutorial-list li > a {
    grid-column: 2;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 782px) {
  .admin-bar .lvc-site-header {
    top: 46px;
  }

  .admin-bar .lvc-header-navigation {
    top: 111px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .lvc-announcement,
  .lvc-site-header,
  .lvc-site-footer,
  .lvc-button,
  .lvc-plan-tabs,
  .lvc-plan-inspector {
    display: none !important;
  }

  body {
    color: #111;
    background: #fff;
  }

  .lvc-plan-workspace {
    display: block;
  }

  .lvc-plan-canvas {
    background: #fff;
  }

  a {
    color: #111;
  }
}
