﻿:root {
  --ink: #03070a;
  --panel: #071116;
  --panel-soft: #0d1c23;
  --text: #f7fbfb;
  --muted: #9ab0b5;
  --line: rgba(255, 255, 255, 0.16);
  --accent-start: #5768ff;
  --accent-end: #a057ff;
  --accent-mid: #7b62ff;
  --red: #a057ff;
  --amber: #7b62ff;
  --cyan: #5768ff;
  --green: #5768ff;
  --violet: #a057ff;
  --glass: rgba(7, 18, 24, 0.5);
  --glass-strong: rgba(7, 18, 24, 0.72);
  --liquid-line: rgba(123, 98, 255, 0.26);
  --glow-cyan: 0 0 34px rgba(87, 104, 255, 0.22);
  --glow-red: 0 0 34px rgba(160, 87, 255, 0.2);
  --white-soft: rgba(255, 255, 255, 0.9);
  --shadow: 0 34px 96px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  scroll-snap-type: y mandatory;
  scrollbar-color: rgba(255, 255, 255, 0.36) rgba(255, 255, 255, 0.06);
  scrollbar-width: thin;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--ink);
  font-family:
    "Microsoft YaHei",
    "PingFang SC",
    "Helvetica Neue",
    Arial,
    sans-serif;
  line-height: 1.6;
}

::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

::-webkit-scrollbar-track {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(8, 17, 20, 0.28);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.04);
}

::-webkit-scrollbar-thumb {
  border: 3px solid rgba(8, 17, 20, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.16)),
    linear-gradient(180deg, rgba(87, 104, 255, 0.34), rgba(160, 87, 255, 0.26));
  background-clip: padding-box;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    inset 0 12px 22px rgba(255, 255, 255, 0.08),
    0 10px 28px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.22)),
    linear-gradient(180deg, rgba(87, 104, 255, 0.46), rgba(160, 87, 255, 0.34));
}

::-webkit-scrollbar-corner {
  background: rgba(8, 17, 20, 0.32);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(87, 104, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 78%);
  content: "";
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -9;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(87, 104, 255, 0.08) 34%, transparent 52%),
    linear-gradient(245deg, transparent 0 42%, rgba(160, 87, 255, 0.055) 60%, transparent 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 36%, rgba(0, 0, 0, 0.18));
  opacity: 0.78;
  content: "";
}

body.nav-open {
  overflow: hidden;
}

/* 移动端菜单遮罩层 */
.nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 15;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 981px) {
  .nav-backdrop {
    display: none;
  }
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 3vw, 48px);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    backdrop-filter 0.25s ease;
}

.site-header.scrolled,
.site-header.nav-active {
  background: rgba(8, 17, 20, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  min-width: max-content;
}

.logo-shell {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.34));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: clamp(16px, 1.8vw, 34px);
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(15px, 0.92vw, 17px);
  font-weight: 800;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 9px 0;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
  transition:
    color 0.2s ease,
    text-shadow 0.2s ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: white;
  text-shadow:
    0 0 18px rgba(87, 104, 255, 0.42),
    0 8px 24px rgba(0, 0, 0, 0.34);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 10px;
  min-width: 174px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(87, 104, 255, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(7, 17, 21, 0.38);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    0 14px 38px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  color: white;
  line-height: 1.1;
  text-align: center;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.header-contact span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(87, 104, 255, 0.28);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(87, 104, 255, 0.2), rgba(160, 87, 255, 0.1)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 22px rgba(87, 104, 255, 0.14);
  color: var(--cyan);
  font-size: 14px;
  font-weight: 900;
}

.header-contact strong {
  color: white;
  font-size: 15px;
  letter-spacing: 0;
}

.header-contact:hover {
  transform: translateY(-1px);
  border-color: rgba(87, 104, 255, 0.52);
  background:
    linear-gradient(135deg, rgba(87, 104, 255, 0.16), rgba(160, 87, 255, 0.08)),
    rgba(7, 17, 21, 0.52);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.09),
    0 16px 42px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(87, 104, 255, 0.12);
}

.nav-toggle {
  display: none;
  justify-self: end;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.nav-toggle em {
  margin-left: 4px;
  font-size: 13px;
  font-style: normal;
}

.section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.section-inner {
  width: min(1520px, calc(100% - clamp(24px, 3vw, 56px)));
  margin: 0 auto;
  padding: clamp(76px, 8vw, 116px) 0;
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -3;
  object-fit: cover;
  background: #05090b;
}

.hero-shade {
  z-index: -2;
  background: transparent;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(87, 104, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 104, 255, 0.08) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.28;
  mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.72) 18% 82%, transparent);
}

