:root {
  --bg: #050608;
  --bg-soft: #090c11;
  --panel: #0d1118;
  --panel-2: #121823;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f5f7fa;
  --muted: #98a0ad;
  --red: #ff304c;
  --red-bright: #ff5369;
  --cyan: #36c7ff;
  --green: #48d99b;
  --gold: #d7ad56;
  --display: "Arial Narrow", "Bahnschrift Condensed", "Aptos Narrow", "Roboto Condensed", sans-serif;
  --sans: "Segoe UI", Inter, Arial, sans-serif;
  --shell: min(1440px, calc(100vw - 64px));
  --radius: 4px;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--red) var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 12%, rgba(28, 57, 77, 0.14), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--red);
  color: white;
}

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

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

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

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

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

.page-shell {
  width: var(--shell);
  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: 12px 18px;
  transform: translateY(-150%);
  background: white;
  color: black;
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 999;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--red), var(--cyan));
  box-shadow: 0 0 14px var(--red);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  border-color: var(--line);
  background: rgba(5, 6, 8, 0.84);
  backdrop-filter: blur(22px) saturate(130%);
}

.nav-shell {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(30px, 5vw, 86px);
}

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

.brand-mark {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  transform: skew(-8deg);
}

.brand-mark::after {
  inset: 8px -2px 8px 7px;
  z-index: -1;
  border: 0;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
}

.brand-mark i {
  font: 900 20px/1 var(--display);
  font-style: normal;
  transform: skew(-8deg);
}

.brand-copy {
  display: grid;
  line-height: 1;
  letter-spacing: 0.1em;
}

.brand-copy strong {
  font: 800 14px/1.2 var(--display);
}

.brand-copy small {
  margin-top: 4px;
  color: var(--red-bright);
  font-size: 8px;
  letter-spacing: 0.56em;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 2.5vw, 44px);
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: #c6ccd5;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 4px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--red);
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="true"] {
  color: white;
}

.main-nav a:hover::after,
.main-nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--line-strong);
  color: white;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.05em;
  transition: border-color 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  border-color: var(--red);
  background: rgba(255, 48, 76, 0.08);
}

.nav-cta span {
  color: var(--red-bright);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: transparent;
  color: white;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: max(820px, 100svh);
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
  background: #040506;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(transparent, #050608 86%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  z-index: -3;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.06) brightness(0.78);
  scale: 1.025;
  animation: hero-breathe 14s ease-in-out infinite alternate;
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.99) 0%, rgba(2, 3, 4, 0.9) 30%, rgba(2, 3, 4, 0.22) 62%, rgba(2, 3, 4, 0.08) 78%),
    linear-gradient(180deg, rgba(2, 3, 4, 0.45), transparent 35%, rgba(2, 3, 4, 0.55));
}

.hero-scan {
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: 0.12;
  background: repeating-linear-gradient(180deg, transparent 0 3px, rgba(255, 255, 255, 0.08) 4px);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 9vw 9vw;
  mask-image: linear-gradient(90deg, black, transparent 55%);
}

.hero-noise {
  position: absolute;
  z-index: 4;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

@keyframes hero-breathe {
  from { transform: translate3d(-0.5%, 0, 0) scale(1.025); }
  to { transform: translate3d(0.5%, -0.4%, 0) scale(1.045); }
}

.hero-content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  padding-top: var(--header-height);
}

.hero-copy {
  max-width: 760px;
  padding: 70px 0 100px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 24px;
  color: #c7cbd1;
  font: 700 11px/1.3 var(--sans);
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 0 13px rgba(255, 48, 76, 0.8);
}

.hero h1,
.section-heading h2,
.workflow-intro h2,
.trial-copy h2,
.payment-copy h2,
.faq-intro h2,
.about-layout h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: -0.045em;
}

.hero h1 {
  font-size: clamp(66px, 7vw, 126px);
  line-height: 0.78;
}

.hero h1 span,
.hero h1 strong,
.hero h1 em {
  display: block;
}

.hero h1 span {
  margin-bottom: 20px;
  font-size: 0.42em;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero h1 em {
  color: transparent;
  font-style: normal;
  font-weight: 900;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.82);
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
}

.hero h1 strong {
  position: relative;
  margin-top: 13px;
  font-size: 0.66em;
  font-weight: 900;
}

.hero h1 strong::after {
  content: "";
  display: inline-block;
  width: 52px;
  height: 6px;
  margin: 0 0 0.18em 20px;
  background: var(--red);
  box-shadow: 0 0 20px rgba(255, 48, 76, 0.55);
}

.hero-lead {
  max-width: 610px;
  margin: 38px 0 0;
  color: #c5cad2;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.65;
}

.hero-lead-mg {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.button {
  position: relative;
  min-height: 58px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border: 1px solid transparent;
  border-radius: 1px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 12px 36px rgba(255, 48, 76, 0.18);
}

.button-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-105%) skewX(-16deg);
  background: rgba(255, 255, 255, 0.18);
  transition: transform 350ms ease;
}

.button-primary:hover::before {
  transform: translateX(105%) skewX(-16deg);
}

.button-primary > * {
  position: relative;
  z-index: 1;
}

.button-ghost,
.button-outline {
  border-color: var(--line-strong);
  background: rgba(4, 5, 6, 0.26);
  color: white;
  backdrop-filter: blur(8px);
}

.button-ghost:hover,
.button-outline:hover {
  border-color: var(--red);
  background: rgba(255, 48, 76, 0.07);
}

.hero-meta {
  max-width: 620px;
  padding: 0;
  margin: 52px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}

.hero-meta li {
  min-height: 80px;
  padding: 18px 16px 0 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-right: 1px solid var(--line);
}

.hero-meta li + li {
  padding-left: 18px;
}

.hero-meta li:last-child {
  border-right: 0;
}

.hero-meta b {
  color: var(--red-bright);
  font: 800 10px/1.4 var(--sans);
}

.hero-meta span {
  color: #b1b7c1;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-hud {
  position: relative;
  justify-self: end;
  width: min(42vw, 610px);
  aspect-ratio: 1.22;
  margin-top: 60px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  clip-path: polygon(0 0, 92% 0, 100% 10%, 100% 100%, 8% 100%, 0 90%);
  background:
    linear-gradient(90deg, var(--red) 0 2px, transparent 2px) top 22px left / 48px 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(54, 199, 255, 0.1));
  opacity: 0.76;
}

.hero-hud::before,
.hero-hud::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
}

.hero-hud::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
}

.hero-hud::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
}

.hud-top,
.hud-bottom {
  position: absolute;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.55);
  font: 700 8px/1 var(--sans);
  letter-spacing: 0.18em;
}

.hud-top { top: 22px; }
.hud-bottom { bottom: 20px; }
.hud-top span:last-child { color: var(--green); }

.hud-crosshair {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 82px;
  height: 82px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.hud-crosshair::before,
.hud-crosshair::after,
.hud-crosshair i::before,
.hud-crosshair i::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.32);
}

.hud-crosshair::before { width: 22px; height: 1px; left: -11px; top: 50%; }
.hud-crosshair::after { width: 22px; height: 1px; right: -11px; top: 50%; }
.hud-crosshair i::before { height: 22px; width: 1px; top: -11px; left: 50%; }
.hud-crosshair i::after { height: 22px; width: 1px; bottom: -11px; left: 50%; }

.hud-version {
  position: absolute;
  left: 24px;
  bottom: 51px;
  color: rgba(255, 255, 255, 0.4);
  font: 700 10px/1 var(--sans);
  letter-spacing: 0.18em;
}

.hud-version b { color: var(--red); }

.hero-footer {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.48);
  font: 700 9px/1 var(--sans);
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero-footer i {
  width: min(5vw, 70px);
  height: 1px;
  background: var(--line);
}

.signal-band {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #080a0d;
}

.signal-band > div {
  width: max-content;
  min-width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 42px;
  color: #8d949e;
  font: 700 10px/1 var(--sans);
  letter-spacing: 0.24em;
  animation: signal-slide 25s linear infinite;
}

.signal-band b {
  color: var(--red);
  font-size: 7px;
}

@keyframes signal-slide {
  to { transform: translateX(-12%); }
}

.section-space {
  padding-block: clamp(100px, 12vw, 190px);
}

.section-heading {
  margin-bottom: clamp(58px, 7vw, 106px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.workflow-intro h2,
.trial-copy h2,
.payment-copy h2,
.faq-intro h2,
.about-layout h2,
.final-cta h2 {
  font-size: clamp(46px, 5.6vw, 92px);
  line-height: 0.96;
  font-weight: 850;
}

.section-heading h2 em,
.workflow-intro h2 em,
.trial-copy h2 em,
.payment-copy h2 em,
.faq-intro h2 em,
.about-layout h2 em,
.final-cta h2 em {
  color: var(--muted);
  font-style: normal;
  font-weight: 350;
}

.split-heading > p {
  max-width: 460px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.studio-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 54%, rgba(43, 88, 119, 0.17), transparent 32rem),
    linear-gradient(180deg, #07090c, #050608);
}

.studio-section::before {
  content: "PBS";
  position: absolute;
  top: 15%;
  right: -0.08em;
  color: transparent;
  font: 900 min(36vw, 600px)/1 var(--display);
  letter-spacing: -0.1em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.product-stage {
  position: relative;
  width: min(1180px, 90%);
  margin: 0 auto;
  perspective: 1400px;
}

.product-glow {
  position: absolute;
  inset: 5% 14% -15%;
  border-radius: 50%;
  background: rgba(23, 118, 171, 0.16);
  filter: blur(80px);
}

.window-frame {
  position: relative;
  z-index: 2;
  padding: 7px;
  border: 1px solid rgba(139, 187, 215, 0.25);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015));
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.58), 0 0 70px rgba(32, 123, 171, 0.08);
  transform: rotateX(1.2deg);
}

