:root {
  --yellow: #e9f000;
  --yellow-2: #f6ff39;
  --violet: #432080;
  --violet-2: #6f39d7;
  --black: #08090b;
  --graphite: #111318;
  --metal: #252830;
  --white: #f5f5f5;
  --text: #d8d9df;
  --muted: #9b9daa;
  --line: rgba(245, 245, 245, 0.14);
  --panel: rgba(17, 19, 24, 0.76);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --display: "Space Grotesk", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--text);
  font-family: var(--display);
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(rgba(233, 240, 0, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 240, 0, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 78% 14%, rgba(67, 32, 128, 0.5), transparent 28rem),
    radial-gradient(circle at 14% 18%, rgba(233, 240, 0, 0.12), transparent 22rem),
    linear-gradient(180deg, #08090b, #0b0b10 48%, #09090d);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background: repeating-linear-gradient(135deg, transparent 0 22px, rgba(245, 245, 245, 0.025) 22px 23px);
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(233, 240, 0, 0.86);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 20px clamp(18px, 5vw, 74px);
  background: linear-gradient(180deg, rgba(8, 9, 11, 0.86), rgba(8, 9, 11, 0));
  transition: padding 260ms ease, background 260ms ease, border-color 260ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.1);
  background: rgba(8, 9, 11, 0.88);
  backdrop-filter: blur(18px);
}

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

.brand-text {
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand-text i,
h1 span,
.site-footer span {
  color: var(--yellow);
  font-style: normal;
  text-shadow: 0 0 18px rgba(233, 240, 0, 0.35);
}

.brand-text[data-logo-load] i {
  display: inline-block;
  overflow: hidden;
  max-width: 0;
  animation: revealSlash 820ms 260ms ease forwards;
}

.desktop-nav {
  justify-self: end;
  display: flex;
  gap: clamp(10px, 1.4vw, 18px);
  color: var(--muted);
  font-size: clamp(0.76rem, 0.86vw, 0.88rem);
  font-weight: 700;
}

.desktop-nav a,
.site-footer a {
  position: relative;
}

.desktop-nav a::after,
.site-footer a::after {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--yellow);
  box-shadow: 0 0 14px rgba(233, 240, 0, 0.8);
  transition: width 220ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after,
.site-footer a:hover::after {
  width: 100%;
}

.header-cta,
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid rgba(233, 240, 0, 0.34);
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
  isolation: isolate;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.btn span {
  margin-left: 10px;
  transition: transform 220ms ease;
}

.btn:hover,
.header-cta:hover {
  border-color: rgba(233, 240, 0, 0.72);
  box-shadow: 0 18px 44px rgba(233, 240, 0, 0.14);
  transform: translateY(-2px);
}

.btn:hover span {
  transform: translateX(5px);
}

.btn::before,
.header-cta::before {
  position: absolute;
  inset: 0 auto 0 -70%;
  z-index: -1;
  width: 52%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-18deg);
  transition: left 520ms ease;
}

.btn:hover::before,
.header-cta:hover::before {
  left: 128%;
}

.header-cta {
  color: var(--yellow);
  font-size: 0.78rem;
}

.btn-primary {
  color: #090a0c;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
}

.btn-secondary {
  color: var(--white);
  background: linear-gradient(135deg, rgba(67, 32, 128, 0.86), rgba(37, 40, 48, 0.76));
}

.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(245, 245, 245, 0.04);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(245, 245, 245, 0.06);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.mobile-nav {
  position: fixed;
  top: 76px;
  left: 16px;
  right: 16px;
  z-index: 55;
  display: none;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 9, 11, 0.98);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: block;
  padding: 13px;
  color: var(--white);
  font-weight: 800;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
  align-items: center;
  gap: clamp(34px, 5vw, 78px);
  min-height: 100svh;
  padding: 150px clamp(18px, 5vw, 74px) 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--white);
  font-weight: 900;
  line-height: 1.02;
}

h1 {
  max-width: 860px;
  font-size: clamp(4.2rem, 9vw, 8.7rem);
}