.hero-status {
  position: absolute;
  right: clamp(22px, 5vw, 70px);
  bottom: 120px;
  display: grid;
  gap: 4px;
  min-width: 230px;
  padding: 16px 18px;
  border: 1px solid rgba(87, 104, 255, 0.28);
  border-radius: 8px;
  background: rgba(5, 12, 15, 0.48);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-status span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.hero-status strong {
  color: white;
  font-size: 18px;
}

.hero-content {
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 92px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  padding: 7px 12px;
  border: 1px solid rgba(87, 104, 255, 0.26);
  border-radius: 8px;
  background: rgba(87, 104, 255, 0.1);
  color: var(--cyan);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 780px;
  font-size: clamp(56px, 10vw, 124px);
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

.hero-lead {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
  color: var(--white-soft);
  font-size: clamp(34px, 5.2vw, 72px);
  font-weight: 800;
  line-height: 1.18;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.hero-lead span {
  display: block;
}

.hero-lead span + span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72em;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

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

.button.primary {
  border-color: var(--red);
  background: var(--red);
}

.button.ghost {
  background: linear-gradient(135deg, #FF8A80, #FC5C65);
  backdrop-filter: blur(12px);
  color: white;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 48px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-metrics div {
  min-width: 0;
  padding: 20px;
  background: rgba(8, 17, 20, 0.66);
}

.hero-metrics dt {
  color: white;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  line-height: 1;
}

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

.scroll-cue {
  position: absolute;
  right: clamp(22px, 5vw, 70px);
  bottom: 30px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.scroll-cue span {
  width: 6px;
  height: 16px;
  border-radius: 999px;
  background: white;
  animation: cue 1.5s ease-in-out infinite;
}

@keyframes cue {
  0%,
  100% {
    transform: translateY(-6px);
    opacity: 0.45;
  }

  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

.positioning {
  background:
    linear-gradient(180deg, #0a1114 0%, #0d171a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.74fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.positioning-copy p,
.section-topline > p,
.about-content > p,
.contact-layout > div > h2 + .contact-info {
  color: var(--muted);
}

.positioning-copy > p,
.about-content > p {
  margin-bottom: 26px;
  font-size: 18px;
}

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

.quick-entry a {
  min-height: 74px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.quick-entry a:hover {
  transform: translateY(-3px);
  border-color: rgba(87, 104, 255, 0.6);
  background: rgba(87, 104, 255, 0.1);
}

.media-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  gap: 12px;
  margin-top: 18px;
}

.media-frame {
  position: relative;
  min-height: 156px;
  overflow: hidden;
  border: 1px solid rgba(87, 104, 255, 0.24);
  border-radius: 8px;
  background: #0c1518;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.media-frame-large {
  min-height: 226px;
}

.media-frame video,
.dashboard-media video,
.dashboard-media img,
.visual-rail img,
.image-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 28%, rgba(5, 12, 15, 0.78) 100%),
    linear-gradient(90deg, rgba(87, 104, 255, 0.14), transparent 45%);
  content: "";
}

.media-frame span {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  z-index: 1;
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.services,
.cases {
  color: white;
}

.services .eyebrow,
.cases .eyebrow {
  border-color: rgba(160, 87, 255, 0.34);
  background: rgba(160, 87, 255, 0.12);
  color: #7B62FF;
}

.section-topline {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: end;
  width: 100%;
  min-height: clamp(144px, 14vw, 208px);
  margin-bottom: 42px;
}

.section-topline > p {
  max-width: 560px;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.62;
}

.services .section-topline > p,
.cases .section-topline > p {
  color: rgba(255, 255, 255, 0.72);
}

.visual-rail {
  position: relative;
  min-height: clamp(260px, 34vw, 430px);
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 8px;
  background: #0b1215;
  box-shadow: 0 26px 78px rgba(8, 17, 20, 0.18);
}

.visual-rail::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 17, 20, 0.78), transparent 62%),
    linear-gradient(0deg, rgba(8, 17, 20, 0.7), transparent 54%);
  content: "";
}

.visual-rail div {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.visual-rail span,
.image-pair figcaption {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.visual-rail strong {
  color: white;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.1;
}

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

.service-card {
  position: relative;
  min-height: 334px;
  overflow: hidden;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(16, 25, 29, 0.12);
  border-radius: 8px;
  background: rgba(7, 18, 24, 0.5);
  box-shadow: 0 18px 46px rgba(8, 17, 20, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--cyan));
  content: "";
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(160, 87, 255, 0.32);
  box-shadow: 0 24px 70px rgba(8, 17, 20, 0.14);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #A057FF;
  font-weight: 800;
}

.card-visual {
  position: relative;
  height: clamp(104px, 8vw, 132px);
  margin: -10px -10px 18px;
  overflow: hidden;
  border: 1px solid rgba(87, 104, 255, 0.2);
  border-radius: 8px;
  background: #081114;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.card-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 18%, rgba(8, 17, 20, 0.78) 100%),
    linear-gradient(90deg, rgba(160, 87, 255, 0.18), rgba(87, 104, 255, 0.08));
  content: "";
}

.card-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.04);
  transition: transform 0.45s ease;
}

.service-card:hover .card-visual img,
.smart-modules article:hover .card-visual img {
  transform: scale(1.05);
}

.service-card p,
.case-card p,
.scene-strip p,
.about-grid p,
.smart-modules p,
.contact-info span,
.form-note {
  color: #667475;
}

.smart {
  background:
    linear-gradient(180deg, #0a1114 0%, #10191d 58%, #121d22 100%);
}

.flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 34px;
}

.flow-step {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 10px;
  border: 1px solid rgba(87, 104, 255, 0.28);
  border-radius: 8px;
  background: rgba(87, 104, 255, 0.08);
  color: white;
  font-weight: 800;
  text-align: center;
}

.flow-step:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -10px;
  z-index: 1;
  width: 10px;
  height: 2px;
  background: rgba(87, 104, 255, 0.65);
  content: "";
}

.platform-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.platform-intro article {
  padding: 20px 22px;
  border: 1px solid rgba(87, 104, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(160, 87, 255, 0.08), rgba(87, 104, 255, 0.07)),
    rgba(255, 255, 255, 0.055);
}

.platform-intro span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.platform-intro p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.smart-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 18px;
}

.dashboard-preview {
  min-height: 320px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(160, 87, 255, 0.18), rgba(87, 104, 255, 0.12)),
    #0f181d;
  box-shadow: var(--shadow);
}

.dashboard-media {
  position: relative;
  min-height: 130px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #081114;
}

.dashboard-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 14%, rgba(8, 17, 20, 0.76) 100%),
    linear-gradient(90deg, rgba(160, 87, 255, 0.14), rgba(87, 104, 255, 0.08));
  content: "";
}