.window-bar {
  height: 47px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: #0a0e14;
  color: #7c8592;
  font: 700 8px/1 var(--sans);
  letter-spacing: 0.18em;
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #bec6d1;
}

.window-brand i {
  width: 10px;
  height: 10px;
  border: 2px solid var(--cyan);
  transform: rotate(45deg);
}

.window-controls {
  justify-self: end;
  display: flex;
  gap: 14px;
}

.window-controls i {
  width: 8px;
  height: 8px;
  border: 1px solid #59616d;
}

.window-screen {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #101722;
}

.window-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.screen-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.3);
}

.screen-vignette::before {
  content: "PAID BETA · 0.9.6";
  position: absolute;
  top: 4.5%;
  right: 0.65%;
  padding: 0.55% 0.8%;
  background: #0c131c;
  color: #55dfa5;
  font: 800 clamp(5px, 0.58vw, 9px)/1 var(--sans);
  letter-spacing: 0.08em;
}

.product-float {
  position: absolute;
  z-index: 4;
  min-width: 195px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(7, 10, 14, 0.84);
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.product-float::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 44px;
  height: 2px;
  background: var(--red);
}

.product-float small,
.product-float strong {
  display: block;
}

.product-float small {
  margin-bottom: 5px;
  color: var(--red-bright);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.product-float strong {
  font: 650 13px/1.3 var(--sans);
}

.product-float-a { left: -56px; top: 24%; }
.product-float-b { right: -54px; bottom: 16%; }

.product-summary {
  width: min(1180px, 90%);
  margin: 64px auto 0;
  padding-top: 42px;
  display: grid;
  grid-template-columns: 150px 1fr minmax(280px, 0.6fr);
  align-items: center;
  gap: 42px;
  border-top: 1px solid var(--line);
}

.product-logo-wrap {
  width: 130px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: radial-gradient(circle, rgba(215, 173, 86, 0.12), transparent 65%);
}

.product-logo-wrap img {
  width: 118px;
  height: 118px;
  object-fit: contain;
}

.index-label {
  margin: 0 0 12px;
  color: var(--red-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.product-summary h3 {
  margin: 0;
  font: 750 clamp(28px, 3vw, 48px)/1.05 var(--display);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.product-summary h3 span {
  color: #777f8b;
  font-weight: 350;
}

.product-summary > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.features-section {
  position: relative;
  background: #080a0e;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(230px, auto);
  gap: 12px;
}

.feature-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.034), transparent 45%),
    var(--panel);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  right: -1px;
  bottom: -1px;
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: border-color 220ms ease;
}

.feature-card:hover {
  z-index: 2;
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.24);
  background-color: #111722;
}

.feature-card:hover::after {
  border-color: var(--red);
}

.feature-wide { grid-column: span 8; }
.feature-tall { grid-row: span 2; }

.feature-index {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #4c535e;
  font: 800 9px/1 var(--sans);
  letter-spacing: 0.15em;
}

.feature-copy {
  position: relative;
  z-index: 2;
  max-width: 530px;
}

