﻿/* Hero â€” stack laptop + mock Sistema Alquileres (estilo Micronics) */

.hero__visual {
  --screen-amber: #f5b62f;
  position: relative;
  aspect-ratio: 4 / 3.65;
  max-width: 560px;
  margin-inline: auto;
  animation: heroVisualFadeUp 1s ease-out 0.35s both;
  isolation: isolate;
  overflow: visible;
  font-size: 16px;
}

@keyframes heroVisualFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__visual .visual-aura {
  position: absolute;
  inset: 8% 6% 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 58% 48% at 50% 82%, rgba(226, 39, 45, 0.5) 0%, rgba(226, 39, 45, 0.16) 42%, transparent 76%),
    radial-gradient(ellipse 72% 58% at 50% 52%, rgba(39, 196, 107, 0.1) 0%, transparent 62%);
  filter: blur(32px);
  animation: heroVisualAura 6s ease-in-out infinite;
}

@keyframes heroVisualAura {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.hero__visual .visual-particles {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.hero__visual .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px rgba(226, 39, 45, 0.95);
  opacity: 0;
  animation: heroVisualParticle 9s linear infinite;
}

.hero__visual .particle:nth-child(1) {
  left: 18%;
  top: 78%;
  animation-delay: 0s;
  animation-duration: 10s;
}

.hero__visual .particle:nth-child(2) {
  left: 34%;
  top: 86%;
  animation-delay: 1.4s;
  animation-duration: 11s;
}

.hero__visual .particle:nth-child(3) {
  left: 52%;
  top: 82%;
  animation-delay: 2.8s;
  animation-duration: 9s;
}

.hero__visual .particle:nth-child(4) {
  left: 70%;
  top: 88%;
  animation-delay: 4.1s;
  animation-duration: 12s;
}

.hero__visual .particle:nth-child(5) {
  left: 84%;
  top: 80%;
  animation-delay: 5.5s;
  animation-duration: 10s;
}

@keyframes heroVisualParticle {
  0% {
    transform: translateY(0) scale(0.6);
    opacity: 0;
  }
  15% {
    opacity: 0.9;
  }
  85% {
    opacity: 0.65;
  }
  100% {
    transform: translateY(-240px) scale(1.1);
    opacity: 0;
  }
}

.hero__visual .constellation {
  position: absolute;
  inset: -6% -6% -2%;
  z-index: 1;
  pointer-events: none;
}

.hero__visual .constellation svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.hero__visual .constellation .c-line {
  stroke: var(--red);
  stroke-width: 0.9;
  fill: none;
  stroke-dasharray: 60 220;
  filter: drop-shadow(0 0 3px rgba(226, 39, 45, 0.55));
  animation: heroVisualLineFlow 9s ease-in-out infinite, heroVisualLineGlow 5s ease-in-out infinite;
}

.hero__visual .constellation .c-line--slow {
  animation-duration: 13s, 7s;
  animation-delay: 0.6s, 0.3s;
  stroke-dasharray: 50 260;
}

.hero__visual .constellation .c-line--dim {
  opacity: 0.45;
  stroke-width: 0.55;
  filter: none;
  stroke-dasharray: none;
  animation: heroVisualLineGlow 8s ease-in-out infinite;
}

.hero__visual .constellation .c-dot {
  fill: #fff;
  opacity: 0.65;
  animation: heroVisualPulse 5s ease-in-out infinite;
}

.hero__visual .constellation .c-dot--red {
  fill: var(--red);
  opacity: 0.95;
  filter: drop-shadow(0 0 4px rgba(226, 39, 45, 0.8));
  animation: heroVisualPulseRed 6s ease-in-out infinite;
}

.hero__visual .constellation circle {
  transform-origin: center;
  transform-box: fill-box;
}

@keyframes heroVisualLineFlow {
  0% {
    stroke-dashoffset: 280;
  }
  50% {
    stroke-dashoffset: -280;
  }
  100% {
    stroke-dashoffset: 280;
  }
}

@keyframes heroVisualLineGlow {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 0.95;
  }
}

