:root {
  --bg: #050505;
  --panel: #0d0d0f;
  --panel-soft: #151515;
  --text: #ffffff;
  --muted: #b9b9bd;
  --faint: #77777e;
  --line: rgba(255, 255, 255, 0.12);
  --orange: #f05a00;
  --orange-light: #ff9a34;
  --orange-deep: #a73500;
  --blue: #1f8fff;
  --radius: 8px;
  --max: 1180px;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --scroll-progress: 0%;
  color: var(--text);
  background: var(--bg);
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html,
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(240, 90, 0, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to bottom, transparent, black 14%, black 72%, transparent);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 18%, rgba(240, 90, 0, 0.25), transparent 27%),
    radial-gradient(circle at 18% 8%, rgba(31, 143, 255, 0.12), transparent 20%),
    linear-gradient(180deg, #050505 0%, #080808 58%, #050505 100%);
  pointer-events: none;
}

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

.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;
  top: 10px;
  left: 50%;
  z-index: 100;
  padding: 11px 16px;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  transform: translate(-50%, -160%);
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

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

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

main {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: 220px minmax(320px, 1fr) auto;
  align-items: center;
  direction: ltr;
  width: min(calc(100% - 32px), var(--max));
  min-height: 74px;
  padding: 0 12px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(240, 90, 0, 0.055), transparent 32%),
    rgba(5, 5, 5, 0.9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: border-color 180ms ease, background 180ms ease, top 180ms ease, box-shadow 180ms ease;
  isolation: isolate;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: auto 12px 0 218px;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), rgba(240, 90, 0, 0.12) 68%, transparent);
  box-shadow: -70px 0 22px rgba(240, 90, 0, 0.36);
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: var(--scroll-progress);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange), var(--orange-light));
  box-shadow: 0 0 18px rgba(240, 90, 0, 0.7);
  transition: width 80ms linear;
}

.site-header[data-elevated="true"] {
  top: 8px;
  border-color: rgba(240, 90, 0, 0.42);
  background: rgba(5, 5, 5, 0.96);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.48);
}

.header-brand-dock {
  position: relative;
  display: grid;
  align-content: center;
  align-self: stretch;
  min-width: 0;
  padding: 7px 36px 7px 15px;
  border-bottom: 1px solid rgba(240, 90, 0, 0.9);
  background:
    linear-gradient(135deg, rgba(240, 90, 0, 0.16), transparent 48%),
    #080808;
  clip-path: polygon(0 0, 100% 0, calc(100% - 34px) 100%, 0 100%);
}

.header-brand-dock::after {
  content: "";
  position: absolute;
  top: 0;
  right: 30px;
  width: 1px;
  height: 110%;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(240, 90, 0, 0.72);
  transform: rotate(25deg);
  transform-origin: top;
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  width: 168px;
  height: 48px;
  min-height: 46px;
  overflow: hidden;
}

.brand img {
  width: 166px;
  height: 48px;
  object-fit: contain;
}

.brand::after {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -45%;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
}

.brand-context {
  margin-top: -2px;
  color: rgba(255, 255, 255, 0.54);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2vw, 32px);
  padding-inline: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

html[lang="ar"] .desktop-nav {
  direction: rtl;
}

html[lang="en"] .desktop-nav {
  direction: ltr;
}

.desktop-nav a {
  position: relative;
  padding: 26px 0 22px;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange) 28%, var(--orange-light) 72%, transparent);
  box-shadow: 0 0 16px rgba(240, 90, 0, 0.92);
  transform: scaleX(0);
  transition: transform 260ms var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a[aria-current="true"] {
  color: var(--text);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-inline-end: 2px;
}

.theme-toggle {
  --theme-toggle-shift: 32px;
  position: relative;
  direction: ltr;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  width: 64px;
  height: 34px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: #09090b;
  color: #fff;
  cursor: pointer;
  isolation: isolate;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: rgba(240, 90, 0, 0.64);
  box-shadow: 0 0 0 3px rgba(240, 90, 0, 0.12);
  outline: none;
}

.theme-toggle-icon {
  z-index: 2;
  display: grid;
  place-items: center;
  color: #77777e;
  transition: color 220ms ease;
}

.theme-toggle-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 1;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #27272a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.32);
  transition: transform 280ms var(--ease-out), background 220ms ease, box-shadow 220ms ease;
}

html[data-theme="dark"] .theme-toggle-moon,
html[data-theme="light"] .theme-toggle-sun {
  color: #fff;
}