.dashboard-media div {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 1;
  display: grid;
  gap: 2px;
}

.dashboard-media span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.dashboard-media strong {
  color: white;
  font-size: 17px;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.dashboard-header span {
  color: var(--white-soft);
  font-weight: 800;
}

.dashboard-header strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 30px;
  border-radius: 999px;
  background: rgba(87, 104, 255, 0.16);
  color: var(--green);
  font-size: 13px;
}

.dashboard-main {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.ring {
  display: grid;
  place-items: center;
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #0f181d 0 57%, transparent 58%),
    conic-gradient(var(--cyan) 0 78%, rgba(255, 255, 255, 0.14) 78% 100%);
}

.ring span,
.ring small {
  grid-area: 1 / 1;
}

.ring span {
  color: white;
  font-size: 40px;
  font-weight: 900;
}

.ring small {
  margin-top: 70px;
  color: var(--muted);
  font-size: 13px;
}

.signal-list {
  display: grid;
  gap: 14px;
}

.signal-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white-soft);
}

.signal-list b {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(87, 104, 255, 0.8);
}

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

.smart-modules article,
.scene-strip article,
.about-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.smart-modules .card-visual {
  margin: -10px -10px 18px;
}

.smart-modules p,
.scene-strip p,
.about-grid p {
  margin-bottom: 0;
}

.scenes {
  background: #10191d;
}

.image-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 16px;
  margin-bottom: 18px;
}

.image-pair figure {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #0b1215;
}

.image-pair figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(8, 17, 20, 0.82) 100%);
  content: "";
}

.image-pair figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 1;
  color: white;
}

.scene-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.scene-strip article {
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(87, 104, 255, 0.08), transparent 42%),
    #111d22;
}

.watch {
  background: #0a1114;
}

.watch-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.96fr) minmax(520px, 1.04fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
}

.watch-visual {
  position: relative;
  min-height: clamp(430px, 44vw, 640px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(87, 104, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(87, 104, 255, 0.12), rgba(160, 87, 255, 0.08)),
    #081114;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.watch-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04);
}

.watch-visual::before,
.watch-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.watch-visual::before {
  z-index: 1;
  background:
    linear-gradient(rgba(87, 104, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 104, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.22;
  mix-blend-mode: screen;
}

.watch-visual::after {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(8, 17, 20, 0.06) 0%, rgba(8, 17, 20, 0.18) 48%, rgba(8, 17, 20, 0.82) 100%),
    linear-gradient(90deg, rgba(87, 104, 255, 0.18), transparent 44%, rgba(160, 87, 255, 0.1));
}

.watch-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(6, 15, 18, 0.58);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.watch-visual figcaption span,
.watch-highlights span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
}

.watch-visual figcaption strong {
  color: white;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.12;
}

.watch-copy {
  display: grid;
  gap: 18px;
}

.watch .section-heading p:not(.eyebrow) {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

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

.watch-highlights span {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 10px;
  border: 1px solid rgba(87, 104, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(87, 104, 255, 0.14), rgba(160, 87, 255, 0.08)),
    rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
  backdrop-filter: blur(14px);
}

.watch-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.watch-board article {
  min-height: 154px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(87, 104, 255, 0.09), transparent 48%),
    rgba(8, 17, 20, 0.62);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.watch-board span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--green);
  font-weight: 900;
}

.watch-board p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.cases {
  background: #03070a;
}

.case-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.case-tabs button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(16, 25, 29, 0.16);
  border-radius: 8px;
  background: rgba(7, 18, 24, 0.5);
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.case-tabs button:hover,
.case-tabs button.active {
  border-color: #A057FF;
  background: #A057FF;
  color: white;
}

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

.case-card {
  min-height: 254px;
  padding: 24px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(16, 25, 29, 0.2), rgba(16, 25, 29, 0.86)),
    #253136;
  background-position: center;
  background-size: auto;
  color: white;
  transition:
    background-size 0.35s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.case-card:nth-child(1) {
  background-image:
    linear-gradient(180deg, rgba(16, 25, 29, 0.2), rgba(16, 25, 29, 0.86)),
    url("./assets/visual-iot-sensors.png");
}

.case-card:nth-child(2) {
  background-image:
    linear-gradient(180deg, rgba(16, 25, 29, 0.2), rgba(16, 25, 29, 0.86)),
    url("./assets/visual-maintenance.png");
}

.case-card:nth-child(3) {
  background-image:
    linear-gradient(180deg, rgba(16, 25, 29, 0.2), rgba(16, 25, 29, 0.86)),
    url("./assets/visual-iot-sensors.png");
}

.case-card:nth-child(4) {
  background-image:
    linear-gradient(180deg, rgba(16, 25, 29, 0.2), rgba(16, 25, 29, 0.86)),
    url("./assets/visual-command-center2.png");
}

.case-card:nth-child(5) {
  background-image:
    linear-gradient(180deg, rgba(16, 25, 29, 0.2), rgba(16, 25, 29, 0.86)),
    url("./assets/card-service-mechanical.png");
}

.case-card:nth-child(6) {
  background-image:
    linear-gradient(180deg, rgba(16, 25, 29, 0.2), rgba(16, 25, 29, 0.86)),
    url("./assets/card-service-maintenance.png");
}

.case-card:nth-child(7) {
  background-image:
    linear-gradient(180deg, rgba(16, 25, 29, 0.2), rgba(16, 25, 29, 0.86)),
    url("./assets/card-service-inspection.png");
}

.case-card:nth-child(8) {
  background-image:
    linear-gradient(180deg, rgba(16, 25, 29, 0.2), rgba(16, 25, 29, 0.86)),
    url("./assets/card-platform-3d.png");
}

