:root {
  --ink: #071621;
  --ink-2: #0b2330;
  --ink-3: #14303d;
  --paper: #f7f8f5;
  --mist: #e9efed;
  --white: #ffffff;
  --text: #12232d;
  --muted: #66777f;
  --line: rgba(18, 35, 45, 0.14);
  --teal: #0aa9a1;
  --teal-bright: #43d8cb;
  --amber: #f0ac37;
  --shadow: 0 24px 80px rgba(4, 24, 32, 0.14);
  --radius: 18px;
  --header-height: 84px;
}

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

html {
  min-height: 100%;
  height: auto;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  margin: 0;
  min-height: 100%;
  height: auto;
  min-width: 320px;
  overflow-x: hidden;
  overflow-y: visible;
  overscroll-behavior-y: auto;
  touch-action: pan-y;
  color: var(--text);
  background: var(--paper);
  font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html.copy-loading body { visibility: hidden; }

html[lang="lo"] body {
  font-family: "Noto Sans Lao", "Sora", sans-serif;
  line-height: 1.75;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.04em;
}

html[lang="lo"] h1,
html[lang="lo"] h2,
html[lang="lo"] h3 {
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  border-radius: 6px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-is-open {
  background: rgba(7, 22, 33, 0.96);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand img {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  color: var(--white);
  font-size: 0.96rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.54rem;
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  margin-left: auto;
}

.desktop-nav a,
.footer-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--teal-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.language-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.language-switch button {
  min-width: 40px;
  min-height: 32px;
  padding: 4px 9px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.62);
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 0.68rem;
  font-weight: 700;
}

.language-switch button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--white);
}

.theme-toggle {
  width: 58px;
  height: 38px;
  flex: 0 0 auto;
  padding: 2px;
  cursor: pointer;
  color: var(--white);
  border: 0;
  border-radius: 999px;
  background: transparent;
}

.theme-toggle__track {
  width: 54px;
  height: 34px;
  position: relative;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.theme-toggle svg {
  width: 14px;
  height: 14px;
  position: absolute;
  z-index: 2;
  top: 9px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle__moon { left: 7px; color: var(--ink); }
.theme-toggle__sun { right: 7px; color: rgba(255, 255, 255, 0.62); }

.theme-toggle__thumb {
  width: 26px;
  height: 26px;
  position: absolute;
  z-index: 1;
  top: 3px;
  left: 3px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease;
}

html[data-theme="light"] .theme-toggle__thumb { transform: translateX(20px); }
html[data-theme="light"] .theme-toggle__moon { color: rgba(18, 35, 45, 0.48); }
html[data-theme="light"] .theme-toggle__sun { color: var(--ink); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button--small {
  min-height: 40px;
  padding: 10px 15px;
}

.button--primary {
  color: #071621;
  background: linear-gradient(135deg, var(--teal-bright), #78eadf);
  box-shadow: 0 12px 34px rgba(67, 216, 203, 0.2);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--white);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle > span:not(.sr-only) {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 1px;
  background: var(--white);
  transition: transform 180ms ease, top 180ms ease;
}

.menu-toggle > span:nth-last-child(2) { top: 16px; }
.menu-toggle > span:last-child { top: 23px; }
.menu-toggle[aria-expanded="true"] > span:nth-last-child(2) { top: 20px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:last-child { top: 20px; transform: rotate(-45deg); }

.mobile-nav {
  display: none;
  background: rgba(7, 22, 33, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav__inner {
  display: grid;
  padding-block: 18px 28px;
}

.mobile-nav a {
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 600;
}

.mobile-nav.is-open { display: block; }

.hero {
  min-height: 820px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__media,
.hero__veil {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__slide {
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1.1s ease, transform 8s ease;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__veil {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 16, 25, 0.98) 0%, rgba(4, 16, 25, 0.92) 35%, rgba(4, 16, 25, 0.38) 70%, rgba(4, 16, 25, 0.46) 100%),
    linear-gradient(180deg, rgba(4, 16, 25, 0.2), rgba(4, 16, 25, 0.76));
}

.hero__content {
  padding-top: calc(var(--header-height) + 54px);
  padding-bottom: 150px;
}

.hero__copy {
  max-width: 790px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #087e79;
  font-size: 0.69rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  flex: 0 0 auto;
  content: "";
  background: currentColor;
}

.eyebrow--light { color: var(--teal-bright); }
.eyebrow--amber { color: var(--amber); }

.hero h1 {
  max-width: 18ch;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
}

html[lang="lo"] .hero h1 {
  max-width: 22ch;
  font-size: clamp(1.8rem, 2.5vw, 2.65rem);
}

.hero__body {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero__assurance {
  max-width: 580px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 54px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.hero__slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.hero__slider-dots span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  transition: width 220ms ease, background-color 220ms ease;
}

.hero__slider-dots span.is-active {
  width: 42px;
  background: var(--teal-bright);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 7px rgba(67, 216, 203, 0.1);
}

.hero__rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 21, 30, 0.65);
  backdrop-filter: blur(18px);
}

.hero__rail > div {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__rail > div:last-child { border-right: 0; }
.hero__rail span { color: var(--teal-bright); font-size: 0.65rem; }
.hero__rail strong { font-size: 0.83rem; font-weight: 600; }

.section {
  position: relative;
  padding-block: clamp(78px, 8vw, 112px);
}

.section--paper { background: var(--paper); }
.section--mist { background: var(--mist); }
.section--ink { overflow: hidden; padding-block: clamp(64px, 6vw, 88px); color: var(--white); background: var(--ink); }

.section--capabilities {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(5, 20, 29, 0.9) 0%, rgba(5, 20, 29, 0.76) 34%, rgba(5, 20, 29, 0.93) 100%),
    url("/assets/generated/capabilities-background-v2.webp") center / cover no-repeat;
}

.section--capabilities::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(4, 17, 25, 0.5), transparent 55%);
}

.section--capabilities > .shell { position: relative; z-index: 1; }
.section--capabilities .eyebrow { color: var(--teal-bright); }
.section--capabilities .section-heading__grid > p { color: rgba(255, 255, 255, 0.68); }
.section--capabilities .cap-card:not(.cap-card--featured) {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(250, 252, 251, 0.93);
  backdrop-filter: blur(14px);
}

.section-heading {
  margin-bottom: 64px;
}

.section-heading__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 64px;
}

.section-heading h2,
.process-heading h2,
.about-panel h2,
.contact-panel h2,
.feature-split h2,
.systems-block h2,
.mining-copy h2 {
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  font-weight: 600;
}

html[lang="lo"] .section-heading h2,
html[lang="lo"] .process-heading h2,
html[lang="lo"] .about-panel h2,
html[lang="lo"] .contact-panel h2,
html[lang="lo"] .feature-split h2,
html[lang="lo"] .systems-block h2,
html[lang="lo"] .mining-copy h2 {
  font-size: clamp(1.45rem, 1.85vw, 2rem);
}

.section-heading__grid > p,
.process-heading > p:last-child {
  color: var(--muted);
}

.capability-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.cap-card {
  min-height: 290px;
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.cap-card:hover {
  transform: translateY(-5px);
  border-color: rgba(10, 169, 161, 0.42);
  box-shadow: var(--shadow);
}

.cap-card--featured {
  min-height: 596px;
  grid-column: span 6;
  grid-row: span 2;
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at 85% 10%, rgba(67, 216, 203, 0.24), transparent 28%),
    linear-gradient(145deg, #0b3a42, #071621 72%);
}

.cap-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 700;
}

.cap-card--featured .cap-card__top { color: var(--teal-bright); }

.cap-card__line {
  width: 44px;
  height: 1px;
  background: var(--line);
}

.signal-mark {
  width: 86px;
  height: 86px;
  border: 1px solid rgba(67, 216, 203, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--teal-bright) 0 3px, transparent 4px),
    repeating-radial-gradient(circle, transparent 0 13px, rgba(67, 216, 203, 0.18) 14px 15px);
}

.cap-card h3 {
  margin-bottom: 14px;
  font-size: clamp(1.24rem, 2.1vw, 2rem);
  font-weight: 600;
}

.cap-card p {
  color: var(--muted);
  font-size: 0.86rem;
}

.cap-card--featured p { max-width: 520px; color: rgba(255, 255, 255, 0.64); font-size: 0.98rem; }
.cap-card small { margin-top: 28px; color: #75868e; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em; }
.cap-card small { text-transform: uppercase; }
.cap-card--featured small { color: var(--teal-bright); }

.feature-split,
.systems-block,
.mining-layout,
.process-layout,
.contact-panel,
.about-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.feature-split {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(36px, 5vw, 68px);
}

.feature-split--erp {
  align-items: center;
}

.feature-split--erp .feature-split__copy { align-self: center; }
.feature-split--erp .lede { max-width: 540px; }
.feature-split--erp .feature-image { width: 100%; justify-self: end; }

.feature-list--erp {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 6px;
}

.feature-list--erp article {
  min-height: 168px;
  align-content: start;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.lede {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
}

.feature-list,
.mining-services {
  display: grid;
  gap: 24px;
  margin-top: 44px;
}

.feature-list article,
.mining-services article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-list article > span,
.mining-services article > span {
  color: var(--teal-bright);
  font-size: 0.64rem;
  font-weight: 700;
}

.feature-list h3,
.mining-services h3,
.system-list h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.feature-list p,
.mining-services p,
.system-list p {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
}

.feature-image,
.mining-image {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.32);
}

.mining-image {
  background: #102832 url("/assets/generated/crypto-mining-service.webp") center / cover no-repeat;
}

.feature-image::after,
.mining-image::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
}

.feature-image img,
.mining-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.feature-image--dashboard img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  transform: none;
}

.feature-image--dashboard {
  padding: clamp(8px, 1.1vw, 14px);
  background: linear-gradient(145deg, rgba(28, 54, 73, 0.76), rgba(4, 17, 27, 0.96));
}

.systems-block {
  margin-top: clamp(74px, 8vw, 112px);
}

.systems-block__visual {
  min-height: 620px;
  position: relative;
}

.systems-block__image {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.34);
}

.systems-block__image img { width: 100%; height: 100%; object-fit: cover; }
.systems-block__image--large { inset: 0 16% 16% 0; }
.systems-block__image--small { right: 0; bottom: 0; width: 54%; height: 42%; }

.system-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 42px;
}