html[data-theme="light"] .theme-toggle {
  border-color: rgba(17, 17, 17, 0.22);
  background: #fff;
  color: #111;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

html[data-theme="light"] .theme-toggle-thumb {
  background: #ececef;
  box-shadow: 0 4px 12px rgba(17, 17, 17, 0.14);
  transform: translateX(var(--theme-toggle-shift));
}

html[data-theme="light"] .theme-toggle-sun {
  color: #333;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 42px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  cursor: pointer;
}

.lang-switch span {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 32px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

html[lang="ar"] [data-lang-option="ar"],
html[lang="en"] [data-lang-option="en"] {
  background: var(--orange);
  color: #fff;
}

.header-cta,
.primary-link,
.secondary-link,
.text-link {
  min-height: 44px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(240, 90, 0, 0.56);
  color: #fff;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: rgba(240, 90, 0, 0.18);
}

.account-command {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 5px 10px 5px 6px;
  border: 1px solid rgba(240, 90, 0, 0.44);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.account-command svg {
  width: 34px;
  height: 34px;
  padding: 7px;
  border: 1px solid rgba(240, 90, 0, 0.7);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-copy {
  display: grid;
  min-width: 72px;
  line-height: 1.15;
}

.account-copy small {
  color: var(--faint);
  font-size: 9px;
  font-weight: 650;
}

.account-copy strong {
  overflow: hidden;
  max-width: 102px;
  color: var(--text);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-command:hover,
.account-command:focus-visible {
  border-color: var(--orange);
  background: rgba(240, 90, 0, 0.12);
  box-shadow: 0 0 0 3px rgba(240, 90, 0, 0.1), 0 0 22px rgba(240, 90, 0, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.account-command[data-authenticated="true"] svg {
  background: var(--orange);
  color: #fff;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: #fff;
}

.mobile-menu {
  display: none;
}

.mobile-menu-section {
  display: none;
}

.mobile-menu-section-label {
  color: var(--orange-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mobile-menu-tools {
  display: none;
}

.mobile-menu-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
}

.mobile-menu-action svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-language-switch {
  justify-content: space-between;
  padding: 4px;
}

.mobile-language-switch span {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 38px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}

.hero {
  --pointer-x: 68%;
  --pointer-y: 42%;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-scroll: 0px;
  --emblem-x: 77.2%;
  --emblem-y: 40.7%;
  --laser-top: 49%;
  --laser-height: 24%;
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100svh;
  padding: 142px 20px 68px;
  background: #030303;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.92) 0%, rgba(3, 3, 3, 0.73) 31%, rgba(3, 3, 3, 0.08) 61%, transparent 78%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.24), transparent 25%, transparent 72%, #030303 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 132, 31, 0.16), transparent 18%);
  opacity: 0.64;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #020304;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.12), transparent 28%, transparent 84%, rgba(3, 3, 3, 0.2)),
    linear-gradient(180deg, rgba(3, 3, 3, 0.08), transparent 62%, rgba(3, 3, 3, 0.58) 93%, #030303);
  pointer-events: none;
}

.hero-room {
  position: absolute;
  inset: 106px 0 0;
  transform:
    perspective(1200px)
    translate3d(var(--hero-shift-x), calc(var(--hero-shift-y) + var(--hero-scroll)), 0)
    rotateX(var(--room-rotate-x))
    rotateY(var(--room-rotate-y))
    scale(1.015);
  transform-origin: 50% 52%;
  transform-style: preserve-3d;
  will-change: transform;
}

.room-face {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(240, 90, 0, 0.24);
  background-color: #080808;
  backface-visibility: hidden;
}

.room-face::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(240, 90, 0, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.62;
}

.room-back {
  top: 10%;
  left: 20%;
  width: 60%;
  height: 64%;
  border-color: rgba(240, 90, 0, 0.4);
  background:
    radial-gradient(circle at 50% 46%, rgba(240, 90, 0, 0.24), transparent 32%),
    linear-gradient(180deg, #100b08, #060606);
  box-shadow:
    inset 0 0 80px rgba(240, 90, 0, 0.12),
    0 0 46px rgba(240, 90, 0, 0.08);
}

.room-left {
  top: 4%;
  left: -1px;
  width: 22%;
  height: 77%;
  clip-path: polygon(0 0, 100% 8%, 100% 92%, 0 100%);
  background:
    linear-gradient(90deg, #030303, rgba(240, 90, 0, 0.1)),
    #080808;
}

.room-right {
  top: 4%;
  right: -1px;
  width: 22%;
  height: 77%;
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 92%);
  background:
    linear-gradient(270deg, #030303, rgba(240, 90, 0, 0.1)),
    #080808;
}

.room-ceiling {
  top: 0;
  left: 0;
  width: 100%;
  height: 18%;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
  background:
    linear-gradient(180deg, #020202, #0a0807),
    #050505;
}

.room-floor {
  right: 0;
  bottom: 0;
  left: 0;
  height: 35%;
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
  background:
    linear-gradient(180deg, rgba(240, 90, 0, 0.08), rgba(0, 0, 0, 0.96)),
    #050505;
  border-top-color: rgba(255, 154, 52, 0.55);
}

.room-circuit,
.floor-lines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 9%, rgba(240, 90, 0, 0.12) 9.1% 9.3%, transparent 9.4% 18%),
    repeating-linear-gradient(0deg, transparent 0 32px, rgba(255, 255, 255, 0.04) 33px, transparent 34px);
}

.wall-track {
  position: absolute;
  top: -26%;
  left: 8%;
  display: flex;
  width: 84%;
  flex-direction: column;
  gap: 58px;
  will-change: transform;
}

.wall-track-right {
  animation-direction: reverse;
}

.wall-brand {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px 10px;
  border-block: 1px solid rgba(240, 90, 0, 0.2);
  background: linear-gradient(90deg, transparent, rgba(240, 90, 0, 0.08), transparent);
  filter: saturate(1.08);
}

.wall-brand img {
  width: min(150px, 84%);
  height: auto;
  opacity: 0.78;
}

.wall-brand span,
.back-wall-brand span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 2px;
}

.back-wall-brand {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: min(460px, 68%);
  justify-items: center;
  gap: 14px;
  transform: translate(-50%, -50%);
  opacity: 0.42;
}

.back-wall-symbol {
  width: 114px;
  height: auto;
  filter: drop-shadow(0 0 22px rgba(240, 90, 0, 0.66));
}

.back-wall-wordmark {
  width: min(360px, 100%);
  height: auto;
}

.back-wall-brand span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 4px;
}

.wall-scan {
  position: absolute;
  z-index: 1;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, var(--orange-light), transparent);
  opacity: 0.64;
  box-shadow: 0 0 22px rgba(240, 90, 0, 0.8);
}

.wall-scan-one {
  left: 23%;
}

.wall-scan-two {
  right: 23%;
  animation-delay: -3.5s;
}

.floor-reflection {
  position: absolute;
  top: -4%;
  left: 50%;
  width: 250px;
  transform: translateX(-50%) scaleY(-0.62);
  transform-origin: center top;
  opacity: 0.14;
  filter: blur(3px) saturate(1.2);
}

.floor-reflection img {
  width: 100%;
  height: auto;
}

.room-edge {
  position: absolute;
  z-index: 4;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--orange-light), transparent);
  box-shadow: 0 0 18px rgba(240, 90, 0, 0.75);
  opacity: 0.7;
}

.room-edge-left {
  top: 9%;
  left: 0;
  width: 25%;
  transform: rotate(3.8deg);
  transform-origin: left center;
}

.room-edge-right {
  top: 9%;
  right: 0;
  width: 25%;
  transform: rotate(-3.8deg);
  transform-origin: right center;
}

.room-edge-floor {
  right: 18%;
  bottom: 35%;
  left: 18%;
}

.hero-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform:
    translate3d(
      var(--hero-shift-x),
      calc(var(--hero-shift-y) + var(--hero-scroll)),
      0
    )
    scale(1.025);
  transform-origin: 68% 48%;
  will-change: transform;
}

.hero-scene-depth {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 77% 41%, transparent 0 18%, rgba(1, 3, 7, 0.12) 35%, transparent 56%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), transparent 47%);
  pointer-events: none;
}

.hero-emblem-stage {
  position: absolute;
  inset: 0;
  z-index: 4;
  transform: translate3d(var(--hero-shift-x), calc(var(--hero-shift-y) + var(--hero-scroll)), 0);
  transform-origin: var(--emblem-x) var(--emblem-y);
  will-change: transform;
  pointer-events: none;
}

.hero-emblem {
  position: absolute;
  top: var(--emblem-y);
  left: var(--emblem-x);
  width: clamp(168px, 15.6vw, 246px);
  aspect-ratio: 234 / 255;
  transform: translate(-50%, -50%);
  filter:
    drop-shadow(0 0 10px rgba(255, 93, 22, 0.66))
    drop-shadow(0 0 28px rgba(255, 163, 35, 0.28));
  animation: hero-emblem-float 5.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  will-change: transform, filter;
}

.hero-emblem img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-emblem-energy {
  position: absolute;
  inset: 16% 12%;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 134, 26, 0.33), rgba(255, 84, 18, 0.08) 48%, transparent 72%);
  filter: blur(9px);
  animation: hero-emblem-energy 3.4s ease-in-out infinite;
}

