.section-hero {
  position: relative;
  padding-top: 100px;
  padding-bottom: 56px;
  background-color: var(--bg);
  overflow: hidden;
}
@media (min-width: 1200px) {
  .section-hero {
    padding-top: 168px;
    padding-bottom: 120px;
  }
}
.section-hero > .container {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.section-hero > .container a, .section-hero > .container button {
  pointer-events: auto;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__log {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 6.4em;
  margin-bottom: 32px;
  font-family: var(--family-mono);
  font-size: var(--font-size-tiny);
  color: var(--gray);
}

.hero__log-line {
  opacity: 0;
  transition: opacity 0.22s ease;
}

.hero__log-line_visible {
  opacity: 1;
}

.hero__log-ok {
  color: var(--green);
  margin-right: 6px;
}

.hero__log-highlight {
  color: var(--white);
  background-color: var(--surface);
  padding: 1px 6px;
}

.hero__title {
  text-transform: uppercase;
  font-family: var(--family-titles);
  font-weight: 800;
  line-height: 1.08;
  font-size: 34px;
  max-width: 900px;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 48px;
  }
}
@media (min-width: 1200px) {
  .hero__title {
    font-size: 68px;
  }
}

.hero__title-line {
  display: block;
}

.hero__title-line_glitch {
  position: relative;
  color: var(--white);
}
.hero__title-line_glitch::before, .hero__title-line_glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background-color: var(--bg);
  overflow: hidden;
  pointer-events: none;
}
.hero__title-line_glitch::before {
  color: var(--cyan);
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  animation: glitch-slice-1 5.5s infinite;
}
.hero__title-line_glitch::after {
  color: var(--purple);
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  animation: glitch-slice-2 5.5s infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero__title-line_glitch::before, .hero__title-line_glitch::after {
    content: none;
    animation: none;
  }
}

@keyframes glitch-slice-1 {
  0%, 92% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    transform: translate(0, 0);
  }
  92.5% {
    -webkit-clip-path: inset(8% 0 68% 0);
            clip-path: inset(8% 0 68% 0);
    transform: translate(-4px, 0);
  }
  93% {
    -webkit-clip-path: inset(55% 0 15% 0);
            clip-path: inset(55% 0 15% 0);
    transform: translate(4px, 0);
  }
  93.5% {
    -webkit-clip-path: inset(30% 0 50% 0);
            clip-path: inset(30% 0 50% 0);
    transform: translate(-3px, 0);
  }
  94% {
    -webkit-clip-path: inset(70% 0 5% 0);
            clip-path: inset(70% 0 5% 0);
    transform: translate(3px, 0);
  }
  94.5% {
    -webkit-clip-path: inset(0 0 85% 0);
            clip-path: inset(0 0 85% 0);
    transform: translate(-4px, 0);
  }
  95%, 100% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    transform: translate(0, 0);
  }
}
@keyframes glitch-slice-2 {
  0%, 92% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    transform: translate(0, 0);
  }
  92.3% {
    -webkit-clip-path: inset(60% 0 10% 0);
            clip-path: inset(60% 0 10% 0);
    transform: translate(4px, 0);
  }
  92.8% {
    -webkit-clip-path: inset(15% 0 60% 0);
            clip-path: inset(15% 0 60% 0);
    transform: translate(-4px, 0);
  }
  93.3% {
    -webkit-clip-path: inset(45% 0 30% 0);
            clip-path: inset(45% 0 30% 0);
    transform: translate(3px, 0);
  }
  93.8% {
    -webkit-clip-path: inset(5% 0 80% 0);
            clip-path: inset(5% 0 80% 0);
    transform: translate(-3px, 0);
  }
  94.3% {
    -webkit-clip-path: inset(75% 0 0 0);
            clip-path: inset(75% 0 0 0);
    transform: translate(4px, 0);
  }
  95%, 100% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    transform: translate(0, 0);
  }
}
.hero__title-line_accent {
  color: var(--cyan);
  text-shadow: 0 0 24px var(--cyan-glow), 0 0 48px rgba(34, 211, 238, 0.2);
}

.hero__cursor {
  display: inline-block;
  animation: hero-cursor-blink 1.1s steps(1) infinite;
}

@keyframes hero-cursor-blink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
.hero__descr {
  display: flex;
  gap: 8px;
  max-width: 640px;
  color: var(--gray);
  font-size: var(--font-size-normal);
  line-height: 1.5;
  margin-bottom: 32px;
}