h2 {
  max-width: 980px;
  font-size: clamp(2.15rem, 4.9vw, 5.1rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-kicker {
  margin: 12px 0 0;
  color: var(--white);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  font-weight: 800;
}

.hero-lede,
.section-heading p,
.contact-info dd,
.service-card p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.hero-location {
  display: grid;
  gap: 4px;
  max-width: 460px;
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 3px solid var(--yellow);
  background: rgba(245, 245, 245, 0.04);
  font-family: var(--mono);
}

.hero-location strong {
  color: var(--white);
}

.hero-location span {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-visual {
  perspective: 1200px;
}

.scanner-panel {
  position: relative;
  min-height: 560px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(233, 240, 0, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 28%, rgba(233, 240, 0, 0.16), transparent 15rem),
    radial-gradient(circle at 26% 72%, rgba(111, 57, 215, 0.32), transparent 18rem),
    linear-gradient(145deg, rgba(67, 32, 128, 0.84), rgba(17, 19, 24, 0.96));
  box-shadow: var(--shadow);
  transform: rotateX(2deg) rotateY(-5deg);
  animation: panelFloat 7s ease-in-out infinite;
}

.scanner-panel::before,
.tech-object::before,
.map-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(245, 245, 245, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 245, 245, 0.045) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(#000, transparent 88%);
}

.panel-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.panel-top strong {
  color: var(--yellow);
}

.car-scan {
  position: relative;
  z-index: 1;
  height: 330px;
  margin-top: 36px;
  overflow: hidden;
}

.car-body,
.car-roof {
  position: absolute;
  border: 2px solid rgba(245, 245, 245, 0.78);
  filter: drop-shadow(0 0 18px rgba(233, 240, 0, 0.28));
}

.car-roof {
  left: 20%;
  right: 22%;
  bottom: 126px;
  height: 72px;
  border-bottom: 0;
  border-radius: 74px 110px 0 0;
  transform: skewX(-12deg);
}

.car-body {
  left: 8%;
  right: 7%;
  bottom: 84px;
  height: 72px;
  border-radius: 80px 120px 28px 24px;
}

.wheel {
  position: absolute;
  bottom: 56px;
  width: 62px;
  height: 62px;
  border: 9px solid rgba(233, 240, 0, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(233, 240, 0, 0.35);
}

.wheel.left {
  left: 20%;
}

.wheel.right {
  right: 17%;
}

.scan-beam {
  position: absolute;
  inset: 0 auto 0 8%;
  z-index: 3;
  width: 3px;
  background: var(--yellow);
  box-shadow: 0 0 22px rgba(233, 240, 0, 0.9), 0 0 80px rgba(233, 240, 0, 0.5);
  animation: scanHorizontal 4s ease-in-out infinite;
}

.car-scan i {
  position: absolute;
  color: rgba(245, 245, 245, 0.75);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-style: normal;
  letter-spacing: 0.08em;
}

.car-scan i:nth-of-type(1) { left: 8%; top: 22%; }
.car-scan i:nth-of-type(2) { left: 58%; top: 18%; }
.car-scan i:nth-of-type(3) { left: 20%; bottom: 18%; }
.car-scan i:nth-of-type(4) { right: 4%; top: 42%; }
.car-scan i:nth-of-type(5) { left: 43%; bottom: 8%; }
.car-scan i:nth-of-type(6) { right: 18%; bottom: 25%; color: var(--yellow); }

.diagnostic-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.diagnostic-grid span,
.archive-tags span,
.geo-tags span,
.filter-bar button {
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 9, 11, 0.45);
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.signal-strip article {
  min-height: 112px;
  padding: 24px;
  background: rgba(17, 19, 24, 0.86);
  transition: color 220ms ease, transform 220ms ease;
}

.signal-strip article:hover {
  color: var(--yellow);
  transform: translateY(-3px);
}

.signal-strip small {
  display: block;
  color: var(--yellow);
  font-family: var(--mono);
  margin-bottom: 8px;
}

.section {
  padding: clamp(72px, 9vw, 132px) clamp(18px, 5vw, 74px);
}

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

.split {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
}

.timeline,
.service-grid,
.gallery-grid,
.training-lab {
  display: grid;
  gap: 16px;
}

.timeline {
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.timeline::before,
.evolution::before {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, var(--yellow), var(--violet));
  box-shadow: 0 0 20px rgba(233, 240, 0, 0.3);
}

.timeline::before {
  left: 0;
  right: 0;
  top: 22px;
  height: 2px;
}

.timeline-card,
.service-card,
.portrait-card,
.tech-object,
.lab-card,
.map-panel,
.gallery-card,
.contact-actions,
.contact-info {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(37, 40, 48, 0.66), rgba(17, 19, 24, 0.82));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.timeline-card,
.service-card,
.gallery-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.timeline-card::before {
  display: block;
  width: 14px;
  height: 14px;
  margin-bottom: 24px;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  background: var(--black);
  content: "";
}

.timeline-card small,
.service-card small {
  color: var(--yellow);
  font-family: var(--mono);
  font-weight: 800;
}

.timeline-card:hover,
.service-card:hover,
.gallery-card:hover {
  border-color: rgba(233, 240, 0, 0.56);
  box-shadow: 0 24px 70px rgba(67, 32, 128, 0.18);
  transform: translateY(-6px);
}

.portrait-card {
  padding: 18px;
}

.photo-placeholder,
.lab-card,
.gallery-visual {
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(233, 240, 0, 0.1), transparent 28%),
    linear-gradient(145deg, rgba(67, 32, 128, 0.7), rgba(8, 9, 11, 0.96));
  color: rgba(245, 245, 245, 0.74);
  font-family: var(--mono);
  text-align: center;
  text-transform: uppercase;
}

.lab-card,
.gallery-visual {
  margin: 0;
}

.lab-card img,
.gallery-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.lab-card:hover img,
.gallery-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.lab-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 10px 12px;
  border: 1px solid rgba(233, 240, 0, 0.28);
  border-radius: 8px;
  background: rgba(8, 9, 11, 0.78);
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.archive-tags,
.geo-tags,
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 250px;
}

.service-card::after,
.gallery-card::after {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--yellow), var(--violet), transparent);
  transform: translateX(-112%);
  transition: transform 380ms ease;
}