@keyframes heroVisualPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.85);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.15);
  }
}

@keyframes heroVisualPulseRed {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.hero__visual .floor {
  position: absolute;
  left: 50%;
  bottom: -2%;
  transform: translateX(-50%);
  width: 84%;
  height: 36%;
  z-index: 0;
  pointer-events: none;
}

.hero__visual .halo {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border: 1px solid rgba(226, 39, 45, 0.55);
  border-radius: 50%;
  filter: drop-shadow(0 0 6px rgba(226, 39, 45, 0.45));
  animation: heroVisualHalo 4s ease-in-out infinite;
}

.hero__visual .halo--1 {
  width: 55%;
  aspect-ratio: 6 / 1;
  bottom: -2%;
  opacity: 0.85;
}

.hero__visual .halo--2 {
  width: 78%;
  aspect-ratio: 6 / 1;
  bottom: -6%;
  opacity: 0.55;
  animation-delay: 1.4s;
}

.hero__visual .halo--3 {
  width: 100%;
  aspect-ratio: 6 / 1;
  bottom: -10%;
  opacity: 0.3;
  border-color: rgba(226, 39, 45, 0.35);
  animation-delay: 2.8s;
}

@keyframes heroVisualHalo {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(-50%) scale(0.96);
  }
  50% {
    opacity: 0.95;
    transform: translateX(-50%) scale(1.05);
  }
}

.hero__visual .floor__glow {
  position: absolute;
  left: 50%;
  bottom: -6%;
  transform: translateX(-50%);
  width: 38%;
  height: 60%;
  background: radial-gradient(
    ellipse at center bottom,
    rgba(255, 90, 100, 0.85) 0%,
    rgba(226, 39, 45, 0.7) 20%,
    rgba(226, 39, 45, 0.25) 45%,
    transparent 70%
  );
  filter: blur(14px);
  animation: heroVisualFloorGlow 5.5s ease-in-out infinite;
}

@keyframes heroVisualFloorGlow {
  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(0.95);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.12);
  }
}

/* â€”â€”â€” Laptop stack + mock Alquileres Pro (dashboard v5) â€”â€”â€” */
.hero__visual .laptop-stack {
  position: absolute;
  inset: 0;
  z-index: 2;
  transform-style: preserve-3d;
  transform: perspective(2400px) rotateY(-16deg) rotateX(8deg) rotateZ(-2deg);
  animation: heroStackSway 14s ease-in-out infinite;
}

@keyframes heroStackSway {
  0%,
  100% {
    transform: perspective(2400px) rotateY(-16deg) rotateX(8deg) rotateZ(-2deg) translateY(0);
  }
  50% {
    transform: perspective(2400px) rotateY(-13deg) rotateX(6deg) rotateZ(-1deg) translateY(-8px);
  }
}