.hero-emblem-halo {
  position: absolute;
  top: var(--emblem-y);
  left: var(--emblem-x);
  width: clamp(205px, 19.5vw, 315px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 129, 31, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 22px rgba(255, 104, 24, 0.16),
    inset 0 0 30px rgba(255, 111, 20, 0.1);
  transform: translate(-50%, -50%);
  opacity: 0.38;
  animation: hero-emblem-halo 4.8s ease-in-out infinite;
}

.hero-laser-source {
  position: absolute;
  top: calc(var(--laser-top) + var(--laser-height));
  left: var(--emblem-x);
  width: 74px;
  height: 22px;
  transform: translate(-50%, -50%);
}

.hero-laser-source-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff4d5;
  box-shadow:
    0 0 8px #fff,
    0 0 18px #ff9b24,
    0 0 38px rgba(255, 80, 16, 0.94);
  transform: translate(-50%, -50%);
  animation: hero-laser-source 2.2s ease-in-out infinite;
}

.hero-laser-source-ring {
  position: absolute;
  inset: 1px 0;
  border: 1px solid rgba(255, 133, 27, 0.62);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 92, 20, 0.5);
  animation: hero-laser-ring 3.4s ease-out infinite;
}

.hero-laser-beam {
  position: absolute;
  top: var(--laser-top);
  left: var(--emblem-x);
  width: 4px;
  height: var(--laser-height);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 209, 96, 0.12), #ffb027 30%, #ff5a12 74%, #fff2bc);
  box-shadow:
    0 0 7px #ffefc0,
    0 0 16px #ff8a1c,
    0 0 34px rgba(255, 65, 12, 0.82);
  transform: translateX(-50%) scaleY(0.06);
  transform-origin: center bottom;
  opacity: 0;
  animation: hero-laser-charge 3.4s cubic-bezier(0.35, 0, 0.2, 1) infinite;
}

.hero-laser-beam::before,
.hero-laser-beam::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-radius: 999px;
  transform: translateX(-50%);
}

.hero-laser-beam::before {
  width: 14px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255, 93, 21, 0.26) 52%, rgba(255, 160, 32, 0.08));
  filter: blur(5px);
}

.hero-laser-beam::after {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 168, 43, 0.38);
  box-shadow: 0 0 16px rgba(255, 93, 21, 0.48);
  animation: hero-laser-impact 3.4s ease-out infinite;
}

.hero-laser-particle {
  position: absolute;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff7db;
  box-shadow: 0 0 9px #ff851b;
  opacity: 0;
}

.hero-laser-particle-one {
  animation: hero-laser-particle 3.4s ease-out 0.1s infinite;
}

.hero-laser-particle-two {
  animation: hero-laser-particle 3.4s ease-out 0.48s infinite;
}

.hero-laser-particle-three {
  animation: hero-laser-particle 3.4s ease-out 0.82s infinite;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(660px, 48vw);
  justify-items: start;
  max-width: 100%;
  margin-right: auto;
  margin-left: max(5vw, calc((100vw - var(--max)) / 2));
  padding: 48px 0 0;
  text-align: start;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.88);
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 6.6vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 28px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.primary-link {
  position: relative;
  border: 1px solid rgba(255, 155, 74, 0.62);
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  box-shadow: 0 15px 42px rgba(240, 90, 0, 0.26);
  overflow: hidden;
}

.primary-link::after {
  content: "";
  position: absolute;
  top: -60%;
  bottom: -60%;
  left: -45%;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.56), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
}

.primary-link:hover,
.primary-link:focus-visible {
  transform: translateY(-1px);
}

.secondary-link {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 170px));
  gap: 12px;
  width: min(100%, 540px);
  max-width: 540px;
  margin: 36px 0 0;
}

.hero-metrics div {
  padding: 16px;
  border: 1px solid rgba(240, 90, 0, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18, 13, 10, 0.82), rgba(5, 5, 5, 0.58));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.hero-metrics dt {
  color: var(--orange-light);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 88px 20px;
}

.section[id] {
  scroll-margin-top: 118px;
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.intro-band {
  padding-top: 44px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: end;
  padding: 34px;
  border-block: 1px solid rgba(240, 90, 0, 0.26);
  background: linear-gradient(90deg, rgba(240, 90, 0, 0.13), transparent 56%);
}

.intro-grid h2,
.section-heading h2,
.contact-section h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro-grid p,
.section-heading p,
.contact-section p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.intro-points {
  display: grid;
  gap: 10px;
}

.intro-points span {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading.align-start {
  margin-inline: 0;
  text-align: start;
}

.service-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: stretch;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  position: relative;
  min-height: 168px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(240, 90, 0, 0.12), transparent 44%),
    rgba(255, 255, 255, 0.045);
  overflow: hidden;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--orange-light), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 420ms var(--ease-out);
}

.service-card:hover {
  border-color: rgba(240, 90, 0, 0.55);
  background:
    linear-gradient(135deg, rgba(240, 90, 0, 0.2), transparent 48%),
    rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-index {
  color: rgba(255, 154, 52, 0.9);
  font-size: 12px;
  font-weight: 900;
}

.service-card h3 {
  margin: 18px 0 10px;
  color: #fff;
  font-size: 21px;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-media,
.media-frame {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-media img,
.media-frame img {
  transition: transform 900ms var(--ease-out), filter 900ms var(--ease-out);
  will-change: transform;
}

.service-media:hover img,
.media-frame:hover img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.035);
}

.service-media {
  display: grid;
  align-content: stretch;
}

.service-media img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
}

.service-media figcaption {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.work-section {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.035), transparent);
}

.work-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 48px;
  align-items: start;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 0 20px;
  border: 1px solid rgba(240, 90, 0, 0.42);
  color: var(--orange-light);
}

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

