:root {
  --font: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --orange: #f7941d;
  --orange-bright: #ff8a00;
  --orange-soft: rgba(247, 148, 29, 0.12);
  --bg: #090d11;
  --bg-elevated: #0d1319;
  --bg-card: #10171e;
  --bg-card-hover: #141e27;
  --text: #f5f7f8;
  --muted: #a8b0b7;
  --muted-strong: #c8cdd1;
  --border: rgba(255, 255, 255, 0.13);
  --border-strong: rgba(255, 255, 255, 0.22);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  --header-bg: rgba(9, 13, 17, 0.86);
  --hero-glow: radial-gradient(circle at 70% 40%, rgba(63, 82, 98, 0.16), transparent 47%);
  --max-width: 1480px;
}

html[data-theme="light"] {
  --bg: #f7f8f9;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #fffaf4;
  --text: #171b1f;
  --muted: #636b72;
  --muted-strong: #343a40;
  --border: rgba(17, 24, 30, 0.12);
  --border-strong: rgba(17, 24, 30, 0.22);
  --shadow: 0 20px 55px rgba(27, 35, 42, 0.10);
  --header-bg: rgba(247, 248, 249, 0.89);
  --hero-glow: radial-gradient(circle at 70% 40%, rgba(247, 148, 29, 0.09), transparent 45%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 300;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: background-color 220ms ease, color 220ms ease;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
img, svg { display: block; max-width: 100%; }

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--orange);
  color: #111;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }
.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: var(--header-bg);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 30px;
}

.company-logo {
  position: relative;
  justify-self: start;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: 30px 11px;
  column-gap: 7px;
  width: max-content;
  min-width: 246px;
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1;
}
.company-logo__main,
.company-logo__menu {
  position: relative;
  z-index: 2;
  align-self: end;
  font-size: 27px;
  font-weight: 300;
}
.company-logo__main { color: var(--text); }
.company-logo__menu { color: var(--orange); }
.company-logo__systems {
  grid-column: 1 / -1;
  justify-self: end;
  margin-right: 5px;
  color: var(--muted-strong);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.72em;
}
.company-logo__arc {
  position: absolute;
  left: 43px;
  width: 112px;
  height: 30px;
  border-radius: 50%;
  pointer-events: none;
}
.company-logo__arc--top {
  top: -11px;
  border-top: 2px solid var(--orange);
  transform: rotate(-2deg);
}
.company-logo__arc--bottom {
  top: 26px;
  border-bottom: 2px solid var(--text);
  opacity: 0.9;
  transform: rotate(2deg);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
}
.primary-nav a,
.footer-links a {
  color: var(--muted-strong);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: color 160ms ease;
}
.primary-nav a:hover,
.primary-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible { color: var(--orange); }

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}
.theme-toggle,
.mobile-menu {
  min-height: 42px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted-strong);
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
}
.theme-toggle:hover { border-color: var(--orange); color: var(--orange); }
.mobile-menu {
  display: none;
  width: 42px;
  border-radius: 4px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-size: 12px;
  font-weight: 500;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  color: #111;
  box-shadow: 0 14px 35px rgba(247, 148, 29, 0.2);
}
.button--primary:hover { box-shadow: 0 18px 45px rgba(247, 148, 29, 0.28); }
.button--outline {
  border-color: var(--border-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.015);
}
.button--outline:hover { border-color: var(--orange); color: var(--orange); }
.header-demo { min-width: 158px; border-color: var(--orange); color: var(--orange); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 430px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--hero-glow), linear-gradient(115deg, var(--bg), var(--bg-elevated));
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.28;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(55px, 8vw, 130px);
  padding-block: 62px 68px;
}
.hero-copy { max-width: 670px; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-size: clamp(48px, 5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 200;
}
.hero h1 span,
.hero h1 strong { display: block; }
.hero h1 strong { color: var(--orange); font-weight: 300; }
.hero-intro {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: clamp(14px, 1.1vw, 17px);
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }

.product-brand {
  position: relative;
  z-index: 3;
  justify-self: center;
  width: min(100%, 690px);
  padding: 32px 10px;
  text-align: center;
}
.product-brand__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  line-height: 1;
}
.product-brand__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(150px, 14vw, 214px);
  height: clamp(150px, 14vw, 214px);
}
.product-brand__ring {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 3px solid transparent;
  transform: rotate(-30deg);
}
.product-brand__ring--outer {
  border-top-color: var(--text);
  border-left-color: var(--text);
  border-bottom-color: var(--text);
}
.product-brand__ring--inner {
  inset: 22px;
  border-top-color: var(--orange);
  border-left-color: var(--orange);
  border-bottom-color: var(--orange);
  transform: rotate(-21deg);
}
.product-brand__mm {
  position: relative;
  z-index: 2;
  color: var(--orange);
  font-size: clamp(54px, 6vw, 94px);
  font-weight: 300;
  letter-spacing: -0.08em;
  transform: translateX(-3px);
}
.product-brand__ops {
  color: var(--text);
  font-size: clamp(62px, 7vw, 112px);
  font-weight: 200;
  letter-spacing: -0.075em;
}
.product-brand__byline {
  margin-top: -25px;
  margin-left: 27%;
  color: var(--orange);
  font-size: clamp(10px, 1vw, 14px);
  font-weight: 500;
  letter-spacing: 0.24em;
}
.product-brand__strapline {
  margin-top: 28px;
  color: var(--muted-strong);
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 400;
  letter-spacing: 0.38em;
}