.system-list article {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.project-card {
  overflow: hidden;
  border: 1px solid rgba(18, 35, 45, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 40px rgba(8, 30, 38, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.project-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.03);
  transition: transform 400ms ease, filter 300ms ease;
}

.project-card:hover > img { transform: scale(1.025); filter: saturate(1) contrast(1.02); }

.project-card__content {
  padding: 26px;
}

.project-card__content > span {
  color: #087e79;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.project-card h3 {
  margin-top: 24px;
  font-size: 1.35rem;
  font-weight: 600;
}

.project-card strong {
  display: block;
  margin-top: 12px;
  color: #36515d;
  font-size: 0.68rem;
  line-height: 1.5;
}

.project-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.78rem;
}

.project-note {
  max-width: 720px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.section--mining {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 12%, rgba(240, 172, 55, 0.12), transparent 28%),
    linear-gradient(145deg, #102b31, #071621 72%);
}

.mining-layout { align-items: stretch; }
.mining-copy { align-self: center; }
.mining-image img { height: 100%; min-height: 600px; aspect-ratio: auto; }
.mining-services article > span { color: var(--amber); }

.mining-data {
  margin-top: 82px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.mining-data__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mining-data__heading h3 { font-size: 1.35rem; font-weight: 600; }
.mining-data__heading p { max-width: 720px; margin-top: 10px; color: rgba(255, 255, 255, 0.5); font-size: 0.76rem; }

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  color: var(--teal-bright);
  border: 1px solid rgba(67, 216, 203, 0.24);
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.live-badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-bright); }

.table-wrap {
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.78rem;
  text-align: left;
}

th,
td { padding: 18px 32px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
th { color: rgba(255, 255, 255, 0.48); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; }
td { color: rgba(255, 255, 255, 0.76); }
td:first-child { color: var(--white); font-weight: 600; }
td:last-child { color: var(--teal-bright); font-weight: 700; }
.table-message { color: rgba(255, 255, 255, 0.54) !important; text-align: center; }
.data-updated { min-height: 18px; padding: 14px 32px 18px; color: rgba(255, 255, 255, 0.4); font-size: 0.65rem; text-align: right; }

.process-layout {
  position: relative;
  align-items: start;
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(34px, 5vw, 64px);
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(4, 17, 26, 0.97) 0%, rgba(4, 17, 26, 0.9) 42%, rgba(4, 17, 26, 0.62) 100%),
    url("/assets/generated/delivery-background-v2.webp") 64% center / cover no-repeat;
  box-shadow: 0 34px 100px rgba(7, 25, 34, 0.16);
}
.process-story { min-width: 0; }
.process-heading { position: static; }
.process-heading .eyebrow { color: var(--teal-bright); }
.process-heading > p:last-child { margin-top: 24px; color: rgba(255, 255, 255, 0.7); }
.process-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }

.process-grid article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(5, 20, 29, 0.74);
  backdrop-filter: blur(12px);
}

.process-grid article > span { color: var(--teal-bright); font-size: 0.65rem; font-weight: 700; }
.process-grid h3 { margin-top: auto; color: var(--white); font-size: 1.35rem; font-weight: 600; }
.process-grid p { margin-top: 12px; color: rgba(255, 255, 255, 0.66); font-size: 0.78rem; }