.feature-copy h3 {
  margin: 0 0 14px;
  font: 750 clamp(27px, 2.6vw, 42px)/1 var(--display);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.feature-copy p {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.feature-copy ul {
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.feature-copy li,
.tag-row span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  color: #b2b8c2;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-wide:first-child {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) 1fr;
  align-items: end;
  min-height: 360px;
}

.route-icon {
  align-self: center;
  justify-self: center;
  width: min(88%, 390px);
}

.route-icon svg {
  overflow: visible;
}

.route-icon path {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.6;
  stroke-dasharray: 5 5;
  filter: drop-shadow(0 0 8px rgba(54, 199, 255, 0.5));
}

.route-icon circle {
  fill: var(--red);
  filter: drop-shadow(0 0 7px rgba(255, 48, 76, 0.8));
}

.accent-card {
  background:
    radial-gradient(circle at 55% 26%, rgba(255, 48, 76, 0.21), transparent 30%),
    linear-gradient(165deg, #12151c, #0b0e13);
}

.terrain-visual {
  position: relative;
  height: 54%;
  margin: 18px -30px 35px;
  transform: perspective(500px) rotateX(58deg) rotateZ(-7deg);
  transform-origin: center;
}

.terrain-visual span {
  position: absolute;
  inset: calc(var(--i, 0) * 15px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.terrain-visual span:nth-child(1) { --i: 0; border-color: rgba(255, 48, 76, 0.75); }
.terrain-visual span:nth-child(2) { --i: 1; }
.terrain-visual span:nth-child(3) { --i: 2; }
.terrain-visual span:nth-child(4) { --i: 3; border-color: rgba(54, 199, 255, 0.5); }
.terrain-visual span:nth-child(5) { --i: 4; }

.mini-pill {
  width: max-content;
  margin: 50px 0 40px;
  padding: 8px 12px;
  border: 1px solid rgba(72, 217, 155, 0.3);
  color: var(--green);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.mini-pill::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.cube-stack {
  position: relative;
  height: 114px;
  margin: 25px 0 20px 20px;
}

.cube-stack i {
  position: absolute;
  width: 66px;
  height: 66px;
  transform: rotate(30deg) skew(-12deg);
  border: 1px solid rgba(54, 199, 255, 0.5);
  background: rgba(54, 199, 255, 0.025);
}

.cube-stack i:nth-child(1) { left: 0; top: 28px; }
.cube-stack i:nth-child(2) { left: 55px; top: 2px; border-color: rgba(255, 48, 76, 0.7); }
.cube-stack i:nth-child(3) { left: 108px; top: 30px; }

.feature-dark {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.8fr);
  align-items: center;
  min-height: 360px;
  background: linear-gradient(115deg, #10141b 0 53%, #080a0e 53%);
}

.tag-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.roadside-visual {
  position: relative;
  height: 190px;
  transform: perspective(500px) rotateX(62deg) rotateZ(-13deg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 48, 76, 0.7) 49% 51%, transparent 52%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.07) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.07) 0 1px, transparent 1px 28px);
}

.roadside-visual i {
  position: absolute;
  width: 11px;
  height: 54px;
  border-radius: 8px 8px 2px 2px;
  background: var(--cyan);
  box-shadow: 0 0 17px rgba(54, 199, 255, 0.5);
}

.roadside-visual i:nth-child(1) { left: 15%; top: 18%; }
.roadside-visual i:nth-child(2) { left: 28%; top: 61%; }
.roadside-visual i:nth-child(3) { left: 65%; top: 12%; }
.roadside-visual i:nth-child(4) { left: 77%; top: 63%; }
.roadside-visual i:nth-child(5) { left: 88%; top: 24%; }

.feature-export {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.export-ring {
  width: 100px;
  height: 100px;
  margin: 8px 0 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(72, 217, 155, 0.23);
  border-radius: 50%;
  box-shadow: inset 0 0 28px rgba(72, 217, 155, 0.06);
}

.export-ring::before {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  border: 1px dashed rgba(72, 217, 155, 0.52);
  border-radius: 50%;
  animation: spin 16s linear infinite;
}

.export-ring span {
  color: var(--green);
  font-size: 24px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.workflow-section {
  background:
    linear-gradient(90deg, rgba(255, 48, 76, 0.055) 1px, transparent 1px) 0 0 / 25% 100%,
    #050608;
}

.workflow-section .page-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(500px, 1.25fr);
  gap: clamp(70px, 10vw, 170px);
}

.workflow-intro {
  position: sticky;
  top: 150px;
  align-self: start;
}

.workflow-intro > p:last-child {
  max-width: 350px;
  margin: 28px 0 0;
  color: var(--muted);
}

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

.workflow-list li {
  min-height: 154px;
  padding: 26px 10px;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  transition: padding 200ms ease, background 200ms ease;
}

.workflow-list li:hover {
  padding-inline: 22px;
  background: linear-gradient(90deg, rgba(255, 48, 76, 0.08), transparent);
}

.workflow-list b {
  color: var(--red-bright);
  font: 800 11px/1 var(--sans);
}

.workflow-list strong,
.workflow-list span {
  display: block;
}

.workflow-list strong {
  margin-bottom: 9px;
  font: 700 clamp(28px, 3vw, 46px)/1 var(--display);
  text-transform: uppercase;
}

.workflow-list span {
  color: var(--muted);
  font-size: 13px;
}

.workflow-list i {
  color: #606772;
  font-size: 22px;
  font-style: normal;
  transition: color 180ms ease, transform 180ms ease;
}

.workflow-list li:hover i {
  color: var(--red);
  transform: translate(3px, -3px);
}

.trial-section {
  background: #080a0e;
}

.trial-card {
  position: relative;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c1016;
}

.trial-card::before {
  content: "TRIAL";
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 28px;
  color: rgba(255, 255, 255, 0.06);
  font: 900 clamp(80px, 12vw, 180px)/1 var(--display);
  letter-spacing: -0.07em;
  pointer-events: none;
}

.trial-map {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 55% 50%, rgba(54, 199, 255, 0.11), transparent 46%),
    #07090d;
}

.trial-map::after {
  content: "60:00";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: transparent;
  font: 900 clamp(86px, 10vw, 154px)/1 var(--display);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
}

.trial-map svg {
  width: 100%;
  height: 100%;
  opacity: 0.82;
}

.trial-map pattern path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.075);
  stroke-width: 1;
}

.trial-route-shadow,
.trial-route {
  fill: none;
  stroke-linecap: round;
}

.trial-route-shadow { stroke: rgba(0, 0, 0, 0.85); stroke-width: 29; }
.trial-route { stroke: var(--red); stroke-width: 3; stroke-dasharray: 10 7; filter: drop-shadow(0 0 6px rgba(255, 48, 76, 0.6)); }
.trial-map circle { fill: var(--cyan); filter: drop-shadow(0 0 5px var(--cyan)); }

.trial-copy {
  position: relative;
  z-index: 3;
  padding: clamp(50px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(21, 27, 37, 0.96), rgba(9, 12, 17, 0.97));
}

.trial-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.trial-limits {
  padding: 0;
  margin: 38px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.trial-limits li {
  min-height: 95px;
  padding: 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #10151d;
}

.trial-limits strong {
  color: white;
  font: 800 23px/1 var(--display);
}

.trial-limits span {
  color: #878f9b;
  font-size: 9px;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trial-copy .button {
  align-self: flex-start;
}

.pricing-section {
  background:
    radial-gradient(circle at 83% 43%, rgba(255, 48, 76, 0.08), transparent 28rem),
    #050608;
}

.pricing-grid {
  max-width: 1090px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  gap: 18px;
}

.price-card {
  position: relative;
  padding: clamp(35px, 4vw, 58px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 42%), #0b0e13;
}

.price-featured {
  border-color: rgba(255, 48, 76, 0.48);
  background: linear-gradient(145deg, rgba(255, 48, 76, 0.1), transparent 42%), #0d1016;
  box-shadow: 0 28px 80px rgba(255, 48, 76, 0.08);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 9px 14px;
  background: var(--red);
  color: white;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.price-top span {
  font: 800 20px/1 var(--display);
  letter-spacing: 0.08em;
}

.price-top small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.price {
  margin: 38px 0 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.price strong {
  font: 850 clamp(52px, 5.6vw, 84px)/0.9 var(--display);
  letter-spacing: -0.04em;
}

.price span {
  margin-top: 9px;
  color: var(--red-bright);
  font: 800 16px/1 var(--display);
}

.price-card > p {
  min-height: 52px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.price-card ul {
  padding: 28px 0;
  margin: 26px 0 32px;
  list-style: none;
  border-block: 1px solid var(--line);
}

.price-card li {
  display: flex;
  gap: 11px;
  color: #bcc2cb;
  font-size: 12px;
}

.price-card li + li { margin-top: 13px; }
.price-card li span { color: var(--green); }
.price-card .button { width: 100%; }

.license-facts {
  max-width: 1090px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: #080a0d;
}

.license-facts > div {
  min-height: 104px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid var(--line);
}

.license-facts > div:last-child { border-right: 0; }

.license-facts b {
  color: var(--red-bright);
  font: 800 18px/1 var(--display);
}

.license-facts span {
  color: #969da8;
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-section {
  background:
    linear-gradient(135deg, transparent 0 45%, rgba(255, 255, 255, 0.018) 45% 65%, transparent 65%),
    #0a0d12;
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(480px, 1.15fr);
  align-items: center;
  gap: clamp(70px, 9vw, 150px);
}

.payment-copy > p:not(.eyebrow, .facebook-note) {
  max-width: 570px;
  margin: 30px 0;
  color: var(--muted);
}

.facebook-note {
  margin: 22px 0 0;
  color: #7f8793;
  font-size: 12px;
}

.facebook-note a { color: #bcc2ca; }
.facebook-note a[href] { border-bottom: 1px solid #4d555f; }
.facebook-note a[href]:hover { color: white; border-color: var(--red); }

.payment-panel {
  border: 1px solid var(--line);
  background: rgba(6, 8, 11, 0.74);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.payment-panel article {
  min-height: 145px;
  padding: 24px;
  display: grid;
  grid-template-columns: 82px 1fr auto;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}

.network-logo {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.network-logo.airtel { background: #e90019; font-style: italic; }
.network-logo.orange { background: #f47721; font-size: 10px; text-transform: uppercase; }

.payment-panel article small,
.payment-panel article strong,
.payment-panel article span {
  display: block;
}

.payment-panel article small {
  margin-bottom: 5px;
  color: #7d8591;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.payment-panel article strong {
  font: 750 clamp(24px, 2.5vw, 36px)/1.1 var(--display);
  letter-spacing: 0.02em;
}

.payment-panel article span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
}

.copy-button {
  min-width: 72px;
  min-height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: #b9c0ca;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease;
}

.copy-button:hover { border-color: var(--cyan); color: white; }

.security-note {
  padding: 19px 24px;
  display: flex;
  gap: 15px;
  align-items: center;
  background: rgba(255, 48, 76, 0.06);
}

.security-note > span {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 48, 76, 0.5);
  border-radius: 50%;
  color: var(--red-bright);
  font-weight: 900;
}

.security-note p {
  margin: 0;
  color: #a7adb7;
  font-size: 11px;
  line-height: 1.55;
}

.security-note strong { color: white; }

.faq-section {
  background: #050608;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(500px, 1.38fr);
  gap: clamp(60px, 9vw, 150px);
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: 140px;
}

.faq-intro > p:not(.eyebrow) {
  margin: 26px 0 12px;
  color: var(--muted);
}

.faq-intro > a {
  color: white;
  font-size: 13px;
  border-bottom: 1px solid var(--red);
}

.faq-intro > a span { color: var(--red); }

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 24px;
  color: #e5e8ed;
  font: 650 clamp(18px, 1.8vw, 25px)/1.3 var(--display);
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary span {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: #b6bdc7;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary span { border-color: var(--red); }
.faq-list details[open] summary span::after { transform: translate(-50%, -50%) rotate(0); }

.faq-list details p {
  max-width: 760px;
  margin: -9px 55px 34px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.release-hash {
  display: block;
  max-width: 100%;
  margin-top: 12px;
  padding: 10px 12px;
  overflow-wrap: anywhere;
  border: 1px solid var(--line);
  background: #0b0f15;
  color: #bfc7d1;
  font: 600 10px/1.55 ui-monospace, "Cascadia Code", Consolas, monospace;
}

.about-section {
  position: relative;
  min-height: 760px;
  padding-block: clamp(120px, 15vw, 240px);
  overflow: hidden;
  display: flex;
  align-items: center;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 25% 45%, rgba(255, 48, 76, 0.08), transparent 29rem),
    #080a0e;
}

.about-backdrop {
  position: absolute;
  left: -0.07em;
  bottom: -0.17em;
  color: transparent;
  font: 900 min(48vw, 760px)/0.8 var(--display);
  letter-spacing: -0.13em;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.about-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(70px, 12vw, 190px);
}

.about-copy > p:first-child {
  max-width: 680px;
  margin: 0;
  color: #c4cad3;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.7;
}

.about-copy dl {
  margin: 56px 0;
  border-top: 1px solid var(--line);
}

.about-copy dl > div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.about-copy dt {
  color: var(--red-bright);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.about-copy dd {
  margin: 0;
  color: #d1d5dc;
  font-size: 12px;
  line-height: 1.6;
}

.engine-note {
  color: #767e89;
  font-size: 11px;
}

.engine-note a {
  color: #afb6c0;
  border-bottom: 1px solid #4a5059;
}

.engine-note a:hover { color: white; border-color: var(--red); }

.final-cta {
  position: relative;
  min-height: 660px;
  padding-block: 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 68% 50%, rgba(255, 48, 76, 0.16), transparent 26rem),
    linear-gradient(120deg, #080a0e, #050608);
}

.final-lines {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background:
    repeating-linear-gradient(90deg, transparent 0 calc(12.5% - 1px), rgba(255, 255, 255, 0.15) calc(12.5% - 1px) 12.5%),
    linear-gradient(145deg, transparent 0 51%, var(--red) 51% calc(51% + 1px), transparent calc(51% + 1px));
  mask-image: linear-gradient(90deg, transparent, black 25% 76%, transparent);
}

.final-cta .page-shell {
  position: relative;
}

.final-cta h2 {
  max-width: 1080px;
  font-size: clamp(62px, 9vw, 142px);
  line-height: 0.87;
}

.final-actions > span {
  padding-left: 20px;
  color: #757d88;
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.final-actions > span strong { color: #c5cbd4; font-size: 11px; }

.site-footer {
  background: #030405;
}

.footer-main {
  min-height: 170px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 50px;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.footer-main nav a {
  color: #858d98;
  font-size: 10px;
  font-weight: 650;
}

.footer-main nav a:hover { color: white; }

.footer-contact {
  justify-self: end;
}

.footer-contact span,
.footer-contact a { display: block; text-align: right; }
.footer-contact span { color: #666e79; font-size: 7px; font-weight: 800; letter-spacing: 0.2em; }
.footer-contact a { margin-top: 4px; font-size: 11px; font-weight: 700; }
.footer-contact a[href]:hover { color: var(--red-bright); }

.footer-legal {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  border-top: 1px solid var(--line);
  color: #555d68;
  font-size: 9px;
}

.footer-legal > span:nth-child(2) { text-align: center; }

.footer-legal button {
  border: 0;
  background: transparent;
  color: #8d949e;
  font-size: 9px;
  cursor: pointer;
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: white;
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.25);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 48px rgba(37, 211, 102, 0.34);
}

.whatsapp-float svg {
  width: 28px;
  fill: currentColor;
}

.toast {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: 28px;
  min-width: 220px;
  padding: 12px 18px;
  transform: translate(-50%, 150%);
  border: 1px solid var(--line-strong);
  background: rgba(12, 16, 22, 0.96);
  color: white;
  font-size: 12px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
  transition: transform 220ms ease;
}

.toast.is-visible { transform: translate(-50%, 0); }

/* RTS multi-product homepage */
.home-page {
  background:
    radial-gradient(circle at 14% 34%, rgba(255, 48, 76, 0.06), transparent 26rem),
    #050608;
}

.home-hero {
  position: relative;
  min-height: max(860px, 100svh);
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
  background: #030405;
}

.home-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(transparent, #050608 90%);
}

.home-hero-media {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.58) contrast(1.08) saturate(0.9);
}

.home-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,3,4,.98) 0, rgba(2,3,4,.82) 36%, rgba(2,3,4,.22) 66%, rgba(2,3,4,.42)),
    linear-gradient(180deg, rgba(2,3,4,.32), transparent 45%, rgba(2,3,4,.76));
}

.home-hero-content {
  position: relative;
  z-index: 3;
  padding-top: var(--header-height);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .75fr);
  align-items: center;
  gap: 70px;
}

.home-hero-content > div:first-child {
  max-width: 830px;
  padding-block: 90px 120px;
}

.home-hero h1 {
  margin: 0;
  font: 900 clamp(68px, 7.6vw, 132px)/.78 var(--display);
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.home-hero h1 span,
.home-hero h1 strong,
.home-hero h1 em {
  display: block;
}

.home-hero h1 span {
  margin-bottom: 24px;
  font-size: .36em;
  font-weight: 450;
  letter-spacing: -.01em;
}

.home-hero h1 strong {
  color: white;
}

.home-hero h1 em {
  margin-top: 12px;
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(255,255,255,.72);
}

.home-hero-content > div:first-child > p:not(.eyebrow, .hero-lead-mg) {
  max-width: 620px;
  margin: 38px 0 0;
  color: #c2c8d1;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.7;
}

.home-orbit {
  position: relative;
  justify-self: end;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  opacity: .88;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
}

.orbit-ring-a {
  inset: 4%;
  border-left-color: var(--red);
  border-right-color: var(--cyan);
  animation: spin 24s linear infinite;
}

.orbit-ring-b {
  inset: 22%;
  border-style: dashed;
  border-color: rgba(255,255,255,.22);
  animation: spin 18s linear infinite reverse;
}

.orbit-ring-a::before,
.orbit-ring-a::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  box-shadow: 0 0 15px currentColor;
}

.orbit-ring-a::before { top: 10%; left: 17%; background: var(--red); color: var(--red); }
.orbit-ring-a::after { right: 8%; bottom: 24%; background: var(--cyan); color: var(--cyan); }

.orbit-center {
  width: 142px;
  height: 142px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(5,7,10,.72);
  backdrop-filter: blur(12px);
  clip-path: polygon(14% 0, 100% 0, 100% 86%, 86% 100%, 0 100%, 0 14%);
}

.orbit-center b {
  font: 900 52px/.9 var(--display);
}

.orbit-center span {
  margin-top: 10px;
  color: #7e8794;
  font-size: 8px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .18em;
}

.orbit-node {
  position: absolute;
  min-width: 64px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: rgba(5,7,10,.8);
  color: #abb3bd;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
  text-align: center;
}

.orbit-node-a { left: 0; top: 38%; }
.orbit-node-b { right: 0; bottom: 30%; color: #ff9a4c; }

.home-hero-bottom {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #68717d;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .22em;
}

.home-hero-bottom i {
  flex: 1 1 auto;
  max-width: 85px;
  height: 1px;
  background: var(--line);
}

.home-intro {
  position: relative;
  overflow: hidden;
  background: #080a0e;
}

.home-intro::after {
  content: "RTS";
  position: absolute;
  right: -.04em;
  bottom: -.22em;
  color: transparent;
  font: 900 min(38vw, 600px)/1 var(--display);
  letter-spacing: -.1em;
  -webkit-text-stroke: 1px rgba(255,255,255,.03);
}

.home-intro-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(70px, 11vw, 180px);
  align-items: end;
}

.home-intro h2,
.products-section h2,
.vision-heading h2,
.home-contact h2 {
  margin: 0;
  font: 850 clamp(48px, 5.8vw, 94px)/.94 var(--display);
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.home-intro h2 em,
.vision-heading h2 em,
.home-contact h2 em {
  color: #737b87;
  font-style: normal;
  font-weight: 350;
}

.home-intro-copy > p {
  margin: 0 0 48px;
  color: #bbc1ca;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.65;
}

.home-intro-copy dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.home-intro-copy dl > div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.home-intro-copy dt {
  color: var(--red-bright);
  font: 850 27px/1 var(--display);
}

.home-intro-copy dd {
  margin: 0;
  color: #8d95a0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.products-section {
  background:
    radial-gradient(circle at 80% 38%, rgba(255,122,24,.06), transparent 30rem),
    #050608;
}

.software-showcase {
  position: relative;
  min-height: 700px;
  margin-top: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: #090c11;
  isolation: isolate;
}

.software-showcase + .software-showcase {
  margin-top: 24px;
}

.software-media,
.software-shade {
  position: absolute;
  inset: 0;
}

.software-media {
  z-index: -3;
}

.software-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.64) contrast(1.08);
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}

.software-showcase:hover .software-media img {
  transform: scale(1.025);
  filter: brightness(.73) contrast(1.08);
}

.software-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4,5,7,.98) 0, rgba(4,5,7,.9) 36%, rgba(4,5,7,.24) 68%, rgba(4,5,7,.18)),
    linear-gradient(180deg, transparent 55%, rgba(4,5,7,.75));
}

.software-bussid .software-shade {
  background:
    linear-gradient(90deg, rgba(4,5,7,.98) 0, rgba(4,5,7,.88) 38%, rgba(4,5,7,.18) 72%),
    linear-gradient(180deg, rgba(4,5,7,.1), rgba(4,5,7,.68));
}

.software-number {
  position: absolute;
  top: 30px;
  right: 34px;
  color: rgba(255,255,255,.2);
  font: 850 11px/1 var(--sans);
  letter-spacing: .22em;
}

.software-content {
  width: min(590px, 56%);
  margin-left: clamp(36px, 7vw, 110px);
  padding-block: 80px;
}

.software-badge {
  width: max-content;
  margin-bottom: 24px;
  padding: 9px 12px;
  border: 1px solid rgba(255,48,76,.38);
  color: var(--red-bright);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .17em;
}

.software-bussid .software-badge {
  border-color: rgba(255,122,24,.45);
  color: #ff9a4c;
}

.software-content h3 {
  margin: 0;
  font: 900 clamp(64px, 7.2vw, 116px)/.75 var(--display);
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.software-content h3 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.76);
}

.software-content > p {
  max-width: 560px;
  margin: 34px 0 0;
  color: #bac0c9;
  font-size: 15px;
  line-height: 1.75;
}

.software-content ul {
  padding: 0;
  margin: 30px 0 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.software-content li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: rgba(5,7,10,.4);
  color: #9ca4af;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.button-orange {
  background: #f47721;
  color: white;
  box-shadow: 0 12px 36px rgba(244,119,33,.18);
}

.button-orange:hover {
  background: #ff8735;
}

.software-version {
  position: absolute;
  right: 34px;
  bottom: 30px;
  color: white;
  font: 850 30px/.8 var(--display);
  text-align: right;
}

.software-version span {
  color: #747c88;
  font: 750 7px/1 var(--sans);
  letter-spacing: .18em;
}

.vision-section {
  background:
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px) 0 0 / 16.666% 100%,
    #090c11;
}

.vision-heading {
  max-width: 980px;
}

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

.vision-grid article {
  min-height: 300px;
  padding: 35px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5,7,10,.42);
}

.vision-grid b {
  color: var(--red-bright);
  font-size: 9px;
  letter-spacing: .17em;
}

.vision-grid h3 {
  margin: 80px 0 16px;
  font: 750 32px/1 var(--display);
  text-transform: uppercase;
}

.vision-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.home-contact {
  position: relative;
  min-height: 720px;
  padding-block: 130px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,48,76,.12), transparent 29rem),
    #050608;
}

.home-contact-art {
  position: absolute;
  right: -.03em;
  bottom: -.2em;
  color: transparent;
  font: 900 min(50vw, 820px)/.8 var(--display);
  letter-spacing: -.12em;
  -webkit-text-stroke: 1px rgba(255,255,255,.035);
}

.home-contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: clamp(70px, 10vw, 160px);
}

.home-contact-actions > p {
  margin: 0 0 30px;
  color: #afb6c0;
  font-size: 17px;
  line-height: 1.7;
}

.home-contact-actions > span {
  display: block;
  margin-top: 24px;
  color: #717986;
  font-size: 11px;
  line-height: 1.8;
}

.home-contact-actions > span strong,
.home-contact-actions > span a {
  color: #b8bfc9;
}

/* BUSSID Mod Tool product page */
.bussid-page {
  --red: #f47721;
  --red-bright: #ff984a;
  background:
    radial-gradient(circle at 85% 10%, rgba(244,119,33,.08), transparent 25rem),
    #050608;
}

.bussid-page .brand-mark::after {
  background: #f47721;
}

.bussid-hero {
  position: relative;
  min-height: max(850px, 100svh);
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
  background: #040609;
}

.bussid-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 27%;
  background: linear-gradient(transparent, #050608 90%);
}

.bussid-hero-media {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.bussid-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.68) contrast(1.08) saturate(.96);
}