.case-card:nth-child(9) {
  background-image:
    linear-gradient(180deg, rgba(16, 25, 29, 0.2), rgba(16, 25, 29, 0.86)),
    url("./assets/card-service-consulting.png");
}

.case-card:nth-child(10) {
  background-image:
    linear-gradient(180deg, rgba(16, 25, 29, 0.2), rgba(16, 25, 29, 0.86)),
    url("./assets/bg-watch.png");
}

.case-card.is-hidden {
  display: none;
}

.case-card:hover {
  transform: translateY(-4px);
  background-size: 105%;
}

.case-card span {
  display: inline-flex;
  margin-bottom: 56px;
  color: var(--amber);
  font-size: 14px;
  font-weight: 800;
}

.case-card p {
  color: rgba(255, 255, 255, 0.75);
}

.about {
  background:
    linear-gradient(180deg, #0a1114 0%, #10191d 100%);
}

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

.company-profile {
  margin: 26px 0 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(160, 87, 255, 0.1), rgba(87, 104, 255, 0.08)),
    rgba(255, 255, 255, 0.05);
}

.company-profile dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.company-profile div {
  min-width: 0;
  padding: 16px;
  background: rgba(12, 21, 24, 0.86);
}

.company-profile dt {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 800;
}

.company-profile dd {
  margin: 0;
  color: white;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.contact {
  background: #f7faf9;
  color: #10191d;
}

.contact .eyebrow {
  border-color: rgba(160, 87, 255, 0.2);
  background: rgba(160, 87, 255, 0.08);
  color: #A057FF;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.68fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: start;
}

.contact-layout-simple {
  display: grid;
  grid-template-columns: 1fr;
  max-width: none;
}

.contact-info {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contact-layout-simple .contact-info {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}

.contact-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: end;
}

.contact-heading > p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.75;
}

.contact-about-grid {
  margin-top: 28px;
}

.contact-info p {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid rgba(16, 25, 29, 0.12);
}

.contact-info strong {
  color: #10191d;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(16, 25, 29, 0.12);
  border-radius: 8px;
  background: rgba(7, 18, 24, 0.58);
  box-shadow: 0 22px 60px rgba(8, 17, 20, 0.1);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #304043;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 25, 29, 0.16);
  border-radius: 8px;
  background: #f7faf9;
  color: #10191d;
  outline: none;
}

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

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #A057FF;
  box-shadow: 0 0 0 3px rgba(160, 87, 255, 0.12);
}

.contact-form .button {
  width: 100%;
  cursor: pointer;
}

.form-note {
  margin: -4px 0 0;
  font-size: 13px;
}

.services,
.smart,
.watch,
.scenes,
.cases,
.about,
.contact {
  min-height: 100svh;
  color: white;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  isolation: isolate;
}

.services::before,
.smart::before,
.scenes::before,
.watch::before,
.cases::before,
.about::before,
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.32);
  pointer-events: none;
}

.services {
  background-image: url("./assets/bg-services.png");
}

.smart {
  background-image: url("./assets/bg-platform.png");
}

.scenes {
  background-image: url("./assets/bg-about.png");
}

.watch {
  background-image: url("./assets/bg-watch.png");
}

.cases {
  background-image: url("./assets/bg-cases.png");
}

.about {
  background-image: url("./assets/bg-about.png");
}

.contact {
  background-image: url("./assets/bg-contact.png");
}

.services .section-topline,
.smart .section-topline,
.cases .section-topline,
.contact-layout-simple > div {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(8, 17, 20, 0.52);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.services .section-topline,
.smart .section-topline,
.cases .section-topline {
  align-items: start;
}

.services .service-card,
.smart-modules article,
.platform-intro article,
.about-grid article,
.contact-info p {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(8, 17, 20, 0.58);
  color: white;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.services .service-card p,
.smart-modules p,
.about-grid p,
.contact-info span {
  color: rgba(255, 255, 255, 0.7);
}

.services .service-card span,
.contact-info strong {
  color: var(--green);
}

.contact .eyebrow {
  border-color: rgba(87, 104, 255, 0.26);
  background: rgba(87, 104, 255, 0.1);
  color: var(--cyan);
}

.contact-info p {
  padding: 18px;
  border-radius: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.case-tabs button {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(8, 17, 20, 0.58);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
}

.case-tabs button:hover,
.case-tabs button.active {
  border-color: rgba(87, 104, 255, 0.58);
  background:
    linear-gradient(135deg, rgba(87, 104, 255, 0.18), rgba(160, 87, 255, 0.22)),
    rgba(8, 17, 20, 0.72);
  box-shadow: 0 0 28px rgba(87, 104, 255, 0.16);
  color: white;
}

.reveal-item {
  --reveal-y: 34px;
  opacity: 0;
  transform: translate3d(0, var(--reveal-y), 0) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 0.62s ease,
    transform 0.62s cubic-bezier(0.2, 0.76, 0.24, 1),
    filter 0.62s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
  will-change: opacity, transform, filter;
}

.reveal-item.from-up {
  --reveal-y: -34px;
}

.reveal-item.from-down {
  --reveal-y: 34px;
}

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

.reveal-item.is-visible:is(.service-card, .smart-modules article, .watch-board article, .case-card, .about-grid article, .contact-info p) {
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(87, 104, 255, 0.07);
}

.service-card:hover,
.smart-modules article:hover,
.watch-board article:hover,
.about-grid article:hover,
.contact-info p:hover {
  border-color: rgba(87, 104, 255, 0.42);
  background: rgba(8, 17, 20, 0.74);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(87, 104, 255, 0.08);
}

/* Portfolio redesign layer */
.site-header {
  background:
    linear-gradient(180deg, rgba(3, 7, 10, 0.72), rgba(3, 7, 10, 0.18));
}

.site-header.scrolled,
.site-header.nav-active {
  background: rgba(4, 12, 16, 0.72);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(24px) saturate(1.35);
}

.logo-shell,
.header-contact,
.button.ghost,
.eyebrow,
.section-topline,
.service-card,
.flow-step,
.platform-intro article,
.dashboard-preview,
.smart-modules article,
.watch-visual,
.watch-highlights span,
.watch-board article,
.image-pair figure,
.scene-strip article,
.case-tabs button,
.case-card,
.about-grid article,
.contact-layout-simple > div,
.contact-info p {
  border-color: var(--liquid-line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045) 34%, rgba(87, 104, 255, 0.065)),
    var(--glass);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.045),
    0 28px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px) saturate(1.35);
}

