:root {
  --bg: #06101b;
  --deep: #03070d;
  --ink: #f7fbff;
  --muted: #a9bdcc;
  --soft: rgba(255, 255, 255, 0.08);
  --line: rgba(177, 215, 238, 0.2);
  --cyan: #00b6fa;
  --cyan-2: #4ce6ff;
  --orange: #ff5b00;
  --green: #26c66a;
  --magenta: #d72bff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 12%, rgba(0, 182, 250, 0.28), transparent 30%),
    radial-gradient(circle at 78% 8%, rgba(215, 43, 255, 0.16), transparent 26%),
    radial-gradient(circle at 82% 70%, rgba(255, 91, 0, 0.14), transparent 28%),
    linear-gradient(135deg, #061a2a 0%, #06101b 48%, #03070d 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    url("assets/pattern-dark.png") center / cover no-repeat;
  background-size: 86px 86px, 86px 86px, cover;
  opacity: 0.42;
}

body::after {
  content: "";
  position: fixed;
  inset: auto -20% -45% -20%;
  z-index: -3;
  height: 70vh;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0, 182, 250, 0.2), transparent 68%);
  filter: blur(18px);
}

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

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

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

button {
  font: inherit;
}

.flow-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.78;
}

.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  min-height: 64px;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 14px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(3, 7, 13, 0.46);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(3, 7, 13, 0.78);
  border-color: rgba(0, 182, 250, 0.28);
  transform: translateX(-50%) translateY(-4px);
}

.brand img {
  width: 218px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(247, 251, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.32s var(--ease);
}

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

.header-contact,
.primary-action,
.ghost-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.header-contact {
  padding: 0 18px;
  background: var(--ink);
  color: #06101b;
  font-size: 13px;
}

.header-contact:hover,
.primary-action:hover,
.ghost-action:hover,
.system-tab:hover {
  transform: translateY(-2px);
}

main {
  overflow: hidden;
}

.hero,
.offer,
.systems,
.profile,
.contact {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 82px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(177, 215, 238, 0.18);
  border-radius: 50%;
}

.hero::before {
  width: 720px;
  height: 180px;
  right: -120px;
  bottom: 9vh;
  transform: rotate(-7deg);
}

.hero::after {
  width: 520px;
  height: 130px;
  right: 0;
  bottom: 14vh;
  transform: rotate(5deg);
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(690px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(52px, 8vw, 118px);
  line-height: 0.9;
  letter-spacing: 0;
}

h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(92deg, var(--cyan-2), var(--cyan) 34%, var(--magenta) 72%, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(247, 251, 255, 0.78);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.62;
}

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

.primary-action {
  padding: 0 28px;
  background: linear-gradient(92deg, var(--cyan), var(--cyan-2));
  color: #00131c;
  box-shadow: 0 16px 44px rgba(0, 182, 250, 0.26);
}

.ghost-action {
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.hero-stage {
  position: absolute;
  z-index: 1;
  inset: 104px -70px 62px clamp(320px, 34vw, 470px);
  min-height: 0;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.stage-lines {
  position: absolute;
  inset: 5% 2%;
  pointer-events: none;
}

.stage-lines span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 182, 250, 0.44), transparent);
  animation: linePulse 4.8s var(--ease) infinite alternate;
}

.stage-lines span:nth-child(1) {
  left: 12%;
}

.stage-lines span:nth-child(2) {
  left: 52%;
  animation-delay: 0.8s;
}

.stage-lines span:nth-child(3) {
  right: 10%;
  animation-delay: 1.6s;
}

.orbital {
  position: absolute;
  left: 12%;
  right: 6%;
  bottom: 2%;
  height: 30%;
  border: 2px solid rgba(177, 215, 238, 0.26);
  border-radius: 50%;
  transform: rotateX(62deg);
  animation: orbitGlow 5s var(--ease) infinite alternate;
}

.orbital-two {
  inset: auto 14% 8% 20%;
  height: 20%;
  border-color: rgba(0, 182, 250, 0.36);
  animation-delay: 0.7s;
}

.visual-console {
  position: absolute;
  left: 3%;
  top: 12%;
  width: 58%;
  min-height: 58%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(2, 19, 32, 0.94), rgba(6, 63, 96, 0.7)),
    linear-gradient(120deg, rgba(0, 182, 250, 0.16), transparent);
  box-shadow: var(--shadow);
  transform: rotateY(10deg) rotateX(4deg);
  transition: transform 0.35s var(--ease);
}

.console-top {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.console-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
}

.console-top span:nth-child(2) {
  background: var(--orange);
}

.console-top span:nth-child(3) {
  background: var(--green);
}

.console-screen {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 30%, rgba(0, 182, 250, 0.28), transparent 25%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
}

.screen-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}