.bussid-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,3,5,.99) 0, rgba(2,3,5,.9) 34%, rgba(2,3,5,.2) 64%, rgba(2,3,5,.16)),
    linear-gradient(180deg, rgba(2,3,5,.28), transparent 52%, rgba(2,3,5,.64));
}

.bussid-hero-content {
  position: relative;
  z-index: 3;
  padding-top: var(--header-height);
}

.bussid-hero-content > div {
  max-width: 720px;
  padding-block: 95px 120px;
}

.bussid-product-kicker {
  width: max-content;
  margin-bottom: 28px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(244,119,33,.42);
  background: rgba(5,8,12,.52);
  color: #c8ced7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.bussid-product-kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
}

.bussid-product-kicker b {
  color: var(--red-bright);
}

.bussid-hero h1 {
  margin: 0;
  font: 900 clamp(70px, 7.4vw, 126px)/.77 var(--display);
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.bussid-hero h1 span,
.bussid-hero h1 strong,
.bussid-hero h1 em {
  display: block;
}

.bussid-hero h1 span {
  margin-bottom: 20px;
  font-size: .36em;
  font-weight: 450;
  letter-spacing: 0;
}

.bussid-hero h1 em {
  margin-top: 12px;
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(255,255,255,.78);
}

.bussid-hero-content > div > p:not(.eyebrow, .hero-lead-mg) {
  max-width: 630px;
  margin: 36px 0 0;
  color: #c0c6cf;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.7;
}

.bussid-hero-meta {
  max-width: 630px;
  padding: 0;
  margin: 45px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}

.bussid-hero-meta li {
  min-height: 78px;
  padding-top: 18px;
  display: flex;
  gap: 12px;
  border-right: 1px solid var(--line);
}

.bussid-hero-meta li + li { padding-left: 18px; }
.bussid-hero-meta li:last-child { border-right: 0; }
.bussid-hero-meta b { color: var(--red-bright); font: 850 14px/1.2 var(--display); }
.bussid-hero-meta span { color: #8e97a3; font-size: 9px; line-height: 1.4; letter-spacing: .08em; text-transform: uppercase; }

.bussid-coordinate {
  position: absolute;
  z-index: 4;
  right: 3%;
  bottom: 27px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255,255,255,.4);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .2em;
}

.bussid-coordinate i {
  width: 42px;
  height: 1px;
  background: rgba(255,255,255,.15);
}

.bussid-tool-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 60%, rgba(38,136,186,.12), transparent 34rem),
    #080b10;
}