.about-panel {
  display: block;
  min-height: 580px;
  margin-top: clamp(78px, 10vw, 126px);
  padding: clamp(42px, 6vw, 76px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(4, 17, 25, 0.18) 0%, rgba(4, 17, 25, 0.43) 38%, rgba(4, 17, 25, 0.94) 66%, rgba(4, 17, 25, 0.99) 100%),
    url("/assets/generated/support-background-v2.webp") 42% center / cover no-repeat;
  box-shadow: 0 34px 100px rgba(7, 25, 34, 0.18);
}

.about-panel__content {
  width: min(54%, 600px);
  margin-left: auto;
}
.about-panel .lede { margin-top: 24px; }
.value-list { display: grid; gap: 0; margin: 34px 0 0; padding: 0; list-style: none; }
.value-list li { position: relative; padding: 15px 0 15px 28px; color: rgba(255, 255, 255, 0.76); border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.84rem; }
.value-list li::before { position: absolute; top: 23px; left: 4px; width: 7px; height: 7px; content: ""; border-right: 1px solid var(--teal-bright); border-bottom: 1px solid var(--teal-bright); transform: rotate(-45deg); }

.contact-section {
  padding-block: 110px;
  color: var(--white);
  background: #06121b;
}

.contact-panel { align-items: start; }
.contact-panel__copy > p:not(.eyebrow) { max-width: 660px; margin-top: 24px; color: rgba(255, 255, 255, 0.58); }
.contact-list { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.contact-list > div { display: grid; grid-template-columns: 90px minmax(0, 1fr); gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.contact-list dt { color: rgba(255, 255, 255, 0.4); font-size: 0.66rem; font-weight: 700; text-transform: uppercase; }
.contact-list dd { color: rgba(255, 255, 255, 0.78); font-size: 0.8rem; overflow-wrap: anywhere; }
.contact-list a:hover,
.contact-list a:focus-visible { color: var(--teal-bright); }

.site-footer {
  padding-block: 42px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #040e15;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 40px;
}

.brand--footer .brand-copy small { max-width: 290px; letter-spacing: 0; font-size: 0.63rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-grid > p { font-size: 0.62rem; text-align: right; }

.to-top {
  width: 48px;
  height: 48px;
  position: fixed;
  z-index: 25;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 30px);
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(7, 22, 33, 0.9);
  box-shadow: 0 12px 32px rgba(4, 18, 26, 0.24);
  backdrop-filter: blur(12px);
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--teal); }
.to-top svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

html[data-theme="dark"] .feature-list p,
html[data-theme="dark"] .mining-services p,
html[data-theme="dark"] .system-list p { color: rgba(255, 255, 255, 0.66); }
html[data-theme="dark"] .lede { color: rgba(255, 255, 255, 0.7); }
html[data-theme="dark"] .contact-panel__copy > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.68); }
html[data-theme="dark"] .contact-list dd { color: rgba(255, 255, 255, 0.86); }
html[data-theme="dark"] .site-footer { color: rgba(255, 255, 255, 0.72); }

html[data-theme="light"] {
  --paper: #f8fbfa;
  --mist: #eaf2f0;
  --text: #102631;
  --muted: #536a73;
  --line: rgba(12, 45, 55, 0.16);
  --shadow: 0 24px 80px rgba(8, 42, 50, 0.12);
}

html[data-theme="light"] body {
  color: var(--text);
  background: var(--paper);
}

html[data-theme="light"] .site-header.is-scrolled,
html[data-theme="light"] .site-header.menu-is-open {
  color: var(--text);
  background: rgba(248, 251, 250, 0.96);
  border-color: rgba(12, 45, 55, 0.12);
  box-shadow: 0 12px 38px rgba(8, 42, 50, 0.1);
}