.hero__descr-prompt {
  flex-shrink: 0;
  color: var(--cyan);
}

.hero__status {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero__status-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-small);
  font-family: var(--family-mono);
  font-size: var(--font-size-tiny);
}

.hero__status-label {
  color: var(--gray-dim);
  letter-spacing: 0.06em;
}

.hero__status-value {
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero__status-value_online {
  color: var(--green);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 568px) {
  .hero__actions {
    flex-direction: row;
  }
}

.hero__btn-icon {
  flex-shrink: 0;
}

.hero__btn-chevron {
  color: var(--cyan);
  font-weight: 700;
}

.section-stats {
  position: relative;
  background-color: var(--bg-elevated);
  border-top: 1px solid var(--surface-border);
}

.stats__grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 568px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats__item {
  padding: 28px 16px;
  text-align: center;
  border-bottom: 1px solid var(--surface-border);
}
@media (min-width: 568px) {
  .stats__item {
    border-right: 1px solid var(--surface-border);
  }
  .stats__item:nth-child(2n) {
    border-right: none;
  }
}
@media (min-width: 1200px) {
  .stats__item {
    padding: 48px 24px;
    border-bottom: none;
    border-right: 1px solid var(--surface-border);
  }
  .stats__item:last-child {
    border-right: none;
  }
}
.stats__item:last-child {
  border-bottom: none;
}

.stats__value {
  font-family: var(--family-titles);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan-glow);
  margin-bottom: 10px;
}
@media (min-width: 1200px) {
  .stats__value {
    font-size: 56px;
  }
}

.stats__label {
  font-family: var(--family-mono);
  font-size: var(--font-size-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.stats__sub {
  font-family: var(--family-mono);
  font-size: var(--font-size-tiny);
  color: var(--gray-dim);
}

.section-about {
  background-color: var(--bg);
  padding: 56px 0 0;
}
@media (min-width: 1200px) {
  .section-about {
    padding: 96px 0 0;
  }
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1200px) {
  .about__grid {
    grid-template-columns: 1.35fr 1fr;
    align-items: stretch;
    gap: 0;
  }
}

.about__content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .about__content {
    padding-right: 56px;
  }
}

.about__title {
  font-family: var(--family-titles);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 24px;
}
@media (min-width: 1200px) {
  .about__title {
    font-size: 42px;
  }
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.about__paragraph {
  display: flex;
  gap: 8px;
  color: var(--gray);
  font-size: var(--font-size-normal);
  line-height: 1.6;
}

.about__paragraph-prompt {
  flex-shrink: 0;
  color: var(--cyan);
  font-family: var(--family-mono);
}

.about__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  color: var(--cyan);
  font-family: var(--family-mono);
  font-size: var(--font-size-medium);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 40px;
  transition: gap 0.2s ease;
}
@media (hover: hover) {
  .about__link:hover {
    gap: 14px;
  }
}

.about__list {
  display: flex;
  flex-direction: column;
}

.about__list-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--surface-border);
}
.about__list-item:first-child {
  border-top: 1px solid var(--surface-border);
}

.about__list-index {
  flex-shrink: 0;
  width: 28px;
  color: var(--cyan);
  font-family: var(--family-mono);
  font-size: var(--font-size-small);
}

.about__list-text {
  color: var(--white);
  font-size: var(--font-size-normal);
}

.about__media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .about__media {
    min-height: unset;
  }
}

.about__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(0.5) brightness(0.6);
  object-fit: cover;
  object-position: bottom;
}

.about__monitor {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  padding: 20px 24px;
  font-family: var(--family-mono);
  font-size: var(--font-size-tiny);
}

.about__monitor-label {
  color: var(--cyan);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.about__monitor-row {
  color: var(--gray);
  line-height: 1.7;
}

.about__monitor-text {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.about__monitor-text_visible {
  opacity: 1;
}

.about__monitor-value {
  color: var(--cyan);
  font-weight: 700;
}

.section-services {
  background-color: var(--bg);
  padding: 56px 0 56px;
}
@media (min-width: 1200px) {
  .section-services {
    padding: 96px 0 96px;
  }
}

.services__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}

.services__title {
  font-family: var(--family-titles);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  font-size: 32px;
}
@media (min-width: 1200px) {
  .services__title {
    font-size: 42px;
  }
}

.services__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-family: var(--family-mono);
  font-size: var(--font-size-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap 0.2s ease;
}
@media (hover: hover) {
  .services__all:hover {
    gap: 14px;
  }
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/*# sourceMappingURL=home.css.map */