.button.ghost {
  border-color: rgba(252, 92, 101, 0.7);
  background: linear-gradient(135deg, #ff8a808c, #FC5C65);
  box-shadow:
    0 18px 56px rgba(252, 92, 101, 0.24),
    0 0 34px rgba(252, 92, 101, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.section-topline,
.contact-layout-simple > div {
  padding: clamp(24px, 3.4vw, 42px);
}

.site-nav {
  padding: 7px clamp(12px, 1.2vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: rgba(5, 14, 19, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 16px 50px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px) saturate(1.25);
}

@media (min-width: 981px) {
  .site-nav {
    border-radius: 999px;
  }
}

.site-nav a::after {
  height: 3px;
  bottom: -1px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  box-shadow:
    0 0 18px rgba(87, 104, 255, 0.36),
    0 0 28px rgba(160, 87, 255, 0.2);
}

.hero::after {
  background: none;
}

.hero-media,
.card-visual img,
.dashboard-media img,
.image-pair img,
.watch-visual img {
  filter: saturate(1.32) contrast(1.12);
}

.hero-shade {
  background: transparent;
}

.hero-grid {
  background:
    linear-gradient(rgba(87, 104, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 104, 255, 0.1) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.35;
  mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.86) 18% 82%, transparent);
}

.hero-content {
  width: min(1080px, calc(100% - 40px));
}

.hero-lead {
  max-width: 1040px;
  margin-bottom: 34px;
  font-size: clamp(42px, 6.6vw, 96px);
  line-height: 1.02;
}

.hero-lead span:first-child {
  color: white;
  text-shadow:
    0 0 34px rgba(87, 104, 255, 0.26),
    0 22px 70px rgba(0, 0, 0, 0.52);
}

.hero-lead span + span {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.58em;
}

.button {
  min-height: 54px;
  padding: 0 26px;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.button.primary {
  border-color: rgba(123, 98, 255, 0.7);
  background:
    linear-gradient(135deg, var(--accent-start), var(--accent-end));
  box-shadow:
    0 18px 56px rgba(87, 104, 255, 0.24),
    0 0 34px rgba(160, 87, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: white;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.32),
    0 0 34px rgba(87, 104, 255, 0.16);
}

.button.ghost:hover {
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.32),
    0 0 34px rgba(252, 92, 101, 0.28);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(780px, 100%);
  margin: 28px auto 0;
}

.hero-proof span {
  display: grid;
  gap: 5px;
  min-height: 84px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.045)),
    rgba(6, 18, 24, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 22px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(20px) saturate(1.3);
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 800;
}

.hero-proof b {
  color: white;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1;
}

.eyebrow {
  min-height: 36px;
  color: var(--cyan);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 28px rgba(87, 104, 255, 0.12);
}

h2 {
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: 850;
}

.services,
.smart,
.watch,
.scenes,
.cases,
.contact {
  /* background-attachment intentionally left as default scroll —
     fixed breaks on iOS / mobile viewports */
}

.service-card,
.smart-modules article,
.watch-board article,
.case-card,
.about-grid article {
  position: relative;
}

.service-card::after,
.smart-modules article::after,
.watch-board article::after,
.case-card::after,
.about-grid article::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(87, 104, 255, 0.18), transparent 36%, rgba(160, 87, 255, 0.14));
  opacity: 0;
  transition: opacity 0.28s ease;
  content: "";
}

.service-card:hover::after,
.smart-modules article:hover::after,
.watch-board article:hover::after,
.case-card:hover::after,
.about-grid article:hover::after {
  opacity: 1;
}

.service-card:hover,
.smart-modules article:hover,
.watch-board article:hover,
.about-grid article:hover,
.contact-info p:hover {
  transform: translateY(-7px);
  border-color: rgba(87, 104, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06) 42%, rgba(87, 104, 255, 0.09)),
    var(--glass-strong);
  box-shadow:
    0 32px 96px rgba(0, 0, 0, 0.38),
    var(--glow-cyan),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.service-grid {
  gap: clamp(14px, 1.4vw, 22px);
}

.service-card {
  min-height: 372px;
  padding: clamp(22px, 2.5vw, 34px);
}

.service-card::before {
  height: 2px;
  background: linear-gradient(90deg, var(--accent-start), var(--accent-end));
  box-shadow:
    0 0 24px rgba(87, 104, 255, 0.3),
    0 0 30px rgba(160, 87, 255, 0.18);
}

.service-card span,
.watch-board span,
.services .service-card span,
.contact-info strong {
  color: var(--cyan);
}

.card-visual,
.dashboard-media,
.image-pair figure,
.watch-visual {
  border-color: rgba(87, 104, 255, 0.2);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 24px 76px rgba(0, 0, 0, 0.3);
}