.media-frame.large {
  grid-row: auto;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.media-frame {
  aspect-ratio: 1 / 1;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process-step {
  position: relative;
  min-height: 240px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.process-step::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 30px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform-origin: right center;
}

.process-step strong {
  color: var(--orange-light);
  font-size: 13px;
}

.process-step h3 {
  margin: 14px 0 10px;
  color: #fff;
  font-size: 22px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.industries-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 46px;
  align-items: start;
}

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

.industry-card {
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(31, 143, 255, 0.08), transparent),
    rgba(255, 255, 255, 0.045);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  transition: border-color 280ms ease, background 280ms ease, transform 280ms var(--ease-out);
}

.industry-card:hover {
  border-color: rgba(31, 143, 255, 0.46);
  background:
    linear-gradient(90deg, rgba(31, 143, 255, 0.15), transparent),
    rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.contact-section {
  padding-bottom: 70px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 38px;
  align-items: start;
  padding: 44px;
  border: 1px solid rgba(240, 90, 0, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 15% 18%, rgba(240, 90, 0, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.contact-symbol {
  width: 86px;
  height: 86px;
  margin-bottom: 26px;
  filter: drop-shadow(0 14px 26px rgba(240, 90, 0, 0.24));
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-lines a {
  color: #fff;
  font-size: 16px;
  font-weight: 750;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms var(--ease-out);
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(240, 90, 0, 0.55);
  color: #fff;
  transform: translateY(-2px);
}

.social-links .social-facebook {
  border-color: rgba(24, 119, 242, 0.38);
  color: #4b9cff;
}

.social-links .social-instagram {
  border-color: rgba(225, 48, 108, 0.38);
  color: #f65b8d;
}

.social-links .social-whatsapp {
  border-color: rgba(37, 211, 102, 0.38);
  color: #38dc75;
}

.social-links .social-facebook:hover,
.social-links .social-facebook:focus-visible {
  border-color: #1877f2;
  background: #1877f2;
  color: #fff;
}

.social-links .social-instagram:hover,
.social-links .social-instagram:focus-visible {
  border-color: #e1306c;
  background: linear-gradient(135deg, #feda75, #fa7e1e 30%, #d62976 58%, #962fbf 78%, #4f5bd5);
  color: #fff;
}

.social-links .social-whatsapp:hover,
.social-links .social-whatsapp:focus-visible {
  border-color: #25d366;
  background: #25d366;
  color: #081b10;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.44);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: none;
}

.lead-form input,
.lead-form select {
  height: 48px;
  padding: 0 14px;
}

.lead-form textarea {
  resize: vertical;
  min-height: 118px;
  padding: 12px 14px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(240, 90, 0, 0.72);
}

.lead-form select option {
  color: #111;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--faint);
  font-size: 12px;
  line-height: 1.6;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--orange-light);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
}

.site-footer {
  position: relative;
  width: 100%;
  margin-top: 28px;
  border-top: 1px solid rgba(240, 90, 0, 0.42);
  background:
    radial-gradient(circle at 12% 8%, rgba(240, 90, 0, 0.15), transparent 24%),
    linear-gradient(180deg, #090807, #030303);
  color: var(--muted);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--orange-light), transparent);
  opacity: 0.72;
}

.footer-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 0.9fr;
  gap: clamp(34px, 5vw, 72px);
}

.footer-brand-column,
.footer-column {
  position: relative;
}

.footer-brand {
  display: inline-flex;
  width: 166px;
  margin-bottom: 8px;
}

.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-slogan {
  margin: 0 0 30px;
  color: var(--orange-light);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.5;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-brand-column h2,
.footer-column h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.35;
}

.footer-brand-column h2 {
  font-size: 28px;
}

.footer-description,
.footer-social-column > p {
  max-width: 340px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.footer-newsletter {
  position: relative;
  width: min(100%, 360px);
}

.footer-newsletter input {
  width: 100%;
  height: 50px;
  padding: 0 52px 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

[dir="rtl"] .footer-newsletter input {
  padding: 0 15px 0 52px;
}

.footer-newsletter input::placeholder {
  color: var(--faint);
}

.footer-newsletter input:focus {
  border-color: rgba(240, 90, 0, 0.76);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 0 3px rgba(240, 90, 0, 0.12);
}

.footer-newsletter button {
  position: absolute;
  top: 5px;
  inset-inline-end: 5px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 175, 94, 0.65);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(240, 90, 0, 0.24);
  transition: transform 180ms var(--ease-out), box-shadow 180ms ease;
}

.footer-newsletter button:hover,
.footer-newsletter button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(240, 90, 0, 0.34);
}

.footer-newsletter button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-form-status {
  min-height: 20px;
  margin: 9px 0 0;
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 750;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-nav a,
.footer-contact a {
  width: fit-content;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
  transition: color 180ms ease, transform 180ms var(--ease-out);
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--orange-light);
  transform: translateX(3px);
}

[dir="rtl"] .footer-nav a:hover,
[dir="rtl"] .footer-nav a:focus-visible,
[dir="rtl"] .footer-contact a:hover,
[dir="rtl"] .footer-contact a:focus-visible {
  transform: translateX(-3px);
}

.footer-contact {
  font-style: normal;
}

.footer-contact p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-socials a {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms var(--ease-out);
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: rgba(255, 154, 52, 0.72);
  background: var(--orange);
  color: #fff;
  transform: translateY(-3px);
}

.footer-socials a::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 9px);
  left: 50%;
  z-index: 4;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: #151515;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.footer-socials a:hover::after,
.footer-socials a:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.footer-socials .social-facebook {
  border-color: rgba(24, 119, 242, 0.38);
  background: rgba(24, 119, 242, 0.1);
  color: #1877f2;
}

.footer-socials .social-instagram {
  border-color: rgba(225, 48, 108, 0.42);
  background: rgba(225, 48, 108, 0.09);
  color: #e1306c;
}

.footer-socials .social-whatsapp {
  border-color: rgba(37, 211, 102, 0.4);
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.footer-socials .social-facebook:hover,
.footer-socials .social-facebook:focus-visible {
  border-color: #1877f2;
  background: #1877f2;
  color: #fff;
  box-shadow: 0 12px 28px rgba(24, 119, 242, 0.3);
}

.footer-socials .social-instagram:hover,
.footer-socials .social-instagram:focus-visible {
  border-color: #e1306c;
  background: linear-gradient(135deg, #feda75, #fa7e1e 30%, #d62976 58%, #962fbf 78%, #4f5bd5);
  color: #fff;
  box-shadow: 0 12px 28px rgba(214, 41, 118, 0.3);
}

.footer-socials .social-whatsapp:hover,
.footer-socials .social-whatsapp:focus-visible {
  border-color: #25d366;
  background: #25d366;
  color: #071b0f;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);
}

.footer-icon-dot {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.footer-back-top {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  transition: color 180ms ease;
}

.footer-back-top:hover,
.footer-back-top:focus-visible {
  color: var(--orange-light);
}

.language-changing main,
.language-changing .site-footer {
  opacity: 0.48;
  transform: translateY(5px);
}

main,
.site-footer {
  transition: opacity 220ms ease, transform 220ms var(--ease-out);
}

.motion-enabled .hero h1,
.motion-enabled .hero-subtitle,
.motion-enabled .hero-actions,
.motion-enabled .hero-metrics > div {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}

.motion-enabled.site-ready .hero h1 {
  animation: hero-enter 900ms var(--ease-out) 120ms forwards;
}

.motion-enabled.site-ready .hero-subtitle {
  animation: hero-enter 850ms var(--ease-out) 260ms forwards;
}

.motion-enabled.site-ready .hero-actions {
  animation: hero-enter 800ms var(--ease-out) 400ms forwards;
}

.motion-enabled.site-ready .hero-metrics > div {
  animation: hero-enter 760ms var(--ease-out) forwards;
}

.motion-enabled.site-ready .hero-metrics > div:nth-child(1) {
  animation-delay: 520ms;
}

.motion-enabled.site-ready .hero-metrics > div:nth-child(2) {
  animation-delay: 620ms;
}

.motion-enabled.site-ready .hero-metrics > div:nth-child(3) {
  animation-delay: 720ms;
}

.motion-enabled.site-ready .hero-bg {
  animation: hero-image-enter 1500ms var(--ease-out) both;
}

.motion-enabled.site-ready .hero-room {
  animation: room-breathe 11s ease-in-out 1600ms infinite alternate;
}

.motion-enabled.site-ready .wall-track-left {
  animation: wall-flow-up 22s linear infinite;
}

.motion-enabled.site-ready .wall-track-right {
  animation: wall-flow-down 24s linear infinite;
}

.motion-enabled.site-ready .back-wall-brand {
  animation: back-wall-glow 5.8s ease-in-out infinite;
}

.motion-enabled.site-ready .wall-scan {
  animation: wall-scan-move 7s ease-in-out infinite;
}

.motion-enabled.site-ready .floor-reflection {
  animation: floor-reflection-pulse 5.8s ease-in-out infinite;
}

.motion-enabled.site-ready .brand::after {
  animation: brand-sheen 5.8s ease-in-out 1.1s infinite;
}

.motion-enabled.site-ready .primary-link::after {
  animation: button-sheen 4.8s ease-in-out 1.6s infinite;
}

.motion-enabled [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 38px, 0);
  transition:
    opacity 760ms var(--ease-out),
    transform 760ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-enabled [data-reveal="left"] {
  transform: translate3d(-44px, 0, 0);
}

.motion-enabled [data-reveal="right"] {
  transform: translate3d(44px, 0, 0);
}

.motion-enabled [data-reveal="scale"] {
  transform: scale(0.94);
}

.motion-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-enabled .process-step[data-reveal]::before {
  transform: scaleX(0);
  transition: transform 720ms var(--ease-out);
  transition-delay: calc(var(--reveal-delay, 0ms) + 180ms);
}

.motion-enabled .process-step[data-reveal].is-visible::before {
  transform: scaleX(1);
}

.motion-enabled .contact-symbol.is-visible {
  animation: symbol-float 4.6s ease-in-out 850ms infinite;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-image-enter {
  from {
    opacity: 0;
    filter: brightness(0.45);
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    filter: brightness(1);
    transform: scale(1);
  }
}

@keyframes room-breathe {
  from {
    filter: saturate(1) brightness(0.96);
  }
  to {
    filter: saturate(1.08) brightness(1.04);
  }
}

@keyframes wall-flow-up {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-38%);
  }
}

@keyframes wall-flow-down {
  from {
    transform: translateY(-38%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes back-wall-glow {
  0%,
  100% {
    opacity: 0.34;
    filter: brightness(0.9);
  }
  50% {
    opacity: 0.52;
    filter: brightness(1.14);
  }
}

@keyframes wall-scan-move {
  0%,
  100% {
    transform: translateX(-34px);
    opacity: 0.18;
  }
  50% {
    transform: translateX(34px);
    opacity: 0.72;
  }
}

@keyframes floor-reflection-pulse {
  0%,
  100% {
    opacity: 0.1;
    filter: blur(4px) saturate(1);
  }
  50% {
    opacity: 0.2;
    filter: blur(2px) saturate(1.3);
  }
}

@keyframes brand-sheen {
  0%,
  72%,
  100% {
    left: -45%;
    opacity: 0;
  }
  78% {
    opacity: 0.9;
  }
  91% {
    left: 125%;
    opacity: 0;
  }
}

@keyframes button-sheen {
  0%,
  74%,
  100% {
    left: -45%;
    opacity: 0;
  }
  80% {
    opacity: 0.8;
  }
  92% {
    left: 125%;
    opacity: 0;
  }
}

@keyframes symbol-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes hero-emblem-float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0) rotate(-0.35deg) scale(1);
    filter:
      drop-shadow(0 0 10px rgba(255, 93, 22, 0.58))
      drop-shadow(0 0 26px rgba(255, 163, 35, 0.24));
  }
  48% {
    transform: translate(-50%, -50%) translateY(-7px) rotate(0.35deg) scale(1.018);
    filter:
      drop-shadow(0 0 15px rgba(255, 116, 24, 0.84))
      drop-shadow(0 0 42px rgba(255, 163, 35, 0.38));
  }
}

@keyframes hero-emblem-energy {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.82;
    transform: scale(1.08);
  }
}

@keyframes hero-emblem-halo {
  0%,
  100% {
    opacity: 0.18;
    transform: translate(-50%, -50%) scale(0.92);
  }
  50% {
    opacity: 0.52;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes hero-laser-source {
  0%,
  100% {
    opacity: 0.68;
    transform: translate(-50%, -50%) scale(0.82);
  }
  48% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.18);
  }
}

@keyframes hero-laser-ring {
  0% {
    opacity: 0;
    transform: scaleX(0.34) scaleY(0.62);
  }
  22% {
    opacity: 0.68;
  }
  72%,
  100% {
    opacity: 0;
    transform: scaleX(1.26) scaleY(1.5);
  }
}

@keyframes hero-laser-charge {
  0%,
  14% {
    opacity: 0;
    transform: translateX(-50%) scaleY(0.04);
  }
  35%,
  72% {
    opacity: 0.96;
    transform: translateX(-50%) scaleY(1);
  }
  88%,
  100% {
    opacity: 0;
    transform: translateX(-50%) scaleY(0.16);
  }
}

@keyframes hero-laser-impact {
  0%,
  26% {
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.24);
  }
  42% {
    opacity: 0.78;
  }
  74%,
  100% {
    opacity: 0;
    transform: translate(-50%, -40%) scale(1.5);
  }
}

@keyframes hero-laser-particle {
  0%,
  28% {
    bottom: -4px;
    opacity: 0;
    transform: translateX(-50%) scale(0.5);
  }
  38% {
    opacity: 1;
  }
  72% {
    opacity: 0.92;
  }
  88%,
  100% {
    bottom: calc(100% - 5px);
    opacity: 0;
    transform: translateX(-50%) scale(1);
  }
}

[dir="ltr"] .intro-grid {
  background: linear-gradient(90deg, rgba(240, 90, 0, 0.13), transparent 56%);
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 210px 1fr auto;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline: 0;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(240, 90, 0, 0.1), transparent 44%),
      rgba(5, 5, 5, 0.97);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.4);
  }

  .mobile-menu[data-open="true"] {
    display: grid;
    gap: 2px;
  }

  .mobile-menu a {
    padding: 14px;
    color: #fff;
    font-weight: 800;
  }

  .mobile-menu-section {
    display: grid;
    gap: 9px;
    margin-top: 8px;
    padding: 12px 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-menu-tools {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-menu a.mobile-menu-account {
    display: grid;
    place-items: center;
    margin-top: 6px;
    border: 1px solid rgba(240, 90, 0, 0.34);
    border-radius: 8px;
    background: rgba(240, 90, 0, 0.1);
    color: #fff;
    text-align: center;
  }

  .service-layout,
  .work-grid,
  .industries-grid,
  .contact-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .room-left,
  .room-right {
    width: 18%;
  }

  .room-back {
    left: 16%;
    width: 68%;
  }

  .room-ceiling {
    clip-path: polygon(0 0, 100% 0, 84% 100%, 16% 100%);
  }

  .room-floor {
    clip-path: polygon(16% 0, 84% 0, 100% 100%, 0 100%);
  }

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

@media (max-width: 720px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    top: 8px;
    width: min(calc(100% - 16px), var(--max));
    min-height: 66px;
    padding: 0 8px;
  }

  .site-header::before {
    inset-inline: 8px;
  }

  .header-brand-dock {
    grid-column: 2;
    min-width: 132px;
    padding: 6px 10px;
    border: 0;
    background: transparent;
    clip-path: none;
  }

  .header-brand-dock::after,
  .brand-context {
    display: none;
  }

  .brand {
    justify-content: center;
    width: 132px;
    height: 42px;
    min-height: 42px;
  }

  .brand img {
    width: 130px;
    height: 42px;
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    display: contents;
  }

  .lang-switch {
    display: none;
  }

  .theme-toggle {
    display: none;
  }

  .menu-button {
    position: absolute;
    left: 10px;
    display: block;
  }

  .account-command {
    position: absolute;
    right: 10px;
    min-width: 44px;
    min-height: 44px;
    padding: 4px;
    border-radius: 50%;
  }

  .account-command svg {
    width: 34px;
    height: 34px;
  }

  .account-copy {
    display: none;
  }

  .mobile-menu {
    top: calc(100% + 7px);
    padding: 10px;
  }

  .mobile-menu a {
    min-height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .mobile-menu a.mobile-menu-account {
    border: 1px solid rgba(240, 90, 0, 0.34);
  }

  .hero {
    --emblem-x: 76%;
    --emblem-y: 24.5%;
    --laser-top: 31%;
    --laser-height: 15.5%;
    align-items: start;
    min-height: 980px;
    padding: 455px 18px 48px;
    text-align: center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(3, 3, 3, 0.02) 0 35%, rgba(3, 3, 3, 0.58) 50%, #030303 62%),
      linear-gradient(90deg, rgba(3, 3, 3, 0.2), transparent 26%, transparent 84%, rgba(3, 3, 3, 0.22));
  }

  .hero::after {
    background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 132, 31, 0.12), transparent 18%);
  }

  .hero-scene {
    height: 58%;
    object-position: 77% 50%;
    transform: scale(1.02);
    transform-origin: 76% 38%;
  }

  .hero-scene-depth {
    background:
      radial-gradient(circle at 76% 43%, transparent 0 20%, rgba(0, 2, 7, 0.12) 36%, transparent 58%),
      linear-gradient(180deg, transparent 0 66%, #030303 100%);
  }

  .hero-bg::after {
    background: linear-gradient(180deg, transparent 0 42%, rgba(3, 3, 3, 0.12) 49%, #030303 61%);
  }

  .hero-emblem {
    width: 148px;
  }

  .hero-emblem-halo {
    width: 188px;
  }

  .hero-laser-source {
    width: 58px;
  }

  .hero-laser-beam {
    width: 3px;
  }

  .hero-room {
    inset: 74px -28% 0;
    transform:
      perspective(900px)
      translate3d(0, var(--hero-scroll), 0)
      rotateX(0deg)
      rotateY(0deg)
      scale(1.02);
  }

  .room-left,
  .room-right {
    width: 24%;
    opacity: 0.82;
  }

  .room-back {
    top: 9%;
    left: 18%;
    width: 64%;
    height: 60%;
  }

  .room-ceiling {
    height: 14%;
    clip-path: polygon(0 0, 100% 0, 82% 100%, 18% 100%);
  }

  .room-floor {
    height: 38%;
    clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
  }

  .wall-track {
    gap: 42px;
  }

  .wall-brand {
    padding: 12px 4px;
  }

  .wall-brand img {
    width: 94px;
  }

  .wall-brand span {
    display: none;
  }

  .back-wall-brand {
    width: 64%;
    opacity: 0.28;
  }

  .back-wall-symbol {
    width: 78px;
  }

  .back-wall-brand span {
    font-size: 7px;
    letter-spacing: 2px;
  }

  .hero-content {
    width: min(100%, 340px);
    margin: 0 auto;
    padding: 0;
    justify-items: center;
    text-align: center;
  }

  .hero h1 {
    max-width: 330px;
    margin-inline: auto;
    font-size: 42px;
    line-height: 0.98;
  }

  .hero-subtitle {
    max-width: 330px;
    margin-inline: auto;
    font-size: 15px;
    line-height: 1.68;
  }

  .hero-actions {
    display: grid;
    justify-content: center;
    width: min(100%, 310px);
    margin-inline: auto;
  }

  .hero-actions a {
    width: 100%;
  }

  .service-list,
  .media-stack,
  .industry-list,
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    max-width: none;
    width: min(100%, 310px);
    margin-inline: auto;
    margin-top: 28px;
  }

  .hero-metrics div {
    min-height: 82px;
    padding: 12px 7px;
  }

  .hero-metrics dt {
    font-size: 24px;
  }

  .hero-metrics dd {
    margin-top: 6px;
    font-size: 10px;
  }

  .section {
    padding: 64px 18px;
  }

  .intro-grid,
  .contact-grid {
    padding: 24px;
  }

  .media-frame.large {
    grid-row: auto;
  }

  .process-step {
    min-height: auto;
  }

  .footer-shell {
    width: min(100% - 36px, var(--max));
    padding: 52px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-brand {
    width: 148px;
  }

  .footer-brand-column h2 {
    font-size: 24px;
  }

  .footer-newsletter {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 42px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .primary-link,
  .service-card,
  .site-header {
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, top 180ms ease;
  }

  .hero-scene,
  .hero-emblem-stage {
    transition:
      transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 260ms ease,
      filter 260ms ease;
  }
}

.theme-changing .hero-scene {
  opacity: 0.78;
  filter: saturate(0.9);
}

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

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

  .hero-bg {
    transform: none !important;
  }

  .hero-scene,
  .hero-emblem-stage,
  .hero-emblem,
  .hero-emblem-halo,
  .hero-laser-beam,
  .hero-laser-particle {
    transform: none !important;
  }

  .hero-emblem-stage {
    opacity: 1 !important;
  }

  .hero-emblem {
    transform: translate(-50%, -50%) !important;
  }

  .hero-emblem-halo {
    transform: translate(-50%, -50%) !important;
  }

  .hero-laser-beam {
    opacity: 0.72 !important;
    transform: translateX(-50%) scaleY(1) !important;
  }

  [data-reveal],
  .hero h1,
  .hero-subtitle,
  .hero-actions,
  .hero-metrics > div {
    opacity: 1 !important;
    transform: none !important;
  }

  .brand::after,
  .primary-link::after {
    display: none;
  }
}

body,
.site-header,
.hero,
.hero-bg,
.room-face,
.intro-grid,
.service-card,
.service-media,
.media-frame,
.process-step,
.industry-card,
.contact-grid,
.lead-form,
.site-footer,
.footer-newsletter input,
.footer-socials a {
  transition:
    color 280ms ease,
    border-color 280ms ease,
    background-color 280ms ease,
    background 280ms ease,
    box-shadow 280ms ease;
}

[data-theme-image] {
  transition: opacity 220ms ease, transform 900ms var(--ease-out), filter 900ms var(--ease-out);
}

.theme-changing [data-theme-image] {
  opacity: 0.72;
}

html[data-theme="light"] {
  --bg: #ffffff;
  --panel: #ffffff;
  --panel-soft: #f4f4f5;
  --text: #111111;
  --muted: #57575d;
  --faint: #77777e;
  --line: rgba(17, 17, 17, 0.13);
  --shadow: 0 24px 64px rgba(17, 17, 17, 0.11);
  color: var(--text);
  background: var(--bg);
}

html[data-theme="light"],
html[data-theme="light"] body {
  background: #fff;
}

html[data-theme="light"] body::before {
  background:
    linear-gradient(90deg, rgba(240, 90, 0, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px);
  opacity: 0.68;
}

html[data-theme="light"] body::after {
  background:
    radial-gradient(circle at 78% 18%, rgba(240, 90, 0, 0.13), transparent 28%),
    radial-gradient(circle at 18% 8%, rgba(31, 143, 255, 0.07), transparent 20%),
    linear-gradient(180deg, #fff 0%, #fafafa 58%, #fff 100%);
}

html[data-theme="light"] .site-header {
  border-color: rgba(17, 17, 17, 0.13);
  background:
    linear-gradient(90deg, rgba(240, 90, 0, 0.055), transparent 32%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.11);
}

html[data-theme="light"] .site-header[data-elevated="true"] {
  border-color: rgba(240, 90, 0, 0.42);
  background: rgba(255, 255, 255, 0.95);
}

html[data-theme="light"] .brand::after {
  background: linear-gradient(90deg, transparent, rgba(240, 90, 0, 0.3), transparent);
}

html[data-theme="light"] .header-brand-dock {
  background:
    linear-gradient(135deg, rgba(240, 90, 0, 0.12), transparent 48%),
    #fff;
}

html[data-theme="light"] .brand-context {
  color: rgba(17, 17, 17, 0.5);
}

html[data-theme="light"] .desktop-nav,
html[data-theme="light"] .lang-switch {
  color: #5f6065;
}

html[data-theme="light"] .lang-switch,
html[data-theme="light"] .menu-button {
  border-color: rgba(17, 17, 17, 0.18);
  background: rgba(17, 17, 17, 0.055);
  color: #111;
}

html[data-theme="light"] .menu-button span {
  background: #111;
}

html[data-theme="light"] .header-cta {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(240, 90, 0, 0.2);
}

html[data-theme="light"] .header-cta:hover,
html[data-theme="light"] .header-cta:focus-visible {
  background: #d94f00;
}

html[data-theme="light"] .account-command {
  border-color: rgba(240, 90, 0, 0.45);
  background: rgba(255, 255, 255, 0.86);
  color: #111;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
}

html[data-theme="light"] .account-copy strong {
  color: #111;
}

html[data-theme="light"] .account-command:hover,
html[data-theme="light"] .account-command:focus-visible {
  background: rgba(240, 90, 0, 0.1);
}

html[data-theme="light"] .account-command svg {
  background: rgba(240, 90, 0, 0.08);
  color: #111;
}

html[data-theme="light"] .mobile-menu {
  border-color: rgba(17, 17, 17, 0.13);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.12);
}

html[data-theme="light"] .mobile-menu a {
  color: #111;
}

html[data-theme="light"] .mobile-menu-section {
  border-top-color: rgba(17, 17, 17, 0.1);
}

html[data-theme="light"] .mobile-menu-action {
  border-color: rgba(17, 17, 17, 0.14);
  background: rgba(17, 17, 17, 0.045);
  color: #111;
}

html[data-theme="light"] .mobile-menu-action:hover,
html[data-theme="light"] .mobile-menu-action:focus-visible {
  border-color: rgba(240, 90, 0, 0.45);
  background: rgba(240, 90, 0, 0.08);
}

html[data-theme="light"] .mobile-menu a.mobile-menu-account {
  border-color: rgba(240, 90, 0, 0.36);
  background: rgba(240, 90, 0, 0.08);
  color: #111;
}

html[data-theme="light"] .hero {
  background: #fff;
}

html[data-theme="light"] .hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.82) 31%, rgba(255, 255, 255, 0.1) 61%, transparent 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 25%, transparent 72%, #fff 100%);
}

html[data-theme="light"] .hero::after {
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(240, 90, 0, 0.13), transparent 18%);
  mix-blend-mode: multiply;
  opacity: 0.5;
}

html[data-theme="light"] .hero-bg {
  background: #fff;
}

html[data-theme="light"] .hero-bg::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 28%, transparent 84%, rgba(255, 255, 255, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 64%, rgba(255, 255, 255, 0.56) 93%, #fff);
}

html[data-theme="light"] .room-face {
  border-color: rgba(240, 90, 0, 0.28);
  background-color: #f8f8f8;
}

html[data-theme="light"] .room-face::before {
  background:
    linear-gradient(rgba(240, 90, 0, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.05) 1px, transparent 1px);
}

html[data-theme="light"] .room-back {
  background:
    radial-gradient(circle at 50% 46%, rgba(240, 90, 0, 0.15), transparent 34%),
    linear-gradient(180deg, #fff7f1, #f7f7f7);
  box-shadow:
    inset 0 0 80px rgba(240, 90, 0, 0.08),
    0 0 46px rgba(240, 90, 0, 0.05);
}

html[data-theme="light"] .room-left {
  background:
    linear-gradient(90deg, #f4f4f4, rgba(240, 90, 0, 0.08)),
    #fafafa;
}

html[data-theme="light"] .room-right {
  background:
    linear-gradient(270deg, #f4f4f4, rgba(240, 90, 0, 0.08)),
    #fafafa;
}

html[data-theme="light"] .room-ceiling {
  background: linear-gradient(180deg, #f2f2f2, #fff7f1);
}

html[data-theme="light"] .room-floor {
  background:
    linear-gradient(180deg, rgba(240, 90, 0, 0.06), rgba(255, 255, 255, 0.96)),
    #fafafa;
}

html[data-theme="light"] .room-circuit,
html[data-theme="light"] .floor-lines {
  background:
    repeating-linear-gradient(90deg, transparent 0 9%, rgba(240, 90, 0, 0.1) 9.1% 9.3%, transparent 9.4% 18%),
    repeating-linear-gradient(0deg, transparent 0 32px, rgba(17, 17, 17, 0.045) 33px, transparent 34px);
}

html[data-theme="light"] .wall-brand {
  background: linear-gradient(90deg, transparent, rgba(240, 90, 0, 0.06), transparent);
}

html[data-theme="light"] .wall-brand span,
html[data-theme="light"] .back-wall-brand span {
  color: rgba(17, 17, 17, 0.62);
}

html[data-theme="light"] .hero-content {
  text-shadow: none;
}

html[data-theme="light"] .hero h1,
html[data-theme="light"] .intro-grid h2,
html[data-theme="light"] .section-heading h2,
html[data-theme="light"] .contact-section h2,
html[data-theme="light"] .service-card h3,
html[data-theme="light"] .process-step h3 {
  color: #111;
}

html[data-theme="light"] .hero h1 {
  color: #111;
}

html[data-theme="light"] .hero-subtitle {
  color: #51545a;
}

html[data-theme="light"] .secondary-link {
  border-color: rgba(17, 17, 17, 0.28);
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
}

html[data-theme="light"] .secondary-link:hover,
html[data-theme="light"] .secondary-link:focus-visible {
  border-color: rgba(240, 90, 0, 0.58);
  background: rgba(240, 90, 0, 0.1);
}

html[data-theme="light"] .primary-link,
html[data-theme="light"] .form-submit,
html[data-theme="light"] .footer-newsletter button {
  color: #fff;
}

html[data-theme="light"] .hero-metrics div {
  border-color: rgba(240, 90, 0, 0.2);
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 12px 30px rgba(36, 55, 78, 0.08),
    inset 0 1px rgba(255, 255, 255, 0.82);
}

html[data-theme="light"] .hero-metrics dd {
  color: #60636a;
}

html[data-theme="light"] .hero-emblem {
  filter:
    drop-shadow(0 8px 12px rgba(42, 54, 68, 0.16))
    drop-shadow(0 0 18px rgba(255, 133, 28, 0.3));
}

html[data-theme="light"] .hero-emblem-halo {
  border-color: rgba(240, 90, 0, 0.22);
  box-shadow:
    0 0 20px rgba(240, 90, 0, 0.12),
    inset 0 0 28px rgba(240, 90, 0, 0.08);
}

html[data-theme="light"] .hero-laser-beam {
  background: linear-gradient(180deg, rgba(240, 90, 0, 0.08), #ff9c22 30%, #ed4d0b 74%, #ffd98b);
  box-shadow:
    0 0 5px rgba(255, 139, 26, 0.84),
    0 0 14px rgba(240, 90, 0, 0.48),
    0 0 28px rgba(240, 90, 0, 0.22);
}

html[data-theme="light"] .hero-laser-source-core {
  background: #fff8e7;
  box-shadow:
    0 0 7px #fff,
    0 0 15px #ff9b24,
    0 0 28px rgba(240, 90, 0, 0.54);
}

html[data-theme="light"] .hero-metrics div {
  border-color: rgba(240, 90, 0, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 247, 247, 0.82));
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.08);
}

html[data-theme="light"] .hero-metrics dd {
  color: #56565c;
}

html[data-theme="light"] .intro-grid {
  border-block-color: rgba(240, 90, 0, 0.24);
  background: linear-gradient(90deg, rgba(240, 90, 0, 0.09), transparent 56%);
}

html[data-theme="light"] .intro-points span,
html[data-theme="light"] .service-card,
html[data-theme="light"] .process-step,
html[data-theme="light"] .industry-card {
  border-color: rgba(17, 17, 17, 0.12);
  background:
    linear-gradient(135deg, rgba(240, 90, 0, 0.075), transparent 44%),
    rgba(255, 255, 255, 0.9);
  color: #111;
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.055);
}

html[data-theme="light"] .service-card:hover,
html[data-theme="light"] .industry-card:hover {
  border-color: rgba(240, 90, 0, 0.5);
  background:
    linear-gradient(135deg, rgba(240, 90, 0, 0.12), transparent 48%),
    #fff;
}

html[data-theme="light"] .service-media,
html[data-theme="light"] .media-frame {
  border-color: rgba(17, 17, 17, 0.12);
  background: #fff;
}

html[data-theme="light"] .work-section {
  background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.025), transparent);
}

html[data-theme="light"] .contact-grid {
  border-color: rgba(240, 90, 0, 0.28);
  background:
    radial-gradient(circle at 15% 18%, rgba(240, 90, 0, 0.12), transparent 25%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 245, 0.92));
}

