/* Shared chrome for static case study pages — always dark styling */
.lvc-nav,
.lvc-footer,
.lvc-nav *,
.lvc-footer * { box-sizing: border-box; }

.lvc-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  font-family: 'SUSE Mono', ui-monospace, monospace;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10,10,12,.08);
}
.lvc-nav.is-scrolled {
  background: rgba(255,255,255,.78);
  border-bottom-color: rgba(10,10,12,.12);
}
.lvc-nav__inner {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 2rem;
}
@media (min-width: 1024px) { .lvc-nav__inner { padding: 1.25rem 3.5rem; } }
.lvc-nav__brand {
  justify-self: start;
  color: #0a0a0c;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
}
.lvc-nav__links {
  justify-self: center;
  display: none;
  gap: 2.5rem;
  align-items: center;
}
.lvc-nav__links a {
  color: rgba(10,10,12,.75);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s ease;
}
.lvc-nav__links a:hover { color: #E8561A; }
.lvc-nav__cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.lvc-nav__btn {
  display: none;
  align-items: center;
  gap: .375rem;
  border: 1px solid #E8561A;
  color: #E8561A;
  padding: .5rem .75rem;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  border-radius: 10px;
  transition: background .2s ease, color .2s ease;
}
.lvc-nav__btn:hover { background: #E8561A; color: #050506; }
.lvc-nav__btn svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; }

/* Theme toggle */
.lvc-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 44px;
  height: 24px;
  border-radius: 9999px;
  border: 1px solid #E8561A;
  background: transparent;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
}
.lvc-toggle svg { position: absolute; width: 12px; height: 12px; stroke: #E8561A; fill: none; stroke-width: 2.2; }
.lvc-toggle .lvc-sun { left: 5px; }
.lvc-toggle .lvc-moon { right: 5px; }
.lvc-toggle__thumb {
  position: absolute;
  top: 50%;
  left: 1px;
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  background: #E8561A;
  transform: translate(0, -50%);
  transition: transform .2s ease;
}
.lvc-toggle[data-theme="dark"] .lvc-toggle__thumb { transform: translate(20px, -50%); }

.lvc-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #E8561A;
  color: #E8561A;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
}
.lvc-nav__toggle:hover { background: #E8561A; color: #050506; }
.lvc-nav__toggle svg { width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-width: 2; }
.lvc-nav__toggle .lvc-close { display: none; }
.lvc-nav.is-open .lvc-nav__toggle .lvc-open { display: none; }
.lvc-nav.is-open .lvc-nav__toggle .lvc-close { display: block; }
.lvc-nav__mobile {
  display: none;
  border-top: 1px solid rgba(10,10,12,.10);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
}
.lvc-nav.is-open .lvc-nav__mobile { display: block; }
.lvc-nav__mobile-inner { display: flex; flex-direction: column; padding: 1rem 1.5rem; }
.lvc-nav__mobile a.lvc-mlink {
  color: rgba(10,10,12,.78);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(10,10,12,.10);
}
.lvc-nav__mobile a.lvc-mlink:last-of-type { border-bottom: 0; }
.lvc-nav__mobile-cta { display: flex; gap: .5rem; margin-top: 1rem; }
.lvc-nav__mobile-cta a {
  flex: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: .375rem;
  border: 1px solid #E8561A;
  color: #E8561A;
  padding: .5rem .75rem;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
}
.lvc-nav__mobile-cta a svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; }
@media (min-width: 640px) { .lvc-nav__btn { display: inline-flex; } }
@media (min-width: 768px) {
  .lvc-nav__links { display: flex; }
  .lvc-nav__toggle { display: none; }
  .lvc-nav.is-open .lvc-nav__mobile { display: none; }
}

/* Footer — mirrors homepage Contact */
.lvc-footer {
  background: #050506;
  color: #F0EDE8;
  padding: 6rem 0;
  font-family: 'SUSE', ui-sans-serif, sans-serif;
  position: relative;
}
@media (min-width: 768px) { .lvc-footer { padding: 8rem 0; } }
.lvc-footer__wrap { max-width: 72rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .lvc-footer__wrap { padding: 0 1.5rem; } }
.lvc-footer__card {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(255,255,255,.10);
  background: #0a0a0c;
  box-shadow: 0 60px 140px -60px rgba(0,0,0,.9);
  padding: 4rem 1.5rem;
  text-align: center;
}
@media (min-width: 768px) { .lvc-footer__card { padding: 6rem 4rem; } }
.lvc-footer__glow {
  position: absolute; inset: 0; opacity: .6; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,86,26,.18) 0%, transparent 60%);
}
.lvc-footer__eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: 'SUSE Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(240,237,232,.55);
}
.lvc-footer__eyebrow::before {
  content: ""; display: inline-block; height: 1px; width: 2rem; background: #E8561A; opacity: .9;
}
.lvc-footer__title {
  position: relative;
  font-family: 'Archivo', ui-sans-serif, sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: .95;
  margin-top: 1.5rem;
  font-size: 3rem;
  color: #F0EDE8;
}
@media (min-width: 768px) { .lvc-footer__title { font-size: 4.5rem; } }
.lvc-footer__sub {
  position: relative;
  margin: 2rem auto 0;
  max-width: 42rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(240,237,232,.8);
}
.lvc-footer__cta {
  position: relative;
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
}
.lvc-footer__cta a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #E8561A;
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  font-family: 'SUSE Mono', ui-monospace, monospace;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s ease;
}
.lvc-footer__cta a:hover { background: rgba(232,86,26,.9); }
.lvc-footer__cta a svg { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-width: 2; }
.lvc-footer__copy {
  position: relative;
  margin-top: 4rem;
  font-family: 'SUSE Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(240,237,232,.55);
}

/* Embed mode — hide everything the shared chrome injects */
html.lv-embed .lvc-nav,
html.lv-embed .lvc-footer,
body.lv-embed .lvc-nav,
body.lv-embed .lvc-footer { display: none !important; }

/* Custom cursor (dot + label) — mirrors homepage */
.lvc-cursor-dot,
.lvc-cursor-label {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  will-change: transform, opacity;
  transition: opacity 180ms ease;
}
.lvc-cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #E8561A;
  margin: -4px 0 0 -4px;
}
.lvc-cursor-label {
  font-family: 'SUSE Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 6px;
  background: #141412;
  color: #FAF9F5;
  margin: 14px 0 0 14px;
  white-space: nowrap;
}
.lvc-cursor-hidden { opacity: 0 !important; }
html.lv-embed .lvc-cursor-dot,
html.lv-embed .lvc-cursor-label,
body.lv-embed .lvc-cursor-dot,
body.lv-embed .lvc-cursor-label { display: none !important; }