.service-card:hover::after,
.gallery-card:hover::after {
  transform: translateX(0);
}

.spc {
  background: linear-gradient(180deg, rgba(67, 32, 128, 0.16), rgba(8, 9, 11, 0));
}

.tech-object {
  position: relative;
  min-height: 430px;
  padding: 24px;
  overflow: hidden;
}

.archive-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  padding: 8px 10px;
  border: 1px solid rgba(233, 240, 0, 0.34);
  border-radius: 8px;
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.tech-object strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 80px;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  line-height: 0.94;
}

.device-screen {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 420px;
  margin-top: 34px;
}

.device-screen span {
  padding: 14px;
  border: 1px solid rgba(233, 240, 0, 0.18);
  border-radius: 8px;
  background: rgba(8, 9, 11, 0.64);
  color: var(--yellow);
  font-family: var(--mono);
}

.featured {
  color: var(--yellow) !important;
  font-size: clamp(1.35rem, 2.2vw, 2rem) !important;
  font-weight: 900;
}

.training {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
}

.training-lab {
  grid-template-columns: repeat(2, 1fr);
}

.training-lab .lab-card:first-child {
  grid-row: span 2;
}

.lab-card {
  min-height: 210px;
}

.technology {
  background:
    linear-gradient(180deg, rgba(17, 19, 24, 0.62), rgba(8, 9, 11, 0.42)),
    repeating-linear-gradient(90deg, transparent 0 120px, rgba(233, 240, 0, 0.03) 120px 121px);
}

.evolution {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding: 34px 0 0;
  margin: 0;
  list-style: none;
}

.evolution::before {
  top: 0;
  left: 0;
  width: var(--progress, 0%);
  height: 2px;
  transition: width 140ms linear;
}

.evolution li {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 9, 11, 0.56);
  color: var(--muted);
  font-weight: 800;
  transition: border-color 220ms ease, color 220ms ease, background 220ms ease;
}

.evolution li.is-lit {
  border-color: rgba(233, 240, 0, 0.64);
  background: rgba(233, 240, 0, 0.08);
  color: var(--white);
}

.evolution span {
  display: block;
  margin-bottom: 12px;
  color: var(--yellow);
  font-family: var(--mono);
}

.map-panel {
  position: relative;
  display: grid;
  min-height: 430px;
  place-content: center;
  overflow: hidden;
  text-align: center;
}