.bussid-window-stage {
  position: relative;
  width: min(1240px, 92%);
  margin-inline: auto;
}

.bussid-window-glow {
  position: absolute;
  inset: 10% 12% -12%;
  background: rgba(31,106,165,.16);
  filter: blur(90px);
}

.bussid-window {
  position: relative;
  z-index: 2;
  padding: 7px;
  border: 1px solid rgba(89,173,224,.26);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.01));
  box-shadow: 0 60px 130px rgba(0,0,0,.58);
}

.bussid-window-bar {
  height: 48px;
  padding: 0 17px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #0a0e14;
  color: #818a96;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .17em;
}

.bussid-window-bar > span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #c1c8d1;
}

.bussid-window-bar > span i {
  width: 10px;
  height: 10px;
  border: 2px solid var(--red);
  transform: rotate(45deg);
}

.bussid-window-bar > b {
  color: var(--red-bright);
  font-size: 8px;
}

.bussid-window-bar > div {
  justify-self: end;
  display: flex;
  gap: 12px;
}

.bussid-window-bar > div i {
  width: 8px;
  height: 8px;
  border: 1px solid #5b6470;
}

.bussid-window > img {
  width: 100%;
  height: auto;
  background: #222;
}

.bussid-callout {
  position: absolute;
  z-index: 4;
  min-width: 215px;
  padding: 15px 18px;
  border: 1px solid var(--line-strong);
  background: rgba(7,10,14,.9);
  box-shadow: 0 20px 55px rgba(0,0,0,.36);
  backdrop-filter: blur(12px);
}

.bussid-callout::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 50px;
  height: 2px;
  background: var(--red);
}

.bussid-callout small,
.bussid-callout strong { display: block; }
.bussid-callout small { color: var(--red-bright); font-size: 7px; font-weight: 850; letter-spacing: .2em; }
.bussid-callout strong { margin-top: 5px; font-size: 12px; }
.callout-a { left: -55px; top: 27%; }
.callout-b { right: -54px; bottom: 16%; }

.mod-features {
  background: #050608;
}

.mod-feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.mod-feature {
  position: relative;
  min-height: 360px;
  padding: 30px;
  grid-column: span 4;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), transparent 45%),
    #0d1118;
  transition: transform .22s ease, border-color .22s ease;
}

.mod-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.25);
}