.screen-chart {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  height: 160px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.screen-chart span {
  flex: 1;
  min-width: 20px;
  background: linear-gradient(180deg, var(--cyan-2), var(--cyan) 58%, rgba(0, 182, 250, 0.16));
  animation: barMove 4s var(--ease) infinite alternate;
}

.screen-chart span:nth-child(even) {
  background: linear-gradient(180deg, var(--magenta), var(--orange));
  animation-delay: 0.5s;
}

.screen-copy {
  position: absolute;
  left: 34px;
  top: 34px;
  display: grid;
  gap: 6px;
}

.screen-copy strong {
  font-size: clamp(28px, 4vw, 52px);
  line-height: 0.95;
}

.screen-copy small {
  color: rgba(247, 251, 255, 0.64);
  font-weight: 800;
  text-transform: uppercase;
}

.phone-ui {
  position: absolute;
  right: 12%;
  top: 6%;
  width: min(210px, 34vw);
  min-height: 380px;
  padding: 20px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  background: linear-gradient(160deg, rgba(247, 251, 255, 0.94), rgba(194, 242, 255, 0.84));
  box-shadow: 0 30px 80px rgba(0, 182, 250, 0.24);
  transform: translateZ(80px) rotateY(-11deg) rotateZ(2deg);
  animation: floatPhone 5s var(--ease) infinite alternate;
}

.phone-camera {
  width: 56px;
  height: 8px;
  margin: 0 auto 26px;
  border-radius: 999px;
  background: #10263a;
}

.phone-content {
  display: grid;
  gap: 14px;
}

.phone-content span:not(.phone-pill) {
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(0, 182, 250, 0.26), rgba(215, 43, 255, 0.14));
}

.phone-pill {
  justify-self: start;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--green);
  color: #02140a;
  font-size: 12px;
  font-weight: 950;
}

.product-float {
  position: absolute;
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(3, 7, 13, 0.7);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.product-trax {
  left: 18%;
  bottom: 16%;
  width: min(340px, 52vw);
  animation: floatLogo 5.4s var(--ease) infinite alternate;
}

.product-vertis {
  right: 0;
  bottom: 26%;
  width: min(230px, 40vw);
  animation: floatLogo 5.2s var(--ease) infinite alternate-reverse;
}

.hero-meta {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(247, 251, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-meta span {
  position: relative;
  padding-left: 18px;
}

.hero-meta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  transform: translateY(-50%);
}

.offer,
.systems,
.profile,
.contact {
  position: relative;
  padding: clamp(76px, 10vw, 138px) 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.section-label span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 182, 250, 0.48);
  border-radius: 50%;
  background: rgba(0, 182, 250, 0.12);
}

.section-label p {
  margin: 0;
}

.section-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  margin: 28px 0 48px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5.6vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

.section-copy p,
.systems-copy p,
.profile-copy p,
.contact-lines,
#system-text {
  color: rgba(247, 251, 255, 0.72);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.72;
}

.offer-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-flow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--magenta), transparent);
  transform: translateY(-50%);
  opacity: 0.5;
}

.offer-flow article {
  position: relative;
  min-height: 300px;
  padding: 36px clamp(22px, 3vw, 38px);
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.offer-flow article:last-child {
  border-right: 0;
}

.offer-flow article::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: clamp(22px, 3vw, 38px);
  top: calc(50% - 6px);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 12px rgba(0, 182, 250, 0.12), 0 0 40px rgba(0, 182, 250, 0.72);
}

.offer-flow article:nth-child(2)::before {
  background: var(--magenta);
  box-shadow: 0 0 0 12px rgba(215, 43, 255, 0.13), 0 0 40px rgba(215, 43, 255, 0.62);
}

.offer-flow article:nth-child(3)::before {
  background: var(--orange);
  box-shadow: 0 0 0 12px rgba(255, 91, 0, 0.14), 0 0 40px rgba(255, 91, 0, 0.58);
}

.offer-flow span {
  color: rgba(247, 251, 255, 0.34);
  font-size: 12px;
  font-weight: 950;
}

.offer-flow h3 {
  margin: 72px 0 14px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.02;
}

.offer-flow p {
  color: rgba(247, 251, 255, 0.66);
  line-height: 1.62;
}

.systems-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.systems-copy h2 {
  margin: 26px 0 22px;
}

.system-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.system-tab {
  min-width: 112px;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}

.system-tab.active {
  border-color: transparent;
  background: var(--cyan);
  color: #00131c;
}

.system-showcase {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.12), transparent 38%),
    linear-gradient(135deg, rgba(0, 182, 250, 0.24), rgba(4, 11, 18, 0.5));
  box-shadow: var(--shadow);
}

.system-showcase::before,
.system-showcase::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.system-showcase::before {
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.system-showcase::after {
  width: 76%;
  height: 26%;
  left: 12%;
  bottom: 28%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: rotateX(68deg);
}

.showcase-light {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 26%, rgba(0, 182, 250, 0.48), transparent 24%),
    radial-gradient(circle at 78% 72%, rgba(255, 91, 0, 0.22), transparent 30%);
  filter: blur(4px);
}