.map-panel strong {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.map-panel small {
  position: relative;
  z-index: 2;
  color: var(--yellow);
  font-family: var(--mono);
}

.route {
  position: absolute;
  left: 14%;
  right: 12%;
  top: 52%;
  z-index: 1;
  height: 3px;
  background: var(--yellow);
  box-shadow: 0 0 24px rgba(233, 240, 0, 0.6);
  transform: rotate(-18deg);
}

.route::before,
.route::after {
  position: absolute;
  top: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
  transform: translateY(-50%);
}

.route::before {
  left: 0;
}

.route::after {
  right: 0;
}

.filter-bar {
  margin-bottom: 20px;
}

.filter-bar button {
  cursor: pointer;
}

.filter-bar button.is-active {
  border-color: rgba(233, 240, 0, 0.7);
  color: #090a0c;
  background: var(--yellow);
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-card {
  padding: 0;
}

.gallery-visual {
  min-height: 230px;
  border-radius: 8px 8px 0 0;
  transition: transform 320ms ease;
}

.gallery-card div:last-child {
  padding: 18px;
}

.gallery-card small {
  color: var(--yellow);
  font-family: var(--mono);
}

.news-grid,
.associate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.associate-grid {
  grid-template-columns: repeat(5, 1fr);
}

.news-card,
.associate-card {
  position: relative;
  min-height: 260px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(67, 32, 128, 0.24), rgba(17, 19, 24, 0.86)),
    linear-gradient(rgba(245, 245, 245, 0.035) 1px, transparent 1px);
  background-size: auto, 28px 28px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.news-card::after,
.associate-card::after {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--yellow), var(--violet), transparent);
  transform: translateX(-110%);
  transition: transform 360ms ease;
}

.news-card:hover,
.associate-card:hover {
  border-color: rgba(233, 240, 0, 0.5);
  box-shadow: 0 24px 70px rgba(233, 240, 0, 0.08);
  transform: translateY(-5px);
}

.news-card:hover::after,
.associate-card:hover::after {
  transform: translateX(0);
}

.news-card small,
.associate-card small {
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-card p,
.associate-card p {
  color: var(--muted);
}

.news-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.62fr);
  gap: clamp(28px, 5vw, 70px);
}

.contact-info,
.contact-actions {
  padding: 24px;
}

.contact-info dl {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
}

.contact-info div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-info dt {
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-info dd {
  margin: 4px 0 0;
}

.contact-actions {
  display: grid;
  align-content: center;
  gap: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 44px clamp(18px, 5vw, 74px) 100px;
  border-top: 1px solid var(--line);
  background: rgba(8, 9, 11, 0.92);
}

.site-footer strong {
  display: block;
  color: var(--white);
  font-size: 1.3rem;
}

.site-footer p,
.site-footer address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
}

.site-footer > p {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.mobile-contact {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 70;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(233, 240, 0, 0.3);
  border-radius: 8px;
  background: rgba(8, 9, 11, 0.92);
  backdrop-filter: blur(16px);
}

.mobile-contact a {
  min-height: 48px;
  display: grid;
  place-items: center;
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-contact a + a {
  border-left: 1px solid var(--line);
}

.scanner-media {
  position: relative;
}

.scanner-media::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  content: "";
  background: var(--yellow);
  box-shadow: 0 0 28px rgba(233, 240, 0, 0.78);
  animation: mediaScan 3.8s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@keyframes revealSlash {
  to { max-width: 2.2em; }
}

@keyframes panelFloat {
  0%, 100% { transform: rotateX(2deg) rotateY(-5deg) translateY(0); }
  50% { transform: rotateX(2deg) rotateY(-5deg) translateY(-8px); }
}

@keyframes scanHorizontal {
  0%, 100% { left: 8%; opacity: 0.25; }
  50% { left: 92%; opacity: 1; }
}

@keyframes mediaScan {
  0%, 100% { left: 0; opacity: 0.3; }
  50% { left: 100%; opacity: 1; }
}

@media (max-width: 1120px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

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

  .menu-toggle {
    display: block;
  }

  .hero,
  .split,
  .training,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .gallery-grid,
  .timeline,
  .news-grid,
  .associate-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .evolution {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding-top: 122px;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .scanner-panel {
    min-height: 440px;
  }

  .signal-strip,
  .service-grid,
  .gallery-grid,
  .timeline,
  .news-grid,
  .associate-grid,
  .training-lab,
  .evolution {
    grid-template-columns: 1fr;
  }

  .timeline::before,
  .evolution::before {
    display: none;
  }

  .diagnostic-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .mobile-contact {
    display: grid;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