.hero-lines {
  position: absolute;
  right: 11%;
  top: -80px;
  z-index: 0;
  width: 420px;
  height: 720px;
  border-left: 1px solid var(--border);
  transform: rotate(39deg);
  opacity: 0.65;
}
.hero-lines--two { right: 2%; opacity: 0.34; }
.hero-chevrons {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 4px;
  width: 150px;
  height: 185px;
}
.hero-chevrons span {
  position: absolute;
  inset: 0 35px 0 0;
  border-top: 1px solid var(--orange);
  border-right: 1px solid var(--orange);
  transform: rotate(225deg) skew(-5deg, -5deg) scale(0.8);
}
.hero-chevrons span + span { transform: translateX(42px) rotate(225deg) skew(-5deg, -5deg) scale(0.8); }

.solutions-section { padding: 28px 0 10px; }
.section-heading { text-align: center; margin-bottom: 24px; }
.section-heading h2 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 300;
  letter-spacing: -0.025em;
}
.section-heading__line {
  display: block;
  width: 45px;
  height: 2px;
  margin: 12px auto 0;
  background: var(--orange);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 9px;
}
.module-card {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 22px 13px 18px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent), var(--bg-card);
  color: inherit;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.module-card::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 28px;
  height: 2px;
  background: var(--orange);
  transform: translateX(-50%);
  transition: width 180ms ease;
}
.module-card:hover,
.module-card:focus-visible {
  z-index: 2;
  transform: translateY(-4px);
  border-color: rgba(247, 148, 29, 0.7);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow);
  outline: none;
}
.module-card:hover::after,
.module-card:focus-visible::after { width: 56px; }
.module-card > i {
  min-height: 48px;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-size: 36px;
}
.module-card h3 {
  margin: 10px 0 7px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 400;
}
.module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.48;
}

.services-section { padding: 18px 0 12px; }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.service-card {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  min-height: 145px;
  padding: 24px 30px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--bg-card);
}
.service-card__icon {
  width: 80px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid var(--orange);
  border-radius: 3px;
  color: var(--orange);
  font-size: 34px;
}
.service-card h3 {
  margin: 0 0 8px;
  font-size: clamp(19px, 1.55vw, 25px);
  font-weight: 300;
}
.service-card p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: 13px; }

.value-section {
  margin-top: 5px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.025), transparent);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.value-item {
  min-height: 125px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  border-right: 1px solid var(--border);
}
.value-item:last-child { border-right: 0; }
.value-item > i { color: var(--orange); font-size: 40px; text-align: center; }
.value-item h3 { margin: 0 0 3px; font-size: 16px; font-weight: 400; }
.value-item p { margin: 0; color: var(--muted); font-size: 12px; }

.site-footer { background: var(--bg-elevated); }
.footer-grid {
  min-height: 114px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 42px;
}
.footer-contact { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-strong);
  text-decoration: none;
  font-size: 13px;
}
.footer-contact i { color: var(--orange); }
.footer-links { display: flex; align-items: center; justify-content: center; gap: 18px; }
.footer-links > span { color: var(--text); font-size: 13px; font-weight: 400; }
.copyright { margin: 0; color: var(--muted); font-size: 11px; white-space: nowrap; }

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  max-width: min(380px, calc(100% - 48px));
  padding: 14px 18px;
  border: 1px solid rgba(247, 148, 29, 0.55);
  border-radius: 3px;
  background: var(--bg-elevated);
  color: var(--text);
  box-shadow: var(--shadow);
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.toast.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1280px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .primary-nav { justify-content: center; gap: 25px; }
  .theme-toggle span { display: none; }
  .module-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .module-card { min-height: 180px; }
  .hero-grid { grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr); gap: 35px; }
  .product-brand__byline { margin-left: 31%; }
}