html[data-theme="light"] .contact-lines a,
html[data-theme="light"] .lead-form label {
  color: #111;
}

html[data-theme="light"] .social-links a {
  border-color: rgba(17, 17, 17, 0.13);
  background: rgba(17, 17, 17, 0.035);
}

html[data-theme="light"] .social-links a:hover,
html[data-theme="light"] .social-links a:focus-visible {
  color: #111;
}

html[data-theme="light"] .social-links .social-facebook {
  color: #1877f2;
}

html[data-theme="light"] .social-links .social-instagram {
  color: #c82667;
}

html[data-theme="light"] .social-links .social-whatsapp {
  color: #128c4a;
}

html[data-theme="light"] .social-links .social-facebook:hover,
html[data-theme="light"] .social-links .social-instagram:hover,
html[data-theme="light"] .social-links .social-whatsapp:hover,
html[data-theme="light"] .social-links .social-facebook:focus-visible,
html[data-theme="light"] .social-links .social-instagram:focus-visible,
html[data-theme="light"] .social-links .social-whatsapp:focus-visible {
  color: #fff;
}

html[data-theme="light"] .lead-form {
  border-color: rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

html[data-theme="light"] .lead-form input,
html[data-theme="light"] .lead-form select,
html[data-theme="light"] .lead-form textarea {
  border-color: rgba(17, 17, 17, 0.14);
  background: #fff;
  color: #111;
}

html[data-theme="light"] .site-footer {
  background:
    radial-gradient(circle at 12% 8%, rgba(240, 90, 0, 0.1), transparent 25%),
    linear-gradient(180deg, #fafafa, #fff);
}

html[data-theme="light"] .footer-brand-column h2,
html[data-theme="light"] .footer-column h2,
html[data-theme="light"] .footer-back-top {
  color: #111;
}

html[data-theme="light"] .footer-newsletter input {
  border-color: rgba(17, 17, 17, 0.14);
  background: #fff;
  color: #111;
}

html[data-theme="light"] .footer-socials a {
  border-color: rgba(17, 17, 17, 0.14);
  background: rgba(17, 17, 17, 0.035);
  color: #111;
}

html[data-theme="light"] .footer-socials .social-facebook {
  border-color: rgba(24, 119, 242, 0.3);
  background: rgba(24, 119, 242, 0.08);
  color: #1877f2;
}

html[data-theme="light"] .footer-socials .social-instagram {
  border-color: rgba(225, 48, 108, 0.3);
  background: rgba(225, 48, 108, 0.07);
  color: #c82667;
}

html[data-theme="light"] .footer-socials .social-whatsapp {
  border-color: rgba(18, 140, 74, 0.3);
  background: rgba(37, 211, 102, 0.08);
  color: #128c4a;
}

html[data-theme="light"] .footer-socials .social-facebook:hover,
html[data-theme="light"] .footer-socials .social-instagram:hover,
html[data-theme="light"] .footer-socials .social-whatsapp:hover,
html[data-theme="light"] .footer-socials .social-facebook:focus-visible,
html[data-theme="light"] .footer-socials .social-instagram:focus-visible,
html[data-theme="light"] .footer-socials .social-whatsapp:focus-visible {
  color: #fff;
}

html[data-theme="light"] .footer-bottom {
  border-top-color: rgba(17, 17, 17, 0.12);
}

@media (max-width: 720px) {
  html[data-theme="light"] .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0 35%, rgba(255, 255, 255, 0.66) 50%, #fff 62%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.16), transparent 26%, transparent 84%, rgba(255, 255, 255, 0.18));
  }

  html[data-theme="light"] .hero-bg::after {
    background: linear-gradient(180deg, transparent 0 42%, rgba(255, 255, 255, 0.14) 49%, #fff 61%);
  }
}