.hero__visual .laptop {
  position: absolute;
  border-radius: 12px;
  background: linear-gradient(180deg, #33302e 0%, #201e1c 100%);
  border: 1px solid rgba(186, 168, 142, 0.35);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(226, 39, 45, 0.25),
    0 0 16px rgba(226, 39, 45, 0.35),
    0 30px 70px -30px rgba(0, 0, 0, 0.95);
}

.hero__visual .laptop--back-2 {
  width: 80%;
  height: 62%;
  top: 4%;
  left: 14%;
  opacity: 0.42;
}

.hero__visual .laptop--back-1 {
  width: 84%;
  height: 66%;
  top: 12%;
  left: 10%;
  opacity: 0.6;
}

.hero__visual .laptop--main {
  width: 88%;
  height: 74%;
  top: 20%;
  left: 6%;
  box-shadow:
    0 0 0 1px rgba(226, 39, 45, 0.45),
    0 0 22px rgba(226, 39, 45, 0.5),
    0 40px 80px -25px rgba(0, 0, 0, 1);
}

.hero__visual .laptop__base {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -2%;
  height: 2%;
  background: linear-gradient(180deg, #403c39 0%, #201e1c 100%);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 0 12px rgba(226, 39, 45, 0.3);
}

.hero__visual .screen.alq-mock {
  --neo-base: #2e2b29;
  --neo-d: #161413;
  --neo-l: #403c39;
  --neo-deep: #201e1c;
  --alq-muted: #999491;
  --alq-text: #eae8e6;
  --alq-gold: #dccab0;
  --alq-ok: #6ee7b7;
  --alq-warn: #fbbf24;
  --alq-late: #f87171;
  --alq-info: #60a5fa;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  font-size: 6px;
  line-height: 1.25;
  color: var(--alq-text);
  background: var(--neo-deep);
}

.hero__visual .alq-mock__aside {
  flex: 0 0 28%;
  max-width: 28%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 5px;
  background: rgba(46, 43, 41, 0.98);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  min-width: 0;
}

.hero__visual .alq-mock__brand {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 6px;
  border-radius: 8px;
  background: var(--neo-base);
  box-shadow:
    4px 4px 10px var(--neo-d),
    -3px -3px 8px var(--neo-l),
    inset 1px 1px 0 rgba(255, 255, 255, 0.04);
}

.hero__visual .alq-mock__brand-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}

.hero__visual .alq-mock__brand-title {
  font-size: 1.05em;
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(120deg, #f5f2ee 0%, #dccab0 50%, #a89274 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__visual .alq-mock__subtitle {
  margin: 0;
  padding: 0 2px;
  font-size: 0.85em;
  color: var(--alq-muted);
}

.hero__visual .alq-mock__session {
  padding: 5px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(36, 34, 32, 0.78);
  font-size: 0.82em;
}

.hero__visual .alq-mock__session-name {
  font-weight: 650;
  color: var(--alq-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero__visual .alq-mock__session-email {
  color: var(--alq-muted);
  font-size: 0.88em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero__visual .alq-mock__session-role {
  color: var(--alq-muted);
  margin-top: 1px;
}

.hero__visual .alq-mock__session-btn {
  display: block;
  margin-top: 4px;
  padding: 3px 5px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--alq-muted);
  font-size: 0.9em;
  text-align: center;
}

.hero__visual .alq-mock__nav {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 2px;
  min-height: 0;
  overflow: hidden;
}

.hero__visual .alq-mock__nav-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 5px;
  border-radius: 6px;
  border: 1px solid transparent;
  color: var(--alq-muted);
  font-size: 0.88em;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__visual .alq-mock__nav-item svg {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  opacity: 0.75;
}

.hero__visual .alq-mock__nav-item.is-active {
  color: var(--alq-gold);
  background: linear-gradient(145deg, var(--neo-base), #252322);
  border-color: rgba(168, 146, 116, 0.25);
  box-shadow:
    3px 3px 8px var(--neo-d),
    -2px -2px 6px var(--neo-l);
}

.hero__visual .alq-mock__nav-item.is-active svg {
  opacity: 1;
  color: var(--alq-gold);
}

.hero__visual .alq-mock__aside-foot {
  margin: auto 0 0;
  padding: 3px 2px 0;
  font-size: 0.72em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(153, 148, 145, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hero__visual .alq-mock__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 5px 6px 6px 4px;
  background: linear-gradient(180deg, #2a2725 0%, var(--neo-deep) 100%);
  overflow: hidden;
}

.hero__visual .alq-mock__header {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding-bottom: 5px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(168, 146, 116, 0.22);
}

.hero__visual .alq-mock__header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: rgba(186, 168, 142, 0.22);
  color: var(--alq-gold);
  flex-shrink: 0;
}

.hero__visual .alq-mock__header-icon svg {
  width: 10px;
  height: 10px;
}

.hero__visual .alq-mock__crumb {
  margin: 0 0 1px;
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--alq-gold);
}

.hero__visual .alq-mock__title {
  margin: 0 0 2px;
  font-size: 1.35em;
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(120deg, #f5f2ee 0%, #dccab0 45%, #a89274 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__visual .alq-mock__stats {
  margin: 0;
  font-size: 0.88em;
  color: rgba(234, 232, 230, 0.78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__visual .alq-mock__stats strong {
  color: var(--alq-ok);
  font-weight: 600;
}

.hero__visual .alq-mock__kpis {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 3px;
  margin-bottom: 4px;
}

.hero__visual .alq-mock__card {
  background: linear-gradient(165deg, #33302e 0%, var(--neo-base) 55%, #282524 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 3px 4px 2px;
  box-shadow:
    4px 4px 10px var(--neo-d),
    -3px -3px 7px var(--neo-l),
    inset 1px 1px 0 rgba(255, 255, 255, 0.03);
  min-width: 0;
}

.hero__visual .alq-mock__card-title {
  color: var(--alq-muted);
  font-size: 0.72em;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__visual .alq-mock__card-value {
  margin-top: 3px;
  font-size: 1.25em;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__visual .alq-mock__card-sub {
  margin-top: 2px;
  font-size: 0.68em;
  font-weight: 600;
  color: var(--alq-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__visual .alq-mock__card--ok .alq-mock__card-value {
  color: var(--alq-ok);
}

.hero__visual .alq-mock__card--warn .alq-mock__card-value {
  color: var(--alq-warn);
}

.hero__visual .alq-mock__card--late .alq-mock__card-value {
  color: var(--alq-late);
}

.hero__visual .alq-mock__card-sub--ok {
  color: var(--alq-ok);
}

.hero__visual .alq-mock__card-sub--warn {
  color: var(--alq-warn);
}

.hero__visual .alq-mock__card-sub--late {
  color: #fca5a5;
}

.hero__visual .alq-mock__ops {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 5px;
  flex: 1;
  min-height: 0;
}

.hero__visual .alq-mock__ops-block {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 4px 5px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.034) 0%, transparent 50%),
    linear-gradient(168deg, rgba(51, 48, 46, 0.42) 0%, rgba(46, 43, 41, 0.28) 46%, rgba(32, 30, 28, 0.1) 100%);
  box-shadow:
    6px 6px 14px var(--neo-d),
    -4px -4px 10px var(--neo-l),
    inset 1px 1px 0 rgba(255, 255, 255, 0.03);
}

.hero__visual .alq-mock__ops-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px;
  margin-bottom: 3px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(168, 146, 116, 0.2);
}

.hero__visual .alq-mock__ops-head h3 {
  margin: 0;
  font-size: 0.95em;
  font-weight: 700;
  color: var(--alq-text);
}

.hero__visual .alq-mock__ops-head span {
  font-size: 0.78em;
  font-weight: 600;
  color: var(--alq-muted);
}

.hero__visual .alq-mock__actions {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-height: 0;
}

.hero__visual .alq-mock__action {
  padding: 3px 4px 3px 5px;
  border-radius: 5px;
  background: rgba(32, 30, 28, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left-width: 2px;
  box-shadow: inset 1px 1px 4px var(--neo-d);
}

.hero__visual .alq-mock__action--late {
  border-left-color: var(--alq-late);
}

.hero__visual .alq-mock__action--warn {
  border-left-color: var(--alq-warn);
}

.hero__visual .alq-mock__action--info {
  border-left-color: var(--alq-info);
}

.hero__visual .alq-mock__action-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
}

.hero__visual .alq-mock__action-who {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.hero__visual .alq-mock__av {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68em;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, #57534e, #44403c);
  flex-shrink: 0;
}

.hero__visual .alq-mock__av--b {
  background: linear-gradient(145deg, #6366f1, #4338ca);
}

.hero__visual .alq-mock__av--c {
  background: linear-gradient(145deg, #0d9488, #0f766e);
}

.hero__visual .alq-mock__action-who strong {
  display: block;
  font-size: 0.88em;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__visual .alq-mock__action-who span {
  display: block;
  font-size: 0.75em;
  color: var(--alq-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__visual .alq-mock__action-amt {
  font-size: 0.92em;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero__visual .alq-mock__badge {
  display: inline-flex;
  margin-top: 3px;
  padding: 2px 5px;
  border-radius: 999px;
  font-size: 0.72em;
  font-weight: 700;
}

.hero__visual .alq-mock__badge--late {
  background: rgba(248, 113, 113, 0.18);
  color: #fca5a5;
  border: 1px solid rgba(248, 113, 113, 0.35);
}

.hero__visual .alq-mock__badge--warn {
  background: rgba(251, 191, 36, 0.16);
  color: #fcd34d;
  border: 1px solid rgba(251, 191, 36, 0.32);
}

.hero__visual .alq-mock__badge--info {
  background: rgba(96, 165, 250, 0.16);
  color: #93c5fd;
  border: 1px solid rgba(96, 165, 250, 0.32);
}

.hero__visual .alq-mock__timeline {
  position: relative;
  flex: 1;
  padding-left: 2px;
}

.hero__visual .alq-mock__timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(180deg, rgba(168, 146, 116, 0.45), rgba(168, 146, 116, 0.08));
}

.hero__visual .alq-mock__timeline-item {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 3px;
  padding: 1px 0 2px;
}

.hero__visual .alq-mock__timeline-dot {
  width: 6px;
  height: 6px;
  margin: 3px auto 0;
  border-radius: 50%;
  background: var(--neo-base);
  border: 1.5px solid #baa88e;
  box-shadow: 0 0 0 2px rgba(186, 168, 142, 0.15);
  position: relative;
  z-index: 1;
}

.hero__visual .alq-mock__timeline-dot--soon {
  border-color: var(--alq-warn);
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.15);
}

.hero__visual .alq-mock__timeline-body {
  padding: 2px 4px;
  border-radius: 5px;
  background: rgba(32, 30, 28, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero__visual .alq-mock__timeline-date {
  display: block;
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--alq-gold);
  margin-bottom: 1px;
}

.hero__visual .alq-mock__timeline-body strong {
  display: block;
  font-size: 0.86em;
  font-weight: 600;
  line-height: 1.25;
}

.hero__visual .alq-mock__timeline-body p {
  margin: 1px 0 0;
  font-size: 0.75em;
  color: var(--alq-muted);
}

.hero__visual .alq-mock__link {
  margin-top: 3px;
  font-size: 0.75em;
  font-weight: 600;
  color: var(--alq-gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__visual .alq-mock__cta {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  padding: 3px 5px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(32, 30, 28, 0.55);
  box-shadow: inset 1px 1px 4px var(--neo-d);
  flex-shrink: 0;
}

.hero__visual .alq-mock__cta-icon {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  color: var(--alq-gold);
  opacity: 0.85;
}

.hero__visual .alq-mock__cta-text {
  font-size: 0.78em;
  font-weight: 600;
  color: var(--alq-gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 900px) {
  .hero__visual {
    max-width: min(440px, 92vw);
    margin-top: 0.5rem;
  }

  .hero__visual .screen.alq-mock {
    font-size: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__visual,
  .hero__visual .visual-aura,
  .hero__visual .particle,
  .hero__visual .constellation .c-line,
  .hero__visual .constellation .c-dot,
  .hero__visual .constellation .c-dot--red,
  .hero__visual .halo,
  .hero__visual .floor__glow,
  .hero__visual .laptop-stack {
    animation: none !important;
  }

  .hero__visual .constellation .c-line {
    stroke-dashoffset: 0;
    opacity: 0.55;
  }
}