@media (max-width: 980px) {
  .shell { width: min(calc(100% - 32px), var(--max-width)); }
  .header-inner { min-height: 72px; grid-template-columns: 1fr auto; }
  .company-logo { min-width: 218px; transform: scale(0.9); transform-origin: left center; }
  .primary-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 0;
    padding: 14px 16px 22px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-elevated);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }
  body.nav-open .primary-nav { transform: translateY(0); }
  .primary-nav a { padding: 15px 8px; border-bottom: 1px solid var(--border); }
  .mobile-menu { display: inline-grid; place-items: center; }
  .header-demo { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 15px; padding-block: 60px; }
  .hero-copy { max-width: 720px; }
  .product-brand { justify-self: start; width: 100%; max-width: 650px; padding: 10px 0 30px; }
  .product-brand__row { justify-content: flex-start; }
  .product-brand__byline { margin-left: 205px; text-align: left; }
  .product-brand__strapline { text-align: left; margin-left: 82px; }
  .hero-chevrons { opacity: 0.42; }
  .module-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-item:nth-child(2) { border-right: 0; }
  .value-item:nth-child(-n + 2) { border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; padding-block: 28px; text-align: center; }
  .footer-contact, .footer-links { justify-content: center; }
}

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 24px), var(--max-width)); }
  .header-actions { gap: 8px; }
  .company-logo { min-width: 190px; transform: scale(0.8); }
  .theme-toggle { min-width: 42px; justify-content: center; padding: 0; }
  .hero { min-height: auto; }
  .hero-grid { padding-block: 46px 36px; }
  .hero h1 { font-size: clamp(43px, 14vw, 62px); }
  .hero-intro { font-size: 14px; }
  .hero-buttons { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .product-brand { overflow: hidden; }
  .product-brand__row { gap: 5px; transform: scale(0.84); transform-origin: left center; width: 118%; }
  .product-brand__byline { margin: -34px 0 0 126px; font-size: 9px; letter-spacing: 0.16em; }
  .product-brand__strapline { margin: 22px 0 0; font-size: 9px; letter-spacing: 0.22em; }
  .hero-lines { opacity: 0.2; }
  .hero-chevrons { display: none; }
  .section-heading { margin-bottom: 18px; }
  .module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .module-card { min-height: 180px; padding-inline: 10px; }
  .module-card p { font-size: 10.5px; }
  .service-card { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .service-card__icon { width: 68px; height: 62px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-item { border-right: 0; border-bottom: 1px solid var(--border); }
  .value-item:last-child { border-bottom: 0; }
  .footer-contact, .footer-links { flex-direction: column; align-items: center; gap: 10px; }
  .footer-links > span { margin-bottom: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}


/* Actual supplied brand assets */
.company-logo {
  display: block;
  width: clamp(190px, 18vw, 250px);
  min-width: 0;
  line-height: 0;
  transform: none;
}
.company-logo__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.product-brand {
  width: min(100%, 760px);
  padding: 24px 10px 28px;
}
.product-brand__image {
  display: block;
  width: min(100%, 720px);
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.18));
}
.product-brand__strapline {
  margin: 18px 0 0 !important;
  color: var(--muted-strong);
  text-align: center !important;
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 400;
  letter-spacing: 0.38em;
}
html[data-theme="light"] .product-brand__image {
  filter: drop-shadow(0 14px 28px rgba(30, 35, 40, 0.10));
}
@media (max-width: 980px) {
  .company-logo { width: 218px; min-width: 0; transform: none; }
  .product-brand { justify-self: center; max-width: 720px; padding: 10px 0 30px; }
}
@media (max-width: 680px) {
  .company-logo { width: 174px; min-width: 0; transform: none; }
  .product-brand { overflow: visible; padding-bottom: 24px; }
  .product-brand__image { width: 100%; }
  .product-brand__strapline {
    margin-top: 12px !important;
    font-size: 8px;
    letter-spacing: 0.22em;
  }
}