html[data-theme="light"] .site-header.is-scrolled .brand-copy strong,
html[data-theme="light"] .site-header.menu-is-open .brand-copy strong { color: var(--text); }
html[data-theme="light"] .site-header.is-scrolled .brand-copy small,
html[data-theme="light"] .site-header.menu-is-open .brand-copy small { color: var(--muted); }
html[data-theme="light"] .site-header.is-scrolled .desktop-nav a,
html[data-theme="light"] .site-header.menu-is-open .desktop-nav a { color: #36515b; }
html[data-theme="light"] .site-header.is-scrolled .desktop-nav a:hover,
html[data-theme="light"] .site-header.is-scrolled .desktop-nav a:focus-visible { color: var(--text); }

html[data-theme="light"] .site-header.is-scrolled .language-switch,
html[data-theme="light"] .site-header.menu-is-open .language-switch,
html[data-theme="light"] .site-header.is-scrolled .theme-toggle__track,
html[data-theme="light"] .site-header.menu-is-open .theme-toggle__track {
  border-color: rgba(12, 45, 55, 0.18);
  background: rgba(12, 45, 55, 0.05);
}

html[data-theme="light"] .site-header.is-scrolled .language-switch button,
html[data-theme="light"] .site-header.menu-is-open .language-switch button { color: #536a73; }
html[data-theme="light"] .site-header.is-scrolled .language-switch button[aria-pressed="true"],
html[data-theme="light"] .site-header.menu-is-open .language-switch button[aria-pressed="true"] {
  color: var(--white);
  background: var(--ink-2);
}
html[data-theme="light"] .site-header.is-scrolled .menu-toggle,
html[data-theme="light"] .site-header.menu-is-open .menu-toggle {
  border-color: rgba(12, 45, 55, 0.22);
  background: rgba(12, 45, 55, 0.04);
}
html[data-theme="light"] .site-header.is-scrolled .menu-toggle > span:not(.sr-only),
html[data-theme="light"] .site-header.menu-is-open .menu-toggle > span:not(.sr-only) { background: var(--text); }

html[data-theme="light"] .mobile-nav {
  background: rgba(248, 251, 250, 0.99);
  border-color: rgba(12, 45, 55, 0.1);
}
html[data-theme="light"] .mobile-nav a {
  color: #24414b;
  border-color: rgba(12, 45, 55, 0.1);
}

html[data-theme="light"] .section--capabilities {
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(244, 250, 248, 0.95), rgba(235, 245, 242, 0.9)),
    url("/assets/generated/capabilities-background-v2.webp") center / cover no-repeat;
}
html[data-theme="light"] .section--capabilities::before { background: linear-gradient(90deg, rgba(246, 251, 250, 0.68), transparent 60%); }
html[data-theme="light"] .section--capabilities .eyebrow { color: #087e79; }
html[data-theme="light"] .section--capabilities .section-heading__grid > p { color: var(--muted); }
html[data-theme="light"] .section--capabilities .cap-card:not(.cap-card--featured) {
  color: var(--text);
  border-color: rgba(12, 45, 55, 0.14);
  background: rgba(255, 255, 255, 0.86);
}
html[data-theme="light"] .cap-card--featured {
  color: var(--text);
  border-color: rgba(10, 169, 161, 0.2);
  background:
    radial-gradient(circle at 85% 10%, rgba(10, 169, 161, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(212, 243, 239, 0.98), rgba(247, 251, 250, 0.98) 72%);
}
html[data-theme="light"] .cap-card--featured p { color: var(--muted); }
html[data-theme="light"] .cap-card--featured small { color: #087e79; }

html[data-theme="light"] .section--ink {
  color: var(--text);
  background: #edf5f3;
}
html[data-theme="light"] .section--ink .eyebrow--light { color: #087e79; }
html[data-theme="light"] .section--ink .lede,
html[data-theme="light"] .section--ink .feature-list p,
html[data-theme="light"] .section--ink .system-list p { color: var(--muted); }
html[data-theme="light"] .feature-list--erp article,
html[data-theme="light"] .feature-list article,
html[data-theme="light"] .system-list article { border-color: rgba(12, 45, 55, 0.13); }
html[data-theme="light"] .feature-list--erp article { background: rgba(255, 255, 255, 0.66); }
html[data-theme="light"] .feature-image--dashboard { background: linear-gradient(145deg, #d6e6e3, #f9fcfb); }
html[data-theme="light"] .feature-image::after,
html[data-theme="light"] .mining-image::after,
html[data-theme="light"] .systems-block__image { border-color: rgba(12, 45, 55, 0.16); }

html[data-theme="light"] .project-card {
  border-color: rgba(12, 45, 55, 0.12);
  background: rgba(255, 255, 255, 0.94);
}
html[data-theme="light"] .project-card strong { color: #36515d; }

html[data-theme="light"] .section--mining {
  color: var(--text);
  background:
    radial-gradient(circle at 80% 12%, rgba(240, 172, 55, 0.1), transparent 28%),
    linear-gradient(145deg, #edf5f2, #f8fbfa 72%);
}
html[data-theme="light"] .section--mining .lede,
html[data-theme="light"] .section--mining .mining-services p { color: var(--muted); }
html[data-theme="light"] .mining-services article { border-color: rgba(12, 45, 55, 0.14); }
html[data-theme="light"] .mining-data {
  border-color: rgba(12, 45, 55, 0.14);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 60px rgba(8, 42, 50, 0.08);
}
html[data-theme="light"] .mining-data__heading,
html[data-theme="light"] th,
html[data-theme="light"] td { border-color: rgba(12, 45, 55, 0.1); }
html[data-theme="light"] .mining-data__heading p,
html[data-theme="light"] th,
html[data-theme="light"] .data-updated { color: #647780; }
html[data-theme="light"] td { color: #36515b; }
html[data-theme="light"] td:first-child { color: var(--text); }
html[data-theme="light"] .table-message { color: var(--muted) !important; }

html[data-theme="light"] .process-layout {
  color: var(--text);
  border-color: rgba(12, 45, 55, 0.14);
  background:
    linear-gradient(90deg, rgba(247, 251, 250, 0.98), rgba(240, 248, 246, 0.92)),
    url("/assets/generated/delivery-background-v2.webp") 64% center / cover no-repeat;
}
html[data-theme="light"] .process-heading .eyebrow { color: #087e79; }
html[data-theme="light"] .process-heading > p:last-child { color: var(--muted); }
html[data-theme="light"] .process-grid article {
  border-color: rgba(12, 45, 55, 0.13);
  background: rgba(255, 255, 255, 0.78);
}
html[data-theme="light"] .process-grid h3 { color: var(--text); }
html[data-theme="light"] .process-grid p { color: var(--muted); }
html[data-theme="light"] .process-grid article > span { color: #087e79; }

html[data-theme="light"] .about-panel {
  color: var(--text);
  border-color: rgba(12, 45, 55, 0.14);
  background:
    linear-gradient(90deg, rgba(248, 251, 250, 0.12) 0%, rgba(248, 251, 250, 0.5) 42%, rgba(248, 251, 250, 0.94) 68%, rgba(248, 251, 250, 0.99) 100%),
    url("/assets/generated/support-background-v2.webp") 42% center / cover no-repeat;
}
html[data-theme="light"] .about-panel .eyebrow--light { color: #087e79; }
html[data-theme="light"] .about-panel .lede,
html[data-theme="light"] .value-list li { color: #36515b; }
html[data-theme="light"] .value-list li { border-color: rgba(12, 45, 55, 0.12); }

html[data-theme="light"] .contact-section {
  color: var(--text);
  background: #e6f0ed;
}
html[data-theme="light"] .contact-panel__copy > p:not(.eyebrow),
html[data-theme="light"] .contact-list dd { color: #405a64; }
html[data-theme="light"] .contact-list,
html[data-theme="light"] .contact-list > div { border-color: rgba(12, 45, 55, 0.14); }
html[data-theme="light"] .contact-list dt { color: #647780; }
html[data-theme="light"] .contact-section .button--ghost {
  color: var(--text);
  border-color: rgba(12, 45, 55, 0.32);
  background: rgba(255, 255, 255, 0.38);
}
html[data-theme="light"] .contact-section .button--ghost:hover,
html[data-theme="light"] .contact-section .button--ghost:focus-visible {
  border-color: var(--teal);
  background: rgba(255, 255, 255, 0.72);
}

html[data-theme="light"] .site-footer {
  color: #536a73;
  border-color: rgba(12, 45, 55, 0.12);
  background: #d9e7e4;
}
html[data-theme="light"] .site-footer .brand-copy strong { color: var(--text); }
html[data-theme="light"] .site-footer .brand-copy small,
html[data-theme="light"] .footer-links a { color: #536a73; }
html[data-theme="light"] .footer-links a:hover,
html[data-theme="light"] .footer-links a:focus-visible { color: var(--text); }

/* Executive Team: institutional hierarchy with a 99 Solution command-center finish. */
body.team-route .site-header {
  background: rgba(7, 22, 33, 0.96);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
}

body.team-route .desktop-nav a[aria-current="page"],
body.team-route .mobile-nav a[aria-current="page"] { color: var(--teal-bright); }

body.team-route .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }

.team-page {
  min-height: 100vh;
  color: var(--white);
  background: var(--ink);
}

.team-hero {
  min-height: 550px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: end;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(67, 216, 203, 0.18), transparent 25%),
    linear-gradient(120deg, rgba(4, 17, 25, 0.98), rgba(7, 32, 44, 0.9)),
    url("/assets/generated/delivery-background-v2.webp") center / cover no-repeat;
}

.team-hero::before,
.team-hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.team-hero::before {
  width: min(56vw, 760px);
  height: min(56vw, 760px);
  top: -45%;
  right: -8%;
  border: 1px solid rgba(67, 216, 203, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(67, 216, 203, 0.025), 0 0 0 140px rgba(67, 216, 203, 0.018);
}

.team-hero::after {
  right: 7vw;
  bottom: 15%;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(67, 216, 203, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle, var(--teal-bright) 0 3px, transparent 4px);
}

.team-hero__content {
  position: relative;
  padding-top: calc(var(--header-height) + 86px);
  padding-bottom: clamp(68px, 8vw, 108px);
}

.team-back-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  transition: color 180ms ease, transform 180ms ease;
}

.team-back-link:hover,
.team-back-link:focus-visible { color: var(--teal-bright); transform: translateX(-3px); }
.team-hero .eyebrow { margin-bottom: 20px; }

.team-hero h1 {
  max-width: 820px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 600;
}

html[lang="lo"] .team-hero h1 {
  max-width: 900px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.3;
}

.team-hero__intro {
  max-width: 730px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.8;
}

.team-directory-section {
  padding-block: clamp(74px, 8vw, 118px);
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--ink);
  background-size: 54px 54px;
}

.team-directory { display: grid; gap: clamp(82px, 10vw, 134px); }
.team-group { min-width: 0; }

.team-group__header {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.team-group__index {
  color: var(--teal-bright);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.team-group__heading-copy {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 32px;
}

.team-group__heading-copy h2 { font-size: clamp(1.35rem, 2vw, 1.9rem); font-weight: 600; }
.team-group__heading-copy p { max-width: 440px; color: rgba(255, 255, 255, 0.58); font-size: 0.84rem; line-height: 1.75; }

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

.team-grid--leader { width: min(100%, 500px); grid-template-columns: 1fr; margin-inline: auto; }
.team-grid--executive { width: min(100%, 820px); grid-template-columns: repeat(2, minmax(0, 1fr)); margin-inline: auto; }
.team-grid--team:has(.team-card:nth-child(2):last-child) { width: min(100%, 820px); grid-template-columns: repeat(2, minmax(0, 1fr)); margin-inline: auto; }

.team-card {
  min-width: 0;
  display: grid;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(12, 38, 50, 0.92);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, box-shadow 220ms ease;
}

.team-card:hover,
.team-card:focus-visible {
  color: var(--white);
  border-color: rgba(67, 216, 203, 0.62);
  box-shadow: 0 30px 68px rgba(0, 0, 0, 0.3);
  transform: translateY(-8px);
}

.team-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #153441;
}

.team-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 68%, rgba(4, 17, 25, 0.28));
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card:hover .team-card__media img,
.team-card:focus-visible .team-card__media img { transform: scale(1.035); }

.team-card__content { min-width: 0; display: grid; padding: 24px; }
.team-card__name { overflow-wrap: normal; white-space: nowrap; font-size: 1rem; line-height: 1.3; letter-spacing: -0.025em; }
.team-card__role { min-height: 3.2em; margin-top: 8px; color: rgba(255, 255, 255, 0.62); font-size: 0.78rem; line-height: 1.6; }
.team-card__action { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 22px; padding-top: 16px; color: var(--teal-bright); border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.7rem; font-weight: 700; }
.team-link-arrow { font-size: 1rem; transition: transform 180ms ease; }
.team-card:hover .team-link-arrow { transform: translate(3px, -3px); }

.team-page--profile { background: #06141d; }
.team-profile-section { min-height: 100vh; padding-top: calc(var(--header-height) + 64px); padding-bottom: clamp(70px, 8vw, 110px); }
.team-back-link--profile { margin-bottom: 34px; }

.team-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.team-profile-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(16, 49, 62, 0.96), rgba(7, 25, 35, 0.98));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.team-profile-card__portrait { min-height: 100%; overflow: hidden; background: #163541; }
.team-profile-card__portrait img { width: 100%; height: 100%; min-height: 720px; object-fit: cover; object-position: center 24%; }
.team-profile-card__content { min-width: 0; padding: clamp(34px, 5vw, 62px); }
.team-profile-card__content .eyebrow { color: var(--teal-bright); }
.team-profile-card__name { overflow-wrap: normal; white-space: nowrap; font-size: clamp(1.25rem, 1.5vw, 1.55rem); font-weight: 600; line-height: 1.16; letter-spacing: -0.035em; }
.team-profile-card__role { margin-top: 14px; color: var(--teal-bright); font-size: 1rem; font-weight: 600; line-height: 1.55; }
.team-profile-card__summary { margin-top: 30px; color: rgba(255, 255, 255, 0.7); font-size: 1rem; line-height: 1.85; }

.team-responsibilities { margin-top: 42px; }
.team-responsibilities h2,
.team-profile-directory h2 { font-size: 1.28rem; font-weight: 600; }
.team-responsibilities__list { display: grid; gap: 0; margin: 18px 0 0; padding: 0; list-style: none; }
.team-responsibilities__list li { display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 14px; padding: 18px 0; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.team-responsibilities__index { color: var(--teal-bright); font-size: 0.66rem; font-weight: 700; }
.team-responsibilities__list p { color: rgba(255, 255, 255, 0.72); font-size: 0.86rem; line-height: 1.75; }

.team-profile-directory {
  max-height: calc(100vh - var(--header-height) - 80px);
  position: sticky;
  top: calc(var(--header-height) + 28px);
  overflow: auto;
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(11, 35, 48, 0.92);
  scrollbar-color: rgba(67, 216, 203, 0.4) transparent;
}

.team-profile-directory__intro { margin-top: 10px; color: rgba(255, 255, 255, 0.55); font-size: 0.74rem; line-height: 1.65; }
.team-member-nav { display: grid; gap: 6px; margin-top: 22px; }
.team-member-nav__link { min-width: 0; display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 12px; align-items: center; padding: 8px; border: 1px solid transparent; border-radius: 12px; }
.team-member-nav__link:hover,
.team-member-nav__link:focus-visible,
.team-member-nav__link.is-active { border-color: rgba(67, 216, 203, 0.24); background: rgba(67, 216, 203, 0.08); }
.team-member-nav__link img { width: 48px; height: 58px; object-fit: cover; object-position: center 20%; border-radius: 8px; }
.team-member-nav__link span { min-width: 0; display: grid; gap: 3px; }
.team-member-nav__link strong { overflow-wrap: anywhere; font-size: 0.72rem; line-height: 1.35; }
.team-member-nav__link small { color: rgba(255, 255, 255, 0.5); font-size: 0.62rem; line-height: 1.4; }

.team-not-found { min-height: 100vh; display: grid; align-items: center; padding-top: var(--header-height); }
.team-not-found__card { max-width: 760px; padding-block: 90px; text-align: center; }
.team-not-found__card .eyebrow { justify-content: center; color: var(--teal-bright); }
.team-not-found__card h1 { font-size: clamp(1.8rem, 3vw, 3rem); }
.team-not-found__card > p:not(.eyebrow) { max-width: 580px; margin: 24px auto 0; color: rgba(255, 255, 255, 0.65); }
.team-not-found__card .button { margin-top: 34px; }

html[data-theme="light"] .team-page,
html[data-theme="light"] .team-page--profile { color: var(--text); background: #eef5f3; }
html[data-theme="light"] .team-directory-section { color: var(--text); background: #eef5f3; }
html[data-theme="light"] .team-group__header { border-color: rgba(12, 45, 55, 0.15); }
html[data-theme="light"] .team-group__heading-copy p { color: var(--muted); }
html[data-theme="light"] .team-card { color: var(--text); border-color: rgba(12, 45, 55, 0.14); background: rgba(255, 255, 255, 0.96); box-shadow: 0 20px 50px rgba(8, 42, 50, 0.1); }
html[data-theme="light"] .team-card:hover,
html[data-theme="light"] .team-card:focus-visible { color: var(--text); border-color: rgba(10, 169, 161, 0.48); box-shadow: 0 28px 64px rgba(8, 42, 50, 0.16); }
html[data-theme="light"] .team-card__role { color: #536a73; }
html[data-theme="light"] .team-card__action { color: #087e79; border-color: rgba(12, 45, 55, 0.1); }
html[data-theme="light"] .team-profile-card { color: var(--text); border-color: rgba(12, 45, 55, 0.14); background: rgba(255, 255, 255, 0.96); box-shadow: 0 30px 80px rgba(8, 42, 50, 0.13); }
html[data-theme="light"] .team-profile-card__summary,
html[data-theme="light"] .team-responsibilities__list p { color: #405a64; }
html[data-theme="light"] .team-responsibilities__list li { border-color: rgba(12, 45, 55, 0.12); }
html[data-theme="light"] .team-profile-directory { border-color: rgba(12, 45, 55, 0.14); background: rgba(255, 255, 255, 0.92); }
html[data-theme="light"] .team-profile-directory__intro { color: var(--muted); }
html[data-theme="light"] .team-member-nav__link:hover,
html[data-theme="light"] .team-member-nav__link:focus-visible,
html[data-theme="light"] .team-member-nav__link.is-active { border-color: rgba(10, 169, 161, 0.22); background: rgba(10, 169, 161, 0.08); }
html[data-theme="light"] .team-member-nav__link small { color: var(--muted); }
html[data-theme="light"] .team-not-found__card > p:not(.eyebrow) { color: var(--muted); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--teal-bright);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-block; }
  .nav-contact { display: none; }
  .cap-card { grid-column: span 6; }
  .cap-card--featured { min-height: 520px; grid-column: span 12; grid-row: auto; }
  .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > p { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 820px), (max-device-width: 820px) {
  :root { --header-height: 76px; }
  .shell { width: min(100% - 32px, 720px); }
  .brand img { width: 48px; height: 48px; }
  .brand-copy small { display: none; }
  .hero { min-height: 760px; align-items: flex-start; }
  .hero__media img { object-position: 68% center; }
  .hero__veil { background: linear-gradient(90deg, rgba(4, 16, 25, 0.96), rgba(4, 16, 25, 0.76) 64%, rgba(4, 16, 25, 0.54)), linear-gradient(180deg, rgba(4, 16, 25, 0.2), rgba(4, 16, 25, 0.82)); }
  .hero__content { padding-top: calc(var(--header-height) + 80px); padding-bottom: 170px; }
  .hero h1 { max-width: 18ch; font-size: clamp(1.85rem, 4vw, 2.35rem); }
  html[lang="lo"] .hero h1 { max-width: 19ch; font-size: clamp(1.7rem, 3.6vw, 2.15rem); }
  .hero__rail > div { min-height: 82px; padding: 18px; }
  .section-heading__grid,
  .feature-split,
  .systems-block,
  .mining-layout,
  .process-layout,
  .contact-panel,
  .about-panel { grid-template-columns: 1fr; }
  .section-heading__grid { gap: 24px; }
  .feature-image { max-height: none; order: -1; }
  .feature-image img { aspect-ratio: 16 / 10; }
  .feature-image--dashboard img { aspect-ratio: auto; }
  .feature-split--erp .feature-image { order: 0; }
  .feature-list--erp { grid-template-columns: 1fr; margin-top: 0; }
  .feature-list--erp article { min-height: 0; }
  .systems-block { margin-top: 84px; }
  .systems-block__visual { min-height: 540px; }
  .process-layout { padding: 36px; background-position: 62% center; }
  .about-panel {
    min-height: 0;
    padding: 52px 38px;
    background:
      linear-gradient(90deg, rgba(4, 17, 25, 0.7) 0%, rgba(4, 17, 25, 0.88) 50%, rgba(4, 17, 25, 0.98) 100%),
      url("/assets/generated/support-background-v2.webp") 35% center / cover no-repeat;
  }
  .about-panel__content { width: 100%; margin-left: 0; }
  .mining-image { order: -1; }
  .mining-image img { min-height: 460px; }
  .cap-card { min-height: 260px; padding: 26px; }
  .cap-card--featured { min-height: 400px; }
  .cap-card h3 { font-size: 1.35rem; }
  .cap-card p,
  .cap-card--featured p { font-size: 1rem; line-height: 1.7; }
  .cap-card small { font-size: 0.7rem; }
  .feature-list p,
  .mining-services p,
  .system-list p { font-size: 0.94rem; line-height: 1.65; }
  .project-card p { font-size: 0.92rem; line-height: 1.65; }
  .process-grid p { font-size: 0.9rem; line-height: 1.65; }

  .team-hero { min-height: 510px; }
  .team-hero h1 { font-size: clamp(1.9rem, 4.8vw, 2.7rem); }
  html[lang="lo"] .team-hero h1 { font-size: clamp(1.75rem, 4.3vw, 2.45rem); }
  .team-group__heading-copy { display: grid; gap: 14px; }
  .team-group__heading-copy p { max-width: 620px; }
  .team-grid,
  .team-grid--team:has(.team-card:nth-child(2):last-child) { width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-grid--leader { width: min(100%, 460px); grid-template-columns: 1fr; }
  .team-profile-layout { grid-template-columns: 1fr; }
  .team-profile-directory { max-height: none; position: static; }
  .team-member-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px), (max-device-width: 620px) {
  html.mobile-viewport-override body {
    width: var(--mobile-layout-width);
    zoom: var(--mobile-viewport-scale);
  }

  :root { --header-height: 70px; }
  .shell { width: calc(100% - 28px); max-width: 560px; }
  .site-header {
    background: rgba(7, 22, 33, 0.9);
    backdrop-filter: blur(16px);
  }
  .nav-shell { gap: 6px; }
  .brand { flex: 0 1 auto; gap: 8px; }
  .brand img { width: 46px; height: 46px; }
  .brand-copy { min-width: 0; display: grid; }
  .brand-copy strong {
    max-width: 66px;
    font-size: 0.88rem;
    line-height: 1.08;
  }
  .brand-copy small { display: none; }
  .nav-actions { gap: 6px; margin-left: auto; }
  .language-switch { padding: 2px; }
  .language-switch button {
    min-width: 34px;
    min-height: 38px;
    padding-inline: 6px;
    font-size: 0.74rem;
  }
  .theme-toggle { width: 54px; height: 44px; }
  .theme-toggle__track { width: 50px; height: 36px; }
  .theme-toggle svg { top: 10px; }
  .theme-toggle__thumb { width: 28px; height: 28px; }
  html[data-theme="light"] .theme-toggle__thumb { transform: translateX(16px); }
  .menu-toggle { width: 44px; height: 44px; }
  .menu-toggle > span:not(.sr-only) { left: 13px; width: 17px; }
  .mobile-nav__inner { padding-block: 14px 24px; }
  .mobile-nav a { padding: 14px 0; font-size: 1rem; }

  .hero { min-height: 0; display: block; }
  .hero__media img { object-position: 70% center; }
  .hero__veil {
    background:
      linear-gradient(180deg, rgba(4, 16, 25, 0.68) 0%, rgba(4, 16, 25, 0.88) 38%, rgba(4, 16, 25, 0.98) 100%),
      linear-gradient(90deg, rgba(4, 16, 25, 0.9), rgba(4, 16, 25, 0.5));
  }
  .hero__content { padding-top: calc(var(--header-height) + 48px); padding-bottom: 36px; }
  .hero__copy { max-width: none; }
  .hero h1 { max-width: none; font-size: clamp(1.55rem, 6.4vw, 1.8rem); line-height: 1.3; }
  html[lang="lo"] .hero h1 { max-width: none; font-size: clamp(1.5rem, 6vw, 1.7rem); line-height: 1.42; }
  .hero__body { margin-top: 20px; font-size: 1rem; line-height: 1.75; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__assurance { margin-top: 28px; font-size: 0.88rem; line-height: 1.65; letter-spacing: 0; }
  .hero__slider-dots { margin-top: 24px; }
  .hero__rail {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    margin: 0 auto 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(5, 21, 30, 0.82);
  }
  .hero__rail { grid-template-columns: 1fr; }
  .hero__rail > div { min-height: 0; padding: 15px 18px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .hero__rail > div:last-child { border-bottom: 0; }
  .hero__rail span { font-size: 0.78rem; }
  .hero__rail strong { font-size: 0.96rem; }

  .eyebrow { gap: 10px; margin-bottom: 16px; font-size: 0.78rem; letter-spacing: 0.12em; }
  .eyebrow::before { width: 30px; }
  .section { padding-block: 58px; }
  .section--ink { padding-block: 58px; }
  .section-heading { margin-bottom: 30px; }
  .section-heading__grid { gap: 16px; }
  .section-heading__grid > p,
  .process-heading > p:last-child,
  .contact-panel__copy > p:not(.eyebrow) { font-size: 1rem; line-height: 1.75; }
  .section--capabilities { background-position: 62% center; }
  .capability-grid { grid-template-columns: 1fr; }
  .cap-card,
  .cap-card--featured {
    min-height: 0;
    grid-column: auto;
    grid-row: auto;
    justify-content: flex-start;
    gap: 22px;
    padding: 22px;
    border-radius: 16px;
  }
  .cap-card--featured { padding-block: 24px; }
  .cap-card__top { font-size: 0.78rem; }
  .signal-mark { width: 66px; height: 66px; }
  .cap-card h3 { margin-bottom: 10px; font-size: 1.38rem; line-height: 1.4; }
  .cap-card p,
  .cap-card--featured p { font-size: 1rem; line-height: 1.75; }
  .cap-card small { margin-top: 0; font-size: 0.74rem; line-height: 1.55; }

  .feature-split { gap: 28px; }
  .feature-split__copy .lede { margin-top: 18px; font-size: 1rem; line-height: 1.75; }
  .feature-image,
  .mining-image { border-radius: 16px; box-shadow: 0 20px 54px rgba(0, 0, 0, 0.26); }
  .feature-image--dashboard { padding: 6px; }
  .feature-image--dashboard img { border-radius: 11px; }
  .feature-list--erp { gap: 10px; }
  .feature-list--erp article { padding: 18px; border-radius: 12px; }
  .feature-list,
  .mining-services { gap: 14px; margin-top: 26px; }
  .feature-list article,
  .mining-services article { grid-template-columns: 28px minmax(0, 1fr); gap: 12px; padding-top: 18px; }
  .feature-list article > span,
  .mining-services article > span { font-size: 0.76rem; }
  .feature-list h3,
  .mining-services h3,
  .system-list h3 { font-size: 1.12rem; line-height: 1.45; }
  .feature-list p,
  .mining-services p,
  .system-list p { font-size: 0.96rem; line-height: 1.7; }

  .project-grid { grid-template-columns: 1fr; }
  .project-card { border-radius: 16px; }
  .project-card__content { padding: 22px 20px; }
  .project-card__content > span { font-size: 0.72rem; }
  .project-card h3 { margin-top: 14px; font-size: 1.42rem; line-height: 1.42; }
  .project-card strong { margin-top: 10px; font-size: 0.88rem; line-height: 1.65; }
  .project-card p { margin-top: 12px; font-size: 1rem; line-height: 1.7; }
  .project-note { margin-top: 24px; font-size: 0.86rem; line-height: 1.7; text-align: left; }

  .systems-block { margin-top: 58px; gap: 30px; }
  .systems-block__visual { min-height: 330px; }
  .systems-block__image--large { inset: 0 8% 12% 0; }
  .systems-block__image--small { width: 58%; height: 36%; }
  .system-list,
  .process-grid { grid-template-columns: 1fr; }
  .system-list { gap: 14px; margin-top: 28px; }
  .system-list article { padding-top: 16px; }

  .process-layout {
    width: calc(100% - 28px);
    gap: 28px;
    padding: 26px 20px;
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(4, 17, 26, 0.97), rgba(4, 17, 26, 0.88)),
      url("/assets/generated/delivery-background-v2.webp") 70% center / cover no-repeat;
  }
  .process-heading > p:last-child { margin-top: 18px; }
  .process-grid { gap: 10px; margin-top: 0; }
  .process-grid article { min-height: 0; padding: 20px; border-radius: 14px; }
  .process-grid h3 { margin-top: 28px; font-size: 1.25rem; line-height: 1.45; }
  .process-grid p { font-size: 0.96rem; line-height: 1.7; }

  .mining-layout { gap: 30px; }
  .mining-image img { min-height: 280px; aspect-ratio: 4 / 3; }
  .mining-data { width: calc(100% - 28px); margin-top: 40px; border-radius: 16px; }
  .mining-data__heading { display: block; padding: 20px; }
  .mining-data__heading h3 { font-size: 1.3rem; line-height: 1.45; }
  .mining-data__heading p { font-size: 0.94rem; line-height: 1.7; }
  .live-badge { display: none; }
  table { font-size: 0.9rem; }
  th,
  td { padding: 15px 18px; }
  th { font-size: 0.72rem; }
  .data-updated { padding: 14px 18px 18px; font-size: 0.78rem; line-height: 1.5; text-align: left; }

  .about-panel {
    width: calc(100% - 28px);
    margin-top: 58px;
    padding: 28px 20px;
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(4, 17, 25, 0.8), rgba(4, 17, 25, 0.97)),
      url("/assets/generated/support-background-v2.webp") 34% center / cover no-repeat;
  }
  .about-panel .lede { margin-top: 18px; font-size: 1rem; line-height: 1.75; }
  .value-list { margin-top: 24px; }
  .value-list li { padding: 14px 0 14px 24px; font-size: 0.96rem; line-height: 1.65; }
  html[data-theme="light"] .process-layout {
    background:
      linear-gradient(180deg, rgba(247, 251, 250, 0.97), rgba(238, 247, 244, 0.94)),
      url("/assets/generated/delivery-background-v2.webp") 70% center / cover no-repeat;
  }
  html[data-theme="light"] .about-panel {
    background:
      linear-gradient(180deg, rgba(248, 251, 250, 0.76), rgba(248, 251, 250, 0.98)),
      url("/assets/generated/support-background-v2.webp") 34% center / cover no-repeat;
  }
  .contact-section { padding-block: 60px; }
  .contact-panel { gap: 34px; }
  .contact-actions { align-items: stretch; flex-direction: column; margin-top: 26px; }
  .contact-actions .button { width: 100%; }
  .contact-list > div { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .contact-list dt { font-size: 0.78rem; }
  .contact-list dd { font-size: 1rem; line-height: 1.65; }

  .site-footer { padding-block: 34px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid > p { grid-column: auto; }
  .footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-links a { font-size: 0.9rem; }
  .footer-grid > p { font-size: 0.78rem; line-height: 1.6; text-align: left; }
  .brand--footer .brand-copy strong { max-width: none; font-size: 1rem; }
  .brand--footer .brand-copy small { display: block; font-size: 0.78rem; line-height: 1.5; }

  .team-hero { min-height: 0; align-items: start; }
  .team-hero::before { width: 450px; height: 450px; top: -180px; right: -240px; }
  .team-hero::after { right: 28px; bottom: 48px; width: 58px; height: 58px; }
  .team-hero__content { padding-top: calc(var(--header-height) + 52px); padding-bottom: 64px; }
  .team-back-link { margin-bottom: 32px; font-size: 0.88rem; }
  .team-hero h1 { max-width: none; font-size: clamp(1.65rem, 6.8vw, 2.1rem); line-height: 1.24; }
  html[lang="lo"] .team-hero h1 { max-width: none; font-size: clamp(1.5rem, 6.2vw, 1.9rem); line-height: 1.42; }
  .team-hero__intro { margin-top: 20px; font-size: 1rem; line-height: 1.75; }
  .team-directory-section { padding-block: 58px; background-size: 38px 38px; }
  .team-directory { gap: 72px; }
  .team-group__header { grid-template-columns: 1fr; gap: 12px; margin-bottom: 24px; padding-top: 18px; }
  .team-group__heading-copy { gap: 10px; }
  .team-group__heading-copy h2 { font-size: 1.45rem; line-height: 1.4; }
  html[lang="lo"] .team-group__heading-copy h2 { font-size: 1.4rem; line-height: 1.5; }
  .team-group__heading-copy p { font-size: 0.96rem; line-height: 1.7; }
  .team-grid,
  .team-grid--executive,
  .team-grid--team:has(.team-card:nth-child(2):last-child) { width: 100%; grid-template-columns: 1fr; gap: 18px; }
  .team-grid--leader { width: 100%; }
  .team-card { border-radius: 16px; }
  .team-card__media { aspect-ratio: 4 / 4.7; }
  .team-card__content { padding: 20px; }
  .team-card__name { font-size: 1.05rem; }
  .team-card__role { min-height: 0; font-size: 0.94rem; line-height: 1.6; }
  .team-card__action { margin-top: 18px; font-size: 0.86rem; }

  .team-profile-section { padding-top: calc(var(--header-height) + 34px); padding-bottom: 64px; }
  .team-back-link--profile { margin-bottom: 24px; }
  .team-profile-card { grid-template-columns: 1fr; border-radius: 18px; }
  .team-profile-card__portrait { min-height: 0; }
  .team-profile-card__portrait img { min-height: 0; aspect-ratio: 4 / 5; object-position: center 22%; }
  .team-profile-card__content { padding: 26px 20px 30px; }
  .team-profile-card__name { font-size: clamp(1.2rem, 5vw, 1.4rem); line-height: 1.2; }
  .team-profile-card__role { font-size: 1rem; }
  .team-profile-card__summary { margin-top: 22px; font-size: 1rem; line-height: 1.75; }
  .team-responsibilities { margin-top: 32px; }
  .team-responsibilities h2,
  .team-profile-directory h2 { font-size: 1.3rem; line-height: 1.4; }
  .team-responsibilities__list li { grid-template-columns: 30px minmax(0, 1fr); gap: 10px; padding: 16px 0; }
  .team-responsibilities__list p { font-size: 0.96rem; line-height: 1.72; }
  .team-profile-directory { padding: 22px 16px; border-radius: 16px; }
  .team-profile-directory__intro { font-size: 0.9rem; }
  .team-member-nav { grid-template-columns: 1fr; }
  .team-member-nav__link { grid-template-columns: 56px minmax(0, 1fr); }
  .team-member-nav__link img { width: 56px; height: 66px; }
  .team-member-nav__link strong { font-size: 0.92rem; }
  .team-member-nav__link small { font-size: 0.82rem; }
  .team-not-found__card { padding-block: 70px; }
  .team-not-found__card h1 { font-size: 1.8rem; }
  .team-not-found__card > p:not(.eyebrow) { font-size: 1rem; line-height: 1.72; }

  .section-heading h2,
  .process-heading h2,
  .about-panel h2,
  .contact-panel h2,
  .feature-split h2,
  .systems-block h2,
  .mining-copy h2 { font-size: 1.55rem; line-height: 1.35; }
  html[lang="lo"] .section-heading h2,
  html[lang="lo"] .process-heading h2,
  html[lang="lo"] .about-panel h2,
  html[lang="lo"] .contact-panel h2,
  html[lang="lo"] .feature-split h2,
  html[lang="lo"] .systems-block h2,
  html[lang="lo"] .mining-copy h2 { font-size: 1.5rem; line-height: 1.5; }
}

@media (max-width: 380px), (max-device-width: 380px) {
  .brand-copy { display: grid; }
  .brand-copy strong { max-width: 56px; font-size: 0.82rem; }
  .brand img { width: 42px; height: 42px; }
  .nav-actions { gap: 4px; }
  .language-switch button { min-width: 31px; padding-inline: 4px; font-size: 0.68rem; }
  .theme-toggle { width: 50px; }
  .theme-toggle__track { width: 46px; }
  html[data-theme="light"] .theme-toggle__thumb { transform: translateX(12px); }
  .menu-toggle { width: 42px; height: 42px; }
  .menu-toggle > span:not(.sr-only) { left: 12px; }
  .hero h1 { font-size: 1.5rem; }
  html[lang="lo"] .hero h1 { font-size: 1.45rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__slide { transition: none; transform: none; }
}