.mod-feature-large { grid-column: span 8; min-height: 430px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: end; gap: 45px; }
.mod-feature-wide { grid-column: span 8; min-height: 400px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 40px; }
.mod-feature-safety { grid-column: span 4; }
.mod-feature-orange {
  background:
    radial-gradient(circle at 66% 25%, rgba(244,119,33,.19), transparent 30%),
    linear-gradient(145deg, #14171e, #0b0e13);
}

.mod-index {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #505864;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
}

.mini-label {
  margin: 0 0 13px !important;
  color: var(--red-bright) !important;
  font-size: 8px !important;
  font-weight: 850;
  letter-spacing: .18em;
}

.mod-feature h3 {
  margin: 0 0 15px;
  font: 750 clamp(27px, 3vw, 46px)/.98 var(--display);
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.mod-feature h3 em {
  color: #737c88;
  font-style: normal;
  font-weight: 350;
}

.mod-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.mod-feature ul {
  padding: 0;
  margin: 27px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.mod-feature li {
  padding: 7px 9px;
  border: 1px solid var(--line);
  color: #aab1bb;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mesh-sphere {
  position: relative;
  width: 230px;
  height: 230px;
  justify-self: center;
  border: 1px solid rgba(54,199,255,.34);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 50% 50%, transparent 0 20px, rgba(54,199,255,.11) 21px 22px),
    linear-gradient(90deg, transparent 49.5%, rgba(54,199,255,.35) 50%, transparent 50.5%);
  box-shadow: inset 0 0 55px rgba(54,199,255,.07), 0 0 40px rgba(54,199,255,.05);
}

.mesh-sphere::before,
.mesh-sphere::after {
  content: "";
  position: absolute;
  inset: 25% -3%;
  border: 1px solid rgba(54,199,255,.28);
  border-radius: 50%;
}

.mesh-sphere::after {
  inset: -3% 25%;
}

.mesh-sphere i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
}

.mesh-sphere i:nth-child(1) { left: 16%; top: 35%; }
.mesh-sphere i:nth-child(2) { right: 14%; top: 52%; }
.mesh-sphere i:nth-child(3) { left: 48%; bottom: 5%; }

.texture-tiles {
  height: 170px;
  margin: 18px 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  transform: perspective(500px) rotateX(54deg) rotateZ(-5deg);
}

.texture-tiles i {
  border: 1px solid rgba(255,255,255,.15);
  background:
    linear-gradient(135deg, rgba(255,255,255,.14), transparent),
    #161c25;
}

.texture-tiles i:nth-child(2) { background: linear-gradient(135deg, #f47721, #60280a); }
.texture-tiles i:nth-child(3) { background: linear-gradient(135deg, #36c7ff, #102c4a); }
.texture-tiles i:nth-child(4) { background: repeating-linear-gradient(45deg, #181d25 0 8px, #2d333c 8px 16px); }

.transform-axis {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 14px 0 35px 30px;
}

.transform-axis::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%,-50%) rotate(45deg);
  border: 1px solid white;
}

.transform-axis i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90px;
  height: 2px;
  transform-origin: left;
}

.transform-axis i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  border-left: 8px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.transform-axis i:nth-child(1) { background: #ff4056; color: #ff4056; transform: rotate(0); }
.transform-axis i:nth-child(2) { background: #4ee39f; color: #4ee39f; transform: rotate(-90deg); }
.transform-axis i:nth-child(3) { background: #46b9ff; color: #46b9ff; transform: rotate(135deg); }

.wheel-lock {
  position: relative;
  width: 125px;
  height: 125px;
  margin: 10px 0 35px;
  border: 12px solid #242b34;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px #7b8590, 0 0 0 1px rgba(255,255,255,.12);
}

.wheel-lock::before,
.wheel-lock::after {
  content: "";
  position: absolute;
  inset: 28%;
  border: 2px solid var(--red);
  border-radius: 50%;
}

.wheel-lock::after {
  inset: 50% auto auto 50%;
  width: 34px;
  height: 42px;
  transform: translate(-50%,-50%);
  border: 1px solid #aab2bd;
  border-radius: 4px;
}

.scan-visual {
  position: relative;
  height: 260px;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.055) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.055) 0 1px, transparent 1px 28px);
}

.scan-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(244,119,33,.18), transparent);
  animation: scanline 3.2s ease-in-out infinite;
}

@keyframes scanline {
  0%,100% { transform: translateY(-70%); }
  50% { transform: translateY(70%); }
}

.scan-visual i {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid var(--cyan);
  background: #0d1822;
  box-shadow: 0 0 12px rgba(54,199,255,.45);
}

.scan-visual i:nth-child(1) { left: 12%; top: 18%; }
.scan-visual i:nth-child(2) { left: 32%; top: 63%; }
.scan-visual i:nth-child(3) { left: 48%; top: 32%; }
.scan-visual i:nth-child(4) { right: 28%; top: 70%; }
.scan-visual i:nth-child(5) { right: 12%; top: 20%; }
.scan-visual i:nth-child(6) { right: 8%; bottom: 8%; border-color: var(--red); }

.shield-check {
  width: 110px;
  height: 130px;
  margin: 8px 0 35px;
  display: grid;
  place-items: center;
  clip-path: polygon(50% 0, 95% 17%, 86% 77%, 50% 100%, 14% 77%, 5% 17%);
  background: linear-gradient(145deg, rgba(72,217,155,.18), rgba(72,217,155,.03));
  border: 1px solid rgba(72,217,155,.4);
  color: var(--green);
  font-size: 35px;
}

.mod-workflow {
  background:
    radial-gradient(circle at 10% 50%, rgba(244,119,33,.08), transparent 26rem),
    #090c11;
}

.mod-steps {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.mod-steps li {
  min-height: 300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5,7,10,.42);
}

.mod-steps b {
  color: var(--red-bright);
  font-size: 10px;
  letter-spacing: .18em;
}

.mod-steps strong,
.mod-steps span { display: block; }
.mod-steps strong { margin-bottom: 14px; font: 750 30px/1 var(--display); text-transform: uppercase; }
.mod-steps span { color: var(--muted); font-size: 12px; line-height: 1.65; }

.bussid-license {
  background:
    linear-gradient(140deg, transparent 0 48%, rgba(244,119,33,.06) 48% 67%, transparent 67%),
    #050608;
}

.bussid-license-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(70px, 10vw, 160px);
}

.bussid-license h2,
.bussid-safety h2,
.bussid-final h2 {
  margin: 0;
  font: 850 clamp(48px, 5.8vw, 94px)/.94 var(--display);
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.bussid-license h2 em,
.bussid-safety h2 em,
.bussid-final h2 em {
  color: #747d89;
  font-style: normal;
  font-weight: 350;
}

.bussid-license-grid > div:first-child > p:not(.eyebrow) {
  max-width: 640px;
  margin: 30px 0;
  color: var(--muted);
}

.license-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
}

.license-specs > div {
  min-height: 170px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #0c1016;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.license-specs > div:nth-child(even) { border-right: 0; }
.license-specs > div:nth-child(n+3) { border-bottom: 0; }
.license-specs b { color: var(--red-bright); font: 850 34px/1 var(--display); }
.license-specs span { margin-top: 10px; color: #8c95a0; font-size: 10px; line-height: 1.4; letter-spacing: .1em; text-transform: uppercase; }

.bussid-safety {
  background: #0a0d12;
}

.bussid-safety-grid {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: clamp(70px, 11vw, 180px);
}

.bussid-safety-grid > div:last-child > p {
  margin: 0;
  color: #b1b8c2;
  line-height: 1.8;
}

.bussid-safety-grid ul {
  padding: 28px 0 28px 20px;
  margin: 30px 0;
  border-block: 1px solid var(--line);
}

.bussid-safety-grid li {
  color: #939ca8;
  font-size: 13px;
}

.bussid-safety-grid li + li { margin-top: 10px; }
.independent-note { color: #737c88 !important; font-size: 11px; }

.bussid-final {
  min-height: 700px;
  padding-block: 120px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 12.5% 100%,
    radial-gradient(circle at 75% 50%, rgba(244,119,33,.17), transparent 26rem),
    #050608;
}

.bussid-final h2 {
  max-width: 1100px;
  font-size: clamp(62px, 8.8vw, 138px);
  line-height: .83;
}

.bussid-final .button { margin-top: 45px; }

/* Information, licence and privacy page */
.legal-page {
  background:
    radial-gradient(circle at 80% 4%, rgba(255, 48, 76, 0.08), transparent 28rem),
    #07090c;
}

.legal-nav-shell {
  grid-template-columns: 1fr auto;
}

.legal-nav-shell .nav-cta {
  display: inline-flex;
}

.legal-hero {
  min-height: 570px;
  padding-top: calc(var(--header-height) + 100px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent 0 calc(12.5% - 1px), rgba(255,255,255,.025) calc(12.5% - 1px) 12.5%) 0 0 / 25% 100%,
    linear-gradient(155deg, transparent 0 61%, rgba(255, 48, 76, 0.1) 61% calc(61% + 1px), transparent calc(61% + 1px));
}

.legal-hero h1 {
  margin: 0;
  font: 850 clamp(54px, 7vw, 108px)/0.91 var(--display);
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.legal-hero h1 em {
  color: #7e8691;
  font-style: normal;
  font-weight: 350;
}

.legal-hero .page-shell > p:last-child {
  max-width: 680px;
  margin: 34px 0 0;
  color: var(--muted);
}

.legal-layout {
  padding-block: 100px 150px;
  display: grid;
  grid-template-columns: 230px minmax(0, 820px);
  justify-content: space-between;
  gap: 80px;
}

.legal-layout aside {
  position: sticky;
  top: 120px;
  align-self: start;
  display: grid;
  border-top: 1px solid var(--line);
}

.legal-layout aside a {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: #7f8792;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.legal-layout aside a:hover {
  color: white;
}

.legal-content > section {
  padding-bottom: 70px;
  margin-bottom: 70px;
  scroll-margin-top: 120px;
  border-bottom: 1px solid var(--line);
}

.legal-content > section:last-child {
  margin-bottom: 0;
}

.legal-index {
  margin: 0 0 15px;
  color: var(--red-bright) !important;
  font-size: 9px !important;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.legal-content h2 {
  margin: 0 0 28px;
  font: 750 clamp(32px, 4vw, 54px)/1 var(--display);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.legal-content h3 {
  margin: 34px 0 8px;
  color: #dfe3e9;
  font: 700 21px/1.2 var(--display);
  text-transform: uppercase;
}

.legal-content p,
.legal-content li {
  color: #9ca4af;
  font-size: 14px;
  line-height: 1.8;
}

.legal-content p strong,
.legal-content li strong {
  color: #dce1e8;
}

.legal-content a {
  color: #d5dbe3;
  border-bottom: 1px solid var(--red);
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 10px;
}

.legal-callout {
  margin: 30px 0;
  padding: 26px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 48, 76, 0.28);
  background: rgba(255, 48, 76, 0.055);
}

.legal-callout strong {
  font: 750 22px/1.2 var(--display);
}

.legal-callout span {
  margin-top: 6px;
  color: #9ca4af;
  font-size: 12px;
}

.legal-content address {
  color: #9ca4af;
  font-size: 14px;
  font-style: normal;
  line-height: 2;
}

.legal-footer .footer-legal a {
  justify-self: end;
  color: #8d949e;
}

/* Static 404 */
.error-page {
  min-height: 100svh;
  background: #050608;
}

.error-page main {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 68% 50%, rgba(255, 48, 76, 0.12), transparent 25rem),
    linear-gradient(145deg, #080b10, #030405);
}

.error-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 70px 70px;
  transform: perspective(550px) rotateX(62deg) scale(1.5) translateY(30%);
  transform-origin: bottom;
}

.error-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 40px));
  padding-block: 60px;
  text-align: center;
}

.error-content .brand {
  justify-content: center;
  margin-bottom: 50px;
  text-align: left;
}

.error-code {
  margin: 0;
  color: var(--red-bright);
  font: 800 12px/1 var(--sans);
  letter-spacing: 0.3em;
}

.error-content h1 {
  margin: 20px 0 25px;
  font: 850 clamp(52px, 9vw, 100px)/0.9 var(--display);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.error-content h1 em {
  color: #7d8590;
  font-style: normal;
  font-weight: 350;
}

.error-content > p:not(.error-code) {
  max-width: 580px;
  margin: 0 auto 35px;
  color: var(--muted);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
}

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

.qa-capture [data-reveal] {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 1180px) {
  :root { --shell: min(100% - 42px, 1120px); }

  .nav-shell { gap: 28px; }
  .main-nav { gap: 20px; }
  .nav-cta { display: none; }

  .hero-content { grid-template-columns: minmax(0, 1fr) minmax(260px, 0.65fr); }
  .hero-hud { width: 34vw; }

  .product-float-a { left: -18px; }
  .product-float-b { right: -18px; }

  .feature-card { grid-column: span 6; }
  .feature-wide { grid-column: span 12; }
  .feature-tall { grid-row: auto; }

  .trial-card { grid-template-columns: 0.8fr 1.2fr; }

  .payment-layout { gap: 60px; }

  .home-hero-content { grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr); gap: 30px; }
  .home-orbit { width: 34vw; }
  .software-content { width: min(620px, 64%); }
  .bussid-window-stage { width: 96%; }
  .callout-a { left: -18px; }
  .callout-b { right: -18px; }
  .mod-feature { grid-column: span 6; }
  .mod-feature-large,
  .mod-feature-wide { grid-column: span 12; }
  .mod-feature-safety { grid-column: span 6; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }

  .nav-shell { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; justify-self: end; }
  .site-header.menu-open .menu-toggle > span:nth-of-type(2) { transform: translateY(3.5px) rotate(45deg); }
  .site-header.menu-open .menu-toggle > span:nth-of-type(3) { transform: translateY(-3.5px) rotate(-45deg); }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    max-height: 0;
    padding-inline: 22px;
    overflow: hidden;
    display: grid;
    gap: 0;
    border-bottom: 1px solid transparent;
    background: rgba(5, 6, 8, 0.98);
    visibility: hidden;
    pointer-events: none;
    transition: max-height 260ms ease, padding 260ms ease, border-color 260ms ease;
  }

  .site-header.menu-open .main-nav {
    max-height: 430px;
    padding-block: 15px 24px;
    border-color: var(--line);
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav a {
    min-height: 54px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font: 650 20px/1 var(--display);
    text-transform: uppercase;
  }

  .main-nav a::after { display: none; }

  .hero {
    min-height: 900px;
    align-items: flex-end;
  }

  .hero-media img { object-position: 64% center; }
  .hero-media::before {
    background:
      linear-gradient(90deg, rgba(2, 3, 4, 0.94), rgba(2, 3, 4, 0.22)),
      linear-gradient(180deg, rgba(2, 3, 4, 0.22) 0, rgba(2, 3, 4, 0.14) 35%, rgba(2, 3, 4, 0.96) 72%, #050608 100%);
  }

  .hero-content {
    display: block;
    padding-top: 180px;
  }

  .hero-copy { padding: 130px 0 100px; }
  .hero-hud { display: none; }
  .hero-lead { max-width: 560px; }

  .hero-footer { justify-content: center; white-space: nowrap; }
  .hero-footer i { width: 14px; }

  .split-heading,
  .product-summary,
  .workflow-section .page-shell,
  .payment-layout,
  .faq-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .split-heading { gap: 30px; }
  .product-stage,
  .product-summary { width: 100%; }
  .product-summary { grid-template-columns: 110px 1fr; gap: 26px; }
  .product-summary > p:last-child { grid-column: 2; }
  .product-logo-wrap { width: 100px; }
  .product-logo-wrap img { width: 88px; height: 88px; }

  .workflow-section .page-shell { gap: 70px; }
  .workflow-intro,
  .faq-intro { position: static; }

  .trial-card { grid-template-columns: 1fr; }
  .trial-map { min-height: 360px; }
  .trial-copy { border-top: 1px solid var(--line); border-left: 0; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 650px; }
  .license-facts { grid-template-columns: repeat(2, 1fr); max-width: 650px; }
  .license-facts > div:nth-child(2) { border-right: 0; }
  .license-facts > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .payment-layout,
  .faq-layout,
  .about-layout { gap: 72px; }

  .about-section { min-height: auto; }

  .footer-main { grid-template-columns: 1fr auto; }
  .footer-main nav { grid-column: 1 / -1; grid-row: 2; padding-bottom: 30px; }
  .footer-contact { grid-column: 2; grid-row: 1; }
  .footer-legal { grid-template-columns: 1fr auto; padding-block: 20px; }
  .footer-legal > span:nth-child(2) { grid-column: 1 / -1; grid-row: 2; text-align: left; }
  .footer-legal button { grid-column: 2; grid-row: 1; }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .legal-layout aside {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-layout aside a:nth-child(odd) {
    border-right: 1px solid var(--line);
    padding-right: 15px;
  }

  .legal-layout aside a:nth-child(even) {
    padding-left: 15px;
  }

  .home-hero {
    min-height: 900px;
    align-items: flex-end;
  }

  .home-hero-media img { object-position: 65% center; }
  .home-hero-media::after {
    background:
      linear-gradient(90deg, rgba(2,3,4,.92), rgba(2,3,4,.22)),
      linear-gradient(180deg, rgba(2,3,4,.18), rgba(2,3,4,.12) 35%, rgba(2,3,4,.95) 76%, #050608);
  }

  .home-hero-content { display: block; padding-top: 180px; }
  .home-hero-content > div:first-child { padding: 180px 0 100px; }
  .home-orbit { display: none; }
  .home-hero-bottom { justify-content: center; white-space: nowrap; overflow: hidden; }
  .home-hero-bottom i { width: 14px; flex: 0 0 14px; }

  .home-intro-grid,
  .home-contact-grid { grid-template-columns: 1fr; gap: 65px; }

  .software-showcase { min-height: 680px; }
  .software-content { width: min(650px, 78%); }
  .vision-grid { grid-template-columns: 1fr; }
  .vision-grid article { min-height: 235px; }
  .vision-grid h3 { margin-top: 52px; }

  .bussid-hero {
    min-height: 900px;
    align-items: flex-end;
  }

  .bussid-hero-media img { object-position: 65% center; }
  .bussid-hero-media::after {
    background:
      linear-gradient(90deg, rgba(2,3,5,.92), rgba(2,3,5,.18)),
      linear-gradient(180deg, rgba(2,3,5,.15), rgba(2,3,5,.1) 38%, rgba(2,3,5,.96) 78%, #050608);
  }

  .bussid-hero-content { padding-top: 190px; }
  .bussid-hero-content > div { padding: 185px 0 100px; }
  .bussid-coordinate { display: none; }
  .bussid-window-stage { width: 100%; }
  .bussid-callout { display: none; }

  .mod-feature { grid-column: span 6; }
  .mod-feature-large,
  .mod-feature-wide { grid-column: span 12; }
  .mod-feature-safety { grid-column: span 6; }
  .mod-steps { grid-template-columns: repeat(2, 1fr); }
  .bussid-license-grid,
  .bussid-safety-grid { grid-template-columns: 1fr; gap: 70px; }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 32px);
    --header-height: 68px;
  }

  body { font-size: 15px; }
  .brand-copy strong { font-size: 12px; }
  .brand-mark { width: 34px; height: 34px; }
  .menu-toggle { width: 44px; height: 44px; }

  .hero { min-height: 860px; }
  .hero-media img { object-position: 68% top; }
  .hero-copy { padding-top: 250px; padding-bottom: 90px; }
  .eyebrow { font-size: 9px; letter-spacing: 0.18em; }
  .hero h1 { font-size: clamp(46px, 14.4vw, 70px); }
  .hero h1 span { margin-bottom: 15px; font-size: 0.36em; }
  .hero h1 strong { font-size: 0.59em; }
  .hero h1 strong::after { width: 26px; height: 4px; margin-left: 9px; }
  .hero-lead { margin-top: 28px; font-size: 15px; }

  .hero-actions { align-items: stretch; }
  .hero-actions .button { flex: 1 1 100%; }
  .button { min-height: 54px; }

  .hero-meta { margin-top: 38px; }
  .hero-meta li { min-height: 72px; padding-inline: 8px 4px; gap: 6px; }
  .hero-meta li + li { padding-left: 8px; }
  .hero-meta span { font-size: 8px; }
  .hero-meta b { font-size: 8px; }

  .hero-footer { bottom: 17px; width: calc(100% - 32px); gap: 7px; overflow: hidden; font-size: 7px; letter-spacing: 0.13em; }
  .hero-footer i { width: 6px; flex: 0 0 6px; }

  .signal-band > div { height: 50px; gap: 25px; font-size: 8px; }
  .section-space { padding-block: 92px; }

  .section-heading h2,
  .workflow-intro h2,
  .trial-copy h2,
  .payment-copy h2,
  .faq-intro h2,
  .about-layout h2 { font-size: clamp(39px, 12vw, 58px); }

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

  .product-float { display: none; }
  .window-frame { padding: 3px; }
  .window-bar { height: 36px; padding: 0 10px; grid-template-columns: 1fr auto; }
  .window-bar > span:nth-child(2) { display: none; }
  .window-controls { gap: 7px; }
  .window-controls i { width: 6px; height: 6px; }
  .product-summary { margin-top: 35px; padding-top: 28px; grid-template-columns: 78px 1fr; }
  .product-logo-wrap { width: 72px; }
  .product-logo-wrap img { width: 64px; height: 64px; }
  .product-summary h3 { font-size: 25px; }
  .product-summary > p:last-child { grid-column: 1 / -1; }

  .feature-grid { display: block; }
  .feature-card { min-height: 300px; padding: 24px; }
  .feature-card + .feature-card { margin-top: 10px; }
  .feature-wide:first-child,
  .feature-dark { display: block; min-height: 360px; }
  .route-icon { width: 72%; margin: 34px auto 38px; }
  .terrain-visual { margin-inline: -24px; }
  .roadside-visual { display: none; }

  .workflow-list li { min-height: 125px; grid-template-columns: 36px 1fr auto; gap: 10px; }
  .workflow-list strong { font-size: 27px; }

  .trial-card::before { font-size: 74px; }
  .trial-map { min-height: 280px; }
  .trial-copy { padding: 42px 24px; }
  .trial-limits { grid-template-columns: 1fr; }
  .trial-limits li { min-height: 72px; }
  .trial-copy .button { width: 100%; }

  .price-card { padding: 34px 24px; }
  .popular-badge { position: static; width: max-content; margin: -34px -24px 28px auto; }
  .price strong { font-size: 56px; }
  .license-facts { grid-template-columns: 1fr; }
  .license-facts > div { min-height: 86px; border-right: 0; border-bottom: 1px solid var(--line); }
  .license-facts > div:last-child { border-bottom: 0; }

  .payment-panel article { grid-template-columns: 58px 1fr; min-height: 135px; padding: 20px 16px; gap: 14px; }
  .network-logo { width: 52px; height: 52px; border-radius: 12px; }
  .payment-panel article strong { font-size: 25px; }
  .copy-button { grid-column: 2; justify-self: start; min-height: 36px; margin-top: -5px; }
  .security-note { align-items: flex-start; }

  .faq-list summary { min-height: 90px; font-size: 17px; }
  .faq-list details p { margin-right: 10px; }

  .about-copy dl > div { grid-template-columns: 100px 1fr; }

  .final-cta { min-height: 560px; padding-block: 90px; }
  .final-cta h2 { font-size: clamp(52px, 15vw, 80px); }
  .final-actions { align-items: stretch; }
  .final-actions .button { flex: 1 1 100%; }
  .final-actions > span { padding-left: 0; }

  .footer-main { min-height: 220px; padding-block: 34px; display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }
  .footer-main nav { justify-content: flex-start; gap: 16px 22px; padding: 0; }
  .footer-contact { align-self: flex-start; }
  .footer-contact span,
  .footer-contact a { text-align: left; }
  .footer-legal { grid-template-columns: 1fr; gap: 12px; padding-block: 24px; }
  .footer-legal > span:nth-child(2),
  .footer-legal button { grid-column: 1; grid-row: auto; text-align: left; padding: 0; }

  .legal-nav-shell .brand-copy { display: none; }
  .legal-nav-shell .nav-cta { min-height: 44px; padding-inline: 13px; font-size: 10px; }
  .legal-hero { min-height: 510px; padding-top: calc(var(--header-height) + 60px); }
  .legal-hero h1 { font-size: clamp(46px, 15vw, 70px); }
  .legal-layout { padding-block: 65px 100px; }
  .legal-layout aside { grid-template-columns: 1fr; }
  .legal-layout aside a:nth-child(n) { padding-inline: 0; border-right: 0; }
  .legal-content > section { padding-bottom: 52px; margin-bottom: 52px; }
  .legal-callout { padding: 20px; }
  .legal-callout strong { font-size: 19px; }
  .legal-footer .footer-legal a { justify-self: start; }

  .home-hero { min-height: 850px; }
  .home-hero-media img { object-position: 69% top; }
  .home-hero-content { padding-top: 210px; }
  .home-hero-content > div:first-child { padding: 215px 0 90px; }
  .home-hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 12vw, 56px);
    letter-spacing: -.065em;
  }
  .home-hero h1 span { margin-bottom: 14px; font-size: .34em; }
  .home-hero h1 em { margin-top: 9px; }
  .home-hero-content > div:first-child > p:not(.eyebrow, .hero-lead-mg) { margin-top: 27px; font-size: 15px; }
  .home-hero .hero-actions { align-items: stretch; }
  .home-hero .hero-actions .button { flex: 1 1 100%; }
  .home-hero-bottom { width: calc(100% - 32px); gap: 7px; font-size: 6px; letter-spacing: .1em; }
  .home-hero-bottom i { width: 5px; flex-basis: 5px; }

  .home-intro h2,
  .products-section h2,
  .vision-heading h2,
  .home-contact h2 { font-size: clamp(39px, 12vw, 58px); }
  .home-intro-grid > *,
  .home-contact-grid > *,
  .split-heading > *,
  .section-heading,
  .vision-grid,
  .vision-grid article {
    min-width: 0;
  }
  .home-intro h2,
  .products-section h2,
  .vision-heading h2,
  .home-contact h2,
  .section-heading h2,
  .workflow-intro h2,
  .faq-intro h2,
  .bussid-final h2,
  .vision-grid h3,
  .home-contact-actions,
  .home-contact-actions a {
    overflow-wrap: anywhere;
  }
  .vision-grid h3 { font-size: 28px; }
  .home-intro-copy > p { font-size: 16px; }
  .home-intro-copy dl > div { grid-template-columns: 75px 1fr; }

  .software-showcase { min-height: 690px; align-items: flex-end; }
  .software-media img { object-position: 66% center; }
  .software-shade,
  .software-bussid .software-shade {
    background:
      linear-gradient(180deg, rgba(4,5,7,.08), rgba(4,5,7,.25) 30%, rgba(4,5,7,.95) 62%, #06080b);
  }
  .software-content { width: 100%; margin: 0; padding: 280px 24px 45px; }
  .software-content h3 { font-size: clamp(54px, 17vw, 82px); }
  .software-content > p { margin-top: 25px; font-size: 13px; }
  .software-content .button { width: 100%; }
  .software-version { right: 20px; bottom: auto; top: 22px; font-size: 23px; }
  .software-number { left: 22px; right: auto; }
  .vision-grid { margin-top: 55px; }
  .vision-grid article { min-height: 225px; padding: 25px; }
  .home-contact { min-height: 620px; padding-block: 90px; }
  .home-contact-actions .button { width: 100%; }

  .bussid-hero { min-height: 880px; }
  .bussid-hero-media img { object-position: 66% top; }
  .bussid-hero-content { padding-top: 200px; }
  .bussid-hero-content > div { padding: 230px 0 88px; }
  .bussid-product-kicker { margin-bottom: 22px; font-size: 7px; }
  .bussid-hero h1 { font-size: clamp(48px, 15vw, 72px); }
  .bussid-hero h1 span { margin-bottom: 14px; font-size: .34em; }
  .bussid-hero-content > div > p:not(.eyebrow, .hero-lead-mg) { margin-top: 28px; font-size: 15px; }
  .bussid-hero .hero-actions { align-items: stretch; }
  .bussid-hero .hero-actions .button { flex: 1 1 100%; }
  .bussid-hero-meta { margin-top: 35px; }
  .bussid-hero-meta li { min-height: 66px; padding-inline: 6px 3px; gap: 6px; }
  .bussid-hero-meta li + li { padding-left: 7px; }
  .bussid-hero-meta b { font-size: 11px; }
  .bussid-hero-meta span { font-size: 7px; }

  .bussid-window { padding: 3px; }
  .bussid-window-bar { height: 36px; grid-template-columns: 1fr auto; padding-inline: 10px; }
  .bussid-window-bar > b { display: none; }
  .bussid-window-bar > div { gap: 6px; }
  .bussid-window-bar > div i { width: 6px; height: 6px; }

  .mod-feature-grid { display: block; }
  .mod-feature,
  .mod-feature-large,
  .mod-feature-wide,
  .mod-feature-safety { min-height: 320px; display: flex; grid-template-columns: none; padding: 24px; }
  .mod-feature + .mod-feature { margin-top: 10px; }
  .mesh-sphere { width: 165px; height: 165px; margin: 20px auto 30px; }
  .texture-tiles { height: 130px; }
  .scan-visual { height: 190px; margin-top: 30px; }
  .mod-steps { grid-template-columns: 1fr; }
  .mod-steps li { min-height: 220px; padding: 25px; }
  .license-specs { grid-template-columns: 1fr; }
  .license-specs > div:nth-child(n) { min-height: 110px; border-right: 0; border-bottom: 1px solid var(--line); }
  .license-specs > div:last-child { border-bottom: 0; }
  .bussid-license h2,
  .bussid-safety h2 { font-size: clamp(39px, 12vw, 58px); }
  .bussid-license .button { width: 100%; }
  .bussid-final { min-height: 580px; padding-block: 90px; }
  .bussid-final h2 { font-size: clamp(50px, 15vw, 78px); }
  .bussid-final .button { width: 100%; }

  .whatsapp-float { display: none; }
}

@media (min-width: 1800px) {
  :root { --shell: min(1540px, calc(100vw - 100px)); }
  .hero-media img { object-position: center 44%; }
  .hero-copy { max-width: 800px; }
}

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

@media print {
  .site-header,
  .scroll-progress,
  .whatsapp-float,
  .hero-hud,
  .hero-footer,
  .signal-band,
  .button,
  .copy-button { display: none !important; }
  body { background: white; color: black; }
  .hero { min-height: auto; padding: 50px 0; background: white; }
  .hero-media,
  .hero-grid,
  .hero-noise { display: none; }
  .hero h1 em { color: black; -webkit-text-stroke: 0; }
  .section-space { padding-block: 50px; }
  .feature-card,
  .price-card,
  .payment-panel,
  .trial-card { break-inside: avoid; border-color: #bbb; background: white; }
}