.card-visual {
  height: clamp(150px, 13vw, 200px);
  margin: -12px -12px 20px;
}

.smart-panel {
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(18px, 2vw, 30px);
}

.dashboard-preview {
  min-height: 380px;
  padding: clamp(22px, 2.4vw, 34px);
}

.dashboard-media {
  min-height: clamp(160px, 16vw, 220px);
}

.flow {
  gap: 14px;
}

.flow-step {
  min-height: 86px;
}

.ring {
  box-shadow:
    inset 0 0 28px rgba(87, 104, 255, 0.12),
    0 0 42px rgba(87, 104, 255, 0.12);
}

.watch-visual {
  min-height: clamp(500px, 48vw, 720px);
}

.watch-highlights span {
  min-height: 68px;
}

.watch-board article {
  min-height: 172px;
}

.image-pair {
  gap: clamp(16px, 2vw, 28px);
}

.image-pair figure {
  min-height: clamp(340px, 32vw, 520px);
}

.scene-strip {
  gap: 12px;
  border: 0;
  background: transparent;
}

.scene-strip article {
  border: 1px solid var(--liquid-line);
}

.case-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 22px);
}

.case-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.case-card:nth-child(1),
.case-card:nth-child(4) {
  grid-column: span 2;
}

.case-card span {
  margin-bottom: auto;
  color: var(--amber);
}

.case-card h3 {
  max-width: 520px;
}

.contact-heading > p,
.contact-info span,
.about-grid p,
.smart-modules p,
.scene-strip p,
.watch-board p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-info p {
  min-height: 86px;
  align-items: center;
}

.reveal-item {
  --reveal-y: 44px;
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.76, 0.24, 1),
    filter 0.72s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.site-footer {
  display: block;
  padding: 26px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: #081114;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
}

.card-visual::after,
.dashboard-media::after {
  background:
    linear-gradient(180deg, transparent 18%, rgba(8, 17, 20, 0.78) 100%),
    linear-gradient(90deg, rgba(87, 104, 255, 0.14), rgba(160, 87, 255, 0.12));
}

/* One-screen category fit */
.section-inner {
  display: grid;
  align-content: center;
  min-height: 100svh;
  padding: clamp(68px, 8svh, 92px) 0 clamp(22px, 4svh, 38px);
}

.hero-content {
  padding: clamp(92px, 12svh, 118px) 0 clamp(40px, 7svh, 64px);
}

.hero-proof {
  margin-top: clamp(22px, 4svh, 34px);
}

.hero-proof span {
  min-height: clamp(62px, 8svh, 74px);
  padding: 12px 14px;
}

.section-topline {
  gap: clamp(18px, 3vw, 44px);
  min-height: auto;
  margin-bottom: clamp(16px, 2.8svh, 28px);
}

.section-topline,
.contact-layout-simple > div {
  padding: clamp(16px, 2vw, 26px);
}

.section-topline > p,
.contact-heading > p {
  margin-bottom: 0;
  font-size: clamp(14px, 0.9vw, 16px);
  line-height: 1.52;
}

.eyebrow {
  margin-bottom: clamp(8px, 1.5svh, 12px);
  font-size: clamp(13px, 0.95vw, 15px);
}

h2 {
  font-size: clamp(28px, 3.15vw, 46px);
  line-height: 1.08;
}

.service-grid {
  gap: clamp(10px, 1vw, 16px);
}

.service-card {
  min-height: clamp(248px, 28svh, 308px);
  padding: clamp(16px, 1.7vw, 24px);
}

.card-visual {
  height: clamp(94px, 13.5svh, 134px);
  margin: -8px -8px 14px;
}

.service-card span {
  margin-bottom: 8px;
  font-size: 13px;
}

.service-card h3,
.smart-modules h3,
.scene-strip h3,
.watch-board h3,
.case-card h3,
.about-grid h3 {
  line-height: 1.22;
}

.service-card p,
.smart-modules p,
.scene-strip p,
.watch-board p,
.case-card p,
.about-grid p {
  font-size: 13px;
  line-height: 1.48;
}

.flow {
  gap: 10px;
  margin-bottom: clamp(12px, 1.8svh, 18px);
}

.flow-step {
  min-height: clamp(46px, 7svh, 60px);
  padding: 8px;
  font-size: 13px;
}

.platform-intro {
  gap: 12px;
  margin-bottom: clamp(12px, 1.8svh, 18px);
}

.platform-intro article,
.smart-modules article,
.scene-strip article,
.about-grid article {
  padding: clamp(10px, 1vw, 14px);
}

.smart-panel {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(12px, 1.5vw, 20px);
}

.dashboard-preview {
  min-height: clamp(180px, 28svh, 280px);
  padding: clamp(16px, 1.7vw, 22px);
}

.dashboard-media {
  min-height: clamp(90px, 12svh, 130px);
  margin-bottom: 14px;
}

.dashboard-header {
  margin-bottom: clamp(14px, 2svh, 20px);
  padding-bottom: 12px;
}

.dashboard-main {
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 18px;
}

.ring {
  width: 148px;
}

.ring span {
  font-size: 32px;
}

.ring small {
  margin-top: 60px;
  font-size: 12px;
}

.signal-list {
  gap: 8px;
}

.signal-list p {
  min-height: 38px;
  padding: 0 12px;
  font-size: 13px;
}

.smart-modules {
  gap: clamp(10px, 1.2vw, 14px);
}

.smart-modules .card-visual {
  margin-bottom: 12px;
}

.watch-layout {
  grid-template-columns: minmax(360px, 0.92fr) minmax(480px, 1.08fr);
  gap: clamp(18px, 3vw, 36px);
}