#system-logo {
  position: absolute;
  left: 50%;
  top: 18%;
  width: min(470px, 78%);
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.44));
  transform: translateX(-50%);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}

.system-showcase.is-changing #system-logo,
.system-showcase.is-changing #system-title,
.system-showcase.is-changing #system-text,
.system-showcase.is-changing #system-kicker {
  opacity: 0;
  transform: translateY(12px);
}

#system-title {
  position: relative;
  margin: 0 0 14px;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.88;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}

#system-kicker,
#system-text {
  position: relative;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}

.profile {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
}

.profile-media {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.profile-media::before {
  content: "";
  position: absolute;
  inset: 10% 4% 0;
  background:
    linear-gradient(180deg, rgba(0, 182, 250, 0.18), transparent),
    radial-gradient(circle at 50% 40%, rgba(0, 182, 250, 0.3), transparent 40%);
  clip-path: polygon(16% 0, 100% 18%, 82% 100%, 0 84%);
}

.profile-media img {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  filter: drop-shadow(0 34px 50px rgba(0, 0, 0, 0.38));
}

.profile-glow {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 4%;
  height: 18%;
  border: 2px solid rgba(0, 182, 250, 0.3);
  border-radius: 50%;
  transform: rotateX(68deg);
}

.profile-copy h2 {
  margin: 28px 0 24px;
}

.profile-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.profile-strip span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid var(--cyan);
  color: var(--ink);
  font-weight: 950;
}

.contact {
  min-height: 62vh;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.contact h2 {
  margin-bottom: 0;
}

.contact-lines {
  display: grid;
  gap: 16px;
  padding-left: clamp(20px, 4vw, 48px);
  border-left: 1px solid rgba(0, 182, 250, 0.36);
}

.contact-lines a {
  color: var(--ink);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 950;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 18;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(3, 7, 13, 0.72);
  color: var(--ink);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.section-inview {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

@keyframes linePulse {
  from {
    opacity: 0.3;
    transform: scaleY(0.72);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes orbitGlow {
  from {
    opacity: 0.42;
    transform: rotateX(62deg) scale(0.95);
  }
  to {
    opacity: 0.82;
    transform: rotateX(62deg) scale(1.03);
  }
}

@keyframes floatPhone {
  from {
    transform: translate3d(0, -8px, 80px) rotateY(-11deg) rotateZ(2deg);
  }
  to {
    transform: translate3d(0, 14px, 80px) rotateY(-7deg) rotateZ(-1deg);
  }
}

@keyframes floatLogo {
  from {
    transform: translateY(-8px);
  }
  to {
    transform: translateY(14px);
  }
}

@keyframes barMove {
  from {
    transform: scaleY(0.72);
  }
  to {
    transform: scaleY(1);
  }
}

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

  .main-nav {
    display: none;
  }

  .hero,
  .systems-layout,
  .profile,
  .contact,
  .section-copy {
    grid-template-columns: 1fr;
  }

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

  .hero-stage {
    position: relative;
    inset: auto;
    min-height: 560px;
    margin-top: 40px;
  }

  .hero-meta {
    position: relative;
    bottom: auto;
    flex-wrap: wrap;
    margin-top: 18px;
  }

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

  .offer-flow::before {
    left: 32px;
    right: auto;
    top: 8%;
    bottom: 8%;
    width: 1px;
    height: auto;
    transform: none;
  }

  .offer-flow article {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .offer-flow article:last-child {
    border-bottom: 0;
  }

  .offer-flow article::before {
    top: 86px;
  }

  .offer-flow h3 {
    margin-top: 54px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 12px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 9px 10px;
  }

  .brand img {
    width: 164px;
  }

  .header-contact {
    width: 42px;
    min-height: 42px;
    padding: 0;
    overflow: hidden;
    color: transparent;
  }

  .header-contact::before {
    content: "@";
    color: #06101b;
    font-size: 20px;
  }

  .hero,
  .offer,
  .systems,
  .profile,
  .contact {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .hero-stage {
    min-height: 500px;
  }

  .visual-console {
    left: 0;
    width: 72%;
    min-height: 50%;
  }

  .console-screen {
    min-height: 300px;
  }

  .phone-ui {
    right: 0;
    top: 10%;
    width: 154px;
    min-height: 300px;
  }

  .product-trax {
    left: 4%;
    width: 270px;
  }

  .product-vertis {
    width: 178px;
  }

  .hero-meta {
    display: grid;
  }

  .system-showcase {
    min-height: 460px;
  }

  .profile-media {
    min-height: 420px;
  }

  .contact-lines {
    padding-left: 18px;
  }
}

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