.watch-visual {
  min-height: clamp(320px, 52svh, 460px);
}

.watch-highlights {
  gap: 10px;
  margin-bottom: 12px;
}

.watch-highlights span {
  min-height: 48px;
  padding: 10px 12px;
  font-size: 13px;
}

.watch-board {
  gap: clamp(10px, 1.2vw, 14px);
}

.watch-board article {
  min-height: clamp(112px, 15svh, 138px);
  padding: clamp(14px, 1.5vw, 20px);
}

.image-pair {
  gap: clamp(10px, 1.2vw, 16px);
  margin-bottom: 12px;
}

.image-pair figure {
  min-height: clamp(220px, 40svh, 340px);
}

.scene-strip {
  gap: 10px;
}

.case-tabs {
  gap: 8px;
  margin-bottom: clamp(10px, 1.6svh, 16px);
}

.case-tabs button {
  min-height: 34px;
  padding: 0 12px;
  font-size: 13px;
}

.case-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(8px, 0.9vw, 12px);
}

.case-card,
.case-card:nth-child(1),
.case-card:nth-child(4) {
  grid-column: auto;
}

.case-card {
  min-height: clamp(150px, 22svh, 196px);
  padding: clamp(14px, 1.4vw, 18px);
}

.case-card span {
  margin-bottom: auto;
  font-size: 12px;
}

.case-card h3 {
  margin-bottom: 8px;
  font-size: clamp(15px, 1.08vw, 18px);
}

.case-card p {
  font-size: 12.5px;
}

.contact-about-grid {
  gap: clamp(10px, 1vw, 14px);
  margin-top: clamp(12px, 2svh, 18px);
}

.contact-info {
  gap: 0 18px;
  margin-top: clamp(12px, 2svh, 18px);
}

.contact-info p {
  min-height: clamp(54px, 7svh, 66px);
  padding: 10px 0;
  font-size: 13px;
}

/* Compact layout / Fixed footer overrides */

.smart-panel {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  padding-bottom: 0;
}

.dashboard-preview {
  display: grid;
  align-content: start;
  grid-template-rows: auto auto;
  min-height: auto;
  height: auto;
  padding: clamp(10px, 1vw, 14px);
}

.dashboard-media {
  min-height: clamp(90px, 12svh, 130px);
  margin-bottom: 10px;
}

.dashboard-header {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.dashboard-main {
  grid-template-columns: minmax(88px, 0.12fr) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: clamp(58px, 7.5svh, 76px);
  padding: 10px;
  margin-top: clamp(14px, 1.5vw, 22px);
  border: 1px solid rgba(123, 98, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(87, 104, 255, 0.16), rgba(160, 87, 255, 0.14)),
    rgba(5, 14, 19, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 16px 46px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px) saturate(1.25);
}

.ring {
  width: clamp(54px, 5vw, 70px);
}

.ring span {
  font-size: clamp(18px, 1.45vw, 24px);
}

.ring small {
  display: none;
}

.signal-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.signal-list p {
  align-items: center;
  min-height: 100%;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.28;
}

.smart-modules {
  align-content: start;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  height: 100%;
}

.smart-modules article {
  display: grid;
  align-content: start;
  min-height: clamp(56px, 7svh, 78px);
  height: 100%;
  padding: clamp(10px, 0.9vw, 14px);
}

.smart-modules .card-visual {
  margin: -4px -4px 8px;
}

.smart-modules h3 {
  margin-bottom: 6px;
  font-size: clamp(15px, 1.05vw, 18px);
}

.smart-modules p {
  font-size: 12.5px;
  line-height: 1.45;
}

.contact-layout-simple > div {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "heading"
    "about"
    "info";
  align-items: stretch;
  width: 100%;
  gap: clamp(14px, 1.5vw, 22px);
}

.contact .section-inner {
  padding-bottom: clamp(78px, 9svh, 110px);
}

.contact .section-topline {
  grid-area: heading;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  margin-bottom: 0;
  padding: clamp(16px, 2vw, 26px);
  border: 1px solid var(--liquid-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045) 34%, rgba(87, 104, 255, 0.055)),
    var(--glass);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 28px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px) saturate(1.35);
}

.contact-about-grid {
  grid-area: about;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.contact-layout-simple .contact-info {
  grid-area: info;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 14px);
  margin-top: 0;
}

.contact-info p {
  grid-template-columns: 1fr;
  align-content: start;
  gap: 6px;
  min-height: clamp(92px, 12svh, 116px);
  padding: clamp(14px, 1.4vw, 18px);
  border: 1px solid var(--liquid-line);
  border-radius: 8px;
}

.service-card span,
.platform-intro span,
.hero-status span,
.visual-rail span,
.dashboard-media span,
.watch-visual figcaption span,
.watch-highlights span,
.watch-board span,
.image-pair figcaption,
.case-card span,
.company-profile dt,
.contact-info strong {
  font-size: 15px;
}

.site-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 18;
  padding: 14px clamp(20px, 5vw, 64px);
  background:
    linear-gradient(180deg, rgba(3, 7, 10, 0.72), rgba(3, 7, 10, 0.92)),
    #03070a;
  border-top: 1px solid rgba(123, 98, 255, 0.24);
  color: rgba(255, 255, 255, 0.64);
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
  transition:
    opacity 0.26s ease,
    transform 0.26s ease;
  backdrop-filter: blur(18px) saturate(1.25);
}

body.footer-visible .site-footer {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
    gap: 16px;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    gap: clamp(12px, 1.3vw, 22px);
    font-size: 15px;
  }

  .header-contact {
    min-width: 150px;
    padding: 8px 13px;
  }

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
    min-height: 68px;
  }

  .logo-shell {
    width: 36px;
    height: 36px;
  }

  .brand-logo {
    width: 30px;
    height: 30px;
  }

  .brand strong {
    font-size: 15px;
  }

  .header-contact {
    display: none;
  }

  .hero-status {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    grid-template-columns: 20px auto;
  }

  .nav-toggle span {
    grid-column: 1;
  }

  .nav-toggle em {
    grid-row: 1 / 4;
    grid-column: 2;
    align-self: center;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    display: grid;
    gap: 0;
    padding: 8px 20px 22px;
    background: rgba(8, 17, 20, 0.96);
    border: none;
    border-bottom: 1px solid var(--line);
    border-radius: 0 !important;
    box-shadow: none;
    backdrop-filter: none;
    font-size: 15px;
    transform: translateY(-120%);
    transition: transform 0.25s ease;
  }

  .site-nav.open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .section-inner,
  .hero-content {
    width: min(100% - 32px, 760px);
  }

  .hero-content {
    margin: 0 auto;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .split-layout,
  .section-topline,
  .smart-panel,
  .watch-layout,
  .contact-layout,
  .contact-heading {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .image-pair,
  .watch-board,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-card:nth-child(1),
  .case-card:nth-child(4) {
    grid-column: span 2;
  }

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

  .watch-visual {
    min-height: clamp(320px, 58vw, 460px);
  }

  .flow-step:nth-child(3)::after {
    display: none;
  }

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

@media (max-width: 680px) {
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding-top: 104px;
    padding-bottom: 78px;
  }

  .hero-actions,
  .case-tabs {
    flex-direction: column;
  }

  .button,
  .case-tabs button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-metrics,
  .quick-entry,
  .media-stack,
  .image-pair,
  .platform-intro,
  .service-grid,
  .smart-modules,
  .watch-highlights,
  .watch-board,
  .scene-strip,
  .case-grid,
  .about-grid,
  .company-profile dl,
  .contact-layout-simple .contact-info {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    padding: 16px;
  }

  .scroll-cue {
    display: none;
  }

  .watch-visual {
    min-height: 300px;
  }

  .watch-visual figcaption {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

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

  .flow-step:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -10px;
    width: 2px;
    height: 10px;
  }

  .dashboard-main {
    position: static;
    grid-template-columns: 1fr;
  }

  .media-frame,
  .media-frame-large,
  .visual-rail {
    min-height: 180px;
  }

  .dashboard-media {
    min-height: 120px;
  }

  .image-pair figure {
    min-height: 210px;
  }

  .ring {
    width: min(180px, 100%);
    justify-self: center;
  }

  .contact-info p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-card:nth-child(1),
  .case-card:nth-child(4) {
    grid-column: auto;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .case-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .case-card {
    min-height: clamp(134px, 20svh, 172px);
  }
}

@media (max-height: 780px) and (min-width: 981px) {
  .section-inner {
    padding: 62px 0 18px;
  }

  .hero-content {
    padding: 88px 0 34px;
  }

  .section-topline {
    margin-bottom: 14px;
  }

  .section-topline,
  .contact-layout-simple > div {
    padding: 14px 18px;
  }

  .contact-layout-simple > div {
    padding: 0;
  }

  .contact .section-topline {
    padding: 14px 18px;
  }

  h2 {
    font-size: clamp(26px, 2.75vw, 40px);
  }

  .card-visual {
    height: 86px;
    margin-bottom: 12px;
  }

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

  .flow-step {
    min-height: 42px;
  }

  .smart-panel {
    padding-bottom: 0;
  }

  .dashboard-preview {
    min-height: 120px;
  }

  .dashboard-media {
    min-height: 80px;
  }

  .dashboard-main {
    min-height: 52px;
  }

  .smart-modules article {
    min-height: 56px;
  }

  .smart-modules .card-visual {
    height: 48px;
  }

  .watch-visual {
    min-height: 300px;
  }

  .watch-board article {
    min-height: 100px;
  }

  .image-pair figure {
    min-height: 200px;
  }

  .case-card {
    min-height: 132px;
  }
}

@media (max-width: 980px) {
  html {
    scroll-snap-type: y proximity;
  }

  .section {
    min-height: auto;
    overflow: visible;
  }

  .services,
  .smart,
  .watch,
  .scenes,
  .cases,
  .about,
  .contact {
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    min-height: 360px;
  }

  .section-inner {
    display: block;
    min-height: auto;
    padding: 88px 0 54px;
  }

  .section-topline,
  .contact-layout-simple > div {
    padding: 20px;
  }

  .contact-layout-simple > div {
    padding: 0;
  }

  .contact .section-topline {
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "about"
      "info";
  }

  .smart-panel {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .dashboard-main {
    position: static;
    grid-template-columns: 1fr;
  }

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

  .contact-about-grid,
  .contact-layout-simple .contact-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-topline {
    margin-bottom: 24px;
  }

  .case-card,
  .case-card:nth-child(1),
  .case-card:nth-child(4) {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  html {
    scroll-snap-type: none;
  }

  .section-inner {
    padding: 82px 0 42px;
  }

  .section-topline,
  .contact-layout-simple > div {
    padding: 18px;
  }

  .contact-layout-simple > div {
    padding: 0;
  }

  .contact .section-topline {
    padding: 18px;
    grid-template-columns: 1fr;
  }

  .contact-panel {
    grid-template-areas:
      "heading"
      "about"
      "info";
  }

  .contact-about-grid,
  .contact-layout-simple .contact-info,
  .signal-list {
    grid-template-columns: 1fr;
  }

  .contact-info p {
    min-height: auto;
  }

  .case-card {
    min-height: 160px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
